From 9cc8eab6e7a20214c96a0f612f84c8b3290e11a1 Mon Sep 17 00:00:00 2001 From: ChiragK22 Date: Sat, 18 Jan 2025 06:14:13 -0700 Subject: [PATCH] Complete ProCourse-2 --- .vscode/c_cpp_properties.json | 18 + .vscode/launch.json | 24 + .vscode/settings.json | 59 + Exercise_1.py | 16 +- Exercise_2.py | 19 + Exercise_3.py | 19 +- Exercise_4.py | 47 + Exercise_5.py | 22 + .../pip-24.2.dist-info/AUTHORS.txt | 796 ++ .../pip-24.2.dist-info/INSTALLER | 1 + .../pip-24.2.dist-info/LICENSE.txt | 20 + .../site-packages/pip-24.2.dist-info/METADATA | 89 + .../site-packages/pip-24.2.dist-info/RECORD | 853 ++ .../pip-24.2.dist-info/REQUESTED | 0 .../site-packages/pip-24.2.dist-info/WHEEL | 5 + .../pip-24.2.dist-info/entry_points.txt | 3 + .../pip-24.2.dist-info/top_level.txt | 1 + env/Lib/site-packages/pip/__init__.py | 13 + env/Lib/site-packages/pip/__main__.py | 24 + env/Lib/site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 671 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 827 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2191 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 773 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14458 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12653 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17618 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 35539 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 656 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 5104 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10194 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13605 bytes .../site-packages/pip/_internal/build_env.py | 315 + env/Lib/site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 264 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8592 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10182 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30381 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1760 bytes .../__pycache__/index_command.cpython-312.pyc | Bin 0 -> 7110 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2286 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4892 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 14999 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 3820 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 12227 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7819 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 361 bytes .../pip/_internal/cli/autocompletion.py | 176 + .../pip/_internal/cli/base_command.py | 231 + .../pip/_internal/cli/cmdoptions.py | 1075 +++ .../pip/_internal/cli/command_context.py | 27 + .../pip/_internal/cli/index_command.py | 170 + .../site-packages/pip/_internal/cli/main.py | 80 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 94 + .../pip/_internal/cli/req_command.py | 329 + .../pip/_internal/cli/spinners.py | 159 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 132 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3988 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9687 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2578 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5179 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13149 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10054 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7489 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4371 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 2954 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1659 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6657 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 3966 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 29100 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15743 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7504 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 10463 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4695 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 8851 bytes .../pip/_internal/commands/cache.py | 225 + .../pip/_internal/commands/check.py | 67 + .../pip/_internal/commands/completion.py | 130 + .../pip/_internal/commands/configuration.py | 280 + .../pip/_internal/commands/debug.py | 201 + .../pip/_internal/commands/download.py | 146 + .../pip/_internal/commands/freeze.py | 109 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/inspect.py | 92 + .../pip/_internal/commands/install.py | 783 ++ .../pip/_internal/commands/list.py | 375 + .../pip/_internal/commands/search.py | 172 + .../pip/_internal/commands/show.py | 217 + .../pip/_internal/commands/uninstall.py | 114 + .../pip/_internal/commands/wheel.py | 182 + .../pip/_internal/configuration.py | 383 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 927 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2879 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1686 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8425 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2267 bytes .../pip/_internal/distributions/base.py | 53 + .../pip/_internal/distributions/installed.py | 29 + .../pip/_internal/distributions/sdist.py | 158 + .../pip/_internal/distributions/wheel.py | 42 + .../site-packages/pip/_internal/exceptions.py | 777 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 218 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21603 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40634 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12574 bytes .../pip/_internal/index/collector.py | 494 + .../pip/_internal/index/package_finder.py | 1020 ++ .../pip/_internal/index/sources.py | 285 + .../pip/_internal/locations/__init__.py | 456 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 16426 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6838 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8014 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3767 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 214 + .../pip/_internal/locations/base.py | 81 + env/Lib/site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 128 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5862 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2912 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35184 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 16070 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 688 ++ .../_internal/metadata/importlib/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 344 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 4477 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 12551 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11065 bytes .../_internal/metadata/importlib/_compat.py | 85 + .../_internal/metadata/importlib/_dists.py | 221 + .../pip/_internal/metadata/importlib/_envs.py | 189 + .../pip/_internal/metadata/pkg_resources.py | 301 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 252 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1590 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 10830 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4209 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1680 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2263 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26603 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1009 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 4973 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1837 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 4939 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5746 bytes .../pip/_internal/models/candidate.py | 25 + .../pip/_internal/models/direct_url.py | 224 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 56 + .../pip/_internal/models/link.py | 590 ++ .../pip/_internal/models/scheme.py | 25 + .../pip/_internal/models/search_scope.py | 127 + .../pip/_internal/models/selection_prefs.py | 53 + .../pip/_internal/models/target_python.py | 121 + .../pip/_internal/models/wheel.py | 93 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 240 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 22085 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6446 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8465 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11603 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18860 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2241 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 2935 bytes .../pip/_internal/network/auth.py | 566 ++ .../pip/_internal/network/cache.py | 106 + .../pip/_internal/network/download.py | 187 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 522 + .../pip/_internal/network/utils.py | 98 + .../pip/_internal/network/xmlrpc.py | 62 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 183 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7090 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10114 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25777 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 189 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7653 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1843 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1877 bytes .../metadata_legacy.cpython-312.pyc | Bin 0 -> 2997 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1663 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2004 bytes .../__pycache__/wheel_legacy.cpython-312.pyc | Bin 0 -> 3836 bytes .../operations/build/build_tracker.py | 138 + .../_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 | 181 + .../pip/_internal/operations/freeze.py | 258 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 252 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1784 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 34091 bytes .../operations/install/editable_legacy.py | 47 + .../pip/_internal/operations/install/wheel.py | 741 ++ .../pip/_internal/operations/prepare.py | 732 ++ .../site-packages/pip/_internal/pyproject.py | 185 + .../pip/_internal/req/__init__.py | 90 + .../req/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3431 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21206 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 21418 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38470 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 5469 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 32080 bytes .../pip/_internal/req/constructors.py | 560 ++ .../pip/_internal/req/req_file.py | 551 ++ .../pip/_internal/req/req_install.py | 934 ++ .../pip/_internal/req/req_set.py | 82 + .../pip/_internal/req/req_uninstall.py | 633 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 183 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1171 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 190 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22565 bytes .../_internal/resolution/legacy/resolver.py | 597 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 194 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8135 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 29158 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32272 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6779 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10509 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 5026 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 15342 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12300 bytes .../_internal/resolution/resolvelib/base.py | 139 + .../resolution/resolvelib/candidates.py | 569 ++ .../resolution/resolvelib/factory.py | 817 ++ .../resolution/resolvelib/found_candidates.py | 174 + .../resolution/resolvelib/provider.py | 258 + .../resolution/resolvelib/reporter.py | 81 + .../resolution/resolvelib/requirements.py | 245 + .../resolution/resolvelib/resolver.py | 317 + .../pip/_internal/self_outdated_check.py | 244 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 178 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4513 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1849 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2393 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2890 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 5546 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 667 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4174 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3519 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3189 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2131 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 3976 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7312 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1147 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2402 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7591 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13541 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 33534 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2566 bytes .../utils/__pycache__/retry.cpython-312.pyc | Bin 0 -> 2091 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4533 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8622 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12007 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 13481 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2060 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4454 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5886 bytes .../pip/_internal/utils/_jaraco_text.py | 109 + .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 79 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 124 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/egg_link.py | 80 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 84 + .../pip/_internal/utils/filesystem.py | 149 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 101 + .../pip/_internal/utils/hashes.py | 147 + .../pip/_internal/utils/logging.py | 347 + .../site-packages/pip/_internal/utils/misc.py | 777 ++ .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/retry.py | 42 + .../pip/_internal/utils/setuptools_build.py | 146 + .../pip/_internal/utils/subprocess.py | 245 + .../pip/_internal/utils/temp_dir.py | 296 + .../pip/_internal/utils/unpacking.py | 337 + .../site-packages/pip/_internal/utils/urls.py | 55 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 134 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 517 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5038 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19003 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7591 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12510 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 28983 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 112 + .../site-packages/pip/_internal/vcs/git.py | 527 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 688 ++ .../pip/_internal/wheel_builder.py | 354 + env/Lib/site-packages/pip/_vendor/__init__.py | 116 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4536 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 139438 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 889 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2633 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6451 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3774 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16211 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4334 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6681 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 5248 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1661 bytes .../pip/_vendor/cachecontrol/_cmd.py | 70 + .../pip/_vendor/cachecontrol/adapter.py | 161 + .../pip/_vendor/cachecontrol/cache.py | 74 + .../_vendor/cachecontrol/caches/__init__.py | 8 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 422 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7755 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2720 bytes .../_vendor/cachecontrol/caches/file_cache.py | 182 + .../cachecontrol/caches/redis_cache.py | 48 + .../pip/_vendor/cachecontrol/controller.py | 499 + .../pip/_vendor/cachecontrol/filewrapper.py | 119 + .../pip/_vendor/cachecontrol/heuristics.py | 154 + .../pip/_vendor/cachecontrol/py.typed | 0 .../pip/_vendor/cachecontrol/serialize.py | 146 + .../pip/_vendor/cachecontrol/wrapper.py | 43 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 305 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 632 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3203 bytes .../pip/_vendor/certifi/cacert.pem | 4798 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 114 + .../pip/_vendor/certifi/py.typed | 0 .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1256 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45518 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 65672 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24303 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 59917 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15063 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7665 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41653 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17304 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19761 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88004 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30332 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 51441 bytes .../pip/_vendor/distlib/compat.py | 1138 +++ .../pip/_vendor/distlib/database.py | 1359 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1303 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 167 + .../pip/_vendor/distlib/metadata.py | 1068 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 466 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 97792 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 182784 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 108032 bytes .../site-packages/pip/_vendor/distlib/util.py | 2025 ++++ .../pip/_vendor/distlib/version.py | 751 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 91648 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 168448 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 101888 bytes .../pip/_vendor/distlib/wheel.py | 1099 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 947 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 279 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53795 bytes .../pip/_vendor/distro/distro.py | 1403 +++ .../site-packages/pip/_vendor/distro/py.typed | 0 .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 868 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 4963 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 874 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 15778 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 99463 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2620 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 203 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158835 bytes .../site-packages/pip/_vendor/idna/codec.py | 118 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 395 + .../pip/_vendor/idna/idnadata.py | 4245 ++++++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../site-packages/pip/_vendor/idna/py.typed | 0 .../pip/_vendor/idna/uts46data.py | 8598 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1728 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2012 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8157 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 42030 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 168 + .../pip/_vendor/msgpack/fallback.py | 951 ++ .../pip/_vendor/packaging/__init__.py | 15 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 545 bytes .../__pycache__/_elffile.cpython-312.pyc | Bin 0 -> 4954 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 9682 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 4541 bytes .../__pycache__/_parser.cpython-312.pyc | Bin 0 -> 13972 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3228 bytes .../__pycache__/_tokenizer.cpython-312.pyc | Bin 0 -> 7902 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 10998 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 24940 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 4397 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 38726 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 21331 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 7328 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 19494 bytes .../pip/_vendor/packaging/_elffile.py | 110 + .../pip/_vendor/packaging/_manylinux.py | 262 + .../pip/_vendor/packaging/_musllinux.py | 85 + .../pip/_vendor/packaging/_parser.py | 354 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/_tokenizer.py | 194 + .../pip/_vendor/packaging/markers.py | 325 + .../pip/_vendor/packaging/metadata.py | 804 ++ .../pip/_vendor/packaging/py.typed | 0 .../pip/_vendor/packaging/requirements.py | 91 + .../pip/_vendor/packaging/specifiers.py | 1009 ++ .../pip/_vendor/packaging/tags.py | 568 ++ .../pip/_vendor/packaging/utils.py | 174 + .../pip/_vendor/packaging/version.py | 563 ++ .../pip/_vendor/pkg_resources/__init__.py | 3676 +++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 161268 bytes .../pip/_vendor/platformdirs/__init__.py | 627 ++ .../pip/_vendor/platformdirs/__main__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 19816 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1935 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 10684 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 12898 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 7994 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 15024 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 584 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13661 bytes .../pip/_vendor/platformdirs/android.py | 249 + .../pip/_vendor/platformdirs/api.py | 292 + .../pip/_vendor/platformdirs/macos.py | 130 + .../pip/_vendor/platformdirs/py.typed | 0 .../pip/_vendor/platformdirs/unix.py | 275 + .../pip/_vendor/platformdirs/version.py | 16 + .../pip/_vendor/platformdirs/windows.py | 272 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3476 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 722 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26572 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2616 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3209 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4708 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38349 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1547 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 2596 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4065 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4744 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 12086 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6681 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8177 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 32960 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14057 bytes .../pip/_vendor/pygments/cmdline.py | 668 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 70 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 37899 bytes .../pip/_vendor/pygments/formatter.py | 129 + .../_vendor/pygments/formatters/__init__.py | 157 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6890 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4203 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4210 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7281 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 41014 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 28536 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6043 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20113 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6865 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2946 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 13761 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9127 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5807 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15106 bytes .../_vendor/pygments/formatters/_mapping.py | 23 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 170 + .../pip/_vendor/pygments/formatters/html.py | 987 ++ .../pip/_vendor/pygments/formatters/img.py | 685 ++ .../pip/_vendor/pygments/formatters/irc.py | 154 + .../pip/_vendor/pygments/formatters/latex.py | 518 + .../pip/_vendor/pygments/formatters/other.py | 160 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 349 + .../pip/_vendor/pygments/formatters/svg.py | 185 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 963 ++ .../pip/_vendor/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14609 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 68251 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42955 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 589 ++ .../pip/_vendor/pygments/lexers/python.py | 1198 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 72 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 247 + .../pip/_vendor/pygments/style.py | 203 + .../pip/_vendor/pygments/styles/__init__.py | 61 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 2652 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 3636 bytes .../pip/_vendor/pygments/styles/_mapping.py | 54 + .../pip/_vendor/pygments/token.py | 214 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 324 + .../pip/_vendor/pyproject_hooks/__init__.py | 23 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 601 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 362 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14688 bytes .../pip/_vendor/pyproject_hooks/_compat.py | 8 + .../pip/_vendor/pyproject_hooks/_impl.py | 330 + .../pyproject_hooks/_in_process/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1068 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14346 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 179 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5241 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 572 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2012 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 28419 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7186 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13909 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 910 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1665 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25186 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7586 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4216 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1039 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35416 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 1254 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27834 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 6011 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5611 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36354 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 50 + .../pip/_vendor/requests/adapters.py | 719 ++ .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 314 + .../pip/_vendor/requests/certs.py | 24 + .../pip/_vendor/requests/compat.py | 78 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 151 + .../pip/_vendor/requests/help.py | 127 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1037 ++ .../pip/_vendor/requests/packages.py | 25 + .../pip/_vendor/requests/sessions.py | 831 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1096 +++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 622 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6839 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2642 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25868 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10488 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 188 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 408 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/py.typed | 0 .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 547 ++ .../pip/_vendor/resolvelib/structs.py | 170 + .../pip/_vendor/rich/__init__.py | 177 + .../pip/_vendor/rich/__main__.py | 273 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7003 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10280 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7860 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 205964 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1717 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2337 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 525 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 843 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12061 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4135 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1858 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3608 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5148 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 709 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6558 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13167 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 953 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 853 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 28964 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2478 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3551 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 3314 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1596 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12275 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9054 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4260 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11826 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5798 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26557 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1689 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8572 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113429 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2246 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9198 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10929 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10354 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1476 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4200 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1833 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3559 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3060 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9875 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6023 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5196 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20146 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19003 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4877 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13542 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9555 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6366 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7112 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1799 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5285 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12171 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40135 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 74961 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10365 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14775 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1780 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 555 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6601 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6556 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3813 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2467 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28103 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6052 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6049 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33488 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2127 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39936 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43527 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3336 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 60837 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6330 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 302 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31499 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11424 bytes .../pip/_vendor/rich/_cell_widths.py | 454 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 76 + .../pip/_vendor/rich/_extension.py | 10 + .../site-packages/pip/_vendor/rich/_fileno.py | 24 + .../pip/_vendor/rich/_inspect.py | 270 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_null_file.py | 69 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 159 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 662 ++ .../pip/_vendor/rich/_windows.py | 71 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 93 + env/Lib/site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 240 + env/Lib/site-packages/pip/_vendor/rich/bar.py | 93 + env/Lib/site-packages/pip/_vendor/rich/box.py | 480 + .../site-packages/pip/_vendor/rich/cells.py | 167 + .../site-packages/pip/_vendor/rich/color.py | 621 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2633 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 225 + .../pip/_vendor/rich/default_styles.py | 190 + .../pip/_vendor/rich/diagnose.py | 37 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 57 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 139 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 442 + .../site-packages/pip/_vendor/rich/live.py | 375 + .../pip/_vendor/rich/live_render.py | 112 + .../site-packages/pip/_vendor/rich/logging.py | 289 + .../site-packages/pip/_vendor/rich/markup.py | 251 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 312 + .../site-packages/pip/_vendor/rich/pretty.py | 995 ++ .../pip/_vendor/rich/progress.py | 1699 ++++ .../pip/_vendor/rich/progress_bar.py | 223 + .../site-packages/pip/_vendor/rich/prompt.py | 375 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/py.typed | 0 .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 149 + .../site-packages/pip/_vendor/rich/rule.py | 130 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 738 ++ .../site-packages/pip/_vendor/rich/spinner.py | 137 + .../site-packages/pip/_vendor/rich/status.py | 131 + .../site-packages/pip/_vendor/rich/style.py | 796 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 958 ++ .../site-packages/pip/_vendor/rich/table.py | 1000 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1357 +++ .../site-packages/pip/_vendor/rich/theme.py | 115 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 753 ++ .../site-packages/pip/_vendor/rich/tree.py | 249 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 372 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 26887 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3896 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 354 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../site-packages/pip/_vendor/tomli/py.typed | 1 + .../pip/_vendor/truststore/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 606 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 16528 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 16560 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2193 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1087 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15728 bytes .../pip/_vendor/truststore/_api.py | 313 + .../pip/_vendor/truststore/_macos.py | 499 + .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 564 ++ .../pip/_vendor/truststore/py.typed | 0 .../pip/_vendor/typing_extensions.py | 3641 +++++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3393 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 16367 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 206 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20391 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36425 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13481 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10390 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4000 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20420 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7282 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 33935 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1137 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 186 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1836 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11552 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5702 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24436 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35493 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7499 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 203 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17415 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14751 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 | 518 + .../urllib3/contrib/securetransport.py | 920 ++ .../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-312.pyc | Bin 0 -> 187 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41243 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 197 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1813 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7324 bytes .../urllib3/packages/backports/makefile.py | 51 + .../packages/backports/weakref_finalize.py | 155 + .../pip/_vendor/urllib3/packages/six.py | 1076 +++ .../pip/_vendor/urllib3/poolmanager.py | 540 ++ .../pip/_vendor/urllib3/request.py | 191 + .../pip/_vendor/urllib3/response.py | 879 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1134 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4735 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1540 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1340 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4171 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 2980 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21689 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15074 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5039 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10741 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11127 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15773 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4391 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 620 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 271 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + env/Lib/site-packages/pip/_vendor/vendor.txt | 18 + env/Lib/site-packages/pip/py.typed | 4 + env/Scripts/Activate.ps1 | 502 + env/Scripts/activate | 70 + env/Scripts/activate.bat | 34 + env/Scripts/deactivate.bat | 22 + env/Scripts/pip.exe | Bin 0 -> 108409 bytes env/Scripts/pip3.12.exe | Bin 0 -> 108409 bytes env/Scripts/pip3.exe | Bin 0 -> 108409 bytes env/Scripts/python.exe | Bin 0 -> 270104 bytes env/Scripts/pythonw.exe | Bin 0 -> 258840 bytes env/pyvenv.cfg | 5 + 868 files changed, 138443 insertions(+), 4 deletions(-) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json create mode 100644 env/Lib/site-packages/pip-24.2.dist-info/AUTHORS.txt create mode 100644 env/Lib/site-packages/pip-24.2.dist-info/INSTALLER create mode 100644 env/Lib/site-packages/pip-24.2.dist-info/LICENSE.txt create mode 100644 env/Lib/site-packages/pip-24.2.dist-info/METADATA create mode 100644 env/Lib/site-packages/pip-24.2.dist-info/RECORD create mode 100644 env/Lib/site-packages/pip-24.2.dist-info/REQUESTED create mode 100644 env/Lib/site-packages/pip-24.2.dist-info/WHEEL create mode 100644 env/Lib/site-packages/pip-24.2.dist-info/entry_points.txt create mode 100644 env/Lib/site-packages/pip-24.2.dist-info/top_level.txt create mode 100644 env/Lib/site-packages/pip/__init__.py create mode 100644 env/Lib/site-packages/pip/__main__.py create mode 100644 env/Lib/site-packages/pip/__pip-runner__.py create mode 100644 env/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/build_env.py create mode 100644 env/Lib/site-packages/pip/_internal/cache.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/base_command.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/command_context.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/index_command.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/main.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/main_parser.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/parser.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/req_command.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/spinners.py create mode 100644 env/Lib/site-packages/pip/_internal/cli/status_codes.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/commands/cache.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/check.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/completion.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/configuration.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/debug.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/download.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/freeze.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/hash.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/help.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/index.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/inspect.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/install.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/list.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/search.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/show.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/uninstall.py create mode 100644 env/Lib/site-packages/pip/_internal/commands/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/configuration.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/distributions/base.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/installed.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/sdist.py create mode 100644 env/Lib/site-packages/pip/_internal/distributions/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/exceptions.py create mode 100644 env/Lib/site-packages/pip/_internal/index/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/index/collector.py create mode 100644 env/Lib/site-packages/pip/_internal/index/package_finder.py create mode 100644 env/Lib/site-packages/pip/_internal/index/sources.py create mode 100644 env/Lib/site-packages/pip/_internal/locations/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/locations/_distutils.py create mode 100644 env/Lib/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 env/Lib/site-packages/pip/_internal/locations/base.py create mode 100644 env/Lib/site-packages/pip/_internal/main.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/_json.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/base.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 env/Lib/site-packages/pip/_internal/models/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/models/candidate.py create mode 100644 env/Lib/site-packages/pip/_internal/models/direct_url.py create mode 100644 env/Lib/site-packages/pip/_internal/models/format_control.py create mode 100644 env/Lib/site-packages/pip/_internal/models/index.py create mode 100644 env/Lib/site-packages/pip/_internal/models/installation_report.py create mode 100644 env/Lib/site-packages/pip/_internal/models/link.py create mode 100644 env/Lib/site-packages/pip/_internal/models/scheme.py create mode 100644 env/Lib/site-packages/pip/_internal/models/search_scope.py create mode 100644 env/Lib/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 env/Lib/site-packages/pip/_internal/models/target_python.py create mode 100644 env/Lib/site-packages/pip/_internal/models/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/network/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/network/auth.py create mode 100644 env/Lib/site-packages/pip/_internal/network/cache.py create mode 100644 env/Lib/site-packages/pip/_internal/network/download.py create mode 100644 env/Lib/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/network/session.py create mode 100644 env/Lib/site-packages/pip/_internal/network/utils.py create mode 100644 env/Lib/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/check.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/freeze.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/operations/prepare.py create mode 100644 env/Lib/site-packages/pip/_internal/pyproject.py create mode 100644 env/Lib/site-packages/pip/_internal/req/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/req/constructors.py create mode 100644 env/Lib/site-packages/pip/_internal/req/req_file.py create mode 100644 env/Lib/site-packages/pip/_internal/req/req_install.py create mode 100644 env/Lib/site-packages/pip/_internal/req/req_set.py create mode 100644 env/Lib/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/base.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 env/Lib/site-packages/pip/_internal/self_outdated_check.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/_log.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/appdirs.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/compat.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/datetime.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/deprecation.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/egg_link.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/encoding.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/filesystem.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/filetypes.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/glibc.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/hashes.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/logging.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/misc.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/packaging.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/retry.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/subprocess.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/unpacking.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/urls.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 env/Lib/site-packages/pip/_internal/utils/wheel.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__init__.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/git.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/subversion.py create mode 100644 env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 env/Lib/site-packages/pip/_internal/wheel_builder.py create mode 100644 env/Lib/site-packages/pip/_vendor/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/core.py create mode 100644 env/Lib/site-packages/pip/_vendor/certifi/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/database.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/index.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/locators.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/markers.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/resources.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/util.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/version.py create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 env/Lib/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 env/Lib/site-packages/pip/_vendor/distro/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/distro/__main__.py create mode 100644 env/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/distro/distro.py create mode 100644 env/Lib/site-packages/pip/_vendor/distro/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/idna/codec.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/core.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/intranges.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/package_data.py create mode 100644 env/Lib/site-packages/pip/_vendor/idna/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 env/Lib/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/_elffile.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/_parser.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/markers.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/metadata.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/tags.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/utils.py create mode 100644 env/Lib/site-packages/pip/_vendor/packaging/version.py create mode 100644 env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 env/Lib/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/console.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/filter.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/style.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/styles/_mapping.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/token.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 env/Lib/site-packages/pip/_vendor/pygments/util.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/requests/__version__.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/adapters.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/api.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/auth.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/certs.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/compat.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/cookies.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/help.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/hooks.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/models.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/packages.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/sessions.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/structures.py create mode 100644 env/Lib/site-packages/pip/_vendor/requests/utils.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 env/Lib/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__main__.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_extension.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_loop.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_pick.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_stack.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_timer.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_windows.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/abc.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/align.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/ansi.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/bar.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/box.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/cells.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/color.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/columns.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/console.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/constrain.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/containers.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/control.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/emoji.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/errors.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/filesize.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/json.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/layout.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/live.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/live_render.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/logging.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/markup.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/measure.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/padding.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/pager.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/palette.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/panel.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/pretty.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/progress.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/prompt.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/protocol.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/rich/region.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/repr.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/rule.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/scope.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/screen.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/segment.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/spinner.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/status.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/style.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/styled.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/syntax.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/table.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/text.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/theme.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/themes.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/traceback.py create mode 100644 env/Lib/site-packages/pip/_vendor/rich/tree.py create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/_re.py create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/_types.py create mode 100644 env/Lib/site-packages/pip/_vendor/tomli/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/_api.py create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 env/Lib/site-packages/pip/_vendor/truststore/py.typed create mode 100644 env/Lib/site-packages/pip/_vendor/typing_extensions.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/request.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/response.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 env/Lib/site-packages/pip/_vendor/vendor.txt create mode 100644 env/Lib/site-packages/pip/py.typed create mode 100644 env/Scripts/Activate.ps1 create mode 100644 env/Scripts/activate create mode 100644 env/Scripts/activate.bat create mode 100644 env/Scripts/deactivate.bat create mode 100644 env/Scripts/pip.exe create mode 100644 env/Scripts/pip3.12.exe create mode 100644 env/Scripts/pip3.exe create mode 100644 env/Scripts/python.exe create mode 100644 env/Scripts/pythonw.exe create mode 100644 env/pyvenv.cfg diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 00000000..cea4d3f4 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,18 @@ +{ + "configurations": [ + { + "name": "windows-gcc-x64", + "includePath": [ + "${workspaceFolder}/**" + ], + "compilerPath": "gcc", + "cStandard": "${default}", + "cppStandard": "${default}", + "intelliSenseMode": "windows-gcc-x64", + "compilerArgs": [ + "" + ] + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..909b4bb5 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "C/C++ Runner: Debug Session", + "type": "cppdbg", + "request": "launch", + "args": [], + "stopAtEntry": false, + "externalConsole": true, + "cwd": "e:/Learning/S30/PreCourse-2", + "program": "e:/Learning/S30/PreCourse-2/build/Debug/outDebug", + "MIMode": "gdb", + "miDebuggerPath": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..bb879da5 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,59 @@ +{ + "C_Cpp_Runner.cCompilerPath": "gcc", + "C_Cpp_Runner.cppCompilerPath": "g++", + "C_Cpp_Runner.debuggerPath": "gdb", + "C_Cpp_Runner.cStandard": "", + "C_Cpp_Runner.cppStandard": "", + "C_Cpp_Runner.msvcBatchPath": "C:/Program Files/Microsoft Visual Studio/VR_NR/Community/VC/Auxiliary/Build/vcvarsall.bat", + "C_Cpp_Runner.useMsvc": false, + "C_Cpp_Runner.warnings": [ + "-Wall", + "-Wextra", + "-Wpedantic", + "-Wshadow", + "-Wformat=2", + "-Wcast-align", + "-Wconversion", + "-Wsign-conversion", + "-Wnull-dereference" + ], + "C_Cpp_Runner.msvcWarnings": [ + "/W4", + "/permissive-", + "/w14242", + "/w14287", + "/w14296", + "/w14311", + "/w14826", + "/w44062", + "/w44242", + "/w14905", + "/w14906", + "/w14263", + "/w44265", + "/w14928" + ], + "C_Cpp_Runner.enableWarnings": true, + "C_Cpp_Runner.warningsAsError": false, + "C_Cpp_Runner.compilerArgs": [], + "C_Cpp_Runner.linkerArgs": [], + "C_Cpp_Runner.includePaths": [], + "C_Cpp_Runner.includeSearch": [ + "*", + "**/*" + ], + "C_Cpp_Runner.excludeSearch": [ + "**/build", + "**/build/**", + "**/.*", + "**/.*/**", + "**/.vscode", + "**/.vscode/**" + ], + "C_Cpp_Runner.useAddressSanitizer": false, + "C_Cpp_Runner.useUndefinedSanitizer": false, + "C_Cpp_Runner.useLeakSanitizer": false, + "C_Cpp_Runner.showCompilationTime": false, + "C_Cpp_Runner.useLinkTimeOptimization": false, + "C_Cpp_Runner.msvcSecureNoWarnings": false +} \ No newline at end of file diff --git a/Exercise_1.py b/Exercise_1.py index 3e6adcf4..7a1014ca 100644 --- a/Exercise_1.py +++ b/Exercise_1.py @@ -1,3 +1,5 @@ +#Time Complexity is O(log n) and Space Complexity is O(1) + # Python code to implement iterative Binary # Search. @@ -6,6 +8,16 @@ def binarySearch(arr, l, r, x): #write your code here + while l<=r: + mid = l+(r-1)//2 + + if arr[mid] == x: + return mid + elif arr[mid]>x: + r=mid-1 + else: + l = mid + 1 + return -1 @@ -17,6 +29,6 @@ def binarySearch(arr, l, r, x): result = binarySearch(arr, 0, len(arr)-1, x) if result != -1: - print "Element is present at index % d" % result + print ("Element is present at index % d" % result ) else: - print "Element is not present in array" + print ("Element is not present in array") diff --git a/Exercise_2.py b/Exercise_2.py index 35abf0dd..b1c1c4ca 100644 --- a/Exercise_2.py +++ b/Exercise_2.py @@ -1,3 +1,5 @@ +#Time complexity is O(nlogn) and Space complexity is O(logn) + # Python program for implementation of Quicksort Sort # give you explanation for the approach @@ -5,12 +7,29 @@ def partition(arr,low,high): #write your code here + pivot = arr[high] + + i = low-1 + + for j in range(low, high): + if arr[j] <= pivot: + i += 1 + arr[i], arr[j] = arr[j], arr[i] + arr[i+1], arr[high] = arr[high], arr[i+1] + + return i + 1 # Function to do Quick sort def quickSort(arr,low,high): #write your code here + if low < high: + + pivotIndex = partition(arr, low, high) + + quickSort(arr, low, pivotIndex-1) + quickSort(arr, pivotIndex + 1, high) # Driver code to test above arr = [10, 7, 8, 9, 1, 5] diff --git a/Exercise_3.py b/Exercise_3.py index a26a69b8..d1ed0d11 100644 --- a/Exercise_3.py +++ b/Exercise_3.py @@ -1,20 +1,35 @@ +# Time complexity is O(n) and space complexity is O(1) # Node class class Node: # Function to initialise the node object - def __init__(self, data): + def __init__(self, data): + self.data = data + self.next = None class LinkedList: def __init__(self): + self.head = None def push(self, new_data): - + newNode = Node(new_data) + + newNode.next = self.head + self.head = newNode # Function to get the middle of # the linked list def printMiddle(self): + slow = self.head + fast = self.head + while fast is not None and fast.next is not None: + slow = slow.next + fast = fast.next.next + + if slow is not None: + print("Middle Element: ", slow.data) # Driver code list1 = LinkedList() diff --git a/Exercise_4.py b/Exercise_4.py index 9bc25d3d..38a40e11 100644 --- a/Exercise_4.py +++ b/Exercise_4.py @@ -1,12 +1,59 @@ +#Time complexity is O(nlogn) and space complexity is O(n). + # Python program for implementation of MergeSort +def merge(arr, left, mid, right): + n1 = mid - left + 1 + n2 = right - mid + + leftArr = arr[left:mid + 1] + rightArr = arr[mid + 1:right + 1] + + i = j = 0 + k = left + + while i < n1 and j < n2: + if leftArr[i] < rightArr[j]: + arr[k]=leftArr[i] + i+=1 + else: + arr[k] = rightArr[j] + j+=1 + k += 1 + while i < n1: + arr[k] = leftArr[i] + i+=1 + k+=1 + while j < n2: + arr[k] = rightArr[j] + j+=1 + k+=1 + + + def mergeSort(arr): #write your code here + + if len(arr) > 1: + mid = len(arr) // 2 + + left = arr[:mid] + right = arr[mid:] + + + mergeSort(left) + mergeSort(right) + + merge(arr, 0, mid - 1, len(arr) - 1) # Code to print the list def printList(arr): #write your code here + + for i in arr: + print(i, end=" ") + print() # driver code to test the above code if __name__ == '__main__': diff --git a/Exercise_5.py b/Exercise_5.py index 1da24ffb..fb4f12b2 100644 --- a/Exercise_5.py +++ b/Exercise_5.py @@ -1,10 +1,32 @@ +#Time Complexity O(n^2) and space complexity O(n) # Python program for implementation of Quicksort + + # This function is same in both iterative and recursive def partition(arr, l, h): #write your code here + pivot = arr[h] + i = l-1 + + for j in range(l,h): + if arr[j] <= pivot: + i+=1 + arr[i], arr[j] = arr[j], arr[i] + arr[i+1], arr[h] = arr[h], arr[i+1] + return i+1 def quickSortIterative(arr, l, h): #write your code here + stack = [] + + stack.append((1, h)) + + while stack: + l,h = stack.pop() + if l +License: MIT +Project-URL: Homepage, https://pip.pypa.io/ +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Source, https://github.com/pypa/pip +Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.8 +Description-Content-Type: text/x-rst +License-File: LICENSE.txt +License-File: AUTHORS.txt + +pip - The Python Package Installer +================================== + +.. |pypi-version| image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + :alt: PyPI + +.. |python-versions| image:: https://img.shields.io/pypi/pyversions/pip + :target: https://pypi.org/project/pip + :alt: PyPI - Python Version + +.. |docs-badge| image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + :alt: Documentation + +|pypi-version| |python-versions| |docs-badge| + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installation/ +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa +.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md diff --git a/env/Lib/site-packages/pip-24.2.dist-info/RECORD b/env/Lib/site-packages/pip-24.2.dist-info/RECORD new file mode 100644 index 00000000..c49acfd6 --- /dev/null +++ b/env/Lib/site-packages/pip-24.2.dist-info/RECORD @@ -0,0 +1,853 @@ +../../Scripts/pip.exe,sha256=U3mvIxLybTYyHdYCO4MWJYtHBXE-qfeDT6sSF0DQzu0,108409 +../../Scripts/pip3.12.exe,sha256=U3mvIxLybTYyHdYCO4MWJYtHBXE-qfeDT6sSF0DQzu0,108409 +../../Scripts/pip3.exe,sha256=U3mvIxLybTYyHdYCO4MWJYtHBXE-qfeDT6sSF0DQzu0,108409 +pip-24.2.dist-info/AUTHORS.txt,sha256=KDa8Pd3GDeKSogF6yFW0l9A9eMneLDOFrcIDqkL8G8s,10868 +pip-24.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-24.2.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-24.2.dist-info/METADATA,sha256=PhzCxQxIhsnZ871cPUe3Hew9PhhpgflLbfqU3WizZqM,3624 +pip-24.2.dist-info/RECORD,, +pip-24.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-24.2.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91 +pip-24.2.dist-info/entry_points.txt,sha256=eeIjuzfnfR2PrhbjnbzFU6MnSS70kZLxwaHHq6M-bD0,87 +pip-24.2.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=EQxEGXUQIu-9fNJxVEK74ufx_fTk_HpYV9lAbw-WWbs,355 +pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 +pip/__pip-runner__.py,sha256=cPPWuJ6NK_k-GzfvlejLFgwzmYUROmpAR6QC3Q-vkXQ,1450 +pip/__pycache__/__init__.cpython-312.pyc,, +pip/__pycache__/__main__.cpython-312.pyc,, +pip/__pycache__/__pip-runner__.cpython-312.pyc,, +pip/_internal/__init__.py,sha256=MfcoOluDZ8QMCFYal04IqOJ9q6m2V7a0aOsnI-WOxUo,513 +pip/_internal/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/__pycache__/build_env.cpython-312.pyc,, +pip/_internal/__pycache__/cache.cpython-312.pyc,, +pip/_internal/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/__pycache__/exceptions.cpython-312.pyc,, +pip/_internal/__pycache__/main.cpython-312.pyc,, +pip/_internal/__pycache__/pyproject.cpython-312.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-312.pyc,, +pip/_internal/build_env.py,sha256=QiusW8QEaj387y0hdRqVbuelHSHGYcT7WzVckbmMhR0,10420 +pip/_internal/cache.py,sha256=Jb698p5PNigRtpW5o26wQNkkUv4MnQ94mc471wL63A0,10369 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-312.pyc,, +pip/_internal/cli/__pycache__/index_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-312.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc,, +pip/_internal/cli/autocompletion.py,sha256=Lli3Mr6aDNu7ZkJJFFvwD2-hFxNI6Avz8OwMyS5TVrs,6865 +pip/_internal/cli/base_command.py,sha256=F8nUcSM-Y-MQljJUe724-yxmc5viFXHyM_zH70NmIh4,8289 +pip/_internal/cli/cmdoptions.py,sha256=mDqBr0d0hoztbRJs-PWtcKpqNAc7khU6ZpoesZKocT8,30110 +pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774 +pip/_internal/cli/index_command.py,sha256=YIJ84cfYcbDBACnB8eoDgqjYJU6GpiWP2Rh7Ij-Xyak,5633 +pip/_internal/cli/main.py,sha256=BDZef-bWe9g9Jpr4OVs4dDf-845HJsKw835T7AqEnAc,2817 +pip/_internal/cli/main_parser.py,sha256=laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn-vmL0GG90w,4338 +pip/_internal/cli/parser.py,sha256=QAkY6s8N-AD7w5D2PQm2Y8C2MIJSv7iuAeNjOMvDBUA,10811 +pip/_internal/cli/progress_bars.py,sha256=0FAf7eN67KnIv_gZQhTWSnKXXUzQko1ftGXEoLe5Yec,2713 +pip/_internal/cli/req_command.py,sha256=DqeFhmUMs6o6Ev8qawAcOoYNdAZsfyKS0MZI5jsJYwQ,12250 +pip/_internal/cli/spinners.py,sha256=hIJ83GerdFgFCdobIA23Jggetegl_uC4Sp586nzFbPE,5118 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882 +pip/_internal/commands/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-312.pyc,, +pip/_internal/commands/__pycache__/check.cpython-312.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-312.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-312.pyc,, +pip/_internal/commands/__pycache__/download.cpython-312.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-312.pyc,, +pip/_internal/commands/__pycache__/help.cpython-312.pyc,, +pip/_internal/commands/__pycache__/index.cpython-312.pyc,, +pip/_internal/commands/__pycache__/inspect.cpython-312.pyc,, +pip/_internal/commands/__pycache__/install.cpython-312.pyc,, +pip/_internal/commands/__pycache__/list.cpython-312.pyc,, +pip/_internal/commands/__pycache__/search.cpython-312.pyc,, +pip/_internal/commands/__pycache__/show.cpython-312.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/commands/cache.py,sha256=xg76_ZFEBC6zoQ3gXLRfMZJft4z2a0RwH4GEFZC6nnU,7944 +pip/_internal/commands/check.py,sha256=Hr_4eiMd9cgVDgEvjtIdw915NmL7ROIWW8enkr8slPQ,2268 +pip/_internal/commands/completion.py,sha256=HT4lD0bgsflHq2IDgYfiEdp7IGGtE7s6MgI3xn0VQEw,4287 +pip/_internal/commands/configuration.py,sha256=n98enwp6y0b5G6fiRQjaZo43FlJKYve_daMhN-4BRNc,9766 +pip/_internal/commands/debug.py,sha256=DNDRgE9YsKrbYzU0s3VKi8rHtKF4X13CJ_br_8PUXO0,6797 +pip/_internal/commands/download.py,sha256=0qB0nys6ZEPsog451lDsjL5Bx7Z97t-B80oFZKhpzKM,5273 +pip/_internal/commands/freeze.py,sha256=2Vt72BYTSm9rzue6d8dNzt8idxWK4Db6Hd-anq7GQ80,3203 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=RAXxmJwFhVb5S1BYzb5ifX3sn9Na8v2CCVYwSMP8pao,4731 +pip/_internal/commands/inspect.py,sha256=PGrY9TRTRCM3y5Ml8Bdk8DEOXquWRfscr4DRo1LOTPc,3189 +pip/_internal/commands/install.py,sha256=iqesiLIZc6Op9uihMQFYRhAA2DQRZUxbM4z1BwXoFls,29428 +pip/_internal/commands/list.py,sha256=RgaIV4kN-eMSpgUAXc-6bjnURzl0v3cRE11xr54O9Cg,12771 +pip/_internal/commands/search.py,sha256=hSGtIHg26LRe468Ly7oZ6gfd9KbTxBRZAAtJc9Um6S4,5628 +pip/_internal/commands/show.py,sha256=IG9L5uo8w6UA4tI_IlmaxLCoNKPa5JNJCljj3NWs0OE,7507 +pip/_internal/commands/uninstall.py,sha256=7pOR7enK76gimyxQbzxcG1OsyLXL3DvX939xmM8Fvtg,3892 +pip/_internal/commands/wheel.py,sha256=eJRhr_qoNNxWAkkdJCNiQM7CXd4E1_YyQhsqJnBPGGg,6414 +pip/_internal/configuration.py,sha256=XkAiBS0hpzsM-LF0Qu5hvPWO_Bs67-oQKRYFBuMbESs,14006 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/distributions/base.py,sha256=QeB9qvKXDIjLdPBDE5fMgpfGqMMCr-govnuoQnGuiF8,1783 +pip/_internal/distributions/installed.py,sha256=QinHFbWAQ8oE0pbD8MFZWkwlnfU1QYTccA1vnhrlYOU,842 +pip/_internal/distributions/sdist.py,sha256=PlcP4a6-R6c98XnOM-b6Lkb3rsvh9iG4ok8shaanrzs,6751 +pip/_internal/distributions/wheel.py,sha256=THBYfnv7VVt8mYhMYUtH13S1E7FDwtDyDfmUcl8ai0E,1317 +pip/_internal/exceptions.py,sha256=6qcW3QgmFVlRxlZvDSLUhSzKJ7_Tedo-lyqWA6NfdAU,25371 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/index/__pycache__/collector.cpython-312.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-312.pyc,, +pip/_internal/index/__pycache__/sources.cpython-312.pyc,, +pip/_internal/index/collector.py,sha256=RdPO0JLAlmyBWPAWYHPyRoGjz3GNAeTngCNkbGey_mE,16265 +pip/_internal/index/package_finder.py,sha256=yRC4xsyudwKnNoU6IXvNoyqYo5ScT7lB6Wa-z2eh7cs,37666 +pip/_internal/index/sources.py,sha256=dJegiR9f86kslaAHcv9-R5L_XBf5Rzm_FkyPteDuPxI,8688 +pip/_internal/locations/__init__.py,sha256=UaAxeZ_f93FyouuFf4p7SXYF-4WstXuEvd3LbmPCAno,14925 +pip/_internal/locations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc,, +pip/_internal/locations/__pycache__/base.cpython-312.pyc,, +pip/_internal/locations/_distutils.py,sha256=H9ZHK_35rdDV1Qsmi4QeaBULjFT4Mbu6QuoVGkJ6QHI,6009 +pip/_internal/locations/_sysconfig.py,sha256=IGzds60qsFneRogC-oeBaY7bEh3lPt_v47kMJChQXsU,7724 +pip/_internal/locations/base.py,sha256=RQiPi1d4FVM2Bxk04dQhXZ2PqkeljEL2fZZ9SYqIQ78,2556 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=9pU3W3s-6HtjFuYhWcLTYVmSaziklPv7k2x8p7X1GmA,4339 +pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/_json.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc,, +pip/_internal/metadata/_json.py,sha256=P0cAJrH_mtmMZvlZ16ZXm_-izA4lpr5wy08laICuiaA,2644 +pip/_internal/metadata/base.py,sha256=ft0K5XNgI4ETqZnRv2-CtvgYiMOMAeGMAzxT-f6VLJA,25298 +pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135 +pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc,, +pip/_internal/metadata/importlib/_compat.py,sha256=c6av8sP8BBjAZuFSJow1iWfygUXNM3xRTCn5nqw6B9M,2796 +pip/_internal/metadata/importlib/_dists.py,sha256=anh0mLI-FYRPUhAdipd0Va3YJJc6HelCKQ0bFhY10a0,8017 +pip/_internal/metadata/importlib/_envs.py,sha256=JHjNfnk9RsjrcQw8dLBqdfBglOKSepEe9aq03B4nRpU,7431 +pip/_internal/metadata/pkg_resources.py,sha256=U07ETAINSGeSRBfWUG93E4tZZbaW_f7PGzEqZN0hulc,10542 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-312.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-312.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-312.pyc,, +pip/_internal/models/__pycache__/index.cpython-312.pyc,, +pip/_internal/models/__pycache__/installation_report.cpython-312.pyc,, +pip/_internal/models/__pycache__/link.cpython-312.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-312.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-312.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-312.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/models/candidate.py,sha256=zzgFRuw_kWPjKpGw7LC0ZUMD2CQ2EberUIYs8izjdCA,753 +pip/_internal/models/direct_url.py,sha256=uBtY2HHd3TO9cKQJWh0ThvE5FRr-MWRYChRU4IG9HZE,6578 +pip/_internal/models/format_control.py,sha256=wtsQqSK9HaUiNxQEuB-C62eVimw6G4_VQFxV9-_KDBE,2486 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/installation_report.py,sha256=zRVZoaz-2vsrezj_H3hLOhMZCK9c7TbzWgC-jOalD00,2818 +pip/_internal/models/link.py,sha256=jHax9O-9zlSzEwjBCDkx0OXjKXwBDwOuPwn-PsR8dCs,21034 +pip/_internal/models/scheme.py,sha256=PakmHJM3e8OOWSZFtfz1Az7f1meONJnkGuQxFlt3wBE,575 +pip/_internal/models/search_scope.py,sha256=67NEnsYY84784S-MM7ekQuo9KXLH-7MzFntXjapvAo0,4531 +pip/_internal/models/selection_prefs.py,sha256=qaFfDs3ciqoXPg6xx45N1jPLqccLJw4N0s4P0PyHTQ8,2015 +pip/_internal/models/target_python.py,sha256=2XaH2rZ5ZF-K5wcJbEMGEl7SqrTToDDNkrtQ2v_v_-Q,4271 +pip/_internal/models/wheel.py,sha256=Odc1NVWL5N-i6A3vFa50BfNvCRlGvGa4som60FQM198,3601 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/network/__pycache__/auth.cpython-312.pyc,, +pip/_internal/network/__pycache__/cache.cpython-312.pyc,, +pip/_internal/network/__pycache__/download.cpython-312.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc,, +pip/_internal/network/__pycache__/session.cpython-312.pyc,, +pip/_internal/network/__pycache__/utils.cpython-312.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc,, +pip/_internal/network/auth.py,sha256=D4gASjUrqoDFlSt6gQ767KAAjv6PUyJU0puDlhXNVRE,20809 +pip/_internal/network/cache.py,sha256=48A971qCzKNFvkb57uGEk7-0xaqPS0HWj2711QNTxkU,3935 +pip/_internal/network/download.py,sha256=FLOP29dPYECBiAi7eEjvAbNkyzaKNqbyjOT2m8HPW8U,6048 +pip/_internal/network/lazy_wheel.py,sha256=2PXVduYZPCPZkkQFe1J1GbfHJWeCU--FXonGyIfw9eU,7638 +pip/_internal/network/session.py,sha256=XmanBKjVwPFmh1iJ58q6TDh9xabH37gREuQJ_feuZGA,18741 +pip/_internal/network/utils.py,sha256=Inaxel-NxBu4PQWkjyErdnfewsFCcgHph7dzR1-FboY,4088 +pip/_internal/network/xmlrpc.py,sha256=sAxzOacJ-N1NXGPvap9jC3zuYWSnnv3GXtgR2-E2APA,1838 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/__pycache__/check.cpython-312.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-312.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc,, +pip/_internal/operations/build/build_tracker.py,sha256=-ARW_TcjHCOX7D2NUOGntB4Fgc6b4aolsXkAK6BWL7w,4774 +pip/_internal/operations/build/metadata.py,sha256=9S0CUD8U3QqZeXp-Zyt8HxwU90lE4QrnYDgrqZDzBnc,1422 +pip/_internal/operations/build/metadata_editable.py,sha256=VLL7LvntKE8qxdhUdEJhcotFzUsOSI8NNS043xULKew,1474 +pip/_internal/operations/build/metadata_legacy.py,sha256=8i6i1QZX9m_lKPStEFsHKM0MT4a-CD408JOw99daLmo,2190 +pip/_internal/operations/build/wheel.py,sha256=sT12FBLAxDC6wyrDorh8kvcZ1jG5qInCRWzzP-UkJiQ,1075 +pip/_internal/operations/build/wheel_editable.py,sha256=yOtoH6zpAkoKYEUtr8FhzrYnkNHQaQBjWQ2HYae1MQg,1417 +pip/_internal/operations/build/wheel_legacy.py,sha256=K-6kNhmj-1xDF45ny1yheMerF0ui4EoQCLzEoHh6-tc,3045 +pip/_internal/operations/check.py,sha256=L24vRL8VWbyywdoeAhM89WCd8zLTnjIbULlKelUgIec,5912 +pip/_internal/operations/freeze.py,sha256=V59yEyCSz_YhZuhH09-6aV_zvYBMrS_IxFFNqn2QzlA,9864 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=PoEsNEPGbIZ2yQphPsmYTKLOCMs4gv5OcCdzW124NcA,1283 +pip/_internal/operations/install/wheel.py,sha256=X5Iz9yUg5LlK5VNQ9g2ikc6dcRu8EPi_SUi5iuEDRgo,27615 +pip/_internal/operations/prepare.py,sha256=joWJwPkuqGscQgVNImLK71e9hRapwKvRCM8HclysmvU,28118 +pip/_internal/pyproject.py,sha256=rw4fwlptDp1hZgYoplwbAGwWA32sWQkp7ysf8Ju6iXc,7287 +pip/_internal/req/__init__.py,sha256=HxBFtZy_BbCclLgr26waMtpzYdO5T3vxePvpGAXSt5s,2653 +pip/_internal/req/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc,, +pip/_internal/req/constructors.py,sha256=qXNZtUqhsXpHxkRaIQhp20_Kz6I88MDKM8SQR9fckIc,18424 +pip/_internal/req/req_file.py,sha256=hnC9Oz-trqGQpuDnCVWqwpJkAvtbCsk7-5k0EWVQhlQ,17687 +pip/_internal/req/req_install.py,sha256=yhT98NGDoAEk03jznTJnYCznzhiMEEA2ocgsUG_dcNU,35788 +pip/_internal/req/req_set.py,sha256=j3esG0s6SzoVReX9rWn4rpYNtyET_fwxbwJPRimvRxo,2858 +pip/_internal/req/req_uninstall.py,sha256=qzDIxJo-OETWqGais7tSMCDcWbATYABT-Tid3ityF0s,23853 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=3HZiJBRd1FTN6jQpI4qRO8-TbLYeIbUTS6PFvXnXs2w,24068 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=DCf669FsqyQY5uqXeePDHQY1e4QO-pBzWH8O0s9-K94,5023 +pip/_internal/resolution/resolvelib/candidates.py,sha256=07CBc85ya3J19XqdvUsLQwtVIxiTYq9km9hbTRh0jb0,19823 +pip/_internal/resolution/resolvelib/factory.py,sha256=mTTq_nG1F9Eq3VnlYPH6Ap-mydcS-mxC5y5L-CLLp80,32459 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=9hrTyQqFvl9I7Tji79F1AxHv39Qh1rkJ_7deSHSMfQc,6383 +pip/_internal/resolution/resolvelib/provider.py,sha256=bcsFnYvlmtB80cwVdW1fIwgol8ZNr1f1VHyRTkz47SM,9935 +pip/_internal/resolution/resolvelib/reporter.py,sha256=00JtoXEkTlw0-rl_sl54d71avwOsJHt9GGHcrj5Sza0,3168 +pip/_internal/resolution/resolvelib/requirements.py,sha256=7JG4Z72e5Yk4vU0S5ulGvbqTy4FMQGYhY5zQhX9zTtY,8065 +pip/_internal/resolution/resolvelib/resolver.py,sha256=nLJOsVMEVi2gQUVJoUFKMZAeu2f7GRMjGMvNSWyz0Bc,12592 +pip/_internal/self_outdated_check.py,sha256=pkjQixuWyQ1vrVxZAaYD6SSHgXuFUnHZybXEWTkh0S0,8145 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-312.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-312.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-312.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/retry.cpython-312.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-312.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/utils/_jaraco_text.py,sha256=M15uUPIh5NpP1tdUGBxRau6q1ZAEtI8-XyLEETscFfE,3350 +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ckkFveBiYQjRWjkNsajt_oWPS57tJvE8XxoC4OIYgCY,2399 +pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=k7Qg_UBAaaTdyq82YVARA6D7RmcGTXGv7fnfcgigj4Q,3707 +pip/_internal/utils/direct_url_helpers.py,sha256=r2MRtkVDACv9AGqYODBUC9CjwgtsUU1s68hmgfCJMtA,3196 +pip/_internal/utils/egg_link.py,sha256=0FePZoUYKv4RGQ2t6x7w5Z427wbA_Uo3WZnAkrgsuqo,2463 +pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169 +pip/_internal/utils/entrypoints.py,sha256=YlhLTRl2oHBAuqhc-zmL7USS67TPWVHImjeAQHreZTQ,3064 +pip/_internal/utils/filesystem.py,sha256=ajvA-q4ocliW9kPp8Yquh-4vssXbu-UKbo5FV9V4X64,4950 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=vUkWq_1pJuzcYNcGKLlQmABoUiisK8noYY1yc8Wq4w4,3734 +pip/_internal/utils/hashes.py,sha256=XGGLL0AG8-RhWnyz87xF6MFZ--BKadHU35D47eApCKI,4972 +pip/_internal/utils/logging.py,sha256=7BFKB1uFjdxD5crM-GtwA5T2qjbQ2LPD-gJDuJeDNTg,11606 +pip/_internal/utils/misc.py,sha256=HR_V97vNTHNzwq01JrnTZtsLLkWAOJ9_EeYfHJZSgDY,23745 +pip/_internal/utils/packaging.py,sha256=iI3LH43lVNR4hWBOqF6lFsZq4aycb2j0UcHlmDmcqUg,2109 +pip/_internal/utils/retry.py,sha256=mhFbykXjhTnZfgzeuy-vl9c8nECnYn_CMtwNJX2tYzQ,1392 +pip/_internal/utils/setuptools_build.py,sha256=ouXpud-jeS8xPyTPsXJ-m34NPvK5os45otAzdSV_IJE,4435 +pip/_internal/utils/subprocess.py,sha256=EsvqSRiSMHF98T8Txmu6NLU3U--MpTTQjtNgKP0P--M,8988 +pip/_internal/utils/temp_dir.py,sha256=5qOXe8M4JeY6vaFQM867d5zkp1bSwMZ-KT5jymmP0Zg,9310 +pip/_internal/utils/unpacking.py,sha256=eyDkSsk4nW8ZfiSjNzJduCznpHyaGHVv3ak_LMGsiEM,11951 +pip/_internal/utils/urls.py,sha256=qceSOZb5lbNDrHNsv7_S4L4Ytszja5NwPKUMnZHbYnM,1599 +pip/_internal/utils/virtualenv.py,sha256=S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU,3456 +pip/_internal/utils/wheel.py,sha256=b442jkydFHjXzDy6cMR7MpzWBJ1Q82hR5F33cmcHV3g,4494 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc,, +pip/_internal/vcs/bazaar.py,sha256=EKStcQaKpNu0NK4p5Q10Oc4xb3DUxFw024XrJy40bFQ,3528 +pip/_internal/vcs/git.py,sha256=3tpc9LQA_J4IVW5r5NvWaaSeDzcmJOrSFZN0J8vIKfU,18177 +pip/_internal/vcs/mercurial.py,sha256=oULOhzJ2Uie-06d1omkL-_Gc6meGaUkyogvqG9ZCyPs,5249 +pip/_internal/vcs/subversion.py,sha256=ddTugHBqHzV3ebKlU5QXHPN4gUqlyXbOx8q8NgXKvs8,11735 +pip/_internal/vcs/versioncontrol.py,sha256=cvf_-hnTAjQLXJ3d17FMNhQfcO1AcKWUF10tfrYyP-c,22440 +pip/_internal/wheel_builder.py,sha256=DL3A8LKeRj_ACp11WS5wSgASgPFqeyAeXJKdXfmaWXU,11799 +pip/_vendor/__init__.py,sha256=JYuAXvClhInxIrA2FTp5p-uuWVL7WV6-vEpTs46-Qh4,4873 +pip/_vendor/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=GiYoagwPEiJ_xR_lbwWGaoCiPtF_rz4isjfjdDAgHU4,676 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737 +pip/_vendor/cachecontrol/adapter.py,sha256=fByO_Pd_EOemjWbuocvBWdN85xT0q_TBm2lxS6vD4fk,6355 +pip/_vendor/cachecontrol/cache.py,sha256=OTQj72tUf8C1uEgczdl3Gc8vkldSzsTITKtDGKMx4z8,1952 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=9AlmmTJc6cslb6k5z_6q0sGPHVrMj8zv-uWy-simmfE,5406 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 +pip/_vendor/cachecontrol/controller.py,sha256=o-ejGJlBmpKK8QQLyTPJj0t7siU8XVHXuV8MCybCxQ8,18575 +pip/_vendor/cachecontrol/filewrapper.py,sha256=STttGmIPBvZzt2b51dUOwoWX5crcMCpKZOisM3f5BNc,4292 +pip/_vendor/cachecontrol/heuristics.py,sha256=IYe4QmHERWsMvtxNrp920WeaIsaTTyqLB14DSheSbtY,4834 +pip/_vendor/cachecontrol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/cachecontrol/serialize.py,sha256=HQd2IllQ05HzPkVLMXTF2uX5mjEQjDBkxCqUJUODpZk,5163 +pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 +pip/_vendor/certifi/__init__.py,sha256=LHXz7E80YJYBzCBv6ZyidQ5-ciYSkSebpY2E5OM0l7o,94 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-312.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=SIupYGAr8HzGP073rsEIaS_sQYIPwzKKjj894DgUmu4,291528 +pip/_vendor/certifi/core.py,sha256=2SRT5rIcQChFDbe37BQa-kULxAgJ8qN6l1jfqTp4HIs,4486 +pip/_vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/distlib/__init__.py,sha256=hJKF7FHoqbmGckncDuEINWo_OYkDNiHODtYXSMcvjcc,625 +pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc,, +pip/_vendor/distlib/compat.py,sha256=Un-uIBvy02w-D267OG4VEhuddqWgKj9nNkxVltAb75w,41487 +pip/_vendor/distlib/database.py,sha256=0V9Qvs0Vrxa2F_-hLWitIyVyRifJ0pCxyOI-kEOBwsA,51965 +pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 +pip/_vendor/distlib/locators.py,sha256=o1r_M86_bRLafSpetmyfX8KRtFu-_Q58abvQrnOSnbA,51767 +pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 +pip/_vendor/distlib/markers.py,sha256=n3DfOh1yvZ_8EW7atMyoYeZFXjYla0Nz0itQlojCd0A,5268 +pip/_vendor/distlib/metadata.py,sha256=pB9WZ9mBfmQxc9OVIldLS5CjOoQRvKAvUwwQyKwKQtQ,39693 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=8_gP9J7_tlNRicnWmPX4ZiDlP5wTwJKDeeg-8_qXUZU,18780 +pip/_vendor/distlib/t32.exe,sha256=a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS-XrqvJQVs,97792 +pip/_vendor/distlib/t64-arm.exe,sha256=68TAa32V504xVBnufojh0PcenpR3U4wAqTqf-MZqbPw,182784 +pip/_vendor/distlib/t64.exe,sha256=gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc,108032 +pip/_vendor/distlib/util.py,sha256=XSznxEi_i3T20UJuaVc0qXHz5ksGUCW1khYlBprN_QE,67530 +pip/_vendor/distlib/version.py,sha256=9pXkduchve_aN7JG6iL9VTYV_kqNSGoc2Dwl8JuySnQ,23747 +pip/_vendor/distlib/w32.exe,sha256=R4csx3-OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks,91648 +pip/_vendor/distlib/w64-arm.exe,sha256=xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4,168448 +pip/_vendor/distlib/w64.exe,sha256=ejGf-rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU-K0,101888 +pip/_vendor/distlib/wheel.py,sha256=FVQCve8u-L0QYk5-YTZc7s4WmNQdvjRWTK08KXzZVX4,43958 +pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981 +pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64 +pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/distro.cpython-312.pyc,, +pip/_vendor/distro/distro.py,sha256=XqbefacAhDT4zr_trnbA15eY8vdK4GTghgmvUGrEM_4,49430 +pip/_vendor/distro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc,, +pip/_vendor/idna/codec.py,sha256=PS6m-XmdST7Wj7J7ulRMakPDt5EBJyYrT3CPtjh-7t4,3426 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=lyhpoe2vulEaB_65xhXmoKgO-xUqFDvcwxu5hpNNO4E,12663 +pip/_vendor/idna/idnadata.py,sha256=dqRwytzkjIHMBa2R1lYvHDwACenZPt8eGVu1Y8UBE-E,78320 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=Tkt0KnIeyIlnHddOaz9WSkkislNgokJAuE-p5GorMqo,21 +pip/_vendor/idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/uts46data.py,sha256=1KuksWqLuccPXm2uyRVkhfiFLNIhM_H2m4azCcnOqEU,206503 +pip/_vendor/msgpack/__init__.py,sha256=gsMP7JTECZNUSjvOyIbdhNOkpB9Z8BcGwabVGY2UcdQ,1077 +pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc,, +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=fKp00BqDLjUtZnPd70Llr138zk8JsCuSpJkkZ5S4dt8,5629 +pip/_vendor/msgpack/fallback.py,sha256=wdUWJkWX2gzfRW9BBCTOuIE1Wvrf5PtBtR8ZtY7G_EE,33175 +pip/_vendor/packaging/__init__.py,sha256=dtw2bNmWCQ9WnMoK3bk_elL1svSlikXtLpZhCFIB9SE,496 +pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-312.pyc,, +pip/_vendor/packaging/_elffile.py,sha256=_LcJW4YNKywYsl4169B2ukKRqwxjxst_8H0FRVQKlz8,3282 +pip/_vendor/packaging/_manylinux.py,sha256=Xo4V0PZz8sbuVCbTni0t1CR0AHeir_7ib4lTmV8scD4,9586 +pip/_vendor/packaging/_musllinux.py,sha256=p9ZqNYiOItGee8KcZFeHF_YcdhVwGHdK6r-8lgixvGQ,2694 +pip/_vendor/packaging/_parser.py,sha256=s_TvTvDNK0NrM2QB3VKThdWFM4Nc0P6JnkObkl3MjpM,10236 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/_tokenizer.py,sha256=J6v5H7Jzvb-g81xp_2QACKwO7LxHQA6ikryMU7zXwN8,5273 +pip/_vendor/packaging/markers.py,sha256=dWKSqn5Sp-jDmOG-W3GfLHKjwhf1IsznbT71VlBoB5M,10671 +pip/_vendor/packaging/metadata.py,sha256=KINuSkJ12u-SyoKNTy_pHNGAfMUtxNvZ53qA1zAKcKI,32349 +pip/_vendor/packaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/packaging/requirements.py,sha256=gYyRSAdbrIyKDY66ugIDUQjRMvxkH2ALioTmX3tnL6o,2947 +pip/_vendor/packaging/specifiers.py,sha256=HfGgfNJRvrzC759gnnoojHyiWs_DYmcw5PEh5jHH-YE,39738 +pip/_vendor/packaging/tags.py,sha256=y8EbheOu9WS7s-MebaXMcHMF-jzsA_C1Lz5XRTiSy4w,18883 +pip/_vendor/packaging/utils.py,sha256=NAdYUwnlAOpkat_RthavX8a07YuVxgGL_vwrx73GSDM,5287 +pip/_vendor/packaging/version.py,sha256=wE4sSVlF-d1H6HFC1vszEe35CwTig_fh4HHIFg95hFE,16210 +pip/_vendor/pkg_resources/__init__.py,sha256=jrhDRbOubP74QuPXxd7U7Po42PH2l-LZ2XfcO7llpZ4,124463 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__init__.py,sha256=FTA6LGNm40GwNZt3gG3uLAacWvf2E_2HTmH0rAALGR8,22285 +pip/_vendor/platformdirs/__main__.py,sha256=jBJ8zb7Mpx5ebcqF83xrpO94MaeCpNGHVf9cvDN2JLg,1505 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc,, +pip/_vendor/platformdirs/android.py,sha256=xZXY9Jd46WOsxT2U6-5HsNtDZ-IQqxcEUrBLl3hYk4o,9016 +pip/_vendor/platformdirs/api.py,sha256=QBYdUac2eC521ek_y53uD1Dcq-lJX8IgSRVd4InC6uc,8996 +pip/_vendor/platformdirs/macos.py,sha256=wftsbsvq6nZ0WORXSiCrZNkRHz_WKuktl0a6mC7MFkI,5580 +pip/_vendor/platformdirs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/platformdirs/unix.py,sha256=Cci9Wqt35dAMsg6HT9nRGHSBW5obb0pR3AE1JJnsCXg,10643 +pip/_vendor/platformdirs/version.py,sha256=r7F76tZRjgQKzrpx_I0_ZMQOMU-PS7eGnHD7zEK3KB0,411 +pip/_vendor/platformdirs/windows.py,sha256=IFpiohUBwxPtCzlyKwNtxyW4Jk8haa6W8o59mfrDXVo,10125 +pip/_vendor/pygments/__init__.py,sha256=7N1oiaWulw_nCsTY4EEixYLz15pWY5u4uPAFFi-ielU,2983 +pip/_vendor/pygments/__main__.py,sha256=isIhBxLg65nLlXukG4VkMuPfNdd7gFzTZ_R_z3Q8diY,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=LIVzmAunlk9sRJJp54O4KRy9GDIN4Wu13v9p9QzfGPM,23656 +pip/_vendor/pygments/console.py,sha256=yhP9UsLAVmWKVQf2446JJewkA7AiXeeTf4Ieg3Oi2fU,1718 +pip/_vendor/pygments/filter.py,sha256=_ADNPCskD8_GmodHi6_LoVgPU3Zh336aBCT5cOeTMs0,1910 +pip/_vendor/pygments/filters/__init__.py,sha256=RdedK2KWKXlKwR7cvkfr3NUj9YiZQgMgilRMFUg2jPA,40392 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatter.py,sha256=jDWBTndlBH2Z5IYZFVDnP0qn1CaTQjTWt7iAGtCnJEg,4390 +pip/_vendor/pygments/formatters/__init__.py,sha256=8No-NUs8rBTSSBJIv4hSEQt2M0cFB4hwAT0snVc2QGE,5385 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176 +pip/_vendor/pygments/formatters/bbcode.py,sha256=3JQLI45tcrQ_kRUMjuab6C7Hb0XUsbVWqqbSn9cMjkI,3320 +pip/_vendor/pygments/formatters/groff.py,sha256=M39k0PaSSZRnxWjqBSVPkF0mu1-Vr7bm6RsFvs-CNN4,5106 +pip/_vendor/pygments/formatters/html.py,sha256=SE2jc3YCqbMS3rZW9EAmDlAUhdVxJ52gA4dileEvCGU,35669 +pip/_vendor/pygments/formatters/img.py,sha256=MwA4xWPLOwh6j7Yc6oHzjuqSPt0M1fh5r-5BTIIUfsU,23287 +pip/_vendor/pygments/formatters/irc.py,sha256=dp1Z0l_ObJ5NFh9MhqLGg5ptG5hgJqedT2Vkutt9v0M,4981 +pip/_vendor/pygments/formatters/latex.py,sha256=XMmhOCqUKDBQtG5mGJNAFYxApqaC5puo5cMmPfK3944,19306 +pip/_vendor/pygments/formatters/other.py,sha256=56PMJOliin-rAUdnRM0i1wsV1GdUPd_dvQq0_UPfF9c,5034 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=y16U00aVYYEFpeCfGXlYBSMacG425CbfoG8oKbKegIg,2218 +pip/_vendor/pygments/formatters/rtf.py,sha256=ZT90dmcKyJboIB0mArhL7IhE467GXRN0G7QAUgG03To,11957 +pip/_vendor/pygments/formatters/svg.py,sha256=KKsiophPupHuxm0So-MsbQEWOT54IAiSF7hZPmxtKXE,7174 +pip/_vendor/pygments/formatters/terminal.py,sha256=AojNG4MlKq2L6IsC_VnXHu4AbHCBn9Otog6u45XvxeI,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=kGkNUVo3FpwjytIDS0if79EuUoroAprcWt3igrcIqT0,11753 +pip/_vendor/pygments/lexer.py,sha256=TYHDt___gNW4axTl2zvPZff-VQi8fPaIh5OKRcVSjUM,35349 +pip/_vendor/pygments/lexers/__init__.py,sha256=pIlxyQJuu_syh9lE080cq8ceVbEVcKp0osAFU5fawJU,12115 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=61-h3zr103m01OS5BUq_AfUiL9YI06Ves9ipQ7k4vr4,76097 +pip/_vendor/pygments/lexers/python.py,sha256=2J_YJrPTr_A6fJY_qKiKv0GpgPwHMrlMSeo59qN3fe4,53687 +pip/_vendor/pygments/modeline.py,sha256=gtRYZBS-CKOCDXHhGZqApboHBaZwGH8gznN3O6nuxj4,1005 +pip/_vendor/pygments/plugin.py,sha256=ioeJ3QeoJ-UQhZpY9JL7vbxsTVuwwM7BCu-Jb8nN0AU,1891 +pip/_vendor/pygments/regexopt.py,sha256=Hky4EB13rIXEHQUNkwmCrYqtIlnXDehNR3MztafZ43w,3072 +pip/_vendor/pygments/scanner.py,sha256=NDy3ofK_fHRFK4hIDvxpamG871aewqcsIb6sgTi7Fhk,3092 +pip/_vendor/pygments/sphinxext.py,sha256=iOptJBcqOGPwMEJ2p70PvwpZPIGdvdZ8dxvq6kzxDgA,7981 +pip/_vendor/pygments/style.py,sha256=rSCZWFpg1_DwFMXDU0nEVmAcBHpuQGf9RxvOPPQvKLQ,6420 +pip/_vendor/pygments/styles/__init__.py,sha256=qUk6_1z5KmT8EdJFZYgESmG6P_HJF_2vVrDD7HSCGYY,2042 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/styles/_mapping.py,sha256=6lovFUE29tz6EsV3XYY4hgozJ7q1JL7cfO3UOlgnS8w,3312 +pip/_vendor/pygments/token.py,sha256=qZwT7LSPy5YBY3JgDjut642CCy7JdQzAfmqD9NmT5j0,6226 +pip/_vendor/pygments/unistring.py,sha256=p5c1i-HhoIhWemy9CUsaN9o39oomYHNxXll0Xfw6tEA,63208 +pip/_vendor/pygments/util.py,sha256=2tj2nS1X9_OpcuSjf8dOET2bDVZhs8cEKd_uT6-Fgg8,10031 +pip/_vendor/pyproject_hooks/__init__.py,sha256=kCehmy0UaBa9oVMD7ZIZrnswfnP3LXZ5lvnNJAL5JBM,491 +pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_compat.py,sha256=by6evrYnqkisiM-MQcvOKs5bgDMzlOSgZqRHNqf04zE,138 +pip/_vendor/pyproject_hooks/_impl.py,sha256=61GJxzQip0IInhuO69ZI5GbNQ82XEDUB_1Gg5_KtUoc,11920 +pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=9gQATptbFkelkIy0OfWFEACzqxXJMQDWCH9rBOAZVwQ,546 +pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=m2b34c917IW5o-Q_6TYIHlsK9lSUlNiyrITTUH_zwew,10927 +pip/_vendor/requests/__init__.py,sha256=HlB_HzhrzGtfD_aaYUwUh1zWXLZ75_YCLyit75d0Vz8,5057 +pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/requests/__version__.py,sha256=FVfglgZmNQnmYPXpOohDU58F5EUb_-VnSTaAesS187g,435 +pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 +pip/_vendor/requests/adapters.py,sha256=J7VeVxKBvawbtlX2DERVo05J9BXTcWYLMHNd1Baa-bk,27607 +pip/_vendor/requests/api.py,sha256=_Zb9Oa7tzVIizTKwFrPjDEY9ejtm_OnSRERnADxGsQs,6449 +pip/_vendor/requests/auth.py,sha256=kF75tqnLctZ9Mf_hm9TZIj4cQWnN5uxRz8oWsx5wmR0,10186 +pip/_vendor/requests/certs.py,sha256=PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs,575 +pip/_vendor/requests/compat.py,sha256=Mo9f9xZpefod8Zm-n9_StJcVTmwSukXR2p3IQyyVXvU,1485 +pip/_vendor/requests/cookies.py,sha256=bNi-iqEj4NPZ00-ob-rHvzkvObzN3lEpgw3g6paS3Xw,18590 +pip/_vendor/requests/exceptions.py,sha256=D1wqzYWne1mS2rU43tP9CeN1G7QAy7eqL9o1god6Ejw,4272 +pip/_vendor/requests/help.py,sha256=hRKaf9u0G7fdwrqMHtF3oG16RKktRf6KiwtSq2Fo1_0,3813 +pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 +pip/_vendor/requests/models.py,sha256=x4K4CmH-lC0l2Kb-iPfMN4dRXxHEcbOaEWBL_i09AwI,35483 +pip/_vendor/requests/packages.py,sha256=_ZQDCJTJ8SP3kVWunSqBsRZNPzj2c1WFVqbdr08pz3U,1057 +pip/_vendor/requests/sessions.py,sha256=ykTI8UWGSltOfH07HKollH7kTBGw4WhiBVaQGmckTw4,30495 +pip/_vendor/requests/status_codes.py,sha256=iJUAeA25baTdw-6PfD0eF4qhpINDJRJI-yaMqxs4LEI,4322 +pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 +pip/_vendor/requests/utils.py,sha256=L79vnFbzJ3SFLKtJwpoWe41Tozi3RlZv94pY1TFIyow,33631 +pip/_vendor/resolvelib/__init__.py,sha256=h509TdEcpb5-44JonaU3ex2TM15GVBLjM9CNCPwnTTs,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=fuuvVrCetu5gsxPB43ERyjfO8aReS3rFQHpDgiItbs4,5871 +pip/_vendor/resolvelib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/reporters.py,sha256=TSbRmWzTc26w0ggsV1bxVpeWDB8QNIre6twYl7GIZBE,1601 +pip/_vendor/resolvelib/resolvers.py,sha256=G8rsLZSq64g5VmIq-lB7UcIJ1gjAxIQJmTF4REZleQ0,20511 +pip/_vendor/resolvelib/structs.py,sha256=0_1_XO8z_CLhegP3Vpf9VJ3zJcfLm0NOHRM-i0Ykz3o,4963 +pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090 +pip/_vendor/rich/__main__.py,sha256=eO7Cq8JnrgG8zVoeImiAs92q3hXNMIfp0w5lMsO7Q2Y,8477 +pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-312.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=fbmeyetEdHjzE_Vx2l1uK7tnPOhMs2X1lJfO3vsKDpA,10209 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_export_format.py,sha256=RI08pSrm5tBSzPMvnbTqbD9WIalaOoN5d4M1RTmLq1Y,2128 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799 +pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_null_file.py,sha256=tGSXk_v-IZmbj1GAzHit8A3kYIQMiCpVsCFfsC-_KJ4,1387 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=Zt58apszI6hAAcXPpgdWKpu3c31UBWebOeR4mbyptvU,5471 +pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820 +pip/_vendor/rich/_windows.py,sha256=aBwaD_S56SbgopIvayVmpk0Y28uwY2C5Bab1wl3Bp-I,1925 +pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 +pip/_vendor/rich/_wrap.py,sha256=FlSsom5EX0LVkA3KWy34yHnCfLtqX-ZIepXKh-70rpc,3404 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=sCUkisXkQfoq-IQPyBELfJ8l7LihZJX3HbH8K7Cie-M,10368 +pip/_vendor/rich/ansi.py,sha256=iD6532QYqnBm6hADulKjrV8l8kFJ-9fEVooHJHH3hMg,6906 +pip/_vendor/rich/bar.py,sha256=ldbVHOzKJOnflVNuv1xS7g6dLX2E3wMnXkdPbpzJTcs,3263 +pip/_vendor/rich/box.py,sha256=nr5fYIUghB_iUCEq6y0Z3LlCT8gFPDrzN9u2kn7tJl4,10831 +pip/_vendor/rich/cells.py,sha256=aMmGK4BjXhgE6_JF1ZEGmW3O7mKkE8g84vUnj4Et4To,4780 +pip/_vendor/rich/color.py,sha256=bCRATVdRe5IClJ6Hl62de2PKQ_U4i2MZ4ugjUEg7Tao,18223 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=deFZIubq2M9A2MCsKFAsFQlWDvcOMsGuUA07QkOaHIw,99173 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=c_56TxcedGYqDepHBMTuZdUIijitAQgnox-Qde0Z1qo,5502 +pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630 +pip/_vendor/rich/default_styles.py,sha256=-Fe318kMVI_IwciK5POpThcO0-9DYJ67TZAN6DlmlmM,8082 +pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972 +pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683 +pip/_vendor/rich/filesize.py,sha256=9fTLAPCAwHmBXdRv7KZU194jSgNrRb6Wx7RIoBgqeKY,2508 +pip/_vendor/rich/highlighter.py,sha256=6ZAjUcNhBRajBCo9umFUclyi2xL0-55JL7S0vYGUJu4,9585 +pip/_vendor/rich/json.py,sha256=vVEoKdawoJRjAFayPwXkMBPLy7RSTs-f44wSQDR2nJ0,5031 +pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 +pip/_vendor/rich/layout.py,sha256=ajkSFAtEVv9EFTcFs-w4uZfft7nEXhNzL7ZVdgrT5rI,14004 +pip/_vendor/rich/live.py,sha256=vUcnJV2LMSK3sQNaILbm0-_B8BpAeiHfcQMAMLfpRe0,14271 +pip/_vendor/rich/live_render.py,sha256=zJtB471jGziBtEwxc54x12wEQtH4BuQr1SA8v9kU82w,3666 +pip/_vendor/rich/logging.py,sha256=uB-cB-3Q4bmXDLLpbOWkmFviw-Fde39zyMV6tKJ2WHQ,11903 +pip/_vendor/rich/markup.py,sha256=3euGKP5s41NCQwaSjTnJxus5iZMHjxpIM0W6fCxra38,8451 +pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=2Fd1V7e1kHxlPFIusoHY5T7-Cs0RpkrihgVG9ZVqJ4g,10705 +pip/_vendor/rich/pretty.py,sha256=5oIHP_CGWnHEnD0zMdW5qfGC5kHqIKn7zH_eC4crULE,35848 +pip/_vendor/rich/progress.py,sha256=P02xi7T2Ua3qq17o83bkshe4c0v_45cg8VyTj6US6Vg,59715 +pip/_vendor/rich/progress_bar.py,sha256=L4jw8E6Qb_x-jhOrLVhkuMaPmiAhFIl8jHQbWFrKuR8,8164 +pip/_vendor/rich/prompt.py,sha256=wdOn2X8XTJKnLnlw6PoMY7xG4iUPp3ezt4O5gqvpV-E,11304 +pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 +pip/_vendor/rich/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=5MZJZmONgC6kud-QW-_m1okXwL2aR6u6y-pUcUCJz28,4431 +pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602 +pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=hU1ueeXqI6YeFa08K9DAjlF2QLxcJY9pwZx7RsXavlk,24246 +pip/_vendor/rich/spinner.py,sha256=15koCmF0DQeD8-k28Lpt6X_zJQUlzEhgo_6A6uy47lc,4339 +pip/_vendor/rich/status.py,sha256=kkPph3YeAZBo-X-4wPp8gTqZyU466NLwZBA4PZTTewo,4424 +pip/_vendor/rich/style.py,sha256=3hiocH_4N8vwRm3-8yFWzM7tSwjjEven69XqWasSQwM,27073 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=TnZDuOD4DeHFbkaVEAji1gf8qgAlMU9Boe_GksMGCkk,35475 +pip/_vendor/rich/table.py,sha256=nGEvAZHF4dy1vT9h9Gj9O5qhSQO3ODAxJv0RY1vnIB8,39680 +pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 +pip/_vendor/rich/text.py,sha256=5rQ3zvNrg5UZKNLecbh7fiw9v3HeFulNVtRY_CBDjjE,47312 +pip/_vendor/rich/theme.py,sha256=belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN-AFdo,3777 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=CUpxYLjQWIb6vQQ6O72X0hvDV6caryGqU6UweHgOyCY,29601 +pip/_vendor/rich/tree.py,sha256=meAOUU6sYnoBEOX2ILrPLY9k5bWrWNQKkaiEFvHinXM,9167 +pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396 +pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc,, +pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633 +pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943 +pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254 +pip/_vendor/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +pip/_vendor/truststore/__init__.py,sha256=M-PhuLMIF7gxKXk7tpo2MD7dk6nqG1ae8GXWdNXbMdQ,403 +pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/truststore/_api.py,sha256=B9JIHipzBIS8pMP_J50-o1DHVZsvKZQUXTB0HQQ_UPg,10461 +pip/_vendor/truststore/_macos.py,sha256=VJ24avz5aEGYAs_kWvnGjMJtuIP4xJcYa459UQOQC3M,17608 +pip/_vendor/truststore/_openssl.py,sha256=LLUZ7ZGaio-i5dpKKjKCSeSufmn6T8pi9lDcFnvSyq0,2324 +pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130 +pip/_vendor/truststore/_windows.py,sha256=eldNViHNHeY5r3fiBoz_JFGD37atXB9S5yaRoPKEGAA,17891 +pip/_vendor/truststore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/typing_extensions.py,sha256=78hFl0HpDY-ylHUVCnWdU5nTHxUP2-S-3wEZk6CQmLk,134499 +pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333 +pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372 +pip/_vendor/urllib3/_version.py,sha256=cuJvnSrWxXGYgQ3-ZRoPMw8-qaN5tpw71jnH1t16dLA,64 +pip/_vendor/urllib3/connection.py,sha256=92k9td_y4PEiTIjNufCUa1NzMB3J3w0LEdyokYgXnW8,20300 +pip/_vendor/urllib3/connectionpool.py,sha256=Be6q65SR9laoikg-h_jmc_p8OWtEmwgq_Om_Xtig-2M,40285 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=Fef1IIUUFHqpevzXiDPbIGkDKchY2FVKeVeLGR1Qq3g,34446 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343 +pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665 +pip/_vendor/urllib3/poolmanager.py,sha256=aWyhXRtNO4JUnCSVVqKTKQd8EXTvUm1VN9pgs2bcONo,19990 +pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691 +pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=Z6WEf518eTOXP5jr5QSQ9gqJI0DVYt3Xs3EKnYaTmus,22013 +pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168 +pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296 +pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403 +pip/_vendor/vendor.txt,sha256=PxNaxxkkpBaw5zOTsDpHEY-zEaHjgkDgyrSxOuxg8nw,330 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/env/Lib/site-packages/pip-24.2.dist-info/REQUESTED b/env/Lib/site-packages/pip-24.2.dist-info/REQUESTED new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip-24.2.dist-info/WHEEL b/env/Lib/site-packages/pip-24.2.dist-info/WHEEL new file mode 100644 index 00000000..ecaf39f3 --- /dev/null +++ b/env/Lib/site-packages/pip-24.2.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (71.1.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/env/Lib/site-packages/pip-24.2.dist-info/entry_points.txt b/env/Lib/site-packages/pip-24.2.dist-info/entry_points.txt new file mode 100644 index 00000000..25fcf7e2 --- /dev/null +++ b/env/Lib/site-packages/pip-24.2.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main diff --git a/env/Lib/site-packages/pip-24.2.dist-info/top_level.txt b/env/Lib/site-packages/pip-24.2.dist-info/top_level.txt new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/env/Lib/site-packages/pip-24.2.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/env/Lib/site-packages/pip/__init__.py b/env/Lib/site-packages/pip/__init__.py new file mode 100644 index 00000000..640e922f --- /dev/null +++ b/env/Lib/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "24.2" + + +def main(args: Optional[List[str]] = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/env/Lib/site-packages/pip/__main__.py b/env/Lib/site-packages/pip/__main__.py new file mode 100644 index 00000000..59913261 --- /dev/null +++ b/env/Lib/site-packages/pip/__main__.py @@ -0,0 +1,24 @@ +import os +import sys + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/env/Lib/site-packages/pip/__pip-runner__.py b/env/Lib/site-packages/pip/__pip-runner__.py new file mode 100644 index 00000000..c633787f --- /dev/null +++ b/env/Lib/site-packages/pip/__pip-runner__.py @@ -0,0 +1,50 @@ +"""Execute exactly this copy of pip, within a different environment. + +This file is named as it is, to ensure that this module can't be imported via +an import statement. +""" + +# /!\ This version compatibility check section must be Python 2 compatible. /!\ + +import sys + +# Copied from pyproject.toml +PYTHON_REQUIRES = (3, 8) + + +def version_str(version): # type: ignore + return ".".join(str(v) for v in version) + + +if sys.version_info[:2] < PYTHON_REQUIRES: + raise SystemExit( + "This version of pip does not support python {} (requires >={}).".format( + version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES) + ) + ) + +# From here on, we can use Python 3 features, but the syntax must remain +# Python 2 compatible. + +import runpy # noqa: E402 +from importlib.machinery import PathFinder # noqa: E402 +from os.path import dirname # noqa: E402 + +PIP_SOURCES_ROOT = dirname(dirname(__file__)) + + +class PipImportRedirectingFinder: + @classmethod + def find_spec(self, fullname, path=None, target=None): # type: ignore + if fullname != "pip": + return None + + spec = PathFinder.find_spec(fullname, [PIP_SOURCES_ROOT], target) + assert spec, (PIP_SOURCES_ROOT, fullname) + return spec + + +sys.meta_path.insert(0, PipImportRedirectingFinder()) + +assert __name__ == "__main__", "Cannot run __pip-runner__.py as a non-main module" +runpy.run_module("pip", run_name="__main__", alter_sys=True) diff --git a/env/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b4e761ec8190ff7836a730818e0f53b465706a61 GIT binary patch literal 671 zcmX|9&ui2`6rM@4*>%?{{Wx)Wq5*eJixg#a4^c8ftximk2wr8ZyqoXj%OaWgK5VOr#otR#(qGvZp8OhWC5pIwd^;JviCphwIw0scF&?7utn<@}8! N1oQj!w|&j1{sJm(vjzYF literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc b/env/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aefca10109ab562eb85d7300aa473603faa0b683 GIT binary patch literal 827 zcmb7C&ubGw6n?Wi`JGfMwa`{P*n{TKD6x{DVhB~}A((=w5Ehngb{coP*(|f$>MBSB zLK}MMifHYrS0#Un7i|?}ics+6Ezny}&NNw4upWGedEdPG=6&D3ozIy}5_nvBx7m0s z1N;)3Fd_qR^a=rNgAO{fpw`c*h6ploNF8P!Ciq5|Bp_f$hxHJ32VhBB1v+(h4>J+6 zhgpX%cOe1+iRjYuRRFrcHO}y0X8O$2>whp~p;DM@(m#BTo>u5%9f;JG`j|US=<|d!Fko?2ZEA+Cs#(OaK-m!{wOl5< zzRR$qc~4oiLA?4ioyktiVJTI0wED8vAgan@xlv5io_T-75c=iyd*XBgy T&ZEsI-|>ZB4Dci!PfQe782{eP?0=SBT@b`t$7q#pmPOP?V-TBCMAX0vc<6>^GVZ*Ef!&#PW)@jo z5=uyF(Gtv{r|o1 z=U~texK4ig>EyRAfZrJ7EMMbLwFtl}D3An&C|rgliNYs2MOcO;Psy~`QP|xTPH}Yr z=UYx=#tr zbOM;3tDrPF@+EfLGkyGD>;#p7()?X$ov+IX6u4-3{+oe0n#x;Lq;qo0$`nLvN;Sol zo-2rYTFj}rn0QCUf0`(ZikePSgKCyYwOQ5BwJe_Fe*ZXANvjzu;;zYAs)({Fsur>_ z(bDm@nKvj}maV$^tghtoc1qSxTH-BK%jR^$LbX{{_RCs>7fnmHXx+ya3wk)pZL#RL z7$8!O&M^T9_%TWKG!jG-ncgeKe{3n-G8Ex`aBAgrXbhtK@D7Q;X7LOv)hu2Ef>w+0 zVF+M>FtpZJkvKNKBCCYJXZr*w!1w$e5+%b?V)LeDL^+#_pR&oU$v`EFJA(rkCazQ2 z&{S=5V(iSRiG)G>^}J!yuG14(*oo`vtqD`LXje{7&B&9~oWM48OA^v9Bd=-HkfeC7 zu;c5Uq#B*e8GZ9_&QilvbxlHt@!pJ{k~3ys{FOY6p3PPyf52ahP>RGJ46fb&qJNF7 zUVbq6x5=uv)Y^tY+rqT2YPfqE22GZ$Xatbjfjv$PtOT&nY(ugLn}O!f&wp~h%uH7z zu}UCT5@J;p!4^w<{!$Gi4Fe5iiHc4UFS;d~`5Xg)m@8OQx+dOT5IYTeJFglj@4I++ zAsWY!{0Z5bx~ysnHCTX(YA~p!m=9+$2(VRUZ)+7O;2?n{M|p+E<`bv!NufZZg58l& zb3--cjZ(BmQx~LZzA&rgP9PJ+% zlSW5I#-lDMR*>FtmGdD-q?(^{T@2F5js{59lL+!N%y5v{N0~UR6;}dgr}iM$=mbfz=?<6 zQfp7e+jGy_3`On*3u)yDyznl}!Xco+9#P&#%qNgxs9(g;I_+b3X$gngz zaO39C=)hR*vDi({^HH_5Zu`dyCJwiOIn}b=Y2C=mmhD30xq=<3kHd_5E1s28IC`m3 zsAIsRn{n1xBhpBS4P8kx4kBBth3&&~$x^-ds%BEdGLEpjeinBlmt*WU>qV`QJKo;< z|32d^{$uamEFszE2_Y{yfe6(wkifPZA_o^kFWrQ6ZF@oRZ19mXA6a>C int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..054e1467c793239a3058018c6d54865acfdef9f3 GIT binary patch literal 773 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 ZjI8S^gYmOV=61Fx-?r^b2EKIO{|0@W*A)N& literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4359f0eb517c1a354217050538580434ff2ee610 GIT binary patch literal 12653 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 a=k2WmydB6^c04Z#PYW}xpD|wHyZT=byne|5 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..95c5e4b18a87e6b14be696d97b4b5b7887bc1565 GIT binary patch literal 17618 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f7e2fa40efc480562f2aa9d2c8970b0de73efd0 GIT binary patch literal 35539 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6cb5d44bea3f986c52896b402c83f07fe58b18d7 GIT binary patch literal 5104 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 HQw9GGNvbGq literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10882a8c6d321356e860b25b15e94cbb968a384f GIT binary patch literal 10194 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%0DNV=ijgpi|e_? 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 Union[Tuple[str], Tuple[str, str]]: + return (a, b) if a != b else (a,) + + +class _Prefix: + def __init__(self, path: str) -> None: + self.path = path + self.setup = False + scheme = get_scheme("", prefix=path) + self.bin_dir = scheme.scripts + self.lib_dirs = _dedup(scheme.purelib, scheme.platlib) + + +def get_runnable_pip() -> str: + """Get a file to pass to a Python executable, to run the currently-running pip. + + This is used to run a pip subprocess, for installing requirements into the build + environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + if not source.is_dir(): + # This would happen if someone is using pip from inside a zip file. In that + # case, we can use that directly. + return str(source) + + return os.fsdecode(source / "__pip-runner__.py") + + +def _get_system_sitepackages() -> Set[str]: + """Get system site packages + + Usually from site.getsitepackages, + but fallback on `get_purelib()/get_platlib()` if unavailable + (e.g. in a virtualenv created by virtualenv<20) + + Returns normalized set of strings. + """ + if hasattr(site, "getsitepackages"): + system_sites = site.getsitepackages() + else: + # virtualenv < 20 overwrites site.py without getsitepackages + # fallback on get_purelib/get_platlib. + # this is known to miss things, but shouldn't in the cases + # where getsitepackages() has been removed (inside a virtualenv) + system_sites = [get_purelib(), get_platlib()] + return {os.path.normcase(path) for path in system_sites} + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps""" + + def __init__(self) -> None: + temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ("normal", "overlay") + ) + + self._bin_dirs: List[str] = [] + self._lib_dirs: List[str] = [] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = _get_system_sitepackages() + + self._site_dir = os.path.join(temp_dir.path, "site") + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open( + os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" + ) as fp: + fp.write( + textwrap.dedent( + """ + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + """ + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) + ) + + def __enter__(self) -> None: + self._save_env = { + name: os.environ.get(name, None) + for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") + } + + path = self._bin_dirs[:] + old_path = self._save_env["PATH"] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update( + { + "PATH": os.pathsep.join(path), + "PYTHONNOUSERSITE": "1", + "PYTHONPATH": os.pathsep.join(pythonpath), + } + ) + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements( + self, reqs: Iterable[str] + ) -> Tuple[Set[Tuple[str, str]], Set[str]]: + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = ( + get_environment(self._lib_dirs) + if hasattr(self, "_lib_dirs") + else get_default_environment() + ) + for req_str in reqs: + req = get_requirement(req_str) + # We're explicitly evaluating with an empty extra value, since build + # environments are not provided any mechanism to select specific extras. + if req.marker is not None and not req.marker.evaluate({"extra": ""}): + continue + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if not req.specifier.contains(dist.version, prereleases=True): + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + self._install_requirements( + get_runnable_pip(), + finder, + requirements, + prefix, + kind=kind, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + ) -> None: + args: List[str] = [ + sys.executable, + pip_runnable, + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + "--disable-pip-version-check", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append("-vv") + elif logger.getEffectiveLevel() <= VERBOSE: + args.append("-v") + for format_control in ("no_binary", "only_binary"): + formats = getattr(finder.format_control, format_control) + args.extend( + ( + "--" + format_control.replace("_", "-"), + ",".join(sorted(formats or {":none:"})), + ) + ) + + index_urls = finder.index_urls + if index_urls: + args.extend(["-i", index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(["--extra-index-url", extra_index]) + else: + args.append("--no-index") + for link in finder.find_links: + args.extend(["--find-links", link]) + + for host in finder.trusted_hosts: + args.extend(["--trusted-host", host]) + if finder.allow_all_prereleases: + args.append("--pre") + if finder.prefer_binary: + args.append("--prefer-binary") + args.append("--") + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"pip subprocess to install {kind}", + spinner=spinner, + extra_environ=extra_environ, + ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + raise NotImplementedError() diff --git a/env/Lib/site-packages/pip/_internal/cache.py b/env/Lib/site-packages/pip/_internal/cache.py new file mode 100644 index 00000000..6b451267 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cache.py @@ -0,0 +1,290 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from pathlib import Path +from typing import Any, Dict, List, Optional + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + +ORIGIN_JSON_NAME = "origin.json" + + +def _hash_dict(d: Dict[str, str]) -> str: + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + :param cache_dir: The root of the cache. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + + def _get_cache_path_parts(self, link: Link) -> List[str]: + """Get parts of part that must be os.path.joined with cache_dir""" + + # We want to generate an url to use as our cache key, we don't want to + # just reuse the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link: Link, canonical_package_name: str) -> List[Any]: + can_not_cache = not self.cache_dir or not canonical_package_name or not link + if can_not_cache: + return [] + + path = self.get_path_for_link(link) + if os.path.isdir(path): + return [(candidate, path) for candidate in os.listdir(path)] + return [] + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached items in for link.""" + raise NotImplementedError() + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs.""" + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates(link, canonical_package_name): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if canonicalize_name(wheel.name) != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, + link, + package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory""" + + def __init__(self) -> None: + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path) + + +class CacheEntry: + def __init__( + self, + link: Link, + persistent: bool, + ): + self.link = link + self.persistent = persistent + self.origin: Optional[DirectUrl] = None + origin_direct_url_path = Path(self.link.file_path).parent / ORIGIN_JSON_NAME + if origin_direct_url_path.exists(): + try: + self.origin = DirectUrl.from_json( + origin_direct_url_path.read_text(encoding="utf-8") + ) + except Exception as e: + logger.warning( + "Ignoring invalid cache entry origin file %s for %s (%s)", + origin_direct_url_path, + link.filename, + e, + ) + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + self._wheel_cache = SimpleWheelCache(cache_dir) + self._ephem_cache = EphemWheelCache() + + def get_path_for_link(self, link: Link) -> str: + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link: Link) -> str: + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Optional[CacheEntry]: + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None + + @staticmethod + def record_download_origin(cache_dir: str, download_info: DirectUrl) -> None: + origin_path = Path(cache_dir) / ORIGIN_JSON_NAME + if origin_path.exists(): + try: + origin = DirectUrl.from_json(origin_path.read_text(encoding="utf-8")) + except Exception as e: + logger.warning( + "Could not read origin file %s in cache entry (%s). " + "Will attempt to overwrite it.", + origin_path, + e, + ) + else: + # TODO: use DirectUrl.equivalent when + # https://github.com/pypa/pip/pull/10564 is merged. + if origin.url != download_info.url: + logger.warning( + "Origin URL %s in cache entry %s does not match download URL " + "%s. This is likely a pip bug or a cache corruption issue. " + "Will overwrite it with the new value.", + origin.url, + cache_dir, + download_info.url, + ) + origin_path.write_text(download_info.to_json(), encoding="utf-8") diff --git a/env/Lib/site-packages/pip/_internal/cli/__init__.py b/env/Lib/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 00000000..e589bb91 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/__init__.py @@ -0,0 +1,4 @@ +"""Subpackage containing all of pip's command line interface related code +""" + +# This file intentionally does not import submodules diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81e1d717c0e88e329dafd7644df82e489d60663e GIT binary patch literal 264 zcmXv}!Ae6h5KL;(Qs_VAR(hyU+M9?M5idoB-XsvxWcygmOCCv{P|w~xi{Ie4_y=D7 z0cmeNxsf`To!Nz%ozKx|$Oz-N*ZPI#cM<>K2eKOwd1sbAunnK|o^O`js@3LE*C0&r zS))f^3+kN*V=%H;B*E{XA8sI3I94#$_As<2iujj{oVDs zT!4&{Y7}~D&w$HBrz*>+HUrPize94 Y!DT!q|57QH#y>}#^KFmwe(aO{1vfZNYXATM literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..47d94856c1ef486873b9be418a4496777b2f08a7 GIT binary patch literal 8592 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a35f3a2e3381800c097b9c933a979ec7e3fd1827 GIT binary patch literal 10182 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 z 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 Ju};+Y_+J*WV)y_6 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..65ff78ee343e9472ca8435e5e7a749315ff8d0be GIT binary patch literal 14999 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 AfdBvi literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..07ea3ded1a43a270ec37a96aafa71b78cac6d9bf GIT binary patch literal 12227 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 None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + # Don't complete if autocompletion environment variables + # are not present + if not os.environ.get("COMP_WORDS") or not os.environ.get("COMP_CWORD"): + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: Optional[str] = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + options += [ + (opt_str, opt.nargs) for opt_str in opt._long_opts + opt._short_opts + ] + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ```` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: List[str], cword: int, opts: Iterable[Any] +) -> Optional[str]: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(``file``, ``path`` or ``dir``) + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/env/Lib/site-packages/pip/_internal/cli/base_command.py b/env/Lib/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 00000000..bc1ab659 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,231 @@ +"""Base Command class, and related routines""" + +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import List, Optional, Tuple + +from pip._vendor.rich import reconfigure +from pip._vendor.rich import traceback as rich_traceback + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + DiagnosticPipError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, +) +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage: str = "" + ignore_require_venv: bool = False + + def __init__(self, name: str, summary: str, isolated: bool = False) -> None: + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry: Optional[TempDirRegistry] = None + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self) -> None: + pass + + def handle_pip_version_check(self, options: Values) -> None: + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options: Values, args: List[str]) -> int: + raise NotImplementedError + + def _run_wrapper(self, level_number: int, options: Values, args: List[str]) -> int: + def _inner_run() -> int: + try: + return self.run(options, args) + finally: + self.handle_pip_version_check(options) + + if options.debug_mode: + rich_traceback.install(show_locals=True) + return _inner_run() + + try: + status = _inner_run() + assert isinstance(status, int) + return status + except DiagnosticPipError as exc: + logger.error("%s", exc, extra={"rich": True}) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to + # stderr because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + + def parse_args(self, args: List[str]) -> Tuple[Values, List[str]]: + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args: List[str]) -> int: + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args: List[str]) -> int: + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + + reconfigure(no_color=options.no_color) + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + always_enabled_features = set(options.features_enabled) & set( + cmdoptions.ALWAYS_ENABLED_FEATURES + ) + if always_enabled_features: + logger.warning( + "The following features are always enabled: %s. ", + ", ".join(sorted(always_enabled_features)), + ) + + # Make sure that the --python argument isn't specified after the + # subcommand. We can tell, because if --python was specified, + # we should only reach this point if we're running in the created + # subprocess, which has the _PIP_RUNNING_IN_SUBPROCESS environment + # variable set. + if options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + logger.critical( + "The --python option must be placed before the pip subcommand name" + ) + sys.exit(ERROR) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + return self._run_wrapper(level_number, options, args) diff --git a/env/Lib/site-packages/pip/_internal/cli/cmdoptions.py b/env/Lib/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 00000000..0b7cff77 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1075 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import importlib.util +import logging +import os +import textwrap +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable, Dict, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + +logger = logging.getLogger(__name__) + + +def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_dist_restriction(options: Values, check_target: bool = False) -> None: + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if not options.dry_run and dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target' or using '--dry-run'" + ) + + +def _path_option_check(option: Option, opt: str, value: str) -> str: + return os.path.expanduser(value) + + +def _package_name_option_check(option: Option, opt: str, value: str) -> str: + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_: Callable[..., Option] = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) + +debug_mode: Callable[..., Option] = partial( + Option, + "--debug", + dest="debug_mode", + action="store_true", + default=False, + help=( + "Let unhandled exceptions propagate outside the main subroutine, " + "instead of logging them to stderr." + ), +) + +isolated_mode: Callable[..., Option] = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) + +require_virtualenv: Callable[..., Option] = partial( + Option, + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=( + "Allow pip to only run in a virtual environment; " + "exit with an error otherwise." + ), +) + +override_externally_managed: Callable[..., Option] = partial( + Option, + "--break-system-packages", + dest="override_externally_managed", + action="store_true", + help="Allow pip to modify an EXTERNALLY-MANAGED Python installation", +) + +python: Callable[..., Option] = partial( + Option, + "--python", + dest="python", + help="Run pip with the specified Python interpreter.", +) + +verbose: Callable[..., Option] = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) + +no_color: Callable[..., Option] = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) + +version: Callable[..., Option] = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) + +quiet: Callable[..., Option] = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) + +progress_bar: Callable[..., Option] = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=["on", "off", "raw"], + default="on", + help="Specify whether the progress bar should be used [on, off, raw] (default: on)", +) + +log: Callable[..., Option] = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) + +no_input: Callable[..., Option] = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) + +keyring_provider: Callable[..., Option] = partial( + Option, + "--keyring-provider", + dest="keyring_provider", + choices=["auto", "disabled", "import", "subprocess"], + default="auto", + help=( + "Enable the credential lookup via the keyring library if user input is allowed." + " Specify which mechanism to use [disabled, import, subprocess]." + " (default: disabled)" + ), +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form scheme://[user:passwd@]proxy.server:port.", +) + +retries: Callable[..., Option] = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum number of retries each connection should attempt " + "(default %default times).", +) + +timeout: Callable[..., Option] = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) + + +def exists_action() -> Option: + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert: Callable[..., Option] = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) + +client_cert: Callable[..., Option] = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) + +index_url: Callable[..., Option] = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) + + +def extra_index_url() -> Option: + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index: Callable[..., Option] = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) + + +def find_links() -> Option: + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host() -> Option: + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints() -> Option: + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def requirements() -> Option: + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable() -> Option: + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src: Callable[..., Option] = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) + + +def _get_format_control(values: Values, option: Option) -> Any: + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms: Callable[..., Option] = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]: + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = f"invalid --python-version value: {value!r}: {error_msg}" + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version: Callable[..., Option] = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) + + +implementation: Callable[..., Option] = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) + + +abis: Callable[..., Option] = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) + + +def add_target_python_options(cmd_opts: OptionGroup) -> None: + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options: Values) -> TargetPython: + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary() -> Option: + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help=( + "Prefer binary packages over source packages, even if the " + "source packages are newer." + ), + ) + + +cache_dir: Callable[..., Option] = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) + + +def _handle_no_cache_dir( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache: Callable[..., Option] = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) + +no_deps: Callable[..., Option] = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) + +ignore_requires_python: Callable[..., Option] = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) + +no_build_isolation: Callable[..., Option] = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) + +check_build_deps: Callable[..., Option] = partial( + Option, + "--check-build-dependencies", + dest="check_build_deps", + action="store_true", + default=False, + help="Check the build dependencies when PEP517 is used.", +) + + +def _handle_no_use_pep517( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-use-pep517 option. + + This is an optparse.Option callback for the no_use_pep517 option. + """ + # Since --no-use-pep517 doesn't accept arguments, the value argument + # will be None if --no-use-pep517 is passed via the command-line. + # However, the value can be non-None if the option is triggered e.g. + # by an environment variable, for example "PIP_NO_USE_PEP517=true". + if value is not None: + msg = """A value was passed for --no-use-pep517, + probably using either the PIP_NO_USE_PEP517 environment variable + or the "no-use-pep517" config file option. Use an appropriate value + of the PIP_USE_PEP517 environment variable or the "use-pep517" + config file option instead. + """ + raise_option_error(parser, option=option, msg=msg) + + # If user doesn't wish to use pep517, we check if setuptools and wheel are installed + # and raise error if it is not. + packages = ("setuptools", "wheel") + if not all(importlib.util.find_spec(package) for package in packages): + msg = ( + f"It is not possible to use --no-use-pep517 " + f"without {' and '.join(packages)} installed." + ) + raise_option_error(parser, option=option, msg=msg) + + # Otherwise, --no-use-pep517 was passed via the command-line. + parser.values.use_pep517 = False + + +use_pep517: Any = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=None, + help="Use PEP 517 for building source distributions " + "(use --no-use-pep517 to force legacy behaviour).", +) + +no_use_pep517: Any = partial( + Option, + "--no-use-pep517", + dest="use_pep517", + action="callback", + callback=_handle_no_use_pep517, + default=None, + help=SUPPRESS_HELP, +) + + +def _handle_config_settings( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + key, sep, val = value.partition("=") + if sep != "=": + parser.error(f"Arguments to {opt_str} must be of the form KEY=VAL") + dest = getattr(parser.values, option.dest) + if dest is None: + dest = {} + setattr(parser.values, option.dest, dest) + if key in dest: + if isinstance(dest[key], list): + dest[key].append(val) + else: + dest[key] = [dest[key], val] + else: + dest[key] = val + + +config_settings: Callable[..., Option] = partial( + Option, + "-C", + "--config-settings", + dest="config_settings", + type=str, + action="callback", + callback=_handle_config_settings, + metavar="settings", + help="Configuration settings to be passed to the PEP 517 build backend. " + "Settings take the form KEY=VALUE. Use multiple --config-settings options " + "to pass multiple keys to the backend.", +) + +build_options: Callable[..., Option] = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) + +global_options: Callable[..., Option] = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=False, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + +root_user_action: Callable[..., Option] = partial( + Option, + "--root-user-action", + dest="root_user_action", + default="warn", + choices=["warn", "ignore"], + help="Action if pip is run as a root user [warn, ignore] (default: warn)", +) + + +def _handle_merge_hash( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + f"Arguments to {opt_str} must be a hash name " + "followed by a value, like --hash=sha256:" + "abcde..." + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash: Callable[..., Option] = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) + + +require_hashes: Callable[..., Option] = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) + + +list_path: Callable[..., Option] = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) + + +def check_list_path_option(options: Values) -> None: + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude: Callable[..., Option] = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) + + +no_python_version_warning: Callable[..., Option] = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help="Silence deprecation warnings for upcoming unsupported Pythons.", +) + + +# Features that are now always on. A warning is printed if they are used. +ALWAYS_ENABLED_FEATURES = [ + "truststore", # always on since 24.2 + "no-binary-enable-wheel-cache", # always on since 23.1 +] + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "fast-deps", + ] + + ALWAYS_ENABLED_FEATURES, + help="Enable new functionality, that may be backward incompatible.", +) + +use_deprecated_feature: Callable[..., Option] = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "legacy-resolver", + "legacy-certs", + ], + help=("Enable deprecated functionality, that will be removed in the future."), +) + + +########## +# groups # +########## + +general_group: Dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + debug_mode, + isolated_mode, + require_virtualenv, + python, + verbose, + version, + quiet, + log, + no_input, + keyring_provider, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + ], +} + +index_group: Dict[str, Any] = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} diff --git a/env/Lib/site-packages/pip/_internal/cli/command_context.py b/env/Lib/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 00000000..139995ac --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Generator, TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self) -> None: + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self) -> Generator[None, None, None]: + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider: ContextManager[_T]) -> _T: + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/env/Lib/site-packages/pip/_internal/cli/index_command.py b/env/Lib/site-packages/pip/_internal/cli/index_command.py new file mode 100644 index 00000000..226f8da1 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/index_command.py @@ -0,0 +1,170 @@ +""" +Contains command classes which may interact with an index / the network. + +Unlike its sister module, req_command, this module still uses lazy imports +so commands which don't always hit the network (e.g. list w/o --outdated or +--uptodate) don't need waste time importing PipSession and friends. +""" + +import logging +import os +import sys +from optparse import Values +from typing import TYPE_CHECKING, List, Optional + +from pip._vendor import certifi + +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._internal.network.session import PipSession + +logger = logging.getLogger(__name__) + + +def _create_truststore_ssl_context() -> Optional["SSLContext"]: + if sys.version_info < (3, 10): + logger.debug("Disabling truststore because Python version isn't 3.10+") + return None + + try: + import ssl + except ImportError: + logger.warning("Disabling truststore since ssl support is missing") + return None + + try: + from pip._vendor import truststore + except ImportError: + logger.warning("Disabling truststore because platform isn't supported") + return None + + ctx = truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) + ctx.load_verify_locations(certifi.where()) + return ctx + + +class SessionCommandMixin(CommandContextMixIn): + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: Optional["PipSession"] = None + + @classmethod + def _get_index_urls(cls, options: Values) -> Optional[List[str]]: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> "PipSession": + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: Optional[int] = None, + timeout: Optional[int] = None, + ) -> "PipSession": + from pip._internal.network.session import PipSession + + cache_dir = options.cache_dir + assert not cache_dir or os.path.isabs(cache_dir) + + if "legacy-certs" not in options.deprecated_features_enabled: + ssl_context = _create_truststore_ssl_context() + else: + ssl_context = None + + session = PipSession( + cache=os.path.join(cache_dir, "http-v2") if cache_dir else None, + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ssl_context=ssl_context, + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + session.trust_env = False + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + session.auth.keyring_provider = options.keyring_provider + + return session + + +def _pip_self_version_check(session: "PipSession", options: Values) -> None: + from pip._internal.self_outdated_check import pip_self_version_check as check + + check(session, options) + + +class IndexGroupCommand(Command, SessionCommandMixin): + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options: Values) -> None: + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + try: + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, + retries=0, + timeout=min(5, options.timeout), + ) + with session: + _pip_self_version_check(session, options) + except Exception: + logger.warning("There was an error checking the latest version of pip.") + logger.debug("See below for error", exc_info=True) diff --git a/env/Lib/site-packages/pip/_internal/cli/main.py b/env/Lib/site-packages/pip/_internal/cli/main.py new file mode 100644 index 00000000..563ac79c --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,80 @@ +"""Primary application entrypoint. +""" + +import locale +import logging +import os +import sys +import warnings +from typing import List, Optional + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args: Optional[List[str]] = None) -> int: + if args is None: + args = sys.argv[1:] + + # Suppress the pkg_resources deprecation warning + # Note - we use a module of .*pkg_resources to cover + # the normal case (pip._vendor.pkg_resources) and the + # devendored case (a bare pkg_resources) + warnings.filterwarnings( + action="ignore", category=DeprecationWarning, module=".*pkg_resources" + ) + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/env/Lib/site-packages/pip/_internal/cli/main_parser.py b/env/Lib/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 00000000..5ade356b --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,134 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import subprocess +import sys +from typing import List, Optional, Tuple + +from pip._internal.build_env import get_runnable_pip +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser() -> ConfigOptionParser: + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def identify_python_interpreter(python: str) -> Optional[str]: + # If the named file exists, use it. + # If it's a directory, assume it's a virtual environment and + # look for the environment's Python executable. + if os.path.exists(python): + if os.path.isdir(python): + # bin/python for Unix, Scripts/python.exe for Windows + # Try both in case of odd cases like cygwin. + for exe in ("bin/python", "Scripts/python.exe"): + py = os.path.join(python, exe) + if os.path.exists(py): + return py + else: + return python + + # Could not find the interpreter specified + return None + + +def parse_command(args: List[str]) -> Tuple[str, List[str]]: + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --python + if general_options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + # Re-invoke pip using the specified Python interpreter + interpreter = identify_python_interpreter(general_options.python) + if interpreter is None: + raise CommandError( + f"Could not locate Python interpreter {general_options.python}" + ) + + pip_cmd = [ + interpreter, + get_runnable_pip(), + ] + pip_cmd.extend(args) + + # Set a flag so the child doesn't re-invoke itself, causing + # an infinite loop. + os.environ["_PIP_RUNNING_IN_SUBPROCESS"] = "1" + returncode = 0 + try: + proc = subprocess.run(pip_cmd) + returncode = proc.returncode + except (subprocess.SubprocessError, OSError) as exc: + raise CommandError(f"Failed to run pip under {interpreter}: {exc}") + sys.exit(returncode) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/env/Lib/site-packages/pip/_internal/cli/parser.py b/env/Lib/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 00000000..b7d7c1f6 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,294 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Generator, List, Optional, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: Optional[str]) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: Optional[str]) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> List[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items( + self, + ) -> Generator[Tuple[str, Any], None, None]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: Dict[str, List[Tuple[str, Any]]] = { + name: [] for name in override_order + } + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + f"{val} is not a valid value for {key} option, " + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead." + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + f"{val} is not a valid value for {key} option, " + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0." + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> None: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/env/Lib/site-packages/pip/_internal/cli/progress_bars.py b/env/Lib/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 00000000..883359c9 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,94 @@ +import functools +import sys +from typing import Callable, Generator, Iterable, Iterator, Optional, Tuple + +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.cli.spinners import RateLimiter +from pip._internal.utils.logging import get_indentation + +DownloadProgressRenderer = Callable[[Iterable[bytes]], Iterator[bytes]] + + +def _rich_progress_bar( + iterable: Iterable[bytes], + *, + bar_type: str, + size: int, +) -> Generator[bytes, None, None]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: Tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("eta"), + TimeRemainingColumn(), + ) + + progress = Progress(*columns, refresh_per_second=5) + task_id = progress.add_task(" " * (get_indentation() + 2), total=total) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + + +def _raw_progress_bar( + iterable: Iterable[bytes], + *, + size: Optional[int], +) -> Generator[bytes, None, None]: + def write_progress(current: int, total: int) -> None: + sys.stdout.write("Progress %d of %d\n" % (current, total)) + sys.stdout.flush() + + current = 0 + total = size or 0 + rate_limiter = RateLimiter(0.25) + + write_progress(current, total) + for chunk in iterable: + current += len(chunk) + if rate_limiter.ready() or current == total: + write_progress(current, total) + rate_limiter.reset() + yield chunk + + +def get_download_progress_renderer( + *, bar_type: str, size: Optional[int] = None +) -> DownloadProgressRenderer: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) + elif bar_type == "raw": + return functools.partial(_raw_progress_bar, size=size) + else: + return iter # no-op, when passed an iterator diff --git a/env/Lib/site-packages/pip/_internal/cli/req_command.py b/env/Lib/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 00000000..92900f94 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,329 @@ +"""Contains the RequirementCommand base class. + +This class is in a separate module so the commands that do not always +need PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +from functools import partial +from optparse import Values +from typing import Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.index_command import IndexGroupCommand +from pip._internal.cli.index_command import SessionCommandMixin as SessionCommandMixin +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.resolution.base import BaseResolver +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) + +logger = logging.getLogger(__name__) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +def with_cleanup(func: Any) -> Any: + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper( + self: RequirementCommand, options: Values, args: List[Any] + ) -> Optional[int]: + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args: Any, **kw: Any) -> None: + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options: Values) -> str: + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "resolvelib" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + build_tracker: BuildTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: Optional[str] = None, + verbosity: int = 0, + ) -> RequirementPreparer: + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + legacy_resolver = False + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "resolvelib": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + legacy_resolver = True + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + check_build_deps=options.check_build_deps, + build_tracker=build_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + verbosity=verbosity, + legacy_resolver=legacy_resolver, + ) + + @classmethod + def make_resolver( + cls, + preparer: RequirementPreparer, + finder: PackageFinder, + options: Values, + wheel_cache: Optional[WheelCache] = None, + use_user_site: bool = False, + ignore_installed: bool = True, + ignore_requires_python: bool = False, + force_reinstall: bool = False, + upgrade_strategy: str = "to-satisfy-only", + use_pep517: Optional[bool] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> BaseResolver: + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + use_pep517=use_pep517, + ) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "resolvelib": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args: List[str], + options: Values, + finder: PackageFinder, + session: PipSession, + ) -> List[InstallRequirement]: + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements: List[InstallRequirement] = [] + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + comes_from=None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=( + parsed_req.options.get("config_settings") + if parsed_req.options + else None + ), + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not (args or options.editables or options.requirements): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder: PackageFinder) -> None: + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) diff --git a/env/Lib/site-packages/pip/_internal/cli/spinners.py b/env/Lib/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 00000000..cf2b976f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,159 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Generator, Optional + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation + +logger = logging.getLogger(__name__) + + +class SpinnerInterface: + def spin(self) -> None: + raise NotImplementedError() + + def finish(self, final_status: str) -> None: + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message: str, + file: Optional[IO[str]] = None, + spin_chars: str = "-\\|/", + # Empirically, 8 updates/second looks nice + min_update_interval_seconds: float = 0.125, + ): + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status: str) -> None: + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status: str) -> None: + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds: float) -> None: + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update: float = 0 + + def ready(self) -> bool: + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self) -> None: + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message: str) -> Generator[SpinnerInterface, None, None]: + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner: SpinnerInterface = InteractiveSpinner(message) + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +HIDE_CURSOR = "\x1b[?25l" +SHOW_CURSOR = "\x1b[?25h" + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Generator[None, None, None]: + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/env/Lib/site-packages/pip/_internal/cli/status_codes.py b/env/Lib/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 00000000..5e29502c --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/cli/status_codes.py @@ -0,0 +1,6 @@ +SUCCESS = 0 +ERROR = 1 +UNKNOWN_ERROR = 2 +VIRTUALENV_NOT_FOUND = 3 +PREVIOUS_BUILD_DIR_ERROR = 4 +NO_MATCHES_FOUND = 23 diff --git a/env/Lib/site-packages/pip/_internal/commands/__init__.py b/env/Lib/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 00000000..858a4101 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,132 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") + +# This dictionary does a bunch of heavy lifting for help output: +# - Enables avoiding additional (costly) imports for presenting `--help`. +# - The ordering matters for help display. +# +# Even though the module path starts with the same "pip._internal.commands" +# prefix, the full path makes testing easier (specifically when modifying +# `commands_dict` in test setup / teardown). +commands_dict: Dict[str, CommandInfo] = { + "install": CommandInfo( + "pip._internal.commands.install", + "InstallCommand", + "Install packages.", + ), + "download": CommandInfo( + "pip._internal.commands.download", + "DownloadCommand", + "Download packages.", + ), + "uninstall": CommandInfo( + "pip._internal.commands.uninstall", + "UninstallCommand", + "Uninstall packages.", + ), + "freeze": CommandInfo( + "pip._internal.commands.freeze", + "FreezeCommand", + "Output installed packages in requirements format.", + ), + "inspect": CommandInfo( + "pip._internal.commands.inspect", + "InspectCommand", + "Inspect the python environment.", + ), + "list": CommandInfo( + "pip._internal.commands.list", + "ListCommand", + "List installed packages.", + ), + "show": CommandInfo( + "pip._internal.commands.show", + "ShowCommand", + "Show information about installed packages.", + ), + "check": CommandInfo( + "pip._internal.commands.check", + "CheckCommand", + "Verify installed packages have compatible dependencies.", + ), + "config": CommandInfo( + "pip._internal.commands.configuration", + "ConfigurationCommand", + "Manage local and global configuration.", + ), + "search": CommandInfo( + "pip._internal.commands.search", + "SearchCommand", + "Search PyPI for packages.", + ), + "cache": CommandInfo( + "pip._internal.commands.cache", + "CacheCommand", + "Inspect and manage pip's wheel cache.", + ), + "index": CommandInfo( + "pip._internal.commands.index", + "IndexCommand", + "Inspect information available from package indexes.", + ), + "wheel": CommandInfo( + "pip._internal.commands.wheel", + "WheelCommand", + "Build wheels from your requirements.", + ), + "hash": CommandInfo( + "pip._internal.commands.hash", + "HashCommand", + "Compute hashes of package archives.", + ), + "completion": CommandInfo( + "pip._internal.commands.completion", + "CompletionCommand", + "A helper command used for command completion.", + ), + "debug": CommandInfo( + "pip._internal.commands.debug", + "DebugCommand", + "Show information useful for debugging.", + ), + "help": CommandInfo( + "pip._internal.commands.help", + "HelpCommand", + "Show help for commands.", + ), +} + + +def create_command(name: str, **kwargs: Any) -> Command: + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name: str) -> Optional[str]: + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dc4713776dda776453ce5b0a04379f093bc1fb9f GIT binary patch literal 3988 zcmaJ^%X8bt8DD@T2#F%8r!8BS4cmH{vPJnBx3XhbmaJHQNJ^AAt)dJE;x0*8Aiyj@ z%Vek-9(t%IGif}Xj&;aEndu=N_uymyhhD7FAt)xD+SAFQH%^sPPW^U4$WUq)BLcg> z-?zX0_Ser=&)zGT|*c|Njq-C?Kt*4)@*WrsF zkPbXgB6xwcg4=GWMS|^eNhhh08=5jIZg@t^+OE7%vNh9Cbufxfd+pp< zvoL4m%&Jl}aakvsl4=*uDOp{$tPE2-r&wj^hF09DW>_}#T|Ew+r!$&i6AFrH-;H#W zcN24-VN<@^)vPNeZ!A{Ym9e>Q=%$LRCt8U425xeuY3j>$`#?aitqhUzykntxn|J#b zZs$k7u`k)Pj|4QO93`Yms)H>AJ=%@Wax-7*!a~_Dm2IWz4#E4104bDwR@Nvf62rEX zoJotSo#ufpk*xjy0?T+FSXS`+Ist)Yb;T|arBtyCrlAnyu|`dU^^kVMx@OtcfffT` zq#L^rZ(p#VRo>z{C|Lz_y`>T(-PjVmeWfv00VQvYka~)`YQ8lrX*ZHBknCFZSPM5f z>vl{tBVYdNLqfG&3U8d03 zG~C|lVAbz@h8@v5&7d?57BG6Lt&cHw=B$Qq~KEfXmDnlr;#^la|Vybvx#m zk*|EoS3WSwk5x@qS=e*bEc&j)G(kfa{s`~2Wj~yCJ3eNv`TY#tDr-9S+=Vs6WGiNw z9#~3{p9R$_w9HRNy0JU(_Ek?q0hTF&bg>G=Qq0`Gvuw_^$IRRIEEws8r9$;&%Y^Yw z+%Bf+nfu+0PbmeWmk9MYYo%<#mcXVJwAt>>Q`Kt(;lX6JoNpN(&bl2l%*gLy`=!R%xSvqQp_*49;;w_J%5 zyG)I&z)qy*Bf&QYzr82$dWP&Kj8F}+^KJ!hBpc#JXd`Sl?VI{v>=UY(#6(C6o$PXWJEcrYTWj+Ev5bJB%!0 zbI&%==E%LXPg&RO0*CXE3x>i*ndSm1k)8vm+-UP${4+|0=~;%fX~mLBZCzV+<6bf2 z9jb0LPi)n;X-ej8={Pfw1x{Q@wfz&9o@cDoZ0d(Q!wuZ1AAK2&*m&6U(}%YwSMI|u z!mbA^OP9{CEK=A3%G4s`7gyj!Sh=sQu2`B)#{DCB1=4w9{|uk-RVOllX?7-)E>+w_ zmd7g7BD^5Vmt(aD|gQ2pLlN4GxyK7Q!C_|Q&#X#11h_=WoH z_q_vKv)gxfdnf7-{+<|knV8z{{dRpPG49Dg3Q`K32s-+Di9#F|JWH4zIeAD2)ilnPgm z`su)CUQx@oIi58sh0``o+1(m0Qe7~sFfFDO?#QVr4?aArT!dPbQ-7%{H%B2RYyOBQ?Fvl z-%oB%esR4%^SWf6BYrJhb~zz@v+bgti(Lxqy9<0?j`;W%Cd~DcA==ujb^-naigGPQp7hfm(w+3IHxx1UVSC2Ki9||ea3CA}-cjPmU-0#Q(d(m*G z)Ce)6(Sah#r!hxPIr0%lJ_b~m)QEHH5Q=m@9dP6^M?UJvgFtmljl-N$P$a&&=E$Rt zeAtn%0hN>*Cpk5SB8fMBrM$k*a_TaQ#5V6a@~|WKIr1r>;!@)Zr*0geE_>8XPTdhu zq+|0FM;>wHLykNJTtaHh37q@@NbX76k&ip_c_6`)C68S3NzcvG9{H(9<_^kEc(Qqq zEFC1@^~ldWvU-qAd*tUH3I7lU2RRNT4Dz*-lXhCc}GRUmt$#)3!w8pyyn z*-&7dzwyY`gR&<**(@jP@!#2BO>Ygn>>b)k4)39df*>}i*e3LB^)wKCz76rui|8J! ZHTq*h@0Qg-@Y#OyBJ|D1kF3a3?!VjC$JhV> literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0ef73074aa2286fa9f3d5b8c20870f16bc9280fb GIT binary patch literal 9687 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6e7a719095ffc29a4168790863dc343a054de2e GIT binary patch literal 5179 zcmbVQU2Gd!6&~B;pE!2nB>n&6l7z;ybdsh;MNQXLTQ`L+X&RDr%Q}gMiRapJI`(+) zjPv8fQXeYO3Z!Z!P%FX1!V9fhiLQi1dD@3XyztT}poH00LSlJ9yaZYv*eA{z&y4NF zE$oi0nRD+w=ey^gzk9F$5RHa8c=~?w!|cZ~j{7S%oX2kyFPDJ0$0?lRQMpw0>q&W_ z?Nz;bU&`mfKA+0x{VBgi^J*X;Oa(34uZHq1sTPY4sNsBTsuk#9Dx!px7A35-Dv_V@ zsi>Fx7N1cVuP7C6PCI^~%`z@Yu+Ei8$$vTTSWu)$xlHiSFK&6&$TLr{0>W zRJzG@gRnE3{k6E0D4po7(QlR+yF4bHzczVQLV=Ot$>GEx=^Z2|&JHMaVW3b_RU(j@ z_LYjOfW10OM2#pkBbQWzh?mH=m6H`TaaBtGN4<%95C8;;IEL1rIxe2>pXqVoB?O8K zq`_V&A}h)cOD$?l(ZNKoHBikQiQafTd2M`rcyv-66ol7Vr>R}4(+tiun#WbS&N#UY znVKTKWqnSf3$hBKP%!9{F(ra9IyZ2nT+euZOx(!4|eFk)`#L{%2A7dR;;}~Hy z3)wZGk&PtPCLWCZ5fM6%ngo$hm?}#2gXDZP$zZucmgq$_XOL-PO^bf0pKEGxrUs4`1t-AAF%%IqGU<*tF`v*) z#B@WZ{QzpC3jo0wk55wF5XaB}m+SxQ#>SVmurpy{fDm*P#UL zP{10wplazGBtfPi#Ocz^(9i_B!4dA8T0JwohOF9Ct?4xocag}3PmR^C;J7GD_5P~9LjMRYWWj&pw%~H5 zcSK>LF$$3}e$kefbB3$aRIXQxY0?l370c@`RW7BnbY%x&ioo@Kr zXP^E_Gr*`(VujH()N%I-0fi^8m*0cld)z8F?+(?7dHZZu>j6DIidXR|yaM_^4nDHi z>iHrFcoy`*Y0$5}qbaN8T#0 zhg;@^-J|7zC}P}{z2dCdsv8=kc#O~uh8{5eR`iq)59eV^sd)`Zg<2j(S%|%WY@HTN zza?w(3hV5<&*w4O7lScI}5XQ@67r;!0E2d6bw zfOC?a7CI76UKE$j)|xtc`Eb%50}9ivzixO86w!YVubbRvC~`M?C%O?LYay~3*|iyo zZFZ5(&V8F5@H@U0)!sr|M8UQGwPw zts9}fwNT#!&x3FLD)BJ!r_kw_uoBJ;R$ZZ+yv(wCx<1)4;H~oD1t;F)4CJ?-W+mZ~ zJy!7<&NY%-^*yr7%|-4mpY~?Cw08zjE4<=a<;x)Pf%iu(JXi5o_*KumQ!;HN{H*#G zIJRP7Ok2;qb$NAK)o-0%(Z&&MHOE!FPKwUA@02k*oIYn&kKL6xE2;#HE{Dt5Sq$uk;S*e7}Jb_(Ih?$-CMfUR5QE4JMetB$i!sKtzWgUPtW>Ccf zGDCPBTV!(43@B8g1;g~g{{dzI_CmNNFpOf;Uqr>t_6z4HhMoH{z%mRu)2CaIhC&%L z{fi8Wh{?}uxq=X6XnA%7UuZ*^7#F5jCyrVTyJ+dG2N-mm4G$aeu!AV!W2HiQ_s+Tk z-59v~C-Az-eb&*l(Gg$kh_83Nbvy9<g+--VCPKKR=GT_5^?dg#g7+tFwH zE^M}T-c8&|+`qKe+Wma@;d{~t((_pNM(pTX?C6J!zpVVc@?>^Bc6uXrZY_51cXOZ2 zKZ~7PkA3&0&%3AX_N7+=F53CyfsM}iT4(%8;A!^b{BQHmI^*k|BY%usdERy4_ULDk z_Pg)gd1oVXXf1MRGxqh3*on2+i6^IibLOKnPb=#uudK&LU-`VzHo)3-@b>6`{zXf;EUgtrDsGQ*OT*OZcqbVQQgFUhJs5|kuGOG9^8E?dBj zk34US{D3@COCU%mLUmU#v#cj=#p-mcpAEISVaSaEeU!j{kD@qEgKKjqqAa0g#-d;i9r zc!580i}!Z%H`}+up=fBUvn>+ZIuZtI&+e|!KQDWR_IRIhov+HCZ+Z^i5B{5jk2TqU E0gY@8q5uE@ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e57046e4d914900a0753ebd19caef37eab633f52 GIT binary patch literal 13149 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 Ovr7m6z|aDn^?v{s5FdH~ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ce5d825b54bd7461ebc2b662e987a4463bbf13b GIT binary patch literal 10054 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7fc8fd2131fdbbd82f6f1c93bddb283aa340344d GIT binary patch literal 7489 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 N=O6q>U{7x2{{aC50}=oL literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..842eb6febaea46bb79803f6850496b836947ba59 GIT binary patch literal 2954 zcmai0TTC3+89sB}nZ0l+m*rx+<6=Z6Dog6tc8y{r3zN7B!VybTc}p}Mb`HCNDPJNg~4P2?a)@K7$|LQV*EF((2S zJ*h0`WPy)Ko>EqGYADNItgPj9M8qeiCiMoRWDgilBcPuu!_v-2V*2T{}Xg=DJ1nDsr?($kDO3BQ<+_oH*`v67Wmn-bK|(J(6?jWx;Iw z7dMzO1*X1fdo@f!lBZo70FO=j<+5FIOpz&5v$OYRSuFeg$;qi~7J5>z+k_!y4B6!Pb#+9PXjRNMczr6D)Dprp4xo>+i)4XrRG< z*szTvj2ZqSNS>d!J)>&p-?j@dLh?oT0nWrj`?(^f*vQ)zV*wjAiXCIg4T{F-XgJ-i zz;uG&sksD~aV4O}qU&KJ@D0a@{wlTud%?ruN^XS)w&&4IsMQCCtHduDKlH1C>sRPo z#>;%_gptW)=9o%wP$QL@d^3WfV^TmR_#OQd$R=7rrLg;XQsNf>)f~YQ9Vw7o-Hsfz ze2g5Wq__G{xucd6r&>!oU16trt``4wY$q033H)5i){IkLYCn}*lB1n}haEAp5YRF* z^_jXjYS$B^qqbM@0W-xi(@#Z(20p>{D-fqBq9;Q<3J|by!>?c-=ZC9x@tcOJFxkO0 zV6lABck`Gs)z0$>u$Y4v?V1-bxrn_g;b$;4rsd0y1u>#5Zabj_wuHNkXh4{{=##Py zlS;l@VQSST6cg43!Nw%u6T#dn5WiOCSwyk7NV)HfXKzf6&rf5URNP8oKKt#L=HDQA z(yzhv(W~>g@?d`2U6`kkBBM=U()p@e9kbj@fJw#n#_~}n(lL(2Om&$hP7g@y=`+yJ zoEaE^&8Y=s4IOC7$El6fzGm!d#zC^W-1=0zc?4S^7HguL z$u=p_{8?=BS{kDHk01b=MLKpq8qP!XDH2O3Nahsgi&|llTAl8px-*|mLIkcM``qkuz zul@41Pm*JYU484*Uvv-dcMtD&53lQ=b@#2`IZXB)bPRnkw|(=s<=@}=leu?&?%$G_ zYHLWSr~g<(9qIKpV!*dx3%VKfMD*H~&<8son-l^GMb0lV2j-Q8a zC2~lYTc|)DTg_T(J%9`#Uxx(=#|Ysr2d4#uN#I0cg8Br7`-Yb$Ja8f55u-PNJVIZJ zilQ~zP|94JIvBY0v7A1VlgfDGLR?92U2h;@+uhswC;g%L5d}ai>1fSxIqtJ4Ec{~m zW=#SSAs(?1yA2RFQE*bFSK!@m;p7@x6@wGRmzt>I(_3vtXd!h~3Yzs3K_;|%0he7I zmn+hFHF`yE*#Q!JWTeBl1^;X950zLtuZr(9x6h&>^ese%B~d{4kpO=`{y+BbO83!{ zU`qANv*Gh(1g)a$xCN-G(QC?4n_(hZm@!o*`&A63l_T177noGRON3`3Q)^Yn4lvV; z_}yqWfc(VeEY^I5p%}wdrbHhN&qJMzz(OIp1_J#NkTvvoJ+iR>YOq}8Vnb2AGz#a6SL6MjW@juCu21T_j~@OVWPg9C;QJilBmaNz@ky9}&&?F(Nj)_0y& z*`@g~7E#&J3pkjDTR=s6F+4TD5-4FVyu_CZ-F=ly1}D7QJkwr|5`2QZ0xHh~dLKwb z5(MEh)E557KSzU~qx3(})u-s@Q#AP$O?;sbtf%+&fn9xI>$`jUl{NKP9TL*-j~pXl XjcGv@E^J8+1Z+EEA4$ht3%C9cx!SWe literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7d2e9793a4d0ac738e1c0850291f46e2967198c GIT binary patch literal 1659 zcmZux-Af!-6u-0cxvTE#x_%Qo(X?v8H8s$d5<^pwrXZ4H8_2RSj62uOZ02Kg?~EVI zN<;C%en6Xtq9v62Xz;~|`Oyp#*v#8PX~;WGrs;QQSgmSs6+G&Xf@@kZ$Rgk0~%=+N2&xdD69Q-7y%Q z{djV6YIYWAbHh4Ch)YUQqzI*kay$-X9br`93{*%MT!A+d1;OA8q9I_(5V4Gv9`G?F zoSc^oc~yu~37T$TtJ;WP>zuvgE~(D^ZNtp%`!Jbc?Qe(Gaa;&0EKfc6;73H9cP|+3MPOJzvzXBCZqB^9^(p!=0Qk`Gm z$h!$t7wghC%wc0iHu$>q5E;UEe3@HO>N4r5E0vb$?|C%Dx*Yk%b2;Q?Vh=;Aw8i{P z)|J>dmY;I4zHn~+WIb8Qp3R6^r6Xo%a=Src-LTJ?I*SI8r^G&&5P|+U`&&xf29HIw z#NS4X+=x6w65u+*2QBdlXogwxf^>;s-NRbL8sy5@)2L~imQG?Lt+n~iUB_K?;^R{X zPPu_vo2@U;VRhN{RU7M$rw-J3byOW`3OcK1HLsbDhl!(G`FKf^h8zg19BBmzQXe=5 zUJ6@~u(k^%y;{YNL1d-~71wkEsj3r-Nsy`%h^Mhe8c78L#nwDwwIEFlUJ9&~Y(sN& z8wX+;ZUYT?o0bDP&V$X1x{u-M&8c^a(^w~t>6DAJS1uQC5+bf zO%IP&_0nCvjA;?}H}+zGV{zOumR-KO9Pq?^to0+qnKuKxT&$Im-{`a+SYg>a4KiSKU?KY47l2tdm_p-0A$Nh9gU>UaYw3SZUO}zBelUjwXtJgmZV8C!Q>azYZk8RFV2$8=z6o*x zDoWVxCGb$9fTtb_csN?p59%Xy42Z}D2FVy0p_c(x(Y~M_30zCh{i(y={#~K#Nazu} zHr_l!AhvQ_rAIv>-JvJULWbiIVfOH{MBT)e4N%sFv4A9#r-|Q567AgX0cR a-vR3S4UHeL?~M~l<+{Ee`U`;wBm4{fSF6bY literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5ff178942f51e8335bcd9ffe1e256bc7ceaa614e GIT binary patch literal 6657 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63c0b7540352a6bfaf7f67b25b3897ea362fa651 GIT binary patch literal 3966 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..568f65bbb52c219b0e18cfbb1387d3b0ccb5bfcb GIT binary patch literal 29100 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f72fc4f6e20cc4483344bdf4b520afc4d8d1351 GIT binary patch literal 7504 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 N*74DA5hMAB{|gZ}siXh^ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ec0fabb9503536ca2c525bd1ee75e17157325cf GIT binary patch literal 8851 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 aAFulRKJ&iz{+-j&wi56EqreDm`Tqb1Qm;w? literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/commands/cache.py b/env/Lib/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 00000000..32833615 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,225 @@ +import os +import textwrap +from optparse import Values +from typing import Any, List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, PipError +from pip._internal.utils import filesystem +from pip._internal.utils.logging import getLogger + +logger = getLogger(__name__) + + +class CacheCommand(Command): + """ + Inspect and manage pip's wheel cache. + + Subcommands: + + - dir: Show the cache directory. + - info: Show information about the cache. + - list: List filenames of packages stored in the cache. + - remove: Remove one or more package from the cache. + - purge: Remove all items from the cache. + + ```` can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="human", + choices=("human", "abspath"), + help="Select the output format among: human (default) or abspath", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, "*")) + + http_cache_location = self._cache_dir(options, "http-v2") + old_http_cache_location = self._cache_dir(options, "http") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_size( + filesystem.directory_size(http_cache_location) + + filesystem.directory_size(old_http_cache_location) + ) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location (pip v23.3+): {http_cache_location} + Package index page cache location (older pips): {old_http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Locally built wheels location: {wheels_cache_location} + Locally built wheels size: {wheels_cache_size} + Number of locally built wheels: {package_count} + """ # noqa: E501 + ) + .format( + http_cache_location=http_cache_location, + old_http_cache_location=old_http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ) + .strip() + ) + + logger.info(message) + + def list_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if args: + pattern = args[0] + else: + pattern = "*" + + files = self._find_wheels(options, pattern) + if options.list_format == "human": + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: List[str]) -> None: + if not files: + logger.info("No locally built wheels cached.") + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f" - {wheel} ({size})") + logger.info("Cache contents:\n") + logger.info("\n".join(sorted(results))) + + def format_for_abspath(self, files: List[str]) -> None: + if files: + logger.info("\n".join(sorted(files))) + + def remove_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if not args: + raise CommandError("Please provide a pattern") + + files = self._find_wheels(options, args[0]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += f' for pattern "{args[0]}"' + + if not files: + logger.warning(no_matching_msg) + + for filename in files: + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s", len(files)) + + def purge_cache(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + return self.remove_cache_items(options, ["*"]) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> List[str]: + old_http_dir = self._cache_dir(options, "http") + new_http_dir = self._cache_dir(options, "http-v2") + return filesystem.find_files(old_http_dir, "*") + filesystem.find_files( + new_http_dir, "*" + ) + + def _find_wheels(self, options: Values, pattern: str) -> List[str]: + wheel_dir = self._cache_dir(options, "wheels") + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/env/Lib/site-packages/pip/_internal/commands/check.py b/env/Lib/site-packages/pip/_internal/commands/check.py new file mode 100644 index 00000000..f54a16dc --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,67 @@ +import logging +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import get_default_environment +from pip._internal.operations.check import ( + check_package_set, + check_unsupported, + create_package_set_from_installed, +) +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def run(self, options: Values, args: List[str]) -> int: + package_set, parsing_probs = create_package_set_from_installed() + missing, conflicting = check_package_set(package_set) + unsupported = list( + check_unsupported( + get_default_environment().iter_installed_distributions(), + get_supported(), + ) + ) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, + version, + dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, + version, + req, + dep_name, + dep_version, + ) + for package in unsupported: + write_output( + "%s %s is not supported on this platform", + package.raw_name, + package.version, + ) + if missing or conflicting or parsing_probs or unsupported: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/env/Lib/site-packages/pip/_internal/commands/completion.py b/env/Lib/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 00000000..9e89e279 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,130 @@ +import sys +import textwrap +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + "bash": """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + "zsh": """ + #compdef -P pip[0-9.]# + __pip() {{ + compadd $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$((CURRENT-1)) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null ) + }} + if [[ $zsh_eval_context[-1] == loadautofunc ]]; then + # autoload from fpath, call function directly + __pip "$@" + else + # eval/source/. command, register function for later + compdef __pip -P 'pip[0-9.]#' + fi + """, + "fish": """ + function __fish_complete_pip + set -lx COMP_WORDS (commandline -o) "" + set -lx COMP_CWORD ( \\ + math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ + ) + set -lx PIP_AUTO_COMPLETE 1 + string split \\ -- (eval $COMP_WORDS[1]) + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, + "powershell": """ + if ((Test-Path Function:\\TabExpansion) -and -not ` + (Test-Path Function:\\_pip_completeBackup)) {{ + Rename-Item Function:\\TabExpansion _pip_completeBackup + }} + function TabExpansion($line, $lastWord) {{ + $lastBlock = [regex]::Split($line, '[|;]')[-1].TrimStart() + if ($lastBlock.StartsWith("{prog} ")) {{ + $Env:COMP_WORDS=$lastBlock + $Env:COMP_CWORD=$lastBlock.Split().Length - 1 + $Env:PIP_AUTO_COMPLETE=1 + (& {prog}).Split() + Remove-Item Env:COMP_WORDS + Remove-Item Env:COMP_CWORD + Remove-Item Env:PIP_AUTO_COMPLETE + }} + elseif (Test-Path Function:\\_pip_completeBackup) {{ + # Fall back on existing tab expansion + _pip_completeBackup $line $lastWord + }} + }} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--bash", + "-b", + action="store_const", + const="bash", + dest="shell", + help="Emit completion code for bash", + ) + self.cmd_opts.add_option( + "--zsh", + "-z", + action="store_const", + const="zsh", + dest="shell", + help="Emit completion code for zsh", + ) + self.cmd_opts.add_option( + "--fish", + "-f", + action="store_const", + const="fish", + dest="shell", + help="Emit completion code for fish", + ) + self.cmd_opts.add_option( + "--powershell", + "-p", + action="store_const", + const="powershell", + dest="shell", + help="Emit completion code for powershell", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ["--" + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, "").format(prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + "ERROR: You must pass {}\n".format(" or ".join(shell_options)) + ) + return SUCCESS diff --git a/env/Lib/site-packages/pip/_internal/commands/configuration.py b/env/Lib/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 00000000..1a1dc6b6 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,280 @@ +import logging +import os +import subprocess +from optparse import Values +from typing import Any, List, Optional + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with command.option + - set: Set the command.option=value + - unset: Unset the value associated with command.option + - debug: List the configuration files and values defined under them + + Configuration keys should be dot separated command and option name, + with the special prefix "global" affecting any command. For example, + "pip config set global.index-url https://example.org/" would configure + the index url for all commands, but "pip config set download.timeout 10" + would configure a 10 second timeout only for "pip download" commands. + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get command.option + %prog [] set command.option value + %prog [] unset command.option + %prog [] debug + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--editor", + dest="editor", + action="store", + default=None, + help=( + "Editor to use to edit the file. Uses VISUAL or EDITOR " + "environment variables if not provided." + ), + ) + + self.cmd_opts.add_option( + "--global", + dest="global_file", + action="store_true", + default=False, + help="Use the system-wide configuration file only", + ) + + self.cmd_opts.add_option( + "--user", + dest="user_file", + action="store_true", + default=False, + help="Use the user configuration file only", + ) + + self.cmd_opts.add_option( + "--site", + dest="site_file", + action="store_true", + default=False, + help="Use the current environment configuration file only", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options: Values, need_value: bool) -> Optional[Kind]: + file_options = [ + key + for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) + if value + ] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options: Values, args: List[str]) -> None: + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + write_output("%s=%r", key, value) + + def get_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options: Values, args: List[str]) -> None: + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options: Values, args: List[str]) -> None: + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", fname, file_exists) + if file_exists: + self.print_config_file_values(variant) + + def print_config_file_values(self, variant: Kind) -> None: + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.get_values_in_config(variant).items(): + with indent_log(): + write_output("%s: %s", name, value) + + def print_env_var_values(self) -> None: + """Get key-values pairs present as environment variables""" + write_output("%s:", "env_var") + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f"PIP_{key.upper()}" + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options: Values, args: List[str]) -> None: + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + elif '"' in fname: + # This shouldn't happen, unless we see a username like that. + # If that happens, we'd appreciate a pull request fixing this. + raise PipError( + f'Can not open an editor for a file name containing "\n{fname}' + ) + + try: + subprocess.check_call(f'{editor} "{fname}"', shell=True) + except FileNotFoundError as e: + if not e.filename: + e.filename = editor + raise + except subprocess.CalledProcessError as e: + raise PipError(f"Editor Subprocess exited with exit code {e.returncode}") + + def _get_n_args(self, args: List[str], example: str, n: int) -> Any: + """Helper to make sure the command got the right number of arguments""" + if len(args) != n: + msg = ( + f"Got unexpected number of arguments, expected {n}. " + f'(example: "{get_prog()} config {example}")' + ) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self) -> None: + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options: Values) -> str: + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/env/Lib/site-packages/pip/_internal/commands/debug.py b/env/Lib/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 00000000..567ca967 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,201 @@ +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any, Dict, List, Optional + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.compat import open_text_resource +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name: str, value: Any) -> None: + logger.info("%s: %s", name, value) + + +def show_sys_implementation() -> None: + logger.info("sys.implementation:") + implementation_name = sys.implementation.name + with indent_log(): + show_value("name", implementation_name) + + +def create_vendor_txt_map() -> Dict[str, str]: + with open_text_resource("pip._vendor", "vendor.txt") as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [ + line.strip().split(" ", 1)[0] for line in f.readlines() if "==" in line + ] + + # Transform into "module" -> version dict. + return dict(line.split("==", 1) for line in lines) + + +def get_module_from_module_name(module_name: str) -> Optional[ModuleType]: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower().replace("-", "_") + # PATCH: setuptools is actually only pkg_resources. + if module_name == "setuptools": + module_name = "pkg_resources" + + try: + __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) + return getattr(pip._vendor, module_name) + except ImportError: + # We allow 'truststore' to fail to import due + # to being unavailable on Python 3.9 and earlier. + if module_name == "truststore" and sys.version_info < (3, 10): + return None + raise + + +def get_vendor_version_from_module(module_name: str) -> Optional[str]: + module = get_module_from_module_name(module_name) + version = getattr(module, "__version__", None) + + if module and not version: + # Try to find version in debundled module info. + assert module.__file__ is not None + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions: Dict[str, str]) -> None: + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = "" + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ( + " (Unable to locate actual module version, using" + " vendor.txt specified version)" + ) + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ( + " (CONFLICT: vendor.txt suggests version should" + f" be {expected_version})" + ) + logger.info("%s==%s%s", module_name, actual_version, extra_message) + + +def show_vendor_versions() -> None: + logger.info("vendored library versions:") + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options: Values) -> None: + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_sorted_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = "" + if formatted_target: + suffix = f" (target: {formatted_target})" + + msg = f"Compatible tags: {len(tags)}{suffix}" + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = f"...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = {key.split(".", 1)[0] for key, _ in config.items()} + if not levels: + return "Not specified" + + levels_that_override_global = ["install", "wheel", "download"] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return "global" + + if "global" in levels: + levels.remove("global") + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options: Values, args: List[str]) -> int: + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value("pip version", get_pip_version()) + show_value("sys.version", sys.version) + show_value("sys.executable", sys.executable) + show_value("sys.getdefaultencoding", sys.getdefaultencoding()) + show_value("sys.getfilesystemencoding", sys.getfilesystemencoding()) + show_value( + "locale.getpreferredencoding", + locale.getpreferredencoding(), + ) + show_value("sys.platform", sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get("REQUESTS_CA_BUNDLE")) + show_value("CURL_CA_BUNDLE", os.environ.get("CURL_CA_BUNDLE")) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/env/Lib/site-packages/pip/_internal/commands/download.py b/env/Lib/site-packages/pip/_internal/commands/download.py new file mode 100644 index 00000000..917bbb91 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,146 @@ +import logging +import os +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import check_legacy_setup_py_options +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.global_options()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + "-d", + "--dest", + "--destination-dir", + "--destination-directory", + dest="download_dir", + metavar="dir", + default=os.curdir, + help="Download packages into

.", + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + downloaded: List[str] = [] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/env/Lib/site-packages/pip/_internal/commands/freeze.py b/env/Lib/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 00000000..885fdfeb --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,109 @@ +import sys +from optparse import Values +from typing import AbstractSet, List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs + + +def _should_suppress_build_backends() -> bool: + return sys.version_info < (3, 12) + + +def _dev_pkgs() -> AbstractSet[str]: + pkgs = {"pip"} + + if _should_suppress_build_backends(): + pkgs |= {"setuptools", "distribute", "wheel"} + + return pkgs + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + log_streams = ("ext://sys.stderr", "ext://sys.stderr") + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Use the order in the given requirements file and its " + "comments when generating output. This option can be " + "used multiple times." + ), + ) + self.cmd_opts.add_option( + "-l", + "--local", + dest="local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not output " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--all", + dest="freeze_all", + action="store_true", + help=( + "Do not skip these packages in the output:" + " {}".format(", ".join(_dev_pkgs())) + ), + ) + self.cmd_opts.add_option( + "--exclude-editable", + dest="exclude_editable", + action="store_true", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + skip = set(stdlib_pkgs) + if not options.freeze_all: + skip.update(_dev_pkgs()) + + if options.excludes: + skip.update(options.excludes) + + cmdoptions.check_list_path_option(options) + + for line in freeze( + requirement=options.requirements, + local_only=options.local, + user_only=options.user, + paths=options.path, + isolated=options.isolated_mode, + skip=skip, + exclude_editable=options.exclude_editable, + ): + sys.stdout.write(line + "\n") + return SUCCESS diff --git a/env/Lib/site-packages/pip/_internal/commands/hash.py b/env/Lib/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 00000000..042dac81 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,59 @@ +import hashlib +import logging +import sys +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = "%prog [options] ..." + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-a", + "--algorithm", + dest="algorithm", + choices=STRONG_HASHES, + action="store", + default=FAVORITE_HASH, + help="The hash algorithm to use: one of {}".format( + ", ".join(STRONG_HASHES) + ), + ) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output( + "%s:\n--hash=%s:%s", path, algorithm, _hash_of_file(path, algorithm) + ) + return SUCCESS + + +def _hash_of_file(path: str, algorithm: str) -> str: + """Return the hash digest of a file.""" + with open(path, "rb") as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/env/Lib/site-packages/pip/_internal/commands/help.py b/env/Lib/site-packages/pip/_internal/commands/help.py new file mode 100644 index 00000000..62066318 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/help.py @@ -0,0 +1,41 @@ +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError + + +class HelpCommand(Command): + """Show help for commands""" + + usage = """ + %prog """ + ignore_require_venv = True + + def run(self, options: Values, args: List[str]) -> int: + from pip._internal.commands import ( + commands_dict, + create_command, + get_similar_commands, + ) + + try: + # 'pip help' with no args is handled by pip.__init__.parseopt() + cmd_name = args[0] # the command we need help for + except IndexError: + return SUCCESS + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + command = create_command(cmd_name) + command.parser.print_help() + + return SUCCESS diff --git a/env/Lib/site-packages/pip/_internal/commands/index.py b/env/Lib/site-packages/pip/_internal/commands/index.py new file mode 100644 index 00000000..2e2661bb --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/index.py @@ -0,0 +1,139 @@ +import logging +from optparse import Values +from typing import Any, Iterable, List, Optional + +from pip._vendor.packaging.version import Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.commands.search import print_dist_installation_info +from pip._internal.exceptions import CommandError, DistributionNotFound, PipError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class IndexCommand(IndexGroupCommand): + """ + Inspect information available from package indexes. + """ + + ignore_require_venv = True + usage = """ + %prog versions + """ + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "versions": self.get_available_package_versions, + } + + logger.warning( + "pip index is currently an experimental command. " + "It may be removed/changed in a future release " + "without prior warning." + ) + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to the index command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) + + def get_available_package_versions(self, options: Values, args: List[Any]) -> None: + if len(args) != 1: + raise CommandError("You need to specify exactly one argument") + + target_python = cmdoptions.make_target_python(options) + query = args[0] + + with self._build_session(options) as session: + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + versions: Iterable[Version] = ( + candidate.version for candidate in finder.find_all_candidates(query) + ) + + if not options.pre: + # Remove prereleases + versions = ( + version for version in versions if not version.is_prerelease + ) + versions = set(versions) + + if not versions: + raise DistributionNotFound( + f"No matching distribution found for {query}" + ) + + formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] + latest = formatted_versions[0] + + write_output(f"{query} ({latest})") + write_output("Available versions: {}".format(", ".join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/env/Lib/site-packages/pip/_internal/commands/inspect.py b/env/Lib/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 00000000..e810c131 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/inspect.py @@ -0,0 +1,92 @@ +import logging +from optparse import Values +from typing import Any, Dict, List + +from pip._vendor.packaging.markers import default_environment +from pip._vendor.rich import print_json + +from pip import __version__ +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +class InspectCommand(Command): + """ + Inspect the content of a Python environment and produce a report in JSON format. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + cmdoptions.check_list_path_option(options) + dists = get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + skip=set(stdlib_pkgs), + ) + output = { + "version": "1", + "pip_version": __version__, + "installed": [self._dist_to_dict(dist) for dist in dists], + "environment": default_environment(), + # TODO tags? scheme? + } + print_json(data=output) + return SUCCESS + + def _dist_to_dict(self, dist: BaseDistribution) -> Dict[str, Any]: + res: Dict[str, Any] = { + "metadata": dist.metadata_dict, + "metadata_location": dist.info_location, + } + # direct_url. Note that we don't have download_info (as in the installation + # report) since it is not recorded in installed metadata. + direct_url = dist.direct_url + if direct_url is not None: + res["direct_url"] = direct_url.to_dict() + else: + # Emulate direct_url for legacy editable installs. + editable_project_location = dist.editable_project_location + if editable_project_location is not None: + res["direct_url"] = { + "url": path_to_url(editable_project_location), + "dir_info": { + "editable": True, + }, + } + # installer + installer = dist.installer + if dist.installer: + res["installer"] = installer + # requested + if dist.installed_with_dist_info: + res["requested"] = dist.requested + return res diff --git a/env/Lib/site-packages/pip/_internal/commands/install.py b/env/Lib/site-packages/pip/_internal/commands/install.py new file mode 100644 index 00000000..ad45a2f2 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,783 @@ +import errno +import json +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import List, Optional + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.rich import print_json + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, InstallationError +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.installation_report import InstallationReport +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + check_externally_managed, + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + warn_if_run_as_root, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import build, should_build_for_install_command + +logger = getLogger(__name__) + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + "--dry-run", + action="store_true", + dest="dry_run", + default=False, + help=( + "Don't actually install anything, just print what would be. " + "Can be used in combination with --ignore-installed " + "to 'resolve' the requirements." + ), + ) + self.cmd_opts.add_option( + "-t", + "--target", + dest="target_dir", + metavar="dir", + default=None, + help=( + "Install packages into . " + "By default this will not replace existing files/folders in " + ". Use --upgrade to replace existing packages in " + "with new versions." + ), + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + "--user", + dest="use_user_site", + action="store_true", + help=( + "Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)" + ), + ) + self.cmd_opts.add_option( + "--no-user", + dest="use_user_site", + action="store_false", + help=SUPPRESS_HELP, + ) + self.cmd_opts.add_option( + "--root", + dest="root_path", + metavar="dir", + default=None, + help="Install everything relative to this alternate root directory.", + ) + self.cmd_opts.add_option( + "--prefix", + dest="prefix_path", + metavar="dir", + default=None, + help=( + "Installation prefix where lib, bin and other top-level " + "folders are placed. Note that the resulting installation may " + "contain scripts and other resources which reference the " + "Python interpreter of pip, and not that of ``--prefix``. " + "See also the ``--python`` option if the intention is to " + "install packages into another (possibly pip-free) " + "environment." + ), + ) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + "-U", + "--upgrade", + dest="upgrade", + action="store_true", + help=( + "Upgrade all specified packages to the newest available " + "version. The handling of dependencies depends on the " + "upgrade-strategy used." + ), + ) + + self.cmd_opts.add_option( + "--upgrade-strategy", + dest="upgrade_strategy", + default="only-if-needed", + choices=["only-if-needed", "eager"], + help=( + "Determines how dependency upgrading should be handled " + "[default: %default]. " + '"eager" - dependencies are upgraded regardless of ' + "whether the currently installed version satisfies the " + "requirements of the upgraded package(s). " + '"only-if-needed" - are upgraded only when they do not ' + "satisfy the requirements of the upgraded package(s)." + ), + ) + + self.cmd_opts.add_option( + "--force-reinstall", + dest="force_reinstall", + action="store_true", + help="Reinstall all packages even if they are already up-to-date.", + ) + + self.cmd_opts.add_option( + "-I", + "--ignore-installed", + dest="ignore_installed", + action="store_true", + help=( + "Ignore the installed packages, overwriting them. " + "This can break your system if the existing package " + "is of a different version or was installed " + "with a different package manager!" + ), + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + self.cmd_opts.add_option( + "--report", + dest="json_report_file", + metavar="file", + default=None, + help=( + "Generate a JSON file describing what pip did to install " + "the provided requirements. " + "Can be used in combination with --dry-run and --ignore-installed " + "to 'resolve' the requirements. " + "When - is used as file name it writes to stdout. " + "When writing to stdout, please combine with the --quiet option " + "to avoid mixing pip logging output with JSON output." + ), + ) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + # Check whether the environment we're installing into is externally + # managed, as specified in PEP 668. Specifying --root, --target, or + # --prefix disables the check, since there's no reliable way to locate + # the EXTERNALLY-MANAGED file for those cases. An exception is also + # made specifically for "--dry-run --report" for convenience. + installing_into_current_environment = ( + not (options.dry_run and options.json_report_file) + and options.root_path is None + and options.target_dir is None + and options.prefix_path is None + ) + if ( + installing_into_current_environment + and not options.override_externally_managed + ): + check_externally_managed() + + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + logger.verbose("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir: Optional[TempDirectory] = None + target_temp_dir_path: Optional[str] = None + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if ( + # fmt: off + os.path.exists(options.target_dir) and + not os.path.isdir(options.target_dir) + # fmt: on + ): + raise CommandError( + "Target path exists but is not a directory, will not continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + global_options = options.global_options or [] + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + verbosity=self.verbosity, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + use_pep517=options.use_pep517, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + if options.json_report_file: + report = InstallationReport(requirement_set.requirements_to_install) + if options.json_report_file == "-": + print_json(data=report.to_dict()) + else: + with open(options.json_report_file, "w", encoding="utf-8") as f: + json.dump(report.to_dict(), f, indent=2, ensure_ascii=False) + + if options.dry_run: + would_install_items = sorted( + (r.metadata["name"], r.metadata["version"]) + for r in requirement_set.requirements_to_install + ) + if would_install_items: + write_output( + "Would install %s", + " ".join("-".join(item) for item in would_install_items), + ) + return SUCCESS + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + if modifying_pip: + # Eagerly import this module to avoid crashes. Otherwise, this + # module would be imported *after* pip was replaced, resulting in + # crashes if the new self_outdated_check module was incompatible + # with the rest of pip that's already imported. + import pip._internal.self_outdated_check # noqa: F401 + protect_pip_from_modification_on_windows(modifying_pip=modifying_pip) + + reqs_to_build = [ + r + for r in requirement_set.requirements.values() + if should_build_for_install_command(r) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=global_options, + ) + + if build_failures: + raise InstallationError( + "ERROR: Failed to build installable wheels for some " + "pyproject.toml based projects ({})".format( + ", ".join(r.name for r in build_failures) # type: ignore + ) + ) + + to_install = resolver.get_installation_order(requirement_set) + + # Check for conflicts in the package set we're installing. + conflicts: Optional[ConflictDetails] = None + should_warn_about_conflicts = ( + not options.ignore_dependencies and options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target or --prefix has been specified + warn_script_location = options.warn_script_location + if options.target_dir or options.prefix_path: + warn_script_location = False + + installed = install_given_reqs( + to_install, + global_options, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + # Display a summary of installed packages, with extra care to + # display a package name as it was requested by the user. + installed.sort(key=operator.attrgetter("name")) + summary = [] + installed_versions = {} + for distribution in env.iter_all_distributions(): + installed_versions[distribution.canonical_name] = distribution.version + for package in installed: + display_name = package.name + version = installed_versions.get(canonicalize_name(display_name), None) + if version: + text = f"{display_name}-{version}" + else: + text = display_name + summary.append(text) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = " ".join(summary) + if installed_desc: + write_output( + "Successfully installed %s", + installed_desc, + ) + except OSError as error: + show_traceback = self.verbosity >= 1 + + message = create_os_error_message( + error, + show_traceback, + options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir( + self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool + ) -> None: + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme("", home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + "Target directory %s already exists. Specify " + "--upgrade to force replacement.", + target_item_dir, + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + "Target directory %s already exists and is " + "a link. pip will not automatically replace " + "links, please remove if replacement is " + "desired.", + target_item_dir, + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move(os.path.join(lib_dir, item), target_item_dir) + + def _determine_conflicts( + self, to_install: List[InstallRequirement] + ) -> Optional[ConflictDetails]: + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts( + self, conflict_details: ConflictDetails, resolver_variant: str + ) -> None: + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts: List[str] = [] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "resolvelib" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + f"{project_name} {version} requires {dependency[1]}, " + "which is not installed." + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "resolvelib" else "you'll"), + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> List[str]: + scheme = get_scheme( + "", + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root: Optional[str], isolated: bool) -> bool: + return all( + test_writable_dir(d) + for d in set(get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site: Optional[bool], + prefix_path: Optional[str] = None, + target_dir: Optional[str] = None, + root_path: Optional[str] = None, + isolated_mode: bool = False, +) -> bool: + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info( + "Defaulting to user installation because normal site-packages " + "is not writeable" + ) + return True + + +def create_os_error_message( + error: OSError, show_traceback: bool, using_user_site: bool +) -> str: + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend( + [ + user_option_part, + " or ", + permissions_part.lower(), + ] + ) + else: + parts.append(permissions_part) + parts.append(".\n") + + # Suggest the user to enable Long Paths if path length is + # more than 260 + if ( + WINDOWS + and error.errno == errno.ENOENT + and error.filename + and len(error.filename) > 260 + ): + parts.append( + "HINT: This error might have occurred since " + "this system does not have Windows Long Path " + "support enabled. You can find information on " + "how to enable this at " + "https://pip.pypa.io/warnings/enable-long-paths\n" + ) + + return "".join(parts).strip() + "\n" diff --git a/env/Lib/site-packages/pip/_internal/commands/list.py b/env/Lib/site-packages/pip/_internal/commands/list.py new file mode 100644 index 00000000..82fc46a1 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,375 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Generator, List, Optional, Sequence, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.index_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + from pip._internal.network.session import PipSession + + class _DistWithLatestInfo(BaseDistribution): + """Give the distribution object a couple of extra fields. + + These will be populated during ``get_outdated()``. This is dirty but + makes the rest of the code much cleaner. + """ + + latest_version: Version + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-o", + "--outdated", + action="store_true", + default=False, + help="List outdated packages", + ) + self.cmd_opts.add_option( + "-u", + "--uptodate", + action="store_true", + default=False, + help="List uptodate packages", + ) + self.cmd_opts.add_option( + "-e", + "--editable", + action="store_true", + default=False, + help="List editable projects.", + ) + self.cmd_opts.add_option( + "-l", + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="columns", + choices=("columns", "freeze", "json"), + help=( + "Select the output format among: columns (default), freeze, or json. " + "The 'freeze' format cannot be used with the --outdated option." + ), + ) + + self.cmd_opts.add_option( + "--not-required", + action="store_true", + dest="not_required", + help="List packages that are not dependencies of installed packages.", + ) + + self.cmd_opts.add_option( + "--exclude-editable", + action="store_false", + dest="include_editable", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option( + "--include-editable", + action="store_true", + dest="include_editable", + help="Include editable package from output.", + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group(cmdoptions.index_group, self.parser) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def handle_pip_version_check(self, options: Values) -> None: + if options.outdated or options.uptodate: + super().handle_pip_version_check(options) + + def _build_package_finder( + self, options: Values, session: "PipSession" + ) -> "PackageFinder": + """ + Create a package finder appropriate to this list command. + """ + # Lazy import the heavy index modules as most list invocations won't need 'em. + from pip._internal.index.collector import LinkCollector + from pip._internal.index.package_finder import PackageFinder + + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + + def run(self, options: Values, args: List[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError("Options --outdated and --uptodate cannot be combined.") + + if options.outdated and options.list_format == "freeze": + raise CommandError( + "List format 'freeze' cannot be used with the --outdated option." + ) + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: "_ProcessedDists" = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version > dist.version + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version == dist.version + ] + + def get_not_required( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: "_ProcessedDists", options: Values + ) -> Generator["_DistWithLatestInfo", None, None]: + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info( + dist: "_DistWithLatestInfo", + ) -> Optional["_DistWithLatestInfo"]: + all_candidates = finder.find_all_candidates(dist.canonical_name) + if not options.pre: + # Remove prereleases + all_candidates = [ + candidate + for candidate in all_candidates + if not candidate.version.is_prerelease + ] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.canonical_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = "wheel" + else: + typ = "sdist" + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing( + self, packages: "_ProcessedDists", options: Values + ) -> None: + packages = sorted( + packages, + key=lambda dist: dist.canonical_name, + ) + if options.list_format == "columns" and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == "freeze": + for dist in packages: + if options.verbose >= 1: + write_output( + "%s==%s (%s)", dist.raw_name, dist.version, dist.location + ) + else: + write_output("%s==%s", dist.raw_name, dist.version) + elif options.list_format == "json": + write_output(format_for_json(packages, options)) + + def output_package_listing_columns( + self, data: List[List[str]], header: List[str] + ) -> None: + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join("-" * x for x in sizes)) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns( + pkgs: "_ProcessedDists", options: Values +) -> Tuple[List[List[str]], List[str]]: + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + header = ["Package", "Version"] + + running_outdated = options.outdated + if running_outdated: + header.extend(["Latest", "Type"]) + + has_editables = any(x.editable for x in pkgs) + if has_editables: + header.append("Editable project location") + + if options.verbose >= 1: + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + data = [] + for proj in pkgs: + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.raw_name, proj.raw_version] + + if running_outdated: + row.append(str(proj.latest_version)) + row.append(proj.latest_filetype) + + if has_editables: + row.append(proj.editable_project_location or "") + + if options.verbose >= 1: + row.append(proj.location or "") + if options.verbose >= 1: + row.append(proj.installer) + + data.append(row) + + return data, header + + +def format_for_json(packages: "_ProcessedDists", options: Values) -> str: + data = [] + for dist in packages: + info = { + "name": dist.raw_name, + "version": str(dist.version), + } + if options.verbose >= 1: + info["location"] = dist.location or "" + info["installer"] = dist.installer + if options.outdated: + info["latest_version"] = str(dist.latest_version) + info["latest_filetype"] = dist.latest_filetype + editable_project_location = dist.editable_project_location + if editable_project_location: + info["editable_project_location"] = editable_project_location + data.append(info) + return json.dumps(data) diff --git a/env/Lib/site-packages/pip/_internal/commands/search.py b/env/Lib/site-packages/pip/_internal/commands/search.py new file mode 100644 index 00000000..e0d329d5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,172 @@ +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TYPE_CHECKING, Dict, List, Optional, TypedDict + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + +if TYPE_CHECKING: + + class TransformedHit(TypedDict): + name: str + summary: str + versions: List[str] + + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-i", + "--index", + dest="index", + metavar="URL", + default=PyPI.pypi_url, + help="Base URL of Python Package Index (default %default)", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + raise CommandError("Missing required argument (search query).") + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query: List[str], options: Values) -> List[Dict[str, str]]: + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({"name": query, "summary": query}, "or") + except xmlrpc.client.Fault as fault: + message = ( + f"XMLRPC request failed [code: {fault.faultCode}]\n{fault.faultString}" + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits: List[Dict[str, str]]) -> List["TransformedHit"]: + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages: Dict[str, "TransformedHit"] = OrderedDict() + for hit in hits: + name = hit["name"] + summary = hit["summary"] + version = hit["version"] + + if name not in packages.keys(): + packages[name] = { + "name": name, + "summary": summary, + "versions": [version], + } + else: + packages[name]["versions"].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]["versions"]): + packages[name]["summary"] = summary + + return list(packages.values()) + + +def print_dist_installation_info(name: str, latest: str) -> None: + env = get_default_environment() + dist = env.get_distribution(name) + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output("INSTALLED: %s (latest)", dist.version) + else: + write_output("INSTALLED: %s", dist.version) + if parse_version(latest).pre: + write_output( + "LATEST: %s (pre-release; install" + " with `pip install --pre`)", + latest, + ) + else: + write_output("LATEST: %s", latest) + + +def print_results( + hits: List["TransformedHit"], + name_column_width: Optional[int] = None, + terminal_width: Optional[int] = None, +) -> None: + if not hits: + return + if name_column_width is None: + name_column_width = ( + max( + [ + len(hit["name"]) + len(highest_version(hit.get("versions", ["-"]))) + for hit in hits + ] + ) + + 4 + ) + + for hit in hits: + name = hit["name"] + summary = hit["summary"] or "" + latest = highest_version(hit.get("versions", ["-"])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ("\n" + " " * (name_column_width + 3)).join(summary_lines) + + name_latest = f"{name} ({latest})" + line = f"{name_latest:{name_column_width}} - {summary}" + try: + write_output(line) + print_dist_installation_info(name, latest) + except UnicodeEncodeError: + pass + + +def highest_version(versions: List[str]) -> str: + return max(versions, key=parse_version) diff --git a/env/Lib/site-packages/pip/_internal/commands/show.py b/env/Lib/site-packages/pip/_internal/commands/show.py new file mode 100644 index 00000000..c54d548f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,217 @@ +import logging +from optparse import Values +from typing import Generator, Iterable, Iterator, List, NamedTuple, Optional + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-f", + "--files", + dest="files", + action="store_true", + default=False, + help="Show the full list of installed files for each package.", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + logger.warning("ERROR: Please provide a package name or names.") + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose + ): + return ERROR + return SUCCESS + + +class _PackageInfo(NamedTuple): + name: str + version: str + location: str + editable_project_location: Optional[str] + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + project_urls: List[str] + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def search_packages_info(query: List[str]) -> Generator[_PackageInfo, None, None]: + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + env = get_default_environment() + + installed = {dist.canonical_name: dist for dist in env.iter_all_distributions()} + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning("Package(s) not found: %s", ", ".join(missing)) + + def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]: + return ( + dist.metadata["Name"] or "UNKNOWN" + for dist in installed.values() + if current_dist.canonical_name + in {canonicalize_name(d.name) for d in dist.iter_dependencies()} + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + try: + requires = sorted( + # Avoid duplicates in requirements (e.g. due to environment markers). + {req.name for req in dist.iter_dependencies()}, + key=str.lower, + ) + except InvalidRequirement: + requires = sorted(dist.iter_raw_dependencies(), key=str.lower) + + try: + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + except InvalidRequirement: + required_by = ["#N/A"] + + try: + entry_points_text = dist.read_text("entry_points.txt") + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = dist.iter_declared_entries() + if files_iter is None: + files: Optional[List[str]] = None + else: + files = sorted(files_iter) + + metadata = dist.metadata + + project_urls = metadata.get_all("Project-URL", []) + homepage = metadata.get("Home-page", "") + if not homepage: + # It's common that there is a "homepage" Project-URL, but Home-page + # remains unset (especially as PEP 621 doesn't surface the field). + # + # This logic was taken from PyPI's codebase. + for url in project_urls: + url_label, url = url.split(",", maxsplit=1) + normalized_label = ( + url_label.casefold().replace("-", "").replace("_", "").strip() + ) + if normalized_label == "homepage": + homepage = url.strip() + break + + yield _PackageInfo( + name=dist.raw_name, + version=dist.raw_version, + location=dist.location or "", + editable_project_location=dist.editable_project_location, + requires=requires, + required_by=required_by, + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=homepage, + project_urls=project_urls, + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterable[_PackageInfo], + list_files: bool, + verbose: bool, +) -> bool: + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + write_output("Name: %s", dist.name) + write_output("Version: %s", dist.version) + write_output("Summary: %s", dist.summary) + write_output("Home-page: %s", dist.homepage) + write_output("Author: %s", dist.author) + write_output("Author-email: %s", dist.author_email) + write_output("License: %s", dist.license) + write_output("Location: %s", dist.location) + if dist.editable_project_location is not None: + write_output( + "Editable project location: %s", dist.editable_project_location + ) + write_output("Requires: %s", ", ".join(dist.requires)) + write_output("Required-by: %s", ", ".join(dist.required_by)) + + if verbose: + write_output("Metadata-Version: %s", dist.metadata_version) + write_output("Installer: %s", dist.installer) + write_output("Classifiers:") + for classifier in dist.classifiers: + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.entry_points: + write_output(" %s", entry.strip()) + write_output("Project-URLs:") + for project_url in dist.project_urls: + write_output(" %s", project_url) + if list_files: + write_output("Files:") + if dist.files is None: + write_output("Cannot locate RECORD or installed-files.txt") + else: + for line in dist.files: + write_output(" %s", line.strip()) + return results_printed diff --git a/env/Lib/site-packages/pip/_internal/commands/uninstall.py b/env/Lib/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 00000000..bc0edeac --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,114 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.index_command import SessionCommandMixin +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import ( + check_externally_managed, + protect_pip_from_modification_on_windows, + warn_if_run_as_root, +) + +logger = logging.getLogger(__name__) + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Uninstall all the packages listed in the given requirements " + "file. This option can be used multiple times." + ), + ) + self.cmd_opts.add_option( + "-y", + "--yes", + dest="yes", + action="store_true", + help="Don't ask for confirmation of uninstall deletions.", + ) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, + isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + else: + logger.warning( + "Invalid requirement: %r ignored -" + " the uninstall command expects named" + " requirements.", + name, + ) + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, options=options, session=session + ): + req = install_req_from_parsed_requirement( + parsed_req, isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f"You must give at least one requirement to {self.name} (see " + f'"pip help {self.name}")' + ) + + if not options.override_externally_managed: + check_externally_managed() + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, + verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS diff --git a/env/Lib/site-packages/pip/_internal/commands/wheel.py b/env/Lib/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 00000000..278719f4 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,182 @@ +import logging +import os +import shutil +from optparse import Values +from typing import List + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build, should_build_for_wheel_command + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + 'pip wheel' uses the build system interface as described here: + https://pip.pypa.io/en/stable/reference/build-system/ + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-w", + "--wheel-dir", + dest="wheel_dir", + metavar="dir", + default=os.curdir, + help=( + "Build wheels into , where the default is the " + "current working directory." + ), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + "--no-verify", + dest="no_verify", + action="store_true", + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.build_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + reqs_to_build: List[InstallRequirement] = [] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + elif should_build_for_wheel_command(req): + reqs_to_build.append(req) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + build_options=options.build_options or [], + global_options=options.global_options or [], + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError("Failed to build one or more wheels") + + return SUCCESS diff --git a/env/Lib/site-packages/pip/_internal/configuration.py b/env/Lib/site-packages/pip/_internal/configuration.py new file mode 100644 index 00000000..c25273d5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/configuration.py @@ -0,0 +1,383 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +import configparser +import locale +import os +import sys +from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = "pip.ini" if WINDOWS else "pip.conf" +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name: str) -> str: + """Make a name consistent regardless of source (environment or file)""" + name = name.lower().replace("_", "-") + if name.startswith("--"): + name = name[2:] # only prefer long opts + return name + + +def _disassemble_key(name: str) -> List[str]: + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + f"Perhaps you wanted to use 'global.{name}' instead?" + ) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files() -> Dict[Kind, List[str]]: + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) for path in appdirs.site_config_dirs("pip") + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser("~"), + "pip" if WINDOWS else ".pip", + CONFIG_BASENAME, + ) + new_config_file = os.path.join(appdirs.user_config_dir("pip"), CONFIG_BASENAME) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated: bool, load_only: Optional[Kind] = None) -> None: + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers: Dict[Kind, List[Tuple[str, RawConfigParser]]] = { + variant: [] for variant in OVERRIDE_ORDER + } + self._config: Dict[Kind, Dict[str, Any]] = { + variant: {} for variant in OVERRIDE_ORDER + } + self._modified_parsers: List[Tuple[str, RawConfigParser]] = [] + + def load(self) -> None: + """Loads configuration from configuration files and environment""" + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self) -> Optional[str]: + """Returns the file with highest priority in configuration""" + assert self.load_only is not None, "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self) -> Iterable[Tuple[str, Any]]: + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key: str) -> Any: + """Get a value from the configuration.""" + orig_key = key + key = _normalize_name(key) + try: + return self._dictionary[key] + except KeyError: + # disassembling triggers a more useful error message than simply + # "No such key" in the case that the key isn't in the form command.option + _disassemble_key(key) + raise ConfigurationError(f"No such key - {orig_key}") + + def set_value(self, key: str, value: Any) -> None: + """Modify a value in the configuration.""" + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key: str) -> None: + """Unset a value in the configuration.""" + orig_key = key + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {orig_key}") + + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + if not ( + parser.has_section(section) and parser.remove_option(section, name) + ): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + + del self._config[self.load_only][key] + + def save(self) -> None: + """Save the current in-memory state.""" + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + # Ensure directory's permission(need to be writeable) + try: + with open(fname, "w") as f: + parser.write(f) + except OSError as error: + raise ConfigurationError( + f"An error occurred while writing to the configuration file " + f"{fname}: {error}" + ) + + # + # Private routines + # + + def _ensure_have_load_only(self) -> None: + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self) -> Dict[str, Any]: + """A dictionary representing the loaded configuration.""" + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self) -> None: + """Loads configuration from configuration files""" + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug("Skipping file '%s' (variant: %s)", fname, variant) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant: Kind, fname: str) -> RawConfigParser: + logger.verbose("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname: str) -> RawConfigParser: + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + locale_encoding = locale.getpreferredencoding(False) + try: + parser.read(fname, encoding=locale_encoding) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason=f"contains invalid {locale_encoding} characters", + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self) -> None: + """Loads configuration from environment variables""" + self._config[kinds.ENV_VAR].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys( + self, section: str, items: Iterable[Tuple[str, Any]] + ) -> Dict[str, Any]: + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self) -> Iterable[Tuple[str, str]]: + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self) -> Iterable[Tuple[Kind, List[str]]]: + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. The order + here doesn't affect what gets overridden. That is controlled + by OVERRIDE_ORDER. However this does control the order they are + displayed to the user. It's probably most ergononmic to display + things in the same order as OVERRIDE_ORDER + """ + # SMELL: Move the conditions out of this function + + env_config_file = os.environ.get("PIP_CONFIG_FILE", None) + config_files = get_configuration_files() + + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user config is not loaded when env_config_file exists + should_load_user_config = not self.isolated and not ( + env_config_file and os.path.exists(env_config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # virtualenv config + yield kinds.SITE, config_files[kinds.SITE] + + if env_config_file is not None: + yield kinds.ENV, [env_config_file] + else: + yield kinds.ENV, [] + + def get_values_in_config(self, variant: Kind) -> Dict[str, Any]: + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self) -> Tuple[str, RawConfigParser]: + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname: str, parser: RawConfigParser) -> None: + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/env/Lib/site-packages/pip/_internal/distributions/__init__.py b/env/Lib/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 00000000..9a89a838 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/distributions/__init__.py @@ -0,0 +1,21 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.distributions.sdist import SourceDistribution +from pip._internal.distributions.wheel import WheelDistribution +from pip._internal.req.req_install import InstallRequirement + + +def make_distribution_for_install_requirement( + install_req: InstallRequirement, +) -> AbstractDistribution: + """Returns a Distribution for the given InstallRequirement""" + # Editable requirements will always be source distributions. They use the + # legacy logic until we create a modern standard for them. + if install_req.editable: + return SourceDistribution(install_req) + + # If it's a wheel, it's a WheelDistribution + if install_req.is_wheel: + return WheelDistribution(install_req) + + # Otherwise, a SourceDistribution + return SourceDistribution(install_req) diff --git a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..87ebcf6407a3bc5c7880160a3e9128219fa2877d GIT binary patch literal 927 zcmaJ;L2DC16rSmBcDE*JXzfLUvPDp~B^%L$phYd#gHS}8gSad#o9r~5W_Od$Oe&Qg zJb3dg_1LTUQ@jLoP!TJb8fua5=zt4E4>W>z)Ifi&I>w=4 z&Hs=kEu1WGG`V1YOKei`wAmN58$*7n(e1MqnaM6b+a)BNNiIE(x$whqo9y=~BN2&3 zQl!6f9wYmS#)#;%xP_-}NCz#ZXCeR`qa(B@vopquLh@2OLLa8@8mFQC;dyrNFtH-PL%jUG2ik#$ImQ>VT0I$%vgp7-y_39_R z`n9rhvNo*P1H&F`xvY6o9ad@sqjsvH(v^3eVR3b!u1?@NdScBdCWy3ui?s71xZU(Q zVRCiJ%6T-NzDg%}F7MB1lgoeCgBEQ#S<6g=f2O^@M{Ggj5`4~#^{5;4LvoKTLnzn6 nufb=mV2np-V}u@z(ESlwA8QME?aSiTu>$^E;nHaVd|KxxLZ$zE literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e438b001b2e031c29f5dd49a3b0dde75d3e068e5 GIT binary patch literal 2879 zcmb7G-ES0C6u&dOvpc)(w#$b=%hwfZ=ptPZd@yJXrB-ajN(3KVnoMWs-ff4@&J6d? zQnultF(g6^kAzovI^m<$iSKA==EGBrx2B#AS`p4uq-F%HYY~b-k<5WQ}M3S*HlWm-*GctQp3WT z_fAb36K_mTyg4;}BGljZ1KV>=r=*0%n_{CvX}yw2SK zxP?=uwP4Qi*KL<^VXc`ZB-h@oegVV>5Gf}Wg^`NNluC-JJk3%pT}xjfHHB%H`zspH zoEzxAAf{Q0>pV9Eo0LS&rrT0PBMv`l7S`F0H{U z4==f$j(n}mn%>Ua@Tl6SLmwJsL$sVS|WXz7CnOxFwVH6$0XeC4l7n#y? zFBl6F^^dew7~9?CEJo*NcT*RIE^ZV-K4VJ@BXv z@c^8fkCk~nBjw27Fa>A}GXjbw+-VDN+j(#};BWO1EZ3DAB>Evh>Y3O=>i61~jf7bXL1u06-|14cJ`kd#om+w+9vpl%Q9qYINFj`2iF{ z0D(3J4b3X4+eQ{P6kuXqe8DJ6;7Vs_%f8^gDY(&{I3q#uXlZs9y3cXo=4h-~Fzh)i zuPEWBX)lhQ%lhqm6FEW=qelTZVs&?ZJBruq=}Y z{bX>@R|9+R=zGN`;QZe*2)ssMX~kApy1g5k<3T6bo)j#V*LCxW^84}TK3JB?uLI9^ zc^hVG(chrR!eKZV$7xH?F>!o_MQfg03r5U_!6dCT$R*Ez0NGk}rF4{iu^qI<4qSG^ zBJnrUd2#!S%75GgOEm%JJ5iAcclRwm=rng2^ZR?#Kxtb!G;fUE9h=jJ@1$kA`M(#ZS@_hntl-L$= zTA411j5hL9ad%6DH}HpdwX#U*Wc%(`4yioJ58UqqD$;+T0u^;aYd!g;mg6udyeWO&e zQ9kYZ(&iCJJB$)L1mGAwuyJba36B`tp0txL*a9B*eSv;I>_noM`?~1#0s$T$WXrVx zLc1OH;(h|Wk(p9cK++dsTbXj34OD=Mj_QOB*dt~45vo*|5OgGk+RvO1-fG?fPlSHB z-@LcI)!Y;CUep&7Hf}Z{{H%G$Z#AW#z{Zr5Y{q`P>H1*;0&BR*=L#n`&r;Bc2WhR< z_XF-yeGfpmJ|Et=FprJ%aaBB;q&_@iPpT^u1Z;tsiiV6?7r_bpoIRkBbMk z2itkp0ADEof95?_S9gbNR6y+3KK8=k-+I^8RKwDxWr-D&9Ur*c8i)#Ro@ZGQq4e@T zByJB9k9&#d&gX5od2wEzJ7I;EZlF41zgAbiIsEGIm+JaY)%8(zYh>+=Ztnbyy1KRK zv)086bPltVU8=O2r`?xPkTqIbYj>f2;O1ryvD|G_>&(kSKZzxDi889XE|v+ek$RET zOQR^! zqNJ}bhEYQtHl{b+&HE!Ky|x%QYu`LK8SlkhJhN`)`F=;-z>VmUk=Id;HAPWQ+120K Y?NfH^lx;sXSCz`><*mONjv1kU0F7+H@c;k- literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9bdef41617d856b337b63f3b16872084051535dd GIT binary patch literal 8425 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 x2Op7vN95G6?cyWH(Z`z6yKg`S; zVylr*l>==LoGPx+ON;UkloNjd7q_WIwW2Cg#i2LTP*vj8_jcpd4x}UP%$v7w-sf-L z+%FVz1jgjI-z*$V6Y>Xc`UCdySZ}~`lQ6;*mw1Y)c&e!?xL4hjr#M26j9F+KvXu~+a3qz*om49gip5ys&j&$3|d0+sn@IAzfwKx)T+`6`4rlN6w7MU zX-->?A94X@o*oQLPRGGkn(e4mYdJ2nu+o>fupHJo@LZxQTV=+k*G zvaE#J&C^OavPr)l&auCIE+74+;0z94YNDNWI-8R640x;3ofa*YO>Ja>L3qa}t z`V(xT;?ALY9wM3n*&z)YLm+1@fm&H`)psG1&aN0J;FsWVE3R+>V8`ac%6gOn^-<9c zpr=?El-0Du#Yn^70&lv&1Pg>vSrwzOMCsT~i3y`ryo9XX*hl)Q8fqn-!?EqbJXE$7 z-UGU14W?_Pmm{UI8%tj;Jt$88T%7D07rNyOYcLlle=Y9BA2*i2UhWz*-TgCb#?1BQ zhoy;I+V{q7;{l!diO#H*j$KbbEFQeYf0;V|V|Z`r?$W*GyUS}+AFUNiKA0q) z#^NPO+n4kuK9sM`EOw@!Pu%|=cm*xsU4rE0NwyG2Sk6a=6+aY~73D0;3s?(kY(;s? zy4@93#YdhFJ#KODV1^%nthJ=JISbR&IE=^lP_ogmR0)6<1VrHNh| z)}BuG?C)ieGRWSEUKXhw$?bSL0#srgP0p5gM0(h60`3JCCGmeRbk>S>h5IZJm89K* zKm}e%SH_r*Xe`n1y_KQfTdBbVDzHUH None: + super().__init__() + self.req = req + + @abc.abstractproperty + def build_tracker_id(self) -> Optional[str]: + """A string that uniquely identifies this requirement to the build tracker. + + If None, then this dist has no work to do in the build tracker, and + ``.prepare_distribution_metadata()`` will not be called.""" + raise NotImplementedError() + + @abc.abstractmethod + def get_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, + finder: "PackageFinder", + build_isolation: bool, + check_build_deps: bool, + ) -> None: + raise NotImplementedError() diff --git a/env/Lib/site-packages/pip/_internal/distributions/installed.py b/env/Lib/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 00000000..ab8d53be --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,29 @@ +from typing import Optional + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + assert self.req.satisfied_by is not None, "not actually installed" + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/env/Lib/site-packages/pip/_internal/distributions/sdist.py b/env/Lib/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 00000000..28ea5cea --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,158 @@ +import logging +from typing import TYPE_CHECKING, Iterable, Optional, Set, Tuple + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.subprocess import runner_with_spinner_message + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated, either using PEP 517 or using the legacy `setup.py egg_info`. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + """Identify this requirement uniquely by its link.""" + assert self.req.link + return self.req.link.url_without_fragment + + def get_metadata_distribution(self) -> BaseDistribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, + finder: "PackageFinder", + build_isolation: bool, + check_build_deps: bool, + ) -> None: + # Load pyproject.toml, to determine whether PEP 517 is to be used + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + should_isolate = self.req.use_pep517 and build_isolation + if should_isolate: + # Setup an isolated environment and install the build backend static + # requirements in it. + self._prepare_build_backend(finder) + # Check that if the requirement is editable, it either supports PEP 660 or + # has a setup.py or a setup.cfg. This cannot be done earlier because we need + # to setup the build backend to verify it supports build_editable, nor can + # it be done later, because we want to avoid installing build requirements + # needlessly. Doing it here also works around setuptools generating + # UNKNOWN.egg-info when running get_requires_for_build_wheel on a directory + # without setup.py nor setup.cfg. + self.req.isolated_editable_sanity_check() + # Install the dynamic build requirements. + self._install_build_reqs(finder) + # Check if the current environment provides build dependencies + should_check_deps = self.req.use_pep517 and check_build_deps + if should_check_deps: + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + conflicting, missing = self.req.build_env.check_requirements( + pyproject_requires + ) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + if missing: + self._raise_missing_reqs(missing) + self.req.prepare_metadata() + + def _prepare_build_backend(self, finder: "PackageFinder") -> None: + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment() + self.req.build_env.install_requirements( + finder, pyproject_requires, "overlay", kind="build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + self._raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + + def _get_build_requires_wheel(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_wheel() + + def _get_build_requires_editable(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message( + "Getting requirements to build editable" + ) + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_editable() + + def _install_build_reqs(self, finder: "PackageFinder") -> None: + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + if ( + self.req.editable + and self.req.permit_editable_wheels + and self.req.supports_pyproject_editable + ): + build_reqs = self._get_build_requires_editable() + else: + build_reqs = self._get_build_requires_wheel() + conflicting, missing = self.req.build_env.check_requirements(build_reqs) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", kind="backend dependencies" + ) + + def _raise_conflicts( + self, conflicting_with: str, conflicting_reqs: Set[Tuple[str, str]] + ) -> None: + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting_reqs) + ), + ) + raise InstallationError(error_message) + + def _raise_missing_reqs(self, missing: Set[str]) -> None: + format_string = ( + "Some build dependencies for {requirement} are missing: {missing}." + ) + error_message = format_string.format( + requirement=self.req, missing=", ".join(map(repr, sorted(missing))) + ) + raise InstallationError(error_message) diff --git a/env/Lib/site-packages/pip/_internal/distributions/wheel.py b/env/Lib/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 00000000..bfadd39d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,42 @@ +from typing import TYPE_CHECKING, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + assert self.req.local_file_path, "Set as part of preparation during download" + assert self.req.name, "Wheels are never unnamed" + wheel = FilesystemWheel(self.req.local_file_path) + return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) + + def prepare_distribution_metadata( + self, + finder: "PackageFinder", + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/env/Lib/site-packages/pip/_internal/exceptions.py b/env/Lib/site-packages/pip/_internal/exceptions.py new file mode 100644 index 00000000..2587740f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,777 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +import configparser +import contextlib +import locale +import logging +import pathlib +import re +import sys +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, Iterator, List, Literal, Optional, Union + +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + + from pip._vendor.requests.models import Request, Response + + from pip._internal.metadata import BaseDistribution + from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Union[Text, str], + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: 'Literal["error", "warning"]' = "error", + reference: Optional[str] = None, + message: Union[str, Text], + context: Optional[Union[str, Text]], + hint_stmt: Optional[Union[str, Text]], + note_stmt: Optional[Union[str, Text]] = None, + link: Optional[str] = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: "BaseDistribution", + metadata_name: str, + ) -> None: + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self) -> str: + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return f"None {self.metadata_name} metadata found for distribution: {self.dist}" + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> str: + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__( + self, + error_msg: str, + response: Optional["Response"] = None, + request: Optional["Request"] = None, + ) -> None: + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if ( + self.response is not None + and not self.request + and hasattr(response, "request") + ): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename, + user-supplied ``#egg=`` value, or an install requirement name. + """ + + def __init__( + self, ireq: "InstallRequirement", field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> str: + return ( + f"Requested {self.ireq} has inconsistent {self.field}: " + f"expected {self.f_val!r}, but metadata has {self.m_val!r}" + ) + + +class MetadataInvalid(InstallationError): + """Metadata is invalid.""" + + def __init__(self, ireq: "InstallRequirement", error: str) -> None: + self.ireq = ireq + self.error = error + + def __str__(self) -> str: + return f"Requested {self.ireq} has invalid metadata: {self.error}" + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: Optional[List[str]], + ) -> None: + if output_lines is None: + output_prompt = Text("See above for output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super(InstallationSubprocessError, self).__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: List["HashError"] = [] + + def append(self, error: "HashError") -> None: + self.errors.append(error) + + def __str__(self) -> str: + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return "\n".join(lines) + return "" + + def __bool__(self) -> bool: + return bool(self.errors) + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + + req: Optional["InstallRequirement"] = None + head = "" + order: int = -1 + + def body(self) -> str: + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f" {self._requirement_name()}" + + def __str__(self) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> str: + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else "unknown package" + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ( + "Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:" + ) + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ( + "Can't verify hashes for these file:// requirements because they " + "point to directories:" + ) + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ( + "Hashes are required in --require-hashes mode, but they are " + "missing from some requirements. Here is a list of those " + "requirements along with the hashes their downloaded archives " + "actually had. Add lines like these to your requirements files to " + "prevent tampering. (If you did not enable --require-hashes " + "manually, note that it turns on automatically when any package " + "has a hash.)" + ) + + def __init__(self, gotten_hash: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> str: + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = ( + self.req.original_link + if self.req.is_direct + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, "req", None) + ) + return " {} --hash={}:{}".format( + package or "unknown package", FAVORITE_HASH, self.gotten_hash + ) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ( + "In --require-hashes mode, all requirements must have their " + "versions pinned with ==. These do not:" + ) + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + + order = 4 + head = ( + "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " + "FILE. If you have updated the package versions, please update " + "the hashes. Otherwise, examine the package contents carefully; " + "someone may have tampered with them." + ) + + def __init__(self, allowed: Dict[str, List[str]], gots: Dict[str, "_Hash"]) -> None: + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self) -> str: + return f" {self._requirement_name()}:\n{self._hash_comparison()}" + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: str) -> "chain[str]": + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(" or")) + + lines: List[str] = [] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((f" Expected {next(prefix)} {e}") for e in expecteds) + lines.append( + f" Got {self.gots[hash_name].hexdigest()}\n" + ) + return "\n".join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file""" + + def __init__( + self, + reason: str = "could not be loaded", + fname: Optional[str] = None, + error: Optional[configparser.Error] = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> str: + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" + + +_DEFAULT_EXTERNALLY_MANAGED_ERROR = f"""\ +The Python environment under {sys.prefix} is managed externally, and may not be +manipulated by the user. Please use specific tooling from the distributor of +the Python installation to interact with this environment instead. +""" + + +class ExternallyManagedEnvironment(DiagnosticPipError): + """The current environment is externally managed. + + This is raised when the current environment is externally managed, as + defined by `PEP 668`_. The ``EXTERNALLY-MANAGED`` configuration is checked + and displayed when the error is bubbled up to the user. + + :param error: The error message read from ``EXTERNALLY-MANAGED``. + """ + + reference = "externally-managed-environment" + + def __init__(self, error: Optional[str]) -> None: + if error is None: + context = Text(_DEFAULT_EXTERNALLY_MANAGED_ERROR) + else: + context = Text(error) + super().__init__( + message="This environment is externally managed", + context=context, + note_stmt=( + "If you believe this is a mistake, please contact your " + "Python installation or OS distribution provider. " + "You can override this, at the risk of breaking your Python " + "installation or OS, by passing --break-system-packages." + ), + hint_stmt=Text("See PEP 668 for the detailed specification."), + ) + + @staticmethod + def _iter_externally_managed_error_keys() -> Iterator[str]: + # LC_MESSAGES is in POSIX, but not the C standard. The most common + # platform that does not implement this category is Windows, where + # using other categories for console message localization is equally + # unreliable, so we fall back to the locale-less vendor message. This + # can always be re-evaluated when a vendor proposes a new alternative. + try: + category = locale.LC_MESSAGES + except AttributeError: + lang: Optional[str] = None + else: + lang, _ = locale.getlocale(category) + if lang is not None: + yield f"Error-{lang}" + for sep in ("-", "_"): + before, found, _ = lang.partition(sep) + if not found: + continue + yield f"Error-{before}" + yield "Error" + + @classmethod + def from_config( + cls, + config: Union[pathlib.Path, str], + ) -> "ExternallyManagedEnvironment": + parser = configparser.ConfigParser(interpolation=None) + try: + parser.read(config, encoding="utf-8") + section = parser["externally-managed"] + for key in cls._iter_externally_managed_error_keys(): + with contextlib.suppress(KeyError): + return cls(section[key]) + except KeyError: + pass + except (OSError, UnicodeDecodeError, configparser.ParsingError): + from pip._internal.utils._log import VERBOSE + + exc_info = logger.isEnabledFor(VERBOSE) + logger.warning("Failed to read %s", config, exc_info=exc_info) + return cls(None) + + +class UninstallMissingRecord(DiagnosticPipError): + reference = "uninstall-no-record-file" + + def __init__(self, *, distribution: "BaseDistribution") -> None: + installer = distribution.installer + if not installer or installer == "pip": + dep = f"{distribution.raw_name}=={distribution.version}" + hint = Text.assemble( + "You might be able to recover from this via: ", + (f"pip install --force-reinstall --no-deps {dep}", "green"), + ) + else: + hint = Text( + f"The package was installed by {installer}. " + "You should check if it can uninstall the package." + ) + + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "The package's contents are unknown: " + f"no RECORD file was found for {distribution.raw_name}." + ), + hint_stmt=hint, + ) + + +class LegacyDistutilsInstall(DiagnosticPipError): + reference = "uninstall-distutils-installed-package" + + def __init__(self, *, distribution: "BaseDistribution") -> None: + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "It is a distutils installed project and thus we cannot accurately " + "determine which files belong to it which would lead to only a partial " + "uninstall." + ), + hint_stmt=None, + ) diff --git a/env/Lib/site-packages/pip/_internal/index/__init__.py b/env/Lib/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 00000000..7a17b7b3 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6753ea60ec5dcb1d91d837c31555e32e9ec877a GIT binary patch literal 218 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c968a2df9e0e6bf73f3fb3a428ece7fa313e031 GIT binary patch literal 40634 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..01e6d705ae9026f5a31702014763cf3f423e1290 GIT binary patch literal 12574 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 Y=*phe(QMnunr9?y+qYehmz Optional[str]: + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in "+:": + return scheme + return None + + +class _NotAPIContent(Exception): + def __init__(self, content_type: str, request_desc: str) -> None: + super().__init__(content_type, request_desc) + self.content_type = content_type + self.request_desc = request_desc + + +def _ensure_api_header(response: Response) -> None: + """ + Check the Content-Type header to ensure the response contains a Simple + API Response. + + Raises `_NotAPIContent` if the content type is not a valid content-type. + """ + content_type = response.headers.get("Content-Type", "Unknown") + + content_type_l = content_type.lower() + if content_type_l.startswith( + ( + "text/html", + "application/vnd.pypi.simple.v1+html", + "application/vnd.pypi.simple.v1+json", + ) + ): + return + + raise _NotAPIContent(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_api_response(url: str, session: PipSession) -> None: + """ + Send a HEAD request to the URL, and ensure the response contains a simple + API Response. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotAPIContent` if the content type is not a valid content type. + """ + scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) + if scheme not in {"http", "https"}: + raise _NotHTTP() + + resp = session.head(url, allow_redirects=True) + raise_for_status(resp) + + _ensure_api_header(resp) + + +def _get_simple_response(url: str, session: PipSession) -> Response: + """Access an Simple API response with GET, and return the response. + + This consists of three parts: + + 1. If the URL looks suspiciously like an archive, send a HEAD first to + check the Content-Type is HTML or Simple API, to avoid downloading a + large file. Raise `_NotHTTP` if the content type cannot be determined, or + `_NotAPIContent` if it is not HTML or a Simple API. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got a Simple API response, + and raise `_NotAPIContent` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_api_response(url, session=session) + + logger.debug("Getting page %s", redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": ", ".join( + [ + "application/vnd.pypi.simple.v1+json", + "application/vnd.pypi.simple.v1+html; q=0.1", + "text/html; q=0.01", + ] + ), + # We don't want to blindly returned cached data for + # /simple/, because authors generally expecting that + # twine upload && pip install will function, but if + # they've done a pip install in the last ~10 minutes + # it won't. Thus by setting this to zero we will not + # blindly use any cached data, however the benefit of + # using max-age=0 instead of no-cache, is that we will + # still support conditional requests, so we will still + # minimize traffic sent in cases where the page hasn't + # changed at all, we will just always incur the round + # trip for the conditional GET now instead of only + # once per 10 minutes. + # For more information, please see pypa/pip#5670. + "Cache-Control": "max-age=0", + }, + ) + raise_for_status(resp) + + # The check for archives above only works if the url ends with + # something that looks like an archive. However that is not a + # requirement of an url. Unless we issue a HEAD request on every + # url we cannot know ahead of time for sure if something is a + # Simple API response or not. However we can check after we've + # downloaded it. + _ensure_api_header(resp) + + logger.debug( + "Fetched page %s as %s", + redact_auth_from_url(url), + resp.headers.get("Content-Type", "Unknown"), + ) + + return resp + + +def _get_encoding_from_headers(headers: ResponseHeaders) -> Optional[str]: + """Determine if we have any encoding information in our headers.""" + if headers and "Content-Type" in headers: + m = email.message.Message() + m["content-type"] = headers["Content-Type"] + charset = m.get_param("charset") + if charset: + return str(charset) + return None + + +class CacheablePageContent: + def __init__(self, page: "IndexContent") -> None: + assert page.cache_link_parsing + self.page = page + + def __eq__(self, other: object) -> bool: + return isinstance(other, type(self)) and self.page.url == other.page.url + + def __hash__(self) -> int: + return hash(self.page.url) + + +class ParseLinks(Protocol): + def __call__(self, page: "IndexContent") -> Iterable[Link]: ... + + +def with_cached_index_content(fn: ParseLinks) -> ParseLinks: + """ + Given a function that parses an Iterable[Link] from an IndexContent, cache the + function's result (keyed by CacheablePageContent), unless the IndexContent + `page` has `page.cache_link_parsing == False`. + """ + + @functools.lru_cache(maxsize=None) + def wrapper(cacheable_page: CacheablePageContent) -> List[Link]: + return list(fn(cacheable_page.page)) + + @functools.wraps(fn) + def wrapper_wrapper(page: "IndexContent") -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page)) + return list(fn(page)) + + return wrapper_wrapper + + +@with_cached_index_content +def parse_links(page: "IndexContent") -> Iterable[Link]: + """ + Parse a Simple API's Index Content, and yield its anchor elements as Link objects. + """ + + content_type_l = page.content_type.lower() + if content_type_l.startswith("application/vnd.pypi.simple.v1+json"): + data = json.loads(page.content) + for file in data.get("files", []): + link = Link.from_json(file, page.url) + if link is None: + continue + yield link + return + + parser = HTMLLinkParser(page.url) + encoding = page.encoding or "utf-8" + parser.feed(page.content.decode(encoding)) + + url = page.url + base_url = parser.base_url or url + for anchor in parser.anchors: + link = Link.from_element(anchor, page_url=url, base_url=base_url) + if link is None: + continue + yield link + + +@dataclass(frozen=True) +class IndexContent: + """Represents one response (or page), along with its URL. + + :param encoding: the encoding to decode the given content. + :param url: the URL from which the HTML was downloaded. + :param cache_link_parsing: whether links parsed from this page's url + should be cached. PyPI index urls should + have this set to False, for example. + """ + + content: bytes + content_type: str + encoding: Optional[str] + url: str + cache_link_parsing: bool = True + + def __str__(self) -> str: + return redact_auth_from_url(self.url) + + +class HTMLLinkParser(HTMLParser): + """ + HTMLParser that keeps the first base HREF and a list of all anchor + elements' attributes. + """ + + def __init__(self, url: str) -> None: + super().__init__(convert_charrefs=True) + + self.url: str = url + self.base_url: Optional[str] = None + self.anchors: List[Dict[str, Optional[str]]] = [] + + def handle_starttag(self, tag: str, attrs: List[Tuple[str, Optional[str]]]) -> None: + if tag == "base" and self.base_url is None: + href = self.get_href(attrs) + if href is not None: + self.base_url = href + elif tag == "a": + self.anchors.append(dict(attrs)) + + def get_href(self, attrs: List[Tuple[str, Optional[str]]]) -> Optional[str]: + for name, value in attrs: + if name == "href": + return value + return None + + +def _handle_get_simple_fail( + link: Link, + reason: Union[str, Exception], + meth: Optional[Callable[..., None]] = None, +) -> None: + if meth is None: + meth = logger.debug + meth("Could not fetch URL %s: %s - skipping", link, reason) + + +def _make_index_content( + response: Response, cache_link_parsing: bool = True +) -> IndexContent: + encoding = _get_encoding_from_headers(response.headers) + return IndexContent( + response.content, + response.headers["Content-Type"], + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing, + ) + + +def _get_index_content(link: Link, *, session: PipSession) -> Optional["IndexContent"]: + url = link.url.split("#", 1)[0] + + # Check for VCS schemes that do not support lookup as web pages. + vcs_scheme = _match_vcs_scheme(url) + if vcs_scheme: + logger.warning( + "Cannot look at %s URL %s because it does not support lookup as web pages.", + vcs_scheme, + link, + ) + return None + + # Tack index.html onto file:// URLs that point to directories + scheme, _, path, _, _, _ = urllib.parse.urlparse(url) + if scheme == "file" and os.path.isdir(urllib.request.url2pathname(path)): + # add trailing slash if not present so urljoin doesn't trim + # final segment + if not url.endswith("/"): + url += "/" + # TODO: In the future, it would be nice if pip supported PEP 691 + # style responses in the file:// URLs, however there's no + # standard file extension for application/vnd.pypi.simple.v1+json + # so we'll need to come up with something on our own. + url = urllib.parse.urljoin(url, "index.html") + logger.debug(" file: URL is directory, getting %s", url) + + try: + resp = _get_simple_response(url, session=session) + except _NotHTTP: + logger.warning( + "Skipping page %s because it looks like an archive, and cannot " + "be checked by a HTTP HEAD request.", + link, + ) + except _NotAPIContent as exc: + logger.warning( + "Skipping page %s because the %s request got Content-Type: %s. " + "The only supported Content-Types are application/vnd.pypi.simple.v1+json, " + "application/vnd.pypi.simple.v1+html, and text/html", + link, + exc.request_desc, + exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_simple_fail(link, exc) + except RetryError as exc: + _handle_get_simple_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_simple_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_simple_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_simple_fail(link, "timed out") + else: + return _make_index_content(resp, cache_link_parsing=link.cache_link_parsing) + return None + + +class CollectedSources(NamedTuple): + find_links: Sequence[Optional[LinkSource]] + index_urls: Sequence[Optional[LinkSource]] + + +class LinkCollector: + """ + Responsible for collecting Link objects from all configured locations, + making network requests as needed. + + The class's main method is its collect_sources() method. + """ + + def __init__( + self, + session: PipSession, + search_scope: SearchScope, + ) -> None: + self.search_scope = search_scope + self.session = session + + @classmethod + def create( + cls, + session: PipSession, + options: Values, + suppress_no_index: bool = False, + ) -> "LinkCollector": + """ + :param session: The Session to use to make requests. + :param suppress_no_index: Whether to ignore the --no-index option + when constructing the SearchScope object. + """ + index_urls = [options.index_url] + options.extra_index_urls + if options.no_index and not suppress_no_index: + logger.debug( + "Ignoring indexes: %s", + ",".join(redact_auth_from_url(url) for url in index_urls), + ) + index_urls = [] + + # Make sure find_links is a list before passing to create(). + find_links = options.find_links or [] + + search_scope = SearchScope.create( + find_links=find_links, + index_urls=index_urls, + no_index=options.no_index, + ) + link_collector = LinkCollector( + session=session, + search_scope=search_scope, + ) + return link_collector + + @property + def find_links(self) -> List[str]: + return self.search_scope.find_links + + def fetch_response(self, location: Link) -> Optional[IndexContent]: + """ + Fetch an HTML page containing package links. + """ + return _get_index_content(location, session=self.session) + + def collect_sources( + self, + project_name: str, + candidates_from_page: CandidatesFromPage, + ) -> CollectedSources: + # The OrderedDict calls deduplicate sources by URL. + index_url_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=False, + cache_link_parsing=False, + project_name=project_name, + ) + for loc in self.search_scope.get_index_urls_locations(project_name) + ).values() + find_links_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=True, + cache_link_parsing=True, + project_name=project_name, + ) + for loc in self.find_links + ).values() + + if logger.isEnabledFor(logging.DEBUG): + lines = [ + f"* {s.link}" + for s in itertools.chain(find_links_sources, index_url_sources) + if s is not None and s.link is not None + ] + lines = [ + f"{len(lines)} location(s) to search " + f"for versions of {project_name}:" + ] + lines + logger.debug("\n".join(lines)) + + return CollectedSources( + find_links=list(find_links_sources), + index_urls=list(index_url_sources), + ) diff --git a/env/Lib/site-packages/pip/_internal/index/package_finder.py b/env/Lib/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 00000000..0d65ce35 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1020 @@ +"""Routines related to PyPI, indexes""" + +import enum +import functools +import itertools +import logging +import re +from dataclasses import dataclass +from typing import TYPE_CHECKING, FrozenSet, Iterable, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import InvalidVersion, _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + InvalidWheelFilename, + UnsupportedWheel, +) +from pip._internal.index.collector import LinkCollector, parse_links +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.models.wheel import Wheel +from pip._internal.req import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import build_netloc +from pip._internal.utils.packaging import check_requires_python +from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS + +if TYPE_CHECKING: + from pip._vendor.typing_extensions import TypeGuard + +__all__ = ["FormatControl", "BestCandidateResult", "PackageFinder"] + + +logger = getLogger(__name__) + +BuildTag = Union[Tuple[()], Tuple[int, str]] +CandidateSortingKey = Tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] + + +def _check_link_requires_python( + link: Link, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> bool: + """ + Return whether the given Python version is compatible with a link's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + """ + try: + is_compatible = check_requires_python( + link.requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier: + logger.debug( + "Ignoring invalid Requires-Python (%r) for link: %s", + link.requires_python, + link, + ) + else: + if not is_compatible: + version = ".".join(map(str, version_info)) + if not ignore_requires_python: + logger.verbose( + "Link requires a different Python (%s not in: %r): %s", + version, + link.requires_python, + link, + ) + return False + + logger.debug( + "Ignoring failed Requires-Python check (%s not in: %r) for link: %s", + version, + link.requires_python, + link, + ) + + return True + + +class LinkType(enum.Enum): + candidate = enum.auto() + different_project = enum.auto() + yanked = enum.auto() + format_unsupported = enum.auto() + format_invalid = enum.auto() + platform_mismatch = enum.auto() + requires_python_mismatch = enum.auto() + + +class LinkEvaluator: + """ + Responsible for evaluating links for a particular project. + """ + + _py_version_re = re.compile(r"-py([123]\.?[0-9]?)$") + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + project_name: str, + canonical_name: str, + formats: FrozenSet[str], + target_python: TargetPython, + allow_yanked: bool, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + :param project_name: The user supplied package name. + :param canonical_name: The canonical package name. + :param formats: The formats allowed for this package. Should be a set + with 'binary' or 'source' or both in it. + :param target_python: The target Python interpreter to use when + evaluating link compatibility. This is used, for example, to + check wheel compatibility, as well as when checking the Python + version, e.g. the Python version embedded in a link filename + (or egg fragment) and against an HTML link's optional PEP 503 + "data-requires-python" attribute. + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param ignore_requires_python: Whether to ignore incompatible + PEP 503 "data-requires-python" values in HTML links. Defaults + to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self._allow_yanked = allow_yanked + self._canonical_name = canonical_name + self._ignore_requires_python = ignore_requires_python + self._formats = formats + self._target_python = target_python + + self.project_name = project_name + + def evaluate_link(self, link: Link) -> Tuple[LinkType, str]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (result, detail), where *result* is an enum + representing whether the evaluation found a candidate, or the reason + why one is not found. If a candidate is found, *detail* will be the + candidate's version string; if one is not found, it contains the + reason the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or "" + return (LinkType.yanked, f"yanked for reason: {reason}") + + if link.egg_fragment: + egg_info = link.egg_fragment + ext = link.ext + else: + egg_info, ext = link.splitext() + if not ext: + return (LinkType.format_unsupported, "not a file") + if ext not in SUPPORTED_EXTENSIONS: + return ( + LinkType.format_unsupported, + f"unsupported archive format: {ext}", + ) + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = f"No binaries permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + if "macosx10" in link.path and ext == ".zip": + return (LinkType.format_unsupported, "macosx10 one") + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return ( + LinkType.format_invalid, + "invalid wheel filename", + ) + if canonicalize_name(wheel.name) != self._canonical_name: + reason = f"wrong project name (not {self.project_name})" + return (LinkType.different_project, reason) + + supported_tags = self._target_python.get_unsorted_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = ", ".join(wheel.get_formatted_file_tags()) + reason = ( + f"none of the wheel's tags ({file_tags}) are compatible " + f"(run pip debug --verbose to show compatible tags)" + ) + return (LinkType.platform_mismatch, reason) + + version = wheel.version + + # This should be up by the self.ok_binary check, but see issue 2700. + if "source" not in self._formats and ext != WHEEL_EXTENSION: + reason = f"No sources permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + + if not version: + version = _extract_version_from_fragment( + egg_info, + self._canonical_name, + ) + if not version: + reason = f"Missing project version for {self.project_name}" + return (LinkType.format_invalid, reason) + + match = self._py_version_re.search(version) + if match: + version = version[: match.start()] + py_version = match.group(1) + if py_version != self._target_python.py_version: + return ( + LinkType.platform_mismatch, + "Python version is incorrect", + ) + + supports_python = _check_link_requires_python( + link, + version_info=self._target_python.py_version_info, + ignore_requires_python=self._ignore_requires_python, + ) + if not supports_python: + reason = f"{version} Requires-Python {link.requires_python}" + return (LinkType.requires_python_mismatch, reason) + + logger.debug("Found link %s, version: %s", link, version) + + return (LinkType.candidate, version) + + +def filter_unallowed_hashes( + candidates: List[InstallationCandidate], + hashes: Optional[Hashes], + project_name: str, +) -> List[InstallationCandidate]: + """ + Filter out candidates whose hashes aren't allowed, and return a new + list of candidates. + + If at least one candidate has an allowed hash, then all candidates with + either an allowed hash or no hash specified are returned. Otherwise, + the given candidates are returned. + + Including the candidates with no hash specified when there is a match + allows a warning to be logged if there is a more preferred candidate + with no hash specified. Returning all candidates in the case of no + matches lets pip report the hash of the candidate that would otherwise + have been installed (e.g. permitting the user to more easily update + their requirements file with the desired hash). + """ + if not hashes: + logger.debug( + "Given no hashes to check %s links for project %r: " + "discarding no candidates", + len(candidates), + project_name, + ) + # Make sure we're not returning back the given value. + return list(candidates) + + matches_or_no_digest = [] + # Collect the non-matches for logging purposes. + non_matches = [] + match_count = 0 + for candidate in candidates: + link = candidate.link + if not link.has_hash: + pass + elif link.is_hash_allowed(hashes=hashes): + match_count += 1 + else: + non_matches.append(candidate) + continue + + matches_or_no_digest.append(candidate) + + if match_count: + filtered = matches_or_no_digest + else: + # Make sure we're not returning back the given value. + filtered = list(candidates) + + if len(filtered) == len(candidates): + discard_message = "discarding no candidates" + else: + discard_message = "discarding {} non-matches:\n {}".format( + len(non_matches), + "\n ".join(str(candidate.link) for candidate in non_matches), + ) + + logger.debug( + "Checked %s links for project %r against %s hashes " + "(%s matches, %s no digest): %s", + len(candidates), + project_name, + hashes.digest_count, + match_count, + len(matches_or_no_digest) - match_count, + discard_message, + ) + + return filtered + + +@dataclass +class CandidatePreferences: + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + prefer_binary: bool = False + allow_all_prereleases: bool = False + + +class BestCandidateResult: + """A collection of candidates, returned by `PackageFinder.find_best_candidate`. + + This class is only intended to be instantiated by CandidateEvaluator's + `compute_best_candidate()` method. + """ + + def __init__( + self, + candidates: List[InstallationCandidate], + applicable_candidates: List[InstallationCandidate], + best_candidate: Optional[InstallationCandidate], + ) -> None: + """ + :param candidates: A sequence of all available candidates found. + :param applicable_candidates: The applicable candidates. + :param best_candidate: The most preferred candidate found, or None + if no applicable candidates were found. + """ + assert set(applicable_candidates) <= set(candidates) + + if best_candidate is None: + assert not applicable_candidates + else: + assert best_candidate in applicable_candidates + + self._applicable_candidates = applicable_candidates + self._candidates = candidates + + self.best_candidate = best_candidate + + def iter_all(self) -> Iterable[InstallationCandidate]: + """Iterate through all candidates.""" + return iter(self._candidates) + + def iter_applicable(self) -> Iterable[InstallationCandidate]: + """Iterate through the applicable candidates.""" + return iter(self._applicable_candidates) + + +class CandidateEvaluator: + """ + Responsible for filtering and sorting candidates for installation based + on what tags are valid. + """ + + @classmethod + def create( + cls, + project_name: str, + target_python: Optional[TargetPython] = None, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> "CandidateEvaluator": + """Create a CandidateEvaluator object. + + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + :param hashes: An optional collection of allowed hashes. + """ + if target_python is None: + target_python = TargetPython() + if specifier is None: + specifier = specifiers.SpecifierSet() + + supported_tags = target_python.get_sorted_tags() + + return cls( + project_name=project_name, + supported_tags=supported_tags, + specifier=specifier, + prefer_binary=prefer_binary, + allow_all_prereleases=allow_all_prereleases, + hashes=hashes, + ) + + def __init__( + self, + project_name: str, + supported_tags: List[Tag], + specifier: specifiers.BaseSpecifier, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + hashes: Optional[Hashes] = None, + ) -> None: + """ + :param supported_tags: The PEP 425 tags supported by the target + Python in order of preference (most preferred first). + """ + self._allow_all_prereleases = allow_all_prereleases + self._hashes = hashes + self._prefer_binary = prefer_binary + self._project_name = project_name + self._specifier = specifier + self._supported_tags = supported_tags + # Since the index of the tag in the _supported_tags list is used + # as a priority, precompute a map from tag to index/priority to be + # used in wheel.find_most_preferred_tag. + self._wheel_tag_preferences = { + tag: idx for idx, tag in enumerate(supported_tags) + } + + def get_applicable_candidates( + self, + candidates: List[InstallationCandidate], + ) -> List[InstallationCandidate]: + """ + Return the applicable candidates from a list of candidates. + """ + # Using None infers from the specifier instead. + allow_prereleases = self._allow_all_prereleases or None + specifier = self._specifier + + # We turn the version object into a str here because otherwise + # when we're debundled but setuptools isn't, Python will see + # packaging.version.Version and + # pkg_resources._vendor.packaging.version.Version as different + # types. This way we'll use a str as a common data interchange + # format. If we stop using the pkg_resources provided specifier + # and start using our own, we can drop the cast to str(). + candidates_and_versions = [(c, str(c.version)) for c in candidates] + versions = set( + specifier.filter( + (v for _, v in candidates_and_versions), + prereleases=allow_prereleases, + ) + ) + + applicable_candidates = [c for c, v in candidates_and_versions if v in versions] + filtered_applicable_candidates = filter_unallowed_hashes( + candidates=applicable_candidates, + hashes=self._hashes, + project_name=self._project_name, + ) + + return sorted(filtered_applicable_candidates, key=self._sort_key) + + def _sort_key(self, candidate: InstallationCandidate) -> CandidateSortingKey: + """ + Function to pass as the `key` argument to a call to sorted() to sort + InstallationCandidates by preference. + + Returns a tuple such that tuples sorting as greater using Python's + default comparison operator are more preferred. + + The preference is as follows: + + First and foremost, candidates with allowed (matching) hashes are + always preferred over candidates without matching hashes. This is + because e.g. if the only candidate with an allowed hash is yanked, + we still want to use that candidate. + + Second, excepting hash considerations, candidates that have been + yanked (in the sense of PEP 592) are always less preferred than + candidates that haven't been yanked. Then: + + If not finding wheels, they are sorted by version only. + If finding wheels, then the sort order is by version, then: + 1. existing installs + 2. wheels ordered via Wheel.support_index_min(self._supported_tags) + 3. source archives + If prefer_binary was set, then all wheels are sorted above sources. + + Note: it was considered to embed this logic into the Link + comparison operators, but then different sdist links + with the same version, would have to be considered equal + """ + valid_tags = self._supported_tags + support_num = len(valid_tags) + build_tag: BuildTag = () + binary_preference = 0 + link = candidate.link + if link.is_wheel: + # can raise InvalidWheelFilename + wheel = Wheel(link.filename) + try: + pri = -( + wheel.find_most_preferred_tag( + valid_tags, self._wheel_tag_preferences + ) + ) + except ValueError: + raise UnsupportedWheel( + f"{wheel.filename} is not a supported wheel for this platform. It " + "can't be sorted." + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r"^(\d+)(.*)$", wheel.build_tag) + assert match is not None, "guaranteed by filename validation" + build_tag_groups = match.groups() + build_tag = (int(build_tag_groups[0]), build_tag_groups[1]) + else: # sdist + pri = -(support_num) + has_allowed_hash = int(link.is_hash_allowed(self._hashes)) + yank_value = -1 * int(link.is_yanked) # -1 for yanked. + return ( + has_allowed_hash, + yank_value, + binary_preference, + candidate.version, + pri, + build_tag, + ) + + def sort_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> Optional[InstallationCandidate]: + """ + Return the best candidate per the instance's sort order, or None if + no candidate is acceptable. + """ + if not candidates: + return None + best_candidate = max(candidates, key=self._sort_key) + return best_candidate + + def compute_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> BestCandidateResult: + """ + Compute and return a `BestCandidateResult` instance. + """ + applicable_candidates = self.get_applicable_candidates(candidates) + + best_candidate = self.sort_best_candidate(applicable_candidates) + + return BestCandidateResult( + candidates, + applicable_candidates=applicable_candidates, + best_candidate=best_candidate, + ) + + +class PackageFinder: + """This finds packages. + + This is meant to match easy_install's technique for looking for + packages, by reading pages and looking for appropriate links. + """ + + def __init__( + self, + link_collector: LinkCollector, + target_python: TargetPython, + allow_yanked: bool, + format_control: Optional[FormatControl] = None, + candidate_prefs: Optional[CandidatePreferences] = None, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + This constructor is primarily meant to be used by the create() class + method and from tests. + + :param format_control: A FormatControl object, used to control + the selection of source packages / binary packages when consulting + the index and links. + :param candidate_prefs: Options to use when creating a + CandidateEvaluator object. + """ + if candidate_prefs is None: + candidate_prefs = CandidatePreferences() + + format_control = format_control or FormatControl(set(), set()) + + self._allow_yanked = allow_yanked + self._candidate_prefs = candidate_prefs + self._ignore_requires_python = ignore_requires_python + self._link_collector = link_collector + self._target_python = target_python + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links: Set[Tuple[Link, LinkType, str]] = set() + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + @classmethod + def create( + cls, + link_collector: LinkCollector, + selection_prefs: SelectionPreferences, + target_python: Optional[TargetPython] = None, + ) -> "PackageFinder": + """Create a PackageFinder. + + :param selection_prefs: The candidate selection preferences, as a + SelectionPreferences object. + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + """ + if target_python is None: + target_python = TargetPython() + + candidate_prefs = CandidatePreferences( + prefer_binary=selection_prefs.prefer_binary, + allow_all_prereleases=selection_prefs.allow_all_prereleases, + ) + + return cls( + candidate_prefs=candidate_prefs, + link_collector=link_collector, + target_python=target_python, + allow_yanked=selection_prefs.allow_yanked, + format_control=selection_prefs.format_control, + ignore_requires_python=selection_prefs.ignore_requires_python, + ) + + @property + def target_python(self) -> TargetPython: + return self._target_python + + @property + def search_scope(self) -> SearchScope: + return self._link_collector.search_scope + + @search_scope.setter + def search_scope(self, search_scope: SearchScope) -> None: + self._link_collector.search_scope = search_scope + + @property + def find_links(self) -> List[str]: + return self._link_collector.find_links + + @property + def index_urls(self) -> List[str]: + return self.search_scope.index_urls + + @property + def trusted_hosts(self) -> Iterable[str]: + for host_port in self._link_collector.session.pip_trusted_origins: + yield build_netloc(*host_port) + + @property + def allow_all_prereleases(self) -> bool: + return self._candidate_prefs.allow_all_prereleases + + def set_allow_all_prereleases(self) -> None: + self._candidate_prefs.allow_all_prereleases = True + + @property + def prefer_binary(self) -> bool: + return self._candidate_prefs.prefer_binary + + def set_prefer_binary(self) -> None: + self._candidate_prefs.prefer_binary = True + + def requires_python_skipped_reasons(self) -> List[str]: + reasons = { + detail + for _, result, detail in self._logged_links + if result == LinkType.requires_python_mismatch + } + return sorted(reasons) + + def make_link_evaluator(self, project_name: str) -> LinkEvaluator: + canonical_name = canonicalize_name(project_name) + formats = self.format_control.get_allowed_formats(canonical_name) + + return LinkEvaluator( + project_name=project_name, + canonical_name=canonical_name, + formats=formats, + target_python=self._target_python, + allow_yanked=self._allow_yanked, + ignore_requires_python=self._ignore_requires_python, + ) + + def _sort_links(self, links: Iterable[Link]) -> List[Link]: + """ + Returns elements of links in order, non-egg links first, egg links + second, while eliminating duplicates + """ + eggs, no_eggs = [], [] + seen: Set[Link] = set() + for link in links: + if link not in seen: + seen.add(link) + if link.egg_fragment: + eggs.append(link) + else: + no_eggs.append(link) + return no_eggs + eggs + + def _log_skipped_link(self, link: Link, result: LinkType, detail: str) -> None: + entry = (link, result, detail) + if entry not in self._logged_links: + # Put the link at the end so the reason is more visible and because + # the link string is usually very long. + logger.debug("Skipping link: %s: %s", detail, link) + self._logged_links.add(entry) + + def get_install_candidate( + self, link_evaluator: LinkEvaluator, link: Link + ) -> Optional[InstallationCandidate]: + """ + If the link is a candidate for install, convert it to an + InstallationCandidate and return it. Otherwise, return None. + """ + result, detail = link_evaluator.evaluate_link(link) + if result != LinkType.candidate: + self._log_skipped_link(link, result, detail) + return None + + try: + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=detail, + ) + except InvalidVersion: + return None + + def evaluate_links( + self, link_evaluator: LinkEvaluator, links: Iterable[Link] + ) -> List[InstallationCandidate]: + """ + Convert links that are candidates to InstallationCandidate objects. + """ + candidates = [] + for link in self._sort_links(links): + candidate = self.get_install_candidate(link_evaluator, link) + if candidate is not None: + candidates.append(candidate) + + return candidates + + def process_project_url( + self, project_url: Link, link_evaluator: LinkEvaluator + ) -> List[InstallationCandidate]: + logger.debug( + "Fetching project page and analyzing links: %s", + project_url, + ) + index_response = self._link_collector.fetch_response(project_url) + if index_response is None: + return [] + + page_links = list(parse_links(index_response)) + + with indent_log(): + package_links = self.evaluate_links( + link_evaluator, + links=page_links, + ) + + return package_links + + @functools.lru_cache(maxsize=None) + def find_all_candidates(self, project_name: str) -> List[InstallationCandidate]: + """Find all available InstallationCandidate for project_name + + This checks index_urls and find_links. + All versions found are returned as an InstallationCandidate list. + + See LinkEvaluator.evaluate_link() for details on which files + are accepted. + """ + link_evaluator = self.make_link_evaluator(project_name) + + collected_sources = self._link_collector.collect_sources( + project_name=project_name, + candidates_from_page=functools.partial( + self.process_project_url, + link_evaluator=link_evaluator, + ), + ) + + page_candidates_it = itertools.chain.from_iterable( + source.page_candidates() + for sources in collected_sources + for source in sources + if source is not None + ) + page_candidates = list(page_candidates_it) + + file_links_it = itertools.chain.from_iterable( + source.file_links() + for sources in collected_sources + for source in sources + if source is not None + ) + file_candidates = self.evaluate_links( + link_evaluator, + sorted(file_links_it, reverse=True), + ) + + if logger.isEnabledFor(logging.DEBUG) and file_candidates: + paths = [] + for candidate in file_candidates: + assert candidate.link.url # we need to have a URL + try: + paths.append(candidate.link.file_path) + except Exception: + paths.append(candidate.link.url) # it's not a local file + + logger.debug("Local files found: %s", ", ".join(paths)) + + # This is an intentional priority ordering + return file_candidates + page_candidates + + def make_candidate_evaluator( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> CandidateEvaluator: + """Create a CandidateEvaluator object to use.""" + candidate_prefs = self._candidate_prefs + return CandidateEvaluator.create( + project_name=project_name, + target_python=self._target_python, + prefer_binary=candidate_prefs.prefer_binary, + allow_all_prereleases=candidate_prefs.allow_all_prereleases, + specifier=specifier, + hashes=hashes, + ) + + @functools.lru_cache(maxsize=None) + def find_best_candidate( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> BestCandidateResult: + """Find matches for the given project and specifier. + + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + + :return: A `BestCandidateResult` instance. + """ + candidates = self.find_all_candidates(project_name) + candidate_evaluator = self.make_candidate_evaluator( + project_name=project_name, + specifier=specifier, + hashes=hashes, + ) + return candidate_evaluator.compute_best_candidate(candidates) + + def find_requirement( + self, req: InstallRequirement, upgrade: bool + ) -> Optional[InstallationCandidate]: + """Try to find a Link matching req + + Expects req, an InstallRequirement and upgrade, a boolean + Returns a InstallationCandidate if found, + Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise + """ + hashes = req.hashes(trust_internet=False) + best_candidate_result = self.find_best_candidate( + req.name, + specifier=req.specifier, + hashes=hashes, + ) + best_candidate = best_candidate_result.best_candidate + + installed_version: Optional[_BaseVersion] = None + if req.satisfied_by is not None: + installed_version = req.satisfied_by.version + + def _format_versions(cand_iter: Iterable[InstallationCandidate]) -> str: + # This repeated parse_version and str() conversion is needed to + # handle different vendoring sources from pip and pkg_resources. + # If we stop using the pkg_resources provided specifier and start + # using our own, we can drop the cast to str(). + return ( + ", ".join( + sorted( + {str(c.version) for c in cand_iter}, + key=parse_version, + ) + ) + or "none" + ) + + if installed_version is None and best_candidate is None: + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req, + _format_versions(best_candidate_result.iter_all()), + ) + + raise DistributionNotFound(f"No matching distribution found for {req}") + + def _should_install_candidate( + candidate: Optional[InstallationCandidate], + ) -> "TypeGuard[InstallationCandidate]": + if installed_version is None: + return True + if best_candidate is None: + return False + return best_candidate.version > installed_version + + if not upgrade and installed_version is not None: + if _should_install_candidate(best_candidate): + logger.debug( + "Existing installed version (%s) satisfies requirement " + "(most up-to-date version is %s)", + installed_version, + best_candidate.version, + ) + else: + logger.debug( + "Existing installed version (%s) is most up-to-date and " + "satisfies requirement", + installed_version, + ) + return None + + if _should_install_candidate(best_candidate): + logger.debug( + "Using version %s (newest of versions: %s)", + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + # We have an existing version, and its the best version + logger.debug( + "Installed version (%s) is most up-to-date (past versions: %s)", + installed_version, + _format_versions(best_candidate_result.iter_applicable()), + ) + raise BestVersionAlreadyInstalled + + +def _find_name_version_sep(fragment: str, canonical_name: str) -> int: + """Find the separator's index based on the package's canonical name. + + :param fragment: A + filename "fragment" (stem) or + egg fragment. + :param canonical_name: The package's canonical name. + + This function is needed since the canonicalized name does not necessarily + have the same length as the egg info's name part. An example:: + + >>> fragment = 'foo__bar-1.0' + >>> canonical_name = 'foo-bar' + >>> _find_name_version_sep(fragment, canonical_name) + 8 + """ + # Project name and version must be separated by one single dash. Find all + # occurrences of dashes; if the string in front of it matches the canonical + # name, this is the one separating the name and version parts. + for i, c in enumerate(fragment): + if c != "-": + continue + if canonicalize_name(fragment[:i]) == canonical_name: + return i + raise ValueError(f"{fragment} does not match {canonical_name}") + + +def _extract_version_from_fragment(fragment: str, canonical_name: str) -> Optional[str]: + """Parse the version string from a + filename + "fragment" (stem) or egg fragment. + + :param fragment: The string to parse. E.g. foo-2.1 + :param canonical_name: The canonicalized name of the package this + belongs to. + """ + try: + version_start = _find_name_version_sep(fragment, canonical_name) + 1 + except ValueError: + return None + version = fragment[version_start:] + if not version: + return None + return version diff --git a/env/Lib/site-packages/pip/_internal/index/sources.py b/env/Lib/site-packages/pip/_internal/index/sources.py new file mode 100644 index 00000000..f4626d71 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,285 @@ +import logging +import mimetypes +import os +from collections import defaultdict +from typing import Callable, Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import ( + InvalidSdistFilename, + InvalidVersion, + InvalidWheelFilename, + canonicalize_name, + parse_sdist_filename, + parse_wheel_filename, +) + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Optional[Link]: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectoryToUrls: + """Scans directory and caches results""" + + def __init__(self, path: str) -> None: + self._path = path + self._page_candidates: List[str] = [] + self._project_name_to_urls: Dict[str, List[str]] = defaultdict(list) + self._scanned_directory = False + + def _scan_directory(self) -> None: + """Scans directory once and populates both page_candidates + and project_name_to_urls at the same time + """ + for entry in os.scandir(self._path): + url = path_to_url(entry.path) + if _is_html_file(url): + self._page_candidates.append(url) + continue + + # File must have a valid wheel or sdist name, + # otherwise not worth considering as a package + try: + project_filename = parse_wheel_filename(entry.name)[0] + except (InvalidWheelFilename, InvalidVersion): + try: + project_filename = parse_sdist_filename(entry.name)[0] + except (InvalidSdistFilename, InvalidVersion): + continue + + self._project_name_to_urls[project_filename].append(url) + self._scanned_directory = True + + @property + def page_candidates(self) -> List[str]: + if not self._scanned_directory: + self._scan_directory() + + return self._page_candidates + + @property + def project_name_to_urls(self) -> Dict[str, List[str]]: + if not self._scanned_directory: + self._scan_directory() + + return self._project_name_to_urls + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + _paths_to_urls: Dict[str, _FlatDirectoryToUrls] = {} + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + project_name: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._project_name = canonicalize_name(project_name) + + # Get existing instance of _FlatDirectoryToUrls if it exists + if path in self._paths_to_urls: + self._path_to_urls = self._paths_to_urls[path] + else: + self._path_to_urls = _FlatDirectoryToUrls(path=path) + self._paths_to_urls[path] = self._path_to_urls + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for url in self._path_to_urls.page_candidates: + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for url in self._path_to_urls.project_name_to_urls[self._project_name]: + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, + project_name: str, +) -> Tuple[Optional[str], Optional[LinkSource]]: + path: Optional[str] = None + url: Optional[str] = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + project_name=project_name, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/env/Lib/site-packages/pip/_internal/locations/__init__.py b/env/Lib/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 00000000..32382be7 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,456 @@ +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any, Dict, Generator, Optional, Tuple + +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.virtualenv import running_under_virtualenv + +from . import _sysconfig +from .base import ( + USER_CACHE_DIR, + get_major_minor_version, + get_src_prefix, + is_osx_framework, + site_packages, + user_site, +) + +__all__ = [ + "USER_CACHE_DIR", + "get_bin_prefix", + "get_bin_user", + "get_major_minor_version", + "get_platlib", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + + +_PLATLIBDIR: str = getattr(sys, "platlibdir", "lib") + +_USE_SYSCONFIG_DEFAULT = sys.version_info >= (3, 10) + + +def _should_use_sysconfig() -> bool: + """This function determines the value of _USE_SYSCONFIG. + + By default, pip uses sysconfig on Python 3.10+. + But Python distributors can override this decision by setting: + sysconfig._PIP_USE_SYSCONFIG = True / False + Rationale in https://github.com/pypa/pip/issues/10647 + + This is a function for testability, but should be constant during any one + run. + """ + return bool(getattr(sysconfig, "_PIP_USE_SYSCONFIG", _USE_SYSCONFIG_DEFAULT)) + + +_USE_SYSCONFIG = _should_use_sysconfig() + +if not _USE_SYSCONFIG: + # Import distutils lazily to avoid deprecation warnings, + # but import it soon enough that it is in memory and available during + # a pip reinstall. + from . import _distutils + +# Be noisy about incompatibilities if this platforms "should" be using +# sysconfig, but is explicitly opting out and using distutils instead. +if _USE_SYSCONFIG_DEFAULT and not _USE_SYSCONFIG: + _MISMATCH_LEVEL = logging.WARNING +else: + _MISMATCH_LEVEL = logging.DEBUG + + +def _looks_like_bpo_44860() -> bool: + """The resolution to bpo-44860 will change this incorrect platlib. + + See . + """ + from distutils.command.install import INSTALL_SCHEMES + + try: + unix_user_platlib = INSTALL_SCHEMES["unix_user"]["platlib"] + except KeyError: + return False + return unix_user_platlib == "$usersite" + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: + platlib = scheme["platlib"] + if "/$platlibdir/" in platlib: + platlib = platlib.replace("/$platlibdir/", f"/{_PLATLIBDIR}/") + if "/lib64/" not in platlib: + return False + unpatched = platlib.replace("/lib64/", "/lib/") + return unpatched.replace("$platbase/", "$base/") == scheme["purelib"] + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_lib() -> bool: + """Red Hat patches platlib in unix_prefix and unix_home, but not purelib. + + This is the only way I can see to tell a Red Hat-patched Python. + """ + from distutils.command.install import INSTALL_SCHEMES + + return all( + k in INSTALL_SCHEMES + and _looks_like_red_hat_patched_platlib_purelib(INSTALL_SCHEMES[k]) + for k in ("unix_prefix", "unix_home") + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_debian_scheme() -> bool: + """Debian adds two additional schemes.""" + from distutils.command.install import INSTALL_SCHEMES + + return "deb_system" in INSTALL_SCHEMES and "unix_local" in INSTALL_SCHEMES + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_scheme() -> bool: + """Red Hat patches ``sys.prefix`` and ``sys.exec_prefix``. + + Red Hat's ``00251-change-user-install-location.patch`` changes the install + command's ``prefix`` and ``exec_prefix`` to append ``"/local"``. This is + (fortunately?) done quite unconditionally, so we create a default command + object without any configuration to detect this. + """ + from distutils.command.install import install + from distutils.dist import Distribution + + cmd: Any = install(Distribution()) + cmd.finalize_options() + return ( + cmd.exec_prefix == f"{os.path.normpath(sys.exec_prefix)}/local" + and cmd.prefix == f"{os.path.normpath(sys.prefix)}/local" + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_slackware_scheme() -> bool: + """Slackware patches sysconfig but fails to patch distutils and site. + + Slackware changes sysconfig's user scheme to use ``"lib64"`` for the lib + path, but does not do the same to the site module. + """ + if user_site is None: # User-site not available. + return False + try: + paths = sysconfig.get_paths(scheme="posix_user", expand=False) + except KeyError: # User-site not available. + return False + return "/lib64/" in paths["purelib"] and "/lib64/" not in user_site + + +@functools.lru_cache(maxsize=None) +def _looks_like_msys2_mingw_scheme() -> bool: + """MSYS2 patches distutils and sysconfig to use a UNIX-like scheme. + + However, MSYS2 incorrectly patches sysconfig ``nt`` scheme. The fix is + likely going to be included in their 3.10 release, so we ignore the warning. + See msys2/MINGW-packages#9319. + + MSYS2 MINGW's patch uses lowercase ``"lib"`` instead of the usual uppercase, + and is missing the final ``"site-packages"``. + """ + paths = sysconfig.get_paths("nt", expand=False) + return all( + "Lib" not in p and "lib" in p and not p.endswith("site-packages") + for p in (paths[key] for key in ("platlib", "purelib")) + ) + + +def _fix_abiflags(parts: Tuple[str]) -> Generator[str, None, None]: + ldversion = sysconfig.get_config_var("LDVERSION") + abiflags = getattr(sys, "abiflags", None) + + # LDVERSION does not end with sys.abiflags. Just return the path unchanged. + if not ldversion or not abiflags or not ldversion.endswith(abiflags): + yield from parts + return + + # Strip sys.abiflags from LDVERSION-based path components. + for part in parts: + if part.endswith(ldversion): + part = part[: (0 - len(abiflags))] + yield part + + +@functools.lru_cache(maxsize=None) +def _warn_mismatched(old: pathlib.Path, new: pathlib.Path, *, key: str) -> None: + issue_url = "https://github.com/pypa/pip/issues/10151" + message = ( + "Value for %s does not match. Please report this to <%s>" + "\ndistutils: %s" + "\nsysconfig: %s" + ) + logger.log(_MISMATCH_LEVEL, message, key, issue_url, old, new) + + +def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: + if old == new: + return False + _warn_mismatched(old, new, key=key) + return True + + +@functools.lru_cache(maxsize=None) +def _log_context( + *, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + prefix: Optional[str] = None, +) -> None: + parts = [ + "Additional context:", + "user = %r", + "home = %r", + "root = %r", + "prefix = %r", + ] + + logger.log(_MISMATCH_LEVEL, "\n".join(parts), user, home, root, prefix) + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + if _USE_SYSCONFIG: + return new + + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + + warning_contexts = [] + for k in SCHEME_KEYS: + old_v = pathlib.Path(getattr(old, k)) + new_v = pathlib.Path(getattr(new, k)) + + if old_v == new_v: + continue + + # distutils incorrectly put PyPy packages under ``site-packages/python`` + # in the ``posix_home`` scheme, but PyPy devs said they expect the + # directory name to be ``pypy`` instead. So we treat this as a bug fix + # and not warn about it. See bpo-43307 and python/cpython#24628. + skip_pypy_special_case = ( + sys.implementation.name == "pypy" + and home is not None + and k in ("platlib", "purelib") + and old_v.parent == new_v.parent + and old_v.name.startswith("python") + and new_v.name.startswith("pypy") + ) + if skip_pypy_special_case: + continue + + # sysconfig's ``osx_framework_user`` does not include ``pythonX.Y`` in + # the ``include`` value, but distutils's ``headers`` does. We'll let + # CPython decide whether this is a bug or feature. See bpo-43948. + skip_osx_framework_user_special_case = ( + user + and is_osx_framework() + and k == "headers" + and old_v.parent.parent == new_v.parent + and old_v.parent.name.startswith("python") + ) + if skip_osx_framework_user_special_case: + continue + + # On Red Hat and derived Linux distributions, distutils is patched to + # use "lib64" instead of "lib" for platlib. + if k == "platlib" and _looks_like_red_hat_lib(): + continue + + # On Python 3.9+, sysconfig's posix_user scheme sets platlib against + # sys.platlibdir, but distutils's unix_user incorrectly coninutes + # using the same $usersite for both platlib and purelib. This creates a + # mismatch when sys.platlibdir is not "lib". + skip_bpo_44860 = ( + user + and k == "platlib" + and not WINDOWS + and sys.version_info >= (3, 9) + and _PLATLIBDIR != "lib" + and _looks_like_bpo_44860() + ) + if skip_bpo_44860: + continue + + # Slackware incorrectly patches posix_user to use lib64 instead of lib, + # but not usersite to match the location. + skip_slackware_user_scheme = ( + user + and k in ("platlib", "purelib") + and not WINDOWS + and _looks_like_slackware_scheme() + ) + if skip_slackware_user_scheme: + continue + + # Both Debian and Red Hat patch Python to place the system site under + # /usr/local instead of /usr. Debian also places lib in dist-packages + # instead of site-packages, but the /usr/local check should cover it. + skip_linux_system_special_case = ( + not (user or home or prefix or running_under_virtualenv()) + and old_v.parts[1:3] == ("usr", "local") + and len(new_v.parts) > 1 + and new_v.parts[1] == "usr" + and (len(new_v.parts) < 3 or new_v.parts[2] != "local") + and (_looks_like_red_hat_scheme() or _looks_like_debian_scheme()) + ) + if skip_linux_system_special_case: + continue + + # MSYS2 MINGW's sysconfig patch does not include the "site-packages" + # part of the path. This is incorrect and will be fixed in MSYS. + skip_msys2_mingw_bug = ( + WINDOWS and k in ("platlib", "purelib") and _looks_like_msys2_mingw_scheme() + ) + if skip_msys2_mingw_bug: + continue + + # CPython's POSIX install script invokes pip (via ensurepip) against the + # interpreter located in the source tree, not the install site. This + # triggers special logic in sysconfig that's not present in distutils. + # https://github.com/python/cpython/blob/8c21941ddaf/Lib/sysconfig.py#L178-L194 + skip_cpython_build = ( + sysconfig.is_python_build(check_home=True) + and not WINDOWS + and k in ("headers", "include", "platinclude") + ) + if skip_cpython_build: + continue + + warning_contexts.append((old_v, new_v, f"scheme.{k}")) + + if not warning_contexts: + return old + + # Check if this path mismatch is caused by distutils config files. Those + # files will no longer work once we switch to sysconfig, so this raises a + # deprecation message for them. + default_old = _distutils.distutils_scheme( + dist_name, + user, + home, + root, + isolated, + prefix, + ignore_config_files=True, + ) + if any(default_old[k] != getattr(old, k) for k in SCHEME_KEYS): + deprecated( + reason=( + "Configuring installation scheme with distutils config files " + "is deprecated and will no longer work in the near future. If you " + "are using a Homebrew or Linuxbrew Python, please see discussion " + "at https://github.com/Homebrew/homebrew-core/issues/76621" + ), + replacement=None, + gone_in=None, + ) + return old + + # Post warnings about this mismatch so user can report them back. + for old_v, new_v, key in warning_contexts: + _warn_mismatched(old_v, new_v, key=key) + _log_context(user=user, home=home, root=root, prefix=prefix) + + return old + + +def get_bin_prefix() -> str: + new = _sysconfig.get_bin_prefix() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_bin_prefix() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): + _log_context() + return old + + +def get_bin_user() -> str: + return _sysconfig.get_scheme("", user=True).scripts + + +def _looks_like_deb_system_dist_packages(value: str) -> bool: + """Check if the value is Debian's APT-controlled dist-packages. + + Debian's ``distutils.sysconfig.get_python_lib()`` implementation returns the + default package path controlled by APT, but does not patch ``sysconfig`` to + do the same. This is similar to the bug worked around in ``get_scheme()``, + but here the default is ``deb_system`` instead of ``unix_local``. Ultimately + we can't do anything about this Debian bug, and this detection allows us to + skip the warning when needed. + """ + if not _looks_like_debian_scheme(): + return False + if value == "/usr/lib/python3/dist-packages": + return True + return False + + +def get_purelib() -> str: + """Return the default pure-Python lib location.""" + new = _sysconfig.get_purelib() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_purelib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): + _log_context() + return old + + +def get_platlib() -> str: + """Return the default platform-shared lib location.""" + new = _sysconfig.get_platlib() + if _USE_SYSCONFIG: + return new + + from . import _distutils + + old = _distutils.get_platlib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): + _log_context() + return old diff --git a/env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c764f3e92bdd6d1f3cb672fad21413f2f9738410 GIT binary patch literal 16426 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 Skv#jBD)T7+1hb+C7W^M$3@OzB literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..141c0646277550c95ac7f453abf87a2ff73955d9 GIT binary patch literal 6838 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c21907909a4ee95430f5748fd8124505e350bac GIT binary patch literal 8014 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f0a12a18766f41cdee90cb7066ee7ced5cd8cda GIT binary patch literal 3767 zcmbUkT}&IvdDiRye;~w=~cMy*AkXIfu{+x{4$uaXA#PLN3m+xg~C4 zkdN~WTH{s*ZE+hwOU^#!h&woXhR->tTyYm0TXXIyPu#;H3&O5!i^*~qO13Y6D{XNf z?6GE#RA=?QWZ&5nz(L#~Ir?B(a^hgdBDp@X#v3I!4oV*QD9$c<0oPPp_rdspi}JT* zJL{=d$6wS?@q^fwjlH^#gROuBo_@*`sG#iWS9eL=9|NY0!1pl775v1yL;J`q*M@M* z+lT}>Do6LL6ygW3qhFpZq8a`=DsqvAujrOb5zc5BRy1AAL>sW%x8%$H}~yo)pKiX4nbV3q(oR zOTxp1e%n;l6;M{j2G(S^&i`UGG_O%Mf5C!kbRz_IZdBXz7N)_Y8V!!S5?@>mr)XZvVA z_R)NVH|!aeOo_U|YqOf+tuaW-N=E$y+NRRI_;BcK;(aUBb_jflmG*E0Sz4!Ma*^O)HJ&Utt%yJIF_F^LgQFZGR2Ziv1E-eX#j>z z@M(vkTR;^z@*Z03UFt9O|F&oI@bQhq$Jag4b!(IaVBK&kxR@lWsvFL{s81;36i)Bh z7&g!VW%u%L7N9yzt1Vl-f$qs}_s&3alx0H35G=xjiV55FohrfX+fT*X+jrtRZz7Ur5?+wveIGFjS42mNHy3- zAdE>-)_{zx15F@7um*uW2@zG#(PSrxibMlk5h!802_{TJy{JZo;)I-@pu#|?rzd9x z2>lBqqg~fzMN*591K{unVpAlsv(s!%xu5+!U+|;w~?RoYx^5Ln6-D}Zu zQ}4RB_nFJH6e@+5FMM`%tL4xg$8E=EOXo&Q=h~Ta%juGDv3c40#1mNNO1;a{X9G`~ zLaW@WW%b2|zMPyE9D#s{H$p}VdM;yMR8=zW9SHqQs# z6~w#TEE}dlnVm+pXPNIO)y!9mT7=A}m3008*J!^yr#nshSymL8vnrH!ve-OQdR*vR z(5Di!mi3yWU1&;P&*wEfs8j4|H<6hqMo}Bm{pK>17%d#qcd}BJy3L*@Sf}&$! zr|94>!ShMdbMKD9d!12pP)`W6YC#YQ7Vr#CLnuKE!=qS@yfljoA*VuA5Ftg6Kn)U$ zxQPuo5}Hm4^-uB!?WidXdo^SXJ3O4}qGUKmMp;Q?Sn-UkLs^s3Xske4;|4*J)!iDs z^;!V<>5IF&L?W=%3!heiZUJpMjy`t0wbdM2xpwQ?O5#@He%pi2d!1{z+v2=00dF=1rs}&nXz0l}e|EKQrUi8TO=J^x+qbLWx;VNiQjnQ&~ zmTObuj3&?FmwcNViTQRv3|5f7y`)3o4?ts$}GGgITXSPEL!2P`6=0SIsU#Sxc(gOfo|tYZX;8Nlw9r z5%@HEnG5KdC-7_6X0T%;*s&ftTMmA&?CD##_AwHXHw;&%prm!+sjZ%x?N#i`NZZ(z)ji#5ESpp~262_bRti*OJUgmd(pIJUFrYCR` zYGlKIb#&-Ta`4>X#i8Vd;VXudx)Aj;Lh}H4yiSZjGASyM Dict[str, str]: + """ + Return a distutils install scheme + """ + from distutils.dist import Distribution + + dist_args: Dict[str, Union[str, List[str]]] = {"name": dist_name} + if isolated: + dist_args["script_args"] = ["--no-user-cfg"] + + d = Distribution(dist_args) + if not ignore_config_files: + try: + d.parse_config_files() + except UnicodeDecodeError: + paths = d.find_config_files() + logger.warning( + "Ignore distutils configs in %s due to encoding errors.", + ", ".join(os.path.basename(p) for p in paths), + ) + obj: Optional[DistutilsCommand] = None + obj = d.get_command_obj("install", create=True) + assert obj is not None + i = cast(distutils_install_command, obj) + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update({"purelib": i.install_lib, "platlib": i.install_lib}) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase + else: + prefix = i.prefix + scheme["headers"] = os.path.join( + prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join(root, path_no_drive[1:]) + + return scheme + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix() -> str: + # XXX: In old virtualenv versions, sys.prefix can contain '..' components, + # so we need to call normpath to eliminate them. + prefix = os.path.normpath(sys.prefix) + if WINDOWS: + bin_py = os.path.join(prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(prefix, "bin") + + +def get_purelib() -> str: + return get_python_lib(plat_specific=False) + + +def get_platlib() -> str: + return get_python_lib(plat_specific=True) diff --git a/env/Lib/site-packages/pip/_internal/locations/_sysconfig.py b/env/Lib/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 00000000..ca860ea5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,214 @@ +import logging +import os +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import change_root, get_major_minor_version, is_osx_framework + +logger = logging.getLogger(__name__) + + +# Notes on _infer_* functions. +# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no +# way to ask things like "what is the '_prefix' scheme on this platform". These +# functions try to answer that with some heuristics while accounting for ad-hoc +# platforms not covered by CPython's default sysconfig implementation. If the +# ad-hoc implementation does not fully implement sysconfig, we'll fall back to +# a POSIX scheme. + +_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) + +_PREFERRED_SCHEME_API = getattr(sysconfig, "get_preferred_scheme", None) + + +def _should_use_osx_framework_prefix() -> bool: + """Check for Apple's ``osx_framework_library`` scheme. + + Python distributed by Apple's Command Line Tools has this special scheme + that's used when: + + * This is a framework build. + * We are installing into the system prefix. + + This does not account for ``pip install --prefix`` (also means we're not + installing to the system prefix), which should use ``posix_prefix``, but + logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But + since ``prefix`` is not available for ``sysconfig.get_default_scheme()``, + which is the stdlib replacement for ``_infer_prefix()``, presumably Apple + wouldn't be able to magically switch between ``osx_framework_library`` and + ``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library`` + means its behavior is consistent whether we use the stdlib implementation + or our own, and we deal with this special case in ``get_scheme()`` instead. + """ + return ( + "osx_framework_library" in _AVAILABLE_SCHEMES + and not running_under_virtualenv() + and is_osx_framework() + ) + + +def _infer_prefix() -> str: + """Try to find a prefix scheme for the current platform. + + This tries: + + * A special ``osx_framework_library`` for Python distributed by Apple's + Command Line Tools, when not running in a virtual environment. + * Implementation + OS, used by PyPy on Windows (``pypy_nt``). + * Implementation without OS, used by PyPy on POSIX (``pypy``). + * OS + "prefix", used by CPython on POSIX (``posix_prefix``). + * Just the OS name, used by CPython on Windows (``nt``). + + If none of the above works, fall back to ``posix_prefix``. + """ + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("prefix") + if _should_use_osx_framework_prefix(): + return "osx_framework_library" + implementation_suffixed = f"{sys.implementation.name}_{os.name}" + if implementation_suffixed in _AVAILABLE_SCHEMES: + return implementation_suffixed + if sys.implementation.name in _AVAILABLE_SCHEMES: + return sys.implementation.name + suffixed = f"{os.name}_prefix" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". + return os.name + return "posix_prefix" + + +def _infer_user() -> str: + """Try to find a user scheme for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("user") + if is_osx_framework() and not running_under_virtualenv(): + suffixed = "osx_framework_user" + else: + suffixed = f"{os.name}_user" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. + raise UserInstallationInvalid() + return "posix_user" + + +def _infer_home() -> str: + """Try to find a home for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("home") + suffixed = f"{os.name}_home" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + return "posix_home" + + +# Update these keys if the user sets a custom home. +_HOME_KEYS = [ + "installed_base", + "base", + "installed_platbase", + "platbase", + "prefix", + "exec_prefix", +] +if sysconfig.get_config_var("userbase") is not None: + _HOME_KEYS.append("userbase") + + +def get_scheme( + dist_name: str, + user: bool = False, + home: typing.Optional[str] = None, + root: typing.Optional[str] = None, + isolated: bool = False, + prefix: typing.Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme + :param root: root under which other directories are re-based + :param isolated: ignored, but kept for distutils compatibility (where + this controls whether the user-site pydistutils.cfg is honored) + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + if user and prefix: + raise InvalidSchemeCombination("--user", "--prefix") + if home and prefix: + raise InvalidSchemeCombination("--home", "--prefix") + + if home is not None: + scheme_name = _infer_home() + elif user: + scheme_name = _infer_user() + else: + scheme_name = _infer_prefix() + + # Special case: When installing into a custom prefix, use posix_prefix + # instead of osx_framework_library. See _should_use_osx_framework_prefix() + # docstring for details. + if prefix is not None and scheme_name == "osx_framework_library": + scheme_name = "posix_prefix" + + if home is not None: + variables = {k: home for k in _HOME_KEYS} + elif prefix is not None: + variables = {k: prefix for k in _HOME_KEYS} + else: + variables = {} + + paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) + + # Logic here is very arbitrary, we're doing it for compatibility, don't ask. + # 1. Pip historically uses a special header path in virtual environments. + # 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We + # only do the same when not running in a virtual environment because + # pip's historical header path logic (see point 1) did not do this. + if running_under_virtualenv(): + if user: + base = variables.get("userbase", sys.prefix) + else: + base = variables.get("base", sys.prefix) + python_xy = f"python{get_major_minor_version()}" + paths["include"] = os.path.join(base, "include", "site", python_xy) + elif not dist_name: + dist_name = "UNKNOWN" + + scheme = Scheme( + platlib=paths["platlib"], + purelib=paths["purelib"], + headers=os.path.join(paths["include"], dist_name), + scripts=paths["scripts"], + data=paths["data"], + ) + if root is not None: + converted_keys = {} + for key in SCHEME_KEYS: + converted_keys[key] = change_root(root, getattr(scheme, key)) + scheme = Scheme(**converted_keys) + return scheme + + +def get_bin_prefix() -> str: + # Forcing to use /usr/local/bin for standard macOS framework installs. + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return sysconfig.get_paths()["scripts"] + + +def get_purelib() -> str: + return sysconfig.get_paths()["purelib"] + + +def get_platlib() -> str: + return sysconfig.get_paths()["platlib"] diff --git a/env/Lib/site-packages/pip/_internal/locations/base.py b/env/Lib/site-packages/pip/_internal/locations/base.py new file mode 100644 index 00000000..3f9f896e --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,81 @@ +import functools +import os +import site +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InstallationError +from pip._internal.utils import appdirs +from pip._internal.utils.virtualenv import running_under_virtualenv + +# Application Directories +USER_CACHE_DIR = appdirs.user_cache_dir("pip") + +# FIXME doesn't account for venv linked to global site-packages +site_packages: str = sysconfig.get_path("purelib") + + +def get_major_minor_version() -> str: + """ + Return the major-minor version of the current Python as a string, e.g. + "3.7" or "3.10". + """ + return "{}.{}".format(*sys.version_info) + + +def change_root(new_root: str, pathname: str) -> str: + """Return 'pathname' with 'new_root' prepended. + + If 'pathname' is relative, this is equivalent to os.path.join(new_root, pathname). + Otherwise, it requires making 'pathname' relative and then joining the + two, which is tricky on DOS/Windows and Mac OS. + + This is borrowed from Python's standard library's distutils module. + """ + if os.name == "posix": + if not os.path.isabs(pathname): + return os.path.join(new_root, pathname) + else: + return os.path.join(new_root, pathname[1:]) + + elif os.name == "nt": + (drive, path) = os.path.splitdrive(pathname) + if path[0] == "\\": + path = path[1:] + return os.path.join(new_root, path) + + else: + raise InstallationError( + f"Unknown platform: {os.name}\n" + "Can not change root path prefix on unknown platform." + ) + + +def get_src_prefix() -> str: + if running_under_virtualenv(): + src_prefix = os.path.join(sys.prefix, "src") + else: + # FIXME: keep src in cwd for now (it is not a temporary folder) + try: + src_prefix = os.path.join(os.getcwd(), "src") + except OSError: + # In case the current working directory has been renamed or deleted + sys.exit("The folder you are executing pip from can no longer be found.") + + # under macOS + virtualenv sys.prefix is not properly resolved + # it is something like /path/to/python/bin/.. + return os.path.abspath(src_prefix) + + +try: + # Use getusersitepackages if this is present, as it ensures that the + # value is initialised properly. + user_site: typing.Optional[str] = site.getusersitepackages() +except AttributeError: + user_site = site.USER_SITE + + +@functools.lru_cache(maxsize=None) +def is_osx_framework() -> bool: + return bool(sysconfig.get_config_var("PYTHONFRAMEWORK")) diff --git a/env/Lib/site-packages/pip/_internal/main.py b/env/Lib/site-packages/pip/_internal/main.py new file mode 100644 index 00000000..33c6d24c --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/main.py @@ -0,0 +1,12 @@ +from typing import List, Optional + + +def main(args: Optional[List[str]] = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/env/Lib/site-packages/pip/_internal/metadata/__init__.py b/env/Lib/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 00000000..aa232b6c --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,128 @@ +import contextlib +import functools +import os +import sys +from typing import TYPE_CHECKING, List, Optional, Type, cast + +from pip._internal.utils.misc import strtobool + +from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel + +if TYPE_CHECKING: + from typing import Literal, Protocol +else: + Protocol = object + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "FilesystemWheel", + "MemoryWheel", + "Wheel", + "get_default_environment", + "get_environment", + "get_wheel_distribution", + "select_backend", +] + + +def _should_use_importlib_metadata() -> bool: + """Whether to use the ``importlib.metadata`` or ``pkg_resources`` backend. + + By default, pip uses ``importlib.metadata`` on Python 3.11+, and + ``pkg_resourcess`` otherwise. This can be overridden by a couple of ways: + + * If environment variable ``_PIP_USE_IMPORTLIB_METADATA`` is set, it + dictates whether ``importlib.metadata`` is used, regardless of Python + version. + * On Python 3.11+, Python distributors can patch ``importlib.metadata`` + to add a global constant ``_PIP_USE_IMPORTLIB_METADATA = False``. This + makes pip use ``pkg_resources`` (unless the user set the aforementioned + environment variable to *True*). + """ + with contextlib.suppress(KeyError, ValueError): + return bool(strtobool(os.environ["_PIP_USE_IMPORTLIB_METADATA"])) + if sys.version_info < (3, 11): + return False + import importlib.metadata + + return bool(getattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA", True)) + + +class Backend(Protocol): + NAME: 'Literal["importlib", "pkg_resources"]' + Distribution: Type[BaseDistribution] + Environment: Type[BaseEnvironment] + + +@functools.lru_cache(maxsize=None) +def select_backend() -> Backend: + if _should_use_importlib_metadata(): + from . import importlib + + return cast(Backend, importlib) + from . import pkg_resources + + return cast(Backend, pkg_resources) + + +def get_default_environment() -> BaseEnvironment: + """Get the default representation for the current environment. + + This returns an Environment instance from the chosen backend. The default + Environment instance should be built from ``sys.path`` and may use caching + to share instance state accorss calls. + """ + return select_backend().Environment.default() + + +def get_environment(paths: Optional[List[str]]) -> BaseEnvironment: + """Get a representation of the environment specified by ``paths``. + + This returns an Environment instance from the chosen backend based on the + given import paths. The backend must build a fresh instance representing + the state of installed distributions when this function is called. + """ + return select_backend().Environment.from_paths(paths) + + +def get_directory_distribution(directory: str) -> BaseDistribution: + """Get the distribution metadata representation in the specified directory. + + This returns a Distribution instance from the chosen backend based on + the given on-disk ``.dist-info`` directory. + """ + return select_backend().Distribution.from_directory(directory) + + +def get_wheel_distribution(wheel: Wheel, canonical_name: str) -> BaseDistribution: + """Get the representation of the specified wheel's distribution metadata. + + This returns a Distribution instance from the chosen backend based on + the given wheel's ``.dist-info`` directory. + + :param canonical_name: Normalized project name of the given wheel. + """ + return select_backend().Distribution.from_wheel(wheel, canonical_name) + + +def get_metadata_distribution( + metadata_contents: bytes, + filename: str, + canonical_name: str, +) -> BaseDistribution: + """Get the dist representation of the specified METADATA file contents. + + This returns a Distribution instance from the chosen backend sourced from the data + in `metadata_contents`. + + :param metadata_contents: Contents of a METADATA file within a dist, or one served + via PEP 658. + :param filename: Filename for the dist this metadata represents. + :param canonical_name: Normalized project name of the given dist. + """ + return select_backend().Distribution.from_metadata_file_contents( + metadata_contents, + filename, + canonical_name, + ) diff --git a/env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..75749a753d0e7d6e89cd21005d637ee768448fec GIT binary patch literal 5862 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..06f4cf3480e5a2211d95f2612ac4eab02c8d5401 GIT binary patch literal 2912 zcmZt|TTC3+_0Dq_W*@x4!gkliuCu`M2u&5$lzIc$X?euS;#yf@p<(9&gXgiiGYeii zTk#Q9q(%xziHzH{-n5nK)Ro#wm6~7ow?7c<7LQ!TQos7QF_zl!)pKWe*o~Dd&D`_4 z=bkyw`Fl8Ak6@ku@YdoCK>wzQzr+e~NC3Ev6r?a3(wQ`)vuRf6(i}r+tj6m?TJT^_ z6ZJqkpa;`Iy)Ip+*Qe`sDJ?N*5h?tynRG}Ia99y>c!5^}@AB!062t=FK^(?`1@;8o z1DrbGMDz7==|9wfIOmG5V_Ct(4J$ZfDtKO%V%WEj-QCLYYkJ_mKE8S6F+;jGjwukRAqK|shODcZ z8K4KRXtKRv5*?7Wrc^GQHHnRtL=D*uq;k40lRVWUjbST8)T~{;V6CGDPmG#|jSV|7 zlh1mW1}AWS)g+1qC)es;H+7uI!sk#dG-j?Enkg%Zt8YzG#bPpNFPX&SmB9qoWmTiR z`YBm8YXYGnZTr)!G`7CTR*DFmZdJJn9$D(zlGn)sRUbzG4LFvM2{&~@^CA4 z)mq~*ZTzNLYK=Tc(C>|3+5;Q#8dD z3AS^@$S^buDvO7mgXi!yc-=-0TCU|*gzi`NWh(i?QW%B3&z6ZP$gSxkCgC!3;5I=s zS0Tp&1ZOolgX0Wo2QiE4j~%@^{@vM0EE7XD7H3mK1G85M9yN2s!ikq>v9U5csm{+@ zs!covSk{5*}PjvfjLMmOuhkkoTHa@!fPEJNDc2_ zc<;ik@BLGX?Mbm>b1}0ob?@@shrmWIr(26(aY_KFo>NL-EYvAuQ#o(hl}|;;rmpi= zxy}@}hQce{yL^FBQGvDnsz+n!`mYe01q}tRz&o6SRv5x;N_L&E$>Hu-++PqJo}7bl zNItK+SEa_#`(lP&L>cxv^qPXmB8PEAU&l7P8RAhPP!Nsl9tSOlt6F@hs?9%F2snbm z-*^cjl2imIu!2a!2`oqb6V+W2{4+I{G*L?&ak;T7=R1P7BKtRLXG6+5V-j`QS9TeJB+W*-%~YmRV!1d3)w;6l(UG?QN|Uxx6x*D72Sk= zm5KAyYoVNR!+Qg}DZJLv6RCAe{;2Jt6gy~b-?;Ro zYv50f|L7Xpj&2ECHxHUScYg9&bE3qGt-Vh>PTdXN2^FtB>_{ARb?*dALDblOJG>p< z$rYD&Pxn7+7$`NPv)_K+f?C=?_;K+&`|aKP%{{xJo+r_!t-)I>8{z*wm(a<+XNU!L zT|GY!mIQ!~ELwKIZ%z)f4+f>=_k{-|47}aojmj)MVtQQ(28cgJ;}W4iEM*sW1LQ`h z#%Gda$(iKbr5}t>j-|YA>IN3EJtu3L%K_jDR#sE#X2UQhv`4uT70AkYI#uI!_<*-aF3;ir@j4uocLtoQ{iFn$RWq}MjrQ$6yMp77MVv4-`wpTDRC&=^aTRO7eUl| zwmAB`%O799H~yRH{g$DP@dJp)@@LUlNrX7t|A_3!QlB`L|HC`GcVy z?r!u>biX6MAL(Ad{5TLfh@A(i!d~#yQ>k%%>dR;6z??6iHK9|lF;)ot@t`p}+9&?4 zt$lPzoQ^lRA@ApLjBM9 u&SrK!S{i1Uo~={~!M2k+q+2Q2!!&JODSvbW7=V{g09&fW#S0`@NS6|%R(=fK+%aYl=LMbTnkakRu& z5-s(WM$3Fs!ly7ev-Y1)sqDg^~5qCSMctJ0i`|7GFzrgKq=-?Tl=U zZt`u4w)$G5ZN4@ZRupNEZuV_v{^H1%Xos(Z`AZ_+Xs53;y4AOp{Vt7ci+1_C;4cfg zBHhvLzU@3GR*O5tg0m5A2#xo!r4B!QyDXe&KRarKYd&$$TfE};^;oz^xsdxsE>tdh z-miaw*GK1k#-zOh*DrEBC5Vb95F}3aw1(c5QvJQ(_^C) zcYKtx2O??52`Qe42jh{nU5TF)C_ns0dMcF`HiXur;3{h3-@?anqkA;IQ$R9%xN-g}HD9K6%_i)lSm;!x6<6!9nG?C0MRywQL~Eg{Q`wzt%@KD!=jHH8-Fp*B-!;kdo6AYIlMki~H0xrB4IF}P zvKSebDVK2n#KE4Yj*0;(7LJWPb*g*oQzsxz4CM<()%lxOa3sZ6nx7R%Z6YOMzX~=3+RPxW6u2zfjgZ?`Xb@pWLVI zowNy=q*ij;;V4~^w!oXV1FXlyq$jI-7P^x%c**I6^V6(!M2e4%=2Xf;don5=Xmg|; zeztu4{&bPwAB~5`A|m`He*ZILfe4KgemO>^_^2o)#?w|gAxRxn$To7i;apQXz&b3o zP$)SREk6P0MQ+Jnx@_U?Ez`j}9A0;=TtOKNST4|f)A9pF-KJvLaIrelb^wwz?oHdm zvEjJ10ks8H3<)pC(cZ`)a~7T}+yp0eOkjT`93Qfr!-Pp2CV0s)!H2A-umb$HB}+MO zl8@Qpw}-6t@FQnI$POQsN`2qRi6Bf+R+Oz0QjQ%19t74WJNW*ex!NZxJq>L1h%f z3R7!&kb=~8DM;~nVv8VpN4$C|8SB=lOl@$_Xg~@?1vaBS!U^gjLK3nNA68qKI}Xb9 zvnHz9sUP`r0~>c__Az4!%&qn+?qMStRAxoQ#>ya08RJ87Nf;94gb<8JF(u)l za3q`<7cPX+c6mHX*k9g)#)oAg6vxoV;t2tJjxabF7?NoYTiXT)g}B5j92}%Rdoe}v z$a#@swg^LG2_YeckrmT)AugR$%BHN!;PfaB+2$2~j!oF$AZs5=#bD9kv9=5jdc9N} z_S-m3Ip!PNZy+KBqVchqGQ@1GSwjFkv|FK-G+={+4+-I6{fB_Qh|$pmK!nvG1V%^2 zSP1AENvIYEuVNsijAEBpcnli{t1@vxgRscB5-ZVSy>Ib)|L&jhwDHnD{2q|j!@Xve zcH@;Uq`qQXP1|U6+AI=7U=JZmrp$t%;Mp~Pb%wALs9@q}%Y|*CQXi5Ypgd7Hm$=*Q zT(Nul;LQ5Vhi7dccv^0{DyI`OeU~rJZvUWW(^83h`q7t;ztsOxWzCFrreb=}RR5B@ zYC14IH0_+S-!3*~UhuTsE8$99FJE|N;-!gsSNqIqII{;oaJ4TKZ=SbpR&YCN)gKKx z+@%e|*s!1EM5|~E@p}=rv!ixzhkS>S@q;sM) z&}NsmBb&5?9JbZ4@pSq9ff(SBkuI{|FYTdt+JF@N-A_Jpp2oji0q5trrE<@L&9hWo z_QGRJC9W4ASCUhrApZ5osrv4ov6(xjP!}O^BEzUnQcAa5^ZUGE<(?tT>k`t}H9gZHjYc z#g&`l+$^pfHC32GEA-GxQ)s0g>M@0S^w26(XcY^sM!Db^G+N46!$NBjT4M^WW1&Rv z)tW-<_0T#~Xafr^5gXOS3cPbe$f$#uO^(p=(W{>-ErerqCum zR4|1$ht`WNn89+uOB3dE1NZ_ z)$pwdKaeMU8^RyX6W)dJUW9KH`_vM;5%LH^+Vt7mj*$M0kR1p)7~1*Zvjse{3-i7k z`3{ZmYU@e6iMZ|u7b=CZUxFh`J9R=PmnNiLgHZ4)+)5jt{OZwoAjEd9kf~s0UknHu zlaWKi5aFc~B6<^4Y6Kg2zKkk~guRn0Vk8Ru+CD5Wt^(|$H5iel$I(E^*kkTulnk!_axUTf+Aqe!Y zKMypVf%m}OtumrSkZ83Mxfc*L4qTuns01Pn?rEZ>@CPai(-RlM8apYRICw(Xxns95 zG%k#Y5LsY@15FYTn&dN}p5qsqFj=6~;zQIA%q$3Eh!FIF9uk!@LE?f;0tv<-iIGon z5MiPCg;)e2L1hxrHx`aCKeap%Ob{)_iXRsfrq-&UkTbG6P07YNZ;z?7^r%H>Gtna) zBD$O=MWCiq{j6d}=P^oCtIYr+wG8td_6P%1gi2bgF({2FRT?Hq9K|RQ6d1)QuxOKx zVe+LD#$i^QR^movcEvkOi^!3uip0gEmfIE@S>890k~_VaDX3J^npl=UFSf*3O*R8t_v`YQ$C=4}J_c_C>L zTJQ615HC8Uzy*dqLA1k%IV3@4+Cefvf|DG{5yUdI2>t$KT~2?ssFzWxOd_XC+)_pL zm5$3D)9YsW*_Oqou2fUk{QBL&^XioUE&Wu z%TWA^72UNANMA&LFlfX$NM9l+TNqa8_hXYrk81Puh{e2uZ1P$-D|KkzwSC^PJ+~7N zw%F&$du0&{`$?PZ{aq%%RD9Um`3P;8P`n0Yf z+f9g3CS3t*9F7GQ#H>{y>&pPU4lOlPZ9*JqToPo+IZ>)g5d@^6F!(uXoR*Xjkb-A` zh-5FgY?5pb4(jDa#Xt=50d*tL>Z67NBL%Qx!I5`F!TCc_rbr8D(e=k!Kg?2e1^p}C zWZMZ7-V6?^9JrSlaI<*AD;yctTfw#th6f<{7>Y;2L4m{{5F`O724dK8;{w}KBvk;R z3!tcY3`pXFD8}^S!VrMPFc&niXn#)k3>1}D?kf2KLwOdCw%Wcy;Q0k|azwBCa`4dkVb6Z~09o%Lv(npBmrYf(t4>FKl}yx&rn;VEvMPiWjT;i4i_BGs#NY77y^4s7ieZzz9l7aFh=)X$9$W8k%0cVI*iY=60a1FkPgO zw|?kE(&d`c#II$L1Pnvkib!bE^*6luDbq;|FVCo=w@-%lB;gfwK?V5e8bgotEOqT=gs}E?_a3tns;|C zS8#66y<%?7?ssf|RQh|R3yp`Sj@@)MLMmR{cxCePb(2JuyV6;dqOn3^NAzXvfGR8s#Ax!!%AW^MQs!-S1g@jf>FNsdW!Ldj{0=hHH zevz95uAw#qr1PSybcNn?rW7QCAlaM)eYuJL3xSv{JBPF?dl|0N`GZgEKh;0zhwGBz%rw=UJ_Llbz3M#NA}avnpjb zY1Bjfyq@{r$G)o&B%gKnO_!45z<}hnc_7&o|HmdEZd?V3tw=}zcZcDuwlm8-_ESp9 zo_tjL1pk)0_ns}((iv}U2Pd*N09zHJ8G$c|+s5KI<5NNg`l?jczJ}7UVjx0@$b{#h zeKUbTZ&ndH(qp)z39zKdDwOQBSAs+eo&gSmY=iB&iFiC>5R{DRqumx%=Lm2ZLu3$d zDEb?H8i3-kDwz^c7hpkc1Yv@Rq7!i)L=!|ds>^`vF&G}l@)(0sp5bSwtcD;+viec?JZX|sbgl2Ex6hjU0o?x*TM>XgAP-DDC?78DnGp!vS_dbc(EqG z^MJq-0M87z^@Utly*ReClmZ>Ge)5qGv?MS^ao@=vL@HBGFM8HkEoCqIGCj}&Qp73 z-{pN%j+?F;%+ZpoX3-_2T*7Sif~$4j(V9!==#%p`6!9;e9EKEhf;=BNZbAw=F^-DW z$AlEDft#NaDVV4YMW>pJ6+YYCE93^z;h8vrg#*3-7Xl1qG{_*TokbBXN64Z>1(^;g z519c?WV|C9h`~H6l(B6M#39>aLQ{qVMaY9xE?Se@sh9--8~}b(SqCpebqXRgOIrgG z8M0dio3M4Dl48o>C;}u}APkpnVVr74sWezRz5?COY*Ppsw;w{$Vml))RT(eLfP`ME zPZnw0Ho(}7PpGrRwa{}Y>11>vHRhUKL2WXiz=YolfZxzbiA)4DR*6Af`)Qp02D+vt zgJn1zPj;`eZdS_l_f*k-I9N&5TsFR2ay2fxHl$n|X3yPlb>$$yZ7J8b1y}dHqx;{} z8Vh`eHP)12sM3^;S`Cy6y?~OmNdrT+sj0FT+9XNjqriSxAxbwk@=B1F>Tck5sf1!Vp*}V0H8lD|6FOn3fAPYZw+v#!~6fjIC5smr~^{blN+Dafqg%UV#Mj+z5o}s(cmV zD@L1AK4yPKdNi#}X24}^1^4-mH1Ai1+UY_F&VW*!8Y+NwWL#AGnb(GWlswyS$XaYkT720E?U39UEmR`%PAAOH1cejmcw`_ z+?s#bigLD2S`rmn$k{5*XS_oeqvhxsnH6U}6PCBsmQkBR{G{bM%Q&yRFX$}*e@EaKSC~SZc;s&{`B<%!e7V;;^(2FcA(&dN1V}Ud~ z1S>wpoLZ`9Um|SO9Y1Lf=GO11oroZ7Zf9G zX%eBTFg0DMD(Ta_m?1=EQr0|rIiuG&*}=(QMNz~FSe>;?5Rt|%$8K!cw@|%*>e1zb zQfKY0%EraYjj76wvlkXBJLgL}KfYJUx!1!m*janCvS!(e_dnh%;!4-uDseBC2&od` zR!Pfpq0L=%hbwm0QdH$D11}9MxjSyTTbJCPMR#+`-Mr*3zvr}D*&|hu>rUgSCA{*7xc+_SvoP+wJfN&5Me72e#-G#lT97E~GCY zQWBh9g_G##p00(FF$DT&i&1vgqwyP))(NZ3zg#_G4O)1hN*gzB!P3*0wy{JLx{84< zGiAA2wB_1n9Y{Nm44gXMd-UkRlWDH4K%)6b7al*QKt<8#$W)#AC0cUnA{k^%0@6_& zm9W!783m)inPSQ`ia=t(n6^=(bV)D*@thc}-gQrd(?1v?590_vv39R2|#$YcjhVqPp z9(R~Vp&a=yaUZ!VnIPlwPh^p|AieqQ1@NX0B8XBS1Gh7x2!=(rA;^-XFyeDs>(I0v zc@$|{)KO|{C352o1&nC>7d>4m52P)hz-$~sj+Ll|OBvET^h0gC`DOG2`mPDsBA79G zrch2H-G$(oB*C0TI3JdnwGPgbgr#_lPNJAFe{bYMU|beXOJhuTbwS(&E|&;#wuPv9 zk=4N2hd>;hL(?SETIUR*on*w3WOWY6v+xr%cm!c=^9N2VZb}t5%@?;b3b)&7}f#gme)_tTdWmDKJn4jcoq$JgW;vP?Y)@bb?WWHtyQ{6nD)sK=MB} z1i)s5HJIT!aSGBp1muiKaX99O$PznTLd-*Vnqqx4K3ymS3!&JhkIviSdG7%xL8@GI zZA`f~F1m=r{T=V0)Gc&jr5v4i9Q`*sTGFqhH`;L3(CB=JoV?=%fg3xU1`BpY7nWDx zmYHO5g%OL+dmqU=Vrv$@-RC4 z*_kmk`Y#SaAiz+EBB9zO2eHW|kc1XwtNjCXEUBiE9x9K^!z; zi42UCU&Gjd)g~E&cE6H~alLXLle|?@6Q>~^$5bh6%)HAy7_9uylb~X?ZsY|J({T4N z3p8f+m_g|F!1#nXJAf+_8i7EC$*rrR=O#h!Tl(T*bn zhmM;doQVuoeY0Y1z!XDt#tQfcMrI?779ljM4UB>TfPBVcf%5^V++ovWDp3J)g@4tW z$>@3p<#`Lzi&13nw4O3xoB*7dKjNhs*Q&S0fOk+r{~6<)uJ#8)Azj=J!3#U-EhBm} zMLV=!WT5(Y5S53{)Y5(hBQ9@18jwmAVB-`Y~%IY>BNHl{v#9pb^c5FStL^9VBAS3=4X_ggk;vS5n8fLb?w(sh`1y|d= zqivNr-Hn=8qJQ(P=uE~f+0PhXTE|Vt)J5I#ImJG=htva^%Uf&k7MdM>*?5!g?7Vw2i(4y3vjomV++`=ZN~1&a9jt)@T~rMmQjuZUscjyoAcQqS4c5un zJT#VxW;xQykX^r552J7b$ky0RKNknA|2ut>rNNg&xQ3fHR3O3MVP4igNLAex;t zmPq0v{Q^0^NDi5?;|wirS?sC+HcdiWVw2PxZ4^Fjf5VJtyZD?r>IT(^B=psYh>>RFEiiX4h>0o5x;1c75B8 zk{zs+zbIM%kIRKfcAx1Tu6ZB@bM_vvzUSD|+hcuiJ5T-|JKS^uJ5elu26phb`b9bw zF2;hyMX@6;pjOOel8Ia)^SoT+Jac005IxEuV8ewn>J>F8S_hyeeX9Gx0|0u7xTWe> z!r%r-F-l#fPozJ=Y?w(CSRFIg$<(8jNac_z%{!P`6Ptuz`a@Wi;h|5jG#lYE@NdJ( zzy%?r-v(WFUq39~K?9;~M}^pq{4nXtM!e}N)=k2*=58c6=74bCbng-%lTtzvS{iCB z|Mj5-*PeODo?LwV0DJ<-FXA^3($RKYT_MHKhv|$4OrBO#;QX{8>V#6C+`;O9Adu3* z@iYKcCFemfL!PLug5j|kyIzT;AmT;f6gr{-EhqR#)vlP>2hvW;h8hV5F3JhV-8)np zV_FCra#YWz42fhGa0ZqDxGjV(W`JP~=+lHq7Tku_!C($Nn~Y!bOAkCOi#Ggz1urBw zg9Y$(?}fH-*O*c;^tkaQaeu01z)wk`skITmyga? z&OY&a^@68$(cOlKpD^{$^P4+(Y@sCZkfz|^6tjGuu8@Kmj3oUMYreu0+DNBq?m)Wf zlN*`Gkm{2&(Gf8DQB;i$*FuWO%9<jC+Rp3(C)`%Ct- zx@KPqBUfg%OxcHVm(q)l35(J0Pg-tJbn3PPSd4Z^U@Sz?o-!6>!9cQ77oi$gBxTG2 zEoinnH^QT@PN-&yoQHB1H$JJWtQf0|qgAGe&h{WZ*4sQ@X@1lUpwb5j`;==-F%8eN zwthfBNrn*0+H&`%8XuZ|=J%g@wH%(G$iyi;Us%q64gZI57o6jq$OsKNqm#tluui@R z&$oEJo4Y<864E9!A2_{a$rq|oB0xqu;iT>CrXetbG^)}~3UZK$ z6@sFOYE^Jaxr^qfImCZUL)?YRK4xRQ%vs$%k+QzAhn(-I8^@!`Pa zW-K`0v}>Vq_f-Gw01^4!;+V`=YN zlsUL-#~TykEc*CfL$1LG1VQzrzOO^3uN@@?e%*b!8I6CTywAzKSJKi~%f0V(_ElNm z_weM_7WZwmzQ2Koo3TK2a`O-}f08u#A}_mvZSqQl4PpW0=^c#a5ikfKvp|z7_M1#W zqp=?$QQ2pS5BaGQtyBw6ErYfPwZ{rK>_Ga%~Woy zh(RJ8*v6qACeJpRPaCL~bX}zG)fq0+@i<1;no9!Uhv@_=%Rn?N^jLH`9lOv2WWCXF z6NlKN5W2W%0gOExYjgq`wa%+U&5UGMI(Mo!g1V&(CSoEQ4%*tNmWXit%(JDKZN#xD zdOz+N>a9g2QgL(Suetl4irOPx;=tZMKxRG_EWkiRXVLM=r;VOq$c#Xbe5 z1O2v7T3?PObovIuHp_(dZKoz$Q#ZFSXPaN?EP`%m#c1@Rz&~K{Pmn4|2mqWku@Bwe zh&74TN&>K)I|)rN&(uO-5s~i5z>$uyd`4R;>>z7Ke)VQYGvAIg4@KGnmce7&o|%azj&X2I%)ah)A#uvkUs|z zEYVgZ5j)c6$R;hWP}FzGk>RABL^iQ2W!Uw68aeR_CD2QeuF}sJ;25-oDx0iVcq6T8 zegLA5nKrM$BIZl{PlTSXqXvbJsCcnZnqdPR*bpL7>WQgj$TFsIc^;va%ix5s{_m1b?0b zT3iDpoCm!ctQJTUtBR7k2_-S4V@+;)R7@!ATHUY-e)FIi29pDz&HoqLB6-Lm7)o2A zxkcz^@|T>8;VvLm)}vgzNoleSJF671(hfIiqM=-=VcvArpvmN;D3t-zN453SiK&vM zs=CFh?WwBmA6D(0I(W;oVOD(e-0SBSJY7=3S*wE$jKf|%W4w{K35Wu zhHA=sBo7p7d1KgJLKb#!5cZ&03(6=AVfSGnR)jR<&nK1U4@VA52qjHeB@a^QY9^yW zD7j$5`fcu4G!RPUPp1Od3jnY}24IfBOPDZ%F|%~u!004xXLRBUU}r+%aXOcZOGOk* zclFdguqsZw;IxN+`LVHC=mupVDFaLvx?}5Z9fRj?9$w+7a!!9`yr(cF-bds9wPs+|s zB4S95K?fVn9vw@td+%_64!a(jCL(ui*wzlyG4;YQWy2>rAJY-WsR4ZyFxJDcFF`FV zDXW~OUbzZFCEd|my?OdYAj%F2)&#qG*eDQNv1u38)#u85Zri0DS_APBh(HNRhv8^I z&Bxn}jrKm@nsm2;62h&_jF#EAPiVT&HzkXVpA6F_t-?bB-H4ls?%2l5_F)z08CZ@* zWudx;EEJ~0Ccr+A3Ee8G1wwly=2rI5dR!Q@BF4K3j92wq<1aTZH2~AS_SDsp=BsxtxOaV2-LP1_DOJ5`!M*8rgMmW(s{3krrYjxD z&;b$(B$Rmfx8Z=1=JO#@LryQ(ug*qepTu5AdU1%r+5N{aJ8dhKsvowO8&GN<0jUXj zQ>koE4O#Z0rBv#;b==x!OYZCq0cJGvTO)JW)#@aQB94>@W`I8}AdQyvN`Ho8l4Y4{ zp#jixe~xhJ4mtk^js{I6VM$v7CTw%fgeK{C5t-+@gZ#Er_*{r~FybRRH@`0BS~u&u z;o7=X)38{xD^;`W!I%CAJ*-d zwl8&bO*`i6+CFf%-?nn~JCVcP#h6K)USM+1N3$-FP8UOvAat6s6A_uZZPAVaXPIV~949<}+O3o}f&yX`l&Nw;Gl2b_z9Xyh%$oVok zq*#%Do*XiPVJD8HZZg`cQ|;d1&D@kxt;ln(7nTRr(QpHhl5v* zh7W=gN?3}*FV0!7PTt|*RioisUaRKbF=wNkJM^48)SOOx+ic4n4lgwdJ{+{CLS6Rl z*Zc2qc&SnF(SWe}w$C9~sU8KNS{J@kF88$A=$)%jJICAGX0}s>TEF4bo4I`k zo#XY+!KX$Q+P6(7?r?ai1;PijOlphOevF?v4LcOP)kyLJs+8C#a6Ki(K4HW@fmjR1 zUNIe3@dg-CK{8I`uob>F4eas>_Y?zw?f^Fst;7+(so zzghZv>7uYBCG1c`xdPXseQnCVcG*&dq1y0T$JLI-`p#56#tQ+|%yleE1qO$`eI_yc z$Xw;@;j7Qx;qX)K34F^Q))9++$876d_v-*-c-3h5u#TvoHv9gW<~tl-Y7~4p-%C+$ zyJxoX4u_W-1>fx!>TJ>V?rW}P>g>CIH} z_`NLD*a!Hz!`GiqZF%G_AZUPJ?sC{`wMyY#_SD;3wb_7od3T|`dv5Hzlh-B}JNr|e z{WLG#f9APIFSd#3*a-+qdCJuHUBZ&acMn3mkG^~0$@(;ajXn(^7K)BKq^5sd`%NDZ zu$!(ucjB`F^bvr9P$8v2tOJ*V7a^or4Y7or2q~cuv6Q8;go+SS7Ah89q2f?UsASk4 zDiz(KGO=8#E9Am2H~!1AuvTK?H8O#nbNc7PYy1|bTa=K7Ib6QON*lCb^jIW9Y#u?{fSmoem4dQMf zc+~D3SBS*u7<~XH5YxX#rgKkV!kCgG9zTbBGWFmLYcuL}#@M;ZKFbU>iV>lC1hZ2- zLE~tg$oZ52rJiTV)?q!!SV1JJTQeCZoBH@bI7&B`jSVrnQ4y#r*HcARKOQCND> z050y+FD^2VG15Z@0HJj_=lo7PO%M&KDo3qU__~bT%3Y1-Daw=R3p7h4I9)|!b05)~ z;yxc!WnykZnUbk|a;cRhPR4o8eA1z}Et<}QSTcFb>PE>S(ii2CcOg_m_~?`NXeGm* zDWKb241+DRG5L}`*_RE5BrsS36qyc@F6YO+IHcSJqyXc3lWkvW{bFy2Z)?Y%rzbRz z`u6%eo^IE|+FD>sVIPhJM&#s%BO{Pu5W?0Bhs_g=+ZTjZ+`xd(rI8H^m$pb^+72c$ zc!sel>7pZ#4jhNZwHIgUe*v9UOo)l+0du$+ue6QIOILt%(7&VLXYeLl5e-d^qVcb0 z@QzMrpa5CX9hw0wf4U*Sm`n_oB2UFR8PArKXUm5k?^HjoM`&t!v-b7cCHG$aZiHLa zwO68-qxTAJO=a^XYi}2Eo{hKM)mO?cmo0f7TA~6rr97M9xpM6CF(fOm04Y~qhwH|_ z{@CqiuBuZLx9;hEh(CQOUBnE>{P9=>pWc(tg-2mN8w*CpLZW_WubeK^j*rVqLghn@ zlqYBgB^~vD13mhx<&#wQlQ83voFV>2Zlb_2F+!+S#^-@@LTyNE%?Y(5)RrAOWl>F+ zOy%MrSV5o@lXp_tUm&u?43m}T3gDWt%K&rYZwPcmh;ANL@m$WlGi1k9|3Lh?8{zfEYW^PVkT>R=X4cVa6`4HiAIdusa~j1> zmxvGP?I1m@+HOVy;$W}wsZg_3fm&zIf?@q~uh%t<4p3W(+tWo^9HcN$)fr?+2NsT?D9yXK2=Fg)^JA9(c5k?`epC z$T06L!m=M2>$&xfqY4{`VXOyo_zfh#rkU%7%w&~fu6H1tDrQ)8g*B4LPVX|I*BVs9 z(Cd8p=Bp=X_}Oi5?s{X_tLv|x{K;JsDm`D`z`t79kg0q6)E$KqaHWo3;}vmN6?USZ zejmS?)yFQ@$7kM5zL8{olxk4z&ukK<;tseRk`#=aH$Mq~$DdJn^6G8cu!b*07klI1*E%U0+MuqJx}lFU}K>}0pbxd=w7 zDnYnpGV1)7F2ot??m85!SaZ(1_FwIq4$PJ>uHTkgzwI5*2kZB}%3tkLOlM!HT+3f6 zT#IWeq*64etxz$ivRi|GZ;AV=V??oVEeQOaBC?tukARkFT(V;z4{u=0}v~ zpUGho`Xch}CWoh?u#&@M=0x!_zMKu8)JREY$st-zqWiJ4#nV(VtNjplHH}{{ayM-c ze`I&xp%3_y;0uCiCb83eklWhkPF-`R)^#nDEN^}nM9W!eAsL%J#ROz?pNHr<)p5iS z4bFak-urNBL$4|sthCq6Ip(+Zrds>%LXupw?ByDTrFHE~O&gciwJg=IyIs28e&8cd z?Xn$jh&5fcGuD@4%Z2pIfwap`@)hB#%H?A6(cNLolm{}`qKf&7rj)b!o(sPfX&3c4 zh=2Vdn5Rems*d(qZu3_@AziZPGq=ab{j88t719?!rO%-ZMR`I~nuB+#npM7JX9$aO zj1-G-MYH-zsH7WrR^#(lM#!&X-i$jHi0#SqEm7$(Do+=xg`^98%2%Z%y6Y_)B3L)b z`8GiWZK3$AXj%CS$ChoF3 z>tx22cy03PspZ)?NddHKbK?yl`))oU zd-m$H*Aq8fd*>Z{Sub!vBOjuo(U$&!oCg564r&=Wzd6D znfIN3Qpv1YcJTIn2IMI>53nNI9+4JM06suO+GQA}vg=%=kEtmn>yy4tv4wQ!CS*_2 z!xZG8`e~rj1&Q%d3TDlxm96NJ*|y7+&P<2R_Gq?w7gG|pmzR={DTW)eD19+7dgHL;&`KP$U0 zRk0jk*PPa8re}@zDwhB=0w>*=F9BIO($|96x2CdNt&|ZB!@Qc^1-OpdmDMvP4ca41 z0!7>XbQP=A1V1Ca(vB0jSD)D|{FvgM5cMBr7qTjF&18!$l)8_cesUfohf!Q?lV#YF z!SEi6=p<(gocoTw7?rVzxL@i6aN&=Wi3EmmEYE+REBZd?`9A0VK3DvGu8jRT;r`fC z##?^OY0i(x_alMhANnEp_z$@wKj60g4Y%`$+}NNc^7>4mV0}xynFhwdmLW( zN(Kx0?&*v7IC}s1kn1GRAGpntd+#h7*)nzb9-7&5uguOLm=^DGc-?as@cX7W{D{Mg Hjo1GN$S%H7 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..38fd7d54e1e05f8390aa65eae1fe3065bd4ddf03 GIT binary patch literal 16070 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%0An+25&-1- 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 str: + return field.lower().replace("-", "_") + + +def msg_to_json(msg: Message) -> Dict[str, Any]: + """Convert a Message object into a JSON-compatible dictionary.""" + + def sanitise_header(h: Union[Header, str]) -> str: + if isinstance(h, Header): + chunks = [] + for bytes, encoding in decode_header(h): + if encoding == "unknown-8bit": + try: + # See if UTF-8 works + bytes.decode("utf-8") + encoding = "utf-8" + except UnicodeDecodeError: + # If not, latin1 at least won't fail + encoding = "latin1" + chunks.append((bytes, encoding)) + return str(make_header(chunks)) + return str(h) + + result = {} + for field, multi in METADATA_FIELDS: + if field not in msg: + continue + key = json_name(field) + if multi: + value: Union[str, List[str]] = [ + sanitise_header(v) for v in msg.get_all(field) # type: ignore + ] + else: + value = sanitise_header(msg.get(field)) # type: ignore + if key == "keywords": + # Accept both comma-separated and space-separated + # forms, for better compatibility with old data. + if "," in value: + value = [v.strip() for v in value.split(",")] + else: + value = value.split() + result[key] = value + + payload = cast(str, msg.get_payload()) + if payload: + result["description"] = payload + + return result diff --git a/env/Lib/site-packages/pip/_internal/metadata/base.py b/env/Lib/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 00000000..9eabcdb2 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,688 @@ +import csv +import email.message +import functools +import json +import logging +import pathlib +import re +import zipfile +from typing import ( + IO, + Any, + Collection, + Container, + Dict, + Iterable, + Iterator, + List, + NamedTuple, + Optional, + Protocol, + Tuple, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.locations import site_packages, user_site +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + DirectUrl, + DirectUrlValidationError, +) +from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here. +from pip._internal.utils.egg_link import egg_link_path_from_sys_path +from pip._internal.utils.misc import is_local, normalize_path +from pip._internal.utils.urls import url_to_path + +from ._json import msg_to_json + +InfoPath = Union[str, pathlib.PurePath] + +logger = logging.getLogger(__name__) + + +class BaseEntryPoint(Protocol): + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def value(self) -> str: + raise NotImplementedError() + + @property + def group(self) -> str: + raise NotImplementedError() + + +def _convert_installed_files_path( + entry: Tuple[str, ...], + info: Tuple[str, ...], +) -> str: + """Convert a legacy installed-files.txt path into modern RECORD path. + + The legacy format stores paths relative to the info directory, while the + modern format stores paths relative to the package root, e.g. the + site-packages directory. + + :param entry: Path parts of the installed-files.txt entry. + :param info: Path parts of the egg-info directory relative to package root. + :returns: The converted entry. + + For best compatibility with symlinks, this does not use ``abspath()`` or + ``Path.resolve()``, but tries to work with path parts: + + 1. While ``entry`` starts with ``..``, remove the equal amounts of parts + from ``info``; if ``info`` is empty, start appending ``..`` instead. + 2. Join the two directly. + """ + while entry and entry[0] == "..": + if not info or info[-1] == "..": + info += ("..",) + else: + info = info[:-1] + entry = entry[1:] + return str(pathlib.Path(*info, *entry)) + + +class RequiresEntry(NamedTuple): + requirement: str + extra: str + marker: str + + +class BaseDistribution(Protocol): + @classmethod + def from_directory(cls, directory: str) -> "BaseDistribution": + """Load the distribution from a metadata directory. + + :param directory: Path to a metadata directory, e.g. ``.dist-info``. + """ + raise NotImplementedError() + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> "BaseDistribution": + """Load the distribution from the contents of a METADATA file. + + This is used to implement PEP 658 by generating a "shallow" dist object that can + be used for resolution without downloading or building the actual dist yet. + + :param metadata_contents: The contents of a METADATA file. + :param filename: File name for the dist with this metadata. + :param project_name: Name of the project this dist represents. + """ + raise NotImplementedError() + + @classmethod + def from_wheel(cls, wheel: "Wheel", name: str) -> "BaseDistribution": + """Load the distribution from a given wheel. + + :param wheel: A concrete wheel definition. + :param name: File name of the wheel. + + :raises InvalidWheel: Whenever loading of the wheel causes a + :py:exc:`zipfile.BadZipFile` exception to be thrown. + :raises UnsupportedWheel: If the wheel is a valid zip, but malformed + internally. + """ + raise NotImplementedError() + + def __repr__(self) -> str: + return f"{self.raw_name} {self.raw_version} ({self.location})" + + def __str__(self) -> str: + return f"{self.raw_name} {self.raw_version}" + + @property + def location(self) -> Optional[str]: + """Where the distribution is loaded from. + + A string value is not necessarily a filesystem path, since distributions + can be loaded from other sources, e.g. arbitrary zip archives. ``None`` + means the distribution is created in-memory. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and files in the distribution. + """ + raise NotImplementedError() + + @property + def editable_project_location(self) -> Optional[str]: + """The project location for editable distributions. + + This is the directory where pyproject.toml or setup.py is located. + None if the distribution is not installed in editable mode. + """ + # TODO: this property is relatively costly to compute, memoize it ? + direct_url = self.direct_url + if direct_url: + if direct_url.is_local_editable(): + return url_to_path(direct_url.url) + else: + # Search for an .egg-link file by walking sys.path, as it was + # done before by dist_is_editable(). + egg_link_path = egg_link_path_from_sys_path(self.raw_name) + if egg_link_path: + # TODO: get project location from second line of egg_link file + # (https://github.com/pypa/pip/issues/10243) + return self.location + return None + + @property + def installed_location(self) -> Optional[str]: + """The distribution's "installed" location. + + This should generally be a ``site-packages`` directory. This is + usually ``dist.location``, except for legacy develop-installed packages, + where ``dist.location`` is the source code location, and this is where + the ``.egg-link`` file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + raise NotImplementedError() + + @property + def info_location(self) -> Optional[str]: + """Location of the .[egg|dist]-info directory or file. + + Similarly to ``location``, a string value is not necessarily a + filesystem path. ``None`` means the distribution is created in-memory. + + For a modern .dist-info installation on disk, this should be something + like ``{location}/{raw_name}-{version}.dist-info``. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and other files in the distribution. + """ + raise NotImplementedError() + + @property + def installed_by_distutils(self) -> bool: + """Whether this distribution is installed with legacy distutils format. + + A distribution installed with "raw" distutils not patched by setuptools + uses one single file at ``info_location`` to store metadata. We need to + treat this specially on uninstallation. + """ + info_location = self.info_location + if not info_location: + return False + return pathlib.Path(info_location).is_file() + + @property + def installed_as_egg(self) -> bool: + """Whether this distribution is installed as an egg. + + This usually indicates the distribution was installed by (older versions + of) easy_install. + """ + location = self.location + if not location: + return False + return location.endswith(".egg") + + @property + def installed_with_setuptools_egg_info(self) -> bool: + """Whether this distribution is installed with the ``.egg-info`` format. + + This usually indicates the distribution was installed with setuptools + with an old pip version or with ``single-version-externally-managed``. + + Note that this ensure the metadata store is a directory. distutils can + also installs an ``.egg-info``, but as a file, not a directory. This + property is *False* for that case. Also see ``installed_by_distutils``. + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".egg-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def installed_with_dist_info(self) -> bool: + """Whether this distribution is installed with the "modern format". + + This indicates a "modern" installation, e.g. storing metadata in the + ``.dist-info`` directory. This applies to installations made by + setuptools (but through pip, not directly), or anything using the + standardized build backend interface (PEP 517). + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".dist-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def canonical_name(self) -> NormalizedName: + raise NotImplementedError() + + @property + def version(self) -> Version: + raise NotImplementedError() + + @property + def raw_version(self) -> str: + raise NotImplementedError() + + @property + def setuptools_filename(self) -> str: + """Convert a project name to its setuptools-compatible filename. + + This is a copy of ``pkg_resources.to_filename()`` for compatibility. + """ + return self.raw_name.replace("-", "_") + + @property + def direct_url(self) -> Optional[DirectUrl]: + """Obtain a DirectUrl from this distribution. + + Returns None if the distribution has no `direct_url.json` metadata, + or if `direct_url.json` is invalid. + """ + try: + content = self.read_text(DIRECT_URL_METADATA_NAME) + except FileNotFoundError: + return None + try: + return DirectUrl.from_json(content) + except ( + UnicodeDecodeError, + json.JSONDecodeError, + DirectUrlValidationError, + ) as e: + logger.warning( + "Error parsing %s for %s: %s", + DIRECT_URL_METADATA_NAME, + self.canonical_name, + e, + ) + return None + + @property + def installer(self) -> str: + try: + installer_text = self.read_text("INSTALLER") + except (OSError, ValueError, NoneMetadataError): + return "" # Fail silently if the installer file cannot be read. + for line in installer_text.splitlines(): + cleaned_line = line.strip() + if cleaned_line: + return cleaned_line + return "" + + @property + def requested(self) -> bool: + return self.is_file("REQUESTED") + + @property + def editable(self) -> bool: + return bool(self.editable_project_location) + + @property + def local(self) -> bool: + """If distribution is installed in the current virtual environment. + + Always True if we're not in a virtualenv. + """ + if self.installed_location is None: + return False + return is_local(self.installed_location) + + @property + def in_usersite(self) -> bool: + if self.installed_location is None or user_site is None: + return False + return self.installed_location.startswith(normalize_path(user_site)) + + @property + def in_site_packages(self) -> bool: + if self.installed_location is None or site_packages is None: + return False + return self.installed_location.startswith(normalize_path(site_packages)) + + def is_file(self, path: InfoPath) -> bool: + """Check whether an entry in the info directory is a file.""" + raise NotImplementedError() + + def iter_distutils_script_names(self) -> Iterator[str]: + """Find distutils 'scripts' entries metadata. + + If 'scripts' is supplied in ``setup.py``, distutils records those in the + installed distribution's ``scripts`` directory, a file for each script. + """ + raise NotImplementedError() + + def read_text(self, path: InfoPath) -> str: + """Read a file in the info directory. + + :raise FileNotFoundError: If ``path`` does not exist in the directory. + :raise NoneMetadataError: If ``path`` exists in the info directory, but + cannot be read. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + def _metadata_impl(self) -> email.message.Message: + raise NotImplementedError() + + @functools.cached_property + def metadata(self) -> email.message.Message: + """Metadata of distribution parsed from e.g. METADATA or PKG-INFO. + + This should return an empty message if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + metadata = self._metadata_impl() + self._add_egg_info_requires(metadata) + return metadata + + @property + def metadata_dict(self) -> Dict[str, Any]: + """PEP 566 compliant JSON-serializable representation of METADATA or PKG-INFO. + + This should return an empty dict if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + return msg_to_json(self.metadata) + + @property + def metadata_version(self) -> Optional[str]: + """Value of "Metadata-Version:" in distribution metadata, if available.""" + return self.metadata.get("Metadata-Version") + + @property + def raw_name(self) -> str: + """Value of "Name:" in distribution metadata.""" + # The metadata should NEVER be missing the Name: key, but if it somehow + # does, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + @property + def requires_python(self) -> SpecifierSet: + """Value of "Requires-Python:" in distribution metadata. + + If the key does not exist or contains an invalid value, an empty + SpecifierSet should be returned. + """ + value = self.metadata.get("Requires-Python") + if value is None: + return SpecifierSet() + try: + # Convert to str to satisfy the type checker; this can be a Header object. + spec = SpecifierSet(str(value)) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.raw_name, e) + return SpecifierSet() + return spec + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + """Dependencies of this distribution. + + For modern .dist-info distributions, this is the collection of + "Requires-Dist:" entries in distribution metadata. + """ + raise NotImplementedError() + + def iter_raw_dependencies(self) -> Iterable[str]: + """Raw Requires-Dist metadata.""" + return self.metadata.get_all("Requires-Dist", []) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + """Extras provided by this distribution. + + For modern .dist-info distributions, this is the collection of + "Provides-Extra:" entries in distribution metadata. + + The return value of this function is expected to be normalised names, + per PEP 685, with the returned value being handled appropriately by + `iter_dependencies`. + """ + raise NotImplementedError() + + def _iter_declared_entries_from_record(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("RECORD") + except FileNotFoundError: + return None + # This extra Path-str cast normalizes entries. + return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines())) + + def _iter_declared_entries_from_legacy(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("installed-files.txt") + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = self.location + info = self.info_location + if root is None or info is None: + return paths + try: + info_rel = pathlib.Path(info).relative_to(root) + except ValueError: # info is not relative to root. + return paths + if not info_rel.parts: # info *is* root. + return paths + return ( + _convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + def iter_declared_entries(self) -> Optional[Iterator[str]]: + """Iterate through file entries declared in this distribution. + + For modern .dist-info distributions, this is the files listed in the + ``RECORD`` metadata file. For legacy setuptools distributions, this + comes from ``installed-files.txt``, with entries normalized to be + compatible with the format used by ``RECORD``. + + :return: An iterator for listed entries, or None if the distribution + contains neither ``RECORD`` nor ``installed-files.txt``. + """ + return ( + self._iter_declared_entries_from_record() + or self._iter_declared_entries_from_legacy() + ) + + def _iter_requires_txt_entries(self) -> Iterator[RequiresEntry]: + """Parse a ``requires.txt`` in an egg-info directory. + + This is an INI-ish format where an egg-info stores dependencies. A + section name describes extra other environment markers, while each entry + is an arbitrary string (not a key-value pair) representing a dependency + as a requirement string (no markers). + + There is a construct in ``importlib.metadata`` called ``Sectioned`` that + does mostly the same, but the format is currently considered private. + """ + try: + content = self.read_text("requires.txt") + except FileNotFoundError: + return + extra = marker = "" # Section-less entries don't have markers. + for line in content.splitlines(): + line = line.strip() + if not line or line.startswith("#"): # Comment; ignored. + continue + if line.startswith("[") and line.endswith("]"): # A section header. + extra, _, marker = line.strip("[]").partition(":") + continue + yield RequiresEntry(requirement=line, extra=extra, marker=marker) + + def _iter_egg_info_extras(self) -> Iterable[str]: + """Get extras from the egg-info directory.""" + known_extras = {""} + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra in known_extras: + continue + known_extras.add(extra) + yield extra + + def _iter_egg_info_dependencies(self) -> Iterable[str]: + """Get distribution dependencies from the egg-info directory. + + To ease parsing, this converts a legacy dependency entry into a PEP 508 + requirement string. Like ``_iter_requires_txt_entries()``, there is code + in ``importlib.metadata`` that does mostly the same, but not do exactly + what we need. + + Namely, ``importlib.metadata`` does not normalize the extra name before + putting it into the requirement string, which causes marker comparison + to fail because the dist-info format do normalize. This is consistent in + all currently available PEP 517 backends, although not standardized. + """ + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra and entry.marker: + marker = f'({entry.marker}) and extra == "{extra}"' + elif extra: + marker = f'extra == "{extra}"' + elif entry.marker: + marker = entry.marker + else: + marker = "" + if marker: + yield f"{entry.requirement} ; {marker}" + else: + yield entry.requirement + + def _add_egg_info_requires(self, metadata: email.message.Message) -> None: + """Add egg-info requires.txt information to the metadata.""" + if not metadata.get_all("Requires-Dist"): + for dep in self._iter_egg_info_dependencies(): + metadata["Requires-Dist"] = dep + if not metadata.get_all("Provides-Extra"): + for extra in self._iter_egg_info_extras(): + metadata["Provides-Extra"] = extra + + +class BaseEnvironment: + """An environment containing distributions to introspect.""" + + @classmethod + def default(cls) -> "BaseEnvironment": + raise NotImplementedError() + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> "BaseEnvironment": + raise NotImplementedError() + + def get_distribution(self, name: str) -> Optional["BaseDistribution"]: + """Given a requirement name, return the installed distributions. + + The name may not be normalized. The implementation must canonicalize + it for lookup. + """ + raise NotImplementedError() + + def _iter_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions. + + This function should be implemented by subclass, but never called + directly. Use the public ``iter_distribution()`` instead, which + implements additional logic to make sure the distributions are valid. + """ + raise NotImplementedError() + + def iter_all_distributions(self) -> Iterator[BaseDistribution]: + """Iterate through all installed distributions without any filtering.""" + for dist in self._iter_distributions(): + # Make sure the distribution actually comes from a valid Python + # packaging distribution. Pip's AdjacentTempDirectory leaves folders + # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The + # valid project name pattern is taken from PEP 508. + project_name_valid = re.match( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", + dist.canonical_name, + flags=re.IGNORECASE, + ) + if not project_name_valid: + logger.warning( + "Ignoring invalid distribution %s (%s)", + dist.canonical_name, + dist.location, + ) + continue + yield dist + + def iter_installed_distributions( + self, + local_only: bool = True, + skip: Container[str] = stdlib_pkgs, + include_editables: bool = True, + editables_only: bool = False, + user_only: bool = False, + ) -> Iterator[BaseDistribution]: + """Return a list of installed distributions. + + This is based on ``iter_all_distributions()`` with additional filtering + options. Note that ``iter_installed_distributions()`` without arguments + is *not* equal to ``iter_all_distributions()``, since some of the + configurations exclude packages by default. + + :param local_only: If True (default), only return installations + local to the current virtualenv, if in a virtualenv. + :param skip: An iterable of canonicalized project names to ignore; + defaults to ``stdlib_pkgs``. + :param include_editables: If False, don't report editables. + :param editables_only: If True, only report editables. + :param user_only: If True, only report installations in the user + site directory. + """ + it = self.iter_all_distributions() + if local_only: + it = (d for d in it if d.local) + if not include_editables: + it = (d for d in it if not d.editable) + if editables_only: + it = (d for d in it if d.editable) + if user_only: + it = (d for d in it if d.in_usersite) + return (d for d in it if d.canonical_name not in skip) + + +class Wheel(Protocol): + location: str + + def as_zipfile(self) -> zipfile.ZipFile: + raise NotImplementedError() + + +class FilesystemWheel(Wheel): + def __init__(self, location: str) -> None: + self.location = location + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.location, allowZip64=True) + + +class MemoryWheel(Wheel): + def __init__(self, location: str, stream: IO[bytes]) -> None: + self.location = location + self.stream = stream + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.stream, allowZip64=True) diff --git a/env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py b/env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py new file mode 100644 index 00000000..a779138d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py @@ -0,0 +1,6 @@ +from ._dists import Distribution +from ._envs import Environment + +__all__ = ["NAME", "Distribution", "Environment"] + +NAME = "importlib" diff --git a/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7cd812b7e5fc3c107f0c28dd824df927f726a5af GIT binary patch literal 344 zcmX|6Jxjzu5Z%2b7rir$U@LZ-;*1}ih#;EoJOsP2xNO`dEN(Vockkdjtt_m?-p=3R zKL{L%R(8U5S2^)(iZ^d~?=dqkQPe|Fn-BNJ9rX8h_^Zw@nQsAkL>zIfP>C~)Ti#Kf z(#t%I3dFr9ocY|(f@u(UKQP#1+^n2R>x|6DPF5P`eyS(ZRJs(}#a`o&j?Yr#f!Fu| z&9W@($~YzSQQU31ltbEn>rFs~p4cB-NGVf_QWHSv8O;IF;xauTL&1!ex*!+(JLKGm zlWJ_N80-%N<*KqaLH+@jP0Q`twNdN!< literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72907146bf44663ae5df5e210b1b9a9413f116e7 GIT binary patch literal 4477 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 None: + self.dist = dist + self.reason = reason + + def __str__(self) -> str: + return f"Bad metadata in {self.dist} ({self.reason})" + + +class BasePath(Protocol): + """A protocol that various path objects conform. + + This exists because importlib.metadata uses both ``pathlib.Path`` and + ``zipfile.Path``, and we need a common base for type hints (Union does not + work well since ``zipfile.Path`` is too new for our linter setup). + + This does not mean to be exhaustive, but only contains things that present + in both classes *that we need*. + """ + + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def parent(self) -> "BasePath": + raise NotImplementedError() + + +def get_info_location(d: importlib.metadata.Distribution) -> Optional[BasePath]: + """Find the path to the distribution's metadata directory. + + HACK: This relies on importlib.metadata's private ``_path`` attribute. Not + all distributions exist on disk, so importlib.metadata is correct to not + expose the attribute as public. But pip's code base is old and not as clean, + so we do this to avoid having to rewrite too many things. Hopefully we can + eliminate this some day. + """ + return getattr(d, "_path", None) + + +def parse_name_and_version_from_info_directory( + dist: importlib.metadata.Distribution, +) -> Tuple[Optional[str], Optional[str]]: + """Get a name and version from the metadata directory name. + + This is much faster than reading distribution metadata. + """ + info_location = get_info_location(dist) + if info_location is None: + return None, None + + stem, suffix = os.path.splitext(info_location.name) + if suffix == ".dist-info": + name, sep, version = stem.partition("-") + if sep: + return name, version + + if suffix == ".egg-info": + name = stem.split("-", 1)[0] + return name, None + + return None, None + + +def get_dist_canonical_name(dist: importlib.metadata.Distribution) -> NormalizedName: + """Get the distribution's normalized name. + + The ``name`` attribute is only available in Python 3.10 or later. We are + targeting exactly that, but Mypy does not know this. + """ + if name := parse_name_and_version_from_info_directory(dist)[0]: + return canonicalize_name(name) + + name = cast(Any, dist).name + if not isinstance(name, str): + raise BadMetadata(dist, reason="invalid metadata entry 'name'") + return canonicalize_name(name) diff --git a/env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py b/env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py new file mode 100644 index 00000000..36cd3262 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py @@ -0,0 +1,221 @@ +import email.message +import importlib.metadata +import pathlib +import zipfile +from typing import ( + Collection, + Dict, + Iterable, + Iterator, + Mapping, + Optional, + Sequence, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, UnsupportedWheel +from pip._internal.metadata.base import ( + BaseDistribution, + BaseEntryPoint, + InfoPath, + Wheel, +) +from pip._internal.utils.misc import normalize_path +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from ._compat import ( + BasePath, + get_dist_canonical_name, + parse_name_and_version_from_info_directory, +) + + +class WheelDistribution(importlib.metadata.Distribution): + """An ``importlib.metadata.Distribution`` read from a wheel. + + Although ``importlib.metadata.PathDistribution`` accepts ``zipfile.Path``, + its implementation is too "lazy" for pip's needs (we can't keep the ZipFile + handle open for the entire lifetime of the distribution object). + + This implementation eagerly reads the entire metadata directory into the + memory instead, and operates from that. + """ + + def __init__( + self, + files: Mapping[pathlib.PurePosixPath, bytes], + info_location: pathlib.PurePosixPath, + ) -> None: + self._files = files + self.info_location = info_location + + @classmethod + def from_zipfile( + cls, + zf: zipfile.ZipFile, + name: str, + location: str, + ) -> "WheelDistribution": + info_dir, _ = parse_wheel(zf, name) + paths = ( + (name, pathlib.PurePosixPath(name.split("/", 1)[-1])) + for name in zf.namelist() + if name.startswith(f"{info_dir}/") + ) + files = { + relpath: read_wheel_metadata_file(zf, fullpath) + for fullpath, relpath in paths + } + info_location = pathlib.PurePosixPath(location, info_dir) + return cls(files, info_location) + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + # Only allow iterating through the metadata directory. + if pathlib.PurePosixPath(str(path)) in self._files: + return iter(self._files) + raise FileNotFoundError(path) + + def read_text(self, filename: str) -> Optional[str]: + try: + data = self._files[pathlib.PurePosixPath(filename)] + except KeyError: + return None + try: + text = data.decode("utf-8") + except UnicodeDecodeError as e: + wheel = self.info_location.parent + error = f"Error decoding metadata for {wheel}: {e} in {filename} file" + raise UnsupportedWheel(error) + return text + + +class Distribution(BaseDistribution): + def __init__( + self, + dist: importlib.metadata.Distribution, + info_location: Optional[BasePath], + installed_location: Optional[BasePath], + ) -> None: + self._dist = dist + self._info_location = info_location + self._installed_location = installed_location + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + info_location = pathlib.Path(directory) + dist = importlib.metadata.Distribution.at(info_location) + return cls(dist, info_location, info_location.parent) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + # Generate temp dir to contain the metadata file, and write the file contents. + temp_dir = pathlib.Path( + TempDirectory(kind="metadata", globally_managed=True).path + ) + metadata_path = temp_dir / "METADATA" + metadata_path.write_bytes(metadata_contents) + # Construct dist pointing to the newly created directory. + dist = importlib.metadata.Distribution.at(metadata_path.parent) + return cls(dist, metadata_path.parent, None) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + dist = WheelDistribution.from_zipfile(zf, name, wheel.location) + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + return cls(dist, dist.info_location, pathlib.PurePosixPath(wheel.location)) + + @property + def location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location.parent) + + @property + def info_location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location) + + @property + def installed_location(self) -> Optional[str]: + if self._installed_location is None: + return None + return normalize_path(str(self._installed_location)) + + @property + def canonical_name(self) -> NormalizedName: + return get_dist_canonical_name(self._dist) + + @property + def version(self) -> Version: + if version := parse_name_and_version_from_info_directory(self._dist)[1]: + return parse_version(version) + return parse_version(self._dist.version) + + @property + def raw_version(self) -> str: + return self._dist.version + + def is_file(self, path: InfoPath) -> bool: + return self._dist.read_text(str(path)) is not None + + def iter_distutils_script_names(self) -> Iterator[str]: + # A distutils installation is always "flat" (not in e.g. egg form), so + # if this distribution's info location is NOT a pathlib.Path (but e.g. + # zipfile.Path), it can never contain any distutils scripts. + if not isinstance(self._info_location, pathlib.Path): + return + for child in self._info_location.joinpath("scripts").iterdir(): + yield child.name + + def read_text(self, path: InfoPath) -> str: + content = self._dist.read_text(str(path)) + if content is None: + raise FileNotFoundError(path) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + # importlib.metadata's EntryPoint structure sasitfies BaseEntryPoint. + return self._dist.entry_points + + def _metadata_impl(self) -> email.message.Message: + # From Python 3.10+, importlib.metadata declares PackageMetadata as the + # return type. This protocol is unfortunately a disaster now and misses + # a ton of fields that we need, including get() and get_payload(). We + # rely on the implementation that the object is actually a Message now, + # until upstream can improve the protocol. (python/cpython#94952) + return cast(email.message.Message, self._dist.metadata) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + return [ + canonicalize_name(extra) + for extra in self.metadata.get_all("Provides-Extra", []) + ] + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + contexts: Sequence[Dict[str, str]] = [{"extra": e} for e in extras] + for req_string in self.metadata.get_all("Requires-Dist", []): + # strip() because email.message.Message.get_all() may return a leading \n + # in case a long header was wrapped. + req = get_requirement(req_string.strip()) + if not req.marker: + yield req + elif not extras and req.marker.evaluate({"extra": ""}): + yield req + elif any(req.marker.evaluate(context) for context in contexts): + yield req diff --git a/env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py b/env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py new file mode 100644 index 00000000..70cb7a60 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py @@ -0,0 +1,189 @@ +import functools +import importlib.metadata +import logging +import os +import pathlib +import sys +import zipfile +import zipimport +from typing import Iterator, List, Optional, Sequence, Set, Tuple + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.metadata.base import BaseDistribution, BaseEnvironment +from pip._internal.models.wheel import Wheel +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION + +from ._compat import BadMetadata, BasePath, get_dist_canonical_name, get_info_location +from ._dists import Distribution + +logger = logging.getLogger(__name__) + + +def _looks_like_wheel(location: str) -> bool: + if not location.endswith(WHEEL_EXTENSION): + return False + if not os.path.isfile(location): + return False + if not Wheel.wheel_file_re.match(os.path.basename(location)): + return False + return zipfile.is_zipfile(location) + + +class _DistributionFinder: + """Finder to locate distributions. + + The main purpose of this class is to memoize found distributions' names, so + only one distribution is returned for each package name. At lot of pip code + assumes this (because it is setuptools's behavior), and not doing the same + can potentially cause a distribution in lower precedence path to override a + higher precedence one if the caller is not careful. + + Eventually we probably want to make it possible to see lower precedence + installations as well. It's useful feature, after all. + """ + + FoundResult = Tuple[importlib.metadata.Distribution, Optional[BasePath]] + + def __init__(self) -> None: + self._found_names: Set[NormalizedName] = set() + + def _find_impl(self, location: str) -> Iterator[FoundResult]: + """Find distributions in a location.""" + # Skip looking inside a wheel. Since a package inside a wheel is not + # always valid (due to .data directories etc.), its .dist-info entry + # should not be considered an installed distribution. + if _looks_like_wheel(location): + return + # To know exactly where we find a distribution, we have to feed in the + # paths one by one, instead of dumping the list to importlib.metadata. + for dist in importlib.metadata.distributions(path=[location]): + info_location = get_info_location(dist) + try: + name = get_dist_canonical_name(dist) + except BadMetadata as e: + logger.warning("Skipping %s due to %s", info_location, e.reason) + continue + if name in self._found_names: + continue + self._found_names.add(name) + yield dist, info_location + + def find(self, location: str) -> Iterator[BaseDistribution]: + """Find distributions in a location. + + The path can be either a directory, or a ZIP archive. + """ + for dist, info_location in self._find_impl(location): + if info_location is None: + installed_location: Optional[BasePath] = None + else: + installed_location = info_location.parent + yield Distribution(dist, info_location, installed_location) + + def find_linked(self, location: str) -> Iterator[BaseDistribution]: + """Read location in egg-link files and return distributions in there. + + The path should be a directory; otherwise this returns nothing. This + follows how setuptools does this for compatibility. The first non-empty + line in the egg-link is read as a path (resolved against the egg-link's + containing directory if relative). Distributions found at that linked + location are returned. + """ + path = pathlib.Path(location) + if not path.is_dir(): + return + for child in path.iterdir(): + if child.suffix != ".egg-link": + continue + with child.open() as f: + lines = (line.strip() for line in f) + target_rel = next((line for line in lines if line), "") + if not target_rel: + continue + target_location = str(path.joinpath(target_rel)) + for dist, info_location in self._find_impl(target_location): + yield Distribution(dist, info_location, path) + + def _find_eggs_in_dir(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_distributions + + from pip._internal.metadata import pkg_resources as legacy + + with os.scandir(location) as it: + for entry in it: + if not entry.name.endswith(".egg"): + continue + for dist in find_distributions(entry.path): + yield legacy.Distribution(dist) + + def _find_eggs_in_zip(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_eggs_in_zip + + from pip._internal.metadata import pkg_resources as legacy + + try: + importer = zipimport.zipimporter(location) + except zipimport.ZipImportError: + return + for dist in find_eggs_in_zip(importer, location): + yield legacy.Distribution(dist) + + def find_eggs(self, location: str) -> Iterator[BaseDistribution]: + """Find eggs in a location. + + This actually uses the old *pkg_resources* backend. We likely want to + deprecate this so we can eventually remove the *pkg_resources* + dependency entirely. Before that, this should first emit a deprecation + warning for some versions when using the fallback since importing + *pkg_resources* is slow for those who don't need it. + """ + if os.path.isdir(location): + yield from self._find_eggs_in_dir(location) + if zipfile.is_zipfile(location): + yield from self._find_eggs_in_zip(location) + + +@functools.lru_cache(maxsize=None) # Warn a distribution exactly once. +def _emit_egg_deprecation(location: Optional[str]) -> None: + deprecated( + reason=f"Loading egg at {location} is deprecated.", + replacement="to use pip for package installation", + gone_in="24.3", + issue=12330, + ) + + +class Environment(BaseEnvironment): + def __init__(self, paths: Sequence[str]) -> None: + self._paths = paths + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(sys.path) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + if paths is None: + return cls(sys.path) + return cls(paths) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + finder = _DistributionFinder() + for location in self._paths: + yield from finder.find(location) + for dist in finder.find_eggs(location): + _emit_egg_deprecation(dist.location) + yield dist + # This must go last because that's how pkg_resources tie-breaks. + yield from finder.find_linked(location) + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + canonical_name = canonicalize_name(name) + matches = ( + distribution + for distribution in self.iter_all_distributions() + if distribution.canonical_name == canonical_name + ) + return next(matches, None) diff --git a/env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py b/env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 00000000..4ea84f93 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,301 @@ +import email.message +import email.parser +import logging +import os +import zipfile +from typing import ( + Collection, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, +) + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.misc import display_path, normalize_path +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from .base import ( + BaseDistribution, + BaseEntryPoint, + BaseEnvironment, + InfoPath, + Wheel, +) + +__all__ = ["NAME", "Distribution", "Environment"] + +logger = logging.getLogger(__name__) + +NAME = "pkg_resources" + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class InMemoryMetadata: + """IMetadataProvider that reads metadata files from a dictionary. + + This also maps metadata decoding exceptions to our internal exception type. + """ + + def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None: + self._metadata = metadata + self._wheel_name = wheel_name + + def has_metadata(self, name: str) -> bool: + return name in self._metadata + + def get_metadata(self, name: str) -> str: + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Augment the default error with the origin of the file. + raise UnsupportedWheel( + f"Error decoding metadata for {self._wheel_name}: {e} in {name} file" + ) + + def get_metadata_lines(self, name: str) -> Iterable[str]: + return pkg_resources.yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name: str) -> bool: + return False + + def metadata_listdir(self, name: str) -> List[str]: + return [] + + def run_script(self, script_name: str, namespace: str) -> None: + pass + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + # This is populated lazily, to avoid loading metadata for all possible + # distributions eagerly. + self.__extra_mapping: Optional[Mapping[NormalizedName, str]] = None + + @property + def _extra_mapping(self) -> Mapping[NormalizedName, str]: + if self.__extra_mapping is None: + self.__extra_mapping = { + canonicalize_name(extra): extra for extra in self._dist.extras + } + + return self.__extra_mapping + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + dist_dir = directory.rstrip(os.sep) + + # Build a PathMetadata object, from path to metadata. :wink: + base_dir, dist_dir_name = os.path.split(dist_dir) + metadata = pkg_resources.PathMetadata(base_dir, dist_dir) + + # Determine the correct Distribution object type. + if dist_dir.endswith(".egg-info"): + dist_cls = pkg_resources.Distribution + dist_name = os.path.splitext(dist_dir_name)[0] + else: + assert dist_dir.endswith(".dist-info") + dist_cls = pkg_resources.DistInfoDistribution + dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] + + dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata) + return cls(dist) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + metadata_dict = { + "METADATA": metadata_contents, + } + dist = pkg_resources.DistInfoDistribution( + location=filename, + metadata=InMemoryMetadata(metadata_dict, filename), + project_name=project_name, + ) + return cls(dist) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + info_dir, _ = parse_wheel(zf, name) + metadata_dict = { + path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path) + for path in zf.namelist() + if path.startswith(f"{info_dir}/") + } + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + dist = pkg_resources.DistInfoDistribution( + location=wheel.location, + metadata=InMemoryMetadata(metadata_dict, wheel.location), + project_name=name, + ) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.location + + @property + def installed_location(self) -> Optional[str]: + egg_link = egg_link_path_from_location(self.raw_name) + if egg_link: + location = egg_link + elif self.location: + location = self.location + else: + return None + return normalize_path(location) + + @property + def info_location(self) -> Optional[str]: + return self._dist.egg_info + + @property + def installed_by_distutils(self) -> bool: + # A distutils-installed distribution is provided by FileMetadata. This + # provider has a "path" attribute not present anywhere else. Not the + # best introspection logic, but pip has been doing this for a long time. + try: + return bool(self._dist._provider.path) + except AttributeError: + return False + + @property + def canonical_name(self) -> NormalizedName: + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> Version: + return parse_version(self._dist.version) + + @property + def raw_version(self) -> str: + return self._dist.version + + def is_file(self, path: InfoPath) -> bool: + return self._dist.has_metadata(str(path)) + + def iter_distutils_script_names(self) -> Iterator[str]: + yield from self._dist.metadata_listdir("scripts") + + def read_text(self, path: InfoPath) -> str: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + content = self._dist.get_metadata(name) + if content is None: + raise NoneMetadataError(self, name) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + for group, entries in self._dist.get_entry_map().items(): + for name, entry_point in entries.items(): + name, _, value = str(entry_point).partition("=") + yield EntryPoint(name=name.strip(), value=value.strip(), group=group) + + def _metadata_impl(self) -> email.message.Message: + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + if isinstance(self._dist, pkg_resources.DistInfoDistribution): + metadata_name = "METADATA" + else: + metadata_name = "PKG-INFO" + try: + metadata = self.read_text(metadata_name) + except FileNotFoundError: + if self.location: + displaying_path = display_path(self.location) + else: + displaying_path = repr(self.location) + logger.warning("No metadata found in %s", displaying_path) + metadata = "" + feed_parser = email.parser.FeedParser() + feed_parser.feed(metadata) + return feed_parser.close() + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + if extras: + relevant_extras = set(self._extra_mapping) & set( + map(canonicalize_name, extras) + ) + extras = [self._extra_mapping[extra] for extra in relevant_extras] + return self._dist.requires(extras) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + return self._extra_mapping.keys() + + +class Environment(BaseEnvironment): + def __init__(self, ws: pkg_resources.WorkingSet) -> None: + self._ws = ws + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(pkg_resources.working_set) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + return cls(pkg_resources.WorkingSet(paths)) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) + + def _search_distribution(self, name: str) -> Optional[BaseDistribution]: + """Find a distribution matching the ``name`` in the environment. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + """ + canonical_name = canonicalize_name(name) + for dist in self.iter_all_distributions(): + if dist.canonical_name == canonical_name: + return dist + return None + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + # Search the distribution by looking through the working set. + dist = self._search_distribution(name) + if dist: + return dist + + # If distribution could not be found, call working_set.require to + # update the working set, and try to find the distribution again. + # This might happen for e.g. when you install a package twice, once + # using setup.py develop and again using setup.py install. Now when + # running pip uninstall twice, the package gets removed from the + # working set in the first uninstall, so we have to populate the + # working set again so that pip knows about it and the packages gets + # picked up and is successfully uninstalled the second time too. + try: + # We didn't pass in any version specifiers, so this can never + # raise pkg_resources.VersionConflict. + self._ws.require(name) + except pkg_resources.DistributionNotFound: + return None + return self._search_distribution(name) diff --git a/env/Lib/site-packages/pip/_internal/models/__init__.py b/env/Lib/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 00000000..7855226e --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a267cad8824527eb5117a91b0dcaed61202f08b GIT binary patch literal 252 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

T*|O-_GB@<`tJhyGd-@7|#n*h-*SF~F zo6mgu*3GxdzWoKuJx{YXwtLajU2*#^pP4yR?1mU7cs)2j^lA8J__qJI8~=4<$@M&h zBVI>=2WQUfFF03=0&bhS-e?(Vq^{d(sG0@X8ON+BhLJEBg&|XVM9->rGgGKqb=$qt z#6zxC`{F5O(M8eKhSBz0c$tEH32MUTy4*0+0D2&ICHIr>|Cg;>Gl`hdSr$m4&q&Ym zj3(CRN$T`Dlfe_yQkQW>g+L2rRBQcaAeAv=^KaJDnfi51!4%ERtU;-aDV%HR`bVr{ zW_8U~Okw^zRuPQg&{$>E{3vwGV)TJ+v4%7mL7zh&L~sVd9sm$jQSqT&XlKAXMr%!7 zQ7z)>!fG!98n@8g<7uo?_X$tG+F8v)YqqJz2_^^qJ9H>h0P^HZPwTRLa+{W0PLF>Pj-?r%Ac5BZ9^XomgJIdQ%DEp7z^S9sicQ5+8Z)E2CZ)Fz3<*kRx{{BZa zSFOCSaf!1uHaxUCFe&X=D=CdkLRsx!0Qq(|cx~sP7O_%`VLBDCq+ZstB8J#us%Nbf z(^@tLy+L#vFv-o(YEiy<6(56n^*ptfR|0pxhF@avhRED9lbLYqTxbZgtac?WXCm-#2>bx}4!lDZ#L47@ zBI9kY($1*1>G76dGdA6W@%rKJX&Kn!mXCU`^?um5FmT87bjkMgHymzc#o^!}$XP2& zO$!?y_C-c+VbJkfWAs{LU|cF+=MPiuGYqd?Ah_TXJBE=Z-T!J-hEt}b*8UJN43jlO*@_s|&vV@Q72AUUg2#`>EK;WS#iV$mM zgsqq@g3mn8`Y$|H0@e955AdM}xqwyITZE=sUTTRzwd$p_8KJk>RfRNE@7#9GM)m5m z0IOOUVPCOn30n6dKFG}Nc?gw3JzqqRcN9()+@x9~5iuQuFJtdOU1eoSb%7TKeqbMU z1LYJpJI#M|!FLu^DXInjYy;oSwL}~Wmqu!|=`y_%^a5n`;AJNOd`&cwfYK}x?1L9$68(dimLaDM(1nXWhM*S# zO^Z+~NzEr^Tgo2vl*=#nYuf?spIFbxAHZBxZOVH9s~p2HUl7lqi1QD`{s+?ZKV;J% z$xC<1OJ(xX1K#3f^VYAtL~s?3yn8Iq+;8tKk=BZPUE!6>;hAu$^=R4sV&3u4!Z7yY z6i}M6Lni%Y<`nZ4=VW{ptFv%qwyE&K+uyI!diS>Z$FGlS_@3`*&%-bN{_)>!r}%xr zU5LJYW=Vj#)ee0f%ZhcdZmfeiu7giw9l-AkmL&n6)kY`dhh*am^WnuUdl%cE23}+Q zx5t<8QQg2Y&lKTPBs}K!%yaW6=WW-YS;8uufpz|cZDGK$0|5SFomH&<<%uA3i1`Y> zMjc|RuQGI$i#Y%yz#Py=VYLJP#5CJp9G$yR0;k-$Gj9XN#})e-W{{~8`k>>#(we9Q F{y)yL&0GKg literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c70e4093a5b333abe9b490e260d70ebeb052b525 GIT binary patch literal 4209 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 Bs3HIW literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ae5b69fd2df4c73d10c35c27d4dd04219343989 GIT binary patch literal 1680 zcmZ`(&u<$=6rTO*wd2SwNnFbWv{De2()o9}(& zpGQYC2-d~>pRMaELca^6zrc>y=@O_tL=cf&RFP!#9wPEKBFcfB9H_`LqB2p5_Jcm~ zDX}j_j3J-eluGG8MAE9Aq$X1D8F8ggp%#TY1XW}rRg`t8_N`P=i9$7^!cQZ5P2WK^ ziKMo(6`dHuN41(t(%Wh!wS(?S72_5vWuokwWq)L?(`Ap)d#$%`(tuG;y^x!h*$bI* z%(OgW2F$n=SJEP-!Q4pqXz2QOl;O^1;8HAnM$inL zcsEvaz{f+ML2XR@P0R6^26tp>5RuMk*kInOt@N%fl-P^k>0co3OM55;ovdA@jlO{N zgPtv+w$w(r2R=e!A3jt!`Z;I1K61A2@7mIVlY3&0ndmF}mnCpxVq_m3nupE6$xNcS1T7B=q9dzzNFGWk{K4x#dlt zP?wh-!MfR?$pnI}iD53z_U|MB;TXizE%ewJ-A#3j!b78YGM3*_KQ|udC->a1+~fSE zPX5yV;!*y}aekqbUx3)iN%7_5;^j{9^8SZM#cSZnofIaI3)7v#^!~M@!W?);yBYKf z9R9^HPoV??WC0X=Kpb$1OUJak4Vz)o)rU_(Osu-#@c$MJeL$A85D=`F5ARS~Evf7r z1lf5IQ3@thhu0KOp(L|$5h;M+BE>XWUO2`;w2J@5YS&Tn!SZ*(p!thjWa04f} z>xaOJNZ}!i#~1el>`K^TQ`g0~B(b;)@s!?5x)yLUA;gcr2IA>9dZe!WcJAiZa#zi0 z3tumG5vU*SSp7u)5mvV#X;&XibrGojsV73koyVVQo!wuYxI{;Bz3liX=(DqOm9X3)0m;kr30!7(X1pc=*N#4^y|d X)JG#1PSnZ6xf_2ga#sGth`;$STO5x4 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe8a05267a33a1e83c2799d05a6a656871614c92 GIT binary patch literal 2263 zcmZ`4OKcNIboS$aj7>feCv{{Xgf4*?N>fVeR*j%7R478EijXl{ZM~D=WW6>sYiOcS zp^8JKR%&}dBmxxFOF%h@v9Kb;wniOrB41UXZToc)Fi&WJ8a5BPUdFF>^ zfoCUixkN11S#W$)$#dsu-pzq+l;aY7&2|7+(Y!E^R9nEoEK-Cq2(e4u$c`d1nPOv- zK-CcChEl1gXWkph9mg6m3+7aA{J_5434#xoDum*_ujL?*x#NY8bF^ULy=5&wqfKF& zD;LUXxWK~1)Qohoq+^4o-3#qtz^Al`Ui1|Vu{2;dTUzp~cSS#8RT3*t440vr@6; z^~7K;F$fxoE5YP(a0Y7xR~=7h^5x{d70IwA7OLO2M)N5=tNMh#K$jodm_edB0t z@3AHV0-DLcxgqxWI;yXZG!X17*4@KDcicVt)2EL)*_1qm#+#db;l<9y{LKT4XP5e( zARwLl_$^~fg!!%6GW<&%ueg(T6f6nV8-ntgdWj4^rwm;^d@1zm0L zA2S4lfq&k+bW&o+wvS)HJK2u+X)xnt@*Oe^Jl@>24?sf_1mO=fP(uR`(c2GE@9!w{ Ok3TJhA0q(v`Tqc~WgP4P literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d178174459aba762f322f4a9f4e885edd8b3f2d5 GIT binary patch literal 26603 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

g$Di-5u57ct!?LN~b0S)K_sCC4;1HH|F~kjiDE zC~Ub>dW^D0J>1pslPUm}B^ZjCF;a0J7`qV5obd%W5v>~B`>LOH=+ZLm23PUaKdZNpn+^$Z5x zc!5V|oju3?CisF$?n_I8T)L*@*c@-$GTibExuw}?Pf9e|RJBcnsknxpCBNw|f)2ZK~SJoPBQwF(}3G;HNp1<3UdDE`MiByJINq$o|kn42P5< zLjk)HC2^ZwiTcHa5;sL@!c+{=_9!(qNv-Qb)l@E&?T761nE9#Ym@>^Y&Z?0$Vn7O%HtPLofsbhk0d*fk3Dl_{G6c-=@}5^@X>K4H8Vb< zUL40D_2IM>pOz*SJPu0k1=oa&q$I5ubfsvxx9rt1Owb{cp0$KH{k+-6ZC^K1?%Mx{1U$J?_BQ)FCQp$^e(v8gU$J4i^uW}%z*c?f=l9dA;3xByU{ zquCSZ0k!B$DFSwg`w!y%@Wv`h44pF&kjOn^T2myfh-pKgQDp+TWoU_HTSjz!n!qbS z9o<5~C&X9gvTTo-ZQ3?QpJy`i6{9Cc`V9OwjzaZ4K>j>j_9b|^<`}c$9Jz|Pzh&|a ze9i_Q&7wbWmzXdEL6Bm zxMi9O#13}Q5$PwSh6f^*brY}+CU4)r&=*(G%I>ib2k#Bt-*fbxXV&%{`*83}Oz!Zr z<`DCk@r3>5D1$uq0PJcK)J9?vDxyIw#2{}Ug=n1CRMXf?SRtjDaIPVe3HwMzj1s~; zDxk$DbTvi6IxJW`RxT&% ze*V?@1#bP|@q3+xg99sp{hI=6-ILEP=GHfhL4A_Ic^MUhEkVMn9u(41sd$uM%NR1CMAnADtIy&RHSM@9#7diAiSDV;?w1I zU^w({B1AGI#7RQjA$Cuw1~!S~)4-i1J7owErIcLRB?GWwPC@un*#jbY(3hNv1CD4~ zHMFWMp(boV?)c;j8HCP_yHLFbx~xJ3c{6KE4*mb(w^<3cuRn?QTW8EMfa*KEchz(N zJ93Q7WI-S@7ciC`ea!TRot8VTWA!qL?TkJc-G&H`moqwqLnI5aToCKgcreVBotY!x z@GJ~rVoIWTrR=%&$!Vg~^lVxsAd~H{b=c}h-3j5ox|-N0hBSbH+*vpUu*7KZSK0?ef(Zeq5Djs`FU`NVEwhBQUEoD^8Jhbx48Sk1I3oMrJ+T2fhz`E zu6>s}2B0#BO@o4Bm^Z!!+tYg(LxdtgMbT5dV1rRB0i&J7&K~$CmxK5P;p0%jB}(;P zcj)(A2|;t0`wwYK?dV9~+w*VD7yN^_=a;#~`X&5HpmTYC)jzo68vOEO{~(p;O@ALh z8m_ZkF>3U&nB|GZ$`L)#zF6$#jHHn~9yn(#ChKt^+_4zebQ8y726+*TVW=#BEGDHO z?k}gbFpIwkk-O!ke-R`V$P8qoo6J5zs#8$iMpSe33mZPtODd9?;hRwX0zKkchwF0} zYB+x7?889Q!q}p_z_%5vRDI*mM;|%@CAQ1qdDzst6kI%8asXWtP;(pQoP=|sV5sCK zlm~f2pL>DY;E>Qj*Ogvi_Bq7m;0A)Gbed^$oMhe^Di^~6|xrUBkgpCokB#)DMT5?4Ep-kOrT36aXksnSI(nazq&(tLQ=(XnuXC9 z+j4_Bj?mo6I8Cl2l8SzmQ9=>yFNYbf{<3)t7(a$S61m`Us7f5eFb`1R0jht1+>{7@ ziuQeqLZ6}IpP@saqR2nc*@y1-YoRrF`>MNr={p7Yfh)oz0kPhN1NWKGe_4%TPBJA# O8~8wM>!WfPJ^g=p=$^y? literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a4586def39198437a0c99f8c260b8ba7df6d436 GIT binary patch literal 1837 zcmZ`)&ube;6rR=Y%91R(O-VxhlZo9l-eAkAOG+!^LUHX<2&zdar9!Zbc1HHrtC`Kr z%C3S6KKKymx%k@l)X+brmlRqM3#Eb5LvBi3DCE>PyOL#5cf`JVZ)V=io9}yX^mD0H zK+tY}`_1kj6A1mOjbXC}%IR%TP7p=Z2vEzY8HUy~L8fKaOao=m$B3H8h+02oQjeO| zv7PL5Z8%1p`!tMv!ASsmX zE05A2oun4CsSRJ2W!c0uc+d&3a$wnsm8WL2NDIeyE!Q!fVtn}l3z(=;KZf$NVnm0B0KR_f0ql% zT*)4`eaVy?cA`DOt1<_-mw7ETm2y&xB8WIES=5%?%Yrd%njsUu)B7M!P}e@n(9G9% z*XSa5xCV7IU>QTRYl1ak7NM>Mmfj(0T^p=no}iB5nB)+aZc3)nBlsfJv1oh=RFn$| zI+}n=NF-_D^B`65=X(sekSUV5MI=CniNYy}c-iL(SBi1P&UVtfi6-9J+QE0;Uw1H( z42Mj%{3rtNNZ`gfc2z>;fV7mWbJ2{mQNbVLvD_Wp0z)cP1!raanMzL>&^H#6PO4EV zL4ZoMr3axAZ=dW!)~(@`<gIO%D%!n>mc9u2dSnf2VjmR z&j?L`Ae{kMECRZM8|?@mkige!l4)a+Q(r|`8~_glb9OikTo3;Tv5OOQ?Cf+21n-Gf zNFu)xjB~eme~{g)J4tpg>d@K%5U`!z6Mw{-1TcY06?mHjijCr^ZcBK>kduuqK)d{xT{qKAm)WH*P&G zEs$H z3gQ^O$e4ESWg&Yhd-O?v0o`2bt-sq_Sn9of=S6AO-gtI(rf);v&m#P0e?n_HG=2TM z`CqQB_4C>+plfseNv##pb?3*+-%s_mV}A-2rv82nv@`&HcGa=tY}5&XsU*yJ379CK zF;PyLD32FzdY2@0{l_r6&a2$r6r2y_98BovPF(@fHx0x19nJoQHvTEB8XGSWh{Ww* Da9;-` literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dec1af15236879072cdd04b02aad6856f682312a GIT binary patch literal 4939 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 RNZ-Gz&T?GOhXh-u=-=jQvX}q> literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/models/candidate.py b/env/Lib/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 00000000..f27f2831 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,25 @@ +from dataclasses import dataclass + +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.models.link import Link + + +@dataclass(frozen=True) +class InstallationCandidate: + """Represents a potential "candidate" for installation.""" + + __slots__ = ["name", "version", "link"] + + name: str + version: Version + link: Link + + def __init__(self, name: str, version: str, link: Link) -> None: + object.__setattr__(self, "name", name) + object.__setattr__(self, "version", parse_version(version)) + object.__setattr__(self, "link", link) + + def __str__(self) -> str: + return f"{self.name!r} candidate (version {self.version} at {self.link})" diff --git a/env/Lib/site-packages/pip/_internal/models/direct_url.py b/env/Lib/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 00000000..fc5ec8d4 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,224 @@ +""" PEP 610 """ + +import json +import re +import urllib.parse +from dataclasses import dataclass +from typing import Any, ClassVar, Dict, Iterable, Optional, Type, TypeVar, Union + +__all__ = [ + "DirectUrl", + "DirectUrlValidationError", + "DirInfo", + "ArchiveInfo", + "VcsInfo", +] + +T = TypeVar("T") + +DIRECT_URL_METADATA_NAME = "direct_url.json" +ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") + + +class DirectUrlValidationError(Exception): + pass + + +def _get( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> Optional[T]: + """Get value from dictionary and verify expected type.""" + if key not in d: + return default + value = d[key] + if not isinstance(value, expected_type): + raise DirectUrlValidationError( + f"{value!r} has unexpected type for {key} (expected {expected_type})" + ) + return value + + +def _get_required( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> T: + value = _get(d, expected_type, key, default) + if value is None: + raise DirectUrlValidationError(f"{key} must have a value") + return value + + +def _exactly_one_of(infos: Iterable[Optional["InfoType"]]) -> "InfoType": + infos = [info for info in infos if info is not None] + if not infos: + raise DirectUrlValidationError( + "missing one of archive_info, dir_info, vcs_info" + ) + if len(infos) > 1: + raise DirectUrlValidationError( + "more than one of archive_info, dir_info, vcs_info" + ) + assert infos[0] is not None + return infos[0] + + +def _filter_none(**kwargs: Any) -> Dict[str, Any]: + """Make dict excluding None values.""" + return {k: v for k, v in kwargs.items() if v is not None} + + +@dataclass +class VcsInfo: + name: ClassVar = "vcs_info" + + vcs: str + commit_id: str + requested_revision: Optional[str] = None + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["VcsInfo"]: + if d is None: + return None + return cls( + vcs=_get_required(d, str, "vcs"), + commit_id=_get_required(d, str, "commit_id"), + requested_revision=_get(d, str, "requested_revision"), + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: Optional[str] = None, + hashes: Optional[Dict[str, str]] = None, + ) -> None: + # set hashes before hash, since the hash setter will further populate hashes + self.hashes = hashes + self.hash = hash + + @property + def hash(self) -> Optional[str]: + return self._hash + + @hash.setter + def hash(self, value: Optional[str]) -> None: + if value is not None: + # Auto-populate the hashes key to upgrade to the new format automatically. + # We don't back-populate the legacy hash key from hashes. + try: + hash_name, hash_value = value.split("=", 1) + except ValueError: + raise DirectUrlValidationError( + f"invalid archive_info.hash format: {value!r}" + ) + if self.hashes is None: + self.hashes = {hash_name: hash_value} + elif hash_name not in self.hashes: + self.hashes = self.hashes.copy() + self.hashes[hash_name] = hash_value + self._hash = value + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["ArchiveInfo"]: + if d is None: + return None + return cls(hash=_get(d, str, "hash"), hashes=_get(d, dict, "hashes")) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(hash=self.hash, hashes=self.hashes) + + +@dataclass +class DirInfo: + name: ClassVar = "dir_info" + + editable: bool = False + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["DirInfo"]: + if d is None: + return None + return cls(editable=_get_required(d, bool, "editable", default=False)) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(editable=self.editable or None) + + +InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] + + +@dataclass +class DirectUrl: + url: str + info: InfoType + subdirectory: Optional[str] = None + + def _remove_auth_from_netloc(self, netloc: str) -> str: + if "@" not in netloc: + return netloc + user_pass, netloc_no_user_pass = netloc.split("@", 1) + if ( + isinstance(self.info, VcsInfo) + and self.info.vcs == "git" + and user_pass == "git" + ): + return netloc + if ENV_VAR_RE.match(user_pass): + return netloc + return netloc_no_user_pass + + @property + def redacted_url(self) -> str: + """url with user:password part removed unless it is formed with + environment variables as specified in PEP 610, or it is ``git`` + in the case of a git URL. + """ + purl = urllib.parse.urlsplit(self.url) + netloc = self._remove_auth_from_netloc(purl.netloc) + surl = urllib.parse.urlunsplit( + (purl.scheme, netloc, purl.path, purl.query, purl.fragment) + ) + return surl + + def validate(self) -> None: + self.from_dict(self.to_dict()) + + @classmethod + def from_dict(cls, d: Dict[str, Any]) -> "DirectUrl": + return DirectUrl( + url=_get_required(d, str, "url"), + subdirectory=_get(d, str, "subdirectory"), + info=_exactly_one_of( + [ + ArchiveInfo._from_dict(_get(d, dict, "archive_info")), + DirInfo._from_dict(_get(d, dict, "dir_info")), + VcsInfo._from_dict(_get(d, dict, "vcs_info")), + ] + ), + ) + + def to_dict(self) -> Dict[str, Any]: + res = _filter_none( + url=self.redacted_url, + subdirectory=self.subdirectory, + ) + res[self.info.name] = self.info._to_dict() + return res + + @classmethod + def from_json(cls, s: str) -> "DirectUrl": + return cls.from_dict(json.loads(s)) + + def to_json(self) -> str: + return json.dumps(self.to_dict(), sort_keys=True) + + def is_local_editable(self) -> bool: + return isinstance(self.info, DirInfo) and self.info.editable diff --git a/env/Lib/site-packages/pip/_internal/models/format_control.py b/env/Lib/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 00000000..ccd11272 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,78 @@ +from typing import FrozenSet, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import CommandError + + +class FormatControl: + """Helper for managing formats from which a package can be installed.""" + + __slots__ = ["no_binary", "only_binary"] + + def __init__( + self, + no_binary: Optional[Set[str]] = None, + only_binary: Optional[Set[str]] = None, + ) -> None: + if no_binary is None: + no_binary = set() + if only_binary is None: + only_binary = set() + + self.no_binary = no_binary + self.only_binary = only_binary + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + + if self.__slots__ != other.__slots__: + return False + + return all(getattr(self, k) == getattr(other, k) for k in self.__slots__) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.no_binary}, {self.only_binary})" + + @staticmethod + def handle_mutual_excludes(value: str, target: Set[str], other: Set[str]) -> None: + if value.startswith("-"): + raise CommandError( + "--no-binary / --only-binary option requires 1 argument." + ) + new = value.split(",") + while ":all:" in new: + other.clear() + target.clear() + target.add(":all:") + del new[: new.index(":all:") + 1] + # Without a none, we want to discard everything as :all: covers it + if ":none:" not in new: + return + for name in new: + if name == ":none:": + target.clear() + continue + name = canonicalize_name(name) + other.discard(name) + target.add(name) + + def get_allowed_formats(self, canonical_name: str) -> FrozenSet[str]: + result = {"binary", "source"} + if canonical_name in self.only_binary: + result.discard("source") + elif canonical_name in self.no_binary: + result.discard("binary") + elif ":all:" in self.only_binary: + result.discard("source") + elif ":all:" in self.no_binary: + result.discard("binary") + return frozenset(result) + + def disallow_binaries(self) -> None: + self.handle_mutual_excludes( + ":all:", + self.no_binary, + self.only_binary, + ) diff --git a/env/Lib/site-packages/pip/_internal/models/index.py b/env/Lib/site-packages/pip/_internal/models/index.py new file mode 100644 index 00000000..b94c3251 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/index.py @@ -0,0 +1,28 @@ +import urllib.parse + + +class PackageIndex: + """Represents a Package Index and provides easier access to endpoints""" + + __slots__ = ["url", "netloc", "simple_url", "pypi_url", "file_storage_domain"] + + def __init__(self, url: str, file_storage_domain: str) -> None: + super().__init__() + self.url = url + self.netloc = urllib.parse.urlsplit(url).netloc + self.simple_url = self._url_for_path("simple") + self.pypi_url = self._url_for_path("pypi") + + # This is part of a temporary hack used to block installs of PyPI + # packages which depend on external urls only necessary until PyPI can + # block such packages themselves + self.file_storage_domain = file_storage_domain + + def _url_for_path(self, path: str) -> str: + return urllib.parse.urljoin(self.url, path) + + +PyPI = PackageIndex("https://pypi.org/", file_storage_domain="files.pythonhosted.org") +TestPyPI = PackageIndex( + "https://test.pypi.org/", file_storage_domain="test-files.pythonhosted.org" +) diff --git a/env/Lib/site-packages/pip/_internal/models/installation_report.py b/env/Lib/site-packages/pip/_internal/models/installation_report.py new file mode 100644 index 00000000..b9c6330d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/installation_report.py @@ -0,0 +1,56 @@ +from typing import Any, Dict, Sequence + +from pip._vendor.packaging.markers import default_environment + +from pip import __version__ +from pip._internal.req.req_install import InstallRequirement + + +class InstallationReport: + def __init__(self, install_requirements: Sequence[InstallRequirement]): + self._install_requirements = install_requirements + + @classmethod + def _install_req_to_dict(cls, ireq: InstallRequirement) -> Dict[str, Any]: + assert ireq.download_info, f"No download_info for {ireq}" + res = { + # PEP 610 json for the download URL. download_info.archive_info.hashes may + # be absent when the requirement was installed from the wheel cache + # and the cache entry was populated by an older pip version that did not + # record origin.json. + "download_info": ireq.download_info.to_dict(), + # is_direct is true if the requirement was a direct URL reference (which + # includes editable requirements), and false if the requirement was + # downloaded from a PEP 503 index or --find-links. + "is_direct": ireq.is_direct, + # is_yanked is true if the requirement was yanked from the index, but + # was still selected by pip to conform to PEP 592. + "is_yanked": ireq.link.is_yanked if ireq.link else False, + # requested is true if the requirement was specified by the user (aka + # top level requirement), and false if it was installed as a dependency of a + # requirement. https://peps.python.org/pep-0376/#requested + "requested": ireq.user_supplied, + # PEP 566 json encoding for metadata + # https://www.python.org/dev/peps/pep-0566/#json-compatible-metadata + "metadata": ireq.get_dist().metadata_dict, + } + if ireq.user_supplied and ireq.extras: + # For top level requirements, the list of requested extras, if any. + res["requested_extras"] = sorted(ireq.extras) + return res + + def to_dict(self) -> Dict[str, Any]: + return { + "version": "1", + "pip_version": __version__, + "install": [ + self._install_req_to_dict(ireq) for ireq in self._install_requirements + ], + # https://peps.python.org/pep-0508/#environment-markers + # TODO: currently, the resolver uses the default environment to evaluate + # environment markers, so that is what we report here. In the future, it + # should also take into account options such as --python-version or + # --platform, perhaps under the form of an environment_override field? + # https://github.com/pypa/pip/issues/11198 + "environment": default_environment(), + } diff --git a/env/Lib/site-packages/pip/_internal/models/link.py b/env/Lib/site-packages/pip/_internal/models/link.py new file mode 100644 index 00000000..2f41f2f6 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/link.py @@ -0,0 +1,590 @@ +import functools +import itertools +import logging +import os +import posixpath +import re +import urllib.parse +from dataclasses import dataclass +from typing import ( + TYPE_CHECKING, + Any, + Dict, + List, + Mapping, + NamedTuple, + Optional, + Tuple, + Union, +) + +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + pairwise, + redact_auth_from_url, + split_auth_from_netloc, + splitext, +) +from pip._internal.utils.urls import path_to_url, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.collector import IndexContent + +logger = logging.getLogger(__name__) + + +# Order matters, earlier hashes have a precedence over later hashes for what +# we will pick to use. +_SUPPORTED_HASHES = ("sha512", "sha384", "sha256", "sha224", "sha1", "md5") + + +@dataclass(frozen=True) +class LinkHash: + """Links to content may have embedded hash values. This class parses those. + + `name` must be any member of `_SUPPORTED_HASHES`. + + This class can be converted to and from `ArchiveInfo`. While ArchiveInfo intends to + be JSON-serializable to conform to PEP 610, this class contains the logic for + parsing a hash name and value for correctness, and then checking whether that hash + conforms to a schema with `.is_hash_allowed()`.""" + + name: str + value: str + + _hash_url_fragment_re = re.compile( + # NB: we do not validate that the second group (.*) is a valid hex + # digest. Instead, we simply keep that string in this class, and then check it + # against Hashes when hash-checking is needed. This is easier to debug than + # proactively discarding an invalid hex digest, as we handle incorrect hashes + # and malformed hashes in the same place. + r"[#&]({choices})=([^&]*)".format( + choices="|".join(re.escape(hash_name) for hash_name in _SUPPORTED_HASHES) + ), + ) + + def __post_init__(self) -> None: + assert self.name in _SUPPORTED_HASHES + + @classmethod + @functools.lru_cache(maxsize=None) + def find_hash_url_fragment(cls, url: str) -> Optional["LinkHash"]: + """Search a string for a checksum algorithm name and encoded output value.""" + match = cls._hash_url_fragment_re.search(url) + if match is None: + return None + name, value = match.groups() + return cls(name=name, value=value) + + def as_dict(self) -> Dict[str, str]: + return {self.name: self.value} + + def as_hashes(self) -> Hashes: + """Return a Hashes instance which checks only for the current hash.""" + return Hashes({self.name: [self.value]}) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the current hash is allowed by `hashes`. + """ + if hashes is None: + return False + return hashes.is_hash_allowed(self.name, hex_digest=self.value) + + +@dataclass(frozen=True) +class MetadataFile: + """Information about a core metadata file associated with a distribution.""" + + hashes: Optional[Dict[str, str]] + + def __post_init__(self) -> None: + if self.hashes is not None: + assert all(name in _SUPPORTED_HASHES for name in self.hashes) + + +def supported_hashes(hashes: Optional[Dict[str, str]]) -> Optional[Dict[str, str]]: + # Remove any unsupported hash types from the mapping. If this leaves no + # supported hashes, return None + if hashes is None: + return None + hashes = {n: v for n, v in hashes.items() if n in _SUPPORTED_HASHES} + if not hashes: + return None + return hashes + + +def _clean_url_path_part(part: str) -> str: + """ + Clean a "part" of a URL path (i.e. after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + return urllib.parse.quote(urllib.parse.unquote(part)) + + +def _clean_file_url_path(part: str) -> str: + """ + Clean the first part of a URL path that corresponds to a local + filesystem path (i.e. the first part after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + # Also, on Windows the path part might contain a drive letter which + # should not be quoted. On Linux where drive letters do not + # exist, the colon should be quoted. We rely on urllib.request + # to do the right thing here. + return urllib.request.pathname2url(urllib.request.url2pathname(part)) + + +# percent-encoded: / +_reserved_chars_re = re.compile("(@|%2F)", re.IGNORECASE) + + +def _clean_url_path(path: str, is_local_path: bool) -> str: + """ + Clean the path portion of a URL. + """ + if is_local_path: + clean_func = _clean_file_url_path + else: + clean_func = _clean_url_path_part + + # Split on the reserved characters prior to cleaning so that + # revision strings in VCS URLs are properly preserved. + parts = _reserved_chars_re.split(path) + + cleaned_parts = [] + for to_clean, reserved in pairwise(itertools.chain(parts, [""])): + cleaned_parts.append(clean_func(to_clean)) + # Normalize %xx escapes (e.g. %2f -> %2F) + cleaned_parts.append(reserved.upper()) + + return "".join(cleaned_parts) + + +def _ensure_quoted_url(url: str) -> str: + """ + Make sure a link is fully quoted. + For example, if ' ' occurs in the URL, it will be replaced with "%20", + and without double-quoting other characters. + """ + # Split the URL into parts according to the general structure + # `scheme://netloc/path;parameters?query#fragment`. + result = urllib.parse.urlparse(url) + # If the netloc is empty, then the URL refers to a local filesystem path. + is_local_path = not result.netloc + path = _clean_url_path(result.path, is_local_path=is_local_path) + return urllib.parse.urlunparse(result._replace(path=path)) + + +@functools.total_ordering +class Link: + """Represents a parsed link from a Package Index's simple URL""" + + __slots__ = [ + "_parsed_url", + "_url", + "_hashes", + "comes_from", + "requires_python", + "yanked_reason", + "metadata_file_data", + "cache_link_parsing", + "egg_fragment", + ] + + def __init__( + self, + url: str, + comes_from: Optional[Union[str, "IndexContent"]] = None, + requires_python: Optional[str] = None, + yanked_reason: Optional[str] = None, + metadata_file_data: Optional[MetadataFile] = None, + cache_link_parsing: bool = True, + hashes: Optional[Mapping[str, str]] = None, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of IndexContent where the link was found, + or string. + :param requires_python: String containing the `Requires-Python` + metadata field, specified in PEP 345. This may be specified by + a data-requires-python attribute in the HTML link tag, as + described in PEP 503. + :param yanked_reason: the reason the file has been yanked, if the + file has been yanked, or None if the file hasn't been yanked. + This is the value of the "data-yanked" attribute, if present, in + a simple repository HTML link. If the file has been yanked but + no reason was provided, this should be the empty string. See + PEP 592 for more information and the specification. + :param metadata_file_data: the metadata attached to the file, or None if + no such metadata is provided. This argument, if not None, indicates + that a separate metadata file exists, and also optionally supplies + hashes for that file. + :param cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link should be cached. PyPI + URLs should generally have this set to False, for example. + :param hashes: A mapping of hash names to digests to allow us to + determine the validity of a download. + """ + + # The comes_from, requires_python, and metadata_file_data arguments are + # only used by classmethods of this class, and are not used in client + # code directly. + + # url can be a UNC windows share + if url.startswith("\\\\"): + url = path_to_url(url) + + self._parsed_url = urllib.parse.urlsplit(url) + # Store the url as a private attribute to prevent accidentally + # trying to set a new value. + self._url = url + + link_hash = LinkHash.find_hash_url_fragment(url) + hashes_from_link = {} if link_hash is None else link_hash.as_dict() + if hashes is None: + self._hashes = hashes_from_link + else: + self._hashes = {**hashes, **hashes_from_link} + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + self.metadata_file_data = metadata_file_data + + self.cache_link_parsing = cache_link_parsing + self.egg_fragment = self._egg_fragment() + + @classmethod + def from_json( + cls, + file_data: Dict[str, Any], + page_url: str, + ) -> Optional["Link"]: + """ + Convert an pypi json document from a simple repository page into a Link. + """ + file_url = file_data.get("url") + if file_url is None: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(page_url, file_url)) + pyrequire = file_data.get("requires-python") + yanked_reason = file_data.get("yanked") + hashes = file_data.get("hashes", {}) + + # PEP 714: Indexes must use the name core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = file_data.get("core-metadata") + if metadata_info is None: + metadata_info = file_data.get("dist-info-metadata") + + # The metadata info value may be a boolean, or a dict of hashes. + if isinstance(metadata_info, dict): + # The file exists, and hashes have been supplied + metadata_file_data = MetadataFile(supported_hashes(metadata_info)) + elif metadata_info: + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + else: + # False or not present: the file does not exist + metadata_file_data = None + + # The Link.yanked_reason expects an empty string instead of a boolean. + if yanked_reason and not isinstance(yanked_reason, str): + yanked_reason = "" + # The Link.yanked_reason expects None instead of False. + elif not yanked_reason: + yanked_reason = None + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + hashes=hashes, + metadata_file_data=metadata_file_data, + ) + + @classmethod + def from_element( + cls, + anchor_attribs: Dict[str, Optional[str]], + page_url: str, + base_url: str, + ) -> Optional["Link"]: + """ + Convert an anchor element's attributes in a simple repository page to a Link. + """ + href = anchor_attribs.get("href") + if not href: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(base_url, href)) + pyrequire = anchor_attribs.get("data-requires-python") + yanked_reason = anchor_attribs.get("data-yanked") + + # PEP 714: Indexes must use the name data-core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = anchor_attribs.get("data-core-metadata") + if metadata_info is None: + metadata_info = anchor_attribs.get("data-dist-info-metadata") + # The metadata info value may be the string "true", or a string of + # the form "hashname=hashval" + if metadata_info == "true": + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + elif metadata_info is None: + # The file does not exist + metadata_file_data = None + else: + # The file exists, and hashes have been supplied + hashname, sep, hashval = metadata_info.partition("=") + if sep == "=": + metadata_file_data = MetadataFile(supported_hashes({hashname: hashval})) + else: + # Error - data is wrong. Treat as no hashes supplied. + logger.debug( + "Index returned invalid data-dist-info-metadata value: %s", + metadata_info, + ) + metadata_file_data = MetadataFile(None) + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + metadata_file_data=metadata_file_data, + ) + + def __str__(self) -> str: + if self.requires_python: + rp = f" (requires-python:{self.requires_python})" + else: + rp = "" + if self.comes_from: + return f"{redact_auth_from_url(self._url)} (from {self.comes_from}){rp}" + else: + return redact_auth_from_url(str(self._url)) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash(self.url) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Link): + return NotImplemented + return self.url == other.url + + def __lt__(self, other: Any) -> bool: + if not isinstance(other, Link): + return NotImplemented + return self.url < other.url + + @property + def url(self) -> str: + return self._url + + @property + def filename(self) -> str: + path = self.path.rstrip("/") + name = posixpath.basename(path) + if not name: + # Make sure we don't leak auth information if the netloc + # includes a username and password. + netloc, user_pass = split_auth_from_netloc(self.netloc) + return netloc + + name = urllib.parse.unquote(name) + assert name, f"URL {self._url!r} produced no filename" + return name + + @property + def file_path(self) -> str: + return url_to_path(self.url) + + @property + def scheme(self) -> str: + return self._parsed_url.scheme + + @property + def netloc(self) -> str: + """ + This can contain auth information. + """ + return self._parsed_url.netloc + + @property + def path(self) -> str: + return urllib.parse.unquote(self._parsed_url.path) + + def splitext(self) -> Tuple[str, str]: + return splitext(posixpath.basename(self.path.rstrip("/"))) + + @property + def ext(self) -> str: + return self.splitext()[1] + + @property + def url_without_fragment(self) -> str: + scheme, netloc, path, query, fragment = self._parsed_url + return urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + + _egg_fragment_re = re.compile(r"[#&]egg=([^&]*)") + + # Per PEP 508. + _project_name_re = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE + ) + + def _egg_fragment(self) -> Optional[str]: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + + # An egg fragment looks like a PEP 508 project name, along with + # an optional extras specifier. Anything else is invalid. + project_name = match.group(1) + if not self._project_name_re.match(project_name): + deprecated( + reason=f"{self} contains an egg fragment with a non-PEP 508 name", + replacement="to use the req @ url syntax, and remove the egg fragment", + gone_in="25.0", + issue=11617, + ) + + return project_name + + _subdirectory_fragment_re = re.compile(r"[#&]subdirectory=([^&]*)") + + @property + def subdirectory_fragment(self) -> Optional[str]: + match = self._subdirectory_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + def metadata_link(self) -> Optional["Link"]: + """Return a link to the associated core metadata file (if any).""" + if self.metadata_file_data is None: + return None + metadata_url = f"{self.url_without_fragment}.metadata" + if self.metadata_file_data.hashes is None: + return Link(metadata_url) + return Link(metadata_url, hashes=self.metadata_file_data.hashes) + + def as_hashes(self) -> Hashes: + return Hashes({k: [v] for k, v in self._hashes.items()}) + + @property + def hash(self) -> Optional[str]: + return next(iter(self._hashes.values()), None) + + @property + def hash_name(self) -> Optional[str]: + return next(iter(self._hashes), None) + + @property + def show_url(self) -> str: + return posixpath.basename(self._url.split("#", 1)[0].split("?", 1)[0]) + + @property + def is_file(self) -> bool: + return self.scheme == "file" + + def is_existing_dir(self) -> bool: + return self.is_file and os.path.isdir(self.file_path) + + @property + def is_wheel(self) -> bool: + return self.ext == WHEEL_EXTENSION + + @property + def is_vcs(self) -> bool: + from pip._internal.vcs import vcs + + return self.scheme in vcs.all_schemes + + @property + def is_yanked(self) -> bool: + return self.yanked_reason is not None + + @property + def has_hash(self) -> bool: + return bool(self._hashes) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the link has a hash and it is allowed by `hashes`. + """ + if hashes is None: + return False + return any(hashes.is_hash_allowed(k, v) for k, v in self._hashes.items()) + + +class _CleanResult(NamedTuple): + """Convert link for equivalency check. + + This is used in the resolver to check whether two URL-specified requirements + likely point to the same distribution and can be considered equivalent. This + equivalency logic avoids comparing URLs literally, which can be too strict + (e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users. + + Currently this does three things: + + 1. Drop the basic auth part. This is technically wrong since a server can + serve different content based on auth, but if it does that, it is even + impossible to guarantee two URLs without auth are equivalent, since + the user can input different auth information when prompted. So the + practical solution is to assume the auth doesn't affect the response. + 2. Parse the query to avoid the ordering issue. Note that ordering under the + same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are + still considered different. + 3. Explicitly drop most of the fragment part, except ``subdirectory=`` and + hash values, since it should have no impact the downloaded content. Note + that this drops the "egg=" part historically used to denote the requested + project (and extras), which is wrong in the strictest sense, but too many + people are supplying it inconsistently to cause superfluous resolution + conflicts, so we choose to also ignore them. + """ + + parsed: urllib.parse.SplitResult + query: Dict[str, List[str]] + subdirectory: str + hashes: Dict[str, str] + + +def _clean_link(link: Link) -> _CleanResult: + parsed = link._parsed_url + netloc = parsed.netloc.rsplit("@", 1)[-1] + # According to RFC 8089, an empty host in file: means localhost. + if parsed.scheme == "file" and not netloc: + netloc = "localhost" + fragment = urllib.parse.parse_qs(parsed.fragment) + if "egg" in fragment: + logger.debug("Ignoring egg= fragment in %s", link) + try: + # If there are multiple subdirectory values, use the first one. + # This matches the behavior of Link.subdirectory_fragment. + subdirectory = fragment["subdirectory"][0] + except (IndexError, KeyError): + subdirectory = "" + # If there are multiple hash values under the same algorithm, use the + # first one. This matches the behavior of Link.hash_value. + hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment} + return _CleanResult( + parsed=parsed._replace(netloc=netloc, query="", fragment=""), + query=urllib.parse.parse_qs(parsed.query), + subdirectory=subdirectory, + hashes=hashes, + ) + + +@functools.lru_cache(maxsize=None) +def links_equivalent(link1: Link, link2: Link) -> bool: + return _clean_link(link1) == _clean_link(link2) diff --git a/env/Lib/site-packages/pip/_internal/models/scheme.py b/env/Lib/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 00000000..06a9a550 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,25 @@ +""" +For types associated with installation schemes. + +For a general overview of available schemes and their context, see +https://docs.python.org/3/install/index.html#alternate-installation. +""" + +from dataclasses import dataclass + +SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] + + +@dataclass(frozen=True) +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + platlib: str + purelib: str + headers: str + scripts: str + data: str diff --git a/env/Lib/site-packages/pip/_internal/models/search_scope.py b/env/Lib/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 00000000..ee7bc862 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,127 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +from dataclasses import dataclass +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.models.index import PyPI +from pip._internal.utils.compat import has_tls +from pip._internal.utils.misc import normalize_path, redact_auth_from_url + +logger = logging.getLogger(__name__) + + +@dataclass(frozen=True) +class SearchScope: + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls", "no_index"] + + find_links: List[str] + index_urls: List[str] + no_index: bool + + @classmethod + def create( + cls, + find_links: List[str], + index_urls: List[str], + no_index: bool, + ) -> "SearchScope": + """ + Create a SearchScope object after normalizing the `find_links`. + """ + # Build find_links. If an argument starts with ~, it may be + # a local file relative to a home directory. So try normalizing + # it and if it exists, use the normalized version. + # This is deliberately conservative - it might be fine just to + # blindly normalize anything starting with a ~... + built_find_links: List[str] = [] + for link in find_links: + if link.startswith("~"): + new_link = normalize_path(link) + if os.path.exists(new_link): + link = new_link + built_find_links.append(link) + + # If we don't have TLS enabled, then WARN if anyplace we're looking + # relies on TLS. + if not has_tls(): + for link in itertools.chain(index_urls, built_find_links): + parsed = urllib.parse.urlparse(link) + if parsed.scheme == "https": + logger.warning( + "pip is configured with locations that require " + "TLS/SSL, however the ssl module in Python is not " + "available." + ) + break + + return cls( + find_links=built_find_links, + index_urls=index_urls, + no_index=no_index, + ) + + def get_formatted_locations(self) -> str: + lines = [] + redacted_index_urls = [] + if self.index_urls and self.index_urls != [PyPI.simple_url]: + for url in self.index_urls: + redacted_index_url = redact_auth_from_url(url) + + # Parse the URL + purl = urllib.parse.urlsplit(redacted_index_url) + + # URL is generally invalid if scheme and netloc is missing + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not purl.scheme and not purl.netloc: + logger.warning( + 'The index url "%s" seems invalid, please provide a scheme.', + redacted_index_url, + ) + + redacted_index_urls.append(redacted_index_url) + + lines.append( + "Looking in indexes: {}".format(", ".join(redacted_index_urls)) + ) + + if self.find_links: + lines.append( + "Looking in links: {}".format( + ", ".join(redact_auth_from_url(url) for url in self.find_links) + ) + ) + return "\n".join(lines) + + def get_index_urls_locations(self, project_name: str) -> List[str]: + """Returns the locations found via self.index_urls + + Checks the url_name on the main (first in the list) index and + use this url_name to produce all locations + """ + + def mkurl_pypi_url(url: str) -> str: + loc = posixpath.join( + url, urllib.parse.quote(canonicalize_name(project_name)) + ) + # For maximum compatibility with easy_install, ensure the path + # ends in a trailing slash. Although this isn't in the spec + # (and PyPI can handle it without the slash) some other index + # implementations might break if they relied on easy_install's + # behavior. + if not loc.endswith("/"): + loc = loc + "/" + return loc + + return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/env/Lib/site-packages/pip/_internal/models/selection_prefs.py b/env/Lib/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 00000000..e9b50aa5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,53 @@ +from typing import Optional + +from pip._internal.models.format_control import FormatControl + + +# TODO: This needs Python 3.10's improved slots support for dataclasses +# to be converted into a dataclass. +class SelectionPreferences: + """ + Encapsulates the candidate selection preferences for downloading + and installing files. + """ + + __slots__ = [ + "allow_yanked", + "allow_all_prereleases", + "format_control", + "prefer_binary", + "ignore_requires_python", + ] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + allow_yanked: bool, + allow_all_prereleases: bool = False, + format_control: Optional[FormatControl] = None, + prefer_binary: bool = False, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """Create a SelectionPreferences object. + + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param format_control: A FormatControl object or None. Used to control + the selection of source packages / binary packages when consulting + the index and links. + :param prefer_binary: Whether to prefer an old, but valid, binary + dist over a new source dist. + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self.allow_yanked = allow_yanked + self.allow_all_prereleases = allow_all_prereleases + self.format_control = format_control + self.prefer_binary = prefer_binary + self.ignore_requires_python = ignore_requires_python diff --git a/env/Lib/site-packages/pip/_internal/models/target_python.py b/env/Lib/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 00000000..88925a9f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,121 @@ +import sys +from typing import List, Optional, Set, Tuple + +from pip._vendor.packaging.tags import Tag + +from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot +from pip._internal.utils.misc import normalize_version_info + + +class TargetPython: + """ + Encapsulates the properties of a Python interpreter one is targeting + for a package install, download, etc. + """ + + __slots__ = [ + "_given_py_version_info", + "abis", + "implementation", + "platforms", + "py_version", + "py_version_info", + "_valid_tags", + "_valid_tags_set", + ] + + def __init__( + self, + platforms: Optional[List[str]] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + abis: Optional[List[str]] = None, + implementation: Optional[str] = None, + ) -> None: + """ + :param platforms: A list of strings or None. If None, searches for + packages that are supported by the current system. Otherwise, will + find packages that can be built on the platforms passed in. These + packages will only be downloaded for distribution: they will + not be built locally. + :param py_version_info: An optional tuple of ints representing the + Python version information to use (e.g. `sys.version_info[:3]`). + This can have length 1, 2, or 3 when provided. + :param abis: A list of strings or None. This is passed to + compatibility_tags.py's get_supported() function as is. + :param implementation: A string or None. This is passed to + compatibility_tags.py's get_supported() function as is. + """ + # Store the given py_version_info for when we call get_supported(). + self._given_py_version_info = py_version_info + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + py_version = ".".join(map(str, py_version_info[:2])) + + self.abis = abis + self.implementation = implementation + self.platforms = platforms + self.py_version = py_version + self.py_version_info = py_version_info + + # This is used to cache the return value of get_(un)sorted_tags. + self._valid_tags: Optional[List[Tag]] = None + self._valid_tags_set: Optional[Set[Tag]] = None + + def format_given(self) -> str: + """ + Format the given, non-None attributes for display. + """ + display_version = None + if self._given_py_version_info is not None: + display_version = ".".join( + str(part) for part in self._given_py_version_info + ) + + key_values = [ + ("platforms", self.platforms), + ("version_info", display_version), + ("abis", self.abis), + ("implementation", self.implementation), + ] + return " ".join( + f"{key}={value!r}" for key, value in key_values if value is not None + ) + + def get_sorted_tags(self) -> List[Tag]: + """ + Return the supported PEP 425 tags to check wheel candidates against. + + The tags are returned in order of preference (most preferred first). + """ + if self._valid_tags is None: + # Pass versions=None if no py_version_info was given since + # versions=None uses special default logic. + py_version_info = self._given_py_version_info + if py_version_info is None: + version = None + else: + version = version_info_to_nodot(py_version_info) + + tags = get_supported( + version=version, + platforms=self.platforms, + abis=self.abis, + impl=self.implementation, + ) + self._valid_tags = tags + + return self._valid_tags + + def get_unsorted_tags(self) -> Set[Tag]: + """Exactly the same as get_sorted_tags, but returns a set. + + This is important for performance. + """ + if self._valid_tags_set is None: + self._valid_tags_set = set(self.get_sorted_tags()) + + return self._valid_tags_set diff --git a/env/Lib/site-packages/pip/_internal/models/wheel.py b/env/Lib/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 00000000..36d4d2e7 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,93 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" + +import re +from typing import Dict, Iterable, List + +from pip._vendor.packaging.tags import Tag + +from pip._internal.exceptions import InvalidWheelFilename + + +class Wheel: + """A wheel file""" + + wheel_file_re = re.compile( + r"""^(?P(?P[^\s-]+?)-(?P[^\s-]*?)) + ((-(?P\d[^-]*?))?-(?P[^\s-]+?)-(?P[^\s-]+?)-(?P[^\s-]+?) + \.whl|\.dist-info)$""", + re.VERBOSE, + ) + + def __init__(self, filename: str) -> None: + """ + :raises InvalidWheelFilename: when the filename is invalid for a wheel + """ + wheel_info = self.wheel_file_re.match(filename) + if not wheel_info: + raise InvalidWheelFilename(f"{filename} is not a valid wheel filename.") + self.filename = filename + self.name = wheel_info.group("name").replace("_", "-") + # we'll assume "_" means "-" due to wheel naming scheme + # (https://github.com/pypa/pip/issues/1150) + self.version = wheel_info.group("ver").replace("_", "-") + self.build_tag = wheel_info.group("build") + self.pyversions = wheel_info.group("pyver").split(".") + self.abis = wheel_info.group("abi").split(".") + self.plats = wheel_info.group("plat").split(".") + + # All the tag combinations from this file + self.file_tags = { + Tag(x, y, z) for x in self.pyversions for y in self.abis for z in self.plats + } + + def get_formatted_file_tags(self) -> List[str]: + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags: List[Tag]) -> int: + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + try: + return next(i for i, t in enumerate(tags) if t in self.file_tags) + except StopIteration: + raise ValueError() + + def find_most_preferred_tag( + self, tags: List[Tag], tag_to_priority: Dict[Tag, int] + ) -> int: + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations achieves in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags: Iterable[Tag]) -> bool: + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/env/Lib/site-packages/pip/_internal/network/__init__.py b/env/Lib/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 00000000..b51bde91 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..406e243155c8abb20c02da8a39e53565626f51df GIT binary patch literal 240 zcmXw!F$w}P5JeLe6~Q}fCnD>Lb|N-nCnDHMAVhaq2G=AcS!KO~wRi^4;tg!QfM{oB z7W6ms-xTxz+?ve>@oJqLDjLpB3pB+7&>2R*hhFj1MY5cV0!J)7a0 zS#%I;vDu0QEYqkXj?#gVB8`4|5%()}oOgBpsgHIl&Qchgs?R8@+v2llnNs>HQCcw- Fk6+j!MNj|$ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab39dabf85731a5cf5c90da2cf46c81d0b46f751 GIT binary patch literal 22085 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4a2a5f37f2a83a093ce1ec0a9347f99177b3490 GIT binary patch literal 18860 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6da0a65d2e988eb8e94bab66723281987d2cb558 GIT binary patch literal 2241 zcmb7FO-vg{6rR~1du@zO0Gq!AHpKim6q1xCA|$GWY$vHeBnpb!IBqS+JHUe3b!XT7 zSVlro4$jX34y_}lt&n=5O)BNsQ;w~m2!l)w_!Ea@I}2R0N1T#CILRS72RW(aCKo9o&Ot1> zV6Bw6BnM$gspJGLYx)h^B==1|;+}E_Jb%F)1sH=1$qC(XoF@vQab2YWYzUW$mQods zfb8oh`h-eHgQ}vCgf6Q}m{OHyJUxj7N$KrjC80{PGGqv{L=;`trwsdra8D?Fc|b;p zLk34-Gs8xSo~BBF0-IrX2M?TuZ_|L)Jmg~<>u>Z~G{O`O_qfg#hN{r=Vv$MODXSxifHz~;`#;w*aTEN1csoQDT%|QDjpHSyL;JQ35V{T8mi*EQF&rIDLSn4q%3RSl3fAV&XkE zrVUXuZ<+~MQ50Wa3U^2QNSrDF{^&sG@#rN=f@+#-r2WGvQO2Wv^7W`D>!dvuPmIQg zh!#!Bsbeu&(Fs-J$z#e+VI52Ba#HI^O&Mi0E^8zP2aoOi7OjF<4Q9}nKxWXIw`!*U zh5f*+Ki@Xj_Dy=l-c)e1j#F#in*6o7YpdRtC2z}uec5~b*13X!%6<8|xw@Qf-R{gu ztM2+Gcm0apKVR|8?qBy*ta=)jJPnI(ao+RDwlMi9^Vt7u>yy^UwTrI44Hh}7UP!@)HZC!eu(o%i}~5<02(rrirF&VzC>4Af~7~4sBM{hlwb~ z^|)wdMC&*Q)!^QNIY1czrs(|v&R}VL!mw#N)WewJ?$LEBUr*~~2l~*L;}Rge=?E;+o%r#H3#$r24D#Gd+_%s#BpJ;mq6@(*v^}6>^J~|g&^|mf~Ti0B^LI*l{ zxNrjb0)L|#pEDOOe1s~h@APh*gxU7iDdehsg>2yGE?=uWnD3kGTdizbs%)AcS*|>h z3qP-@eqQEXE3dlUTW}yxMS%y~f3zluc?0(x!Z(}S(2u6@prxmleNxVV_@vTi%C#)W z0gqwRr&3Uw)I1I~FVCoh`s;{6awU~^6tmkg1}!0}QS&V_sx6CRg?5lh^NE8ePqW$r zH9MohLOu;oEEZQ36`F^sjm3yopG3k|`5G*2N6XBg5P|%F zHi055xvzz@5ImhEAJe0-X1+_B4g@Lz@8i9fu>gAENp;C}(wj2W*0 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2350ccdeae4e243ca3d7c9232d86dad746d6596a GIT binary patch literal 2935 zcmZuzO>7&-6`tk(^WT(3QL zOG_eFg%KDijV4GOAdq^h3lwMy_t0aHNqX!>gpG>WIEaHHhu-MQK@IoPH@jRiRXqS_ z-kW*zIQzZ#y_vry5>W*0A~DpCGv#VjiTW~c#;S28?#qIis3w&pgRn@FU?-YfHKnAgX(jEiOXi_! zM#(TJf-qB=3J)_F@!>m6pee%B&*>wi4A-H+V&Ep$$ffE}-He zF9RR(h7VI8qUP)Kq;}2FabC+`eF}tE4`7(TW@yxO0LRs69$Ia=0)Ul#*^>=R#~W&c zn4V|{pn35I0H$jWc8n_a1cIFgvF6I$x6q&grN8|Tq5Fv0Moxe6Chwy6Ady`*Od19` z{k;{TZ`cMS@3ocUozT60CK&GH=q9QX_lsw*U)G_fSRW&Tb zQB_ZX&xEY=_&UTKdlIODB-rIONIp+gdxE6)z$gkHXJd1PB)~UG(k=y^7YlHM?T!uk zq?S$1wpG=pN1`C-uRnQh=EBkytP#twR+kpOcXnx>;OSZe{`vItOW3-$bj4U+vJD5H zu50DDv{h^`)s6ZYIIM$-rI}}}Aj8iDu`bm&$q;yN9{K;&D21Om1_t&8=pJ83j|3zq zZ;EXxw=;fEn!2AI-!^ZVd)a5(*=Ik#d^h_-E7ln~zBf{Aj}%+nyYWu$Sc`ivu@AeE z$E^WFh(twkO|x_pfQ%FTb_3gvx?IyY2@Q!SUc+R$X5(Un&>)t|VFd#PQ7rr<`2?y5 zq)4xZKx!~fgc{IxrzhEwpP+Xb7ghSH60FnSW!#7k)lf$(!WQrJ!(O51JJ2ez0~4US zd_S24U?NmhgV_?{zd}xbYfFWO_ds(6mvu#*{S$Ymce*XfITRYXQs|vQE(eL&PiOdt z;m~R@x>6-O&_XHnv4Bn>Cl}5Z5P5M+cI65U?12^_=8T8am1Cha7B#nyomeVUfersUuahbHG@k@YyJ7aF7r)^tp4 zPk`jXTD5s}c5!h&k7;GjPultQHN(XDRqQyx37CLF7d33dg34@_vB$zLLcg6HrX9u3 zivmd-mQPbcYo*84X=YNgljBrR`fDn|aF1BPYL;m0gr=b<_2&e$wz^77L75niQPxZ^ z7F-5uxu)Y{lu&pH#gF7^_YCcP@3d3^!&x{5nWVF)q4QY0QMM@oe5(5$nV<_|k0Q;n zr;xO_M*Z3y=zyY0lpfnD{GPp+D(p&y-Bh7-Xn1@4*7%Nd`{y6)e}3gJh28XvE&hJ; z@cZUXb1ymBPEOv&cazVx*lr{vXF4O3x0}1!=UbOLBS*HkZfym0?xcr0!_NSrVYVxy z+;{d7pG&r8AH`8(V&{!}@u|*{ZTz0w&P*&CW_4^7?P_=Ed9_wLZS-T1l3_fwPq zLLzt{%5Go$@ZxU#*asKy$20H0dh^vz`Ybr#j^B#!rBAifr$Bima*1R&iV~UsbW^bF ziB045DgRRHaUKRjW0O@;E{5t_UIT{|LI7-fg?1?ljfeCQq z`WI6vNOPL}UZPj^;h6-C^MpY41ZT4jI|!|-J_KG4E{#(E(kMY@;yQf}*#QYA{&%@| zr<8ivTY&13r`t3f!?XjY(L(E2c)07}1lV4~dT;~Cz~(DHyU6#c5q Optional[AuthInfo]: ... + + @abstractmethod + def save_auth_info(self, url: str, username: str, password: str) -> None: ... + + +class KeyRingNullProvider(KeyRingBaseProvider): + """Keyring null provider""" + + has_keyring = False + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return None + + +class KeyRingPythonProvider(KeyRingBaseProvider): + """Keyring interface which uses locally imported `keyring`""" + + has_keyring = True + + def __init__(self) -> None: + import keyring + + self.keyring = keyring + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # Support keyring's get_credential interface which supports getting + # credentials without a username. This is only available for + # keyring>=15.2.0. + if hasattr(self.keyring, "get_credential"): + logger.debug("Getting credentials from keyring for %s", url) + cred = self.keyring.get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username is not None: + logger.debug("Getting password from keyring for %s", url) + password = self.keyring.get_password(url, username) + if password: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + self.keyring.set_password(url, username, password) + + +class KeyRingCliProvider(KeyRingBaseProvider): + """Provider which uses `keyring` cli + + Instead of calling the keyring package installed alongside pip + we call keyring on the command line which will enable pip to + use which ever installation of keyring is available first in + PATH. + """ + + has_keyring = True + + def __init__(self, cmd: str) -> None: + self.keyring = cmd + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # This is the default implementation of keyring.get_credential + # https://github.com/jaraco/keyring/blob/97689324abcf01bd1793d49063e7ca01e03d7d07/keyring/backend.py#L134-L139 + if username is not None: + password = self._get_password(url, username) + if password is not None: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return self._set_password(url, username, password) + + def _get_password(self, service_name: str, username: str) -> Optional[str]: + """Mirror the implementation of keyring.get_password using cli""" + if self.keyring is None: + return None + + cmd = [self.keyring, "get", service_name, username] + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + res = subprocess.run( + cmd, + stdin=subprocess.DEVNULL, + stdout=subprocess.PIPE, + env=env, + ) + if res.returncode: + return None + return res.stdout.decode("utf-8").strip(os.linesep) + + def _set_password(self, service_name: str, username: str, password: str) -> None: + """Mirror the implementation of keyring.set_password using cli""" + if self.keyring is None: + return None + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + subprocess.run( + [self.keyring, "set", service_name, username], + input=f"{password}{os.linesep}".encode(), + env=env, + check=True, + ) + return None + + +@lru_cache(maxsize=None) +def get_keyring_provider(provider: str) -> KeyRingBaseProvider: + logger.verbose("Keyring provider requested: %s", provider) + + # keyring has previously failed and been disabled + if KEYRING_DISABLED: + provider = "disabled" + if provider in ["import", "auto"]: + try: + impl = KeyRingPythonProvider() + logger.verbose("Keyring provider set: import") + return impl + except ImportError: + pass + except Exception as exc: + # In the event of an unexpected exception + # we should warn the user + msg = "Installed copy of keyring fails with exception %s" + if provider == "auto": + msg = msg + ", trying to find a keyring executable as a fallback" + logger.warning(msg, exc, exc_info=logger.isEnabledFor(logging.DEBUG)) + if provider in ["subprocess", "auto"]: + cli = shutil.which("keyring") + if cli and cli.startswith(sysconfig.get_path("scripts")): + # all code within this function is stolen from shutil.which implementation + @typing.no_type_check + def PATH_as_shutil_which_determines_it() -> str: + path = os.environ.get("PATH", None) + if path is None: + try: + path = os.confstr("CS_PATH") + except (AttributeError, ValueError): + # os.confstr() or CS_PATH is not available + path = os.defpath + # bpo-35755: Don't use os.defpath if the PATH environment variable is + # set to an empty string + + return path + + scripts = Path(sysconfig.get_path("scripts")) + + paths = [] + for path in PATH_as_shutil_which_determines_it().split(os.pathsep): + p = Path(path) + try: + if not p.samefile(scripts): + paths.append(path) + except FileNotFoundError: + pass + + path = os.pathsep.join(paths) + + cli = shutil.which("keyring", path=path) + + if cli: + logger.verbose("Keyring provider set: subprocess with executable %s", cli) + return KeyRingCliProvider(cli) + + logger.verbose("Keyring provider set: disabled") + return KeyRingNullProvider() + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, + prompting: bool = True, + index_urls: Optional[List[str]] = None, + keyring_provider: str = "auto", + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + self.keyring_provider = keyring_provider # type: ignore[assignment] + self.passwords: Dict[str, AuthInfo] = {} + # When the user is prompted to enter credentials and keyring is + # available, we will offer to save them. If the user accepts, + # this value is set to the credentials they entered. After the + # request authenticates, the caller should call + # ``save_credentials`` to save these. + self._credentials_to_save: Optional[Credentials] = None + + @property + def keyring_provider(self) -> KeyRingBaseProvider: + return get_keyring_provider(self._keyring_provider) + + @keyring_provider.setter + def keyring_provider(self, provider: str) -> None: + # The free function get_keyring_provider has been decorated with + # functools.cache. If an exception occurs in get_keyring_auth that + # cache will be cleared and keyring disabled, take that into account + # if you want to remove this indirection. + self._keyring_provider = provider + + @property + def use_keyring(self) -> bool: + # We won't use keyring when --no-input is passed unless + # a specific provider is requested because it might require + # user interaction + return self.prompting or self._keyring_provider not in ["auto", "disabled"] + + def _get_keyring_auth( + self, + url: Optional[str], + username: Optional[str], + ) -> Optional[AuthInfo]: + """Return the tuple auth for a given url from keyring.""" + # Do nothing if no url was provided + if not url: + return None + + try: + return self.keyring_provider.get_auth_info(url, username) + except Exception as exc: + # Log the full exception (with stacktrace) at debug, so it'll only + # show up when running in verbose mode. + logger.debug("Keyring is skipped due to an exception", exc_info=True) + # Always log a shortened version of the exception. + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + global KEYRING_DISABLED + KEYRING_DISABLED = True + get_keyring_provider.cache_clear() + return None + + def _get_index_url(self, url: str) -> Optional[str]: + """Return the original index URL matching the requested URL. + + Cached or dynamically generated credentials may work against + the original index URL rather than just the netloc. + + The provided url should have had its username and password + removed already. If the original index url had credentials then + they will be included in the return value. + + Returns None if no matching index was found, or if --no-index + was specified by the user. + """ + if not url or not self.index_urls: + return None + + url = remove_auth_from_url(url).rstrip("/") + "/" + parsed_url = urllib.parse.urlsplit(url) + + candidates = [] + + for index in self.index_urls: + index = index.rstrip("/") + "/" + parsed_index = urllib.parse.urlsplit(remove_auth_from_url(index)) + if parsed_url == parsed_index: + return index + + if parsed_url.netloc != parsed_index.netloc: + continue + + candidate = urllib.parse.urlsplit(index) + candidates.append(candidate) + + if not candidates: + return None + + candidates.sort( + reverse=True, + key=lambda candidate: commonprefix( + [ + parsed_url.path, + candidate.path, + ] + ).rfind("/"), + ) + + return urllib.parse.urlunsplit(candidates[0]) + + def _get_new_credentials( + self, + original_url: str, + *, + allow_netrc: bool = True, + allow_keyring: bool = False, + ) -> AuthInfo: + """Find and return credentials for the specified URL.""" + # Split the credentials and netloc from the url. + url, netloc, url_user_password = split_auth_netloc_from_url( + original_url, + ) + + # Start with the credentials embedded in the url + username, password = url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in url for %s", netloc) + return url_user_password + + # Find a matching index url for this request + index_url = self._get_index_url(url) + if index_url: + # Split the credentials from the url. + index_info = split_auth_netloc_from_url(index_url) + if index_info: + index_url, _, index_url_user_password = index_info + logger.debug("Found index url %s", index_url) + + # If an index URL was found, try its embedded credentials + if index_url and index_url_user_password[0] is not None: + username, password = index_url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in index url for %s", netloc) + return index_url_user_password + + # Get creds from netrc if we still don't have them + if allow_netrc: + netrc_auth = get_netrc_auth(original_url) + if netrc_auth: + logger.debug("Found credentials in netrc for %s", netloc) + return netrc_auth + + # If we don't have a password and keyring is available, use it. + if allow_keyring: + # The index url is more specific than the netloc, so try it first + # fmt: off + kr_auth = ( + self._get_keyring_auth(index_url, username) or + self._get_keyring_auth(netloc, username) + ) + # fmt: on + if kr_auth: + logger.debug("Found credentials in keyring for %s", netloc) + return kr_auth + + return username, password + + def _get_url_and_credentials( + self, original_url: str + ) -> Tuple[str, Optional[str], Optional[str]]: + """Return the credentials to use for the provided URL. + + If allowed, netrc and keyring may be used to obtain the + correct credentials. + + Returns (url_without_credentials, username, password). Note + that even if the original URL contains credentials, this + function may return a different username and password. + """ + url, netloc, _ = split_auth_netloc_from_url(original_url) + + # Try to get credentials from original url + username, password = self._get_new_credentials(original_url) + + # If credentials not found, use any stored credentials for this netloc. + # Do this if either the username or the password is missing. + # This accounts for the situation in which the user has specified + # the username in the index url, but the password comes from keyring. + if (username is None or password is None) and netloc in self.passwords: + un, pw = self.passwords[netloc] + # It is possible that the cached credentials are for a different username, + # in which case the cache should be ignored. + if username is None or username == un: + username, password = un, pw + + if username is not None or password is not None: + # Convert the username and password if they're None, so that + # this netloc will show up as "cached" in the conditional above. + # Further, HTTPBasicAuth doesn't accept None, so it makes sense to + # cache the value that is going to be used. + username = username or "" + password = password or "" + + # Store any acquired credentials. + self.passwords[netloc] = (username, password) + + assert ( + # Credentials were found + (username is not None and password is not None) + # Credentials were not found + or (username is None and password is None) + ), f"Could not load credentials from url: {original_url}" + + return url, username, password + + def __call__(self, req: Request) -> Request: + # Get credentials for this request + url, username, password = self._get_url_and_credentials(req.url) + + # Set the url of the request to the url without any credentials + req.url = url + + if username is not None and password is not None: + # Send the basic auth with this request + req = HTTPBasicAuth(username, password)(req) + + # Attach a hook to handle 401 responses + req.register_hook("response", self.handle_401) + + return req + + # Factored out to allow for easy patching in tests + def _prompt_for_password( + self, netloc: str + ) -> Tuple[Optional[str], Optional[str], bool]: + username = ask_input(f"User for {netloc}: ") if self.prompting else None + if not username: + return None, None, False + if self.use_keyring: + auth = self._get_keyring_auth(netloc, username) + if auth and auth[0] is not None and auth[1] is not None: + return auth[0], auth[1], False + password = ask_password("Password: ") + return username, password, True + + # Factored out to allow for easy patching in tests + def _should_save_password_to_keyring(self) -> bool: + if ( + not self.prompting + or not self.use_keyring + or not self.keyring_provider.has_keyring + ): + return False + return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" + + def handle_401(self, resp: Response, **kwargs: Any) -> Response: + # We only care about 401 responses, anything else we want to just + # pass through the actual response + if resp.status_code != 401: + return resp + + username, password = None, None + + # Query the keyring for credentials: + if self.use_keyring: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # We are not able to prompt the user so simply return the response + if not self.prompting and not username and not password: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Prompt the user for a new username and password + save = False + if not username and not password: + username, password, save = self._prompt_for_password(parsed.netloc) + + # Store the new username and password to use for future requests + self._credentials_to_save = None + if username is not None and password is not None: + self.passwords[parsed.netloc] = (username, password) + + # Prompt to save the password to keyring + if save and self._should_save_password_to_keyring(): + self._credentials_to_save = Credentials( + url=parsed.netloc, + username=username, + password=password, + ) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + # The result of the assignment isn't used, it's just needed to consume + # the content. + _ = resp.content + resp.raw.release_conn() + + # Add our new username and password to the request + req = HTTPBasicAuth(username or "", password or "")(resp.request) + req.register_hook("response", self.warn_on_401) + + # On successful request, save the credentials that were used to + # keyring. (Note that if the user responded "no" above, this member + # is not set and nothing will be saved.) + if self._credentials_to_save: + req.register_hook("response", self.save_credentials) + + # Send our new request + new_resp = resp.connection.send(req, **kwargs) + new_resp.history.append(resp) + + return new_resp + + def warn_on_401(self, resp: Response, **kwargs: Any) -> None: + """Response callback to warn about incorrect credentials.""" + if resp.status_code == 401: + logger.warning( + "401 Error, Credentials not correct for %s", + resp.request.url, + ) + + def save_credentials(self, resp: Response, **kwargs: Any) -> None: + """Response callback to save credentials on success.""" + assert ( + self.keyring_provider.has_keyring + ), "should never reach here without keyring" + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + self.keyring_provider.save_auth_info( + creds.url, creds.username, creds.password + ) + except Exception: + logger.exception("Failed to save credentials") diff --git a/env/Lib/site-packages/pip/_internal/network/cache.py b/env/Lib/site-packages/pip/_internal/network/cache.py new file mode 100644 index 00000000..4d0fb545 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,106 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from datetime import datetime +from typing import BinaryIO, Generator, Optional, Union + +from pip._vendor.cachecontrol.cache import SeparateBodyBaseCache +from pip._vendor.cachecontrol.caches import SeparateBodyFileCache +from pip._vendor.requests.models import Response + +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import ensure_dir + + +def is_from_cache(response: Response) -> bool: + return getattr(response, "from_cache", False) + + +@contextmanager +def suppressed_cache_errors() -> Generator[None, None, None]: + """If we can't access the cache then we can just skip caching and process + requests as if caching wasn't enabled. + """ + try: + yield + except OSError: + pass + + +class SafeFileCache(SeparateBodyBaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + + There is a race condition when two processes try to write and/or read the + same entry at the same time, since each entry consists of two separate + files (https://github.com/psf/cachecontrol/issues/324). We therefore have + additional logic that makes sure that both files to be present before + returning an entry; this fixes the read side of the race condition. + + For the write side, we assume that the server will only ever return the + same data for the same URL, which ought to be the case for files pip is + downloading. PyPI does not have a mechanism to swap out a wheel for + another wheel, for example. If this assumption is not true, the + CacheControl issue will need to be fixed. + """ + + def __init__(self, directory: str) -> None: + assert directory is not None, "Cache directory must not be None." + super().__init__() + self.directory = directory + + def _get_cache_path(self, name: str) -> str: + # From cachecontrol.caches.file_cache.FileCache._fn, brought into our + # class for backwards-compatibility and to avoid using a non-public + # method. + hashed = SeparateBodyFileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> Optional[bytes]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + with open(metadata_path, "rb") as f: + return f.read() + + def _write(self, path: str, data: bytes) -> None: + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(data) + + replace(f.name, path) + + def set( + self, key: str, value: bytes, expires: Union[int, datetime, None] = None + ) -> None: + path = self._get_cache_path(key) + self._write(path, value) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) + with suppressed_cache_errors(): + os.remove(path + ".body") + + def get_body(self, key: str) -> Optional[BinaryIO]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + return open(body_path, "rb") + + def set_body(self, key: str, body: bytes) -> None: + path = self._get_cache_path(key) + ".body" + self._write(path, body) diff --git a/env/Lib/site-packages/pip/_internal/network/download.py b/env/Lib/site-packages/pip/_internal/network/download.py new file mode 100644 index 00000000..5c3bce3d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/download.py @@ -0,0 +1,187 @@ +"""Download files with progress indicators. +""" + +import email.message +import logging +import mimetypes +import os +from typing import Iterable, Optional, Tuple + +from pip._vendor.requests.models import Response + +from pip._internal.cli.progress_bars import get_download_progress_renderer +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.index import PyPI +from pip._internal.models.link import Link +from pip._internal.network.cache import is_from_cache +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext + +logger = logging.getLogger(__name__) + + +def _get_http_response_size(resp: Response) -> Optional[int]: + try: + return int(resp.headers["content-length"]) + except (ValueError, KeyError, TypeError): + return None + + +def _prepare_download( + resp: Response, + link: Link, + progress_bar: str, +) -> Iterable[bytes]: + total_length = _get_http_response_size(resp) + + if link.netloc == PyPI.file_storage_domain: + url = link.show_url + else: + url = link.url_without_fragment + + logged_url = redact_auth_from_url(url) + + if total_length: + logged_url = f"{logged_url} ({format_size(total_length)})" + + if is_from_cache(resp): + logger.info("Using cached %s", logged_url) + else: + logger.info("Downloading %s", logged_url) + + if logger.getEffectiveLevel() > logging.INFO: + show_progress = False + elif is_from_cache(resp): + show_progress = False + elif not total_length: + show_progress = True + elif total_length > (512 * 1024): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp) + + if not show_progress: + return chunks + + renderer = get_download_progress_renderer(bar_type=progress_bar, size=total_length) + return renderer(chunks) + + +def sanitize_content_filename(filename: str) -> str: + """ + Sanitize the "filename" value from a Content-Disposition header. + """ + return os.path.basename(filename) + + +def parse_content_disposition(content_disposition: str, default_filename: str) -> str: + """ + Parse the "filename" value from a Content-Disposition header, and + return the default filename if the result is empty. + """ + m = email.message.Message() + m["content-type"] = content_disposition + filename = m.get_param("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(str(filename)) + return filename or default_filename + + +def _get_http_response_filename(resp: Response, link: Link) -> str: + """Get an ideal filename from the given HTTP response, falling back to + the link filename if not provided. + """ + filename = link.filename # fallback + # Have a look at the Content-Disposition header for a better guess + content_disposition = resp.headers.get("content-disposition") + if content_disposition: + filename = parse_content_disposition(content_disposition, filename) + ext: Optional[str] = splitext(filename)[1] + if not ext: + ext = mimetypes.guess_extension(resp.headers.get("content-type", "")) + if ext: + filename += ext + if not ext and link.url != resp.url: + ext = os.path.splitext(resp.url)[1] + if ext: + filename += ext + return filename + + +def _http_get_download(session: PipSession, link: Link) -> Response: + target_url = link.url.split("#", 1)[0] + resp = session.get(target_url, headers=HEADERS, stream=True) + raise_for_status(resp) + return resp + + +class Downloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__(self, link: Link, location: str) -> Tuple[str, str]: + """Download the file given by link into location.""" + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", e.response.status_code, link + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + return filepath, content_type + + +class BatchDownloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__( + self, links: Iterable[Link], location: str + ) -> Iterable[Tuple[Link, Tuple[str, str]]]: + """Download the files given by links into location.""" + for link in links: + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", + e.response.status_code, + link, + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + yield link, (filepath, content_type) diff --git a/env/Lib/site-packages/pip/_internal/network/lazy_wheel.py b/env/Lib/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 00000000..82ec50d5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,210 @@ +"""Lazy ZIP over HTTP""" + +__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] + +from bisect import bisect_left, bisect_right +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, Dict, Generator, List, Optional, Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> BaseDistribution: + """Return a distribution object from the given wheel URL. + + This uses HTTP range requests to only fetch the portion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as zf: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + wheel = MemoryWheel(zf.name, zf) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return get_wheel_distribution(wheel, canonicalize_name(name)) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__( + self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE + ) -> None: + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers["Content-Length"]) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left: List[int] = [] + self._right: List[int] = [] + if "bytes" not in head.headers.get("Accept-Ranges", "none"): + raise HTTPRangeRequestUnsupported("range request is not supported") + self._check_zip() + + @property + def mode(self) -> str: + """Opening mode, which is always rb.""" + return "rb" + + @property + def name(self) -> str: + """Path to the underlying file.""" + return self._file.name + + def seekable(self) -> bool: + """Return whether random access is supported, which is True.""" + return True + + def close(self) -> None: + """Close the file.""" + self._file.close() + + @property + def closed(self) -> bool: + """Whether the file is closed.""" + return self._file.closed + + def read(self, size: int = -1) -> bytes: + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start + download_size, length) + start = max(0, stop - download_size) + self._download(start, stop - 1) + return self._file.read(size) + + def readable(self) -> bool: + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset: int, whence: int = 0) -> int: + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self) -> int: + """Return the current position.""" + return self._file.tell() + + def truncate(self, size: Optional[int] = None) -> int: + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self) -> bool: + """Return False.""" + return False + + def __enter__(self) -> "LazyZipOverHTTP": + self._file.__enter__() + return self + + def __exit__(self, *exc: Any) -> None: + self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Generator[None, None, None]: + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self) -> None: + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) # type: ignore + except BadZipFile: + pass + else: + break + + def _stream_response( + self, start: int, end: int, base_headers: Dict[str, str] = HEADERS + ) -> Response: + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers["Range"] = f"bytes={start}-{end}" + # TODO: Get range requests to be correctly cached + headers["Cache-Control"] = "no-cache" + return self._session.get(self._url, headers=headers, stream=True) + + def _merge( + self, start: int, end: int, left: int, right: int + ) -> Generator[Tuple[int, int], None, None]: + """Return a generator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start] + lslice[:1]) + end = max([end] + rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j - 1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start: int, end: int) -> None: + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/env/Lib/site-packages/pip/_internal/network/session.py b/env/Lib/site-packages/pip/_internal/network/session.py new file mode 100644 index 00000000..1765b4f6 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/session.py @@ -0,0 +1,522 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +import email.utils +import functools +import io +import ipaddress +import json +import logging +import mimetypes +import os +import platform +import shutil +import subprocess +import sys +import urllib.parse +import warnings +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Generator, + List, + Mapping, + Optional, + Sequence, + Tuple, + Union, +) + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter as _BaseCacheControlAdapter +from pip._vendor.requests.adapters import DEFAULT_POOLBLOCK, BaseAdapter +from pip._vendor.requests.adapters import HTTPAdapter as _BaseHTTPAdapter +from pip._vendor.requests.models import PreparedRequest, Response +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3.connectionpool import ConnectionPool +from pip._vendor.urllib3.exceptions import InsecureRequestWarning + +from pip import __version__ +from pip._internal.metadata import get_default_environment +from pip._internal.models.link import Link +from pip._internal.network.auth import MultiDomainBasicAuth +from pip._internal.network.cache import SafeFileCache + +# Import ssl from compat so the initial import occurs in only one place. +from pip._internal.utils.compat import has_tls +from pip._internal.utils.glibc import libc_ver +from pip._internal.utils.misc import build_url_from_netloc, parse_netloc +from pip._internal.utils.urls import url_to_path + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._vendor.urllib3.poolmanager import PoolManager + + +logger = logging.getLogger(__name__) + +SecureOrigin = Tuple[str, str, Optional[Union[int, str]]] + + +# Ignore warning raised when using --trusted-host. +warnings.filterwarnings("ignore", category=InsecureRequestWarning) + + +SECURE_ORIGINS: List[SecureOrigin] = [ + # protocol, hostname, port + # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) + ("https", "*", "*"), + ("*", "localhost", "*"), + ("*", "127.0.0.0/8", "*"), + ("*", "::1/128", "*"), + ("file", "*", None), + # ssh is always secure. + ("ssh", "*", "*"), +] + + +# These are environment variables present when running under various +# CI systems. For each variable, some CI systems that use the variable +# are indicated. The collection was chosen so that for each of a number +# of popular systems, at least one of the environment variables is used. +# This list is used to provide some indication of and lower bound for +# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. +# For more background, see: https://github.com/pypa/pip/issues/5499 +CI_ENVIRONMENT_VARIABLES = ( + # Azure Pipelines + "BUILD_BUILDID", + # Jenkins + "BUILD_ID", + # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI + "CI", + # Explicit environment variable. + "PIP_IS_CI", +) + + +def looks_like_ci() -> bool: + """ + Return whether it looks like pip is running under CI. + """ + # We don't use the method of checking for a tty (e.g. using isatty()) + # because some CI systems mimic a tty (e.g. Travis CI). Thus that + # method doesn't provide definitive information in either direction. + return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) + + +@functools.lru_cache(maxsize=1) +def user_agent() -> str: + """ + Return a string representing the user agent. + """ + data: Dict[str, Any] = { + "installer": {"name": "pip", "version": __version__}, + "python": platform.python_version(), + "implementation": { + "name": platform.python_implementation(), + }, + } + + if data["implementation"]["name"] == "CPython": + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "PyPy": + pypy_version_info = sys.pypy_version_info # type: ignore + if pypy_version_info.releaselevel == "final": + pypy_version_info = pypy_version_info[:3] + data["implementation"]["version"] = ".".join( + [str(x) for x in pypy_version_info] + ) + elif data["implementation"]["name"] == "Jython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "IronPython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + + if sys.platform.startswith("linux"): + from pip._vendor import distro + + linux_distribution = distro.name(), distro.version(), distro.codename() + distro_infos: Dict[str, Any] = dict( + filter( + lambda x: x[1], + zip(["name", "version", "id"], linux_distribution), + ) + ) + libc = dict( + filter( + lambda x: x[1], + zip(["lib", "version"], libc_ver()), + ) + ) + if libc: + distro_infos["libc"] = libc + if distro_infos: + data["distro"] = distro_infos + + if sys.platform.startswith("darwin") and platform.mac_ver()[0]: + data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} + + if platform.system(): + data.setdefault("system", {})["name"] = platform.system() + + if platform.release(): + data.setdefault("system", {})["release"] = platform.release() + + if platform.machine(): + data["cpu"] = platform.machine() + + if has_tls(): + import _ssl as ssl + + data["openssl_version"] = ssl.OPENSSL_VERSION + + setuptools_dist = get_default_environment().get_distribution("setuptools") + if setuptools_dist is not None: + data["setuptools_version"] = str(setuptools_dist.version) + + if shutil.which("rustc") is not None: + # If for any reason `rustc --version` fails, silently ignore it + try: + rustc_output = subprocess.check_output( + ["rustc", "--version"], stderr=subprocess.STDOUT, timeout=0.5 + ) + except Exception: + pass + else: + if rustc_output.startswith(b"rustc "): + # The format of `rustc --version` is: + # `b'rustc 1.52.1 (9bc8c42bb 2021-05-09)\n'` + # We extract just the middle (1.52.1) part + data["rustc_version"] = rustc_output.split(b" ")[1].decode() + + # Use None rather than False so as not to give the impression that + # pip knows it is not being run under CI. Rather, it is a null or + # inconclusive result. Also, we include some value rather than no + # value to make it easier to know that the check has been run. + data["ci"] = True if looks_like_ci() else None + + user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") + if user_data is not None: + data["user_data"] = user_data + + return "{data[installer][name]}/{data[installer][version]} {json}".format( + data=data, + json=json.dumps(data, separators=(",", ":"), sort_keys=True), + ) + + +class LocalFSAdapter(BaseAdapter): + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: Optional[Union[float, Tuple[float, float]]] = None, + verify: Union[bool, str] = True, + cert: Optional[Union[str, Tuple[str, str]]] = None, + proxies: Optional[Mapping[str, str]] = None, + ) -> Response: + pathname = url_to_path(request.url) + + resp = Response() + resp.status_code = 200 + resp.url = request.url + + try: + stats = os.stat(pathname) + except OSError as exc: + # format the exception raised as a io.BytesIO object, + # to return a better error message: + resp.status_code = 404 + resp.reason = type(exc).__name__ + resp.raw = io.BytesIO(f"{resp.reason}: {exc}".encode()) + else: + modified = email.utils.formatdate(stats.st_mtime, usegmt=True) + content_type = mimetypes.guess_type(pathname)[0] or "text/plain" + resp.headers = CaseInsensitiveDict( + { + "Content-Type": content_type, + "Content-Length": stats.st_size, + "Last-Modified": modified, + } + ) + + resp.raw = open(pathname, "rb") + resp.close = resp.raw.close + + return resp + + def close(self) -> None: + pass + + +class _SSLContextAdapterMixin: + """Mixin to add the ``ssl_context`` constructor argument to HTTP adapters. + + The additional argument is forwarded directly to the pool manager. This allows us + to dynamically decide what SSL store to use at runtime, which is used to implement + the optional ``truststore`` backend. + """ + + def __init__( + self, + *, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + self._ssl_context = ssl_context + super().__init__(**kwargs) + + def init_poolmanager( + self, + connections: int, + maxsize: int, + block: bool = DEFAULT_POOLBLOCK, + **pool_kwargs: Any, + ) -> "PoolManager": + if self._ssl_context is not None: + pool_kwargs.setdefault("ssl_context", self._ssl_context) + return super().init_poolmanager( # type: ignore[misc] + connections=connections, + maxsize=maxsize, + block=block, + **pool_kwargs, + ) + + +class HTTPAdapter(_SSLContextAdapterMixin, _BaseHTTPAdapter): + pass + + +class CacheControlAdapter(_SSLContextAdapterMixin, _BaseCacheControlAdapter): + pass + + +class InsecureHTTPAdapter(HTTPAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class InsecureCacheControlAdapter(CacheControlAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class PipSession(requests.Session): + timeout: Optional[int] = None + + def __init__( + self, + *args: Any, + retries: int = 0, + cache: Optional[str] = None, + trusted_hosts: Sequence[str] = (), + index_urls: Optional[List[str]] = None, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + """ + :param trusted_hosts: Domains not to emit warnings for when not using + HTTPS. + """ + super().__init__(*args, **kwargs) + + # Namespace the attribute with "pip_" just in case to prevent + # possible conflicts with the base class. + self.pip_trusted_origins: List[Tuple[str, Optional[int]]] = [] + + # Attach our User Agent to the request + self.headers["User-Agent"] = user_agent() + + # Attach our Authentication handler to the session + self.auth = MultiDomainBasicAuth(index_urls=index_urls) + + # Create our urllib3.Retry instance which will allow us to customize + # how we handle retries. + retries = urllib3.Retry( + # Set the total number of retries that a particular request can + # have. + total=retries, + # A 503 error from PyPI typically means that the Fastly -> Origin + # connection got interrupted in some way. A 503 error in general + # is typically considered a transient error so we'll go ahead and + # retry it. + # A 500 may indicate transient error in Amazon S3 + # A 502 may be a transient error from a CDN like CloudFlare or CloudFront + # A 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 502, 503, 520, 527], + # Add a small amount of back off between failed requests in + # order to prevent hammering the service. + backoff_factor=0.25, + ) # type: ignore + + # Our Insecure HTTPAdapter disables HTTPS validation. It does not + # support caching so we'll use it for all http:// URLs. + # If caching is disabled, we will also use it for + # https:// hosts that we've marked as ignoring + # TLS errors for (trusted-hosts). + insecure_adapter = InsecureHTTPAdapter(max_retries=retries) + + # We want to _only_ cache responses on securely fetched origins or when + # the host is specified as trusted. We do this because + # we can't validate the response of an insecurely/untrusted fetched + # origin, and we don't want someone to be able to poison the cache and + # require manual eviction from the cache to fix it. + if cache: + secure_adapter = CacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ssl_context=ssl_context, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries, ssl_context=ssl_context) + self._trusted_host_adapter = insecure_adapter + + self.mount("https://", secure_adapter) + self.mount("http://", insecure_adapter) + + # Enable file:// urls + self.mount("file://", LocalFSAdapter()) + + for host in trusted_hosts: + self.add_trusted_host(host, suppress_logging=True) + + def update_index_urls(self, new_index_urls: List[str]) -> None: + """ + :param new_index_urls: New index urls to update the authentication + handler with. + """ + self.auth.index_urls = new_index_urls + + def add_trusted_host( + self, host: str, source: Optional[str] = None, suppress_logging: bool = False + ) -> None: + """ + :param host: It is okay to provide a host that has previously been + added. + :param source: An optional source string, for logging where the host + string came from. + """ + if not suppress_logging: + msg = f"adding trusted host: {host!r}" + if source is not None: + msg += f" (from {source})" + logger.info(msg) + + parsed_host, parsed_port = parse_netloc(host) + if parsed_host is None: + raise ValueError(f"Trusted host URL must include a host part: {host!r}") + if (parsed_host, parsed_port) not in self.pip_trusted_origins: + self.pip_trusted_origins.append((parsed_host, parsed_port)) + + self.mount( + build_url_from_netloc(host, scheme="http") + "/", self._trusted_host_adapter + ) + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not parsed_port: + self.mount( + build_url_from_netloc(host, scheme="http") + ":", + self._trusted_host_adapter, + ) + # Mount wildcard ports for the same host. + self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) + + def iter_secure_origins(self) -> Generator[SecureOrigin, None, None]: + yield from SECURE_ORIGINS + for host, port in self.pip_trusted_origins: + yield ("*", host, "*" if port is None else port) + + def is_secure_origin(self, location: Link) -> bool: + # Determine if this url used a secure transport mechanism + parsed = urllib.parse.urlparse(str(location)) + origin_protocol, origin_host, origin_port = ( + parsed.scheme, + parsed.hostname, + parsed.port, + ) + + # The protocol to use to see if the protocol matches. + # Don't count the repository type as part of the protocol: in + # cases such as "git+ssh", only use "ssh". (I.e., Only verify against + # the last scheme.) + origin_protocol = origin_protocol.rsplit("+", 1)[-1] + + # Determine if our origin is a secure origin by looking through our + # hardcoded list of secure origins, as well as any additional ones + # configured on this PackageFinder instance. + for secure_origin in self.iter_secure_origins(): + secure_protocol, secure_host, secure_port = secure_origin + if origin_protocol != secure_protocol and secure_protocol != "*": + continue + + try: + addr = ipaddress.ip_address(origin_host or "") + network = ipaddress.ip_network(secure_host) + except ValueError: + # We don't have both a valid address or a valid network, so + # we'll check this origin against hostnames. + if ( + origin_host + and origin_host.lower() != secure_host.lower() + and secure_host != "*" + ): + continue + else: + # We have a valid address and network, so see if the address + # is contained within the network. + if addr not in network: + continue + + # Check to see if the port matches. + if ( + origin_port != secure_port + and secure_port != "*" + and secure_port is not None + ): + continue + + # If we've gotten here, then this origin matches the current + # secure origin and we should return True + return True + + # If we've gotten to this point, then the origin isn't secure and we + # will not accept it as a valid location to search. We will however + # log a warning that we are ignoring it. + logger.warning( + "The repository located at %s is not a trusted or secure host and " + "is being ignored. If this repository is available via HTTPS we " + "recommend you use HTTPS instead, otherwise you may silence " + "this warning and allow it anyway with '--trusted-host %s'.", + origin_host, + origin_host, + ) + + return False + + def request(self, method: str, url: str, *args: Any, **kwargs: Any) -> Response: + # Allow setting a default timeout on a session + kwargs.setdefault("timeout", self.timeout) + # Allow setting a default proxies on a session + kwargs.setdefault("proxies", self.proxies) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/env/Lib/site-packages/pip/_internal/network/utils.py b/env/Lib/site-packages/pip/_internal/network/utils.py new file mode 100644 index 00000000..bba4c265 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,98 @@ +from typing import Dict, Generator + +from pip._vendor.requests.models import Response + +from pip._internal.exceptions import NetworkConnectionError + +# The following comments and HTTP headers were originally added by +# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. +# +# We use Accept-Encoding: identity here because requests defaults to +# accepting compressed responses. This breaks in a variety of ways +# depending on how the server is configured. +# - Some servers will notice that the file isn't a compressible file +# and will leave the file alone and with an empty Content-Encoding +# - Some servers will notice that the file is already compressed and +# will leave the file alone, adding a Content-Encoding: gzip header +# - Some servers won't notice anything at all and will take a file +# that's already been compressed and compress it again, and set +# the Content-Encoding: gzip header +# By setting this to request only the identity encoding we're hoping +# to eliminate the third case. Hopefully there does not exist a server +# which when given a file will notice it is already compressed and that +# you're not asking for a compressed file and will then decompress it +# before sending because if that's the case I don't think it'll ever be +# possible to make this work. +HEADERS: Dict[str, str] = {"Accept-Encoding": "identity"} + +DOWNLOAD_CHUNK_SIZE = 256 * 1024 + + +def raise_for_status(resp: Response) -> None: + http_error_msg = "" + if isinstance(resp.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. + try: + reason = resp.reason.decode("utf-8") + except UnicodeDecodeError: + reason = resp.reason.decode("iso-8859-1") + else: + reason = resp.reason + + if 400 <= resp.status_code < 500: + http_error_msg = ( + f"{resp.status_code} Client Error: {reason} for url: {resp.url}" + ) + + elif 500 <= resp.status_code < 600: + http_error_msg = ( + f"{resp.status_code} Server Error: {reason} for url: {resp.url}" + ) + + if http_error_msg: + raise NetworkConnectionError(http_error_msg, response=resp) + + +def response_chunks( + response: Response, chunk_size: int = DOWNLOAD_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Given a requests Response, provide the data chunks.""" + try: + # Special case for urllib3. + for chunk in response.raw.stream( + chunk_size, + # We use decode_content=False here because we don't + # want urllib3 to mess with the raw bytes we get + # from the server. If we decompress inside of + # urllib3 then we cannot verify the checksum + # because the checksum will be of the compressed + # file. This breakage will only occur if the + # server adds a Content-Encoding header, which + # depends on how the server was configured: + # - Some servers will notice that the file isn't a + # compressible file and will leave the file alone + # and with an empty Content-Encoding + # - Some servers will notice that the file is + # already compressed and will leave the file + # alone and will add a Content-Encoding: gzip + # header + # - Some servers won't notice anything at all and + # will take a file that's already been compressed + # and compress it again and set the + # Content-Encoding: gzip header + # + # By setting this not to decode automatically we + # hope to eliminate problems with the second case. + decode_content=False, + ): + yield chunk + except AttributeError: + # Standard file-like object. + while True: + chunk = response.raw.read(chunk_size) + if not chunk: + break + yield chunk diff --git a/env/Lib/site-packages/pip/_internal/network/xmlrpc.py b/env/Lib/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 00000000..22ec8d2f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,62 @@ +"""xmlrpclib.Transport implementation +""" + +import logging +import urllib.parse +import xmlrpc.client +from typing import TYPE_CHECKING, Tuple + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status + +if TYPE_CHECKING: + from xmlrpc.client import _HostType, _Marshallable + + from _typeshed import SizedBuffer + +logger = logging.getLogger(__name__) + + +class PipXmlrpcTransport(xmlrpc.client.Transport): + """Provide a `xmlrpclib.Transport` implementation via a `PipSession` + object. + """ + + def __init__( + self, index_url: str, session: PipSession, use_datetime: bool = False + ) -> None: + super().__init__(use_datetime) + index_parts = urllib.parse.urlparse(index_url) + self._scheme = index_parts.scheme + self._session = session + + def request( + self, + host: "_HostType", + handler: str, + request_body: "SizedBuffer", + verbose: bool = False, + ) -> Tuple["_Marshallable", ...]: + assert isinstance(host, str) + parts = (self._scheme, host, handler, None, None, None) + url = urllib.parse.urlunparse(parts) + try: + headers = {"Content-Type": "text/xml"} + response = self._session.post( + url, + data=request_body, + headers=headers, + stream=True, + ) + raise_for_status(response) + self.verbose = verbose + return self.parse_response(response.raw) + except NetworkConnectionError as exc: + assert exc.response + logger.critical( + "HTTP error %s while getting %s", + exc.response.status_code, + url, + ) + raise diff --git a/env/Lib/site-packages/pip/_internal/operations/__init__.py b/env/Lib/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4612b85c44338369f0a9bc532b69e4c2fd30911 GIT binary patch literal 183 zcmX@j%ge<81nN_}(?RrO5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!3UjrJ@kvcA%FE14 zj|nz5hzTf4bDo)ikib>5Yi}A@!iYd-4N!2Y#OwLYBPc4oq$Sly0&&(@HEy_#G z(a$ePElMoO%+D*u*uC&Da}c>D`Ev&!wAI1AjU^#Mn=XWW*`dy DycsY& literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..32a2246309343612d76060290bef3b0882b166b6 GIT binary patch literal 7090 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6fea965a5e5760c6d7ad2d59feb0fdb0b50e4b56 GIT binary patch literal 10114 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..471454c58322f2868fd5786bc1b98ed404e58928 GIT binary patch literal 25777 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 E2M%|o3(Tu z9XF8!5#rDaM8yHYfkP!usQm+qI5nq8TvDZ|)e58v)C0Fbf`Y<@H*2p$t1^~n=6%fD z_wjr0M^#NDSVLcay7;+_&~KcGSF(B8t-$3gWTGN6u_@TNh~X4%!4Zoh<~+%k9Jwe* zciB!jN>Oo=#biV$?39x(rlY%Jw>g<&2JT5Bn<*liX`-5KL|sUlnNOr*`-+fNSI0ge zfngefp)C@ZP$RHBSF^oEtE??}RAXM1mWgIsETGnWl}lMJ{X2JdCX2)FeATkeyivYN zT=RnGT|IBuHlZLn5=kcAWs7>QL);)MguU;%EC7Y*BZca`PrWi>Y?4xshCQ((Q!PK< zH7uK$V62x`U2smXSwTf-z7-J;JT(>xh}BEP@!zp1DF+^12~+djDV?~>p)%iaEmTYh z)3RBZpd_eLw=6dE%?}0soZel)Jof?Yjm0Z)N4zaGs5P-JE;aA520z!NIy#Lo3ZSNq zWlFc3HrC`iUgGwjS#>$q;4f1Mv{KKg09ik@lSm;m!GEzgP}gVZpgp$mJTI3zW9i{p zmp*FQE1-T9MEK^iq-oR|FLWoT{j%b2E7d#e9OP=Lsla%9w@&eH|F6wAK4;&w&4KpnUrxMMt zWq9ja?t-Utu1t8ZG43VLAzufj$up&CVo(?2Efq#jmLU4`(DsZBzg~hSDotDSC1wR= zxEU`i`IbMTTW$aeHS7`3Z_W)i5=Ai*JCgHP!p`PcISiMcfUk2fvTtEqM|~A9ua{uxsdk*UqeROo8vdeZ%*8p_&RgT-fkP+l1BgD zQ_!)IKM{tQu)*f_EZC>6wGWXAp$ax3*3Ru`ua|e-?>n|LzH^I+uUd#`P-{X9* z{6pv4XQg{;66kwpQ~4fcBcbNIl#MQ#-+M$*+31z?1E~#70iBH@Ie${gc7%$qn_gMh z=`k=D_CgMG`ZA17k3ycB*wQO7LmB16C_El%#97X@h8mT)wC8ClxmG5AG@bv0o|m51 zf$43t+#w(v2tDyUr2qyh2TTLcA`JhiYTuz<_%@=wupJ~PprxudIY$S9UM2^!lML@fN3M0g7Sg5KCkbmOr{9eq0@KVN&RalStjosZ?@o(z2Y H3K;tr1GoE= literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc9063ea0d83eb70840698804a38bc5ab59ca203 GIT binary patch literal 1877 zcmZ`)-)|H}9G}^rch}n%dRQt&yAfN%z z_cP!7Nz-x&#^9Hq&92G_{mzASWRlIs9BjTq7OEf%TY`ft7*^2{T(Kfzu9F`klM8dx3W_14-WQh5l21chV58ovwnei z)+yh=aKdyPLcy{twv2lVHuXK1cwte9`rh?e2oCWfQ;k|c{W@W6oKl}gy(y5BZ5;2I zwnHok)<+v2fHM~DaL!Jhdy13vNaCMAl^cx)>_aa)q-o< z4vQ2@!Upx~Vv=vZsPNC_jTy{yAHv)kyaG4G>q1Lf5u4(CvQItux*|2v>j zbUlf&A~*3okN?DI%BctcGK;_~`-BUK&7C+(7Fi1aOVL1GpOC}OG{VzR&hJjGJ8M(= zxE*f_9YA5sPi{YmX!nX5YN>BixY0)3R6h|cWkvl+UBrv%qIe!H;sfYa#PFhk(RsKJ zMxUSiAN^EIUsRW!q|iinQwlbi?ahK%pEEt1xlFeRs{`+drQ4o9F+QOmK76Q@%jqyC z<2o`uoFgf9!L1$2O6gFFy_dUO-y+l-N*$(wkJ1I(v!Y$Ij$Z>-E*Y-r0imqrS0*S4 zOv(GrqyKGU4xzaiBb(d~B2Pqt!FSq#oS8IyG{r3Yj+Iw)Vc=Xov-JZ!y=N=SZxK|jwT^PJ{=C^G3W(IW+-OnH05QXmCWo2DKozL9U z25xHu*A{-(O6!8CP2v0f1NZt*-|jzsYwS+{hhOBkWYjsl)rE3}&3!1}dG*MZBUi_+ zjD4NI=G^HRS(8To*;LV<;lB`ukALYYeZP3O=j5#q)^<()yDoCw_Ld3}*0j=g9Od$} z+w2X%`pt9YLGcG%?vsDq{njz*rj`Nu=CN$KS6x-KazR}!$b8=`g3D^3Tt1jx)m89W z9hA$5)M8hp8iwW94TJ81a8Vy*wqz_oWA!N{Eg_vT2VIs?-map(u}7NwQoHR@iCcRg zw~~u>62$%c5l%h-xDWJqhn04i+M@3Mr#XetaygA!L>J-bA+FqaXamkhv=653%osen zhC`0i0T6jdWT#+)EMokpfU&fpAe?)Mjz2`BTY`v%zcUD*#J{4$>q;*kz2DWpF7ox| VH(Tp_XXEvOoY|B?PhW&!{{hhF2g3jW literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e4db3131e6de8f8022f21d88eb44742536a5b07b GIT binary patch literal 2997 zcmaJ@U2Ggz6~1?Nc4uaPy#nOPe{CMa8Or6A{7xH`nHV?0rSGSvpZ8e zjhNNmpL5PV_wW18xqnKf;t0NDKl@SX$09<1XPw|nb{bp1gU0(vM@6J#oilL}`!!eO zppKZ4GGF8|)A44s94p5BcGMKgVo@whMX4Mw#(i1LOq7$wq~8|IR5@Kt`)$$8l)H*u z7;%W;rIBC(U(}@g25$F?Ib9+>dYtqu@_OR?e6d$g5?)V%EDiq*>C?M9`lOx(eg6uV z@2;IWPh3@3T~#g-i%``yY)dxnlA+0qHkD0MQneM?v8z-gvTisoH5RJO$SK4>V>8d@ zvDY4k5 zaoWm(U|}zX>v~Z&OrnGD17-CJQ5@n{E3R#ujzUT$#jqA_MWrPN3^E$bq&T5V5T#xv z<;q!u63w;giYMt|Ge*G?wY1Jb`o|fAG6MgtZjio@+)%f~`T9LY9R-(g7G1*{S3(;1 z?LLH7aUCy3_n7(}9S8OfzS>*IKjE$p@Mx6-d(KI_LNG$->gX5fmt0`|Hg=^zR}ZCn z=aaNgmm%7!Js9`;@@)TGd^CePZtMukQIxGK1WfuFJCuAMkgfAU{$$R1N`~ZqI^l<3l zuU`52E7w=<4UKPhoxeLY{@!pX>-^smJ@?bYjgjfw z6Sq$^TSUq9wddY_ z?%LG5Q|r?8i4QLRdTKLqvcaGH&!b+Hoy86V%zEE6&;N#p!jt^XC~yK^%4eWbSyB8$ zjklwO;vc=?*g$ondx8$zHcUs`O$3OjZF*JO^nz~tTVlum#HRy|>imt41|v80q;q=Y zCLaKFiIMh+Z#BA$GPoYCM{Y&~Pph#yI)%U=LxKP4v4Co)(5fIIHzYGB}KE{kE1Ak=5Ykfw+B&jaQ&;B ziDM1^*uS?W)HC)7VK%IpTIM2ft{*as= ziQGxx>AvWlROb29{G9_Llbn{ObHWBrO{ay8bdx=0uMSLfgZmAFDV}{AEGT#AsD$Mu~saJ z$JezMg6g`q#j4i9ui)d&%y26L^{2VMRut-13}t&-0&9sVlWR$=6-Vi8E5TYx6qB}7 K(4rHtsQ&?5ydC-g literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b773fe1e8ff0ae7b5badfab217df358c5d96bee7 GIT binary patch literal 1663 zcmZux-ESL35Z}EIf7{Jxi<7Ec$w%vwI4w~~h(aY&Qb84^QOZj!S0~4}an3#89lPha zj$8-`p+tc4gc=DU;FQNk6ZO3(-1EE1_wcwzP&+XbSP{OL8*%Q*8s=X^hPbhY<^Q!M-`UW%XhrF*ZmLst;PB>|&F$N{4-6L-Z$ zRKk78@qonl^&=XGNKF^{Xp?O+ny-RdSuLV6E}^=ogn#WTudRw@66Jl9IndJu@?jBr zQy`|J6q#=36laAf^E30x*p+c*iK9TVsg;EWCqp3x#)8*4rq~&0MR6>pv_goX=*tQ# zX1UpN(J;#1PA93{1aGvYGcu&q8_twDh@SL3&8@}XCCt&y49A_)#K@#Fz}7mwRCz-6 z0LvCt*4mYeb{W#i1DKMIRWK3>OapNCwX@eVxEDpE#<-$)a4H9e~@rJ3%K zVH@rdTq~Bgb$dkBO@~mpo+Fk`s8=#J;-x#{#Yx&_x8tSsRh!t*L;4Ctj=;};fN34o zx=`d?HJqqQ37Bg_RPOpU5Zj7uMylPH9}YYTO#IP4bPzkg)4y}NdSRj(dFxOVIzk)1 znh(Xg_oIV*(ZQY7pQFixxUwG~+KUezv~?f!jn!n-Gkl1|p4i5X7b1#{9JQfHY-@aT zd~0fRYFpl3dmO%0l`g$#2VFIq{QD?`BHe!>;idSa4?lPknEd5bXHACXV|EcT{`}2p z3H{jh&V;zz765j4LY~I{-M9U~KayUZ9uyx9V3-q8*Ux(lMWr3E&-FQFc%5>TzZh;W zR4}Qo!eeGpDAWmr)D?Ky80Bw}d(N|H)Hqpmbb}>Z0I4G;m?O??9Y_JyYpkkLUR+mX z4)sd?9XbRV(K9d|2c`;^Ry4>}`WlG*VP>~ss)-omrzrLm1%E@m&(YQA==!r@&&HYk zV9#E#XM5stuzwv29>=dAgrYSO=(A{FO$G{Gh@Y+bITt{YQ?(%HLdX}}$bNGBC=3!k H4-x(WLQ|_$ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5c512ec75f549f095cc7bb29f0d27a247b36ffe GIT binary patch literal 2004 zcmZuyO>7%Q6rSDnuD$l!ZBnOge!FUt2A9++w4@;oNI10OC$y#IQY*z;dneAO>s>Rm zj_b&QQX$j`P}BozC4|%~DhG}n5TfD8#Z`+MwneH02*Jr}A{C_<-t1@lWx16u}ty{FCB>h|q702}W#vv2qC(SCNi%&O}*%=CT~{yvdh@tiUmuV1`O! zRxC+b$>T$2xD?4oIK(52W?BQIn=_8y;CwC{(?zW45*GC^%n|rxEMTP_wx^kG&9A!J2Mr-)H7P)Jht@LZ2SDUW}29|F}8lopwzI6aHNw| zEDMud)o`YBv}|}x2~(;Su^Y0q5_ZFR--z250tao2P=6F4a+8y0LyI96AdT%}eh~TjQ!hluTabs_24n z7FD@k^cxHatc^9^Rx)Ub+noPSybEbkc!NG<{?V8Ev&w7 zQ3v338oyToB$Tk_s1*h%)tScXsbiNLitYD}rLQebLR71OMFC!Mr<60DJ`LGhsK!;7jXz1o7LjZg|`liw*O??)1g%7W5pJNQlioyf@VErZL6zU%K?Ki=4Xw4scx z2z+bwvecANqU~;c->vw*>$5+{(@kE9cP)4K-R(YftNYM$vVD2r#iodQ4zD1gr}awo zk%$sQt9y}>SUj?DWN~a^?3#FO?sjZ{BeegY)m`-Q-|u*3l)u>;0siKwoEa3Cgk6~daj7E&n@c@RzBC{*`Jlig zLt`W0FM9-bc{ zYmu>%tyfI^GU)@B{nOENK$-%_araQ-9+H1WoqwV?|3Jqd$Q_q=-IY6T$sN~5Zp(ca xp|*RuXP2Y#rU3JUcyCjL84BLs)eN&$1S#8^GFwHFl(<~@@Z4$)IMNFq{snUN15E$` literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55adec792944026bcc912cd30d1f98e11f863de9 GIT binary patch literal 3836 zcmb_fOKcm*8J^{Gm%GcSNKp?uN!Qksl|{c_s^P+l?Vyb+w>5f*s(_`qD~j@xOUx`S zi=Ya%%|Su}SUwaM5Ezhw0##ujd~A=&wLl?N0=(V2h>9jabKAxOT=>*~X8DkXB&QCw zGygyH&-?$rfAr^YSV546e*0nJiy%V(qDnJG8^VjPKzM*Oq;UqC@=9*X2fEMTOa3W; zNthBiTF)C|DKHgavfq$O@|4VE!B9%UsbDEI72=Q&>1aOHoTOdqk;j~;O+__P_v^7< zP_=*_(Aii*6Q8SlHyP=>CIjd zEdjj}i(I<%OS+uNw9oNR6p7_XH!D`rEa!|g=Y-6PUe1zAv0TU8xeGE7DkYD2K90}BUjjx3f z0*$|gtk!t*0vq$S>~TZ0#Afxp)Rfxg?P~~OIlhn zw2#q4PiN~&i?yK}?2y#PL8!&DcWQ7GDoCnf77E33AyZ4d?H!{E$6YPyWs8iduQ;XF z*{t`Da7>*v%X)3-aP7~lL{~>g@922O1j#a0GG{KlUyB_wRMH}*yLUu7vyPpPf^J=( zoz?SJ@s2*B-_Z>x&{&isT)RI0vv(XxFKc9>Xw9YlScblsg06kjnojbL-_q||#19QB zq*uSVJ~lm}=WrSJHht^N$>|?s{cW>~i9ULIS})(3o+!>tlcJ@MR&x2}<0aXXY+*S15)Rwk)!yl-Q2 ztMANK?CiF5cE!IJj4r?X0@i~Zp`0t}#E~q$RLN>Z?D%O#{-D=Vnc*P=NcaXk05-@7 z!-S7vLZ}NC?ZZ-?ulpZ25W##?u;{(8G#_Y6?XoU3{h33HyhU%Ar8fRFKSRf8V@9El z0E^;7Vd?)iuf=$rPCHL;?@*d=a`}P!I#&mFr5xMb>n)U)YFB>B7)G_`bhVPR<|q=V z%-jdi#}s<{CeGnSmHCzm7Xkin;>AoYHNiZr(O}LtI#Q_C5^5gnIZM~nvZ>A%4V`3^ z$uB8i)h@M~N+t&Q&E?7};FMWqlpA2nE?ynZ&zU9xP(TYNR(eduz+wo~>q<+GNK6dl zGcU#wsB;1f9*7(shH!i)ar|^!j(^@PmI2E>v^PBkOk>gkc=9DuAe8Ya9#s`5L3EA) z*s~snvTW-Oil;;3ergOKc?20iCyv62wR0c-X!-izf-yVx-OaO`!&|3sY(?H#;cY3n z8|~kietKmmI=(H9ukg>M$i2vFWR2`fN9<_g^MJB)?l-lytH1u`USxQ)b5n8=cWT5Q zIk`FXH16_T_?*ilIpj)^ealdv2gCO+tX{ZxdG+$Tv@x*BJsRE#j%@iya5t>d3A31$ ztt@8QsVD?ECa*JOMGA&FlQXg=3wy)~dmC=50(Al{---z^8s$ZXyblf|57@o#uM1DO z#|Hf& zs%0800DX;+p;j4?D7ue%K7FhK+r|qeqbSt%Jw_lcI%rVAtV*hR`jDBe8ivONRz|%E z!{LP@(T}U%TZOQIn_(lRc{~KifrlY;q7e72VwnXg>TtCLTPnr2Hv{90pgPQ46hcHw)7sVrJ^@Fr*)s|Q|SFl~a)$mbU{C(wAcIf9O{iED4%$N{@(-p*g2 ze1J@*g>PhtbP!YL$J8%8t`RhSrdq%>L^$&GyLp`<#}Q|XRNb?-ilv z|EPQXJpZTY)r-DQq(Klrxp;E?jPU6&2lA(@7!P_g-dV6K^MlsXyGQ!-$>3`jzY84HVIr#4a1u1hU=dG_bZT;84 zyvuum$`Fhuyho^%&C>Xo&3cZ=6AODWu%E7xUhf|eBYfrqucXT*Q>z;K6?_$%fUFVu zH)If1IPUK#0)L;OqhFvi|3E+a4Bgz5Q!Cxi_b-dC*ull@c-I=apLThW z_d2^>0ZLayqWmI2rQsg#xE+kH@vE0y9^}19hbuq{Cc%gsppt|V-E0V%Y6?pBxIrp~ zkQiCX|LXl0VXB=U;Zn8|c6liG5?!tUB@EKh=?17Ip=9rR;{Fd@nQHJ{?OEsVUvh&~ UgSTeX4O1!77;--f8as*q0jZVJz5oCK literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/build/build_tracker.py b/env/Lib/site-packages/pip/_internal/operations/build/build_tracker.py new file mode 100644 index 00000000..0ed8dd23 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/build_tracker.py @@ -0,0 +1,138 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Generator, Optional, Type, Union + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +@contextlib.contextmanager +def update_env_context_manager(**changes: str) -> Generator[None, None, None]: + target = os.environ + + # Save values from the target and change them. + non_existent_marker = object() + saved_values: Dict[str, Union[object, str]] = {} + for name, new_value in changes.items(): + try: + saved_values[name] = target[name] + except KeyError: + saved_values[name] = non_existent_marker + target[name] = new_value + + try: + yield + finally: + # Restore original values in the target. + for name, original_value in saved_values.items(): + if original_value is non_existent_marker: + del target[name] + else: + assert isinstance(original_value, str) # for mypy + target[name] = original_value + + +@contextlib.contextmanager +def get_build_tracker() -> Generator["BuildTracker", None, None]: + root = os.environ.get("PIP_BUILD_TRACKER") + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context(TempDirectory(kind="build-tracker")).path + ctx.enter_context(update_env_context_manager(PIP_BUILD_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with BuildTracker(root) as tracker: + yield tracker + + +class TrackerId(str): + """Uniquely identifying string provided to the build tracker.""" + + +class BuildTracker: + """Ensure that an sdist cannot request itself as a setup requirement. + + When an sdist is prepared, it identifies its setup requirements in the + context of ``BuildTracker.track()``. If a requirement shows up recursively, this + raises an exception. + + This stops fork bombs embedded in malicious packages.""" + + def __init__(self, root: str) -> None: + self._root = root + self._entries: Dict[TrackerId, InstallRequirement] = {} + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self) -> "BuildTracker": + logger.debug("Entered build tracker: %s", self._root) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.cleanup() + + def _entry_path(self, key: TrackerId) -> str: + hashed = hashlib.sha224(key.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req: InstallRequirement, key: TrackerId) -> None: + """Add an InstallRequirement to build tracking.""" + + # Get the file to write information about this requirement. + entry_path = self._entry_path(key) + + # Try reading from the file. If it exists and can be read from, a build + # is already in progress, so a LookupError is raised. + try: + with open(entry_path) as fp: + contents = fp.read() + except FileNotFoundError: + pass + else: + message = f"{req.link} is already being built: {contents}" + raise LookupError(message) + + # If we're here, req should really not be building already. + assert key not in self._entries + + # Start tracking this requirement. + with open(entry_path, "w", encoding="utf-8") as fp: + fp.write(str(req)) + self._entries[key] = req + + logger.debug("Added %s to build tracker %r", req, self._root) + + def remove(self, req: InstallRequirement, key: TrackerId) -> None: + """Remove an InstallRequirement from build tracking.""" + + # Delete the created file and the corresponding entry. + os.unlink(self._entry_path(key)) + del self._entries[key] + + logger.debug("Removed %s from build tracker %r", req, self._root) + + def cleanup(self) -> None: + for key, req in list(self._entries.items()): + self.remove(req, key) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req: InstallRequirement, key: str) -> Generator[None, None, None]: + """Ensure that `key` cannot install itself as a setup requirement. + + :raises LookupError: If `key` was already provided in a parent invocation of + the context introduced by this method.""" + tracker_id = TrackerId(key) + self.add(req, tracker_id) + yield + self.remove(req, tracker_id) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/metadata.py b/env/Lib/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 00000000..c66ac354 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/metadata.py @@ -0,0 +1,39 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 517. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message("Preparing metadata (pyproject.toml)") + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py b/env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 00000000..27c69f0d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -0,0 +1,41 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_editable_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 660. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel/editable, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message( + "Preparing editable metadata (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_editable(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py b/env/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 00000000..c01dd1c6 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py @@ -0,0 +1,74 @@ +"""Metadata generation logic for legacy source distributions. +""" + +import logging +import os + +from pip._internal.build_env import BuildEnvironment +from pip._internal.cli.spinners import open_spinner +from pip._internal.exceptions import ( + InstallationError, + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.setuptools_build import make_setuptools_egg_info_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +def _find_egg_info(directory: str) -> str: + """Find an .egg-info subdirectory in `directory`.""" + filenames = [f for f in os.listdir(directory) if f.endswith(".egg-info")] + + if not filenames: + raise InstallationError(f"No .egg-info directory found in {directory}") + + if len(filenames) > 1: + raise InstallationError( + f"More than one .egg-info directory found in {directory}" + ) + + return os.path.join(directory, filenames[0]) + + +def generate_metadata( + build_env: BuildEnvironment, + setup_py_path: str, + source_dir: str, + isolated: bool, + details: str, +) -> str: + """Generate metadata using setup.py-based defacto mechanisms. + + Returns the generated metadata directory. + """ + logger.debug( + "Running setup.py (path:%s) egg_info for package %s", + setup_py_path, + details, + ) + + egg_info_dir = TempDirectory(kind="pip-egg-info", globally_managed=True).path + + args = make_setuptools_egg_info_args( + setup_py_path, + egg_info_dir=egg_info_dir, + no_user_config=isolated, + ) + + with build_env: + with open_spinner("Preparing metadata (setup.py)") as spinner: + try: + call_subprocess( + args, + cwd=source_dir, + command_desc="python setup.py egg_info", + spinner=spinner, + ) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + # Return the .egg-info directory. + return _find_egg_info(egg_info_dir) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/wheel.py b/env/Lib/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 00000000..064811ad --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,37 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 517 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building wheel for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + wheel_name = backend.build_wheel( + tempd, + metadata_directory=metadata_directory, + ) + except Exception: + logger.error("Failed building wheel for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py b/env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 00000000..719d69dd --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py @@ -0,0 +1,46 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller, HookMissing + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_editable( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 660 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building editable for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + wheel_name = backend.build_editable( + tempd, + metadata_directory=metadata_directory, + ) + except HookMissing as e: + logger.error( + "Cannot build editable %s because the build " + "backend does not have the %s hook", + name, + e, + ) + return None + except Exception: + logger.error("Failed building editable for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py b/env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 00000000..3ee2a705 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py @@ -0,0 +1,102 @@ +import logging +import os.path +from typing import List, Optional + +from pip._internal.cli.spinners import open_spinner +from pip._internal.utils.setuptools_build import make_setuptools_bdist_wheel_args +from pip._internal.utils.subprocess import call_subprocess, format_command_args + +logger = logging.getLogger(__name__) + + +def format_command_result( + command_args: List[str], + command_output: str, +) -> str: + """Format command information for logging.""" + command_desc = format_command_args(command_args) + text = f"Command arguments: {command_desc}\n" + + if not command_output: + text += "Command output: None" + elif logger.getEffectiveLevel() > logging.DEBUG: + text += "Command output: [use --verbose to show]" + else: + if not command_output.endswith("\n"): + command_output += "\n" + text += f"Command output:\n{command_output}" + + return text + + +def get_legacy_build_wheel_path( + names: List[str], + temp_dir: str, + name: str, + command_args: List[str], + command_output: str, +) -> Optional[str]: + """Return the path to the wheel in the temporary build directory.""" + # Sort for determinism. + names = sorted(names) + if not names: + msg = f"Legacy build of wheel for {name!r} created no files.\n" + msg += format_command_result(command_args, command_output) + logger.warning(msg) + return None + + if len(names) > 1: + msg = ( + f"Legacy build of wheel for {name!r} created more than one file.\n" + f"Filenames (choosing first): {names}\n" + ) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + + return os.path.join(temp_dir, names[0]) + + +def build_wheel_legacy( + name: str, + setup_py_path: str, + source_dir: str, + global_options: List[str], + build_options: List[str], + tempd: str, +) -> Optional[str]: + """Build one unpacked package using the "legacy" build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + wheel_args = make_setuptools_bdist_wheel_args( + setup_py_path, + global_options=global_options, + build_options=build_options, + destination_dir=tempd, + ) + + spin_message = f"Building wheel for {name} (setup.py)" + with open_spinner(spin_message) as spinner: + logger.debug("Destination directory: %s", tempd) + + try: + output = call_subprocess( + wheel_args, + command_desc="python setup.py bdist_wheel", + cwd=source_dir, + spinner=spinner, + ) + except Exception: + spinner.finish("error") + logger.error("Failed building wheel for %s", name) + return None + + names = os.listdir(tempd) + wheel_path = get_legacy_build_wheel_path( + names=names, + temp_dir=tempd, + name=name, + command_args=wheel_args, + command_output=output, + ) + return wheel_path diff --git a/env/Lib/site-packages/pip/_internal/operations/check.py b/env/Lib/site-packages/pip/_internal/operations/check.py new file mode 100644 index 00000000..4b6fbc4c --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,181 @@ +"""Validation of dependencies of packages +""" + +import logging +from contextlib import suppress +from email.parser import Parser +from functools import reduce +from typing import ( + Callable, + Dict, + FrozenSet, + Generator, + Iterable, + List, + NamedTuple, + Optional, + Set, + Tuple, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.tags import Tag, parse_tag +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import BaseDistribution +from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +class PackageDetails(NamedTuple): + version: Version + dependencies: List[Requirement] + + +# Shorthands +PackageSet = Dict[NormalizedName, PackageDetails] +Missing = Tuple[NormalizedName, Requirement] +Conflicting = Tuple[NormalizedName, Version, Requirement] + +MissingDict = Dict[NormalizedName, List[Missing]] +ConflictingDict = Dict[NormalizedName, List[Conflicting]] +CheckResult = Tuple[MissingDict, ConflictingDict] +ConflictDetails = Tuple[PackageSet, CheckResult] + + +def create_package_set_from_installed() -> Tuple[PackageSet, bool]: + """Converts a list of distributions into a PackageSet.""" + package_set = {} + problems = False + env = get_default_environment() + for dist in env.iter_installed_distributions(local_only=False, skip=()): + name = dist.canonical_name + try: + dependencies = list(dist.iter_dependencies()) + package_set[name] = PackageDetails(dist.version, dependencies) + except (OSError, ValueError) as e: + # Don't crash on unreadable or broken metadata. + logger.warning("Error parsing dependencies of %s: %s", name, e) + problems = True + return package_set, problems + + +def check_package_set( + package_set: PackageSet, should_ignore: Optional[Callable[[str], bool]] = None +) -> CheckResult: + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps: Set[Missing] = set() + conflicting_deps: Set[Conflicting] = set() + + if should_ignore and should_ignore(package_name): + continue + + for req in package_detail.dependencies: + name = canonicalize_name(req.name) + + # Check if it's missing + if name not in package_set: + missed = True + if req.marker is not None: + missed = req.marker.evaluate({"extra": ""}) + if missed: + missing_deps.add((name, req)) + continue + + # Check if there's a conflict + version = package_set[name].version + if not req.specifier.contains(version, prereleases=True): + conflicting_deps.add((name, version, req)) + + if missing_deps: + missing[package_name] = sorted(missing_deps, key=str) + if conflicting_deps: + conflicting[package_name] = sorted(conflicting_deps, key=str) + + return missing, conflicting + + +def check_install_conflicts(to_install: List[InstallRequirement]) -> ConflictDetails: + """For checking if the dependency graph would be consistent after \ + installing given requirements + """ + # Start from the current state + package_set, _ = create_package_set_from_installed() + # Install packages + would_be_installed = _simulate_installation_of(to_install, package_set) + + # Only warn about directly-dependent packages; create a whitelist of them + whitelist = _create_whitelist(would_be_installed, package_set) + + return ( + package_set, + check_package_set( + package_set, should_ignore=lambda name: name not in whitelist + ), + ) + + +def check_unsupported( + packages: Iterable[BaseDistribution], + supported_tags: Iterable[Tag], +) -> Generator[BaseDistribution, None, None]: + for p in packages: + with suppress(FileNotFoundError): + wheel_file = p.read_text("WHEEL") + wheel_tags: FrozenSet[Tag] = reduce( + frozenset.union, + map(parse_tag, Parser().parsestr(wheel_file).get_all("Tag", [])), + frozenset(), + ) + if wheel_tags.isdisjoint(supported_tags): + yield p + + +def _simulate_installation_of( + to_install: List[InstallRequirement], package_set: PackageSet +) -> Set[NormalizedName]: + """Computes the version of packages after installing to_install.""" + # Keep track of packages that were installed + installed = set() + + # Modify it as installing requirement_set would (assuming no errors) + for inst_req in to_install: + abstract_dist = make_distribution_for_install_requirement(inst_req) + dist = abstract_dist.get_metadata_distribution() + name = dist.canonical_name + package_set[name] = PackageDetails(dist.version, list(dist.iter_dependencies())) + + installed.add(name) + + return installed + + +def _create_whitelist( + would_be_installed: Set[NormalizedName], package_set: PackageSet +) -> Set[NormalizedName]: + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].dependencies: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected diff --git a/env/Lib/site-packages/pip/_internal/operations/freeze.py b/env/Lib/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 00000000..bb1039fb --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,258 @@ +import collections +import logging +import os +from typing import Container, Dict, Generator, Iterable, List, NamedTuple, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import InvalidVersion + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_file import COMMENT_RE +from pip._internal.utils.direct_url_helpers import direct_url_as_pep440_direct_reference + +logger = logging.getLogger(__name__) + + +class _EditableInfo(NamedTuple): + requirement: str + comments: List[str] + + +def freeze( + requirement: Optional[List[str]] = None, + local_only: bool = False, + user_only: bool = False, + paths: Optional[List[str]] = None, + isolated: bool = False, + exclude_editable: bool = False, + skip: Container[str] = (), +) -> Generator[str, None, None]: + installations: Dict[str, FrozenRequirement] = {} + + dists = get_environment(paths).iter_installed_distributions( + local_only=local_only, + skip=(), + user_only=user_only, + ) + for dist in dists: + req = FrozenRequirement.from_dist(dist) + if exclude_editable and req.editable: + continue + installations[req.canonical_name] = req + + if requirement: + # the options that don't get turned into an InstallRequirement + # should only be emitted once, even if the same option is in multiple + # requirements files, so we need to keep track of what has been emitted + # so that we don't emit it again if it's seen again + emitted_options: Set[str] = set() + # keep track of which files a requirement is in so that we can + # give an accurate warning if a requirement appears multiple times. + req_files: Dict[str, List[str]] = collections.defaultdict(list) + for req_file_path in requirement: + with open(req_file_path) as req_file: + for line in req_file: + if ( + not line.strip() + or line.strip().startswith("#") + or line.startswith( + ( + "-r", + "--requirement", + "-f", + "--find-links", + "-i", + "--index-url", + "--pre", + "--trusted-host", + "--process-dependency-links", + "--extra-index-url", + "--use-feature", + ) + ) + ): + line = line.rstrip() + if line not in emitted_options: + emitted_options.add(line) + yield line + continue + + if line.startswith("-e") or line.startswith("--editable"): + if line.startswith("-e"): + line = line[2:].strip() + else: + line = line[len("--editable") :].strip().lstrip("=") + line_req = install_req_from_editable( + line, + isolated=isolated, + ) + else: + line_req = install_req_from_line( + COMMENT_RE.sub("", line).strip(), + isolated=isolated, + ) + + if not line_req.name: + logger.info( + "Skipping line in requirement file [%s] because " + "it's not clear what it would install: %s", + req_file_path, + line.strip(), + ) + logger.info( + " (add #egg=PackageName to the URL to avoid" + " this warning)" + ) + else: + line_req_canonical_name = canonicalize_name(line_req.name) + if line_req_canonical_name not in installations: + # either it's not installed, or it is installed + # but has been processed already + if not req_files[line_req.name]: + logger.warning( + "Requirement file [%s] contains %s, but " + "package %r is not installed", + req_file_path, + COMMENT_RE.sub("", line).strip(), + line_req.name, + ) + else: + req_files[line_req.name].append(req_file_path) + else: + yield str(installations[line_req_canonical_name]).rstrip() + del installations[line_req_canonical_name] + req_files[line_req.name].append(req_file_path) + + # Warn about requirements that were included multiple times (in a + # single requirements file or in different requirements files). + for name, files in req_files.items(): + if len(files) > 1: + logger.warning( + "Requirement %s included multiple times [%s]", + name, + ", ".join(sorted(set(files))), + ) + + yield ("## The following requirements were added by pip freeze:") + for installation in sorted(installations.values(), key=lambda x: x.name.lower()): + if installation.canonical_name not in skip: + yield str(installation).rstrip() + + +def _format_as_name_version(dist: BaseDistribution) -> str: + try: + dist_version = dist.version + except InvalidVersion: + # legacy version + return f"{dist.raw_name}==={dist.raw_version}" + else: + return f"{dist.raw_name}=={dist_version}" + + +def _get_editable_info(dist: BaseDistribution) -> _EditableInfo: + """ + Compute and return values (req, comments) for use in + FrozenRequirement.from_dist(). + """ + editable_project_location = dist.editable_project_location + assert editable_project_location + location = os.path.normcase(os.path.abspath(editable_project_location)) + + from pip._internal.vcs import RemoteNotFoundError, RemoteNotValidError, vcs + + vcs_backend = vcs.get_backend_for_dir(location) + + if vcs_backend is None: + display = _format_as_name_version(dist) + logger.debug( + 'No VCS found for editable requirement "%s" in: %r', + display, + location, + ) + return _EditableInfo( + requirement=location, + comments=[f"# Editable install with no version control ({display})"], + ) + + vcs_name = type(vcs_backend).__name__ + + try: + req = vcs_backend.get_src_requirement(location, dist.raw_name) + except RemoteNotFoundError: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[f"# Editable {vcs_name} install with no remote ({display})"], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[ + f"# Editable {vcs_name} install ({display}) with either a deleted " + f"local remote or invalid URI:", + f"# '{ex.url}'", + ], + ) + except BadCommand: + logger.warning( + "cannot determine version of editable source in %s " + "(%s command not found in path)", + location, + vcs_backend.name, + ) + return _EditableInfo(requirement=location, comments=[]) + except InstallationError as exc: + logger.warning("Error when trying to get requirement for VCS system %s", exc) + else: + return _EditableInfo(requirement=req, comments=[]) + + logger.warning("Could not determine repository location of %s", location) + + return _EditableInfo( + requirement=location, + comments=["## !! Could not determine repository location"], + ) + + +class FrozenRequirement: + def __init__( + self, + name: str, + req: str, + editable: bool, + comments: Iterable[str] = (), + ) -> None: + self.name = name + self.canonical_name = canonicalize_name(name) + self.req = req + self.editable = editable + self.comments = comments + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "FrozenRequirement": + editable = dist.editable + if editable: + req, comments = _get_editable_info(dist) + else: + comments = [] + direct_url = dist.direct_url + if direct_url: + # if PEP 610 metadata is present, use it + req = direct_url_as_pep440_direct_reference(direct_url, dist.raw_name) + else: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self) -> str: + req = self.req + if self.editable: + req = f"-e {req}" + return "\n".join(list(self.comments) + [str(req)]) + "\n" diff --git a/env/Lib/site-packages/pip/_internal/operations/install/__init__.py b/env/Lib/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 00000000..24d6a5dd --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17ef22b8255ec57e481f11b3ff1f671ccb55ab5d GIT binary patch literal 252 zcmXv}L5cz~5KL575&T1LBB&#J6Y(N?5)t+$VMBD9AsCa;iGqG%&*B?=i$CzX9}vBH z+6-!4x{7Y9x-PX^l|aptNr37%Q6rT0|c-Q|)?3gAY-I7Mdh&c2IR8;%gj2d zBO?U~iBy184ye6zLg@h^(RCI|)R6*1Y}RoAJCiZ@xF* zXR|2;a_-Ado3e_~Z^Af~;t=dT1aJ>IsD>QLNqACCg0Ji)T5?TpDK$kBe#KK;T1|_w z>LpuxO^>nW8Ld<;72~9rZe?m22_+DbZcZEqI{uQ}jx?}pc}FJ-DVze+F^D`wsUwso zBTj}CoGgqS;5^Zs0^kuRv08LSKUQj^okV49^Yum2wCs*a95=EW9x+{?MV9ATksJ7C zNCTTN_M+)lN!7f;NYoCiVaIgHI`M+=Mm6=P$me<`!S#1S@fXYE`ZD>TO?;bFBwl!< z?Rw5tf8C{l-y(hlzLe`bfUp-d!J2AWw+N1Rj)K5rc(^yVXp_Nw-iB;2Yd40u@Lbai z8kUEHI3D9#NXe>un=5NUi|}ll5e$Q3=0=1oz9pRT_Bia|(2CZ$?y>+5NE~i7M0%L` z>-<#P4=wu^aWD(o)F#+*DY2t~cDP32+|;)RrANpBpu>=1>~T={Py~7)H--0vI8s;H zNerA4ihxN2>8f4S)w)tQ(Ul)0cC>-_LnBHauGkrZmyv|JNueVVJ(jNF$X)$`vNMbb z98$&aIMPYGqt2l7h)Ej>39Z0h68dcPw!DHiq?7)RI`CJt&G+9PFv7GUk=LS;a0mcvf827En9P~c_84q7eCcYs&S=CZxvT(78H z1M)Qq<%;V=AW?2As!zqWR#I`y6ESF3%;$v43sn$m1Qb^UQ<=y}oN^!sGNWz1wLgkd#m}dBcKp}OWUo-{J^M#o%QLYRsHNHLdI6J<* zaxgRw*mDr*TY2G({9S&br0yy@z}=F%Fm3EkBn3XBF1(PejPWGKPGDoqlcM@i7_LQ~ z5WZ9}m@1%n8LCh{szUXsKdERMKKcLIcI0}jI@~P2Kz{aVD~@T0;|=2r=hIJJdi2o5 zT;N8NM2iEi=opLF1Y=qjxyUR6{xsmtifjHg+5<15;@LjXUxl`4d*n4*0aLu$>?=@x zS(2o`5|X6sX-LXHMzepQOOMcnM`-C0y7I)B*e?HKO#Em}+`s&jadu1VYo?TYQk=TK z{KZmV1>DzAwsd#-&Qd=qEFGoC?q0kz*EfWfLd9qLX@N2*o$F@>%AsPppBJcr@?-rG cfksim?2idlMCMGtB+xk0Qu}2<^m)khUssyuC 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�n6U54}{iu?EE(2|k< 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 K*$A;ikpCb1V@*N; literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py b/env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py new file mode 100644 index 00000000..9aaa699a --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py @@ -0,0 +1,47 @@ +"""Legacy editable installation process, i.e. `setup.py develop`. +""" + +import logging +from typing import Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.setuptools_build import make_setuptools_develop_args +from pip._internal.utils.subprocess import call_subprocess + +logger = logging.getLogger(__name__) + + +def install_editable( + *, + global_options: Sequence[str], + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, + name: str, + setup_py_path: str, + isolated: bool, + build_env: BuildEnvironment, + unpacked_source_directory: str, +) -> None: + """Install a package in editable mode. Most arguments are pass-through + to setuptools. + """ + logger.info("Running setup.py develop for %s", name) + + args = make_setuptools_develop_args( + setup_py_path, + global_options=global_options, + no_user_config=isolated, + prefix=prefix, + home=home, + use_user_site=use_user_site, + ) + + with indent_log(): + with build_env: + call_subprocess( + args, + command_desc="python setup.py develop", + cwd=unpacked_source_directory, + ) diff --git a/env/Lib/site-packages/pip/_internal/operations/install/wheel.py b/env/Lib/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 00000000..aef42aa9 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,741 @@ +"""Support for installing and building the "wheel" binary package format. +""" + +import collections +import compileall +import contextlib +import csv +import importlib +import logging +import os.path +import re +import shutil +import sys +import warnings +from base64 import urlsafe_b64encode +from email.message import Message +from itertools import chain, filterfalse, starmap +from typing import ( + IO, + TYPE_CHECKING, + Any, + BinaryIO, + Callable, + Dict, + Generator, + Iterable, + Iterator, + List, + NewType, + Optional, + Protocol, + Sequence, + Set, + Tuple, + Union, + cast, +) +from zipfile import ZipFile, ZipInfo + +from pip._vendor.distlib.scripts import ScriptMaker +from pip._vendor.distlib.util import get_export_entry +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) +from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import StreamWrapper, ensure_dir, hash_file, partition +from pip._internal.utils.unpacking import ( + current_umask, + is_within_directory, + set_extracted_file_to_default_mode_plus_executable, + zip_item_is_executable, +) +from pip._internal.utils.wheel import parse_wheel + +if TYPE_CHECKING: + + class File(Protocol): + src_record_path: "RecordPath" + dest_path: str + changed: bool + + def save(self) -> None: + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType("RecordPath", str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path: str, blocksize: int = 1 << 20) -> Tuple[str, str]: + """Return (encoded_digest, length) for path using hashlib.sha256()""" + h, length = hash_file(path, blocksize) + digest = "sha256=" + urlsafe_b64encode(h.digest()).decode("latin1").rstrip("=") + return (digest, str(length)) + + +def csv_io_kwargs(mode: str) -> Dict[str, Any]: + """Return keyword arguments to properly open a CSV file + in the given mode. + """ + return {"mode": mode, "newline": "", "encoding": "utf-8"} + + +def fix_script(path: str) -> bool: + """Replace #!python with #!/path/to/python + Return True if file was changed. + """ + # XXX RECORD hashes will need to be updated + assert os.path.isfile(path) + + with open(path, "rb") as script: + firstline = script.readline() + if not firstline.startswith(b"#!python"): + return False + exename = sys.executable.encode(sys.getfilesystemencoding()) + firstline = b"#!" + exename + os.linesep.encode("ascii") + rest = script.read() + with open(path, "wb") as script: + script.write(firstline) + script.write(rest) + return True + + +def wheel_root_is_purelib(metadata: Message) -> bool: + return metadata.get("Root-Is-Purelib", "").lower() == "true" + + +def get_entrypoints(dist: BaseDistribution) -> Tuple[Dict[str, str], Dict[str, str]]: + console_scripts = {} + gui_scripts = {} + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + console_scripts[entry_point.name] = entry_point.value + elif entry_point.group == "gui_scripts": + gui_scripts[entry_point.name] = entry_point.value + return console_scripts, gui_scripts + + +def message_about_scripts_not_on_PATH(scripts: Sequence[str]) -> Optional[str]: + """Determine if any scripts are not on PATH and format a warning. + Returns a warning message if one or more scripts are not on PATH, + otherwise None. + """ + if not scripts: + return None + + # Group scripts by the path they were installed in + grouped_by_dir: Dict[str, Set[str]] = collections.defaultdict(set) + for destfile in scripts: + parent_dir = os.path.dirname(destfile) + script_name = os.path.basename(destfile) + grouped_by_dir[parent_dir].add(script_name) + + # We don't want to warn for directories that are on PATH. + not_warn_dirs = [ + os.path.normcase(os.path.normpath(i)).rstrip(os.sep) + for i in os.environ.get("PATH", "").split(os.pathsep) + ] + # If an executable sits with sys.executable, we don't warn for it. + # This covers the case of venv invocations without activating the venv. + not_warn_dirs.append( + os.path.normcase(os.path.normpath(os.path.dirname(sys.executable))) + ) + warn_for: Dict[str, Set[str]] = { + parent_dir: scripts + for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(os.path.normpath(parent_dir)) not in not_warn_dirs + } + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts: List[str] = sorted(dir_scripts) + if len(sorted_scripts) == 1: + start_text = f"script {sorted_scripts[0]} is" + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + f"The {start_text} installed in '{parent_dir}' which is not on PATH." + ) + + last_line_fmt = ( + "Consider adding {} to PATH or, if you prefer " + "to suppress this warning, use --no-warn-script-location." + ) + if len(msg_lines) == 1: + msg_lines.append(last_line_fmt.format("this directory")) + else: + msg_lines.append(last_line_fmt.format("these directories")) + + # Add a note if any directory starts with ~ + warn_for_tilde = any( + i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i + ) + if warn_for_tilde: + tilde_warning_msg = ( + "NOTE: The current PATH contains path(s) starting with `~`, " + "which may not be expanded by all applications." + ) + msg_lines.append(tilde_warning_msg) + + # Returns the formatted multiline message + return "\n".join(msg_lines) + + +def _normalized_outrows( + outrows: Iterable[InstalledCSVRow], +) -> List[Tuple[str, str, str]]: + """Normalize the given rows of a RECORD file. + + Items in each row are converted into str. Rows are then sorted to make + the value more predictable for tests. + + Each row is a 3-tuple (path, hash, size) and corresponds to a record of + a RECORD file (see PEP 376 and PEP 427 for details). For the rows + passed to this function, the size can be an integer as an int or string, + or the empty string. + """ + # Normally, there should only be one row per path, in which case the + # second and third elements don't come into play when sorting. + # However, in cases in the wild where a path might happen to occur twice, + # we don't want the sort operation to trigger an error (but still want + # determinism). Since the third element can be an int or string, we + # coerce each element to a string to avoid a TypeError in this case. + # For additional background, see-- + # https://github.com/pypa/pip/issues/5868 + return sorted( + (record_path, hash_, str(size)) for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path: RecordPath, lib_dir: str) -> str: + return os.path.join(lib_dir, record_path) + + +def _fs_to_record_path(path: str, lib_dir: str) -> RecordPath: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if os.path.splitdrive(path)[0].lower() == os.path.splitdrive(lib_dir)[0].lower(): + path = os.path.relpath(path, lib_dir) + + path = path.replace(os.path.sep, "/") + return cast("RecordPath", path) + + +def get_csv_rows_for_installed( + old_csv_rows: List[List[str]], + installed: Dict[RecordPath, RecordPath], + changed: Set[RecordPath], + generated: List[str], + lib_dir: str, +) -> List[InstalledCSVRow]: + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows: List[InstalledCSVRow] = [] + for row in old_csv_rows: + if len(row) > 3: + logger.warning("RECORD line has more than three elements: %s", row) + old_record_path = cast("RecordPath", row[0]) + new_record_path = installed.pop(old_record_path, old_record_path) + if new_record_path in changed: + digest, length = rehash(_record_to_fs_path(new_record_path, lib_dir)) + else: + digest = row[1] if len(row) > 1 else "" + length = row[2] if len(row) > 2 else "" + installed_rows.append((new_record_path, digest, length)) + for f in generated: + path = _fs_to_record_path(f, lib_dir) + digest, length = rehash(f) + installed_rows.append((path, digest, length)) + return installed_rows + [ + (installed_record_path, "", "") for installed_record_path in installed.values() + ] + + +def get_console_script_specs(console: Dict[str, str]) -> List[str]: + """ + Given the mapping from entrypoint name to callable, return the relevant + console script specs. + """ + # Don't mutate caller's version + console = console.copy() + + scripts_to_generate = [] + + # Special case pip and setuptools to generate versioned wrappers + # + # The issue is that some projects (specifically, pip and setuptools) use + # code in setup.py to create "versioned" entry points - pip2.7 on Python + # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into + # the wheel metadata at build time, and so if the wheel is installed with + # a *different* version of Python the entry points will be wrong. The + # correct fix for this is to enhance the metadata to be able to describe + # such versioned entry points. + # Currently, projects using versioned entry points will either have + # incorrect versioned entry points, or they will not be able to distribute + # "universal" wheels (i.e., they will need a wheel per Python version). + # + # Because setuptools and pip are bundled with _ensurepip and virtualenv, + # we need to use universal wheels. As a workaround, we + # override the versioned entry points in the wheel and generate the + # correct ones. + # + # To add the level of hack in this section of code, in order to support + # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment + # variable which will control which version scripts get installed. + # + # ENSUREPIP_OPTIONS=altinstall + # - Only pipX.Y and easy_install-X.Y will be generated and installed + # ENSUREPIP_OPTIONS=install + # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note + # that this option is technically if ENSUREPIP_OPTIONS is set and is + # not altinstall + # DEFAULT + # - The default behavior is to install pip, pipX, pipX.Y, easy_install + # and easy_install-X.Y. + pip_script = console.pop("pip", None) + if pip_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("pip = " + pip_script) + + if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": + scripts_to_generate.append(f"pip{sys.version_info[0]} = {pip_script}") + + scripts_to_generate.append(f"pip{get_major_minor_version()} = {pip_script}") + # Delete any other versioned pip entry points + pip_ep = [k for k in console if re.match(r"pip(\d+(\.\d+)?)?$", k)] + for k in pip_ep: + del console[k] + easy_install_script = console.pop("easy_install", None) + if easy_install_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("easy_install = " + easy_install_script) + + scripts_to_generate.append( + f"easy_install-{get_major_minor_version()} = {easy_install_script}" + ) + # Delete any other versioned easy_install entry points + easy_install_ep = [ + k for k in console if re.match(r"easy_install(-\d+\.\d+)?$", k) + ] + for k in easy_install_ep: + del console[k] + + # Generate the console entry points specified in the wheel + scripts_to_generate.extend(starmap("{} = {}".format, console.items())) + + return scripts_to_generate + + +class ZipBackedFile: + def __init__( + self, src_record_path: RecordPath, dest_path: str, zip_file: ZipFile + ) -> None: + self.src_record_path = src_record_path + self.dest_path = dest_path + self._zip_file = zip_file + self.changed = False + + def _getinfo(self) -> ZipInfo: + return self._zip_file.getinfo(self.src_record_path) + + def save(self) -> None: + # When we open the output file below, any existing file is truncated + # before we start writing the new contents. This is fine in most + # cases, but can cause a segfault if pip has loaded a shared + # object (e.g. from pyopenssl through its vendored urllib3) + # Since the shared object is mmap'd an attempt to call a + # symbol in it will then cause a segfault. Unlinking the file + # allows writing of new contents while allowing the process to + # continue to use the old copy. + if os.path.exists(self.dest_path): + os.unlink(self.dest_path) + + zipinfo = self._getinfo() + + # optimization: the file is created by open(), + # skip the decompression when there is 0 bytes to decompress. + with open(self.dest_path, "wb") as dest: + if zipinfo.file_size > 0: + with self._zip_file.open(zipinfo) as f: + blocksize = min(zipinfo.file_size, 1024 * 1024) + shutil.copyfileobj(f, dest, blocksize) + + if zip_item_is_executable(zipinfo): + set_extracted_file_to_default_mode_plus_executable(self.dest_path) + + +class ScriptFile: + def __init__(self, file: "File") -> None: + self._file = file + self.src_record_path = self._file.src_record_path + self.dest_path = self._file.dest_path + self.changed = False + + def save(self) -> None: + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point: str) -> None: + super().__init__( + f"Invalid script entry point: {entry_point} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information." + ) + + +def _raise_for_invalid_entrypoint(specification: str) -> None: + entry = get_export_entry(specification) + if entry is not None and entry.suffix is None: + raise MissingCallableSuffix(str(entry)) + + +class PipScriptMaker(ScriptMaker): + def make( + self, specification: str, options: Optional[Dict[str, Any]] = None + ) -> List[str]: + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( # noqa: C901, PLR0915 function is too long + name: str, + wheel_zip: ZipFile, + wheel_path: str, + scheme: Scheme, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + """Install a wheel. + + :param name: Name of the project to install + :param wheel_zip: open ZipFile for wheel being installed + :param scheme: Distutils scheme dictating the install directories + :param req_description: String used in place of the requirement, for + logging + :param pycompile: Whether to byte-compile installed Python files + :param warn_script_location: Whether to check that scripts are installed + into a directory on PATH + :raises UnsupportedWheel: + * when the directory holds an unpacked wheel with incompatible + Wheel-Version + * when the .dist-info dir does not match the wheel + """ + info_dir, metadata = parse_wheel(wheel_zip, name) + + if wheel_root_is_purelib(metadata): + lib_dir = scheme.purelib + else: + lib_dir = scheme.platlib + + # Record details of the files moved + # installed = files copied from the wheel to the destination + # changed = files changed while installing (scripts #! line typically) + # generated = files newly generated during the install (script wrappers) + installed: Dict[RecordPath, RecordPath] = {} + changed: Set[RecordPath] = set() + generated: List[str] = [] + + def record_installed( + srcfile: RecordPath, destfile: str, modified: bool = False + ) -> None: + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(newpath) + + def is_dir_path(path: RecordPath) -> bool: + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path: str, target_path: str) -> None: + if not is_within_directory(dest_dir_path, target_path): + message = ( + "The wheel {!r} has a file {!r} trying to install" + " outside the target directory {!r}" + ) + raise InstallationError( + message.format(wheel_path, target_path, dest_dir_path) + ) + + def root_scheme_file_maker( + zip_file: ZipFile, dest: str + ) -> Callable[[RecordPath], "File"]: + def make_root_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + dest_path = os.path.join(dest, normed_path) + assert_no_path_traversal(dest, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_root_scheme_file + + def data_scheme_file_maker( + zip_file: ZipFile, scheme: Scheme + ) -> Callable[[RecordPath], "File"]: + scheme_paths = {key: getattr(scheme, key) for key in SCHEME_KEYS} + + def make_data_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + try: + _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) + except ValueError: + message = ( + f"Unexpected file in {wheel_path}: {record_path!r}. .data directory" + " contents should be named like: '/'." + ) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + f"Unknown scheme key used in {wheel_path}: {scheme_key} " + f"(for file {record_path!r}). .data directory contents " + f"should be in subdirectories named with a valid scheme " + f"key ({valid_scheme_keys})" + ) + raise InstallationError(message) + + dest_path = os.path.join(scheme_path, dest_subpath) + assert_no_path_traversal(scheme_path, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_data_scheme_file + + def is_data_scheme_path(path: RecordPath) -> bool: + return path.split("/", 1)[0].endswith(".data") + + paths = cast(List[RecordPath], wheel_zip.namelist()) + file_paths = filterfalse(is_dir_path, paths) + root_scheme_paths, data_scheme_paths = partition(is_data_scheme_path, file_paths) + + make_root_scheme_file = root_scheme_file_maker(wheel_zip, lib_dir) + files: Iterator[File] = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path: RecordPath) -> bool: + parts = path.split("/", 2) + return len(parts) > 2 and parts[0].endswith(".data") and parts[1] == "scripts" + + other_scheme_paths, script_scheme_paths = partition( + is_script_scheme_path, data_scheme_paths + ) + + make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) + other_scheme_files = map(make_data_scheme_file, other_scheme_paths) + files = chain(files, other_scheme_files) + + # Get the defined entry points + distribution = get_wheel_distribution( + FilesystemWheel(wheel_path), + canonicalize_name(name), + ) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file: "File") -> bool: + # EP, EP.exe and EP-script.py are scripts generated for + # entry point EP by setuptools + path = file.dest_path + name = os.path.basename(path) + if name.lower().endswith(".exe"): + matchname = name[:-4] + elif name.lower().endswith("-script.py"): + matchname = name[:-10] + elif name.lower().endswith(".pya"): + matchname = name[:-4] + else: + matchname = name + # Ignore setuptools-generated scripts + return matchname in console or matchname in gui + + script_scheme_files: Iterator[File] = map( + make_data_scheme_file, script_scheme_paths + ) + script_scheme_files = filterfalse(is_entrypoint_wrapper, script_scheme_files) + script_scheme_files = map(ScriptFile, script_scheme_files) + files = chain(files, script_scheme_files) + + existing_parents = set() + for file in files: + # directory creation is lazy and after file filtering + # to ensure we don't install empty dirs; empty dirs can't be + # uninstalled. + parent_dir = os.path.dirname(file.dest_path) + if parent_dir not in existing_parents: + ensure_dir(parent_dir) + existing_parents.add(parent_dir) + file.save() + record_installed(file.src_record_path, file.dest_path, file.changed) + + def pyc_source_file_paths() -> Generator[str, None, None]: + # We de-duplicate installation paths, since there can be overlap (e.g. + # file in .data maps to same location as file in wheel root). + # Sorting installation paths makes it easier to reproduce and debug + # issues related to permissions on existing files. + for installed_path in sorted(set(installed.values())): + full_installed_path = os.path.join(lib_dir, installed_path) + if not os.path.isfile(full_installed_path): + continue + if not full_installed_path.endswith(".py"): + continue + yield full_installed_path + + def pyc_output_path(path: str) -> str: + """Return the path the pyc file would have been written to.""" + return importlib.util.cache_from_source(path) + + # Compile all of the pyc files for the installed files + if pycompile: + with contextlib.redirect_stdout( + StreamWrapper.from_stream(sys.stdout) + ) as stdout: + with warnings.catch_warnings(): + warnings.filterwarnings("ignore") + for path in pyc_source_file_paths(): + success = compileall.compile_file(path, force=True, quiet=True) + if success: + pyc_path = pyc_output_path(path) + assert os.path.exists(pyc_path) + pyc_record_path = cast( + "RecordPath", pyc_path.replace(os.path.sep, "/") + ) + record_installed(pyc_record_path, pyc_path) + logger.debug(stdout.getvalue()) + + maker = PipScriptMaker(None, scheme.scripts) + + # Ensure old scripts are overwritten. + # See https://github.com/pypa/pip/issues/1800 + maker.clobber = True + + # Ensure we don't generate any variants for scripts because this is almost + # never what somebody wants. + # See https://bitbucket.org/pypa/distlib/issue/35/ + maker.variants = {""} + + # This is required because otherwise distlib creates scripts that are not + # executable. + # See https://bitbucket.org/pypa/distlib/issue/32/ + maker.set_mode = True + + # Generate the console and GUI entry points specified in the wheel + scripts_to_generate = get_console_script_specs(console) + + gui_scripts_to_generate = list(starmap("{} = {}".format, gui.items())) + + generated_console_scripts = maker.make_multiple(scripts_to_generate) + generated.extend(generated_console_scripts) + + generated.extend(maker.make_multiple(gui_scripts_to_generate, {"gui": True})) + + if warn_script_location: + msg = message_about_scripts_not_on_PATH(generated_console_scripts) + if msg is not None: + logger.warning(msg) + + generated_file_mode = 0o666 & ~current_umask() + + @contextlib.contextmanager + def _generate_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + with adjacent_tmp_file(path, **kwargs) as f: + yield f + os.chmod(f.name, generated_file_mode) + replace(f.name, path) + + dest_info_dir = os.path.join(lib_dir, info_dir) + + # Record pip as the installer + installer_path = os.path.join(dest_info_dir, "INSTALLER") + with _generate_file(installer_path) as installer_file: + installer_file.write(b"pip\n") + generated.append(installer_path) + + # Record the PEP 610 direct URL reference + if direct_url is not None: + direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) + with _generate_file(direct_url_path) as direct_url_file: + direct_url_file.write(direct_url.to_json().encode("utf-8")) + generated.append(direct_url_path) + + # Record the REQUESTED file + if requested: + requested_path = os.path.join(dest_info_dir, "REQUESTED") + with open(requested_path, "wb"): + pass + generated.append(requested_path) + + record_text = distribution.read_text("RECORD") + record_rows = list(csv.reader(record_text.splitlines())) + + rows = get_csv_rows_for_installed( + record_rows, + installed=installed, + changed=changed, + generated=generated, + lib_dir=lib_dir, + ) + + # Record details of all files installed + record_path = os.path.join(dest_info_dir, "RECORD") + + with _generate_file(record_path, **csv_io_kwargs("w")) as record_file: + # Explicitly cast to typing.IO[str] as a workaround for the mypy error: + # "writer" has incompatible type "BinaryIO"; expected "_Writer" + writer = csv.writer(cast("IO[str]", record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description: str) -> Generator[None, None, None]: + try: + yield + except InstallationError as e: + message = f"For req: {req_description}. {e.args[0]}" + raise InstallationError(message) from e + + +def install_wheel( + name: str, + wheel_path: str, + scheme: Scheme, + req_description: str, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + with ZipFile(wheel_path, allowZip64=True) as z: + with req_error_context(req_description): + _install_wheel( + name=name, + wheel_zip=z, + wheel_path=wheel_path, + scheme=scheme, + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=requested, + ) diff --git a/env/Lib/site-packages/pip/_internal/operations/prepare.py b/env/Lib/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 00000000..e6aa3447 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,732 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import mimetypes +import os +import shutil +from dataclasses import dataclass +from pathlib import Path +from typing import Dict, Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.distributions.installed import InstalledDistribution +from pip._internal.exceptions import ( + DirectoryUrlHashUnsupported, + HashMismatch, + HashUnpinned, + InstallationError, + MetadataInconsistent, + NetworkConnectionError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_metadata_distribution +from pip._internal.models.direct_url import ArchiveInfo +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.network.download import BatchDownloader, Downloader +from pip._internal.network.lazy_wheel import ( + HTTPRangeRequestUnsupported, + dist_from_wheel_url, +) +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.direct_url_helpers import ( + direct_url_for_editable, + direct_url_from_link, +) +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + display_path, + hash_file, + hide_url, + redact_auth_from_requirement, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = getLogger(__name__) + + +def _get_prepared_distribution( + req: InstallRequirement, + build_tracker: BuildTracker, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, +) -> BaseDistribution: + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + tracker_id = abstract_dist.build_tracker_id + if tracker_id is not None: + with build_tracker.track(req, tracker_id): + abstract_dist.prepare_distribution_metadata( + finder, build_isolation, check_build_deps + ) + return abstract_dist.get_metadata_distribution() + + +def unpack_vcs_link(link: Link, location: str, verbosity: int) -> None: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend is not None + vcs_backend.unpack(location, url=hide_url(link.url), verbosity=verbosity) + + +@dataclass +class File: + path: str + content_type: Optional[str] = None + + def __post_init__(self) -> None: + if self.content_type is None: + self.content_type = mimetypes.guess_type(self.path)[0] + + +def get_http_url( + link: Link, + download: Downloader, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> File: + temp_dir = TempDirectory(kind="unpack", globally_managed=True) + # If a download dir is specified, is the file already downloaded there? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + content_type = None + else: + # let's download to a tmp dir + from_path, content_type = download(link, temp_dir.path) + if hashes: + hashes.check_against_path(from_path) + + return File(from_path, content_type) + + +def get_file_url( + link: Link, download_dir: Optional[str] = None, hashes: Optional[Hashes] = None +) -> File: + """Get file and optionally check its hash.""" + # If a download dir is specified, is the file already there and valid? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + else: + from_path = link.file_path + + # If --require-hashes is off, `hashes` is either empty, the + # link's embedded hash, or MissingHashes; it is required to + # match. If --require-hashes is on, we are satisfied by any + # hash in `hashes` matching: a URL-based or an option-based + # one; no internet-sourced hash will be in `hashes`. + if hashes: + hashes.check_against_path(from_path) + return File(from_path, None) + + +def unpack_url( + link: Link, + location: str, + download: Downloader, + verbosity: int, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> Optional[File]: + """Unpack link into location, downloading if required. + + :param hashes: A Hashes object, one of whose embedded hashes must match, + or HashMismatch will be raised. If the Hashes is empty, no matches are + required, and unhashable types of requirements (like VCS ones, which + would ordinarily raise HashUnsupported) are allowed. + """ + # non-editable vcs urls + if link.is_vcs: + unpack_vcs_link(link, location, verbosity=verbosity) + return None + + assert not link.is_existing_dir() + + # file urls + if link.is_file: + file = get_file_url(link, download_dir, hashes=hashes) + + # http urls + else: + file = get_http_url( + link, + download, + download_dir, + hashes=hashes, + ) + + # unpack the archive to the build dir location. even when only downloading + # archives, they have to be unpacked to parse dependencies, except wheels + if not link.is_wheel: + unpack_file(file.path, location, file.content_type) + + return file + + +def _check_download_dir( + link: Link, + download_dir: str, + hashes: Optional[Hashes], + warn_on_hash_mismatch: bool = True, +) -> Optional[str]: + """Check download_dir for previously downloaded file with correct hash + If a correct file is found return its path else None + """ + download_path = os.path.join(download_dir, link.filename) + + if not os.path.exists(download_path): + return None + + # If already downloaded, does its hash match? + logger.info("File was already downloaded %s", download_path) + if hashes: + try: + hashes.check_against_path(download_path) + except HashMismatch: + if warn_on_hash_mismatch: + logger.warning( + "Previously-downloaded file %s has bad hash. Re-downloading.", + download_path, + ) + os.unlink(download_path) + return None + return download_path + + +class RequirementPreparer: + """Prepares a Requirement""" + + def __init__( + self, + build_dir: str, + download_dir: Optional[str], + src_dir: str, + build_isolation: bool, + check_build_deps: bool, + build_tracker: BuildTracker, + session: PipSession, + progress_bar: str, + finder: PackageFinder, + require_hashes: bool, + use_user_site: bool, + lazy_wheel: bool, + verbosity: int, + legacy_resolver: bool, + ) -> None: + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.build_tracker = build_tracker + self._session = session + self._download = Downloader(session, progress_bar) + self._batch_download = BatchDownloader(session, progress_bar) + self.finder = finder + + # Where still-packed archives should be written to. If None, they are + # not saved, and are deleted immediately after unpacking. + self.download_dir = download_dir + + # Is build isolation allowed? + self.build_isolation = build_isolation + + # Should check build dependencies? + self.check_build_deps = check_build_deps + + # Should hash-checking be required? + self.require_hashes = require_hashes + + # Should install in user site-packages? + self.use_user_site = use_user_site + + # Should wheels be downloaded lazily? + self.use_lazy_wheel = lazy_wheel + + # How verbose should underlying tooling be? + self.verbosity = verbosity + + # Are we using the legacy resolver? + self.legacy_resolver = legacy_resolver + + # Memoized downloaded files, as mapping of url: path. + self._downloaded: Dict[str, str] = {} + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req: InstallRequirement) -> None: + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.is_wheel_from_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = redact_auth_from_requirement(req.req) if req.req else str(req) + + # If we used req.req, inject requirement source if available (this + # would already be included if we used req directly) + if req.req and req.comes_from: + if isinstance(req.comes_from, str): + comes_from: Optional[str] = req.comes_from + else: + comes_from = req.comes_from.from_path() + if comes_from: + information += f" (from {comes_from})" + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.is_wheel_from_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir( + self, req: InstallRequirement, parallel_builds: bool + ) -> None: + """Ensure source_dir of a linked InstallRequirement.""" + # Since source_dir is only set for editable requirements. + if req.link.is_wheel: + # We don't need to unpack wheels, so no need for a source + # directory. + return + assert req.source_dir is None + if req.link.is_existing_dir(): + # build local directories in-tree + req.source_dir = req.link.file_path + return + + # We always delete unpacked sdists after pip runs. + req.ensure_has_source_dir( + self.build_dir, + autodelete=True, + parallel_builds=parallel_builds, + ) + req.ensure_pristine_source_checkout() + + def _get_linked_req_hashes(self, req: InstallRequirement) -> Hashes: + # By the time this is called, the requirement's link should have + # been checked so we can tell what kind of requirements req is + # and raise some more informative errors than otherwise. + # (For example, we can raise VcsHashUnsupported for a VCS URL + # rather than HashMissing.) + if not self.require_hashes: + return req.hashes(trust_internet=True) + + # We could check these first 2 conditions inside unpack_url + # and save repetition of conditions, but then we would + # report less-useful error messages for unhashable + # requirements, complaining that there's no hash provided. + if req.link.is_vcs: + raise VcsHashUnsupported() + if req.link.is_existing_dir(): + raise DirectoryUrlHashUnsupported() + + # Unpinned packages are asking for trouble when a new version + # is uploaded. This isn't a security check, but it saves users + # a surprising hash mismatch in the future. + # file:/// URLs aren't pinnable, so don't complain about them + # not being pinned. + if not req.is_direct and not req.is_pinned: + raise HashUnpinned() + + # If known-good hashes are missing for this requirement, + # shim it with a facade object that will provoke hash + # computation and then raise a HashMissing exception + # showing the user what the hash should be. + return req.hashes(trust_internet=False) or MissingHashes() + + def _fetch_metadata_only( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + if self.legacy_resolver: + logger.debug( + "Metadata-only fetching is not used in the legacy resolver", + ) + return None + if self.require_hashes: + logger.debug( + "Metadata-only fetching is not used as hash checking is required", + ) + return None + # Try PEP 658 metadata first, then fall back to lazy wheel if unavailable. + return self._fetch_metadata_using_link_data_attr( + req + ) or self._fetch_metadata_using_lazy_wheel(req.link) + + def _fetch_metadata_using_link_data_attr( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + """Fetch metadata from the data-dist-info-metadata attribute, if possible.""" + # (1) Get the link to the metadata file, if provided by the backend. + metadata_link = req.link.metadata_link() + if metadata_link is None: + return None + assert req.req is not None + logger.verbose( + "Obtaining dependency information for %s from %s", + req.req, + metadata_link, + ) + # (2) Download the contents of the METADATA file, separate from the dist itself. + metadata_file = get_http_url( + metadata_link, + self._download, + hashes=metadata_link.as_hashes(), + ) + with open(metadata_file.path, "rb") as f: + metadata_contents = f.read() + # (3) Generate a dist just from those file contents. + metadata_dist = get_metadata_distribution( + metadata_contents, + req.link.filename, + req.req.name, + ) + # (4) Ensure the Name: field from the METADATA file matches the name from the + # install requirement. + # + # NB: raw_name will fall back to the name from the install requirement if + # the Name: field is not present, but it's noted in the raw_name docstring + # that that should NEVER happen anyway. + if canonicalize_name(metadata_dist.raw_name) != canonicalize_name(req.req.name): + raise MetadataInconsistent( + req, "Name", req.req.name, metadata_dist.raw_name + ) + return metadata_dist + + def _fetch_metadata_using_lazy_wheel( + self, + link: Link, + ) -> Optional[BaseDistribution]: + """Fetch metadata using lazy wheel, if possible.""" + # --use-feature=fast-deps must be provided. + if not self.use_lazy_wheel: + return None + if link.is_file or not link.is_wheel: + logger.debug( + "Lazy wheel is not used as %r does not point to a remote wheel", + link, + ) + return None + + wheel = Wheel(link.filename) + name = canonicalize_name(wheel.name) + logger.info( + "Obtaining dependency information from %s %s", + name, + wheel.version, + ) + url = link.url.split("#", 1)[0] + try: + return dist_from_wheel_url(name, url, self._session) + except HTTPRangeRequestUnsupported: + logger.debug("%s does not support range requests", url) + return None + + def _complete_partial_requirements( + self, + partially_downloaded_reqs: Iterable[InstallRequirement], + parallel_builds: bool = False, + ) -> None: + """Download any requirements which were only fetched by metadata.""" + # Download to a temporary directory. These will be copied over as + # needed for downstream 'download', 'wheel', and 'install' commands. + temp_dir = TempDirectory(kind="unpack", globally_managed=True).path + + # Map each link to the requirement that owns it. This allows us to set + # `req.local_file_path` on the appropriate requirement after passing + # all the links at once into BatchDownloader. + links_to_fully_download: Dict[Link, InstallRequirement] = {} + for req in partially_downloaded_reqs: + assert req.link + links_to_fully_download[req.link] = req + + batch_download = self._batch_download( + links_to_fully_download.keys(), + temp_dir, + ) + for link, (filepath, _) in batch_download: + logger.debug("Downloading link %s to %s", link, filepath) + req = links_to_fully_download[link] + # Record the downloaded file path so wheel reqs can extract a Distribution + # in .get_dist(). + req.local_file_path = filepath + # Record that the file is downloaded so we don't do it again in + # _prepare_linked_requirement(). + self._downloaded[req.link.url] = filepath + + # If this is an sdist, we need to unpack it after downloading, but the + # .source_dir won't be set up until we are in _prepare_linked_requirement(). + # Add the downloaded archive to the install requirement to unpack after + # preparing the source dir. + if not req.is_wheel: + req.needs_unpacked_archive(Path(filepath)) + + # This step is necessary to ensure all lazy wheels are processed + # successfully by the 'download', 'wheel', and 'install' commands. + for req in partially_downloaded_reqs: + self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool = False + ) -> BaseDistribution: + """Prepare a requirement to be obtained from req.link.""" + assert req.link + self._log_preparing_link(req) + with indent_log(): + # Check if the relevant file is already available + # in the download directory + file_path = None + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir( + req.link, + self.download_dir, + hashes, + # When a locally built wheel has been found in cache, we don't warn + # about re-downloading when the already downloaded wheel hash does + # not match. This is because the hash must be checked against the + # original link, not the cached link. It that case the already + # downloaded file will be removed and re-fetched from cache (which + # implies a hash check against the cache entry's origin.json). + warn_on_hash_mismatch=not req.is_wheel_from_cache, + ) + + if file_path is not None: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path + else: + # The file is not available, attempt to fetch only metadata + metadata_dist = self._fetch_metadata_only(req) + if metadata_dist is not None: + req.needs_more_preparation = True + return metadata_dist + + # None of the optimizations worked, fully prepare the requirement + return self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirements_more( + self, reqs: Iterable[InstallRequirement], parallel_builds: bool = False + ) -> None: + """Prepare linked requirements more, if needed.""" + reqs = [req for req in reqs if req.needs_more_preparation] + for req in reqs: + # Determine if any of these requirements were already downloaded. + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + if file_path is not None: + self._downloaded[req.link.url] = file_path + req.needs_more_preparation = False + + # Prepare requirements we found were already downloaded for some + # reason. The other downloads will be completed separately. + partially_downloaded_reqs: List[InstallRequirement] = [] + for req in reqs: + if req.needs_more_preparation: + partially_downloaded_reqs.append(req) + else: + self._prepare_linked_requirement(req, parallel_builds) + + # TODO: separate this part out from RequirementPreparer when the v1 + # resolver can be removed! + self._complete_partial_requirements( + partially_downloaded_reqs, + parallel_builds=parallel_builds, + ) + + def _prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool + ) -> BaseDistribution: + assert req.link + link = req.link + + hashes = self._get_linked_req_hashes(req) + + if hashes and req.is_wheel_from_cache: + assert req.download_info is not None + assert link.is_wheel + assert link.is_file + # We need to verify hashes, and we have found the requirement in the cache + # of locally built wheels. + if ( + isinstance(req.download_info.info, ArchiveInfo) + and req.download_info.info.hashes + and hashes.has_one_of(req.download_info.info.hashes) + ): + # At this point we know the requirement was built from a hashable source + # artifact, and we verified that the cache entry's hash of the original + # artifact matches one of the hashes we expect. We don't verify hashes + # against the cached wheel, because the wheel is not the original. + hashes = None + else: + logger.warning( + "The hashes of the source archive found in cache entry " + "don't match, ignoring cached built wheel " + "and re-downloading source." + ) + req.link = req.cached_wheel_source_link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + + if link.is_existing_dir(): + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, + req.source_dir, + self._download, + self.verbosity, + self.download_dir, + hashes, + ) + except NetworkConnectionError as exc: + raise InstallationError( + f"Could not install requirement {req} because of HTTP " + f"error {exc} for URL {link}" + ) + else: + file_path = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type=None) + + # If download_info is set, we got it from the wheel cache. + if req.download_info is None: + # Editables don't go through this function (see + # prepare_editable_requirement). + assert not req.editable + req.download_info = direct_url_from_link(link, req.source_dir) + # Make sure we have a hash in download_info. If we got it as part of the + # URL, it will have been verified and we can rely on it. Otherwise we + # compute it from the downloaded file. + # FIXME: https://github.com/pypa/pip/issues/11943 + if ( + isinstance(req.download_info.info, ArchiveInfo) + and not req.download_info.info.hashes + and local_file + ): + hash = hash_file(local_file.path)[0].hexdigest() + # We populate info.hash for backward compatibility. + # This will automatically populate info.hashes. + req.download_info.info.hash = f"sha256={hash}" + + # For use in later processing, + # preserve the file path on the requirement. + if local_file: + req.local_file_path = local_file.path + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + return dist + + def save_linked_requirement(self, req: InstallRequirement) -> None: + assert self.download_dir is not None + assert req.link is not None + link = req.link + if link.is_vcs or (link.is_existing_dir() and req.editable): + # Make a .zip of the source_dir we already created. + req.archive(self.download_dir) + return + + if link.is_existing_dir(): + logger.debug( + "Not copying link to destination directory " + "since it is a directory: %s", + link, + ) + return + if req.local_file_path is None: + # No distribution was downloaded for this requirement. + return + + download_location = os.path.join(self.download_dir, link.filename) + if not os.path.exists(download_location): + shutil.copy(req.local_file_path, download_location) + download_path = display_path(download_location) + logger.info("Saved %s", download_path) + + def prepare_editable_requirement( + self, + req: InstallRequirement, + ) -> BaseDistribution: + """Prepare an editable requirement.""" + assert req.editable, "cannot prepare a non-editable req as editable" + + logger.info("Obtaining %s", req) + + with indent_log(): + if self.require_hashes: + raise InstallationError( + f"The editable requirement {req} cannot be installed when " + "requiring hashes, because there is no single file to " + "hash." + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + assert req.source_dir + req.download_info = direct_url_for_editable(req.unpacked_source_directory) + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req: InstallRequirement, + skip_reason: str, + ) -> BaseDistribution: + """Prepare an already-installed requirement.""" + assert req.satisfied_by, "req should have been satisfied but isn't" + assert skip_reason is not None, ( + "did not get skip reason skipped but req.satisfied_by " + f"is set to {req.satisfied_by}" + ) + logger.info( + "Requirement %s: %s (%s)", skip_reason, req, req.satisfied_by.version + ) + with indent_log(): + if self.require_hashes: + logger.debug( + "Since it is already installed, we are trusting this " + "package without checking its hash. To ensure a " + "completely repeatable environment, install into an " + "empty virtualenv." + ) + return InstalledDistribution(req).get_metadata_distribution() diff --git a/env/Lib/site-packages/pip/_internal/pyproject.py b/env/Lib/site-packages/pip/_internal/pyproject.py new file mode 100644 index 00000000..2a9cad48 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,185 @@ +import importlib.util +import os +import sys +from collections import namedtuple +from typing import Any, List, Optional + +if sys.version_info >= (3, 11): + import tomllib +else: + from pip._vendor import tomli as tomllib + +from pip._vendor.packaging.requirements import InvalidRequirement + +from pip._internal.exceptions import ( + InstallationError, + InvalidPyProjectBuildRequires, + MissingPyProjectBuildRequires, +) +from pip._internal.utils.packaging import get_requirement + + +def _is_list_of_str(obj: Any) -> bool: + return isinstance(obj, list) and all(isinstance(item, str) for item in obj) + + +def make_pyproject_path(unpacked_source_directory: str) -> str: + return os.path.join(unpacked_source_directory, "pyproject.toml") + + +BuildSystemDetails = namedtuple( + "BuildSystemDetails", ["requires", "backend", "check", "backend_path"] +) + + +def load_pyproject_toml( + use_pep517: Optional[bool], pyproject_toml: str, setup_py: str, req_name: str +) -> Optional[BuildSystemDetails]: + """Load the pyproject.toml file. + + Parameters: + use_pep517 - Has the user requested PEP 517 processing? None + means the user hasn't explicitly specified. + pyproject_toml - Location of the project's pyproject.toml file + setup_py - Location of the project's setup.py file + req_name - The name of the requirement we're processing (for + error reporting) + + Returns: + None if we should use the legacy code path, otherwise a tuple + ( + requirements from pyproject.toml, + name of PEP 517 backend, + requirements we should check are installed after setting + up the build environment + directory paths to import the backend from (backend-path), + relative to the project root. + ) + """ + has_pyproject = os.path.isfile(pyproject_toml) + has_setup = os.path.isfile(setup_py) + + if not has_pyproject and not has_setup: + raise InstallationError( + f"{req_name} does not appear to be a Python project: " + f"neither 'setup.py' nor 'pyproject.toml' found." + ) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomllib.loads(f.read()) + build_system = pp_toml.get("build-system") + else: + build_system = None + + # The following cases must use PEP 517 + # We check for use_pep517 being non-None and falsey because that means + # the user explicitly requested --no-use-pep517. The value 0 as + # opposed to False can occur when the value is provided via an + # environment variable or config file option (due to the quirk of + # strtobool() returning an integer in pip's configuration code). + if has_pyproject and not has_setup: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project does not have a setup.py" + ) + use_pep517 = True + elif build_system and "build-backend" in build_system: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project specifies a build backend of {} " + "in pyproject.toml".format(build_system["build-backend"]) + ) + use_pep517 = True + + # If we haven't worked out whether to use PEP 517 yet, + # and the user hasn't explicitly stated a preference, + # we do so if the project has a pyproject.toml file + # or if we cannot import setuptools or wheels. + + # We fallback to PEP 517 when without setuptools or without the wheel package, + # so setuptools can be installed as a default build backend. + # For more info see: + # https://discuss.python.org/t/pip-without-setuptools-could-the-experience-be-improved/11810/9 + # https://github.com/pypa/pip/issues/8559 + elif use_pep517 is None: + use_pep517 = ( + has_pyproject + or not importlib.util.find_spec("setuptools") + or not importlib.util.find_spec("wheel") + ) + + # At this point, we know whether we're going to use PEP 517. + assert use_pep517 is not None + + # If we're using the legacy code path, there is nothing further + # for us to do here. + if not use_pep517: + return None + + if build_system is None: + # Either the user has a pyproject.toml with no build-system + # section, or the user has no pyproject.toml, but has opted in + # explicitly via --use-pep517. + # In the absence of any explicit backend specification, we + # assume the setuptools backend that most closely emulates the + # traditional direct setup.py execution, and require wheel and + # a version of setuptools that supports that backend. + + build_system = { + "requires": ["setuptools>=40.8.0"], + "build-backend": "setuptools.build_meta:__legacy__", + } + + # If we're using PEP 517, we have build system information (either + # from pyproject.toml, or defaulted by the code above). + # Note that at this point, we do not know if the user has actually + # specified a backend, though. + assert build_system is not None + + # Ensure that the build-system section in pyproject.toml conforms + # to PEP 518. + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise MissingPyProjectBuildRequires(package=req_name) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InvalidPyProjectBuildRequires( + package=req_name, + reason="It is not a list of strings.", + ) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + get_requirement(requirement) + except InvalidRequirement as error: + raise InvalidPyProjectBuildRequires( + package=req_name, + reason=f"It contains an invalid requirement: {requirement!r}", + ) from error + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check: List[str] = [] + if backend is None: + # If the user didn't specify a backend, we assume they want to use + # the setuptools backend. But we can't be sure they have included + # a version of setuptools which supplies the backend. So we + # make a note to check that this requirement is present once + # we have set up the environment. + # This is quite a lot of work to check for a very specific case. But + # the problem is, that case is potentially quite common - projects that + # adopted PEP 518 early for the ability to specify requirements to + # execute setup.py, but never considered needing to mention the build + # tools themselves. The original PEP 518 code had a similar check (but + # implemented in a different way). + backend = "setuptools.build_meta:__legacy__" + check = ["setuptools>=40.8.0"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/env/Lib/site-packages/pip/_internal/req/__init__.py b/env/Lib/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 00000000..422d851d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,90 @@ +import collections +import logging +from dataclasses import dataclass +from typing import Generator, List, Optional, Sequence, Tuple + +from pip._internal.utils.logging import indent_log + +from .req_file import parse_requirements +from .req_install import InstallRequirement +from .req_set import RequirementSet + +__all__ = [ + "RequirementSet", + "InstallRequirement", + "parse_requirements", + "install_given_reqs", +] + +logger = logging.getLogger(__name__) + + +@dataclass(frozen=True) +class InstallationResult: + name: str + + +def _validate_requirements( + requirements: List[InstallRequirement], +) -> Generator[Tuple[str, InstallRequirement], None, None]: + for req in requirements: + assert req.name, f"invalid to-be-installed requirement: {req}" + yield req.name, req + + +def install_given_reqs( + requirements: List[InstallRequirement], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + warn_script_location: bool, + use_user_site: bool, + pycompile: bool, +) -> List[InstallationResult]: + """ + Install everything in the given list. + + (to be called after having downloaded and unpacked the packages) + """ + to_install = collections.OrderedDict(_validate_requirements(requirements)) + + if to_install: + logger.info( + "Installing collected packages: %s", + ", ".join(to_install.keys()), + ) + + installed = [] + + with indent_log(): + for req_name, requirement in to_install.items(): + if requirement.should_reinstall: + logger.info("Attempting uninstall: %s", req_name) + with indent_log(): + uninstalled_pathset = requirement.uninstall(auto_confirm=True) + else: + uninstalled_pathset = None + + try: + requirement.install( + global_options, + root=root, + home=home, + prefix=prefix, + warn_script_location=warn_script_location, + use_user_site=use_user_site, + pycompile=pycompile, + ) + except Exception: + # if install did not succeed, rollback previous uninstall + if uninstalled_pathset and not requirement.install_succeeded: + uninstalled_pathset.rollback() + raise + else: + if uninstalled_pathset and requirement.install_succeeded: + uninstalled_pathset.commit() + + installed.append(InstallationResult(req_name)) + + return installed diff --git a/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7a14c320926760cabe700254b4c6079a21a8c69c GIT binary patch literal 3431 zcmahLTWk~A^^V7n89(AjY$xOa10f_%NWw!b3kzjYc{e~s=*L=FjV7M!WXyQRduL1@ zb<_w^DfA)2$2Le+Kf3!v1(o)*pL8Em)&AH78fz9*R_#jNKeIuir9VA)>~XSgw>|dU zd(OS*o_p@O=bm%^6bktfz`*-IoqiXvzf!`1_6D-?HiOVAl99})C|&QFGy}9tb>-PK z%g`}ab>}^4Pu`pM=6z{jo=bCiKF!;6Zq=U;qyvC^WUm^`hteS%_o;39a5`+`oEphT z(@_RZBbonzNyl6WGr2vEGMhb)-v@mtq!Yly%KirdXT*ihA~|>y$)WqMI?w%jhtf&8 z4SR8T8_;qXdoYhXa5(F-X+~zUEXA^JIdapT?%cu~#T@RixnkJYz}lNwyon|7HaQ7j z2Yg}JDQU}#$(@KK&In0u03p5;3qyfL9?n53>dxJ+B$2q^ego zhhemB3ps(!l$(S=2no_A0F4z>>dVAwZ!iaiA z+Vumt5$u+kV=y}JO0i8%BzmeV*eI%|<<_J;z67V|M3JJRX!%7kuggW1;z3b-uPCXF z8P+g~6&6KF({$68Vu<2z&<5TA_2tt?C&#fwG)0@9oH)2|^7{mTS1*D^Mh;A3?fT@n zGBs%^CLSqBnQPKCHYN*7VN6ss6B97<7#wj-1X3|YakMZ`q9E07l7JXKXnu^I`$IR+ z6MCQaj1`1MO=DYLg3Th)G7YB$E`;3h^})B1h30#R0RxrLDfI3jLW@j^$-!tV82$_J zz)H+7(XU*N)86(WBMqFt9%MHWnbWD1WoE)&bb z7KM)rDTc&g_mqotLuaw{mg#E|1kyzZlA0;2Se~9$Vf5!C7U_iqFE`ibjSg1?u$~`~Iy^5j-9~BGRk1_`-Zf z&leOGXE+e<0QG35f37VtC0B_p zxl5jsx8!@^yH6h-0E2!MB)zbP2ACEg(NZu+eX#``YcL3Q<8wP(rhzo+v$O%u+VBXc zhv)R68&zK@&GY|m!EZEUoP$8X+`fb)hQx~SN zkb#T<(Ll;V@DpaF>vV~%&uXeJ$#h(kg`!3SB@k4O6Ejn`kcFL%9qF=+4x%z9Fgi>} zg??kfwO3f^JZYLZ504tyiV&FXL_}w4DhWzOQx`M3mQ_gpQp!u{9g$tMp*KTz)25#` zH1(%qR-myHWDmm%TqZImSU#m>OgkP~UPy)07?P)=Wp&G)(-qBfU&HeTp^wz^Kzzs> zR>YXmi>eF>t)Y&^H#M_-&RDd8h( zxmFE#t%rvng@>O;lBw1MBh8N__N5eBbk6Vm;VX3HChh9s7t|>pk)$c=W|#wC7FO z&7Z6tL%~GZ9e;Jm-uho)k9hCb$Q??4(Z1*257)=WAB~OM;`UYI`yR&+R3nKR57Vz- z4QyHd+Bgn2{k?FKJ>AKE+}D0e@O}J70Ps&-ou~G?Kk0f4@J|KLsZ`+8ejmm6rcNh( zpCu^&XPutYyL_o`k^&i)kGd>84lB?s1hGMArn0=|d;w+%&5?v=Btnx8p%IbL)Mj-< z^)lM5UPg_sbI0n{+jq!WAZc7RAXK6n%P`F6DE2vO zdxm!Y1s#8aj(>>`e2E61q2Xt!?`yXw;9Bz4+K|6{xnrI0s_Uq59?!=voH4ot6l7aS>gSSR%K1y*8#Z$_ULWz}$TNi5q oN(E8(j#`LfZ7AMZ3sWqDBJo<3Vlm|Pm;F5zPw&fipluud8wTV&`~Uy| literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64bc012a6a5d3aee7721be12e44f8472c8c1b914 GIT binary patch literal 21206 zcmb_^Yj7Lam1Z~4c!L1nZ%WOFNJ1j17bQ{D!;(nLb}UnhB~M~n3Ieg4Bq%(XZcwrq z(54(^OvbY-s!~}&Wv4{%rq=YzTO-$`b~LlQ6(_Tg)XeS{5NL`phThTCdTKZS;83&U z(QM7^cW!qBAO**n*=>opZ{I%meeb#FeCIU&q^!)z;p+OqTN9r@!*TzE9*nD5kF38V zaNI3U;zl`%mrNmklxKI-sEOUpqh@v&Mg`o>AxqdgYUPPm2-(8+QG3`i>IgeWonhCg zE9@S1hs#FG!k$qNqp^g%;quXP7Pp2f!j+?y;i}Op_G}APhigV_Slk|}4cCpL!OHWv4U+QS{A9W3q* zZ3}mfcCvVRs4Lt(+Rfq>Azyg==yn#b4DAT_jP`_kM|*j0f|IKLIX~KG;$+j*H;ln5 z+~r+&dF^R*w_GzN72X)JsR<)ixZl;Iqy18~yicl;%jA8sOWxOj^l=jl1*!JBFuGr= zGtxoj)+q$39`6oF4RV##Xr$tO)woq^!kYo9Sua&D6Qvt@&3frApgSmSAv(!4E=XJP zJctshHT&=^;`tDIZIxO-Xfyg~;-2B8_UoL~ao41EA>Wh3dYy-ncN_8^ad6TJ$s~2+ zk3#xqlDgipGrDf{$|JX-Ce~YOljK9%Q5M@SAC-3C$*J|1rS;(1fqv*|MfrL`-G{%O z_}isZc{WoP(bvdr$cISq&=*^N73fJX!9{P8(Nw%8&;_wZ;ms{{2XD74r8qM z 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d591fb4722060da9c618840de6ab5ac362a3d51d GIT binary patch literal 21418 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..793faf7d2182fc13985b67b9caf5377c93af3059 GIT binary patch literal 38470 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 Tuple[str, Optional[str]]: + m = re.match(r"^(.+)(\[[^\]]+\])$", path) + extras = None + if m: + path_no_extras = m.group(1) + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras: Optional[str]) -> Set[str]: + if not extras: + return set() + return get_requirement("placeholder" + extras.lower()).extras + + +def _set_requirement_extras(req: Requirement, new_extras: Set[str]) -> Requirement: + """ + Returns a new requirement based on the given one, with the supplied extras. If the + given requirement already has extras those are replaced (or dropped if no new extras + are given). + """ + match: Optional[re.Match[str]] = re.fullmatch( + # see https://peps.python.org/pep-0508/#complete-grammar + r"([\w\t .-]+)(\[[^\]]*\])?(.*)", + str(req), + flags=re.ASCII, + ) + # ireq.req is a valid requirement so the regex should always match + assert ( + match is not None + ), f"regex match on requirement {req} failed, this should never happen" + pre: Optional[str] = match.group(1) + post: Optional[str] = match.group(3) + assert ( + pre is not None and post is not None + ), f"regex group selection for requirement {req} failed, this should never happen" + extras: str = "[%s]" % ",".join(sorted(new_extras)) if new_extras else "" + return get_requirement(f"{pre}{extras}{post}") + + +def parse_editable(editable_req: str) -> Tuple[Optional[str], str, Set[str]]: + """Parses an editable requirement into: + - a requirement name + - an URL + - extras + - editable options + Accepted requirements: + svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + .[some_extra] + """ + + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith("file:"): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + get_requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f"{version_control}:"): + url = f"{version_control}+{url}" + break + + link = Link(url) + + if not link.is_vcs: + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f"{editable_req} is not a valid editable requirement. " + f"It should either be a path to a local project or a VCS URL " + f"(beginning with {backends})." + ) + + package_name = link.egg_fragment + if not package_name: + raise InstallationError( + f"Could not detect requirement name for '{editable_req}', " + "please specify one with #egg=your_package_name" + ) + return package_name, url, set() + + +def check_first_requirement_in_file(filename: str) -> None: + """Check if file is parsable as a requirements file. + + This is heavily based on ``pkg_resources.parse_requirements``, but + simplified to just check the first meaningful line. + + :raises InvalidRequirement: If the first meaningful line cannot be parsed + as an requirement. + """ + with open(filename, encoding="utf-8", errors="ignore") as f: + # Create a steppable iterator, so we can handle \-continuations. + lines = ( + line + for line in (line.strip() for line in f) + if line and not line.startswith("#") # Skip blank lines/comments. + ) + + for line in lines: + # Drop comments -- a hash without a space may be in a URL. + if " #" in line: + line = line[: line.find(" #")] + # If there is a line continuation, drop it, and append the next line. + if line.endswith("\\"): + line = line[:-2].strip() + next(lines, "") + get_requirement(line) + return + + +def deduce_helpful_msg(req: str) -> str: + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + if not os.path.exists(req): + return f" File '{req}' does not exist." + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + check_first_requirement_in_file(req) + except InvalidRequirement: + logger.debug("Cannot parse '%s' as requirements file", req) + else: + msg += ( + f"The argument you provided " + f"({req}) appears to be a" + f" requirements file. If that is the" + f" case, use the '-r' flag to install" + f" the packages specified within it." + ) + return msg + + +@dataclass(frozen=True) +class RequirementParts: + requirement: Optional[Requirement] + link: Optional[Link] + markers: Optional[Marker] + extras: Set[str] + + +def parse_req_from_editable(editable_req: str) -> RequirementParts: + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req: Optional[Requirement] = get_requirement(name) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {name!r}: {exc}") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req: str, + comes_from: Optional[Union[InstallRequirement, str]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + user_supplied: bool = False, + permit_editable_wheels: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + permit_editable_wheels=permit_editable_wheels, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + extras=parts.extras, + ) + + +def _looks_like_path(name: str) -> bool: + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path: str, name: str) -> Optional[str]: + """ + First, it checks whether a provided path is an installable directory. If it + is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + # TODO: The is_installable_dir test here might not be necessary + # now that it is done in load_pyproject_toml too. + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split("@", 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + "Requirement %r looks like a filename, but the file does not exist", + name, + ) + return path_to_url(path) + + +def parse_req_from_line(name: str, line_source: Optional[str]) -> RequirementParts: + if is_url(name): + marker_sep = "; " + else: + marker_sep = ";" + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == "file" and re.search(r"\.\./", link.url): + link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text: str) -> str: + if not line_source: + return text + return f"{text} (from {line_source})" + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + return get_requirement(req_as_string) + except InvalidRequirement as exc: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif "=" in req_as_string and not any( + op in req_as_string for op in operators + ): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = "" + msg = with_source(f"Invalid requirement: {req_as_string!r}: {exc}") + if add_msg: + msg += f"\nHint: {add_msg}" + raise InstallationError(msg) + + if req_as_string is not None: + req: Optional[Requirement] = _parse_req_string(req_as_string) + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name: str, + comes_from: Optional[Union[str, InstallRequirement]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, + comes_from, + link=parts.link, + markers=parts.markers, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string: str, + comes_from: Optional[InstallRequirement] = None, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + try: + req = get_requirement(req_string) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {req_string!r}: {exc}") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if ( + req.url + and comes_from + and comes_from.link + and comes_from.link.netloc in domains_not_allowed + ): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + f"{comes_from.name} depends on {req} " + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + use_pep517=use_pep517, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req: ParsedRequirement, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + config_settings=config_settings, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + global_options=( + parsed_req.options.get("global_options", []) + if parsed_req.options + else [] + ), + hash_options=( + parsed_req.options.get("hashes", {}) if parsed_req.options else {} + ), + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + config_settings=config_settings, + ) + return req + + +def install_req_from_link_and_ireq( + link: Link, ireq: InstallRequirement +) -> InstallRequirement: + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + ) + + +def install_req_drop_extras(ireq: InstallRequirement) -> InstallRequirement: + """ + Creates a new InstallationRequirement using the given template but without + any extras. Sets the original requirement as the new one's parent + (comes_from). + """ + return InstallRequirement( + req=( + _set_requirement_extras(ireq.req, set()) if ireq.req is not None else None + ), + comes_from=ireq, + editable=ireq.editable, + link=ireq.link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + constraint=ireq.constraint, + extras=[], + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + permit_editable_wheels=ireq.permit_editable_wheels, + ) + + +def install_req_extend_extras( + ireq: InstallRequirement, + extras: Collection[str], +) -> InstallRequirement: + """ + Returns a copy of an installation requirement with some additional extras. + Makes a shallow copy of the ireq object. + """ + result = copy.copy(ireq) + result.extras = {*ireq.extras, *extras} + result.req = ( + _set_requirement_extras(ireq.req, result.extras) + if ireq.req is not None + else None + ) + return result diff --git a/env/Lib/site-packages/pip/_internal/req/req_file.py b/env/Lib/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 00000000..53ad8674 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,551 @@ +""" +Requirements file parsing +""" + +import logging +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Generator, + Iterable, + List, + NoReturn, + Optional, + Tuple, +) + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +from pip._internal.models.search_scope import SearchScope +from pip._internal.utils.encoding import auto_decode + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + from pip._internal.network.session import PipSession + +__all__ = ["parse_requirements"] + +ReqFileLines = Iterable[Tuple[int, str]] + +LineParser = Callable[[str], Tuple[str, Values]] + +SCHEME_RE = re.compile(r"^(http|https|file):", re.I) +COMMENT_RE = re.compile(r"(^|\s+)#.*$") + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r"(?P\$\{(?P[A-Z0-9_]+)\})") + +SUPPORTED_OPTIONS: List[Callable[..., optparse.Option]] = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.global_options, + cmdoptions.hash, + cmdoptions.config_settings, +] + +SUPPORTED_OPTIONS_EDITABLE_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.config_settings, +] + + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] +SUPPORTED_OPTIONS_EDITABLE_REQ_DEST = [ + str(o().dest) for o in SUPPORTED_OPTIONS_EDITABLE_REQ +] + +logger = logging.getLogger(__name__) + + +class ParsedRequirement: + def __init__( + self, + requirement: str, + is_editable: bool, + comes_from: str, + constraint: bool, + options: Optional[Dict[str, Any]] = None, + line_source: Optional[str] = None, + ) -> None: + self.requirement = requirement + self.is_editable = is_editable + self.comes_from = comes_from + self.options = options + self.constraint = constraint + self.line_source = line_source + + +class ParsedLine: + def __init__( + self, + filename: str, + lineno: int, + args: str, + opts: Values, + constraint: bool, + ) -> None: + self.filename = filename + self.lineno = lineno + self.opts = opts + self.constraint = constraint + + if args: + self.is_requirement = True + self.is_editable = False + self.requirement = args + elif opts.editables: + self.is_requirement = True + self.is_editable = True + # We don't support multiple -e on one line + self.requirement = opts.editables[0] + else: + self.is_requirement = False + + +def parse_requirements( + filename: str, + session: "PipSession", + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + constraint: bool = False, +) -> Generator[ParsedRequirement, None, None]: + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, options=options, finder=finder, session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content: str) -> ReqFileLines: + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, +) -> ParsedRequirement: + # preserve for the nested code path + line_comes_from = "{} {} (line {})".format( + "-c" if line.constraint else "-r", + line.filename, + line.lineno, + ) + + assert line.is_requirement + + # get the options that apply to requirements + if line.is_editable: + supported_dest = SUPPORTED_OPTIONS_EDITABLE_REQ_DEST + else: + supported_dest = SUPPORTED_OPTIONS_REQ_DEST + req_options = {} + for dest in supported_dest: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f"line {line.lineno} of {line.filename}" + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts: Values, + filename: str, + lineno: int, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + session: Optional["PipSession"] = None, +) -> None: + if opts.hashes: + logger.warning( + "%s line %s has --hash but no requirement, and will be ignored.", + filename, + lineno, + ) + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + no_index = finder.search_scope.no_index + if opts.no_index is True: + no_index = True + index_urls = [] + if opts.index_url and not no_index: + index_urls = [opts.index_url] + if opts.extra_index_urls and not no_index: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + no_index=no_index, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f"line {lineno} of {filename}" + session.add_trusted_host(host, source=source) + + +def handle_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, + finder: Optional["PackageFinder"] = None, + session: Optional["PipSession"] = None, +) -> Optional[ParsedRequirement]: + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.is_requirement: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session: "PipSession", + line_parser: LineParser, + ) -> None: + self._session = session + self._line_parser = line_parser + + def parse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + """Parse a given file, yielding parsed lines.""" + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + for line in self._parse_file(filename, constraint): + if not line.is_requirement and ( + line.opts.requirements or line.opts.constraints + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + req_path = os.path.join( + os.path.dirname(filename), + req_path, + ) + + yield from self._parse_and_recurse(req_path, nested_constraint) + else: + yield line + + def _parse_file( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f"Invalid requirement: {line}\n{e.msg}" + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder: Optional["PackageFinder"]) -> LineParser: + def parse_line(line: str) -> Tuple[str, Values]: + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + try: + options = shlex.split(options_str) + except ValueError as e: + raise OptionParsingError(f"Could not split options: {options_str}") from e + + opts, _ = parser.parse_args(options, defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line: str) -> Tuple[str, str]: + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(" ") + args = [] + options = tokens[:] + for token in tokens: + if token.startswith("-") or token.startswith("--"): + break + else: + args.append(token) + options.pop(0) + return " ".join(args), " ".join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg: str) -> None: + self.msg = msg + + +def build_parser() -> optparse.OptionParser: + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self: Any, msg: str) -> "NoReturn": + raise OptionParsingError(msg) + + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line: List[str] = [] + for line_number, line in lines_enum: + if not line.endswith("\\") or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = " " + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip("\\")) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub("", line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url: str, session: "PipSession") -> Tuple[str, str]: + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = urllib.parse.urlsplit(url).scheme + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ["http", "https", "file"]: + # Delay importing heavy network modules until absolutely necessary. + from pip._internal.network.utils import raise_for_status + + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + # Assume this is a bare path. + try: + with open(url, "rb") as f: + content = auto_decode(f.read()) + except OSError as exc: + raise InstallationError(f"Could not open requirements file: {exc}") + return url, content diff --git a/env/Lib/site-packages/pip/_internal/req/req_install.py b/env/Lib/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 00000000..834bc513 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,934 @@ +import functools +import logging +import os +import shutil +import sys +import uuid +import zipfile +from optparse import Values +from pathlib import Path +from typing import Any, Collection, Dict, Iterable, List, Optional, Sequence, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError, PreviousBuildDirError +from pip._internal.locations import get_scheme +from pip._internal.metadata import ( + BaseDistribution, + get_default_environment, + get_directory_distribution, + get_wheel_distribution, +) +from pip._internal.metadata.base import FilesystemWheel +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_editable import generate_editable_metadata +from pip._internal.operations.build.metadata_legacy import ( + generate_metadata as generate_metadata_legacy, +) +from pip._internal.operations.install.editable_legacy import ( + install_editable as install_editable_legacy, +) +from pip._internal.operations.install.wheel import install_wheel +from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path +from pip._internal.req.req_uninstall import UninstallPathSet +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + ConfiguredBuildBackendHookCaller, + ask_path_exists, + backup_dir, + display_path, + hide_url, + is_installable_dir, + redact_auth_from_requirement, + redact_auth_from_url, +) +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.unpacking import unpack_file +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +class InstallRequirement: + """ + Represents something that may be installed later on, may have information + about where to fetch the relevant requirement and also contains logic for + installing the said requirement. + """ + + def __init__( + self, + req: Optional[Requirement], + comes_from: Optional[Union[str, "InstallRequirement"]], + editable: bool = False, + link: Optional[Link] = None, + markers: Optional[Marker] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + *, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + constraint: bool = False, + extras: Collection[str] = (), + user_supplied: bool = False, + permit_editable_wheels: bool = False, + ) -> None: + assert req is None or isinstance(req, Requirement), req + self.req = req + self.comes_from = comes_from + self.constraint = constraint + self.editable = editable + self.permit_editable_wheels = permit_editable_wheels + + # source_dir is the local directory where the linked requirement is + # located, or unpacked. In case unpacking is needed, creating and + # populating source_dir is done by the RequirementPreparer. Note this + # is not necessarily the directory where pyproject.toml or setup.py is + # located - that one is obtained via unpacked_source_directory. + self.source_dir: Optional[str] = None + if self.editable: + assert link + if link.is_file: + self.source_dir = os.path.normpath(os.path.abspath(link.file_path)) + + # original_link is the direct URL that was provided by the user for the + # requirement, either directly or via a constraints file. + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + + # When this InstallRequirement is a wheel obtained from the cache of locally + # built wheels, this is the source link corresponding to the cache entry, which + # was used to download and build the cached wheel. + self.cached_wheel_source_link: Optional[Link] = None + + # Information about the location of the artifact that was downloaded . This + # property is guaranteed to be set in resolver results. + self.download_info: Optional[DirectUrl] = None + + # Path to any downloaded or already-existing package. + self.local_file_path: Optional[str] = None + if self.link and self.link.is_file: + self.local_file_path = self.link.file_path + + if extras: + self.extras = extras + elif req: + self.extras = req.extras + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the Distribution object if this requirement is already installed. + self.satisfied_by: Optional[BaseDistribution] = None + # Whether the installation process should try to uninstall an existing + # distribution before installing this requirement. + self.should_reinstall = False + # Temporary build location + self._temp_build_dir: Optional[TempDirectory] = None + # Set to True after successful installation + self.install_succeeded: Optional[bool] = None + # Supplied options + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + self.config_settings = config_settings + # Set to True after successful preparation of this requirement + self.prepared = False + # User supplied requirement are explicitly requested for installation + # by the user via CLI arguments or requirements files, as opposed to, + # e.g. dependencies, extras or constraints. + self.user_supplied = user_supplied + + self.isolated = isolated + self.build_env: BuildEnvironment = NoOpBuildEnvironment() + + # For PEP 517, the directory where we request the project metadata + # gets stored. We need this to pass to build_wheel, so the backend + # can ensure that the wheel matches the metadata (see the PEP for + # details). + self.metadata_directory: Optional[str] = None + + # The static build requirements (from pyproject.toml) + self.pyproject_requires: Optional[List[str]] = None + + # Build requirements that we will check are available + self.requirements_to_check: List[str] = [] + + # The PEP 517 backend we should use to build the project + self.pep517_backend: Optional[BuildBackendHookCaller] = None + + # Are we using PEP 517 for this requirement? + # After pyproject.toml has been loaded, the only valid values are True + # and False. Before loading, None is valid (meaning "use the default"). + # Setting an explicit value before loading pyproject.toml is supported, + # but after loading this flag should be treated as read only. + self.use_pep517 = use_pep517 + + # If config settings are provided, enforce PEP 517. + if self.config_settings: + if self.use_pep517 is False: + logger.warning( + "--no-use-pep517 ignored for %s " + "because --config-settings are specified.", + self, + ) + self.use_pep517 = True + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + # This requirement needs to be unpacked before it can be installed. + self._archive_source: Optional[Path] = None + + def __str__(self) -> str: + if self.req: + s = redact_auth_from_requirement(self.req) + if self.link: + s += f" from {redact_auth_from_url(self.link.url)}" + elif self.link: + s = redact_auth_from_url(self.link.url) + else: + s = "" + if self.satisfied_by is not None: + if self.satisfied_by.location is not None: + location = display_path(self.satisfied_by.location) + else: + location = "" + s += f" in {location}" + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from: Optional[str] = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += f" (from {comes_from})" + return s + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__} object: " + f"{str(self)} editable={self.editable!r}>" + ) + + def format_debug(self) -> str: + """An un-tested helper for getting state, for debugging.""" + attributes = vars(self) + names = sorted(attributes) + + state = (f"{attr}={attributes[attr]!r}" for attr in sorted(names)) + return "<{name} object: {{{state}}}>".format( + name=self.__class__.__name__, + state=", ".join(state), + ) + + # Things that are valid for all kinds of requirements? + @property + def name(self) -> Optional[str]: + if self.req is None: + return None + return self.req.name + + @functools.cached_property + def supports_pyproject_editable(self) -> bool: + if not self.use_pep517: + return False + assert self.pep517_backend + with self.build_env: + runner = runner_with_spinner_message( + "Checking if build backend supports build_editable" + ) + with self.pep517_backend.subprocess_runner(runner): + return "build_editable" in self.pep517_backend._supported_features() + + @property + def specifier(self) -> SpecifierSet: + assert self.req is not None + return self.req.specifier + + @property + def is_direct(self) -> bool: + """Whether this requirement was specified as a direct URL.""" + return self.original_link is not None + + @property + def is_pinned(self) -> bool: + """Return whether I am pinned to an exact version. + + For example, some-package==1.2 is pinned; some-package>1.2 is not. + """ + assert self.req is not None + specifiers = self.req.specifier + return len(specifiers) == 1 and next(iter(specifiers)).operator in {"==", "==="} + + def match_markers(self, extras_requested: Optional[Iterable[str]] = None) -> bool: + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ("",) + if self.markers is not None: + return any( + self.markers.evaluate({"extra": extra}) for extra in extras_requested + ) + else: + return True + + @property + def has_hash_options(self) -> bool: + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet: bool = True) -> Hashes: + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + if trust_internet: + link = self.link + elif self.is_direct and self.user_supplied: + link = self.original_link + else: + link = None + if link and link.hash: + assert link.hash_name is not None + good_hashes.setdefault(link.hash_name, []).append(link.hash) + return Hashes(good_hashes) + + def from_path(self) -> Optional[str]: + """Format a nice indicator to show where this "comes from" """ + if self.req is None: + return None + s = str(self.req) + if self.comes_from: + comes_from: Optional[str] + if isinstance(self.comes_from, str): + comes_from = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += "->" + comes_from + return s + + def ensure_build_location( + self, build_dir: str, autodelete: bool, parallel_builds: bool + ) -> str: + assert build_dir is not None + if self._temp_build_dir is not None: + assert self._temp_build_dir.path + return self._temp_build_dir.path + if self.req is None: + # Some systems have /tmp as a symlink which confuses custom + # builds (such as numpy). Thus, we ensure that the real path + # is returned. + self._temp_build_dir = TempDirectory( + kind=tempdir_kinds.REQ_BUILD, globally_managed=True + ) + + return self._temp_build_dir.path + + # This is the only remaining place where we manually determine the path + # for the temporary directory. It is only needed for editables where + # it is the value of the --src option. + + # When parallel builds are enabled, add a UUID to the build directory + # name so multiple builds do not interfere with each other. + dir_name: str = canonicalize_name(self.req.name) + if parallel_builds: + dir_name = f"{dir_name}_{uuid.uuid4().hex}" + + # FIXME: Is there a better place to create the build_dir? (hg and bzr + # need this) + if not os.path.exists(build_dir): + logger.debug("Creating directory %s", build_dir) + os.makedirs(build_dir) + actual_build_dir = os.path.join(build_dir, dir_name) + # `None` indicates that we respect the globally-configured deletion + # settings, which is what we actually want when auto-deleting. + delete_arg = None if autodelete else False + return TempDirectory( + path=actual_build_dir, + delete=delete_arg, + kind=tempdir_kinds.REQ_BUILD, + globally_managed=True, + ).path + + def _set_requirement(self) -> None: + """Set requirement after generating metadata.""" + assert self.req is None + assert self.metadata is not None + assert self.source_dir is not None + + # Construct a Requirement object from the generated metadata + if isinstance(parse_version(self.metadata["Version"]), Version): + op = "==" + else: + op = "===" + + self.req = get_requirement( + "".join( + [ + self.metadata["Name"], + op, + self.metadata["Version"], + ] + ) + ) + + def warn_on_mismatching_name(self) -> None: + assert self.req is not None + metadata_name = canonicalize_name(self.metadata["Name"]) + if canonicalize_name(self.req.name) == metadata_name: + # Everything is fine. + return + + # If we're here, there's a mismatch. Log a warning about it. + logger.warning( + "Generating metadata for package %s " + "produced metadata for project name %s. Fix your " + "#egg=%s fragments.", + self.name, + metadata_name, + self.name, + ) + self.req = get_requirement(metadata_name) + + def check_if_exists(self, use_user_site: bool) -> None: + """Find an installed distribution that satisfies or conflicts + with this requirement, and set self.satisfied_by or + self.should_reinstall appropriately. + """ + if self.req is None: + return + existing_dist = get_default_environment().get_distribution(self.req.name) + if not existing_dist: + return + + version_compatible = self.req.specifier.contains( + existing_dist.version, + prereleases=True, + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if existing_dist.in_usersite: + self.should_reinstall = True + elif running_under_virtualenv() and existing_dist.in_site_packages: + raise InstallationError( + f"Will not install to the user site because it will " + f"lack sys.path precedence to {existing_dist.raw_name} " + f"in {existing_dist.location}" + ) + else: + self.should_reinstall = True + else: + if self.editable: + self.should_reinstall = True + # when installing editables, nothing pre-existing should ever + # satisfy + self.satisfied_by = None + else: + self.satisfied_by = existing_dist + + # Things valid for wheels + @property + def is_wheel(self) -> bool: + if not self.link: + return False + return self.link.is_wheel + + @property + def is_wheel_from_cache(self) -> bool: + # When True, it means that this InstallRequirement is a local wheel file in the + # cache of locally built wheels. + return self.cached_wheel_source_link is not None + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return os.path.join( + self.source_dir, self.link and self.link.subdirectory_fragment or "" + ) + + @property + def setup_py_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_py = os.path.join(self.unpacked_source_directory, "setup.py") + + return setup_py + + @property + def setup_cfg_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_cfg = os.path.join(self.unpacked_source_directory, "setup.cfg") + + return setup_cfg + + @property + def pyproject_toml_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return make_pyproject_path(self.unpacked_source_directory) + + def load_pyproject_toml(self) -> None: + """Load the pyproject.toml file. + + After calling this routine, all of the attributes related to PEP 517 + processing for this requirement have been set. In particular, the + use_pep517 attribute can be used to determine whether we should + follow the PEP 517 or legacy (setup.py) code path. + """ + pyproject_toml_data = load_pyproject_toml( + self.use_pep517, self.pyproject_toml_path, self.setup_py_path, str(self) + ) + + if pyproject_toml_data is None: + assert not self.config_settings + self.use_pep517 = False + return + + self.use_pep517 = True + requires, backend, check, backend_path = pyproject_toml_data + self.requirements_to_check = check + self.pyproject_requires = requires + self.pep517_backend = ConfiguredBuildBackendHookCaller( + self, + self.unpacked_source_directory, + backend, + backend_path=backend_path, + ) + + def isolated_editable_sanity_check(self) -> None: + """Check that an editable requirement if valid for use with PEP 517/518. + + This verifies that an editable that has a pyproject.toml either supports PEP 660 + or as a setup.py or a setup.cfg + """ + if ( + self.editable + and self.use_pep517 + and not self.supports_pyproject_editable + and not os.path.isfile(self.setup_py_path) + and not os.path.isfile(self.setup_cfg_path) + ): + raise InstallationError( + f"Project {self} has a 'pyproject.toml' and its build " + f"backend is missing the 'build_editable' hook. Since it does not " + f"have a 'setup.py' nor a 'setup.cfg', " + f"it cannot be installed in editable mode. " + f"Consider using a build backend that supports PEP 660." + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517 and PEP 660, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir, f"No source dir for {self}" + details = self.name or f"from {self.link}" + + if self.use_pep517: + assert self.pep517_backend is not None + if ( + self.editable + and self.permit_editable_wheels + and self.supports_pyproject_editable + ): + self.metadata_directory = generate_editable_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata_legacy( + build_env=self.build_env, + setup_py_path=self.setup_py_path, + source_dir=self.unpacked_source_directory, + isolated=self.isolated, + details=details, + ) + + # Act on the newly generated metadata, based on the name and version. + if not self.name: + self._set_requirement() + else: + self.warn_on_mismatching_name() + + self.assert_source_matches_version() + + @property + def metadata(self) -> Any: + if not hasattr(self, "_metadata"): + self._metadata = self.get_dist().metadata + + return self._metadata + + def get_dist(self) -> BaseDistribution: + if self.metadata_directory: + return get_directory_distribution(self.metadata_directory) + elif self.local_file_path and self.is_wheel: + assert self.req is not None + return get_wheel_distribution( + FilesystemWheel(self.local_file_path), + canonicalize_name(self.req.name), + ) + raise AssertionError( + f"InstallRequirement {self} has no metadata directory and no wheel: " + f"can't make a distribution." + ) + + def assert_source_matches_version(self) -> None: + assert self.source_dir, f"No source dir for {self}" + version = self.metadata["version"] + if self.req and self.req.specifier and version not in self.req.specifier: + logger.warning( + "Requested %s, but installing version %s", + self, + version, + ) + else: + logger.debug( + "Source in %s has version %s, which satisfies requirement %s", + display_path(self.source_dir), + version, + self, + ) + + # For both source distributions and editables + def ensure_has_source_dir( + self, + parent_dir: str, + autodelete: bool = False, + parallel_builds: bool = False, + ) -> None: + """Ensure that a source_dir is set. + + This will create a temporary build dir if the name of the requirement + isn't known yet. + + :param parent_dir: The ideal pip parent_dir for the source_dir. + Generally src_dir for editables and build_dir for sdists. + :return: self.source_dir + """ + if self.source_dir is None: + self.source_dir = self.ensure_build_location( + parent_dir, + autodelete=autodelete, + parallel_builds=parallel_builds, + ) + + def needs_unpacked_archive(self, archive_source: Path) -> None: + assert self._archive_source is None + self._archive_source = archive_source + + def ensure_pristine_source_checkout(self) -> None: + """Ensure the source directory has not yet been built in.""" + assert self.source_dir is not None + if self._archive_source is not None: + unpack_file(str(self._archive_source), self.source_dir) + elif is_installable_dir(self.source_dir): + # If a checkout exists, it's unwise to keep going. + # version inconsistencies are logged later, but do not fail + # the installation. + raise PreviousBuildDirError( + f"pip can't proceed with requirements '{self}' due to a " + f"pre-existing build directory ({self.source_dir}). This is likely " + "due to a previous installation that failed . pip is " + "being responsible and not assuming it can delete this. " + "Please delete it and try again." + ) + + # For editable installations + def update_editable(self) -> None: + if not self.link: + logger.debug( + "Cannot update repository at %s; repository location is unknown", + self.source_dir, + ) + return + assert self.editable + assert self.source_dir + if self.link.scheme == "file": + # Static paths don't get updated + return + vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) + # Editable requirements are validated in Requirement constructors. + # So here, if it's neither a path nor a valid VCS URL, it's a bug. + assert vcs_backend, f"Unsupported VCS URL {self.link.url}" + hidden_url = hide_url(self.link.url) + vcs_backend.obtain(self.source_dir, url=hidden_url, verbosity=0) + + # Top-level Actions + def uninstall( + self, auto_confirm: bool = False, verbose: bool = False + ) -> Optional[UninstallPathSet]: + """ + Uninstall the distribution currently satisfying this requirement. + + Prompts before removing or modifying files unless + ``auto_confirm`` is True. + + Refuses to delete or modify files outside of ``sys.prefix`` - + thus uninstallation within a virtual environment can only + modify that virtual environment, even if the virtualenv is + linked to global site-packages. + + """ + assert self.req + dist = get_default_environment().get_distribution(self.req.name) + if not dist: + logger.warning("Skipping %s as it is not installed.", self.name) + return None + logger.info("Found existing installation: %s", dist) + + uninstalled_pathset = UninstallPathSet.from_dist(dist) + uninstalled_pathset.remove(auto_confirm, verbose) + return uninstalled_pathset + + def _get_archive_name(self, path: str, parentdir: str, rootdir: str) -> str: + def _clean_zip_name(name: str, prefix: str) -> str: + assert name.startswith( + prefix + os.path.sep + ), f"name {name!r} doesn't start with prefix {prefix!r}" + name = name[len(prefix) + 1 :] + name = name.replace(os.path.sep, "/") + return name + + assert self.req is not None + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.req.name + "/" + name + + def archive(self, build_dir: Optional[str]) -> None: + """Saves archive to provided build_dir. + + Used for saving downloaded VCS requirements as part of `pip download`. + """ + assert self.source_dir + if build_dir is None: + return + + create_archive = True + archive_name = "{}-{}.zip".format(self.name, self.metadata["version"]) + archive_path = os.path.join(build_dir, archive_name) + + if os.path.exists(archive_path): + response = ask_path_exists( + f"The file {display_path(archive_path)} exists. (i)gnore, (w)ipe, " + "(b)ackup, (a)bort ", + ("i", "w", "b", "a"), + ) + if response == "i": + create_archive = False + elif response == "w": + logger.warning("Deleting %s", display_path(archive_path)) + os.remove(archive_path) + elif response == "b": + dest_file = backup_dir(archive_path) + logger.warning( + "Backing up %s to %s", + display_path(archive_path), + display_path(dest_file), + ) + shutil.move(archive_path, dest_file) + elif response == "a": + sys.exit(-1) + + if not create_archive: + return + + zip_output = zipfile.ZipFile( + archive_path, + "w", + zipfile.ZIP_DEFLATED, + allowZip64=True, + ) + with zip_output: + dir = os.path.normcase(os.path.abspath(self.unpacked_source_directory)) + for dirpath, dirnames, filenames in os.walk(dir): + for dirname in dirnames: + dir_arcname = self._get_archive_name( + dirname, + parentdir=dirpath, + rootdir=dir, + ) + zipdir = zipfile.ZipInfo(dir_arcname + "/") + zipdir.external_attr = 0x1ED << 16 # 0o755 + zip_output.writestr(zipdir, "") + for filename in filenames: + file_arcname = self._get_archive_name( + filename, + parentdir=dirpath, + rootdir=dir, + ) + filename = os.path.join(dirpath, filename) + zip_output.write(filename, file_arcname) + + logger.info("Saved %s", display_path(archive_path)) + + def install( + self, + global_options: Optional[Sequence[str]] = None, + root: Optional[str] = None, + home: Optional[str] = None, + prefix: Optional[str] = None, + warn_script_location: bool = True, + use_user_site: bool = False, + pycompile: bool = True, + ) -> None: + assert self.req is not None + scheme = get_scheme( + self.req.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + if self.editable and not self.is_wheel: + deprecated( + reason=( + f"Legacy editable install of {self} (setup.py develop) " + "is deprecated." + ), + replacement=( + "to add a pyproject.toml or enable --use-pep517, " + "and use setuptools >= 64. " + "If the resulting installation is not behaving as expected, " + "try using --config-settings editable_mode=compat. " + "Please consult the setuptools documentation for more information" + ), + gone_in="25.0", + issue=11457, + ) + if self.config_settings: + logger.warning( + "--config-settings ignored for legacy editable install of %s. " + "Consider upgrading to a version of setuptools " + "that supports PEP 660 (>= 64).", + self, + ) + install_editable_legacy( + global_options=global_options if global_options is not None else [], + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.req.name, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + ) + self.install_succeeded = True + return + + assert self.is_wheel + assert self.local_file_path + + install_wheel( + self.req.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=self.download_info if self.is_direct else None, + requested=self.user_supplied, + ) + self.install_succeeded = True + + +def check_invalid_constraint_type(req: InstallRequirement) -> str: + # Check for unsupported forms + problem = "" + if not req.name: + problem = "Unnamed requirements are not allowed as constraints" + elif req.editable: + problem = "Editable requirements are not allowed as constraints" + elif req.extras: + problem = "Constraints cannot have extras" + + if problem: + deprecated( + reason=( + "Constraints are only allowed to take the form of a package " + "name and a version specifier. Other forms were originally " + "permitted as an accident of the implementation, but were " + "undocumented. The new implementation of the resolver no " + "longer supports these forms." + ), + replacement="replacing the constraint with a requirement", + # No plan yet for when the new resolver becomes default + gone_in=None, + issue=8210, + ) + + return problem + + +def _has_option(options: Values, reqs: List[InstallRequirement], option: str) -> bool: + if getattr(options, option, None): + return True + for req in reqs: + if getattr(req, option, None): + return True + return False + + +def check_legacy_setup_py_options( + options: Values, + reqs: List[InstallRequirement], +) -> None: + has_build_options = _has_option(options, reqs, "build_options") + has_global_options = _has_option(options, reqs, "global_options") + if has_build_options or has_global_options: + deprecated( + reason="--build-option and --global-option are deprecated.", + issue=11859, + replacement="to use --config-settings", + gone_in="25.0", + ) + logger.warning( + "Implying --no-binary=:all: due to the presence of " + "--build-option / --global-option. " + ) + options.format_control.disallow_binaries() diff --git a/env/Lib/site-packages/pip/_internal/req/req_set.py b/env/Lib/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 00000000..ec7a6e07 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,82 @@ +import logging +from collections import OrderedDict +from typing import Dict, List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +class RequirementSet: + def __init__(self, check_supported_wheels: bool = True) -> None: + """Create a RequirementSet.""" + + self.requirements: Dict[str, InstallRequirement] = OrderedDict() + self.check_supported_wheels = check_supported_wheels + + self.unnamed_requirements: List[InstallRequirement] = [] + + def __str__(self) -> str: + requirements = sorted( + (req for req in self.requirements.values() if not req.comes_from), + key=lambda req: canonicalize_name(req.name or ""), + ) + return " ".join(str(req.req) for req in requirements) + + def __repr__(self) -> str: + requirements = sorted( + self.requirements.values(), + key=lambda req: canonicalize_name(req.name or ""), + ) + + format_string = "<{classname} object; {count} requirement(s): {reqs}>" + return format_string.format( + classname=self.__class__.__name__, + count=len(requirements), + reqs=", ".join(str(req.req) for req in requirements), + ) + + def add_unnamed_requirement(self, install_req: InstallRequirement) -> None: + assert not install_req.name + self.unnamed_requirements.append(install_req) + + def add_named_requirement(self, install_req: InstallRequirement) -> None: + assert install_req.name + + project_name = canonicalize_name(install_req.name) + self.requirements[project_name] = install_req + + def has_requirement(self, name: str) -> bool: + project_name = canonicalize_name(name) + + return ( + project_name in self.requirements + and not self.requirements[project_name].constraint + ) + + def get_requirement(self, name: str) -> InstallRequirement: + project_name = canonicalize_name(name) + + if project_name in self.requirements: + return self.requirements[project_name] + + raise KeyError(f"No project with the name {name!r}") + + @property + def all_requirements(self) -> List[InstallRequirement]: + return self.unnamed_requirements + list(self.requirements.values()) + + @property + def requirements_to_install(self) -> List[InstallRequirement]: + """Return the list of requirements that need to be installed. + + TODO remove this property together with the legacy resolver, since the new + resolver only returns requirements that need to be installed. + """ + return [ + install_req + for install_req in self.all_requirements + if not install_req.constraint and not install_req.satisfied_by + ] diff --git a/env/Lib/site-packages/pip/_internal/req/req_uninstall.py b/env/Lib/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 00000000..26df2084 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,633 @@ +import functools +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Generator, Iterable, List, Optional, Set, Tuple + +from pip._internal.exceptions import LegacyDistutilsInstall, UninstallMissingRecord +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ask, normalize_path, renames, rmtree +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = getLogger(__name__) + + +def _script_names( + bin_dir: str, script_name: str, is_gui: bool +) -> Generator[str, None, None]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + exe_name = os.path.join(bin_dir, script_name) + yield exe_name + if not WINDOWS: + return + yield f"{exe_name}.exe" + yield f"{exe_name}.exe.manifest" + if is_gui: + yield f"{exe_name}-script.pyw" + else: + yield f"{exe_name}-script.py" + + +def _unique( + fn: Callable[..., Generator[Any, None, None]] +) -> Callable[..., Generator[Any, None, None]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Generator[Any, None, None]: + seen: Set[Any] = set() + for item in fn(*args, **kw): + if item not in seen: + seen.add(item) + yield item + + return unique + + +@_unique +def uninstallation_paths(dist: BaseDistribution) -> Generator[str, None, None]: + """ + Yield all the uninstallation paths for dist based on RECORD-without-.py[co] + + Yield paths to all the files in RECORD. For each .py file in RECORD, add + the .pyc and .pyo in the same directory. + + UninstallPathSet.add() takes care of the __pycache__ .py[co]. + + If RECORD is not found, raises an error, + with possible information from the INSTALLER file. + + https://packaging.python.org/specifications/recording-installed-packages/ + """ + location = dist.location + assert location is not None, "not installed" + + entries = dist.iter_declared_entries() + if entries is None: + raise UninstallMissingRecord(distribution=dist) + + for entry in entries: + path = os.path.join(location, entry) + yield path + if path.endswith(".py"): + dn, fn = os.path.split(path) + base = fn[:-3] + path = os.path.join(dn, base + ".pyc") + yield path + path = os.path.join(dn, base + ".pyo") + yield path + + +def compact(paths: Iterable[str]) -> Set[str]: + """Compact a path set to contain the minimal number of paths + necessary to contain all paths in the set. If /a/path/ and + /a/path/to/a/file.txt are both in the set, leave only the + shorter path.""" + + sep = os.path.sep + short_paths: Set[str] = set() + for path in sorted(paths, key=len): + should_skip = any( + path.startswith(shortpath.rstrip("*")) + and path[len(shortpath.rstrip("*").rstrip(sep))] == sep + for shortpath in short_paths + ) + if not should_skip: + short_paths.add(path) + return short_paths + + +def compress_for_rename(paths: Iterable[str]) -> Set[str]: + """Returns a set containing the paths that need to be renamed. + + This set may include directories when the original sequence of paths + included every file on disk. + """ + case_map = {os.path.normcase(p): p for p in paths} + remaining = set(case_map) + unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) + wildcards: Set[str] = set() + + def norm_join(*a: str) -> str: + return os.path.normcase(os.path.join(*a)) + + for root in unchecked: + if any(os.path.normcase(root).startswith(w) for w in wildcards): + # This directory has already been handled. + continue + + all_files: Set[str] = set() + all_subdirs: Set[str] = set() + for dirname, subdirs, files in os.walk(root): + all_subdirs.update(norm_join(root, dirname, d) for d in subdirs) + all_files.update(norm_join(root, dirname, f) for f in files) + # If all the files we found are in our remaining set of files to + # remove, then remove them from the latter set and add a wildcard + # for the directory. + if not (all_files - remaining): + remaining.difference_update(all_files) + wildcards.add(root + os.sep) + + return set(map(case_map.__getitem__, remaining)) | wildcards + + +def compress_for_output_listing(paths: Iterable[str]) -> Tuple[Set[str], Set[str]]: + """Returns a tuple of 2 sets of which paths to display to user + + The first set contains paths that would be deleted. Files of a package + are not added and the top-level directory of the package has a '*' added + at the end - to signify that all it's contents are removed. + + The second set contains files that would have been skipped in the above + folders. + """ + + will_remove = set(paths) + will_skip = set() + + # Determine folders and files + folders = set() + files = set() + for path in will_remove: + if path.endswith(".pyc"): + continue + if path.endswith("__init__.py") or ".dist-info" in path: + folders.add(os.path.dirname(path)) + files.add(path) + + _normcased_files = set(map(os.path.normcase, files)) + + folders = compact(folders) + + # This walks the tree using os.walk to not miss extra folders + # that might get added. + for folder in folders: + for dirpath, _, dirfiles in os.walk(folder): + for fname in dirfiles: + if fname.endswith(".pyc"): + continue + + file_ = os.path.join(dirpath, fname) + if ( + os.path.isfile(file_) + and os.path.normcase(file_) not in _normcased_files + ): + # We are skipping this file. Add it to the set. + will_skip.add(file_) + + will_remove = files | {os.path.join(folder, "*") for folder in folders} + + return will_remove, will_skip + + +class StashedUninstallPathSet: + """A set of file rename operations to stash files while + tentatively uninstalling them.""" + + def __init__(self) -> None: + # Mapping from source file root to [Adjacent]TempDirectory + # for files under that directory. + self._save_dirs: Dict[str, TempDirectory] = {} + # (old path, new path) tuples for each move that may need + # to be undone. + self._moves: List[Tuple[str, str]] = [] + + def _get_directory_stash(self, path: str) -> str: + """Stashes a directory. + + Directories are stashed adjacent to their original location if + possible, or else moved/copied into the user's temp dir.""" + + try: + save_dir: TempDirectory = AdjacentTempDirectory(path) + except OSError: + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[os.path.normcase(path)] = save_dir + + return save_dir.path + + def _get_file_stash(self, path: str) -> str: + """Stashes a file. + + If no root has been provided, one will be created for the directory + in the user's temp directory.""" + path = os.path.normcase(path) + head, old_head = os.path.dirname(path), None + save_dir = None + + while head != old_head: + try: + save_dir = self._save_dirs[head] + break + except KeyError: + pass + head, old_head = os.path.dirname(head), head + else: + # Did not find any suitable root + head = os.path.dirname(path) + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[head] = save_dir + + relpath = os.path.relpath(path, head) + if relpath and relpath != os.path.curdir: + return os.path.join(save_dir.path, relpath) + return save_dir.path + + def stash(self, path: str) -> str: + """Stashes the directory or file and returns its new location. + Handle symlinks as files to avoid modifying the symlink targets. + """ + path_is_dir = os.path.isdir(path) and not os.path.islink(path) + if path_is_dir: + new_path = self._get_directory_stash(path) + else: + new_path = self._get_file_stash(path) + + self._moves.append((path, new_path)) + if path_is_dir and os.path.isdir(new_path): + # If we're moving a directory, we need to + # remove the destination first or else it will be + # moved to inside the existing directory. + # We just created new_path ourselves, so it will + # be removable. + os.rmdir(new_path) + renames(path, new_path) + return new_path + + def commit(self) -> None: + """Commits the uninstall by removing stashed files.""" + for save_dir in self._save_dirs.values(): + save_dir.cleanup() + self._moves = [] + self._save_dirs = {} + + def rollback(self) -> None: + """Undoes the uninstall by moving stashed files back.""" + for p in self._moves: + logger.info("Moving to %s\n from %s", *p) + + for new_path, path in self._moves: + try: + logger.debug("Replacing %s from %s", new_path, path) + if os.path.isfile(new_path) or os.path.islink(new_path): + os.unlink(new_path) + elif os.path.isdir(new_path): + rmtree(new_path) + renames(path, new_path) + except OSError as ex: + logger.error("Failed to restore %s", new_path) + logger.debug("Exception: %s", ex) + + self.commit() + + @property + def can_rollback(self) -> bool: + return bool(self._moves) + + +class UninstallPathSet: + """A set of file paths to be removed in the uninstallation of a + requirement.""" + + def __init__(self, dist: BaseDistribution) -> None: + self._paths: Set[str] = set() + self._refuse: Set[str] = set() + self._pth: Dict[str, UninstallPthEntries] = {} + self._dist = dist + self._moved_paths = StashedUninstallPathSet() + # Create local cache of normalize_path results. Creating an UninstallPathSet + # can result in hundreds/thousands of redundant calls to normalize_path with + # the same args, which hurts performance. + self._normalize_path_cached = functools.lru_cache(normalize_path) + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + # aka is_local, but caching normalized sys.prefix + if not running_under_virtualenv(): + return True + return path.startswith(self._normalize_path_cached(sys.prefix)) + + def add(self, path: str) -> None: + head, tail = os.path.split(path) + + # we normalize the head to resolve parent directory symlinks, but not + # the tail, since we only want to uninstall symlinks, not their targets + path = os.path.join(self._normalize_path_cached(head), os.path.normcase(tail)) + + if not os.path.exists(path): + return + if self._permitted(path): + self._paths.add(path) + else: + self._refuse.add(path) + + # __pycache__ files can show up after 'installed-files.txt' is created, + # due to imports + if os.path.splitext(path)[1] == ".py": + self.add(cache_from_source(path)) + + def add_pth(self, pth_file: str, entry: str) -> None: + pth_file = self._normalize_path_cached(pth_file) + if self._permitted(pth_file): + if pth_file not in self._pth: + self._pth[pth_file] = UninstallPthEntries(pth_file) + self._pth[pth_file].add(entry) + else: + self._refuse.add(pth_file) + + def remove(self, auto_confirm: bool = False, verbose: bool = False) -> None: + """Remove paths in ``self._paths`` with confirmation (unless + ``auto_confirm`` is True).""" + + if not self._paths: + logger.info( + "Can't uninstall '%s'. No files were found to uninstall.", + self._dist.raw_name, + ) + return + + dist_name_version = f"{self._dist.raw_name}-{self._dist.raw_version}" + logger.info("Uninstalling %s:", dist_name_version) + + with indent_log(): + if auto_confirm or self._allowed_to_proceed(verbose): + moved = self._moved_paths + + for_rename = compress_for_rename(self._paths) + + for path in sorted(compact(for_rename)): + moved.stash(path) + logger.verbose("Removing file or directory %s", path) + + for pth in self._pth.values(): + pth.remove() + + logger.info("Successfully uninstalled %s", dist_name_version) + + def _allowed_to_proceed(self, verbose: bool) -> bool: + """Display which files would be deleted and prompt for confirmation""" + + def _display(msg: str, paths: Iterable[str]) -> None: + if not paths: + return + + logger.info(msg) + with indent_log(): + for path in sorted(compact(paths)): + logger.info(path) + + if not verbose: + will_remove, will_skip = compress_for_output_listing(self._paths) + else: + # In verbose mode, display all the files that are going to be + # deleted. + will_remove = set(self._paths) + will_skip = set() + + _display("Would remove:", will_remove) + _display("Would not remove (might be manually added):", will_skip) + _display("Would not remove (outside of prefix):", self._refuse) + if verbose: + _display("Will actually move:", compress_for_rename(self._paths)) + + return ask("Proceed (Y/n)? ", ("y", "n", "")) != "n" + + def rollback(self) -> None: + """Rollback the changes previously made by remove().""" + if not self._moved_paths.can_rollback: + logger.error( + "Can't roll back %s; was not uninstalled", + self._dist.raw_name, + ) + return + logger.info("Rolling back uninstall of %s", self._dist.raw_name) + self._moved_paths.rollback() + for pth in self._pth.values(): + pth.rollback() + + def commit(self) -> None: + """Remove temporary save dir: rollback will no longer be possible.""" + self._moved_paths.commit() + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "UninstallPathSet": + dist_location = dist.location + info_location = dist.info_location + if dist_location is None: + logger.info( + "Not uninstalling %s since it is not installed", + dist.canonical_name, + ) + return cls(dist) + + normalized_dist_location = normalize_path(dist_location) + if not dist.local: + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.canonical_name, + normalized_dist_location, + sys.prefix, + ) + return cls(dist) + + if normalized_dist_location in { + p + for p in {sysconfig.get_path("stdlib"), sysconfig.get_path("platstdlib")} + if p + }: + logger.info( + "Not uninstalling %s at %s, as it is in the standard library.", + dist.canonical_name, + normalized_dist_location, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path_from_location(dist.raw_name) + + # Distribution is installed with metadata in a "flat" .egg-info + # directory. This means it is not a modern .dist-info installation, an + # egg, or legacy editable. + setuptools_flat_installation = ( + dist.installed_with_setuptools_egg_info + and info_location is not None + and os.path.exists(info_location) + # If dist is editable and the location points to a ``.egg-info``, + # we are in fact in the legacy editable case. + and not info_location.endswith(f"{dist.setuptools_filename}.egg-info") + ) + + # Uninstall cases order do matter as in the case of 2 installs of the + # same package, pip needs to uninstall the currently detected version + if setuptools_flat_installation: + if info_location is not None: + paths_to_remove.add(info_location) + installed_files = dist.iter_declared_entries() + if installed_files is not None: + for installed_file in installed_files: + paths_to_remove.add(os.path.join(dist_location, installed_file)) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.is_file("top_level.txt"): + try: + namespace_packages = dist.read_text("namespace_packages.txt") + except FileNotFoundError: + namespaces = [] + else: + namespaces = namespace_packages.splitlines(keepends=False) + for top_level_pkg in [ + p + for p in dist.read_text("top_level.txt").splitlines() + if p and p not in namespaces + ]: + path = os.path.join(dist_location, top_level_pkg) + paths_to_remove.add(path) + paths_to_remove.add(f"{path}.py") + paths_to_remove.add(f"{path}.pyc") + paths_to_remove.add(f"{path}.pyo") + + elif dist.installed_by_distutils: + raise LegacyDistutilsInstall(distribution=dist) + + elif dist.installed_as_egg: + # package installed by easy_install + # We cannot match on dist.egg_name because it can slightly vary + # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg + paths_to_remove.add(dist_location) + easy_install_egg = os.path.split(dist_location)[1] + easy_install_pth = os.path.join( + os.path.dirname(dist_location), + "easy-install.pth", + ) + paths_to_remove.add_pth(easy_install_pth, "./" + easy_install_egg) + + elif dist.installed_with_dist_info: + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # PEP 660 modern editable is handled in the ``.dist-info`` case + # above, so this only covers the setuptools-style editable. + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + normalized_link_pointer = paths_to_remove._normalize_path_cached( + link_pointer + ) + assert os.path.samefile( + normalized_link_pointer, normalized_dist_location + ), ( + f"Egg-link {develop_egg_link} (to {link_pointer}) does not match " + f"installed location of {dist.raw_name} (at {dist_location})" + ) + paths_to_remove.add(develop_egg_link) + easy_install_pth = os.path.join( + os.path.dirname(develop_egg_link), "easy-install.pth" + ) + paths_to_remove.add_pth(easy_install_pth, dist_location) + + else: + logger.debug( + "Not sure how to uninstall: %s - Check: %s", + dist, + dist_location, + ) + + if dist.in_usersite: + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + + # find distutils scripts= scripts + try: + for script in dist.iter_distutils_script_names(): + paths_to_remove.add(os.path.join(bin_dir, script)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, f"{script}.bat")) + except (FileNotFoundError, NotADirectoryError): + pass + + # find console_scripts and gui_scripts + def iter_scripts_to_remove( + dist: BaseDistribution, + bin_dir: str, + ) -> Generator[str, None, None]: + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + yield from _script_names(bin_dir, entry_point.name, False) + elif entry_point.group == "gui_scripts": + yield from _script_names(bin_dir, entry_point.name, True) + + for s in iter_scripts_to_remove(dist, bin_dir): + paths_to_remove.add(s) + + return paths_to_remove + + +class UninstallPthEntries: + def __init__(self, pth_file: str) -> None: + self.file = pth_file + self.entries: Set[str] = set() + self._saved_lines: Optional[List[bytes]] = None + + def add(self, entry: str) -> None: + entry = os.path.normcase(entry) + # On Windows, os.path.normcase converts the entry to use + # backslashes. This is correct for entries that describe absolute + # paths outside of site-packages, but all the others use forward + # slashes. + # os.path.splitdrive is used instead of os.path.isabs because isabs + # treats non-absolute paths with drive letter markings like c:foo\bar + # as absolute paths. It also does not recognize UNC paths if they don't + # have more than "\\sever\share". Valid examples: "\\server\share\" or + # "\\server\share\folder". + if WINDOWS and not os.path.splitdrive(entry)[0]: + entry = entry.replace("\\", "/") + self.entries.add(entry) + + def remove(self) -> None: + logger.verbose("Removing pth entries from %s:", self.file) + + # If the file doesn't exist, log a warning and return + if not os.path.isfile(self.file): + logger.warning("Cannot remove entries from nonexistent file %s", self.file) + return + with open(self.file, "rb") as fh: + # windows uses '\r\n' with py3k, but uses '\n' with py2.x + lines = fh.readlines() + self._saved_lines = lines + if any(b"\r\n" in line for line in lines): + endline = "\r\n" + else: + endline = "\n" + # handle missing trailing newline + if lines and not lines[-1].endswith(endline.encode("utf-8")): + lines[-1] = lines[-1] + endline.encode("utf-8") + for entry in self.entries: + try: + logger.verbose("Removing entry: %s", entry) + lines.remove((entry + endline).encode("utf-8")) + except ValueError: + pass + with open(self.file, "wb") as fh: + fh.writelines(lines) + + def rollback(self) -> bool: + if self._saved_lines is None: + logger.error("Cannot roll back changes to %s, none were made", self.file) + return False + logger.debug("Rolling %s back to previous state", self.file) + with open(self.file, "wb") as fh: + fh.writelines(self._saved_lines) + return True diff --git a/env/Lib/site-packages/pip/_internal/resolution/__init__.py b/env/Lib/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be4f61fa93264ac295674d6f8dbc652e1be286c9 GIT binary patch literal 183 zcmX@j%ge<81nN_}(?RrO5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!3UjrJ@kvcA%FE14 zj|nz5hzTf4bDo)ikib>5Yi}A@!iYd-4N!2Y#OwLYBPc4oq$Sly0&&(@HEy_#G z(Jx9Z&d(_=$;{8wj|Ylomc+;F6;%G>u*uC&Da}c>D`Ev&!wAI1AjU^#Mn=XWW*`dy Dzilu~ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..780df4420d666f6bafb39d6dce25f2d5212bdc11 GIT binary patch literal 1171 zcma)5-Afcv6u)=Ac6RfFvMdEY(4bIozncdK*h#rET z!@oiLQ+iqHMJ_}_^w68NLf}*9%&uYNLl@@U-}&7;=l;$)_kQf{EifDt@88vy6vn=i zb3U{#Xjc&IGncvCX92f(pjb+vS}G?_@wGs=^bD)M5#+2KXTZS(74#wev!;N)tq`*E z3R_~X_J+Co2Rx02RoFGkx$gwasx%iI-*>irklKouq|#iAQ!fe~zs%*e@#2%cbTQQ9HnU_$VF+c3dXj9qBJY#>R_PXUES7P z16gx7S2ktOGbe!!NFu)pLgqyjrM7^2A_uE4pt@rxjW~`(3a zgEQq!etQtjK1(@H+4#_%U-JXLdcfttYLqSqv7coL?xGNp!18Db_}hXyCa$1KC|0pp zJlj~Dt*n3}LNBaUHXqGY)&(p?4Uxe8hZP8$l@)KRl6WcHkDcm{Q-h=ud-1gGg((QE z?zEu98dU1(EzEN&-j%tGYr@|3iqc*9N2tFL&NzkNzenbIue zYWa#Z(%l#vEU4=pT{B_!1(6>|9B2evMvriTUY zHw&7O!7a&(uISu`gq=llzsJY RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py b/env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c2d95e9778b3ba8fbb69ea683f49ccc9360f14a GIT binary patch literal 190 zcmX@j%ge<81nN_}(?RrO5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!igmS$@kvcA%FE14 zj|nz5hzTf4bDo)ikib>5Yi}A@!iYd-4N!2Y#OwLYBPc4oq$Sly0&&(@HEy_#G z(Jx9Z&d(_=$;{8w&q+;BOs>?A2TEp^#K-FuRQ}?y$<0qG%}KQ@Vg=g92*kx8#z$sG KM#ds$APWFYlQQ=J literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..32b31b4e73e4b6e2c05357335cd218ea857a2dc1 GIT binary patch literal 22565 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py b/env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 00000000..1dd0d704 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py @@ -0,0 +1,597 @@ +"""Dependency Resolution + +The dependency resolution in pip is performed as follows: + +for top-level requirements: + a. only one spec allowed per project, regardless of conflicts or not. + otherwise a "double requirement" exception is raised + b. they override sub-dependency requirements. +for sub-dependencies + a. "first found, wins" (where the order is breadth first) +""" + +import logging +import sys +from collections import defaultdict +from itertools import chain +from typing import DefaultDict, Iterable, List, Optional, Set, Tuple + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.requirements import Requirement + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + HashError, + HashErrors, + InstallationError, + NoneMetadataError, + UnsupportedPythonVersion, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.utils import compatibility_tags +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import normalize_version_info +from pip._internal.utils.packaging import check_requires_python + +logger = logging.getLogger(__name__) + +DiscoveredDependencies = DefaultDict[Optional[str], List[InstallRequirement]] + + +def _check_dist_requires_python( + dist: BaseDistribution, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> None: + """ + Check whether the given Python version is compatible with a distribution's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + + :raises UnsupportedPythonVersion: When the given Python version isn't + compatible. + """ + # This idiosyncratically converts the SpecifierSet to str and let + # check_requires_python then parse it again into SpecifierSet. But this + # is the legacy resolver so I'm just not going to bother refactoring. + try: + requires_python = str(dist.requires_python) + except FileNotFoundError as e: + raise NoneMetadataError(dist, str(e)) + try: + is_compatible = check_requires_python( + requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier as exc: + logger.warning( + "Package %r has an invalid Requires-Python: %s", dist.raw_name, exc + ) + return + + if is_compatible: + return + + version = ".".join(map(str, version_info)) + if ignore_requires_python: + logger.debug( + "Ignoring failed Requires-Python check for package %r: %s not in %r", + dist.raw_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + f"Package {dist.raw_name!r} requires a different Python: " + f"{version} not in {requires_python!r}" + ) + + +class Resolver(BaseResolver): + """Resolves which packages need to be installed/uninstalled to perform \ + the requested operation without breaking the requirements of any package. + """ + + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + self._py_version_info = py_version_info + + self.preparer = preparer + self.finder = finder + self.wheel_cache = wheel_cache + + self.upgrade_strategy = upgrade_strategy + self.force_reinstall = force_reinstall + self.ignore_dependencies = ignore_dependencies + self.ignore_installed = ignore_installed + self.ignore_requires_python = ignore_requires_python + self.use_user_site = use_user_site + self._make_install_req = make_install_req + + self._discovered_dependencies: DiscoveredDependencies = defaultdict(list) + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + """Resolve what operations need to be done + + As a side-effect of this method, the packages (and their dependencies) + are downloaded, unpacked and prepared for installation. This + preparation is done by ``pip.operations.prepare``. + + Once PyPI has static dependency metadata available, it would be + possible to move the preparation to become a step separated from + dependency resolution. + """ + requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for req in root_reqs: + if req.constraint: + check_invalid_constraint_type(req) + self._add_requirement_to_set(requirement_set, req) + + # Actually prepare the files, and collect any exceptions. Most hash + # exceptions cannot be checked ahead of time, because + # _populate_link() needs to be called before we can make decisions + # based on link type. + discovered_reqs: List[InstallRequirement] = [] + hash_errors = HashErrors() + for req in chain(requirement_set.all_requirements, discovered_reqs): + try: + discovered_reqs.extend(self._resolve_one(requirement_set, req)) + except HashError as exc: + exc.req = req + hash_errors.append(exc) + + if hash_errors: + raise hash_errors + + return requirement_set + + def _add_requirement_to_set( + self, + requirement_set: RequirementSet, + install_req: InstallRequirement, + parent_req_name: Optional[str] = None, + extras_requested: Optional[Iterable[str]] = None, + ) -> Tuple[List[InstallRequirement], Optional[InstallRequirement]]: + """Add install_req as a requirement to install. + + :param parent_req_name: The name of the requirement that needed this + added. The name is used because when multiple unnamed requirements + resolve to the same name, we could otherwise end up with dependency + links that point outside the Requirements set. parent_req must + already be added. Note that None implies that this is a user + supplied requirement, vs an inferred one. + :param extras_requested: an iterable of extras used to evaluate the + environment markers. + :return: Additional requirements to scan. That is either [] if + the requirement is not applicable, or [install_req] if the + requirement is applicable and has just been added. + """ + # If the markers do not match, ignore this requirement. + if not install_req.match_markers(extras_requested): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + install_req.name, + install_req.markers, + ) + return [], None + + # If the wheel is not supported, raise an error. + # Should check this after filtering out based on environment markers to + # allow specifying different wheels based on the environment/OS, in a + # single requirements file. + if install_req.link and install_req.link.is_wheel: + wheel = Wheel(install_req.link.filename) + tags = compatibility_tags.get_supported() + if requirement_set.check_supported_wheels and not wheel.supported(tags): + raise InstallationError( + f"{wheel.filename} is not a supported wheel on this platform." + ) + + # This next bit is really a sanity check. + assert ( + not install_req.user_supplied or parent_req_name is None + ), "a user supplied req shouldn't have a parent" + + # Unnamed requirements are scanned again and the requirement won't be + # added as a dependency until after scanning. + if not install_req.name: + requirement_set.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: Optional[InstallRequirement] = ( + requirement_set.get_requirement(install_req.name) + ) + except KeyError: + existing_req = None + + has_conflicting_requirement = ( + parent_req_name is None + and existing_req + and not existing_req.constraint + and existing_req.extras == install_req.extras + and existing_req.req + and install_req.req + and existing_req.req.specifier != install_req.req.specifier + ) + if has_conflicting_requirement: + raise InstallationError( + f"Double requirement given: {install_req} " + f"(already in {existing_req}, name={install_req.name!r})" + ) + + # When no existing requirement exists, add the requirement as a + # dependency and it will be scanned again after. + if not existing_req: + requirement_set.add_named_requirement(install_req) + # We'd want to rescan this requirement later + return [install_req], install_req + + # Assume there's no need to scan, and that we've already + # encountered this for scanning. + if install_req.constraint or not existing_req.constraint: + return [], existing_req + + does_not_satisfy_constraint = install_req.link and not ( + existing_req.link and install_req.link.path == existing_req.link.path + ) + if does_not_satisfy_constraint: + raise InstallationError( + f"Could not satisfy constraints for '{install_req.name}': " + "installation from path or url cannot be " + "constrained to a version" + ) + # If we're now installing a constraint, mark the existing + # object for real installation. + existing_req.constraint = False + # If we're now installing a user supplied requirement, + # mark the existing object as such. + if install_req.user_supplied: + existing_req.user_supplied = True + existing_req.extras = tuple( + sorted(set(existing_req.extras) | set(install_req.extras)) + ) + logger.debug( + "Setting %s extras to: %s", + existing_req, + existing_req.extras, + ) + # Return the existing requirement for addition to the parent and + # scanning again. + return [existing_req], existing_req + + def _is_upgrade_allowed(self, req: InstallRequirement) -> bool: + if self.upgrade_strategy == "to-satisfy-only": + return False + elif self.upgrade_strategy == "eager": + return True + else: + assert self.upgrade_strategy == "only-if-needed" + return req.user_supplied or req.constraint + + def _set_req_to_reinstall(self, req: InstallRequirement) -> None: + """ + Set a requirement to be installed. + """ + # Don't uninstall the conflict if doing a user install and the + # conflict is not a user install. + assert req.satisfied_by is not None + if not self.use_user_site or req.satisfied_by.in_usersite: + req.should_reinstall = True + req.satisfied_by = None + + def _check_skip_installed( + self, req_to_install: InstallRequirement + ) -> Optional[str]: + """Check if req_to_install should be skipped. + + This will check if the req is installed, and whether we should upgrade + or reinstall it, taking into account all the relevant user options. + + After calling this req_to_install will only have satisfied_by set to + None if the req_to_install is to be upgraded/reinstalled etc. Any + other value will be a dist recording the current thing installed that + satisfies the requirement. + + Note that for vcs urls and the like we can't assess skipping in this + routine - we simply identify that we need to pull the thing down, + then later on it is pulled down and introspected to assess upgrade/ + reinstalls etc. + + :return: A text reason for why it was skipped, or None. + """ + if self.ignore_installed: + return None + + req_to_install.check_if_exists(self.use_user_site) + if not req_to_install.satisfied_by: + return None + + if self.force_reinstall: + self._set_req_to_reinstall(req_to_install) + return None + + if not self._is_upgrade_allowed(req_to_install): + if self.upgrade_strategy == "only-if-needed": + return "already satisfied, skipping upgrade" + return "already satisfied" + + # Check for the possibility of an upgrade. For link-based + # requirements we have to pull the tree down and inspect to assess + # the version #, so it's handled way down. + if not req_to_install.link: + try: + self.finder.find_requirement(req_to_install, upgrade=True) + except BestVersionAlreadyInstalled: + # Then the best version is installed. + return "already up-to-date" + except DistributionNotFound: + # No distribution found, so we squash the error. It will + # be raised later when we re-try later to do the install. + # Why don't we just raise here? + pass + + self._set_req_to_reinstall(req_to_install) + return None + + def _find_requirement_link(self, req: InstallRequirement) -> Optional[Link]: + upgrade = self._is_upgrade_allowed(req) + best_candidate = self.finder.find_requirement(req, upgrade) + if not best_candidate: + return None + + # Log a warning per PEP 592 if necessary before returning. + link = best_candidate.link + if link.is_yanked: + reason = link.yanked_reason or "" + msg = ( + # Mark this as a unicode string to prevent + # "UnicodeEncodeError: 'ascii' codec can't encode character" + # in Python 2 when the reason contains non-ascii characters. + "The candidate selected for download or install is a " + f"yanked version: {best_candidate}\n" + f"Reason for being yanked: {reason}" + ) + logger.warning(msg) + + return link + + def _populate_link(self, req: InstallRequirement) -> None: + """Ensure that if a link can be found for this, that it is found. + + Note that req.link may still be None - if the requirement is already + installed and not needed to be upgraded based on the return value of + _is_upgrade_allowed(). + + If preparer.require_hashes is True, don't use the wheel cache, because + cached wheels, always built locally, have different hashes than the + files downloaded from the index server and thus throw false hash + mismatches. Furthermore, cached wheels at present have undeterministic + contents due to file modification times. + """ + if req.link is None: + req.link = self._find_requirement_link(req) + + if self.wheel_cache is None or self.preparer.require_hashes: + return + + assert req.link is not None, "_find_requirement_link unexpectedly returned None" + cache_entry = self.wheel_cache.get_cache_entry( + link=req.link, + package_name=req.name, + supported_tags=get_supported(), + ) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + if req.link is req.original_link and cache_entry.persistent: + req.cached_wheel_source_link = req.link + if cache_entry.origin is not None: + req.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + req.download_info = direct_url_from_link( + req.link, link_is_in_wheel_cache=cache_entry.persistent + ) + req.link = cache_entry.link + + def _get_dist_for(self, req: InstallRequirement) -> BaseDistribution: + """Takes a InstallRequirement and returns a single AbstractDist \ + representing a prepared variant of the same. + """ + if req.editable: + return self.preparer.prepare_editable_requirement(req) + + # satisfied_by is only evaluated by calling _check_skip_installed, + # so it must be None here. + assert req.satisfied_by is None + skip_reason = self._check_skip_installed(req) + + if req.satisfied_by: + return self.preparer.prepare_installed_requirement(req, skip_reason) + + # We eagerly populate the link, since that's our "legacy" behavior. + self._populate_link(req) + dist = self.preparer.prepare_linked_requirement(req) + + # NOTE + # The following portion is for determining if a certain package is + # going to be re-installed/upgraded or not and reporting to the user. + # This should probably get cleaned up in a future refactor. + + # req.req is only avail after unpack for URL + # pkgs repeat check_if_exists to uninstall-on-upgrade + # (#14) + if not self.ignore_installed: + req.check_if_exists(self.use_user_site) + + if req.satisfied_by: + should_modify = ( + self.upgrade_strategy != "to-satisfy-only" + or self.force_reinstall + or self.ignore_installed + or req.link.scheme == "file" + ) + if should_modify: + self._set_req_to_reinstall(req) + else: + logger.info( + "Requirement already satisfied (use --upgrade to upgrade): %s", + req, + ) + return dist + + def _resolve_one( + self, + requirement_set: RequirementSet, + req_to_install: InstallRequirement, + ) -> List[InstallRequirement]: + """Prepare a single requirements file. + + :return: A list of additional InstallRequirements to also install. + """ + # Tell user what we are doing for this requirement: + # obtain (editable), skipping, processing (local url), collecting + # (remote url or package name) + if req_to_install.constraint or req_to_install.prepared: + return [] + + req_to_install.prepared = True + + # Parse and return dependencies + dist = self._get_dist_for(req_to_install) + # This will raise UnsupportedPythonVersion if the given Python + # version isn't compatible with the distribution's Requires-Python. + _check_dist_requires_python( + dist, + version_info=self._py_version_info, + ignore_requires_python=self.ignore_requires_python, + ) + + more_reqs: List[InstallRequirement] = [] + + def add_req(subreq: Requirement, extras_requested: Iterable[str]) -> None: + # This idiosyncratically converts the Requirement to str and let + # make_install_req then parse it again into Requirement. But this is + # the legacy resolver so I'm just not going to bother refactoring. + sub_install_req = self._make_install_req(str(subreq), req_to_install) + parent_req_name = req_to_install.name + to_scan_again, add_to_parent = self._add_requirement_to_set( + requirement_set, + sub_install_req, + parent_req_name=parent_req_name, + extras_requested=extras_requested, + ) + if parent_req_name and add_to_parent: + self._discovered_dependencies[parent_req_name].append(add_to_parent) + more_reqs.extend(to_scan_again) + + with indent_log(): + # We add req_to_install before its dependencies, so that we + # can refer to it when adding dependencies. + assert req_to_install.name is not None + if not requirement_set.has_requirement(req_to_install.name): + # 'unnamed' requirements will get added here + # 'unnamed' requirements can only come from being directly + # provided by the user. + assert req_to_install.user_supplied + self._add_requirement_to_set( + requirement_set, req_to_install, parent_req_name=None + ) + + if not self.ignore_dependencies: + if req_to_install.extras: + logger.debug( + "Installing extra requirements: %r", + ",".join(req_to_install.extras), + ) + missing_requested = sorted( + set(req_to_install.extras) - set(dist.iter_provided_extras()) + ) + for missing in missing_requested: + logger.warning( + "%s %s does not provide the extra '%s'", + dist.raw_name, + dist.version, + missing, + ) + + available_requested = sorted( + set(dist.iter_provided_extras()) & set(req_to_install.extras) + ) + for subreq in dist.iter_dependencies(available_requested): + add_req(subreq, extras_requested=available_requested) + + return more_reqs + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Create the installation order. + + The installation order is topological - requirements are installed + before the requiring thing. We break cycles at an arbitrary point, + and make no other guarantees. + """ + # The current implementation, which we may change at any point + # installs the user specified things in the order given, except when + # dependencies must come earlier to achieve topological order. + order = [] + ordered_reqs: Set[InstallRequirement] = set() + + def schedule(req: InstallRequirement) -> None: + if req.satisfied_by or req in ordered_reqs: + return + if req.constraint: + return + ordered_reqs.add(req) + for dep in self._discovered_dependencies[req.name]: + schedule(dep) + order.append(req) + + for install_req in req_set.requirements.values(): + schedule(install_req) + return order diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9be512c2398f0ee07ef14f3bdfd1586285fb6ee6 GIT binary patch literal 194 zcmX@j%ge<81nN_}(?RrO5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!N_4e~@kvcA%FE14 zj|nz5hzTf4bDo)ikib>5Yi}A@!iYd-4N!2Y#OwLYBPc4oq$Sly0&&(@HEy_#G z(Jx9Z&d(_=$;{7#Fw0VNGL!Vx&m1ma>4<0CU8 KBV!RWkOcrmOEkRz literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0601c79780a6420cd5dc4e326dc3a705bfb938ef GIT binary patch literal 8135 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed3225c8e04c2521cdce67e3b7e3b83ef8e23698 GIT binary patch literal 32272 zcmc(|33OZ6nI`zK5+FbVBtR12CU7UXOQiPQlqgY>Y1xwP7_p0{_#P!l03p8zEkvk9 z<+$6V?HN-^r9>rhi>_36=(c;TbmvTzo<37@RdpwGYWfVGKo?*{=~kvQr@Cgk=Rl_F zIC1qX-+$i%kb)dnch8w8>c0E#^55;h|NZ~}{`cZ9%F0SPJRRS8^YmYQo#Xx;eQ1wG z^{j@B9Cw}LIo=TALdx3^GO%xB$cVQwVv3qW=BOoPiCRO}Xi2CfY75z-_K-bV8Y+!C zLXN02GYXhoV^IIam zs6XV7)`n`?w>451tq;{Re@Ubv+8AnNep_TiG!P0zn?gBsiws0JhBh*Pd1O;` zFf_>guEIvIU7^lbFG&~wq}L(fOQ z68egP6U?H+$Q|PNy4N_qUMPRxq>Ojy1tTXI&;D3LgZx|g>iY&Y&5KA=$v5cVF9}wm zUwCQC=tqLk?=iTIfV)9(>Tt(dXaJ#2?*pUg3B5dH2sZyUdB=k8Y}v^djvpK!K74Ta z=;+v?tZjHA5}7y^5whk3;mLT`J|e~v!t@Ctp0$m}1(8K5zIaT`nvaF0c(&xpiSy^f z)2FkgV-rzuR0_t0Kd}8w4#A#t9Jk1LtD(Ze> zLJ|tAl&v`}#K(DIYT`m9J}yjO42!X8wYM-b)8_!iqJi@i^yYCIe@bmio^@vt(0zu&RN)<9b%LyjI%o}zgRItEjB;SlFXwH^lG^Wsk`0&I9Nys|H{J3VV zgqqXwF-$<)IGe}gj@o0>{5E0;aj*q{Bai$qQJ}&M7%&co1h&dgLvpFdtbR$CF z<5uBvpTB%?$BV~=36W6c#S?=AF9Q9CV;4k8=-u=pu;s;L;ZrY4;keLyUYT*yi|51V z`+>wDcpzZ?qE0vz??oXJKGi=pF$oel(|3MG97ZwB8G}bEhx7NiOjTdX)|YYnS8RUq zsFomW7%tv*BS^8n>xi%m7PSMdLWy8gh&{qsS7HGu5$t-HiFL0T_~9RpMIyo^$jmdb zSRs-~S!Y34OIb&Lf=bzP428(1m;eICj|EFbs+D+%oWtbU$r&VPlpNw#vL;M$aTD{Q z!^9&L!J2!Fd{1f43-Cx?aL_ZA)eB#fD_c_LmP|#}!sOzPg_vB?o-(&*yuL-x;^d<5 z+SrP@Sph>3)^u4l0_a(_0`Kx&X6N|*yiqXmgmY$ek%hX4x{$XDHXfbF+wk9x|D}kr z3#Gh6={lCi$s4A;eA#Q3kVA0tPU>pD{5A9YtSGFSWxPu$=P8w$cfV#1xp)I#@qGhd zDY$u$P$5(@C|*GJDDVXDl#Q=?%^IrWtA*-=;2zAOI+pK?QoC8|QobIk>-h$uL9JP%&xmT48LS*V%cg3!(UR-u94rq*u@>a!i8TlpPA3%?Vv*f^uCZD`Lf#BAqx z^LzNc!VdIfyV`?JVJBkuA$Aw|x#4Wdh(eCWveqfaFl24#)m1+0j!v8tK+f1|O%pup zxI}yomL4qE*)q)gaW?mf2xeVVF>z8rGBrci9X>rB6LkOrpRHCyR9Yg9pJ&`m)^&bn z{G!5ep}477U)CxL@eAVgBolemxkO|GQEaG<7yPg%^LBgvb^{*<4a{+ zIWAtJC7ZQtY%t=@dZ-Csnh3?sTJUAn zOU4!a5x)WuSZfO~Mcht773yf`8JBF`_<9T*XB?vhjy+pWxK)5(?(y{qRx|!Md>TJ> zAspeyrzXOY3s{A-RSFZTvrH-m`^N>9G0Rs^zt5JE~^$}tZwX-VEh>pi6 zPD=_vkwz<9kBK4{K;{bs1uUefpCXAc_9g3Hmr@Ekvt~(%Oo`6}80%>91@eW+`6@Xt zlJgQdzef(ukE{v2O4dw8NrZxdf=8sqme{56bT~dfo^Y$wpic{V8S&D`aISJWALnbF zGr#4`_yTy9W$HWT%wSUPHEp}SA=NZWAB~yro%HU^G)pP_e0&dQa!au&{BhQtr8T>Ib;#wnutSFR2BDub!Y?zv&4X$Yk2 zcggj;er`$D?^>xJTeXWrumz@26Tf$ryYKR(U9GaKHEC;QoJ-bB0@I{Uy^xA16|2wx3J+1fV)c;> zGhCcfu?J}=*Sbfe4Ofh_##>@17Rru&O9&?(B--SqbY&dbRd2PvF9O5qhF(aL0i@qmK2I3 zwxK>*+f*3x97*?fJ-0YXF=g=ykt9NO<*6Y5g=vY&)@-_p0VE5W*?5XGl*Ph|&6=Xp zX^Hxj=8rOQni+)|4^JuN1$6)@O;T6tljzb=;CH8e6Tl@RpI5nz%k%b?H?CxymG|6L z3;gxywP?!SI%ml^+;8ul-@7<;bJvYs>AKBw-R5-NA-V2Qs%~_}aRlkX8eea?*0A78 zZa9)GKRRc+SKhcNrOI29wibq8?}2hp#-f76Xl>R^!erK}NbllnD1A~xBEn{xA@sfa z&*5C>;`%h1HE08tM>^i{8W!RM+KMRQJEf=dYe(NMwvI}B`t&T{10bme&cEk=bCpYWj(v3TPSZ+o$L)>j;O>tu{+6NP zt5r1y@tafuOV$|Xvvw?N0?F|xcwVin)9Y)VX#C=q{Q*jlL^xNuhvi(gZ_)hiuY7+-rskwN$5I={ zlHRB0>^Y;^zR!^H)u(+!vTx|t3$kzT+-T0mx&29-?>7%iIJfUp&WJSkd>zZ?<*7Th zE52iMqnRyx=MJQuowBoY*?-qLm~r`#K3761KbMHG+;k0ax7zpDnm+Oy;EETh#kRN* zCCVX879yjL=68|iI>(R|zV#2NSs`6kqZtC5XN{6^)_j7{Tu0h`esH8~(3c^*UIQRI zRNDo7s$mv9=?4ZK+0De!7Nh#bYottow~iE`KNz->DTUWpu||xddg3eO{I}!`k#h}B z(4yc9^_PMx-y$EOjzny70cQ9W%+OIs;opeYNHncQjv`5ZKmaen0dwIr+YcKuo|?30 zlkC}aYbZT9BID0iaidqlyhIsVnk^QlDz64cdr$?x!jwHleF}6Ubh6qp}&?yrJ%ksWDxL2&RM$tHHy^8+~IaKsU)161<&Z8Npd!cjjz*5Jm$rvo1Ge59m@D{y`^i9yaVN{APcjWO$6YjtjrO(E4dNq>8^%Db z#beeMrj>kL91#MHG1b+bFHQ5QrRpLT(iJPUNX}WU)S_`psaQL8)-A3xY*R*%mZ2+_ zxGsF2)mbjBUeI(IQ5Oqu;>}^h2Rh~&m?&JF=qLn+$GZJ>%MA7d>3zwdk(eEVhdz)Lgb;%4Se-fVKfJ@KT%f)&7@u1im^WL?W?E^a-g^ zh`*GzMkmB`7tWsq^|Y|%56VsIk*rOV9K{F~vxOWI5OW z(H7wu3Scx@tDYOhZ#9(DBe=-BrDCAnn~GdqIw6 z@3vesfTTSeWzWW2t+Hop(zz9~3qc|-RCaAvAZXkjc z%e?FvOgaaD^Kduk@BJW_tl9G^XG4X&wbzecJDTx5$)Nc&8#&DkjuUlTXzh3&fgGeGIKEtemXKK(l z9P^H1Q&lQCg3Wr3A%E47XV#0SFUF#4jQ$&?c@9N`_=bJfaDaOW$_FfT)-O|oc`Ss* z(iM|D6OfVLFwUEh!-2k7_wZ&AD|HEGDNXbCd<~IDCwlpedU`J)+uwT03^jk8Bysk{ zbplI7b;>wrpR>%B&T(_bIS16HC9gTJlpuYjnw*ORit^~`O$F&~NN z(RyyyJg<{lEco^@WeQpAkWA0 z2PVyYfN&L%i;UtdH*cIT`M|96x`w!}TgVHU^Cq^`1K%IvoJ|G@do%jt6SO3@91`Nt z5eNaD=|nGzO2`F~b_pXhy{ej8-~%eJ*EdFF-hoLf3K0QPv4llrEe{+lVd@@HL_ad7 zIcvjCSR5PGlEP)mP3$Fc5+(%9J{k^7-dJJ&a;4{frOnSeKCVa#}z|fF~J+5^Z*TfB#n_bv9ZIkSOj_1?UW}c^mNV0MD>LB-0KZ0A zL*$4J_hERH!G^L16}bX(P;}6X5HPj)daZaxg=17ye0HerW+tZ334G8f&Z87?ZkTC> z8XfUX1Sg*TvXf3#^n+sO=Om`_RIFfP>iV9oG!yFpU(xr}5C8PpTPGJ!-hAQ43+aY| zj~fPl`mCz+2{ap&PI?)s*K`tzIgG~Bj3(g}n6vNkUBnyCb%N?(PiF?qf3Z&FP3NFE z0v5Fv*D;*c=L`x|AKt8CGxF^t*ywHx*ztsE_wL;%KR52)oiO%wjbPwyvGXtsgCztb zoZzRYdFc}DNiYCJ53@$;d|~%zX^3DfHZAb~bq7HQ3p+qgI)tLHa=)l;S$HB-USo_#^r-6EJ1bqG?%l(W2E_RVx&(T(ys%0*NR7%coHf4c7{a{tcTnnJWMF7q7jT zuG%bDZ6*<>mX;x`LDgHZ2342OjXW&ns{D)9X@9@$?@#$Rro5Zx4kEC&L8b|psvl1I zhv$yu%=WT|KYlTXEvSYc^Q-iFP|a0uSe!{!1p&p%`J0xi{()=3{E4sm-HW$|ezN^X z+o7$xJ2;Z@*59iMq-#3mnogLcD6&(=-*D4^!=I^Z$~3g$BU2x^dF;lqhh-(c$^|np zrKawBVQS zX1pX43n7wtF7AXAbSjFWcPSvB=a1==xDe1e0{#Jg|4VWhG{%}RhJ@h09C#Uj7~y^U z_G$XyqAW*&KDcQ7=Kv=C6`cS3D)+$6xvMgsDu{7j|6;|pZF9DatLE+5H)fNz!^wuj zDcj+>*?X?QlJAH0@7AZAHpxw!Qm(-{^RJt_eo!}O{e{;L?VhLR`nGRvOFCH&=i!BI z8E4g^_onZLFYWJ^@#pM@qS#r99h7s|&fTh7IG3v4Dm%B%jUez3!b|2KI^K1ps(WN- z&-@6bL*~?uqV=Om;F-KppA#6_w*8L9T^dDU7d!8-`7nuKzNr-?JcOD$e+cwuQBIxMP(&Yl;P zF_tKwj%i@eK)Ar_=OwOQPdpxp#h_&pcVMK~=yU%k3Sd+6U%{7kDCt zF|AYqJjxtx8E11)t8>0EW#5n4kS4m<(%~;m{8b{jr1@s_cGbsu+vbKd*okl0EH`XU zHEf+9n>)H#k#W@~UCkM{k0@o=a(BwN1yc~*zNa(k+>z|sk%H^#gfU;bvRAI`T@K%_ zPF3!MR{lW+Kq{o~)%_*=?bxS;dGB2OGrDhX6NxY8s5WQpb=f8tToj=B6{0!#Q z6Et6d|0XSS{+*vQP zNNie=bbzrb?5-nGvjmIY2;WR929lt)-Ljql%-I9Ppao)L_;eWdt!&df05vJi71|NV zPph%_OzZTU*rc>j8cBQ=oz4`SA{bCk*+Nw}CzBK)lfzgg#yOGHyk0MwZBme1pFk>3 z7xYykxE8g)An7ZF*km)q5Ia}RRc%OnTUWfTSYVv)v~y5)4&FMj;@r+;+?}#-XU6Tl z=ihqUeEUqwf9PIS`%)rRwF$9ULHxT`ISYxrpF-sIXR0@R+x5W1RROPQDSdUnV}F(5 zqw*5C;&B9IEAk4!a3mZL!&u1$mQ=N#hVjvQfuN$BeG{0_r-Bq|V zuaWvIC8xP7HYisNq?`i!gDbdVpS2f5e=QGNQc7V8R{HxDvn53riqiMhB?%M7frY1M z)>cepp4A0gY@F{g7wqI0GbhOl#~Sp_5bE;+@w_e&UvbVli;2MV1}3ijA!id6~r zxoEqGJ=o_mtyM&-29xD5n6wlqcVRX{)NN9oMJ%%wF4J%jwfm0cb%U09(t^-t8qh3=QJ%f>hvfePio|VMt6&TJiMK?^WNYNrP#>OxyrtzVgS6#izSQtg) zGNjRQCMM^}cwWD$t5Na>G)W@qq)<_W!=&f9y!EMDrfW|v4KG)uz1{dy6e{2JRKtkR z#8kGd3gZ8OTu}3}y8VJG$kwAId|9VPt7)S~Nli3d;l1|dm9|R7b;GaUUGcx5>W%=^ zZ3an;=iVZY>4i`C%NG$lIqKh z4ThtNtFCn;P+*oxs+T-Yy-wrs37r1~izP4Dzv+D;2^-d~9vI$vHY}B{cwl~-@z(dIyE|kzY?LrQ2$LzS>bmoqbMfTI?&h3>^Y%Qf+;^urz3=flRbOV zJ;QR(@SSJ=vhMK0aHg>--MB?=+>&bCcJ0u@{)ISH@^Vc_#@BGudBeGM@?&2YbSL$r zhR-})`Q`_$oUHEgTjqg~J9mnLFC+D1G;nTv5fBIw(&OTK!TyK@#t<2LT zyPGofSHJ48ddqX1wXFOzw=zdoEqEiuUiul#|I0Tg%ZC2;;TF!@`YC5BtA+K6uQpc# z-+%hFob!ztq;6ozNBvJUj0~Cnyv##xcl#lZ`SF1Yb;UhlCB>qDSh9Lv~l5VoVlKifyZwBL7AxmA3BD zmR(hsTe>b9pVBCD5(B#K5&IEdzAg}-zu!_kycpvpmc@x`uqQ78DT_#c|6zR$w9Z^H z)&S)eslV25Og7WmFRfGu=y9Yk(&u7T{)9&H6k6@3u@}$w zJT=J=`kSjG#q&shv|nc)wE8@*CDdf>-8X6JzHE)Onkl2f`n(w9q}yIA=^oQ>TOY%A zacA4Kdgb4*nRgzy7Rn()RaUaBG9cVO$J#`!+hb+x3%P)l^5fXqW0uro+B7#~16M+fn6pl&8 zE|DP-GxC^-sF{V!(Aw|N!BU-jnH2qK`A|nm0WvOv`d$&wc|}b{+Wwh9?;f;})bwNq z4};bC%$J9HDh45aB9Iq`1D)9XCgD2>ogB{ZF&)?%c&w&{MM~ImAk9}GekoS0uXn&8 zLCE)VzN|;Ut}S~_E>;oJ<)MwxNyIKer2&19s2t8OXuu;t&!8P>&}n^JpA=y|YL`(s zYCa`g62!bh4w0k_!P)x))m&oBD4kKG9BtALeLOnaq>ca|o9>7sC_Z^6FoR>ifr5kb zV`2)(4d$wh#lu3A4WxJzq2dxbjD0H6!e=OmaZSY7C~VR`^6e!juMwdsqiFg`gC*{V zlik3q#tT%AitVS)wJ?PtqW84@(fE^sBAR$PPkoRx1Moj;m!ABNWCy8W7+Uf_xTro>!EHU*W{ z*Ztq}gI#+2Yj1pQF@E#%jmyamgSX9pV*9Brz3s@|ZAb1^L)DV1-hJ1-`(9=HQan}J zlXCXl&#PvBGWw&@73Ur@P=JBj7TL2!D{9A{Kk5GG-7EfqTizA_mY)x0HgEsQ3;*HVG1&bHwguphry>qiU@C)_VXTCL)sclTx_Q|!dUHfq6 zy&1W7d(yl8UUlC}|GqokpZP!Xr}~eks*k1I$6#hxQ-H_|(m?u)Sa|X5^#EnNWo8LW&~GGBZ>&Xz8%n>2|8c z)9ZD?76%S95%<6Dfx(ckc+9NzvhgxAo0~P0;n<{U(g;DDd+UunD|1#i?aG7AD~TTm zmqGa_ab4$uC9@d2f;$cJrcruJN}$^?y!AiNmhg(Pl?^Q~qF)j>Lc3F>2T`Z`d|fpk zv;=-wHW!U64u{%+^hKDHvrQV*{2K;sDpnYPQEx%3^q9Ow7!R1ia4;Ux^UoS#2v;(e z@D1y_e%;=U%<_3fb6`-28*$KUG!qm+tmx_x9A=-7_xcATLh05$=eCmNwq_GT#9O5O z1lWV&WFOT}*;V=6wkt9bJ;hJ#NepUw30zP^cP5OpNm@u&3p5mJrhb&n%$u%qx0-&^ z{-gHW`~PI@r(<_F9Z`%03|SLS;sh(%^#@tIFnu9PHWGp&H+NC3XoSW8og7xlYVtiz z&L%kQ3{aF&3h}2D_#Y{d&S{J6P--NME_{X}NN>RoeUU1_Ovm4Xc12?UKPkqpHVS99 z4PiwFDuJO6Y*eGl%4SAGCBIZkXO*>kio57Rp0Wd zTg|slrM%nc?ATpjs!iAQ%paQDKNqJp;~Q^$8`B18MDCr%7 zM4PS&$~D22nr`gOw926n?A`rq@XY6cg~pwx@o({%$f{yYO2 zn7Vm`vNyQgn)3FO{qxopZ~w11?MiPNkvEOpiKjLlTNu@n+(i^j+GxvP5!CB5!EVs; zs@3QdG~ z{N`SMyABk_Fwu!RlxjHppC?l2=G`Po1o9Gu4)*^WNkT97zlH#@7TBY5Lta`~E08eh zKyRqlkN+9c0+UAyWr9b5erXv2{ZULNcm$v#R{b4h1YrFXu#M4D?PS~^QNU~DFgBYQ z?)4|*>ef#Km2;*(PqaL4t`sENO7nzhKCE*a8B^UayZUe0Z|_LCM&`_*ereZM*#+X4 z+%uMPJ(aXQrA#5@(;s~by^Ns8Es1o5su+vNPL%7mBA94gG5v@(`7~N#7Q-k@JVDML zas)UU>7b4)Bpq1@Sh!#JfZN2$YlQ2;Y%hIruUxa;Tuk^Qx+ za$);hUx)9W3ui@d9Y_xyk%x|?Tt}0(qe`CcplehSLy6U(G!`)He`rM zAvKN0x+j028HC9+aUB%y7>q#z7tS-q0ZHvl42RZ1IsMKK>=sx8j7~x64dp%EekJy) z9XYO?IC=SHQXiZYFF-a{#96Qc3~m9e9({_O5+>A`e^ISn74!hsfy5>X@Ex2A)F!2zAphpGez@g)>~X*v>{-~m;)6jF{e zfHi?Z52FL|GZ#n|BE~KSrY0g%-oS@o2clt#$=ZU{7Z|x90=5{%?J_-UYa4(G1MOre zRl1mmfr~YG0i0A6H(f~a@FZy$=(au74JW~1z(5rR8App?AVF$^Ks<~?@&z^x*d`)5 z9wy7mbzjOQ9p(80|8(0267iIXT|1{7u0|>1j2J^GBH04U)B(i5NrY#hp9;)zzCWpTP7XGn*pnRve;+ z6aX2bh@u-N@Q8~$P%rjq(xNzs^hG2hu>*>9V=)CcE})<*Fp5Zx-{anaX?|V~1m~dE z`&HB#_Xs4$o+tGnnUtw26G9)tb>g$3F^t2^Mx9B}p)p-z1Q-*LW~4rx^g2TbIw`=i zX_6sc!b}q!=L$u%N&I)@kmw}AC(m5CbPh3)P(MGeA zaF>Y*nmULWKjrLu2@qPs)sX8{LJaTdh{||8h8rx@R;|UmN1{&?-q9{;!4)QHS0^?q zm;LGBUOBio<=Tg3%Hf*Z1yqD`h7OoC--T@$9p#3ugmAU)t^-Fw@Qo89&ej!2+j48V zYwz8zy*abN)0OG!BgS}n159mB{>e)}ed+d7I3rT=qye|QlzAW8I8W=+A*h3r&K{sT zqvTmDqhS)eR&Nb9>)MhZE7)vUuW@(`IY&F!KhUTYEQ=a`@J41*|5Sm-#K5zC_F}mF zMcW)#a1s{>`;@#z@VY2Q8+psD5qNE#HGR+cj`fN;UZK@HueUhC@g*#k?H$tj7+_m+ zNYUpMn?J=YX|y?a#ahr#%iq0)vu55-HRVfZt*Eu*9ZRANH8H<63R|I~H4i$+5(Y+f{ByRW#DDwq!^k4xj@>8oz|?xI(i7iAE%5mw`g(T(EvA;C2KO zHg#qP5^ZW8eY2rRhQ54;9iJOY6Xk(U6+9m}H52&U5X8hL21q&OV8X353TJeH!v2Vy zgXAz_egk}2H(hBn5vR+p##!TFjKCHR7tmHYWX7_U;WKMt?Ib&YcIE4%R-g@FrKoE( zj!Ng780bWswzPaN0iBi@~LB%cIM?X}0gsCOc%|Ln+Tt(m8bByZv^@ZU3FlWaZJhl3!HS%^l2C zGc)>h^`Klmn5y19cZfwDAnTjlz#Dc?3S2KOvhE{-nlUM|0N=~npmE6JMu zvUC6ZAv!8h50c{UTrNqu29mY`Mo*X}0vn?>d%ij``Nvowu{0X5I*Z*KbHy}WIcuQX zj6WN|qFCZ6&XOzua+N@mR<7vq?u zHYg6uwLJN^SY154*fNW~QWF^?iuI2%H?tK}z-puxCRhh?zSom4Tl1j?MHIIM`6fVK z^6FWu76UW1(n;fK%?z!yU^I1u$7{?C?TX_{X#oUX{rPu*;KcoXPB9qQPv4!@ccis; z;8F&h50)g&Oo?4Lswl0 z)~p)JwPPAsf|@Yy3?#;IuW*ECD-YQ!A&UwMwSq*WSpySbL0i8_I7WW8HCoXGGMHcn zE9w>KQeXUXJn`Qj9vwTmBk)4(0<#03h?8M=oYWv-UNt^;LOZ8{-D2>Y%ubx?-2=^P zW7zo>0@xhrymTgvtx@bl5-ZHMzJq-M(%jRf++cSL_H(MJCo1MGetbEtEzV z2NN5-zL-SISWMZ2C1~szwR*2Q#){6x)4A?og|eoyMRXDvkyXyr(aAP_n^a<4b#{YV zg1!(+=fW_EBg?W033V5LiTwG~bmG6E&+7!!s$3Gs_IPpZTZFMTEa|i6v$62BxJ1cl z5(mqa)tc?|($Y?6^l(FZSUOLuH4ZsuYqcUz&8%ORvrcUs$6>XX^(a`V-Hi&fa9H3m zi?>?@*>Evy)6!>M>(WX@z%|tzdn-a_i?-A&rVUyRXkh8ub#}XU!TztxK72vq8^j&_ z1I#4|pkV4N=l0yIsa+iW_T~A*_iGy#s}@f$P5toPyXTf(y494d8JatMU)caoy9Z?V zz%5UD<9>PL{*?O(7}>Q2fB53NFQ(g`mfN0AwVg=Xnt$Ea`GaTYocDVA-#-XjykAsQ z&+X6j^nN(%4858~w!P%iG`?KD57Q|Jc3hzPmo{4#@7nQpFGb z@A^M>cjp{jWex5lYwKR#wbHsR<=HN`Zd-ii4~7>F-x*1^;vibmv;AK8#^k1hE8Qch z+Cy^p$kN332Nz#?XG^ksWX_eWJ@hL_E%qkLJa0cW|5V0J=K*MEd$B*|?z-z9TAq4n zF_o3Ws?FI>+uul(Ga4!yso_YLtQ|_ZH{W&dyAvgZ3vFHRl2 zJvu+Sa3UmZvFD_UUg2QcNFyEWN9`tz2b zS0!7YO1X|FZO4E6>2A)uQs}^pC)GfDbBqlK2rpt7s~$pV)?FEATLQ3{!zd(o{^H5Z9Fl+WIGU zz}&nT_d{D$>mG1irR#$5sjWm%LYT1HA2ieXI$R4S)*-#l5#{scH>sgcFl+VDpg>iT z7i5aISxbqt*4T;{Hx=(cWjmN{)LYmI`^tO`G~cWd8@-jNWszeJxF}KQ5g-6s;323DYF~GC+4`ST!m=y@q7C@^|p*g>Jgp^co#n9tr z7+oxXSIVL1E+7^jYr=&X~{~7uM zKSjfS&_^ArLXJ+^qhx$B<6%p~VB~O}KUB|R5Lp@D49s9UsGlKV&EA}w7bNhxr-X6* zni1V+m)NH1i+&estk3xwVF+!b;%Z}$U%5pt&^Zf{VUzOS6qy{9J;yp#@=*Yzg*X!su@VS2kv>Q z7vk5yaqSx^Pe;<(!O$sDtw~GFbYB-Y5-xBwh3fmn9$jIN9M}L;1rtpOla$RajXP$N zh(L#Epu)$2&Avok=}Cw)T0HH!F})nA0CyxTrNn)IZU`it0iI=(=r*r}hw`v30}@G; zDkj=k;vzAffUf=|QZSG(mX;Hk? zQscz*X&5q3J=!?r?Z951W(>fWCU$M=gCrJ>A@q^1fVjwPbp!aV8&MF-)eu}U{f6R#FyHg_-??u-yQAGiqg#8zTFeqP$q-;VUM)0OR55)4g<1xwjyVRtG8Q6PY4)0E9$5KvRJ2 zQK!i#kb|GG<3w7Z6>`bu4t|18{SliJ6ahAdQ{+T1MKBSufqXY90>5upsHa_`FeVwQ zN21=KfTzi+LdtA4jXp$mT_9EWFLVJ?#E;yeOiF80=OJ!(QGJTw`TKyD_0p|n7jfr7 z!LMgY;wnX%X>64PQfnkaZR4@J_;k+S=TSWVU(=+%4hNDSws$JtzWm1Jr0qb`e;{Q$ zFn1Y-w6%3Nec$!1S}e__zw$RNSZFG@rE9z8+U}L!krmgWjMty`w#nYMw0E=Y-F%Br zZ#gD!Ikw_`^3xKotdgz~!;b-Mz;znUrLdoJHbcZDBj3%kXY)O`H(Aw}92iNt55atv z4h9(^233-n^vc_p=P$pxdvX6=M?(g+=)BPhMRfQ4(YfJ;>Wr(Bq8Go0n}nH_*j~A2 z?;X>f=TbGtk}%`NUBr98fAWu8ZoEJnqkBIX#3reIZ_a78cm6Sg@cJ==@OtRxyfxq6 zjH^rP>ThoQ{x%JK)!f%1`YKk#soH^SCBLfeTHcbX-Lz1WaeCiAHh*lfhJKEqjH_?O zMJP`1C!YH6Keu!^)zF*r^vxf*k8@@R&{9|9BER??l;W+uaLRh23Aa0;qgKSlMbnC{ zK2zQ^XZrPq=I>od;$v+!lveJzfAu-+S-(l0Ca_A4}Gc%GIOSO!uq(Noeq^H!hecnb4Yd`LJn9s zcLHO|+?jIk16=x6b-%p-fyG!hKy5y1cz^?2M-8}=&h@0>f!$n&{k~Gp)%Cz(DeF?Y zppv=(H(o9buh@LQcD3Y;#}DCcHG2Ta{dK5v`H+UBuS_li7PJ zXD~}C%uLQ-k@FwPA+|;N5v~7=e7ni{59C1g%5MGQMB>uL68bDBha@qD_z|%Z8Ob9C zRGJOUqYl$Tw!-tmROnSlX7nxK+^7wrbJ>a@G<{>#cZ>!|RTDm0mcWIJE6k zN14Tczq~GI!5fvWs9kKiR-P-NFWeZ_kZkCey#qN)g?g6ySIfxPSY{bB+%IpWTw{hc z+3<;t>9(Am#guZTo>gQLg`(aB-EtV6D7&Y^64mvg1KOi{Mi zueub#TP;KP%K;Z}>h88&3HdO8R4{h>#8C?sii1AUmdb@**&bLeqfgN=Zm^Wzchw|) zxL_T|tMmzA-axK|d2L)pP0r4|rCfa==U`qZSJ${Wd80E|#y$&b#=f60c`f@5_v>1g zj>4`sXQ8ix&SIZ7y)}0B-Q%?c?t5z}aR6znHsngkr}QcL(4}hg9rW3Agep!M$b%d; zs1ddgkIF6El8xKs>g~A_7GvY;Tb2fwZMXb#=gwryPPuMZ&dy>m&Kq(L=Ea%WK(35= zfs4&cJ8#*O%{y)%NH*`2{rht+7UR}yP{F>xVjQ$oXT0q>6TNplacA(Spw;l-w^uB5 z%l5`q3qEpZ4V@N0j*}!eY?Ny^ zx8=Cuz6S?G$U|MCA!P{*z_dcUZuI6@LZy3Hp$-<^YPTFi_6<1;d5|5w$D&KvcXfrO z6qd_56TJgiAl@xweyVzxY;Rb#AR^aZYw<46I+8giNn^rM&8*@FIEKlP`|Hhn&c{&GJzbjw&2`&Za&fqEt44-3r4nJ7PhOZhE za51siFIV9RG7AHS)IGG5SD`*cc!Cq+eWE}ABb;mrUAGOkFKflGh2kxmD2kCpM#30T zW|WlCPevRW)pSrgM()eV#|SVZyNu>nP#Cd-*=FKJp@yI4VWU9`eEg#wH!ZeH(W{4@Og$PhSr8{)6%#u&-7D4+NuqH~V zR8CJARe$bQSqw=#m-Vl$0u1nAbJ#~_k76su*A|UuMsmte{U|-I7oprL$xiucMv=6z zXB*eT0n^>5NK_Z-*El7y1Buv$L~5t&04XK@Yl;v>Z0;hE%IFj%)WncJI*rI!iER7Y zV%Y$rVCBYdy6|U4`O%@CB5hR?D~6SfBUoRel0ZjCc5lP_hAL_DKXJ>9$k@+8D9p$v zYB#YKxDZ0q^GnK4fiQk%3&k@oW*hlP$-}NGBRduBzZLGU?W8z5JfvLsz<3TOT zedO#X2ikp{Fo8&Mj9rp1j!+;Iot~r^%P`qKD$EOGG1jsjID(`6qU#><1eg;1ank<* z2c{wh!!NjsUvTbUaOIyFD-6cZxHZlyef~{5XL!Q!OK$tWaB#rin=2lgjh5O)+d~d7BG7enHEDaTY_DD1ma?~Awf@TNm>d4) rv8#rR%{g~+VdLEM^JP~p53MFc%Tnn>4zJIg&o~UFpK|0fD)|2b$yt2L literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab25595a8bcd9017b1ecbd2d72275abdd7c82e60 GIT binary patch literal 6779 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2a320813c5c191f8d9873f763983c2ceb42897b GIT binary patch literal 10509 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2e11cada553074ac4e15bb8af13e08809b09cffb GIT binary patch literal 15342 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­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 str: + if not extras: + return project + extras_expr = ",".join(sorted(extras)) + return f"{project}[{extras_expr}]" + + +@dataclass(frozen=True) +class Constraint: + specifier: SpecifierSet + hashes: Hashes + links: FrozenSet[Link] + + @classmethod + def empty(cls) -> "Constraint": + return Constraint(SpecifierSet(), Hashes(), frozenset()) + + @classmethod + def from_ireq(cls, ireq: InstallRequirement) -> "Constraint": + links = frozenset([ireq.link]) if ireq.link else frozenset() + return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) + + def __bool__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __and__(self, other: InstallRequirement) -> "Constraint": + if not isinstance(other, InstallRequirement): + return NotImplemented + specifier = self.specifier & other.specifier + hashes = self.hashes & other.hashes(trust_internet=False) + links = self.links + if other.link: + links = links.union([other.link]) + return Constraint(specifier, hashes, links) + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + # Reject if there are any mismatched URL constraints on this package. + if self.links and not all(_match_link(link, candidate) for link in self.links): + return False + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class Requirement: + @property + def project_name(self) -> NormalizedName: + """The "project name" of a requirement. + + This is different from ``name`` if this requirement contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Subclass should override") + + @property + def name(self) -> str: + """The name identifying this requirement in the resolver. + + This is different from ``project_name`` if this requirement contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Subclass should override") + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + return False + + def get_candidate_lookup(self) -> CandidateLookup: + raise NotImplementedError("Subclass should override") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") + + +def _match_link(link: Link, candidate: "Candidate") -> bool: + if candidate.source_link: + return links_equivalent(link, candidate.source_link) + return False + + +class Candidate: + @property + def project_name(self) -> NormalizedName: + """The "project name" of the candidate. + + This is different from ``name`` if this candidate contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Override in subclass") + + @property + def name(self) -> str: + """The name identifying this candidate in the resolver. + + This is different from ``project_name`` if this candidate contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Override in subclass") + + @property + def version(self) -> Version: + raise NotImplementedError("Override in subclass") + + @property + def is_installed(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def is_editable(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def source_link(self) -> Optional[Link]: + raise NotImplementedError("Override in subclass") + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + raise NotImplementedError("Override in subclass") + + def get_install_requirement(self) -> Optional[InstallRequirement]: + raise NotImplementedError("Override in subclass") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 00000000..d30d477b --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,569 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import ( + HashError, + InstallationSubprocessError, + MetadataInconsistent, + MetadataInvalid, +) +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link, links_equivalent +from pip._internal.models.wheel import Wheel +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.misc import normalize_version_info + +from .base import Candidate, Requirement, format_name + +if TYPE_CHECKING: + from .factory import Factory + +logger = logging.getLogger(__name__) + +BaseCandidate = Union[ + "AlreadyInstalledCandidate", + "EditableCandidate", + "LinkCandidate", +] + +# Avoid conflicting with the PyPI package "Python". +REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "") + + +def as_base_candidate(candidate: Candidate) -> Optional[BaseCandidate]: + """The runtime version of BaseCandidate.""" + base_candidate_classes = ( + AlreadyInstalledCandidate, + EditableCandidate, + LinkCandidate, + ) + if isinstance(candidate, base_candidate_classes): + return candidate + return None + + +def make_install_req_from_link( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert not template.editable, "template is editable" + if template.req: + line = str(template.req) + else: + line = link.url + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.original_link = template.original_link + ireq.link = link + ireq.extras = template.extras + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + ireq = install_req_from_editable( + link.url, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + permit_editable_wheels=template.permit_editable_wheels, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.extras = template.extras + return ireq + + +def _make_install_req_from_dist( + dist: BaseDistribution, template: InstallRequirement +) -> InstallRequirement: + if template.req: + line = str(template.req) + elif template.link: + line = f"{dist.canonical_name} @ {template.link.url}" + else: + line = f"{dist.canonical_name}=={dist.version}" + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.satisfied_by = dist + return ireq + + +class _InstallRequirementBackedCandidate(Candidate): + """A candidate backed by an ``InstallRequirement``. + + This represents a package request with the target not being already + in the environment, and needs to be fetched and installed. The backing + ``InstallRequirement`` is responsible for most of the leg work; this + class exposes appropriate information to the resolver. + + :param link: The link passed to the ``InstallRequirement``. The backing + ``InstallRequirement`` will use this link to fetch the distribution. + :param source_link: The link this candidate "originates" from. This is + different from ``link`` when the link is found in the wheel cache. + ``link`` would point to the wheel cache, while this points to the + found remote link (e.g. from pypi.org). + """ + + dist: BaseDistribution + is_installed = False + + def __init__( + self, + link: Link, + source_link: Link, + ireq: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[Version] = None, + ) -> None: + self._link = link + self._source_link = source_link + self._factory = factory + self._ireq = ireq + self._name = name + self._version = version + self.dist = self._prepare() + self._hash: Optional[int] = None + + def __str__(self) -> str: + return f"{self.name} {self.version}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._link)!r})" + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash((self.__class__, self._link)) + return self._hash + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return links_equivalent(self._link, other._link) + return False + + @property + def source_link(self) -> Optional[Link]: + return self._source_link + + @property + def project_name(self) -> NormalizedName: + """The normalised name of the project the candidate refers to""" + if self._name is None: + self._name = self.dist.canonical_name + return self._name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> Version: + if self._version is None: + self._version = self.dist.version + return self._version + + def format_for_error(self) -> str: + return ( + f"{self.name} {self.version} " + f"(from {self._link.file_path if self._link.is_file else self._link})" + ) + + def _prepare_distribution(self) -> BaseDistribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: BaseDistribution) -> None: + """Check for consistency of project name and version of dist.""" + if self._name is not None and self._name != dist.canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.canonical_name, + ) + if self._version is not None and self._version != dist.version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + str(dist.version), + ) + # check dependencies are valid + # TODO performance: this means we iterate the dependencies at least twice, + # we may want to cache parsed Requires-Dist + try: + list(dist.iter_dependencies(list(dist.iter_provided_extras()))) + except InvalidRequirement as e: + raise MetadataInvalid(self._ireq, str(e)) + + def _prepare(self) -> BaseDistribution: + try: + dist = self._prepare_distribution() + except HashError as e: + # Provide HashError the underlying ireq that caused it. This + # provides context for the resulting error message to show the + # offending line to the user. + e.req = self._ireq + raise + except InstallationSubprocessError as exc: + # The output has been presented already, so don't duplicate it. + exc.context = "See above for output." + raise + + self._check_metadata_consistency(dist) + return dist + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + requires = self.dist.iter_dependencies() if with_requires else () + for r in requires: + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + yield self._factory.make_requires_python_requirement(self.dist.requires_python) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return self._ireq + + +class LinkCandidate(_InstallRequirementBackedCandidate): + is_editable = False + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[Version] = None, + ) -> None: + source_link = link + cache_entry = factory.get_wheel_cache_entry(source_link, name) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + link = cache_entry.link + ireq = make_install_req_from_link(link, template) + assert ireq.link == link + if ireq.link.is_wheel and not ireq.link.is_file: + wheel = Wheel(ireq.link.filename) + wheel_name = canonicalize_name(wheel.name) + assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" + # Version may not be present for PEP 508 direct URLs + if version is not None: + wheel_version = Version(wheel.version) + assert ( + version == wheel_version + ), f"{version!r} != {wheel_version!r} for wheel {name}" + + if cache_entry is not None: + assert ireq.link.is_wheel + assert ireq.link.is_file + if cache_entry.persistent and template.link is template.original_link: + ireq.cached_wheel_source_link = source_link + if cache_entry.origin is not None: + ireq.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + ireq.download_info = direct_url_from_link( + source_link, link_is_in_wheel_cache=cache_entry.persistent + ) + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + preparer = self._factory.preparer + return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True) + + +class EditableCandidate(_InstallRequirementBackedCandidate): + is_editable = True + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[Version] = None, + ) -> None: + super().__init__( + link=link, + source_link=link, + ireq=make_install_req_from_editable(link, template), + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: BaseDistribution, + template: InstallRequirement, + factory: "Factory", + ) -> None: + self.dist = dist + self._ireq = _make_install_req_from_dist(dist, template) + self._factory = factory + self._version = None + + # This is just logging some messages, so we can do it eagerly. + # The returned dist would be exactly the same as self.dist because we + # set satisfied_by in _make_install_req_from_dist. + # TODO: Supply reason based on force_reinstall and upgrade_strategy. + skip_reason = "already satisfied" + factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) + + def __str__(self) -> str: + return str(self.dist) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.dist!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, AlreadyInstalledCandidate): + return NotImplemented + return self.name == other.name and self.version == other.version + + def __hash__(self) -> int: + return hash((self.name, self.version)) + + @property + def project_name(self) -> NormalizedName: + return self.dist.canonical_name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> Version: + if self._version is None: + self._version = self.dist.version + return self._version + + @property + def is_editable(self) -> bool: + return self.dist.editable + + def format_for_error(self) -> str: + return f"{self.name} {self.version} (Installed)" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + if not with_requires: + return + for r in self.dist.iter_dependencies(): + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None + + +class ExtrasCandidate(Candidate): + """A candidate that has 'extras', indicating additional dependencies. + + Requirements can be for a project with dependencies, something like + foo[extra]. The extras don't affect the project/version being installed + directly, but indicate that we need additional dependencies. We model that + by having an artificial ExtrasCandidate that wraps the "base" candidate. + + The ExtrasCandidate differs from the base in the following ways: + + 1. It has a unique name, of the form foo[extra]. This causes the resolver + to treat it as a separate node in the dependency graph. + 2. When we're getting the candidate's dependencies, + a) We specify that we want the extra dependencies as well. + b) We add a dependency on the base candidate. + See below for why this is needed. + 3. We return None for the underlying InstallRequirement, as the base + candidate will provide it, and we don't want to end up with duplicates. + + The dependency on the base candidate is needed so that the resolver can't + decide that it should recommend foo[extra1] version 1.0 and foo[extra2] + version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 + respectively forces the resolver to recognise that this is a conflict. + """ + + def __init__( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> None: + """ + :param comes_from: the InstallRequirement that led to this candidate if it + differs from the base's InstallRequirement. This will often be the + case in the sense that this candidate's requirement has the extras + while the base's does not. Unlike the InstallRequirement backed + candidates, this requirement is used solely for reporting purposes, + it does not do any leg work. + """ + self.base = base + self.extras = frozenset(canonicalize_name(e) for e in extras) + self._comes_from = comes_from if comes_from is not None else self.base._ireq + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}(base={self.base!r}, extras={self.extras!r})" + + def __hash__(self) -> int: + return hash((self.base, self.extras)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.base == other.base and self.extras == other.extras + return False + + @property + def project_name(self) -> NormalizedName: + return self.base.project_name + + @property + def name(self) -> str: + """The normalised name of the project the candidate refers to""" + return format_name(self.base.project_name, self.extras) + + @property + def version(self) -> Version: + return self.base.version + + def format_for_error(self) -> str: + return "{} [{}]".format( + self.base.format_for_error(), ", ".join(sorted(self.extras)) + ) + + @property + def is_installed(self) -> bool: + return self.base.is_installed + + @property + def is_editable(self) -> bool: + return self.base.is_editable + + @property + def source_link(self) -> Optional[Link]: + return self.base.source_link + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + # The user may have specified extras that the candidate doesn't + # support. We ignore any unsupported extras here. + valid_extras = self.extras.intersection(self.base.dist.iter_provided_extras()) + invalid_extras = self.extras.difference(self.base.dist.iter_provided_extras()) + for extra in sorted(invalid_extras): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + for r in self.base.dist.iter_dependencies(valid_extras): + yield from factory.make_requirements_from_spec( + str(r), + self._comes_from, + valid_extras, + ) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + # We don't return anything here, because we always + # depend on the base candidate, and we'll get the + # install requirement from that. + return None + + +class RequiresPythonCandidate(Candidate): + is_installed = False + source_link = None + + def __init__(self, py_version_info: Optional[Tuple[int, ...]]) -> None: + if py_version_info is not None: + version_info = normalize_version_info(py_version_info) + else: + version_info = sys.version_info[:3] + self._version = Version(".".join(str(c) for c in version_info)) + + # We don't need to implement __eq__() and __ne__() since there is always + # only one RequiresPythonCandidate in a resolution, i.e. the host Python. + # The built-in object.__eq__() and object.__ne__() do exactly what we want. + + def __str__(self) -> str: + return f"Python {self._version}" + + @property + def project_name(self) -> NormalizedName: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def name(self) -> str: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def version(self) -> Version: + return self._version + + def format_for_error(self) -> str: + return f"Python {self.version}" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + return () + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 00000000..145bdbf7 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,817 @@ +import contextlib +import functools +import logging +from typing import ( + TYPE_CHECKING, + Callable, + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, + Protocol, + Sequence, + Set, + Tuple, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + MetadataInconsistent, + MetadataInvalid, + UnsupportedPythonVersion, + UnsupportedWheel, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_drop_extras, + install_req_from_link_and_ireq, +) +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.resolution.base import InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import Candidate, Constraint, Requirement +from .candidates import ( + AlreadyInstalledCandidate, + BaseCandidate, + EditableCandidate, + ExtrasCandidate, + LinkCandidate, + RequiresPythonCandidate, + as_base_candidate, +) +from .found_candidates import FoundCandidates, IndexCandidateInfo +from .requirements import ( + ExplicitRequirement, + RequiresPythonRequirement, + SpecifierRequirement, + SpecifierWithoutExtrasRequirement, + UnsatisfiableRequirement, +) + +if TYPE_CHECKING: + + class ConflictCause(Protocol): + requirement: RequiresPythonRequirement + parent: Candidate + + +logger = logging.getLogger(__name__) + +C = TypeVar("C") +Cache = Dict[Link, C] + + +class CollectedRootRequirements(NamedTuple): + requirements: List[Requirement] + constraints: Dict[str, Constraint] + user_requested: Dict[str, int] + + +class Factory: + def __init__( + self, + finder: PackageFinder, + preparer: RequirementPreparer, + make_install_req: InstallRequirementProvider, + wheel_cache: Optional[WheelCache], + use_user_site: bool, + force_reinstall: bool, + ignore_installed: bool, + ignore_requires_python: bool, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + self._finder = finder + self.preparer = preparer + self._wheel_cache = wheel_cache + self._python_candidate = RequiresPythonCandidate(py_version_info) + self._make_install_req_from_spec = make_install_req + self._use_user_site = use_user_site + self._force_reinstall = force_reinstall + self._ignore_requires_python = ignore_requires_python + + self._build_failures: Cache[InstallationError] = {} + self._link_candidate_cache: Cache[LinkCandidate] = {} + self._editable_candidate_cache: Cache[EditableCandidate] = {} + self._installed_candidate_cache: Dict[str, AlreadyInstalledCandidate] = {} + self._extras_candidate_cache: Dict[ + Tuple[int, FrozenSet[NormalizedName]], ExtrasCandidate + ] = {} + self._supported_tags_cache = get_supported() + + if not ignore_installed: + env = get_default_environment() + self._installed_dists = { + dist.canonical_name: dist + for dist in env.iter_installed_distributions(local_only=False) + } + else: + self._installed_dists = {} + + @property + def force_reinstall(self) -> bool: + return self._force_reinstall + + def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: + if not link.is_wheel: + return + wheel = Wheel(link.filename) + if wheel.supported(self._finder.target_python.get_unsorted_tags()): + return + msg = f"{link.filename} is not a supported wheel on this platform." + raise UnsupportedWheel(msg) + + def _make_extras_candidate( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> ExtrasCandidate: + cache_key = (id(base), frozenset(canonicalize_name(e) for e in extras)) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras, comes_from=comes_from) + self._extras_candidate_cache[cache_key] = candidate + return candidate + + def _make_candidate_from_dist( + self, + dist: BaseDistribution, + extras: FrozenSet[str], + template: InstallRequirement, + ) -> Candidate: + try: + base = self._installed_candidate_cache[dist.canonical_name] + except KeyError: + base = AlreadyInstalledCandidate(dist, template, factory=self) + self._installed_candidate_cache[dist.canonical_name] = base + if not extras: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_candidate_from_link( + self, + link: Link, + extras: FrozenSet[str], + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[Version], + ) -> Optional[Candidate]: + base: Optional[BaseCandidate] = self._make_base_candidate_from_link( + link, template, name, version + ) + if not extras or base is None: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_base_candidate_from_link( + self, + link: Link, + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[Version], + ) -> Optional[BaseCandidate]: + # TODO: Check already installed candidate, and use it if the link and + # editable flag match. + + if link in self._build_failures: + # We already tried this candidate before, and it does not build. + # Don't bother trying again. + return None + + if template.editable: + if link not in self._editable_candidate_cache: + try: + self._editable_candidate_cache[link] = EditableCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except (MetadataInconsistent, MetadataInvalid) as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + + return self._editable_candidate_cache[link] + else: + if link not in self._link_candidate_cache: + try: + self._link_candidate_cache[link] = LinkCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + return self._link_candidate_cache[link] + + def _iter_found_candidates( + self, + ireqs: Sequence[InstallRequirement], + specifier: SpecifierSet, + hashes: Hashes, + prefers_installed: bool, + incompatible_ids: Set[int], + ) -> Iterable[Candidate]: + if not ireqs: + return () + + # The InstallRequirement implementation requires us to give it a + # "template". Here we just choose the first requirement to represent + # all of them. + # Hopefully the Project model can correct this mismatch in the future. + template = ireqs[0] + assert template.req, "Candidates found on index must be PEP 508" + name = canonicalize_name(template.req.name) + + extras: FrozenSet[str] = frozenset() + for ireq in ireqs: + assert ireq.req, "Candidates found on index must be PEP 508" + specifier &= ireq.req.specifier + hashes &= ireq.hashes(trust_internet=False) + extras |= frozenset(ireq.extras) + + def _get_installed_candidate() -> Optional[Candidate]: + """Get the candidate for the currently-installed version.""" + # If --force-reinstall is set, we want the version from the index + # instead, so we "pretend" there is nothing installed. + if self._force_reinstall: + return None + try: + installed_dist = self._installed_dists[name] + except KeyError: + return None + # Don't use the installed distribution if its version does not fit + # the current dependency graph. + if not specifier.contains(installed_dist.version, prereleases=True): + return None + candidate = self._make_candidate_from_dist( + dist=installed_dist, + extras=extras, + template=template, + ) + # The candidate is a known incompatibility. Don't use it. + if id(candidate) in incompatible_ids: + return None + return candidate + + def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]: + result = self._finder.find_best_candidate( + project_name=name, + specifier=specifier, + hashes=hashes, + ) + icans = list(result.iter_applicable()) + + # PEP 592: Yanked releases are ignored unless the specifier + # explicitly pins a version (via '==' or '===') that can be + # solely satisfied by a yanked release. + all_yanked = all(ican.link.is_yanked for ican in icans) + + def is_pinned(specifier: SpecifierSet) -> bool: + for sp in specifier: + if sp.operator == "===": + return True + if sp.operator != "==": + continue + if sp.version.endswith(".*"): + continue + return True + return False + + pinned = is_pinned(specifier) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not (all_yanked and pinned) and ican.link.is_yanked: + continue + func = functools.partial( + self._make_candidate_from_link, + link=ican.link, + extras=extras, + template=template, + name=name, + version=ican.version, + ) + yield ican.version, func + + return FoundCandidates( + iter_index_candidate_infos, + _get_installed_candidate(), + prefers_installed, + incompatible_ids, + ) + + def _iter_explicit_candidates_from_base( + self, + base_requirements: Iterable[Requirement], + extras: FrozenSet[str], + ) -> Iterator[Candidate]: + """Produce explicit candidates from the base given an extra-ed package. + + :param base_requirements: Requirements known to the resolver. The + requirements are guaranteed to not have extras. + :param extras: The extras to inject into the explicit requirements' + candidates. + """ + for req in base_requirements: + lookup_cand, _ = req.get_candidate_lookup() + if lookup_cand is None: # Not explicit. + continue + # We've stripped extras from the identifier, and should always + # get a BaseCandidate here, unless there's a bug elsewhere. + base_cand = as_base_candidate(lookup_cand) + assert base_cand is not None, "no extras here" + yield self._make_extras_candidate(base_cand, extras) + + def _iter_candidates_from_constraints( + self, + identifier: str, + constraint: Constraint, + template: InstallRequirement, + ) -> Iterator[Candidate]: + """Produce explicit candidates from constraints. + + This creates "fake" InstallRequirement objects that are basically clones + of what "should" be the template, but with original_link set to link. + """ + for link in constraint.links: + self._fail_if_link_is_unsupported_wheel(link) + candidate = self._make_base_candidate_from_link( + link, + template=install_req_from_link_and_ireq(link, template), + name=canonicalize_name(identifier), + version=None, + ) + if candidate: + yield candidate + + def find_candidates( + self, + identifier: str, + requirements: Mapping[str, Iterable[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + constraint: Constraint, + prefers_installed: bool, + is_satisfied_by: Callable[[Requirement, Candidate], bool], + ) -> Iterable[Candidate]: + # Collect basic lookup information from the requirements. + explicit_candidates: Set[Candidate] = set() + ireqs: List[InstallRequirement] = [] + for req in requirements[identifier]: + cand, ireq = req.get_candidate_lookup() + if cand is not None: + explicit_candidates.add(cand) + if ireq is not None: + ireqs.append(ireq) + + # If the current identifier contains extras, add requires and explicit + # candidates from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = get_requirement(identifier) + if parsed_requirement.name != identifier: + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + for req in requirements.get(parsed_requirement.name, []): + _, ireq = req.get_candidate_lookup() + if ireq is not None: + ireqs.append(ireq) + + # Add explicit candidates from constraints. We only do this if there are + # known ireqs, which represent requirements not already explicit. If + # there are no ireqs, we're constraining already-explicit requirements, + # which is handled later when we return the explicit candidates. + if ireqs: + try: + explicit_candidates.update( + self._iter_candidates_from_constraints( + identifier, + constraint, + template=ireqs[0], + ), + ) + except UnsupportedWheel: + # If we're constrained to install a wheel incompatible with the + # target architecture, no candidates will ever be valid. + return () + + # Since we cache all the candidates, incompatibility identification + # can be made quicker by comparing only the id() values. + incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} + + # If none of the requirements want an explicit candidate, we can ask + # the finder for candidates. + if not explicit_candidates: + return self._iter_found_candidates( + ireqs, + constraint.specifier, + constraint.hashes, + prefers_installed, + incompat_ids, + ) + + return ( + c + for c in explicit_candidates + if id(c) not in incompat_ids + and constraint.is_satisfied_by(c) + and all(is_satisfied_by(req, c) for req in requirements[identifier]) + ) + + def _make_requirements_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given InstallRequirement. In + most cases this will be a single object but the following special cases exist: + - the InstallRequirement has markers that do not apply -> result is empty + - the InstallRequirement has both a constraint (or link) and extras + -> result is split in two requirement objects: one with the constraint + (or link) and one with the extra. This allows centralized constraint + handling for the base, resulting in fewer candidate rejections. + """ + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + elif not ireq.link: + if ireq.extras and ireq.req is not None and ireq.req.specifier: + yield SpecifierWithoutExtrasRequirement(ireq) + yield SpecifierRequirement(ireq) + else: + self._fail_if_link_is_unsupported_wheel(ireq.link) + # Always make the link candidate for the base requirement to make it + # available to `find_candidates` for explicit candidate lookup for any + # set of extras. + # The extras are required separately via a second requirement. + cand = self._make_base_candidate_from_link( + ireq.link, + template=install_req_drop_extras(ireq) if ireq.extras else ireq, + name=canonicalize_name(ireq.name) if ireq.name else None, + version=None, + ) + if cand is None: + # There's no way we can satisfy a URL requirement if the underlying + # candidate fails to build. An unnamed URL must be user-supplied, so + # we fail eagerly. If the URL is named, an unsatisfiable requirement + # can make the resolver do the right thing, either backtrack (and + # maybe find some other requirement that's buildable) or raise a + # ResolutionImpossible eventually. + if not ireq.name: + raise self._build_failures[ireq.link] + yield UnsatisfiableRequirement(canonicalize_name(ireq.name)) + else: + # require the base from the link + yield self.make_requirement_from_candidate(cand) + if ireq.extras: + # require the extras on top of the base candidate + yield self.make_requirement_from_candidate( + self._make_extras_candidate(cand, frozenset(ireq.extras)) + ) + + def collect_root_requirements( + self, root_ireqs: List[InstallRequirement] + ) -> CollectedRootRequirements: + collected = CollectedRootRequirements([], {}, {}) + for i, ireq in enumerate(root_ireqs): + if ireq.constraint: + # Ensure we only accept valid constraints + problem = check_invalid_constraint_type(ireq) + if problem: + raise InstallationError(problem) + if not ireq.match_markers(): + continue + assert ireq.name, "Constraint must be named" + name = canonicalize_name(ireq.name) + if name in collected.constraints: + collected.constraints[name] &= ireq + else: + collected.constraints[name] = Constraint.from_ireq(ireq) + else: + reqs = list( + self._make_requirements_from_install_req( + ireq, + requested_extras=(), + ) + ) + if not reqs: + continue + template = reqs[0] + if ireq.user_supplied and template.name not in collected.user_requested: + collected.user_requested[template.name] = i + collected.requirements.extend(reqs) + # Put requirements with extras at the end of the root requires. This does not + # affect resolvelib's picking preference but it does affect its initial criteria + # population: by putting extras at the end we enable the candidate finder to + # present resolvelib with a smaller set of candidates to resolvelib, already + # taking into account any non-transient constraints on the associated base. This + # means resolvelib will have fewer candidates to visit and reject. + # Python's list sort is stable, meaning relative order is kept for objects with + # the same key. + collected.requirements.sort(key=lambda r: r.name != r.project_name) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirements_from_spec( + self, + specifier: str, + comes_from: Optional[InstallRequirement], + requested_extras: Iterable[str] = (), + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given specifier. In most cases + this will be a single object but the following special cases exist: + - the specifier has markers that do not apply -> result is empty + - the specifier has both a constraint and extras -> result is split + in two requirement objects: one with the constraint and one with the + extra. This allows centralized constraint handling for the base, + resulting in fewer candidate rejections. + """ + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirements_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement( + self, + specifier: SpecifierSet, + ) -> Optional[Requirement]: + if self._ignore_requires_python: + return None + # Don't bother creating a dependency for an empty Requires-Python. + if not str(specifier): + return None + return RequiresPythonRequirement(specifier, self._python_candidate) + + def get_wheel_cache_entry( + self, link: Link, name: Optional[str] + ) -> Optional[CacheEntry]: + """Look up the link in the wheel cache. + + If ``preparer.require_hashes`` is True, don't use the wheel cache, + because cached wheels, always built locally, have different hashes + than the files downloaded from the index server and thus throw false + hash mismatches. Furthermore, cached wheels at present have + nondeterministic contents due to file modification times. + """ + if self._wheel_cache is None: + return None + return self._wheel_cache.get_cache_entry( + link=link, + package_name=name, + supported_tags=self._supported_tags_cache, + ) + + def get_dist_to_uninstall(self, candidate: Candidate) -> Optional[BaseDistribution]: + # TODO: Are there more cases this needs to return True? Editable? + dist = self._installed_dists.get(candidate.project_name) + if dist is None: # Not installed, no uninstallation required. + return None + + # We're installing into global site. The current installation must + # be uninstalled, no matter it's in global or user site, because the + # user site installation has precedence over global. + if not self._use_user_site: + return dist + + # We're installing into user site. Remove the user site installation. + if dist.in_usersite: + return dist + + # We're installing into user site, but the installed incompatible + # package is in global site. We can't uninstall that, and would let + # the new user installation to "shadow" it. But shadowing won't work + # in virtual environments, so we error out. + if running_under_virtualenv() and dist.in_site_packages: + message = ( + f"Will not install to the user site because it will lack " + f"sys.path precedence to {dist.raw_name} in {dist.location}" + ) + raise InstallationError(message) + return None + + def _report_requires_python_error( + self, causes: Sequence["ConflictCause"] + ) -> UnsupportedPythonVersion: + assert causes, "Requires-Python error reported with no cause" + + version = self._python_candidate.version + + if len(causes) == 1: + specifier = str(causes[0].requirement.specifier) + message = ( + f"Package {causes[0].parent.name!r} requires a different " + f"Python: {version} not in {specifier!r}" + ) + return UnsupportedPythonVersion(message) + + message = f"Packages require a different Python. {version} not in:" + for cause in causes: + package = cause.parent.format_for_error() + specifier = str(cause.requirement.specifier) + message += f"\n{specifier!r} (required by {package})" + return UnsupportedPythonVersion(message) + + def _report_single_requirement_conflict( + self, req: Requirement, parent: Optional[Candidate] + ) -> DistributionNotFound: + if parent is None: + req_disp = str(req) + else: + req_disp = f"{req} (from {parent.name})" + + cands = self._finder.find_all_candidates(req.project_name) + skipped_by_requires_python = self._finder.requires_python_skipped_reasons() + + versions_set: Set[Version] = set() + yanked_versions_set: Set[Version] = set() + for c in cands: + is_yanked = c.link.is_yanked if c.link else False + if is_yanked: + yanked_versions_set.add(c.version) + else: + versions_set.add(c.version) + + versions = [str(v) for v in sorted(versions_set)] + yanked_versions = [str(v) for v in sorted(yanked_versions_set)] + + if yanked_versions: + # Saying "version X is yanked" isn't entirely accurate. + # https://github.com/pypa/pip/issues/11745#issuecomment-1402805842 + logger.critical( + "Ignored the following yanked versions: %s", + ", ".join(yanked_versions) or "none", + ) + if skipped_by_requires_python: + logger.critical( + "Ignored the following versions that require a different python " + "version: %s", + "; ".join(skipped_by_requires_python) or "none", + ) + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req_disp, + ", ".join(versions) or "none", + ) + if str(req) == "requirements.txt": + logger.info( + "HINT: You are attempting to install a package literally " + 'named "requirements.txt" (which cannot exist). Consider ' + "using the '-r' flag to install the packages listed in " + "requirements.txt" + ) + + return DistributionNotFound(f"No matching distribution found for {req}") + + def get_installation_error( + self, + e: "ResolutionImpossible[Requirement, Candidate]", + constraints: Dict[str, Constraint], + ) -> InstallationError: + assert e.causes, "Installation error reported with no cause" + + # If one of the things we can't solve is "we need Python X.Y", + # that is what we report. + requires_python_causes = [ + cause + for cause in e.causes + if isinstance(cause.requirement, RequiresPythonRequirement) + and not cause.requirement.is_satisfied_by(self._python_candidate) + ] + if requires_python_causes: + # The comprehension above makes sure all Requirement instances are + # RequiresPythonRequirement, so let's cast for convenience. + return self._report_requires_python_error( + cast("Sequence[ConflictCause]", requires_python_causes), + ) + + # Otherwise, we have a set of causes which can't all be satisfied + # at once. + + # The simplest case is when we have *one* cause that can't be + # satisfied. We just report that case. + if len(e.causes) == 1: + req, parent = e.causes[0] + if req.name not in constraints: + return self._report_single_requirement_conflict(req, parent) + + # OK, we now have a list of requirements that can't all be + # satisfied at once. + + # A couple of formatting helpers + def text_join(parts: List[str]) -> str: + if len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def describe_trigger(parent: Candidate) -> str: + ireq = parent.get_install_requirement() + if not ireq or not ireq.comes_from: + return f"{parent.name}=={parent.version}" + if isinstance(ireq.comes_from, InstallRequirement): + return str(ireq.comes_from.name) + return str(ireq.comes_from) + + triggers = set() + for req, parent in e.causes: + if parent is None: + # This is a root requirement, so we can report it directly + trigger = req.format_for_error() + else: + trigger = describe_trigger(parent) + triggers.add(trigger) + + if triggers: + info = text_join(sorted(triggers)) + else: + info = "the requested packages" + + msg = ( + f"Cannot install {info} because these package versions " + "have conflicting dependencies." + ) + logger.critical(msg) + msg = "\nThe conflict is caused by:" + + relevant_constraints = set() + for req, parent in e.causes: + if req.name in constraints: + relevant_constraints.add(req.name) + msg = msg + "\n " + if parent: + msg = msg + f"{parent.name} {parent.version} depends on " + else: + msg = msg + "The user requested " + msg = msg + req.format_for_error() + for key in relevant_constraints: + spec = constraints[key].specifier + msg += f"\n The user requested (constraint) {key}{spec}" + + msg = ( + msg + + "\n\n" + + "To fix this you could try to:\n" + + "1. loosen the range of package versions you've specified\n" + + "2. remove package versions to allow pip to attempt to solve " + + "the dependency conflict\n" + ) + + logger.info(msg) + + return DistributionNotFound( + "ResolutionImpossible: for help visit " + "https://pip.pypa.io/en/latest/topics/dependency-resolution/" + "#dealing-with-dependency-conflicts" + ) diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 00000000..a1d57e0f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,174 @@ +"""Utilities to lazily create and visit candidates found. + +Creating and visiting a candidate is a *very* costly operation. It involves +fetching, extracting, potentially building modules from source, and verifying +distribution metadata. It is therefore crucial for performance to keep +everything here lazy all the way down, so we only touch candidates that we +absolutely need, and not "download the world" when we only need one version of +something. +""" + +import functools +import logging +from collections.abc import Sequence +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion + +from pip._internal.exceptions import MetadataInvalid + +from .base import Candidate + +logger = logging.getLogger(__name__) + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + +if TYPE_CHECKING: + SequenceCandidate = Sequence[Candidate] +else: + # For compatibility: Python before 3.9 does not support using [] on the + # Sequence class. + # + # >>> from collections.abc import Sequence + # >>> Sequence[str] + # Traceback (most recent call last): + # File "", line 1, in + # TypeError: 'ABCMeta' object is not subscriptable + # + # TODO: Remove this block after dropping Python 3.8 support. + SequenceCandidate = Sequence + + +def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the package is not already installed. Candidates + from index come later in their normal ordering. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + try: + candidate = func() + except MetadataInvalid as e: + logger.warning( + "Ignoring version %s of %s since it has invalid metadata:\n" + "%s\n" + "Please use pip<24.1 if you need to use this version.", + version, + e.ireq.name, + e, + ) + # Mark version as found to avoid trying other candidates with the same + # version, since they most likely have invalid metadata as well. + versions_found.add(version) + else: + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_prepended( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers the already-installed + candidate and NOT to upgrade. The installed candidate is therefore + always yielded first, and candidates from index come later in their + normal ordering, except skipped when the version is already installed. + """ + yield installed + versions_found: Set[_BaseVersion] = {installed.version} + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_inserted( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers to upgrade an + already-installed package. Candidates from index are returned in their + normal ordering, except replaced when the version is already installed. + + The implementation iterates through and yields other candidates, inserting + the installed candidate exactly once before we start yielding older or + equivalent candidates, or after all other candidates if they are all newer. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + # If the installed candidate is better, yield it first. + if installed.version >= version: + yield installed + versions_found.add(installed.version) + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + # If the installed candidate is older than all other candidates. + if installed.version not in versions_found: + yield installed + + +class FoundCandidates(SequenceCandidate): + """A lazy sequence to provide candidates to the resolver. + + The intended usage is to return this from `find_matches()` so the resolver + can iterate through the sequence multiple times, but only access the index + page when remote packages are actually needed. This improve performances + when suitable candidates are already installed on disk. + """ + + def __init__( + self, + get_infos: Callable[[], Iterator[IndexCandidateInfo]], + installed: Optional[Candidate], + prefers_installed: bool, + incompatible_ids: Set[int], + ): + self._get_infos = get_infos + self._installed = installed + self._prefers_installed = prefers_installed + self._incompatible_ids = incompatible_ids + + def __getitem__(self, index: Any) -> Any: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __iter__(self) -> Iterator[Candidate]: + infos = self._get_infos() + if not self._installed: + iterator = _iter_built(infos) + elif self._prefers_installed: + iterator = _iter_built_with_prepended(self._installed, infos) + else: + iterator = _iter_built_with_inserted(self._installed, infos) + return (c for c in iterator if id(c) not in self._incompatible_ids) + + def __len__(self) -> int: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + @functools.lru_cache(maxsize=1) + def __bool__(self) -> bool: + if self._prefers_installed and self._installed: + return True + return any(self) diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 00000000..fb0dd85f --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,258 @@ +import collections +import math +from functools import lru_cache +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + Iterator, + Mapping, + Sequence, + TypeVar, + Union, +) + +from pip._vendor.resolvelib.providers import AbstractProvider + +from .base import Candidate, Constraint, Requirement +from .candidates import REQUIRES_PYTHON_IDENTIFIER +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.providers import Preference + from pip._vendor.resolvelib.resolvers import RequirementInformation + + PreferenceInformation = RequirementInformation[Requirement, Candidate] + + _ProviderBase = AbstractProvider[Requirement, Candidate, str] +else: + _ProviderBase = AbstractProvider + +# Notes on the relationship between the provider, the factory, and the +# candidate and requirement classes. +# +# The provider is a direct implementation of the resolvelib class. Its role +# is to deliver the API that resolvelib expects. +# +# Rather than work with completely abstract "requirement" and "candidate" +# concepts as resolvelib does, pip has concrete classes implementing these two +# ideas. The API of Requirement and Candidate objects are defined in the base +# classes, but essentially map fairly directly to the equivalent provider +# methods. In particular, `find_matches` and `is_satisfied_by` are +# requirement methods, and `get_dependencies` is a candidate method. +# +# The factory is the interface to pip's internal mechanisms. It is stateless, +# and is created by the resolver and held as a property of the provider. It is +# responsible for creating Requirement and Candidate objects, and provides +# services to those objects (access to pip's finder and preparer). + + +D = TypeVar("D") +V = TypeVar("V") + + +def _get_with_identifier( + mapping: Mapping[str, V], + identifier: str, + default: D, +) -> Union[D, V]: + """Get item from a package name lookup mapping with a resolver identifier. + + This extra logic is needed when the target mapping is keyed by package + name, which cannot be directly looked up with an identifier (which may + contain requested extras). Additional logic is added to also look up a value + by "cleaning up" the extras from the identifier. + """ + if identifier in mapping: + return mapping[identifier] + # HACK: Theoretically we should check whether this identifier is a valid + # "NAME[EXTRAS]" format, and parse out the name part with packaging or + # some regular expression. But since pip's resolver only spits out three + # kinds of identifiers: normalized PEP 503 names, normalized names plus + # extras, and Requires-Python, we can cheat a bit here. + name, open_bracket, _ = identifier.partition("[") + if open_bracket and name in mapping: + return mapping[name] + return default + + +class PipProvider(_ProviderBase): + """Pip's provider implementation for resolvelib. + + :params constraints: A mapping of constraints specified by the user. Keys + are canonicalized project names. + :params ignore_dependencies: Whether the user specified ``--no-deps``. + :params upgrade_strategy: The user-specified upgrade strategy. + :params user_requested: A set of canonicalized package names that the user + supplied for pip to install/upgrade. + """ + + def __init__( + self, + factory: Factory, + constraints: Dict[str, Constraint], + ignore_dependencies: bool, + upgrade_strategy: str, + user_requested: Dict[str, int], + ) -> None: + self._factory = factory + self._constraints = constraints + self._ignore_dependencies = ignore_dependencies + self._upgrade_strategy = upgrade_strategy + self._user_requested = user_requested + self._known_depths: Dict[str, float] = collections.defaultdict(lambda: math.inf) + + def identify(self, requirement_or_candidate: Union[Requirement, Candidate]) -> str: + return requirement_or_candidate.name + + def get_preference( + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterable["PreferenceInformation"]], + backtrack_causes: Sequence["PreferenceInformation"], + ) -> "Preference": + """Produce a sort key for given requirement based on preference. + + The lower the return value is, the more preferred this group of + arguments is. + + Currently pip considers the following in order: + + * Prefer if any of the known requirements is "direct", e.g. points to an + explicit URL. + * If equal, prefer if any requirement is "pinned", i.e. contains + operator ``===`` or ``==``. + * If equal, calculate an approximate "depth" and resolve requirements + closer to the user-specified requirements first. If the depth cannot + by determined (eg: due to no matching parents), it is considered + infinite. + * Order user-specified requirements by the order they are specified. + * If equal, prefers "non-free" requirements, i.e. contains at least one + operator, such as ``>=`` or ``<``. + * If equal, order alphabetically for consistency (helps debuggability). + """ + try: + next(iter(information[identifier])) + except StopIteration: + # There is no information for this identifier, so there's no known + # candidates. + has_information = False + else: + has_information = True + + if has_information: + lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) + candidate, ireqs = zip(*lookups) + else: + candidate, ireqs = None, () + + operators = [ + specifier.operator + for specifier_set in (ireq.specifier for ireq in ireqs if ireq) + for specifier in specifier_set + ] + + direct = candidate is not None + pinned = any(op[:2] == "==" for op in operators) + unfree = bool(operators) + + try: + requested_order: Union[int, float] = self._user_requested[identifier] + except KeyError: + requested_order = math.inf + if has_information: + parent_depths = ( + self._known_depths[parent.name] if parent is not None else 0.0 + for _, parent in information[identifier] + ) + inferred_depth = min(d for d in parent_depths) + 1.0 + else: + inferred_depth = math.inf + else: + inferred_depth = 1.0 + self._known_depths[identifier] = inferred_depth + + requested_order = self._user_requested.get(identifier, math.inf) + + # Requires-Python has only one candidate and the check is basically + # free, so we always do it first to avoid needless work if it fails. + requires_python = identifier == REQUIRES_PYTHON_IDENTIFIER + + # Prefer the causes of backtracking on the assumption that the problem + # resolving the dependency tree is related to the failures that caused + # the backtracking + backtrack_cause = self.is_backtrack_cause(identifier, backtrack_causes) + + return ( + not requires_python, + not direct, + not pinned, + not backtrack_cause, + inferred_depth, + requested_order, + not unfree, + identifier, + ) + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(identifier: str) -> bool: + """Are upgrades allowed for this project? + + This checks the upgrade strategy, and whether the project was one + that the user specified in the command line, in order to decide + whether we should upgrade if there's a newer version available. + + (Note that we don't need access to the `--upgrade` flag, because + an upgrade strategy of "to-satisfy-only" means that `--upgrade` + was not specified). + """ + if self._upgrade_strategy == "eager": + return True + elif self._upgrade_strategy == "only-if-needed": + user_order = _get_with_identifier( + self._user_requested, + identifier, + default=None, + ) + return user_order is not None + return False + + constraint = _get_with_identifier( + self._constraints, + identifier, + default=Constraint.empty(), + ) + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=constraint, + prefers_installed=(not _eligible_for_upgrade(identifier)), + incompatibilities=incompatibilities, + is_satisfied_by=self.is_satisfied_by, + ) + + @lru_cache(maxsize=None) + def is_satisfied_by(self, requirement: Requirement, candidate: Candidate) -> bool: + return requirement.is_satisfied_by(candidate) + + def get_dependencies(self, candidate: Candidate) -> Sequence[Requirement]: + with_requires = not self._ignore_dependencies + return [r for r in candidate.iter_dependencies(with_requires) if r is not None] + + @staticmethod + def is_backtrack_cause( + identifier: str, backtrack_causes: Sequence["PreferenceInformation"] + ) -> bool: + for backtrack_cause in backtrack_causes: + if identifier == backtrack_cause.requirement.name: + return True + if backtrack_cause.parent and identifier == backtrack_cause.parent.name: + return True + return False diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 00000000..0594569d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,81 @@ +from collections import defaultdict +from logging import getLogger +from typing import Any, DefaultDict + +from pip._vendor.resolvelib.reporters import BaseReporter + +from .base import Candidate, Requirement + +logger = getLogger(__name__) + + +class PipReporter(BaseReporter): + def __init__(self) -> None: + self.reject_count_by_package: DefaultDict[str, int] = defaultdict(int) + + self._messages_at_reject_count = { + 1: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 8: ( + "pip is still looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 13: ( + "This is taking longer than usual. You might need to provide " + "the dependency resolver with stricter constraints to reduce " + "runtime. See https://pip.pypa.io/warnings/backtracking for " + "guidance. If you want to abort this run, press Ctrl + C." + ), + } + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + self.reject_count_by_package[candidate.name] += 1 + + count = self.reject_count_by_package[candidate.name] + if count not in self._messages_at_reject_count: + return + + message = self._messages_at_reject_count[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + msg = "Will try a different candidate, due to conflict:" + for req_info in criterion.information: + req, parent = req_info.requirement, req_info.parent + # Inspired by Factory.get_installation_error + msg += "\n " + if parent: + msg += f"{parent.name} {parent.version} depends on " + else: + msg += "The user requested " + msg += req.format_for_error() + logger.debug(msg) + + +class PipDebuggingReporter(BaseReporter): + """A reporter that does an info log for every event it sees.""" + + def starting(self) -> None: + logger.info("Reporter.starting()") + + def starting_round(self, index: int) -> None: + logger.info("Reporter.starting_round(%r)", index) + + def ending_round(self, index: int, state: Any) -> None: + logger.info("Reporter.ending_round(%r, state)", index) + logger.debug("Reporter.ending_round(%r, %r)", index, state) + + def ending(self, state: Any) -> None: + logger.info("Reporter.ending(%r)", state) + + def adding_requirement(self, requirement: Requirement, parent: Candidate) -> None: + logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + logger.info("Reporter.rejecting_candidate(%r, %r)", criterion, candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 00000000..b04f41b2 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,245 @@ +from typing import Any, Optional + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.req.constructors import install_req_drop_extras +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, CandidateLookup, Requirement, format_name + + +class ExplicitRequirement(Requirement): + def __init__(self, candidate: Candidate) -> None: + self.candidate = candidate + + def __str__(self) -> str: + return str(self.candidate) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.candidate!r})" + + def __hash__(self) -> int: + return hash(self.candidate) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, ExplicitRequirement): + return False + return self.candidate == other.candidate + + @property + def project_name(self) -> NormalizedName: + # No need to canonicalize - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalize - the candidate did this + return self.candidate.name + + def format_for_error(self) -> str: + return self.candidate.format_for_error() + + def get_candidate_lookup(self) -> CandidateLookup: + return self.candidate, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return candidate == self.candidate + + +class SpecifierRequirement(Requirement): + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = ireq + self._equal_cache: Optional[str] = None + self._hash: Optional[int] = None + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + @property + def _equal(self) -> str: + if self._equal_cache is not None: + return self._equal_cache + + self._equal_cache = str(self._ireq) + return self._equal_cache + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._ireq.req)!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, SpecifierRequirement): + return NotImplemented + return self._equal == other._equal + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash(self._equal) + return self._hash + + @property + def project_name(self) -> NormalizedName: + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + return canonicalize_name(self._ireq.req.name) + + @property + def name(self) -> str: + return format_name(self.project_name, self._extras) + + def format_for_error(self) -> str: + # Convert comma-separated specifiers into "A, B, ..., F and G" + # This makes the specifier a bit more "human readable", without + # risking a change in meaning. (Hopefully! Not all edge cases have + # been checked) + parts = [s.strip() for s in str(self).split(",")] + if len(parts) == 0: + return "" + elif len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def get_candidate_lookup(self) -> CandidateLookup: + return None, self._ireq + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self.name, ( + f"Internal issue: Candidate is not for this requirement " + f"{candidate.name} vs {self.name}" + ) + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + spec = self._ireq.req.specifier + return spec.contains(candidate.version, prereleases=True) + + +class SpecifierWithoutExtrasRequirement(SpecifierRequirement): + """ + Requirement backed by an install requirement on a base package. + Trims extras from its install requirement if there are any. + """ + + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = install_req_drop_extras(ireq) + self._equal_cache: Optional[str] = None + self._hash: Optional[int] = None + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + @property + def _equal(self) -> str: + if self._equal_cache is not None: + return self._equal_cache + + self._equal_cache = str(self._ireq) + return self._equal_cache + + def __eq__(self, other: object) -> bool: + if not isinstance(other, SpecifierWithoutExtrasRequirement): + return NotImplemented + return self._equal == other._equal + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash(self._equal) + return self._hash + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: + self.specifier = specifier + self._specifier_string = str(specifier) # for faster __eq__ + self._hash: Optional[int] = None + self._candidate = match + + def __str__(self) -> str: + return f"Python {self.specifier}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self.specifier)!r})" + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash((self._specifier_string, self._candidate)) + return self._hash + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, RequiresPythonRequirement): + return False + return ( + self._specifier_string == other._specifier_string + and self._candidate == other._candidate + ) + + @property + def project_name(self) -> NormalizedName: + return self._candidate.project_name + + @property + def name(self) -> str: + return self._candidate.name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + if self.specifier.contains(self._candidate.version, prereleases=True): + return self._candidate, None + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self._candidate.name, "Not Python candidate" + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class UnsatisfiableRequirement(Requirement): + """A requirement that cannot be satisfied.""" + + def __init__(self, name: NormalizedName) -> None: + self._name = name + + def __str__(self) -> str: + return f"{self._name} (unavailable)" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._name)!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, UnsatisfiableRequirement): + return NotImplemented + return self._name == other._name + + def __hash__(self) -> int: + return hash(self._name) + + @property + def project_name(self) -> NormalizedName: + return self._name + + @property + def name(self) -> str: + return self._name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False diff --git a/env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 00000000..c12beef0 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,317 @@ +import contextlib +import functools +import logging +import os +from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible +from pip._vendor.resolvelib import Resolver as RLResolver +from pip._vendor.resolvelib.structs import DirectedGraph + +from pip._internal.cache import WheelCache +from pip._internal.index.package_finder import PackageFinder +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import install_req_extend_extras +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.resolution.resolvelib.provider import PipProvider +from pip._internal.resolution.resolvelib.reporter import ( + PipDebuggingReporter, + PipReporter, +) +from pip._internal.utils.packaging import get_requirement + +from .base import Candidate, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.resolvers import Result as RLResult + + Result = RLResult[Requirement, Candidate, str] + + +logger = logging.getLogger(__name__) + + +class Resolver(BaseResolver): + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ): + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + self.factory = Factory( + finder=finder, + preparer=preparer, + make_install_req=make_install_req, + wheel_cache=wheel_cache, + use_user_site=use_user_site, + force_reinstall=force_reinstall, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + py_version_info=py_version_info, + ) + self.ignore_dependencies = ignore_dependencies + self.upgrade_strategy = upgrade_strategy + self._result: Optional[Result] = None + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + collected = self.factory.collect_root_requirements(root_reqs) + provider = PipProvider( + factory=self.factory, + constraints=collected.constraints, + ignore_dependencies=self.ignore_dependencies, + upgrade_strategy=self.upgrade_strategy, + user_requested=collected.user_requested, + ) + if "PIP_RESOLVER_DEBUG" in os.environ: + reporter: BaseReporter = PipDebuggingReporter() + else: + reporter = PipReporter() + resolver: RLResolver[Requirement, Candidate, str] = RLResolver( + provider, + reporter, + ) + + try: + limit_how_complex_resolution_can_be = 200000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=limit_how_complex_resolution_can_be + ) + + except ResolutionImpossible as e: + error = self.factory.get_installation_error( + cast("ResolutionImpossible[Requirement, Candidate]", e), + collected.constraints, + ) + raise error from e + + req_set = RequirementSet(check_supported_wheels=check_supported_wheels) + # process candidates with extras last to ensure their base equivalent is + # already in the req_set if appropriate. + # Python's sort is stable so using a binary key function keeps relative order + # within both subsets. + for candidate in sorted( + result.mapping.values(), key=lambda c: c.name != c.project_name + ): + ireq = candidate.get_install_requirement() + if ireq is None: + if candidate.name != candidate.project_name: + # extend existing req's extras + with contextlib.suppress(KeyError): + req = req_set.get_requirement(candidate.project_name) + req_set.add_named_requirement( + install_req_extend_extras( + req, get_requirement(candidate.name).extras + ) + ) + continue + + # Check if there is already an installation under the same name, + # and set a flag for later stages to uninstall it, if needed. + installed_dist = self.factory.get_dist_to_uninstall(candidate) + if installed_dist is None: + # There is no existing installation -- nothing to uninstall. + ireq.should_reinstall = False + elif self.factory.force_reinstall: + # The --force-reinstall flag is set -- reinstall. + ireq.should_reinstall = True + elif installed_dist.version != candidate.version: + # The installation is different in version -- reinstall. + ireq.should_reinstall = True + elif candidate.is_editable or installed_dist.editable: + # The incoming distribution is editable, or different in + # editable-ness to installation -- reinstall. + ireq.should_reinstall = True + elif candidate.source_link and candidate.source_link.is_file: + # The incoming distribution is under file:// + if candidate.source_link.is_wheel: + # is a local wheel -- do nothing. + logger.info( + "%s is already installed with the same version as the " + "provided wheel. Use --force-reinstall to force an " + "installation of the wheel.", + ireq.name, + ) + continue + + # is a local sdist or path -- reinstall + ireq.should_reinstall = True + else: + continue + + link = candidate.source_link + if link and link.is_yanked: + # The reason can contain non-ASCII characters, Unicode + # is required for Python 2. + msg = ( + "The candidate selected for download or install is a " + "yanked version: {name!r} candidate (version {version} " + "at {link})\nReason for being yanked: {reason}" + ).format( + name=candidate.name, + version=candidate.version, + link=link, + reason=link.yanked_reason or "", + ) + logger.warning(msg) + + req_set.add_named_requirement(ireq) + + reqs = req_set.all_requirements + self.factory.preparer.prepare_linked_requirements_more(reqs) + for req in reqs: + req.prepared = True + req.needs_more_preparation = False + return req_set + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Get order for installation of requirements in RequirementSet. + + The returned list contains a requirement before another that depends on + it. This helps ensure that the environment is kept consistent as they + get installed one-by-one. + + The current implementation creates a topological ordering of the + dependency graph, giving more weight to packages with less + or no dependencies, while breaking any cycles in the graph at + arbitrary points. We make no guarantees about where the cycle + would be broken, other than it *would* be broken. + """ + assert self._result is not None, "must call resolve() first" + + if not req_set.requirements: + # Nothing is left to install, so we do not need an order. + return [] + + graph = self._result.graph + weights = get_topological_weights(graph, set(req_set.requirements.keys())) + + sorted_items = sorted( + req_set.requirements.items(), + key=functools.partial(_req_set_item_sorter, weights=weights), + reverse=True, + ) + return [ireq for _, ireq in sorted_items] + + +def get_topological_weights( + graph: "DirectedGraph[Optional[str]]", requirement_keys: Set[str] +) -> Dict[Optional[str], int]: + """Assign weights to each node based on how "deep" they are. + + This implementation may change at any point in the future without prior + notice. + + We first simplify the dependency graph by pruning any leaves and giving them + the highest weight: a package without any dependencies should be installed + first. This is done again and again in the same way, giving ever less weight + to the newly found leaves. The loop stops when no leaves are left: all + remaining packages have at least one dependency left in the graph. + + Then we continue with the remaining graph, by taking the length for the + longest path to any node from root, ignoring any paths that contain a single + node twice (i.e. cycles). This is done through a depth-first search through + the graph, while keeping track of the path to the node. + + Cycles in the graph result would result in node being revisited while also + being on its own path. In this case, take no action. This helps ensure we + don't get stuck in a cycle. + + When assigning weight, the longer path (i.e. larger length) is preferred. + + We are only interested in the weights of packages that are in the + requirement_keys. + """ + path: Set[Optional[str]] = set() + weights: Dict[Optional[str], int] = {} + + def visit(node: Optional[str]) -> None: + if node in path: + # We hit a cycle, so we'll break it here. + return + + # Time to visit the children! + path.add(node) + for child in graph.iter_children(node): + visit(child) + path.remove(node) + + if node not in requirement_keys: + return + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # Simplify the graph, pruning leaves that have no dependencies. + # This is needed for large graphs (say over 200 packages) because the + # `visit` function is exponentially slower then, taking minutes. + # See https://github.com/pypa/pip/issues/10557 + # We will loop until we explicitly break the loop. + while True: + leaves = set() + for key in graph: + if key is None: + continue + for _child in graph.iter_children(key): + # This means we have at least one child + break + else: + # No child. + leaves.add(key) + if not leaves: + # We are done simplifying. + break + # Calculate the weight for the leaves. + weight = len(graph) - 1 + for leaf in leaves: + if leaf not in requirement_keys: + continue + weights[leaf] = weight + # Remove the leaves from the graph, making it simpler. + for leaf in leaves: + graph.remove(leaf) + + # Visit the remaining graph. + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity check: all requirement keys should be in the weights, + # and no other keys should be in the weights. + difference = set(weights.keys()).difference(requirement_keys) + assert not difference, difference + + return weights + + +def _req_set_item_sorter( + item: Tuple[str, InstallRequirement], + weights: Dict[Optional[str], int], +) -> Tuple[int, str]: + """Key function used to sort install requirements for installation. + + Based on the "weight" mapping calculated in ``get_installation_order()``. + The canonical package name is returned as the second member as a tie- + breaker to ensure the result is predictable, which is useful in tests. + """ + name = canonicalize_name(item[0]) + return weights[name], name diff --git a/env/Lib/site-packages/pip/_internal/self_outdated_check.py b/env/Lib/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 00000000..f9a91af9 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,244 @@ +import datetime +import functools +import hashlib +import json +import logging +import optparse +import os.path +import sys +from dataclasses import dataclass +from typing import Any, Callable, Dict, Optional + +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.rich.console import Group +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.entrypoints import ( + get_best_invocation_for_this_pip, + get_best_invocation_for_this_python, +) +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +_WEEK = datetime.timedelta(days=7) + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key: str) -> str: + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +def _convert_date(isodate: str) -> datetime.datetime: + """Convert an ISO format string to a date. + + Handles the format 2020-01-22T14:24:01Z (trailing Z) + which is not supported by older versions of fromisoformat. + """ + return datetime.datetime.fromisoformat(isodate.replace("Z", "+00:00")) + + +class SelfCheckState: + def __init__(self, cache_dir: str) -> None: + self._state: Dict[str, Any] = {} + self._statefile_path = None + + # Try to load the existing state + if cache_dir: + self._statefile_path = os.path.join( + cache_dir, "selfcheck", _get_statefile_name(self.key) + ) + try: + with open(self._statefile_path, encoding="utf-8") as statefile: + self._state = json.load(statefile) + except (OSError, ValueError, KeyError): + # Explicitly suppressing exceptions, since we don't want to + # error out if the cache file is invalid. + pass + + @property + def key(self) -> str: + return sys.prefix + + def get(self, current_time: datetime.datetime) -> Optional[str]: + """Check if we have a not-outdated version loaded already.""" + if not self._state: + return None + + if "last_check" not in self._state: + return None + + if "pypi_version" not in self._state: + return None + + # Determine if we need to refresh the state + last_check = _convert_date(self._state["last_check"]) + time_since_last_check = current_time - last_check + if time_since_last_check > _WEEK: + return None + + return self._state["pypi_version"] + + def set(self, pypi_version: str, current_time: datetime.datetime) -> None: + # If we do not have a path to cache in, don't bother saving. + if not self._statefile_path: + return + + # Check to make sure that we own the directory + if not check_path_owner(os.path.dirname(self._statefile_path)): + return + + # Now that we've ensured the directory is owned by this user, we'll go + # ahead and make sure that all our directories are created. + ensure_dir(os.path.dirname(self._statefile_path)) + + state = { + # Include the key so it's easy to tell which pip wrote the + # file. + "key": self.key, + "last_check": current_time.isoformat(), + "pypi_version": pypi_version, + } + + text = json.dumps(state, sort_keys=True, separators=(",", ":")) + + with adjacent_tmp_file(self._statefile_path) as f: + f.write(text.encode()) + + try: + # Since we have a prefix-specific state file, we can just + # overwrite whatever is there, no need to check. + replace(f.name, self._statefile_path) + except OSError: + # Best effort. + pass + + +@dataclass +class UpgradePrompt: + old: str + new: str + + def __rich__(self) -> Group: + if WINDOWS: + pip_cmd = f"{get_best_invocation_for_this_python()} -m pip" + else: + pip_cmd = get_best_invocation_for_this_pip() + + notice = "[bold][[reset][blue]notice[reset][bold]][reset]" + return Group( + Text(), + Text.from_markup( + f"{notice} A new release of pip is available: " + f"[red]{self.old}[reset] -> [green]{self.new}[reset]" + ), + Text.from_markup( + f"{notice} To update, run: " + f"[green]{escape(pip_cmd)} install --upgrade pip" + ), + ) + + +def was_installed_by_pip(pkg: str) -> bool: + """Checks whether pkg was installed by pip + + This is used not to display the upgrade message when pip is in fact + installed by system package manager, such as dnf on Fedora. + """ + dist = get_default_environment().get_distribution(pkg) + return dist is not None and "pip" == dist.installer + + +def _get_current_remote_pip_version( + session: PipSession, options: optparse.Values +) -> Optional[str]: + # Lets use PackageFinder to see what the latest pip version is + link_collector = LinkCollector.create( + session, + options=options, + suppress_no_index=True, + ) + + # Pass allow_yanked=False so we don't suggest upgrading to a + # yanked version. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=False, # Explicitly set to False + ) + + finder = PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return None + + return str(best_candidate.version) + + +def _self_version_check_logic( + *, + state: SelfCheckState, + current_time: datetime.datetime, + local_version: Version, + get_remote_version: Callable[[], Optional[str]], +) -> Optional[UpgradePrompt]: + remote_version_str = state.get(current_time) + if remote_version_str is None: + remote_version_str = get_remote_version() + if remote_version_str is None: + logger.debug("No remote pip version found") + return None + state.set(remote_version_str, current_time) + + remote_version = parse_version(remote_version_str) + logger.debug("Remote version of pip: %s", remote_version) + logger.debug("Local version of pip: %s", local_version) + + pip_installed_by_pip = was_installed_by_pip("pip") + logger.debug("Was pip installed by pip? %s", pip_installed_by_pip) + if not pip_installed_by_pip: + return None # Only suggest upgrade if pip is installed by pip. + + local_version_is_older = ( + local_version < remote_version + and local_version.base_version != remote_version.base_version + ) + if local_version_is_older: + return UpgradePrompt(old=str(local_version), new=remote_version_str) + + return None + + +def pip_self_version_check(session: PipSession, options: optparse.Values) -> None: + """Check for an update for pip. + + Limit the frequency of checks to once per week. State is stored either in + the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix + of the pip script path. + """ + installed_dist = get_default_environment().get_distribution("pip") + if not installed_dist: + return + + upgrade_prompt = _self_version_check_logic( + state=SelfCheckState(cache_dir=options.cache_dir), + current_time=datetime.datetime.now(datetime.timezone.utc), + local_version=installed_dist.version, + get_remote_version=functools.partial( + _get_current_remote_pip_version, session, options + ), + ) + if upgrade_prompt is not None: + logger.warning("%s", upgrade_prompt, extra={"rich": True}) diff --git a/env/Lib/site-packages/pip/_internal/utils/__init__.py b/env/Lib/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5b66b3d69eb876ad5d04319b8c4d9b260dfc45e GIT binary patch literal 178 zcmX@j%ge<81nN_}(?RrO5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!3UsxK@kvcA%FE14 zj|nz5hzTf4bDo)ikib>5Yi}A@!iYd-4N!2Y#OwLYBPc4oq$Sly0&&(@HEy_#G y(Jw8@%qiB72MT1C#K-FuRQ}?y$<0qG%}KQ@Vg=g32*kx8#z$sGM#ds$APWGa@h&6) literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71a5aebd983d0d1131ca43bd045964b3fa607dd5 GIT binary patch literal 4513 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 WfTuUq^#0&3ZFKXQXS98a|9=3T3CfuO literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b09fdcdbb6053bf5efeb10b59d13e399785fad7f GIT binary patch literal 1849 zcmZux&ube;6rR~#Y2}q{^+#H}Zoor(s26P6G+>9)7GlSB3yxA^8j28X)|!#L&T8e( zuIxzo;DZk>h1P`@=iq}WJ+w829Q!}?5+^M#OQDDMlAD4Ig`E1{u2!~#ALzZOnYVA| zee=He+u)!b=33RZQMx>{1}T1lgXYo(Mz z770)75S|uvEte!YwTF-&rKEFRWOzpCRgDkqXr%$3pupV6>2h4Ix(=z8EhQ3g#VF7r|Mm5I~QV6i!PjSA@n@k>VQsQaoMFa2;?+x6)=N z9K0PD5+Bz7G=_!6e6QA zO(>GH>kD(AEEb}$P_6s5P_t#t57T!yV=G0_lwPr-BvpXLcEIYoS3&I&g=~>E@Sc~T z|IHSyDO<|-^p~_lw$vZ!S9F<}G{Ot68tT0Znp&v&!mUa~N)DjHp7b?PSjV#)3-6Sd zge|e$^757G^2bulH=5EHlW&)Ww^3elR?5B;h{<)ka@Vd2zr60OPg#x^2UEYsJ6+!+5ESI`-n}Ji zjt@O~0WL_&gs=bti+BuU3kk5i+Gx5sqb`_MIKN;@HCP|8adRU2$|;Bfb36uADDXvk|U|yu{L_7jqbnqyJr5SWskLyBW+}V_`v)_n~3t5O4PAMGb@pN@omyUYaKc( zCJVkoba-* rlOfr`ZT%#z)7jm{z2Y~;69R7Ml0vWU&UXly`!~91P7Iw+MtA-nQ)9jI literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..660a54fdc551ea67eab4ad03f390ec1a89776c8d GIT binary patch literal 2393 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..030b98540ea3d7ac421b89c09e5ae94bdba86872 GIT binary patch literal 5546 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0812370c68eabe9dda97ad17a03ba9f4cf7dbe11 GIT binary patch literal 667 zcmZuvF>4e-6rS0gy<6g*1Y)68RupuR+y%u()FwHrBq-^Qg=Mod-fnJh_L!Z!aI%3b zY=VV0l9VZxG?xAc8zqG>SOikpot{-H->iEG;)D0T_ukB#_r1q_YBUxQ$gQ`px<3KW zbubsZa%Q)|IYbn75XIC;aR*bA8I*uppfzSbw`u()>5#GE*)N(;GU4vUjJtzm;O>Q7 z=B~`#C}vU5l`(T^D47d)WYTBNh3~q}mLg*o3T5>(E@NfVaI9*A$)VtpS@Fu=v%^`8p1mJLPDR_^+Y zkNk~f$IlbVRt90z3%e}$VVA8S;gSg+rmdk&(!4e2&>W1_Qb{04@*o91B9L*&MFTq4 zLGx8G6ZFlw@_O@N^Q*J`#aTXeu20%k=IG|Jb)26%cP8z#ON(#rA3XX@uFjwad6udN z0nMTy5c)$X6F4ZclVxf7`gj1E)wSS&%P_ggleni%6B2F7GoLwIpo ZBly};G(`aKZj|t0t%Q&3zjU&E@i!SKp3wjR literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a6b5850e1b5b2380ea0daa1dd2b74ef6ef4afca5 GIT binary patch literal 4174 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 waM_G&)3ZlOHGqD{{DIkJe_AD1`&y8r+H literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ddc270c1d6dd970407a654ee0da2918adb9900c7 GIT binary patch literal 3189 zcmbVO&2JmW6`x%$KShaFZGG5nO;jLXh-c>MK7l9I2*PT%wWUE!G77W zlYcUbBYkajpiO}`^9}6~XpgkDZ2G^r$+@f^7_*L$LE_bhbbQZpK{G5I$;^gTTCyrk z1j(jg+(aGpP4cGaIbOwVdNycpI$Sm_mw7jXW4p5H`DVrS7cDpVF{@Ne*YTFXo~)W> z?$=Gx7OHhg?1)DpC@R53Xdev_A&I4xjMnW-bv za?>l}sJt>T=Sy~pwiqp0p65#n0YK6BoRZ}_%l$cvtYl%2BWV?kThw;SWyYB&sq0sq zQa+`Oy~(KM3LkX-5-t0j;`YF|YV-6=%aK*TDXHi4IvQ8b&*E+cc)cNg-xc)P=V_^G zc@<_44%o8VxH5V`?D0t1aiM*tDrG}lDikVUy}6h#`Sn7h-LML~HVcjrO(qJ@TzK}m zZ1331BftN{uX05zw|qYLeE!DS$69VVIdC?BPvG@M4kbUev8AieF-p2d@IOxs^7d;60hZC1f1?018)9$o zH4nKzaoRTsc1 zBaN~@LJ}6|s1M}KTaJLNGUt1&PvO@<$sk|MP*Gx@#T{Q+9IR`|pN-oslFL@|PbpFr6_ng0aE zIP4c+BLa;eeT4*uFI0{dCM|)F(G}8ticFqZxw0KU`5=C3D>1yDUQ6G(@gOn1otb`+ zdHRFwR(f=Oc5U__#~-GrzZ^O?Xg)|!?;ZZd*i(HPd~{@N)#y>+_~b_Ac4fo8?QTAE z_lf)C&#k_^mjWvfGe6y$n7T6(QsC(LE(K;sdq>aUrpKTPVzS+UEWnZFI8sG00eL$= z$lLirRCK2fx+^1$Q73w7Ua zy6hJ`3th;>q7GFzqG{SAl2pIcXXMm>$O~WV5l!!=N%YAr;}kprhV+$qH=WjE@07X( uKAZO4nfII>6uVO??a1BfE`iTSXFi_!S8fNz?ujRRYWVcjUl9=1cK#24*cYt; literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4ecc8e9afd7e590444400ef325fb6f0186bfeef GIT binary patch literal 2131 zcma)7%}*Og6rcTMu?>b8*FY1pgeJj6K!TGf327n)Og}_PS`w*p99fHJY}Q$J-Q95$ zBcsx)QcYVaMp1>O_Q0WsROund{tvy_u_B`lQV*3XakE6FN>LA;S+jOjambT*-tT?Q zd-L|q`uDCb4|bL5*aCL|1d!1{tjU=e6ZY>>(?XcF`FYjCws1R_)zGSt!>RF0t0HCRF0OVq`S=oQLE_|CBU4RP zWU6H)P(wC<6abRnhn+E|ahWbRy3Grm zn~(UOcvIgszQC`uAA+x#0-y1>cXQFx0|0qCAcvh3cDQ++F1~3e4)MdiZr03U*F$pi zJY=js2H;@J`;d#_*6qeDf^g^Rw=>Hqd0$rKr94KKY+;kklAJP3q9PL}V?$0FriqeR z%gYd90%W|5WTZF8&f}2@%_*9;q>z1xyJjR64NasG&YCENNGx=nM~R<>!m_5`N3xMc z`e;}-boo{uFB^JfVV@4EXOD~@FzK>KWk)$;3yPIg)w!_Gr1NHbEUcK=dZ6NEo70eP zix825kS$nQO~tl1x-fHd_Jf7@5}!nE(L#!uT(-ruY2>n&EjCNE`wpwo=B&JBA0Z}) zQc6z4Zt-Ek6lrR1$yl)^S8MZ{sv~;MEaGd?;%GzUS06{O#OFy~o%A!l7&#liWuh4) zXIf}{DvtEeKK{2qD|(os#%k6o{4PU_9{7SB$@{` zhe#&+U9|op%R2Z+0)s;vT}7_=>5kX`==#R>a^!{g_)Z}76IY)3Q7U^XfsuM(tQr`5 za;X+L|J--JA&`)U1bTy8o=s2rLak?b`^5ISTF=QMPxdG=rQzb`GGFr^{rTPLg#ebZl#FbM5gL+n-fK;dyzQ6S=cmh{@B-z<~-rvY0c1Dv>X zd+w6md4SGcw0$j@xDkC_nvb^JB2z6xWa@P{BF#se6DT+rhD-}KZGR%6=(>RwtQxwN zNZ1`oVIp`_y>whk1`vX%0Q&neSY2B5PKN0gc^XbZSHT%oRj?r&(P(> literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f8aa5c5327690b6b5ac8796aacd4b473985cc8b GIT binary patch literal 3976 zcmb7HU2GHC6}~eb|HS!moH$NML%AeCWHyOX~(%6VG)#UVCPG z@7Te}sZwdB1uYe%Y8B9SwLw}5Bwl#rwN<4)^u<=T4LeY+`m+!1Q`n?Z%Tv#t@x+1B z(q4J)|2_BI^YfkK-?p}f5tPB7f3)zAW`zFC2VM!(J6ksegjSJ?R3VR&ZYv}OXDlW~ zr}ZU$(29Af;7|Gsfn-47`+WIeA(RX`eJS5m2q(kP_p5&5%f-EG8f~tp(f4{Eqff;D zZ@(J&57c`-nvE8yOAEea8wt~+YETVj#biW81m$pJkJlq@B=S&nN9WKjlol7@yV8l! z5>kV?0dHTUt)Pb>IbK%8n_Uv@UP8$>wM}gz0pceedtilsYM69pB(?bie=-LBj*O_b zd>|#e>it&e$IC)m6dVeRC=vN9Cpw)FZD~qlmL0liTAHCN`GjCg1x3@L4PHJ!eeUAr z8QW)S<_kf#(KSgXSBWhtbb;9cN~|K)({%;u@Ti=DwDzf;TQ*!lZdt=__{JTeP zUlqIu3&;w3>kTo?poFM=4Ofm5-J(h!FH*%c3B?(MVkMu)Mqb5yscagWZZSC=#!x2U zjRw`yu%nFOH8`s<_*BeDiEuKzj$oB!G@Yn2K1fI93c z06Qg4R&n^#bY=mwL>YNYvTHw@SQq?E{?qS~H)dIpg2FX*y zqz-j6ucV1XAWQP*5MCr$Hx}!%bTyN4pIfA_DhY!!>Uv}j3Ah8NiCE5XI!L8KxFH#Mxj(b@`pd6(c_f`C2 zcI?F56mj)DH*@6exl5Fc8b!*;@H=xvFU?J9^K%T&4x38)ePw~LIsW35W5j?FBSlNg zvyojsBb#MAl&b5HM&Xuje%&Bc%V@g?`9mL0{&;djiq)jprs!|#-}VLlf$etG(tca| z=tNcO+Jdbp%`30);NgRB>t}!+yRn3ds-O!hK%upRDmlqJ)@XA(_|cfNLS8@Tge`C6 zwtzEric7*9Xt%z6l8<(sX#4lo9GA)~MfItYcjLo4j^-d7yjpfqj=j2uc0$CGxNG0* zX1SiSjF~%vm*Mz`|ZPK`~rs(qiAt_1XN;xJ&LnbcWLgbfI7R84LnVwhF$;ga{O1VeaqQPv52OC?;L5QPVsdm7m5VWq^A>E*bG{Bb~tW&pr z5E*PgGxM5d2l+WhOgowy``*~-cV^F=of=C`pSdtL1E`VZZVjlB)zVozK(0c}WOj%t z1t6U#_5ct{@s|M(l#H~(V_6EqZi)w%liEj|>eR~AXPx(Z@AX!PPp!vJFJIUWp^n&U z_e%Fhbbl?n|Fi!4hwmM}FW-|N#UFR9_n%ykp4y0x)}o`oKKq-=Urw$^FD_3$i}$Q9 ztSoHA57pv_)|S@e#~$}q`7doc((80rv2NUc2j#XRwp5gxc!F$2` zE%#a;TzNdPj>oDkd;ipqJ*K8trmF)-e-}GepV){UsKpLE;lG1__xrj!Hp8d~|1`4M zjrJVg?n9Ax*4vI$TaP{(uQs2oN+)Rty!It{+hkn8(v?RssYsQ07}lw>fxMM za@s7=CbW^b+%%BQ5Z$h|s@_%;F z-JaPdP}|`FONQpL~kwLSlo#0t3~#$`PL%`mM69YsOOujm6gic#CrEI z80r_n?q8h!bo}o4M&D4aZwSovG5fr4^hu=qdSo+zS|ZDnj=B@VbfVjC;yHk27Cxv<2arPIXlLa`MC#UIYILqTF`x{i7K0y$kqV}h#=_zV`io#!_{a>NMKOh;T z;}1UxG+iIq2=~^)y&GX%3*&0j{;Jgfy6Ls(+L4WcBeemjkJko{SNkDVd2cf)b%|9J zeI7FZ;gKGf8F zD|jP#+y9fcCtcIe`3ht{&s$H+kj+5A?s a5P2}OjiCAG*FO~CG~=%Lt8mY#ApHvkqr_kU literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63317d2945c9a30b201aa16f684c3bdbb90cb839 GIT binary patch literal 7312 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 BFJ1ru literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc91f3b8c17ce504d6e1d97a30676bcc3a6ec08c GIT binary patch literal 1147 zcmZ8f&rj4q6rSm?-7Rbv)<7U$%8x{ALNQ246wn}9A_+kPtCD7uQns^D?Y5g~7uW`M z4<0mLRucn9j~Xug876vQgNd7-Ow@z7jp&7wGi6m|l78>ad*AE(=FPlMCPhHjg;&ql zJ}>}$p_@O8YdJ^z#MuFNfC)5ULX)v!kEK(|D8D1jL}2DHNDqQiI}V zY=T%bt|iXI6H#15e1Xx#Gr6`X*RHjli6?0siAV^jZHq8LQEN9P(lv#W1;MC1^TVaB@>Kj;H z4Ms@BUk%hyx~YxmndNL|erfjh{F1^4v52x2P{s+`K`Tg{M3l9Iq7f#SwNsUZ9$2MN z(qruq9m`qEEnT^sTfk`AEn^Q2jpUHCk(;wta~`?6p^}k*V5}i8SF%dOy5;x? zJBB@6_AT2Rrb6g5@YGTzOj(}ZQmE4e?j*gs$>&`pPz7JbbZzvxy4zV7&wmp8>SEua zI8dE##Ke!1T#w0()VW4m#}VOzc_kIbblr6Gx*iIo1Cfd8c*7ndL;Wj5jbx}r%gdik zA$9LoCNuZ%@R+AXtmoq}rR#>{xPJ6jJzd8FN#PiUI0cC^xmDM-BjIlWPSbD)f#di@ z(KX99x{lA2Egih~l0cJ%5dL5w`F~`x(KYbesdtU;KdN_S-X-f@ XcMd?hDe$m!cc2M~c|G`(nn?3+jNvhw literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25f66e3a97a674c802b6a4813f44424699e960bc GIT binary patch literal 2402 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..01fe8fd19cf550e2639f8ed96624a4e729f8a9e4 GIT binary patch literal 13541 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 p+JUHY_Vva;&)hR- z?lp2}uUw4hN znKR3=Tuk|f8!snv35+yEW43t*N07NB_z64K@>6!4w%G}IlGKD>iYANNc9=YaH+s=n zF=nS0j9mL1&b0k00jDxr*d9<;%oqHMCnyU|?ot}SaAJbEE;;SeFn(e#pzjct!C~?k zVWfOKpoI{h2=TGds1iqnU0nDN83Q3$ zsE{fN|}0sD=;9~aV9B$&3J9I55?9$`Dadq)?)E)_S)@y?@6Q60fj;a8B(g z6PIvd(b)nGR1GRgJHm?Io7Ef&Z~mDfH1l4zoB-uey5QB4tUwd52^3eBM$XmVYvKnbUN6qe+AGk$2uU19B@g+f#P zN)~ajJ@Bkv2Xjrk4ChL;;%8bSQgfAAM0c8TkXuVyXQUiAH4xf*Jh3SVuC0r;6OD?o zI;v}Ry{Oy9Li?TO-t9}n*WYZ!A^fZnM?HO9s`F|*jjq2mu78Wi^-L^Gs>{UpT^^b;G0u`OX`MnQ zg_SWP_R=!6PNAgx6fnqMfR`}dtm}OGzw4FPJf8sbcMbiX-1^bb;?Pp>kIBJ?mP%T; zy1z`{Og9j`-rale;5P@=>v#Bx99h*-YDi6MY(rfGD~X+}0E0jPQYlfwDotH&ZIq!} zP737IDJx3QRCzH;u&jZPfPq{ZJGYnvpO(IO|JJT0@v+xH;C{93?ykFUeLZ}8@QHLA zFQWFI+7#OXUt~I1A9SIiL?stcvI}EkE&%;RDM@jK10a%Y{v7pexS^wHp3VyDak#rV zlQ)B6R}~PNMb{@nWp^8?l~mTx5{JvaU2*9++XWxUtAW1DHD!5fL??&a5( TdvA8GbY}0HqmNCPtd{==JMaes literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb8116fc21e69a7a047000aa1f9a8a24c899fe7a GIT binary patch literal 4533 zcmaJ_&2JmW72hS7 z%q}HMr2)AO3OPMgJ``4O?yZLNNAy^r7ZD9mb#thL_R<>z87Pob-G_kOeVpEH@H0@v7Ye_fpKQ0_O3}q= zNn6xPvBj9GL=>hzOg9X)o;3OjY~b~Rk%{qXSf9T{Olt7GqtfU>0v0 zXGxlXTW3-EwveP!xqlMOAJ0xRv(=})!A^bzUSe4J)rK67LqSM7$Kh<(tW zX0NwnC*8CUbi0M_v8D{_w(RS)A7pwq)$HKE(BrvmG|*-(&kyvwW#4ig(+>1`_DO{~ zd1kK06eUUEVvksUJnxpumd(b;#>T|U5wfsqc?ABhm94VjF~3swUDx)EylLBv-ynuT zOdN(ifDg%w=Rh~=!iYnD@N zDo>y_=9nusBW3PBWO>jN%TbHNzz)rWAJQr*aJNL3DY#wnE!&&SgWYAcvf=VIvSInF z#9X)}`(#<|N$iFuw`WMpHNg+59T04m1? z-yF|JglLB?z``TT-ljKc^5Xi(mmi27`Kydn9Ll)8iQ8CiAhtXqtvAtV%@EHG_ek2| zqb~EDF&~hzoHb|}@$%d%!**a}pxLxwx8 zBHk+%%chXY>lSyN5_9~?;fW3@g!VdSi04B_@YZCuDTcG`k>!uSla)~9a;TNdk?Z6F z7h-KG1}_`)QrapI*PASx{wiAWd~dulpKYOn1|74++O;J(L>5mY7?W<9IV}qW04}u5 zpo$1euDqGcyA^hb;vy}c#keIEULei4ITOM zt~52C9hP`>5MPI-36bas!vq;dvEi)THP9ouK*oQ5oYYBo)joL~|Or4GstBA^DtRT;?gW3D{D4wR9*;y$kuWYD zTAd-9CbtV@fma|w;Hbg6_ehy>4-Z*91v!zStN;G49+l-ks@8n_1o_%*8qQ6PmNDY*=H8uaGoZ!P@f!-czd zXXkVCKe~MD+$m%=XOR5+@Jz^zOiJ{Au@&cA)7y3t#k) z{I&n>TL0UBxc-;^@9(FlYuYpl4x(UpO&{9P!oj)y-t#s6Jm{r*wm&!o^Gc8rTWVHl z4}1vtmLr0hgHMnDU5D2|6Y4Om7)7ZnRh6orM_yr-!X+v$N}&#m(MAPU8+D~Y<;3O| zUPdJR0{PSme#qqDTZ7pUT>4TKFm%Le01Wd%Yc% zzY7iEI-sO49O#2DoIh!AqLFlbd!`;&VqH5A_GVs8?WeEQv@6>)i13}7b_#lk8Se+( zd^_tjx#=>@{9jBW)d&SlLVkgf#DSjx#UO^CUd~p`FyNz#<7avnI1C;VB;hfF3u!6+ zJ$=+)VL*EN76?9o+q(n}c&dMkr$5~-?x%-p+EBZ9LA=aa!Fm*Et8R$}87MHx*_i10 zM#$0art2IA&y{M7Bk@Llto%alOpR*fbG4Zo@oJm`5Fre4&`7`=Ocj|RK-^F84Ulj1 zO-#tdX`=Zi4&do?*)WH&go6ZS>&$k`TU~+}C@Xtgx?xCfkS)SbRs+&{D{ctpKv^kp zU4ouy16>fq5SZrYup!upKp<^EAn=mGID0f0;Z|fgMnHTOZtoLlww14sDSbn~zqqeu z_fy$_rbZzL4^CWwzc&d@WMLY!@cv$EKRsI0Mz?3aN@TEo0EI*Hr~8$rfiUA#Uk)h!4*XvmMLsUQ8c)5e0T$zBMFRg z3zPkEv>K(6@c4^XRftHG!ZVBr%;JGKmsJIy26|(?t)yW<-&iq$s6}3D65>%n1#~WXy?rqP!hLT;}nXPFj5xRcF(7Y8E$hW|c@c0IZH%klahRZ;uuAF0aJ z)q^wSU})s)t`lnSLI3f36rQgK&hGu}MgDgWY6F+*F?a#IHh8L@z@Dz0JX=R$SR$U> z8F_O5FomP<^o08GME&_^cj__dgDQ+}KD%B|;7C`FpQ?9ZuceNoQ9V?LXHy;epdPN0 zz|rwDp%^@IQ*ViN5;)Rvi(S}DDw)CE`KNd4DIBGhRR8YPr$#-4qi$v3WW5J_y$!>C hIJ%Y&4a4*GvD153pBeQS^h3|Fr-uq}x?m(?@*n!W&WZp4 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1146bf3191e4b552168e2617a58b059233aadca GIT binary patch literal 8622 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 Jh}5YB{|EB|6h#04 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b8773e7b138bf5ab030ba2c6627530334f756df7 GIT binary patch literal 12007 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 M=1+dXDCc|izh79$UH||9 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ae9e68fab95c59fd1a4de0974ca0107b84043d2 GIT binary patch literal 13481 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 UbMFx@UYlql5cP=-COqta0b#`2MF0Q* literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0b5c3fb83701eb15866bca31706e5c2669df1ca GIT binary patch literal 4454 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 M)Jty=6qY{!2Wd}FSO5S3 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00a055be6d12a702c2da3d92018eff0190b6b370 GIT binary patch literal 5886 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py b/env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py new file mode 100644 index 00000000..6ccf53b7 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py @@ -0,0 +1,109 @@ +"""Functions brought over from jaraco.text. + +These functions are not supposed to be used within `pip._internal`. These are +helper functions brought over from `jaraco.text` to enable vendoring newer +copies of `pkg_resources` without having to vendor `jaraco.text` and its entire +dependency cone; something that our vendoring setup is not currently capable of +handling. + +License reproduced from original source below: + +Copyright Jason R. Coombs + +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. +""" + +import functools +import itertools + + +def _nonblank(str): + return str and not str.startswith("#") + + +@functools.singledispatch +def yield_lines(iterable): + r""" + Yield valid lines of a string or iterable. + + >>> list(yield_lines('')) + [] + >>> list(yield_lines(['foo', 'bar'])) + ['foo', 'bar'] + >>> list(yield_lines('foo\nbar')) + ['foo', 'bar'] + >>> list(yield_lines('\nfoo\n#bar\nbaz #comment')) + ['foo', 'baz #comment'] + >>> list(yield_lines(['foo\nbar', 'baz', 'bing\n\n\n'])) + ['foo', 'bar', 'baz', 'bing'] + """ + return itertools.chain.from_iterable(map(yield_lines, iterable)) + + +@yield_lines.register(str) +def _(text): + return filter(_nonblank, map(str.strip, text.splitlines())) + + +def drop_comment(line): + """ + Drop comments. + + >>> drop_comment('foo # bar') + 'foo' + + A hash without a space may be in a URL. + + >>> drop_comment('http://example.com/foo#bar') + 'http://example.com/foo#bar' + """ + return line.partition(" #")[0] + + +def join_continuation(lines): + r""" + Join lines continued by a trailing backslash. + + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar \\', 'baz'])) + ['foobarbaz'] + + Not sure why, but... + The character preceding the backslash is also elided. + + >>> list(join_continuation(['goo\\', 'dly'])) + ['godly'] + + A terrible idea, but... + If no line is available to continue, suppress the lines. + + >>> list(join_continuation(['foo', 'bar\\', 'baz\\'])) + ['foo'] + """ + lines = iter(lines) + for item in lines: + while item.endswith("\\"): + try: + item = item[:-2].strip() + next(lines) + except StopIteration: + return + yield item diff --git a/env/Lib/site-packages/pip/_internal/utils/_log.py b/env/Lib/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 00000000..92c4c6a1 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/_log.py @@ -0,0 +1,38 @@ +"""Customize logging + +Defines custom logger class for the `logger.verbose(...)` method. + +init_logging() must be called before any other modules that call logging.getLogger. +""" + +import logging +from typing import Any, cast + +# custom log level for `--verbose` output +# between DEBUG and INFO +VERBOSE = 15 + + +class VerboseLogger(logging.Logger): + """Custom Logger, defining a verbose log-level + + VERBOSE is between INFO and DEBUG. + """ + + def verbose(self, msg: str, *args: Any, **kwargs: Any) -> None: + return self.log(VERBOSE, msg, *args, **kwargs) + + +def getLogger(name: str) -> VerboseLogger: + """logging.getLogger, but ensures our VerboseLogger class is returned""" + return cast(VerboseLogger, logging.getLogger(name)) + + +def init_logging() -> None: + """Register our VerboseLogger and VERBOSE log level. + + Should be called before any calls to getLogger(), + i.e. in pip._internal.__init__ + """ + logging.setLoggerClass(VerboseLogger) + logging.addLevelName(VERBOSE, "VERBOSE") diff --git a/env/Lib/site-packages/pip/_internal/utils/appdirs.py b/env/Lib/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 00000000..16933bf8 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,52 @@ +""" +This code wraps the vendored appdirs module to so the return values are +compatible for the current pip code base. + +The intention is to rewrite current usages gradually, keeping the tests pass, +and eventually drop this after all usages are changed. +""" + +import os +import sys +from typing import List + +from pip._vendor import platformdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: + # Use ~/Application Support/pip, if the directory exists. + path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) + if os.path.isdir(path): + return path + + # Use a Linux-like ~/.config/pip, by default. + linux_like_path = "~/.config/" + if appname: + linux_like_path = os.path.join(linux_like_path, appname) + + return os.path.expanduser(linux_like_path) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + if sys.platform == "darwin": + return _macos_user_config_dir(appname, roaming) + + return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + if sys.platform == "darwin": + return [_appdirs.site_data_dir(appname, appauthor=False, multipath=True)] + + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if sys.platform == "win32": + return [dirval] + + # Unix-y system. Look in /etc as well. + return dirval.split(os.pathsep) + ["/etc"] diff --git a/env/Lib/site-packages/pip/_internal/utils/compat.py b/env/Lib/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 00000000..d8b54e4e --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,79 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import importlib.resources +import logging +import os +import sys +from typing import IO + +__all__ = ["get_path_uid", "stdlib_pkgs", "WINDOWS"] + + +logger = logging.getLogger(__name__) + + +def has_tls() -> bool: + try: + import _ssl # noqa: F401 # ignore unused + + return True + except ImportError: + pass + + from pip._vendor.urllib3.util import IS_PYOPENSSL + + return IS_PYOPENSSL + + +def get_path_uid(path: str) -> int: + """ + Return path's uid. + + Does not follow symlinks: + https://github.com/pypa/pip/pull/935#discussion_r5307003 + + Placed this function in compat due to differences on AIX and + Jython, that should eventually go away. + + :raises OSError: When path is a symlink or can't be read. + """ + if hasattr(os, "O_NOFOLLOW"): + fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) + file_uid = os.fstat(fd).st_uid + os.close(fd) + else: # AIX and Jython + # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW + if not os.path.islink(path): + # older versions of Jython don't have `os.fstat` + file_uid = os.stat(path).st_uid + else: + # raise OSError for parity with os.O_NOFOLLOW above + raise OSError(f"{path} is a symlink; Will not return uid for symlinks") + return file_uid + + +# The importlib.resources.open_text function was deprecated in 3.11 with suggested +# replacement we use below. +if sys.version_info < (3, 11): + open_text_resource = importlib.resources.open_text +else: + + def open_text_resource( + package: str, resource: str, encoding: str = "utf-8", errors: str = "strict" + ) -> IO[str]: + return (importlib.resources.files(package) / resource).open( + "r", encoding=encoding, errors=errors + ) + + +# packages in the stdlib that may have installation metadata, but should not be +# considered 'installed'. this theoretically could be determined based on +# dist.location (py27:`sysconfig.get_paths()['stdlib']`, +# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may +# make this ineffective, so hard-coding +stdlib_pkgs = {"python", "wsgiref", "argparse"} + + +# windows detection, covers cpython and ironpython +WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py b/env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 00000000..b6ed9a78 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,165 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + PythonVersion, + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +_osx_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info: Tuple[int, ...]) -> str: + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch: str) -> List[str]: + match = _osx_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _custom_manylinux_platforms(arch: str) -> List[str]: + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch: str) -> List[str]: + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms: Optional[List[str]]) -> Optional[List[str]]: + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version: str) -> PythonVersion: + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter( + implementation: Optional[str] = None, version: Optional[str] = None +) -> str: + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version: Optional[str] = None, + platforms: Optional[List[str]] = None, + impl: Optional[str] = None, + abis: Optional[List[str]] = None, +) -> List[Tag]: + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported: List[Tag] = [] + + python_version: Optional[PythonVersion] = None + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/env/Lib/site-packages/pip/_internal/utils/datetime.py b/env/Lib/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 00000000..8668b3b0 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/datetime.py @@ -0,0 +1,11 @@ +"""For when pip wants to check the date or time. +""" + +import datetime + + +def today_is_later_than(year: int, month: int, day: int) -> bool: + today = datetime.date.today() + given = datetime.date(year, month, day) + + return today > given diff --git a/env/Lib/site-packages/pip/_internal/utils/deprecation.py b/env/Lib/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 00000000..0911147e --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,124 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +import logging +import warnings +from typing import Any, Optional, TextIO, Type, Union + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version # NOTE: tests patch this name. + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning: Any = None + + +# Warnings <-> Logging Integration +def _showwarning( + message: Union[Warning, str], + category: Type[Warning], + filename: str, + lineno: int, + file: Optional[TextIO] = None, + line: Optional[str] = None, +) -> None: + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger() -> None: + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated( + *, + reason: str, + replacement: Optional[str], + gone_in: Optional[str], + feature_flag: Optional[str] = None, + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. Should be a complete sentence. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises an error if pip's current version is greater than or equal to + this. + feature_flag: + Command-line flag of the form --use-feature={feature_flag} for testing + upcoming functionality. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + """ + + # Determine whether or not the feature is already gone in this version. + is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) + + message_parts = [ + (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), + ( + gone_in, + ( + "pip {} will enforce this behaviour change." + if not is_gone + else "Since pip {}, this is no longer supported." + ), + ), + ( + replacement, + "A possible replacement is {}.", + ), + ( + feature_flag, + ( + "You can use the flag --use-feature={} to test the upcoming behaviour." + if not is_gone + else None + ), + ), + ( + issue, + "Discussion can be found at https://github.com/pypa/pip/issues/{}", + ), + ] + + message = " ".join( + format_str.format(value) + for value, format_str in message_parts + if format_str is not None and value is not None + ) + + # Raise as an error if this behaviour is deprecated. + if is_gone: + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py b/env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 00000000..66020d39 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,87 @@ +from typing import Optional + +from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + + +def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += ( + f"{direct_url.info.vcs}+{direct_url.url}@{direct_url.info.commit_id}" + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_for_editable(source_dir: str) -> DirectUrl: + return DirectUrl( + url=path_to_url(source_dir), + info=DirInfo(editable=True), + ) + + +def direct_url_from_link( + link: Link, source_dir: Optional[str] = None, link_is_in_wheel_cache: bool = False +) -> DirectUrl: + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) diff --git a/env/Lib/site-packages/pip/_internal/utils/egg_link.py b/env/Lib/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 00000000..4a384a63 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,80 @@ +import os +import re +import sys +from typing import List, Optional + +from pip._internal.locations import site_packages, user_site +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "egg_link_path_from_sys_path", + "egg_link_path_from_location", +] + + +def _egg_link_names(raw_name: str) -> List[str]: + """ + Convert a Name metadata value to a .egg-link name, by applying + the same substitution as pkg_resources's safe_name function. + Note: we cannot use canonicalize_name because it has a different logic. + + We also look for the raw name (without normalization) as setuptools 69 changed + the way it names .egg-link files (https://github.com/pypa/setuptools/issues/4167). + """ + return [ + re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link", + f"{raw_name}.egg-link", + ] + + +def egg_link_path_from_sys_path(raw_name: str) -> Optional[str]: + """ + Look for a .egg-link file for project name, by walking sys.path. + """ + egg_link_names = _egg_link_names(raw_name) + for path_item in sys.path: + for egg_link_name in egg_link_names: + egg_link = os.path.join(path_item, egg_link_name) + if os.path.isfile(egg_link): + return egg_link + return None + + +def egg_link_path_from_location(raw_name: str) -> Optional[str]: + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites: List[str] = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + egg_link_names = _egg_link_names(raw_name) + for site in sites: + for egg_link_name in egg_link_names: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/env/Lib/site-packages/pip/_internal/utils/encoding.py b/env/Lib/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 00000000..008f06a7 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/encoding.py @@ -0,0 +1,36 @@ +import codecs +import locale +import re +import sys +from typing import List, Tuple + +BOMS: List[Tuple[bytes, str]] = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), +] + +ENCODING_RE = re.compile(rb"coding[:=]\s*([-\w.]+)") + + +def auto_decode(data: bytes) -> str: + """Check a bytes string for a BOM to correctly detect the encoding + + Fallback to locale.getpreferredencoding(False) like open() on Python3""" + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + # Lets check the first two lines as in PEP263 + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#" and ENCODING_RE.search(line): + result = ENCODING_RE.search(line) + assert result is not None + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + return data.decode( + locale.getpreferredencoding(False) or sys.getdefaultencoding(), + ) diff --git a/env/Lib/site-packages/pip/_internal/utils/entrypoints.py b/env/Lib/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 00000000..15013693 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,84 @@ +import itertools +import os +import shutil +import sys +from typing import List, Optional + +from pip._internal.cli.main import main +from pip._internal.utils.compat import WINDOWS + +_EXECUTABLE_NAMES = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", +] +if WINDOWS: + _allowed_extensions = {"", ".exe"} + _EXECUTABLE_NAMES = [ + "".join(parts) + for parts in itertools.product(_EXECUTABLE_NAMES, _allowed_extensions) + ] + + +def _wrapper(args: Optional[List[str]] = None) -> int: + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) + + +def get_best_invocation_for_this_pip() -> str: + """Try to figure out the best way to invoke pip in the current environment.""" + binary_directory = "Scripts" if WINDOWS else "bin" + binary_prefix = os.path.join(sys.prefix, binary_directory) + + # Try to use pip[X[.Y]] names, if those executables for this environment are + # the first on PATH with that name. + path_parts = os.path.normcase(os.environ.get("PATH", "")).split(os.pathsep) + exe_are_in_PATH = os.path.normcase(binary_prefix) in path_parts + if exe_are_in_PATH: + for exe_name in _EXECUTABLE_NAMES: + found_executable = shutil.which(exe_name) + binary_executable = os.path.join(binary_prefix, exe_name) + if ( + found_executable + and os.path.exists(binary_executable) + and os.path.samefile( + found_executable, + binary_executable, + ) + ): + return exe_name + + # Use the `-m` invocation, if there's no "nice" invocation. + return f"{get_best_invocation_for_this_python()} -m pip" + + +def get_best_invocation_for_this_python() -> str: + """Try to figure out the best way to invoke the current Python.""" + exe = sys.executable + exe_name = os.path.basename(exe) + + # Try to use the basename, if it's the first executable. + found_executable = shutil.which(exe_name) + if found_executable and os.path.samefile(found_executable, exe): + return exe_name + + # Use the full executable name, because we couldn't find something simpler. + return exe diff --git a/env/Lib/site-packages/pip/_internal/utils/filesystem.py b/env/Lib/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 00000000..22e356cd --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,149 @@ +import fnmatch +import os +import os.path +import random +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Generator, List, Union, cast + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size +from pip._internal.utils.retry import retry + + +def check_path_owner(path: str) -> bool: + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +replace = retry(stop_after_delay=1, wait=0.25)(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path: str) -> bool: + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path: str) -> bool: + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path: str, pattern: str) -> List[str]: + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result: List[str] = [] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path: str) -> Union[int, float]: + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path: str) -> str: + return format_size(file_size(path)) + + +def directory_size(path: str) -> Union[int, float]: + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path: str) -> str: + return format_size(directory_size(path)) diff --git a/env/Lib/site-packages/pip/_internal/utils/filetypes.py b/env/Lib/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 00000000..59485701 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,27 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") +XZ_EXTENSIONS: Tuple[str, ...] = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) +ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) +TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name: str) -> bool: + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/env/Lib/site-packages/pip/_internal/utils/glibc.py b/env/Lib/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 00000000..998868ff --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,101 @@ +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string() -> Optional[str]: + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr() -> Optional[str]: + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + gnu_libc_version = os.confstr("CS_GNU_LIBC_VERSION") + if gnu_libc_version is None: + return None + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = gnu_libc_version.split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes() -> Optional[str]: + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can't proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver() -> Tuple[str, str]: + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/env/Lib/site-packages/pip/_internal/utils/hashes.py b/env/Lib/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 00000000..535e94fc --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,147 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List, NoReturn, Optional + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes: Optional[Dict[str, List[str]]] = None) -> None: + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = [k.lower() for k in sorted(keys)] + self._allowed = allowed + + def __and__(self, other: "Hashes") -> "Hashes": + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self) -> int: + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks: Iterable[bytes]) -> None: + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file: BinaryIO) -> None: + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path: str) -> None: + with open(path, "rb") as file: + return self.check_against_file(file) + + def has_one_of(self, hashes: Dict[str, str]) -> bool: + """Return whether any of the given hashes are allowed.""" + for hash_name, hex_digest in hashes.items(): + if self.is_hash_allowed(hash_name, hex_digest): + return True + return False + + def __bool__(self) -> bool: + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self) -> int: + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self) -> None: + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/env/Lib/site-packages/pip/_internal/utils/logging.py b/env/Lib/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 00000000..41f6eb51 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,347 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from dataclasses import dataclass +from io import TextIOWrapper +from logging import Filter +from typing import Any, ClassVar, Generator, List, Optional, TextIO, Type + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderableType, + RenderResult, + RichCast, +) +from pip._vendor.rich.highlighter import NullHighlighter +from pip._vendor.rich.logging import RichHandler +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style + +from pip._internal.utils._log import VERBOSE, getLogger +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + +def _is_broken_pipe_error(exc_class: Type[BaseException], exc: BaseException) -> bool: + if exc_class is BrokenPipeError: + return True + + # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + if not WINDOWS: + return False + + return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + + +@contextlib.contextmanager +def indent_log(num: int = 2) -> Generator[None, None, None]: + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation() -> int: + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args: Any, + add_timestamp: bool = False, + **kwargs: Any, + ) -> None: + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted: str, levelno: int) -> str: + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record: logging.LogRecord) -> str: + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +@dataclass +class IndentedRenderable: + renderable: RenderableType + indent: int + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = console.render(self.renderable, options) + lines = Segment.split_lines(segments) + for line in lines: + yield Segment(" " * self.indent) + yield from line + yield Segment("\n") + + +class RichPipStreamHandler(RichHandler): + KEYWORDS: ClassVar[Optional[List[str]]] = [] + + def __init__(self, stream: Optional[TextIO], no_color: bool) -> None: + super().__init__( + console=Console(file=stream, no_color=no_color, soft_wrap=True), + show_time=False, + show_level=False, + show_path=False, + highlighter=NullHighlighter(), + ) + + # Our custom override on Rich's logger, to make things work as we need them to. + def emit(self, record: logging.LogRecord) -> None: + style: Optional[Style] = None + + # If we are given a diagnostic error to present, present it with indentation. + if getattr(record, "rich", False): + assert isinstance(record.args, tuple) + (rich_renderable,) = record.args + assert isinstance( + rich_renderable, (ConsoleRenderable, RichCast, str) + ), f"{rich_renderable} is not rich-console-renderable" + + renderable: RenderableType = IndentedRenderable( + rich_renderable, indent=get_indentation() + ) + else: + message = self.format(record) + renderable = self.render_message(record, message) + if record.levelno is not None: + if record.levelno >= logging.ERROR: + style = Style(color="red") + elif record.levelno >= logging.WARNING: + style = Style(color="yellow") + + try: + self.console.print(renderable, overflow="ignore", crop=False, style=style) + except Exception: + self.handleError(record) + + def handleError(self, record: logging.LogRecord) -> None: + """Called when logging is unable to log some output.""" + + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self.console.file is sys.stdout + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self) -> TextIOWrapper: + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level: int) -> None: + self.level = level + + def filter(self, record: logging.LogRecord) -> bool: + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record: logging.LogRecord) -> bool: + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity: int, no_color: bool, user_log_file: Optional[str]) -> int: + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 2: + level_number = logging.DEBUG + elif verbosity == 1: + level_number = VERBOSE + elif verbosity == -1: + level_number = logging.WARNING + elif verbosity == -2: + level_number = logging.ERROR + elif verbosity <= -3: + level_number = logging.CRITICAL + else: + level_number = logging.INFO + + level = logging.getLevelName(level_number) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + log_streams = { + "stdout": "ext://sys.stdout", + "stderr": "ext://sys.stderr", + } + handler_classes = { + "stream": "pip._internal.utils.logging.RichPipStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stdout"], + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "stream": log_streams["stderr"], + "no_color": no_color, + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "encoding": "utf-8", + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/env/Lib/site-packages/pip/_internal/utils/misc.py b/env/Lib/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 00000000..3707e872 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,777 @@ +import errno +import getpass +import hashlib +import logging +import os +import posixpath +import shutil +import stat +import sys +import sysconfig +import urllib.parse +from dataclasses import dataclass +from functools import partial +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from pathlib import Path +from types import FunctionType, TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + Dict, + Generator, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + Union, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip import __version__ +from pip._internal.exceptions import CommandError, ExternallyManagedEnvironment +from pip._internal.locations import get_major_minor_version +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.retry import retry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "ensure_dir", + "remove_auth_from_url", + "check_externally_managed", + "ConfiguredBuildBackendHookCaller", +] + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] +VersionInfo = Tuple[int, int, int] +NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] +OnExc = Callable[[FunctionType, Path, BaseException], Any] +OnErr = Callable[[FunctionType, Path, ExcInfo], Any] + +FILE_CHUNK_SIZE = 1024 * 1024 + + +def get_pip_version() -> str: + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return f"pip {__version__} from {pip_pkg_dir} (python {get_major_minor_version()})" + + +def normalize_version_info(py_version_info: Tuple[int, ...]) -> Tuple[int, int, int]: + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path: str) -> None: + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog() -> str: + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +@retry(stop_after_delay=3, wait=0.5) +def rmtree( + dir: str, ignore_errors: bool = False, onexc: Optional[OnExc] = None +) -> None: + if ignore_errors: + onexc = _onerror_ignore + if onexc is None: + onexc = _onerror_reraise + handler: OnErr = partial( + # `[func, path, Union[ExcInfo, BaseException]] -> Any` is equivalent to + # `Union[([func, path, ExcInfo] -> Any), ([func, path, BaseException] -> Any)]`. + cast(Union[OnExc, OnErr], rmtree_errorhandler), + onexc=onexc, + ) + if sys.version_info >= (3, 12): + # See https://docs.python.org/3.12/whatsnew/3.12.html#shutil. + shutil.rmtree(dir, onexc=handler) # type: ignore + else: + shutil.rmtree(dir, onerror=handler) # type: ignore + + +def _onerror_ignore(*_args: Any) -> None: + pass + + +def _onerror_reraise(*_args: Any) -> None: + raise # noqa: PLE0704 - Bare exception used to reraise existing exception + + +def rmtree_errorhandler( + func: FunctionType, + path: Path, + exc_info: Union[ExcInfo, BaseException], + *, + onexc: OnExc = _onerror_reraise, +) -> None: + """ + `rmtree` error handler to 'force' a file remove (i.e. like `rm -f`). + + * If a file is readonly then it's write flag is set and operation is + retried. + + * `onerror` is the original callback from `rmtree(... onerror=onerror)` + that is chained at the end if the "rm -f" still fails. + """ + try: + st_mode = os.stat(path).st_mode + except OSError: + # it's equivalent to os.path.exists + return + + if not st_mode & stat.S_IWRITE: + # convert to read/write + try: + os.chmod(path, st_mode | stat.S_IWRITE) + except OSError: + pass + else: + # use the original function to repeat the operation + try: + func(path) + return + except OSError: + pass + + if not isinstance(exc_info, BaseException): + _, exc_info, _ = exc_info + onexc(func, path, exc_info) + + +def display_path(path: str) -> str: + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir: str, ext: str = ".bak") -> str: + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message: str, options: Iterable[str]) -> str: + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message: str) -> None: + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message: str, options: Iterable[str]) -> str: + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message: str) -> str: + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message: str) -> str: + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val: str) -> int: + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes: float) -> str: + if bytes > 1000 * 1000: + return f"{bytes / 1000.0 / 1000:.1f} MB" + elif bytes > 10 * 1000: + return f"{int(bytes / 1000)} kB" + elif bytes > 1000: + return f"{bytes / 1000.0:.1f} kB" + else: + return f"{int(bytes)} bytes" + + +def tabulate(rows: Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]]: + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path: str) -> bool: + """Is path is a directory containing pyproject.toml or setup.py? + + If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for + a legacy setuptools layout by identifying setup.py. We don't check for the + setup.cfg because using it without setup.py is only available for PEP 517 + projects, which are already covered by the pyproject.toml check. + """ + if not os.path.isdir(path): + return False + if os.path.isfile(os.path.join(path, "pyproject.toml")): + return True + if os.path.isfile(os.path.join(path, "setup.py")): + return True + return False + + +def read_chunks( + file: BinaryIO, size: int = FILE_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path: str, resolve_symlinks: bool = True) -> str: + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path: str) -> Tuple[str, str]: + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old: str, new: str) -> None: + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path: str) -> bool: + """ + Return True if path is within sys.prefix, if we're running in a virtualenv. + + If we're not in a virtualenv, all paths are considered "local." + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + if not running_under_virtualenv(): + return True + return path.startswith(normalize_path(sys.prefix)) + + +def write_output(msg: Any, *args: Any) -> None: + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream: TextIO + + @classmethod + def from_stream(cls, orig_stream: TextIO) -> "StreamWrapper": + ret = cls() + ret.orig_stream = orig_stream + return ret + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # type ignore is because TextIOBase.encoding is writeable + @property + def encoding(self) -> str: # type: ignore + return self.orig_stream.encoding + + +# Simulates an enum +def enum(*sequential: Any, **named: Any) -> Type[Any]: + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host: str, port: Optional[int]) -> str: + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc: str, scheme: str = "https") -> str: + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc: str) -> Tuple[Optional[str], Optional[int]]: + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc: str) -> NetlocTuple: + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw: Optional[str] = None + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc: str) -> str: + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return f"{user}{password}@{netloc}" + + +def _transform_url( + url: str, transform_netloc: Callable[[str], Tuple[Any, ...]] +) -> Tuple[str, NetlocTuple]: + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc: str) -> NetlocTuple: + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc: str) -> Tuple[str]: + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url( + url: str, +) -> Tuple[str, str, Tuple[Optional[str], Optional[str]]]: + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url: str) -> str: + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url: str) -> str: + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +def redact_auth_from_requirement(req: Requirement) -> str: + """Replace the password in a given requirement url with ****.""" + if not req.url: + return str(req) + return str(req).replace(req.url, redact_auth_from_url(req.url)) + + +@dataclass(frozen=True) +class HiddenText: + secret: str + redacted: str + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self.redacted + + # This is useful for testing. + def __eq__(self, other: Any) -> bool: + if type(self) != type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value: str) -> HiddenText: + return HiddenText(value, redacted="****") + + +def hide_url(url: str) -> HiddenText: + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip: bool) -> None: + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def check_externally_managed() -> None: + """Check whether the current environment is externally managed. + + If the ``EXTERNALLY-MANAGED`` config file is found, the current environment + is considered externally managed, and an ExternallyManagedEnvironment is + raised. + """ + if running_under_virtualenv(): + return + marker = os.path.join(sysconfig.get_path("stdlib"), "EXTERNALLY-MANAGED") + if not os.path.isfile(marker): + return + raise ExternallyManagedEnvironment.from_config(marker) + + +def is_console_interactive() -> bool: + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path: str, blocksize: int = 1 << 20) -> Tuple[Any, int]: + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def pairwise(iterable: Iterable[Any]) -> Iterator[Tuple[Any, Any]]: + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred: Callable[[T], bool], iterable: Iterable[T] +) -> Tuple[Iterable[T], Iterable[T]]: + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) + + +class ConfiguredBuildBackendHookCaller(BuildBackendHookCaller): + def __init__( + self, + config_holder: Any, + source_dir: str, + build_backend: str, + backend_path: Optional[str] = None, + runner: Optional[Callable[..., None]] = None, + python_executable: Optional[str] = None, + ): + super().__init__( + source_dir, build_backend, backend_path, runner, python_executable + ) + self.config_holder = config_holder + + def build_wheel( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_wheel( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def build_sdist( + self, + sdist_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_sdist(sdist_directory, config_settings=cs) + + def build_editable( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_editable( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def get_requires_for_build_wheel( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_wheel(config_settings=cs) + + def get_requires_for_build_sdist( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_sdist(config_settings=cs) + + def get_requires_for_build_editable( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_editable(config_settings=cs) + + def prepare_metadata_for_build_wheel( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_wheel( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + def prepare_metadata_for_build_editable( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_editable( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + +def warn_if_run_as_root() -> None: + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + + if os.getuid() != 0: + return + + logger.warning( + "Running pip as the 'root' user can result in broken permissions and " + "conflicting behaviour with the system package manager, possibly " + "rendering your system unusable." + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv. " + "Use the --root-user-action option if you know what you are doing and " + "want to suppress this warning." + ) diff --git a/env/Lib/site-packages/pip/_internal/utils/packaging.py b/env/Lib/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 00000000..4b8fa0fe --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,57 @@ +import functools +import logging +import re +from typing import NewType, Optional, Tuple, cast + +from pip._vendor.packaging import specifiers, version +from pip._vendor.packaging.requirements import Requirement + +NormalizedExtra = NewType("NormalizedExtra", str) + +logger = logging.getLogger(__name__) + + +def check_requires_python( + requires_python: Optional[str], version_info: Tuple[int, ...] +) -> bool: + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +@functools.lru_cache(maxsize=2048) +def get_requirement(req_string: str) -> Requirement: + """Construct a packaging.Requirement object with caching""" + # Parsing requirement strings is expensive, and is also expected to happen + # with a low diversity of different arguments (at least relative the number + # constructed). This method adds a cache to requirement object creation to + # minimize repeated parsing of the same string to construct equivalent + # Requirement objects. + return Requirement(req_string) + + +def safe_extra(extra: str) -> NormalizedExtra: + """Convert an arbitrary string to a standard 'extra' name + + Any runs of non-alphanumeric characters are replaced with a single '_', + and the result is always lowercased. + + This function is duplicated from ``pkg_resources``. Note that this is not + the same to either ``canonicalize_name`` or ``_egg_link_name``. + """ + return cast(NormalizedExtra, re.sub("[^A-Za-z0-9.-]+", "_", extra).lower()) diff --git a/env/Lib/site-packages/pip/_internal/utils/retry.py b/env/Lib/site-packages/pip/_internal/utils/retry.py new file mode 100644 index 00000000..abfe0728 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/retry.py @@ -0,0 +1,42 @@ +import functools +from time import perf_counter, sleep +from typing import Callable, TypeVar + +from pip._vendor.typing_extensions import ParamSpec + +T = TypeVar("T") +P = ParamSpec("P") + + +def retry( + wait: float, stop_after_delay: float +) -> Callable[[Callable[P, T]], Callable[P, T]]: + """Decorator to automatically retry a function on error. + + If the function raises, the function is recalled with the same arguments + until it returns or the time limit is reached. When the time limit is + surpassed, the last exception raised is reraised. + + :param wait: The time to wait after an error before retrying, in seconds. + :param stop_after_delay: The time limit after which retries will cease, + in seconds. + """ + + def wrapper(func: Callable[P, T]) -> Callable[P, T]: + + @functools.wraps(func) + def retry_wrapped(*args: P.args, **kwargs: P.kwargs) -> T: + # The performance counter is monotonic on all platforms we care + # about and has much better resolution than time.monotonic(). + start_time = perf_counter() + while True: + try: + return func(*args, **kwargs) + except Exception: + if perf_counter() - start_time > stop_after_delay: + raise + sleep(wait) + + return retry_wrapped + + return wrapper diff --git a/env/Lib/site-packages/pip/_internal/utils/setuptools_build.py b/env/Lib/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 00000000..96d1b246 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,146 @@ +import sys +import textwrap +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# Note that __file__ is handled via two {!r} *and* %r, to ensure that paths on +# Windows are correctly handled (it should be "C:\\Users" not "C:\Users"). +_SETUPTOOLS_SHIM = textwrap.dedent( + """ + exec(compile(''' + # This is -- a caller that pip uses to run setup.py + # + # - It imports setuptools before invoking setup.py, to enable projects that directly + # import from `distutils.core` to work with newer packaging standards. + # - It provides a clear error message when setuptools is not installed. + # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so + # setuptools doesn't think the script is `-c`. This avoids the following warning: + # manifest_maker: standard file '-c' not found". + # - It generates a shim setup.py, for handling setup.cfg-only projects. + import os, sys, tokenize + + try: + import setuptools + except ImportError as error: + print( + "ERROR: Can not execute `setup.py` since setuptools is not available in " + "the build environment.", + file=sys.stderr, + ) + sys.exit(1) + + __file__ = %r + sys.argv[0] = __file__ + + if os.path.exists(__file__): + filename = __file__ + with tokenize.open(__file__) as f: + setup_py_code = f.read() + else: + filename = "" + setup_py_code = "from setuptools import setup; setup()" + + exec(compile(setup_py_code, filename, "exec")) + ''' % ({!r},), "", "exec")) + """ +).rstrip() + + +def make_setuptools_shim_args( + setup_py_path: str, + global_options: Optional[Sequence[str]] = None, + no_user_config: bool = False, + unbuffered_output: bool = False, +) -> List[str]: + """ + Get setuptools command arguments with shim wrapped setup file invocation. + + :param setup_py_path: The path to setup.py to be wrapped. + :param global_options: Additional global options. + :param no_user_config: If True, disables personal user configuration. + :param unbuffered_output: If True, adds the unbuffered switch to the + argument list. + """ + args = [sys.executable] + if unbuffered_output: + args += ["-u"] + args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] + if global_options: + args += global_options + if no_user_config: + args += ["--no-user-cfg"] + return args + + +def make_setuptools_bdist_wheel_args( + setup_py_path: str, + global_options: Sequence[str], + build_options: Sequence[str], + destination_dir: str, +) -> List[str]: + # NOTE: Eventually, we'd want to also -S to the flags here, when we're + # isolating. Currently, it breaks Python in virtualenvs, because it + # relies on site.py to find parts of the standard library outside the + # virtualenv. + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["bdist_wheel", "-d", destination_dir] + args += build_options + return args + + +def make_setuptools_clean_args( + setup_py_path: str, + global_options: Sequence[str], +) -> List[str]: + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["clean", "--all"] + return args + + +def make_setuptools_develop_args( + setup_py_path: str, + *, + global_options: Sequence[str], + no_user_config: bool, + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, +) -> List[str]: + assert not (use_user_site and prefix) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + ) + + args += ["develop", "--no-deps"] + + if prefix: + args += ["--prefix", prefix] + if home is not None: + args += ["--install-dir", home] + + if use_user_site: + args += ["--user", "--prefix="] + + return args + + +def make_setuptools_egg_info_args( + setup_py_path: str, + egg_info_dir: Optional[str], + no_user_config: bool, +) -> List[str]: + args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) + + args += ["egg_info"] + + if egg_info_dir: + args += ["--egg-base", egg_info_dir] + + return args diff --git a/env/Lib/site-packages/pip/_internal/utils/subprocess.py b/env/Lib/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 00000000..cb2e23f0 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,245 @@ +import logging +import os +import shlex +import subprocess +from typing import Any, Callable, Iterable, List, Literal, Mapping, Optional, Union + +from pip._vendor.rich.markup import escape + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +CommandArgs = List[Union[str, HiddenText]] + + +def make_command(*args: Union[str, HiddenText, CommandArgs]) -> CommandArgs: + """ + Create a CommandArgs object. + """ + command_args: CommandArgs = [] + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args: Union[List[str], CommandArgs]) -> str: + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args: Union[List[str], CommandArgs]) -> List[str]: + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def call_subprocess( + cmd: Union[List[str], CommandArgs], + show_stdout: bool = False, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + unset_environ: Optional[Iterable[str]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: Optional[bool] = True, + stdout_only: Optional[bool] = False, + *, + command_desc: str, +) -> str: + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess: Callable[..., None] = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using VERBOSE. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.verbose + used_level = VERBOSE + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line: str = proc.stdout.readline() + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + error = InstallationSubprocessError( + command_description=command_desc, + exit_code=proc.returncode, + output_lines=all_output if not showing_subprocess else None, + ) + if log_failed_cmd: + subprocess_logger.error("%s", error, extra={"rich": True}) + subprocess_logger.verbose( + "[bold magenta]full command[/]: [blue]%s[/]", + escape(format_command_args(cmd)), + extra={"markup": True}, + ) + subprocess_logger.verbose( + "[bold magenta]cwd[/]: %s", + escape(cwd or "[inherit]"), + extra={"markup": True}, + ) + + raise error + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message: str) -> Callable[..., None]: + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for BuildBackendHookCaller. Thus, the runner has + an API that matches what's expected by BuildBackendHookCaller.subprocess_runner. + """ + + def runner( + cmd: List[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + ) -> None: + with open_spinner(message) as spinner: + call_subprocess( + cmd, + command_desc=message, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/env/Lib/site-packages/pip/_internal/utils/temp_dir.py b/env/Lib/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 00000000..06668e8a --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,296 @@ +import errno +import itertools +import logging +import os.path +import tempfile +import traceback +from contextlib import ExitStack, contextmanager +from pathlib import Path +from typing import ( + Any, + Callable, + Dict, + Generator, + List, + Optional, + TypeVar, + Union, +) + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager: Optional[ExitStack] = None + + +@contextmanager +def global_tempdir_manager() -> Generator[None, None, None]: + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self) -> None: + self._should_delete: Dict[str, bool] = {} + + def set_delete(self, kind: str, value: bool) -> None: + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind: str) -> bool: + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry: Optional[TempDirectoryTypeRegistry] = None + + +@contextmanager +def tempdir_registry() -> Generator[TempDirectoryTypeRegistry, None, None]: + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path: Optional[str] = None, + delete: Union[bool, None, _Default] = _default, + kind: str = "temp", + globally_managed: bool = False, + ignore_cleanup_errors: bool = True, + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + self.ignore_cleanup_errors = ignore_cleanup_errors + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self) -> str: + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self: _T) -> _T: + return self + + def __exit__(self, exc: Any, value: Any, tb: Any) -> None: + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind: str) -> str: + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self) -> None: + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + + errors: List[BaseException] = [] + + def onerror( + func: Callable[..., Any], + path: Path, + exc_val: BaseException, + ) -> None: + """Log a warning for a `rmtree` error and continue""" + formatted_exc = "\n".join( + traceback.format_exception_only(type(exc_val), exc_val) + ) + formatted_exc = formatted_exc.rstrip() # remove trailing new line + if func in (os.unlink, os.remove, os.rmdir): + logger.debug( + "Failed to remove a temporary file '%s' due to %s.\n", + path, + formatted_exc, + ) + else: + logger.debug("%s failed with %s.", func.__qualname__, formatted_exc) + errors.append(exc_val) + + if self.ignore_cleanup_errors: + try: + # first try with @retry; retrying to handle ephemeral errors + rmtree(self._path, ignore_errors=False) + except OSError: + # last pass ignore/log all errors + rmtree(self._path, onexc=onerror) + if errors: + logger.warning( + "Failed to remove contents in a temporary directory '%s'.\n" + "You can safely remove it manually.", + self._path, + ) + else: + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original: str, delete: Optional[bool] = None) -> None: + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name: str) -> Generator[str, None, None]: + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind: str) -> str: + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/env/Lib/site-packages/pip/_internal/utils/unpacking.py b/env/Lib/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 00000000..875e30e1 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,337 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +import sys +import tarfile +import zipfile +from typing import Iterable, List, Optional +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask() -> int: + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path: str) -> List[str]: + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths: Iterable[str]) -> bool: + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory: str, target: str) -> bool: + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def _get_default_mode_plus_executable() -> int: + return 0o777 & ~current_umask() | 0o111 + + +def set_extracted_file_to_default_mode_plus_executable(path: str) -> None: + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, _get_default_mode_plus_executable()) + + +def zip_item_is_executable(info: ZipInfo) -> bool: + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename: str, location: str, flatten: bool = True) -> None: + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith("/") or fn.endswith("\\"): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename: str, location: str) -> None: + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied on top of the + default. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + + tar = tarfile.open(filename, mode, encoding="utf-8") + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + + # PEP 706 added `tarfile.data_filter`, and made some other changes to + # Python's tarfile module (see below). The features were backported to + # security releases. + try: + data_filter = tarfile.data_filter + except AttributeError: + _untar_without_filter(filename, location, tar, leading) + else: + default_mode_plus_executable = _get_default_mode_plus_executable() + + if leading: + # Strip the leading directory from all files in the archive, + # including hardlink targets (which are relative to the + # unpack location). + for member in tar.getmembers(): + name_lead, name_rest = split_leading_dir(member.name) + member.name = name_rest + if member.islnk(): + lnk_lead, lnk_rest = split_leading_dir(member.linkname) + if lnk_lead == name_lead: + member.linkname = lnk_rest + + def pip_filter(member: tarfile.TarInfo, path: str) -> tarfile.TarInfo: + orig_mode = member.mode + try: + try: + member = data_filter(member, location) + except tarfile.LinkOutsideDestinationError: + if sys.version_info[:3] in { + (3, 8, 17), + (3, 9, 17), + (3, 10, 12), + (3, 11, 4), + }: + # The tarfile filter in specific Python versions + # raises LinkOutsideDestinationError on valid input + # (https://github.com/python/cpython/issues/107845) + # Ignore the error there, but do use the + # more lax `tar_filter` + member = tarfile.tar_filter(member, location) + else: + raise + except tarfile.TarError as exc: + message = "Invalid member in the tar file {}: {}" + # Filter error messages mention the member name. + # No need to add it here. + raise InstallationError( + message.format( + filename, + exc, + ) + ) + if member.isfile() and orig_mode & 0o111: + member.mode = default_mode_plus_executable + else: + # See PEP 706 note above. + # The PEP changed this from `int` to `Optional[int]`, + # where None means "use the default". Mypy doesn't + # know this yet. + member.mode = None # type: ignore [assignment] + return member + + tar.extractall(location, filter=pip_filter) + + finally: + tar.close() + + +def _untar_without_filter( + filename: str, + location: str, + tar: tarfile.TarFile, + leading: bool, +) -> None: + """Fallback for Python without tarfile.data_filter""" + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + try: + tar._extract_member(member, path) + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + + +def unpack_file( + filename: str, + location: str, + content_type: Optional[str] = None, +) -> None: + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/env/Lib/site-packages/pip/_internal/utils/urls.py b/env/Lib/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 00000000..9f34f882 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,55 @@ +import os +import string +import urllib.parse +import urllib.request + +from .compat import WINDOWS + + +def path_to_url(path: str) -> str: + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url: str) -> str: + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif WINDOWS: + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + + # On Windows, urlsplit parses the path as something like "/C:/Users/foo". + # This creates issues for path-related functions like io.open(), so we try + # to detect and strip the leading slash. + if ( + WINDOWS + and not netloc # Not UNC. + and len(path) >= 3 + and path[0] == "/" # Leading slash to strip. + and path[1] in string.ascii_letters # Drive letter. + and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. + ): + path = path[1:] + + return path diff --git a/env/Lib/site-packages/pip/_internal/utils/virtualenv.py b/env/Lib/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 00000000..882e36f5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,104 @@ +import logging +import os +import re +import site +import sys +from typing import List, Optional + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv() -> bool: + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_legacy_virtualenv() -> bool: + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv() -> bool: + """True if we're running inside a virtual environment, False otherwise.""" + return _running_under_venv() or _running_under_legacy_virtualenv() + + +def _get_pyvenv_cfg_lines() -> Optional[List[str]]: + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv() -> bool: + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_legacy_virtualenv() -> bool: + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global() -> bool: + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_legacy_virtualenv(): + return _no_global_under_legacy_virtualenv() + + return False diff --git a/env/Lib/site-packages/pip/_internal/utils/wheel.py b/env/Lib/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 00000000..f85aee8a --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,134 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import UnsupportedWheel + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +def parse_wheel(wheel_zip: ZipFile, name: str) -> Tuple[str, Message]: + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source: ZipFile, name: str) -> str: + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + f".dist-info directory {info_dir!r} does not start with {canonical_name!r}" + ) + + return info_dir + + +def read_wheel_metadata_file(source: ZipFile, path: str) -> bytes: + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source: ZipFile, dist_info_dir: str) -> Message: + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data: Message) -> Tuple[int, ...]: + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version: Tuple[int, ...], name: str) -> None: + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/env/Lib/site-packages/pip/_internal/vcs/__init__.py b/env/Lib/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 00000000..b6beddbe --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/__init__.py @@ -0,0 +1,15 @@ +# Expose a limited set of classes and functions so callers outside of +# the vcs package don't need to import deeper than `pip._internal.vcs`. +# (The test directory may still need to import from a vcs sub-package.) +# Import all vcs modules to register each VCS in the VcsSupport object. +import pip._internal.vcs.bazaar +import pip._internal.vcs.git +import pip._internal.vcs.mercurial +import pip._internal.vcs.subversion # noqa: F401 +from pip._internal.vcs.versioncontrol import ( # noqa: F401 + RemoteNotFoundError, + RemoteNotValidError, + is_url, + make_vcs_requirement_url, + vcs, +) diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a69986b8b75515d868ec06e2462c0fe5e011228a GIT binary patch literal 517 zcmZXP!AiqG5QcY?Hf{`1rL)*$3PYkmv+ycTCDFC-uV4T(c@ zH3~HgE#+#2WobEF$cxME}GpDdt?k!6O(jn zH6DvN-CngN2R{M9!nC;>M#*T(Are}pt<|)Me63>8A((hAlroevSQ#paSF%8ozrZ0F|Ymp#T5? literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd82a4b754980532bd19b9fc3d2251474fe08fd9 GIT binary patch literal 5038 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 I1g)?B3z0*t@Bjb+ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..268513d3741f9febf396b0c2cca991ff33a57b09 GIT binary patch literal 19003 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b3f8ed5398ea129f202aa3969d9864401328d2c5 GIT binary patch literal 7591 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 SW`tkJKa*!KeMZ{Y_WuKVS@!M# literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc b/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f3958dcd57ab876cf88657d8061564871270678 GIT binary patch literal 12510 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_internal/vcs/bazaar.py b/env/Lib/site-packages/pip/_internal/vcs/bazaar.py new file mode 100644 index 00000000..c754b7cc --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/bazaar.py @@ -0,0 +1,112 @@ +import logging +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Bazaar(VersionControl): + name = "bzr" + dirname = ".bzr" + repo_name = "branch" + schemes = ( + "bzr+http", + "bzr+https", + "bzr+ssh", + "bzr+sftp", + "bzr+ftp", + "bzr+lp", + "bzr+file", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags = ["--quiet"] + elif verbosity == 1: + flags = [] + else: + flags = [f"-{'v'*verbosity}"] + cmd_args = make_command( + "checkout", "--lightweight", *flags, rev_options.to_args(), url, dest + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(make_command("switch", url), cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + output = self.run_command( + make_command("info"), show_stdout=False, stdout_only=True, cwd=dest + ) + if output.startswith("Standalone "): + # Older versions of pip used to create standalone branches. + # Convert the standalone branch to a checkout by calling "bzr bind". + cmd_args = make_command("bind", "-q", url) + self.run_command(cmd_args, cwd=dest) + + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "bzr+" + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location: str) -> str: + urls = cls.run_command( + ["info"], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ("checkout of branch: ", "parent branch: "): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location: str) -> str: + revision = cls.run_command( + ["revno"], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/env/Lib/site-packages/pip/_internal/vcs/git.py b/env/Lib/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 00000000..0425debb --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,527 @@ +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +from dataclasses import replace +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RemoteNotValidError, + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +GIT_VERSION_REGEX = re.compile( + r"^git version " # Prefix. + r"(\d+)" # Major. + r"\.(\d+)" # Dot, minor. + r"(?:\.(\d+))?" # Optional dot, patch. + r".*$" # Suffix, including any pre- and post-release segments we don't care about. +) + +HASH_REGEX = re.compile("^[a-fA-F0-9]{40}$") + +# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' +SCP_REGEX = re.compile( + r"""^ + # Optional user, e.g. 'git@' + (\w+@)? + # Server, e.g. 'github.com'. + ([^/:]+): + # The server-side path. e.g. 'user/project.git'. Must start with an + # alphanumeric character so as not to be confusable with a Windows paths + # like 'C:/foo/bar' or 'C:\foo\bar'. + (\w[^:]*) + $""", + re.VERBOSE, +) + + +def looks_like_hash(sha: str) -> bool: + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = "git" + dirname = ".git" + repo_name = "clone" + schemes = ( + "git+http", + "git+https", + "git+ssh", + "git+git", + "git+file", + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ("GIT_DIR", "GIT_WORK_TREE") + default_arg_rev = "HEAD" + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [rev] + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool(self.get_revision_sha(dest, rev_options.rev)[0]) + return not is_tag_or_branch + + def get_git_version(self) -> Tuple[int, ...]: + version = self.run_command( + ["version"], + command_desc="git version", + show_stdout=False, + stdout_only=True, + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + logger.warning("Can't parse git version: %s", version) + return () + return (int(match.group(1)), int(match.group(2))) + + @classmethod + def get_current_branch(cls, location: str) -> Optional[str]: + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ["symbolic-ref", "-q", "HEAD"] + output = cls.run_command( + args, + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith("refs/heads/"): + return ref[len("refs/heads/") :] + + return None + + @classmethod + def get_revision_sha(cls, dest: str, rev: str) -> Tuple[Optional[str], bool]: + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ["show-ref", rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode="ignore", + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f"unexpected show-ref line: {line!r}") + + refs[ref_name] = ref_sha + + branch_ref = f"refs/remotes/origin/{rev}" + tag_ref = f"refs/tags/{rev}" + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest: str, rev: str) -> bool: + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision( + cls, dest: str, url: HiddenText, rev_options: RevOptions + ) -> RevOptions: + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options = replace(rev_options, branch_name=(rev if is_branch else None)) + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.warning( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command("fetch", "-q", url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev="FETCH_HEAD") + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + else: + flags = ("--verbose", "--progress") + if self.get_git_version() >= (2, 17): + # Git added support for partial clone in 2.17 + # https://git-scm.com/docs/partial-clone + # Speeds up cloning by functioning without a complete copy of repository + self.run_command( + make_command( + "clone", + "--filter=blob:none", + *flags, + url, + dest, + ) + ) + else: + self.run_command(make_command("clone", *flags, url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, "branch_name", None) + logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + "checkout", + "-q", + rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f"origin/{branch_name}" + cmd_args = [ + "checkout", + "-b", + branch_name, + "--track", + track_branch, + ] + self.run_command(cmd_args, cwd=dest) + else: + sha = self.get_revision(dest) + rev_options = rev_options.make_new(sha) + + logger.info("Resolved %s to commit %s", url, rev_options.rev) + + #: repo may contain submodules + self.update_submodules(dest) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command( + make_command("config", "remote.origin.url", url), + cwd=dest, + ) + cmd_args = make_command("checkout", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + # First fetch changes from the default remote + if self.get_git_version() >= (1, 9): + # fetch tags in addition to everything else + self.run_command(["fetch", "-q", "--tags"], cwd=dest) + else: + self.run_command(["fetch", "-q"], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command("reset", "--hard", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ["config", "--get-regexp", r"remote\..*\.url"], + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith("remote.origin.url "): + found_remote = remote + break + url = found_remote.split(" ")[1] + return cls._git_remote_to_pip_url(url.strip()) + + @staticmethod + def _git_remote_to_pip_url(url: str) -> str: + """ + Convert a remote url from what git uses to what pip accepts. + + There are 3 legal forms **url** may take: + + 1. A fully qualified url: ssh://git@example.com/foo/bar.git + 2. A local project.git folder: /path/to/bare/repository.git + 3. SCP shorthand for form 1: git@example.com:foo/bar.git + + Form 1 is output as-is. Form 2 must be converted to URI and form 3 must + be converted to form 1. + + See the corresponding test test_git_remote_url_to_pip() for examples of + sample inputs/outputs. + """ + if re.match(r"\w+://", url): + # This is already valid. Pass it though as-is. + return url + if os.path.exists(url): + # A local bare remote (git clone --mirror). + # Needs a file:// prefix. + return pathlib.PurePath(url).as_uri() + scp_match = SCP_REGEX.match(url) + if scp_match: + # Add an ssh:// prefix and replace the ':' with a '/'. + return scp_match.expand(r"ssh://\1\2/\3") + # Otherwise, bail out. + raise RemoteNotValidError(url) + + @classmethod + def has_commit(cls, location: str, rev: str) -> bool: + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ["rev-parse", "-q", "--verify", "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location: str, rev: Optional[str] = None) -> str: + if rev is None: + rev = "HEAD" + current_rev = cls.run_command( + ["rev-parse", rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ["rev-parse", "--git-dir"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, "..")) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith("file"): + initial_slashes = path[: -len(path.lstrip("/"))] + newpath = initial_slashes + urllib.request.url2pathname(path).replace( + "\\", "/" + ).lstrip("/") + after_plus = scheme.find("+") + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if "://" not in url: + assert "file:" not in url + url = url.replace("git+", "git+ssh://") + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace("ssh://", "") + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location: str) -> None: + if not os.path.exists(os.path.join(location, ".gitmodules")): + return + cls.run_command( + ["submodule", "update", "--init", "--recursive", "-q"], + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["rev-parse", "--show-toplevel"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under git control " + "because git is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + @staticmethod + def should_add_vcs_url_prefix(repo_url: str) -> bool: + """In either https or ssh form, requirements must be prefixed with git+.""" + return True + + +vcs.register(Git) diff --git a/env/Lib/site-packages/pip/_internal/vcs/mercurial.py b/env/Lib/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 00000000..c183d41d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,163 @@ +import configparser +import logging +import os +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = "hg" + dirname = ".hg" + repo_name = "clone" + schemes = ( + "hg+file", + "hg+http", + "hg+https", + "hg+ssh", + "hg+static-http", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [f"--rev={rev}"] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Cloning hg %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + elif verbosity == 2: + flags = ("--verbose",) + else: + flags = ("--verbose", "--debug") + self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) + self.run_command( + make_command("update", *flags, rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + repo_config = os.path.join(dest, self.dirname, "hgrc") + config = configparser.RawConfigParser() + try: + config.read(repo_config) + config.set("paths", "default", url.secret) + with open(repo_config, "w") as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning("Could not switch Mercurial repository to %s: %s", url, exc) + else: + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(["pull", "-q"], cwd=dest) + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + url = cls.run_command( + ["showconfig", "paths.default"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ["parents", "--template={rev}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location: str) -> str: + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ["parents", "--template={node}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ["root"], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["root"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under hg control " + "because hg is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + +vcs.register(Mercurial) diff --git a/env/Lib/site-packages/pip/_internal/vcs/subversion.py b/env/Lib/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 00000000..f359266d --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,324 @@ +import logging +import os +import re +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + is_installable_dir, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r"(.*)") + + +class Subversion(VersionControl): + name = "svn" + dirname = ".svn" + repo_name = "checkout" + schemes = ("svn+ssh", "svn+http", "svn+https", "svn+svn", "svn+file") + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + return True + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, "entries") + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + "/" # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == "ssh": + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing svn+ from svn+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "svn+" + url + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + extra_args: CommandArgs = [] + if username: + extra_args += ["--username", username] + if password: + extra_args += ["--password", password] + + return extra_args + + @classmethod + def get_remote_url(cls, location: str) -> str: + # In cases where the source is in a subdirectory, we have to look up in + # the location until we find a valid project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location: str) -> Tuple[Optional[str], int]: + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, "entries") + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = "" + + url = None + if data.startswith("8") or data.startswith("9") or data.startswith("10"): + entries = list(map(str.splitlines, data.split("\n\x0c\n"))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith("= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ["info", "--xml", location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml)] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive: Optional[bool] = None) -> None: + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version: Optional[Tuple[int, ...]] = None + + super().__init__() + + def call_vcs_version(self) -> Tuple[int, ...]: + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = "svn, version " + version = self.run_command(["--version"], show_stdout=False, stdout_only=True) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix) :].split()[0] + version_list = version.partition("-")[0].split(".") + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self) -> Tuple[int, ...]: + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self) -> CommandArgs: + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ["--non-interactive"] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ["--force-interactive"] + + return [] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags = ["--quiet"] + else: + flags = [] + cmd_args = make_command( + "checkout", + *flags, + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "switch", + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "update", + self.get_remote_call_options(), + rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py b/env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 00000000..a4133165 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,688 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from dataclasses import dataclass, field +from typing import ( + Any, + Dict, + Iterable, + Iterator, + List, + Literal, + Mapping, + Optional, + Tuple, + Type, + Union, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + is_installable_dir, + rmtree, +) +from pip._internal.utils.subprocess import ( + CommandArgs, + call_subprocess, + format_command_args, + make_command, +) + +__all__ = ["vcs"] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name: str) -> bool: + """ + Return true if the name looks like a URL. + """ + scheme = urllib.parse.urlsplit(name).scheme + if not scheme: + return False + return scheme in ["http", "https", "file", "ftp"] + vcs.all_schemes + + +def make_vcs_requirement_url( + repo_url: str, rev: str, project_name: str, subdir: Optional[str] = None +) -> str: + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f"{repo_url}@{rev}#egg={egg_project_name}" + if subdir: + req += f"&subdirectory={subdir}" + + return req + + +def find_path_to_project_root_from_repo_root( + location: str, repo_root: str +) -> Optional[str]: + """ + Find the the Python project's root by searching up the filesystem from + `location`. Return the path to project root relative to `repo_root`. + Return None if the project root is `repo_root`, or cannot be found. + """ + # find project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find a Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RemoteNotValidError(Exception): + def __init__(self, url: str): + super().__init__(url) + self.url = url + + +@dataclass(frozen=True) +class RevOptions: + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + + vc_class: Type["VersionControl"] + rev: Optional[str] = None + extra_args: CommandArgs = field(default_factory=list) + branch_name: Optional[str] = None + + def __repr__(self) -> str: + return f"" + + @property + def arg_rev(self) -> Optional[str]: + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self) -> CommandArgs: + """ + Return the VCS-specific command arguments. + """ + args: CommandArgs = [] + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self) -> str: + if not self.rev: + return "" + + return f" (to revision {self.rev})" + + def make_new(self, rev: str) -> "RevOptions": + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry: Dict[str, "VersionControl"] = {} + schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] + + def __init__(self) -> None: + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self) -> Iterator[str]: + return self._registry.__iter__() + + @property + def backends(self) -> List["VersionControl"]: + return list(self._registry.values()) + + @property + def dirnames(self) -> List[str]: + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self) -> List[str]: + schemes: List[str] = [] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls: Type["VersionControl"]) -> None: + if not hasattr(cls, "name"): + logger.warning("Cannot register VCS %s", cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug("Registered VCS backend: %s", cls.name) + + def unregister(self, name: str) -> None: + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug("Determine that %s uses VCS: %s", location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = "" + dirname = "" + repo_name = "" + # List of supported schemes for this Version Control + schemes: Tuple[str, ...] = () + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ: Tuple[str, ...] = () + default_arg_rev: Optional[str] = None + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f"{cls.name}:") + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir: str) -> str: + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir: str, project_name: str) -> str: + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f"{cls.name}+{repo_url}" + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options( + cls, rev: Optional[str] = None, extra_args: Optional[CommandArgs] = None + ) -> RevOptions: + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args or []) + + @classmethod + def _is_local_repository(cls, repo: str) -> bool: + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if "+" not in scheme: + raise ValueError( + f"Sorry, {url!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp" + ) + # Remove the vcs prefix. + scheme = scheme.split("+", 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if "@" in path: + path, rev = path.rsplit("@", 1) + if not rev: + raise InstallationError( + f"The URL {url!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL." + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url: HiddenText) -> Tuple[HiddenText, RevOptions]: + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password: Optional[HiddenText] = None + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url: str) -> str: + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip("/") + + @classmethod + def compare_urls(cls, url1: str, url2: str) -> bool: + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return cls.normalize_url(url1) == cls.normalize_url(url2) + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + verbosity: verbosity level. + """ + raise NotImplementedError + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest: str, url: HiddenText, verbosity: int) -> None: + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + "%s in %s exists, and has correct URL (%s)", + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + "Updating %s %s%s", + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options) + else: + logger.info("Skipping because already up-to-date.") + return + + logger.warning( + "%s %s in %s exists with URL %s", + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ("(s)witch, (i)gnore, (w)ipe, (b)ackup ", ("s", "i", "w", "b")) + else: + logger.warning( + "Directory %s already exists, and is not a %s %s.", + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ("(i)gnore, (w)ipe, (b)ackup ", ("i", "w", "b")) # type: ignore + + logger.warning( + "The plan is to install the %s repository %s", + self.name, + url, + ) + response = ask_path_exists(f"What to do? {prompt[0]}", prompt[1]) + + if response == "a": + sys.exit(-1) + + if response == "w": + logger.warning("Deleting %s", display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + if response == "b": + dest_dir = backup_dir(dest) + logger.warning("Backing up %s to %s", display_path(dest), dest_dir) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + # Do nothing if the response is "i". + if response == "s": + logger.info( + "Switching %s %s to %s%s", + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options) + + def unpack(self, location: str, url: HiddenText, verbosity: int) -> None: + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd: Union[List[str], CommandArgs], + show_stdout: bool = True, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + command_desc: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: bool = True, + stdout_only: bool = False, + ) -> str: + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + if command_desc is None: + command_desc = format_command_args(cmd) + try: + return call_subprocess( + cmd, + show_stdout, + cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only, + ) + except NotADirectoryError: + raise BadCommand(f"Cannot find command {cls.name!r} - invalid PATH") + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f"Cannot find command {cls.name!r} - do you have " + f"{cls.name!r} installed and in your PATH?" + ) + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path: str) -> bool: + """ + Return whether a directory path is a repository directory. + """ + logger.debug("Checking in %s for %s (%s)...", path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/env/Lib/site-packages/pip/_internal/wheel_builder.py b/env/Lib/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 00000000..93f8e1f5 --- /dev/null +++ b/env/Lib/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,354 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import FilesystemWheel, get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_editable import build_wheel_editable +from pip._internal.operations.build.wheel_legacy import build_wheel_legacy +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file +from pip._internal.utils.setuptools_build import make_setuptools_clean_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r"([a-z0-9_.]+)-([a-z0-9_.!+-]+)", re.IGNORECASE) + +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s: str) -> bool: + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_build( + req: InstallRequirement, + need_wheel: bool, +) -> bool: + """Return whether an InstallRequirement should be built into a wheel.""" + if req.constraint: + # never build requirements that are merely constraints + return False + if req.is_wheel: + if need_wheel: + logger.info( + "Skipping %s, due to already being wheel.", + req.name, + ) + return False + + if need_wheel: + # i.e. pip wheel, not pip install + return True + + # From this point, this concerns the pip install command only + # (need_wheel=False). + + if not req.source_dir: + return False + + if req.editable: + # we only build PEP 660 editable requirements + return req.supports_pyproject_editable + + return True + + +def should_build_for_wheel_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=True) + + +def should_build_for_install_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=False) + + +def _should_cache( + req: InstallRequirement, +) -> Optional[bool]: + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available, and _should_build() + has determined a wheel needs to be built. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req: InstallRequirement, + wheel_cache: WheelCache, +) -> str: + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _verify_one(req: InstallRequirement, wheel_path: str) -> None: + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if canonicalize_name(w.name) != canonical_name: + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {canonical_name!r}, " + f"got {w.name!r}", + ) + dist = get_wheel_distribution(FilesystemWheel(wheel_path), canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {dist_verstr!r}, " + f"got {w.version!r}", + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if metadata_version >= Version("1.2") and not isinstance(dist.version, Version): + raise UnsupportedWheel( + f"Metadata 1.2 mandates PEP 440 version, but {dist_verstr!r} is not" + ) + + +def _build_one( + req: InstallRequirement, + output_dir: str, + verify: bool, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + artifact = "editable" if editable else "wheel" + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building %s for %s failed: %s", + artifact, + req.name, + e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env( + req, output_dir, build_options, global_options, editable + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req: InstallRequirement, + output_dir: str, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + with TempDirectory(kind="wheel") as temp_dir: + assert req.name + if req.use_pep517: + assert req.metadata_directory + assert req.pep517_backend + if global_options: + logger.warning( + "Ignoring --global-option when building %s using PEP 517", req.name + ) + if build_options: + logger.warning( + "Ignoring --build-option when building %s using PEP 517", req.name + ) + if editable: + wheel_path = build_wheel_editable( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_legacy( + name=req.name, + setup_py_path=req.setup_py_path, + source_dir=req.unpacked_source_directory, + global_options=global_options, + build_options=build_options, + tempd=temp_dir.path, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + shutil.move(wheel_path, dest_path) + logger.info( + "Created wheel for %s: filename=%s size=%d sha256=%s", + req.name, + wheel_name, + length, + wheel_hash.hexdigest(), + ) + logger.info("Stored in directory: %s", output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + # Ignore return, we can't do anything else useful. + if not req.use_pep517: + _clean_one_legacy(req, global_options) + return None + + +def _clean_one_legacy(req: InstallRequirement, global_options: List[str]) -> bool: + clean_args = make_setuptools_clean_args( + req.setup_py_path, + global_options=global_options, + ) + + logger.info("Running setup.py clean for %s", req.name) + try: + call_subprocess( + clean_args, command_desc="python setup.py clean", cwd=req.source_dir + ) + return True + except Exception: + logger.error("Failed cleaning build dir for %s", req.name) + return False + + +def build( + requirements: Iterable[InstallRequirement], + wheel_cache: WheelCache, + verify: bool, + build_options: List[str], + global_options: List[str], +) -> BuildResult: + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + "Building wheels for collected packages: %s", + ", ".join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + assert req.name + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, + cache_dir, + verify, + build_options, + global_options, + req.editable and req.permit_editable_wheels, + ) + if wheel_file: + # Record the download origin in the cache + if req.download_info is not None: + # download_info is guaranteed to be set because when we build an + # InstallRequirement it has been through the preparer before, but + # let's be cautious. + wheel_cache.record_download_origin(cache_dir, req.download_info) + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + "Successfully built %s", + " ".join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + "Failed to build %s", + " ".join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/env/Lib/site-packages/pip/_vendor/__init__.py b/env/Lib/site-packages/pip/_vendor/__init__.py new file mode 100644 index 00000000..561089cc --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,116 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("cachecontrol") + vendored("certifi") + vendored("distlib") + vendored("distro") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pkg_resources") + vendored("platformdirs") + vendored("progress") + vendored("pyproject_hooks") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("rich") + vendored("rich.console") + vendored("rich.highlighter") + vendored("rich.logging") + vendored("rich.markup") + vendored("rich.progress") + vendored("rich.segment") + vendored("rich.style") + vendored("rich.text") + vendored("rich.traceback") + if sys.version_info < (3, 11): + vendored("tomli") + vendored("truststore") + vendored("urllib3") diff --git a/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..303a6f46c24f1a2fd5df495e17cffc2fb9becbd1 GIT binary patch literal 4536 zcmbVOTWlN06`duAPmz+Whh}Q*we)K1**08hjPmwSG$&Uhszj|l+kTi*? zpbK#4o_o*S8Q!^b@BT9$k0N*u{{A;}k!FOx=AiNf%fict7@<2zMJc38s!x}4zLZbm zvS0V7{N9LD0dEYZf+|jhNMOFP;$~xLx|L^NF{A$OvTi|uTUyZLd!lH z^daJ(uk3l#^letyw~0~~NlXo{__nS=g5UN}Y#@ERMfI!x4g`CNtD(w1r4kMcI3nPv zfUEzvJU=Gb;{vW1aD#vw1-whZO#*HfaEpLj1-x6pZ35mS;C2D;6>x`uI|aN?z+D3F z7O*Vf9s&0XxKF_S0^Tp+0|GuM;6nmV2>7soj|lh;0Us4`QosWO9u)A9fR73IxPXTR zJR;x|0zN6=QvyD{f#EK7ee*u5qgUWI(y(`%-rQh&cuc@=ZQ!E6=ue!npGHm1Os21r zylPNcv*cMAN=VDk$tp3yLh>1nSh6uI16gK2QIb(PPN>o|P=j4u7u<^C^MF!7Z^!vIn$u*!n>JrmGt7t z>!BZhFFyb+)NpBjv(=*@#L6`fp_`~u|87YU!~$gk=vk;DuT*A5M2+fu;9r4W!5;}R zud{G@KE~f$pPQ&16gzOFG2q;k<{P%o93{a zGamLt)D1!o<`m|J)9JjDBk8moO_xs&C*XmME&lPe_L6_4&!s=_#Vn zJS6k0fQ>|I_>T?X{NCh47-Q9`R#-2Y6KWP3-$7dZ6Q>%&ZJqmySzppw_tnCGg1me$|P$a(I z4AN_hC&=CIaT$FsN5R!+!n|As1ApgQdTxP4$- zQ!|w!RCvzV`)jy?Gs`J?C?B*|CX^l23L;z)6SAJz zUE8l#V47|xYTJ{Wvbe^b;I5LDZ5`afWp!^g60Yo!(W2eAgFAjwwT|9%#k3qT3N`c2 zSKG;#uXt5%Ajd(JH4<)<4BvK_qW}urSe9w4ieO3oAH^7XXuDMZ03sCBq zL5UkG7p+928%n2DBU5UXvjtY5&^9Tb>|)+8-H>4=O@(D$pJCBB*GDEM$A5ZZVrp{2 z#hxVuUr8ka3a-~5p#jgrHye13{QTVHGlm%e%31J%=7QYkY=Yf?Gs) z!|Qc;tkh=D&{F_;U$?T*?$`a2Bt7>9CH$XyBpv)3)qREPze3UVD2g{NMAl;{-f;Wu z(%IV=moDBN|Mcv=v!7nPck%wYwa$^X*olS6i&&F1F1;8=IKCc4&7I5rcM=~Z%FL;I zQ}^2+o?Yu4TWfmjZ~lLT{~lg#I=Ar7uh0GR+|rL0e(*eq0`bKU9NhUOjxAntaNFkb zeFyL6__BlBVf-R4JGjRa`W)QPEoleu<734`%E5a)LYITPxuL4)b#R|&sroqN;Do0c zaqtOGIPTzKPdMq|Q=TyB;2}>q?ch;Q7PC5AWR$nI^eA3fYw{pzE$G39Ieio-4 zycaBsKXY&kAIkyzBHry_d6Q!C7Y^>=Sd47NLG>*5Ik@XdDEc_mwi;@?d+=YOo-f0V Z%WY1WA60d|OOJ5d`V9$^gPw$p`yWE5!0`Y8 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ea5f5ea79b3d04b8efcbe0dda44c4a8c3a44f62 GIT binary patch literal 139438 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 00000000..b34b0fcb --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,28 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.14.0" + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.controller import CacheController +from pip._vendor.cachecontrol.wrapper import CacheControl + +__all__ = [ + "__author__", + "__email__", + "__version__", + "CacheControlAdapter", + "CacheController", + "CacheControl", +] + +import logging + +logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c11d72478b7fc4d04e637a9272b3a289c119be3 GIT binary patch literal 889 zcmaJ<&1=*^6rb6zY?6MhN)d`BAavbBv-RWRQngYF3TqJrg%B8~nQ5AKk_nS+m+oor zUc87`5f4iL6fc${ErEg{9=uh1>&chxF5QdH;mz;8dGGgrZ)UzsP8tYS{q1Z2V*#Nb zxiea&AvpU4;2mPfK@2;X6`TSqIz?7uWl;*tP8lP>6;TN_M;l;GR72g-G4c_se!z|a z=ejT*vw*m{eSOs6a_5u#_`=)1aTy(`gY;;S-Bl@wMG z#!{u$(kVtWLAoV7sU>9OTM-R;5(7hG z8$EMP1)kNWDv?odhJ&*b$Vf?V$Ck?PRhI1A_w1!#xxfa_u8u2u%xDZ+AUr)D7K6~l zc&Jgy3_@rJL?}Wsoe&<d5c!$z^Rx|^ ztE@^$ezkCFP{y9nhyi_Ou6KkOI-k)Qu%PpoYc03UsfvKXeQ|fmeXih{J1XIecU&Ir zy6s@YO@fp!!ZYnqpC>L%(i{%l93QwzNDu`nA$GiXUR@3)>j?f(%|e^}BPOrFoE9<0 zzl|a;omSD*T;DjJnD6VyQ?q^ZCt5i{k5172KPAm9^tH1q2v2`UwZ3+QY6qzH=GGya eJ37fK6rSB3+Z(U#I3$5kl3;KO@d2kTs6}a;mc}6|1QQXcRLjz8>)kpw>$N+( zrm~etMxuf$hl11!4n4pLRdAq}_S#dWsu$b@Ib9`EE6Sm_NTC-_eKWfo8yY%_ciz02 zdHeSJ-cNoFhl2>l;cu4nzxWY)Oc&nZ9f8~W0fd`KMJlJG5|`mPD)Ty@;b9hZp@cJ- z>9FoA`7?ed`}9Cb%!o|(>s_T_CdlM~E|o%=5R*kcT#95O9Mb$G1h%@sR(GbG?FC^k znu&rORi!I9)1&sNA((fmyVNkuy`Yc4+^6-c-4{m@A|j8pzI(3s9IEj(KGFL(T_-qO zQVgSPDORCum}yu?PLO=Hq#4$nLQIW-CVc+mxhZ*aW@_^Ehv{ihh(!CWs+pDva_^*) zThJ!UhDFNy300|B>`qszkh9npobl`BeBM!~m6B#wl$-|Y?#`>aMslu)Y!cuJKW^(= z5N;xi^EQhv`rew(7WP&};OfP3&%Mhb%jfMCMNewa9zsiokinwmAMUD9+rK)<+PVpf@c6i<*no^ok3>7}q4l1hZ%78;)!BLyk&)Bnb zQ{&lLO(6!{&(0rxEjvd5-zt!C@av%t;nudqz_)S8-8XI9u2gPgICX9KKu3b%`-R7tm1>~k^WXB z-i*XoBCj^4VYh|*o4Ega{t+JDf*a^LrYPc!sh>gUWXhr(vf&}CauCbtK7Y^U3y^Lz zvJ-Re{UvUZD^iGG7^(nVc-e?vat1$l1{HT=l#{pLzR1m^gfD$QA=nbbQr0XbZ`wgf zhJvCO>cC&uf>tF3(<ei9mCgqpPj^O|Wwe%ZcKxoTK; z(4~ilLezOjTa)1Jfa2tljZL^{(hrQqNG~-djznv1eJj z-S=SRr;(=u-|cTqKlP(fUrXB8l=iJiLygoL7O$SVeCk^5)?r}UTh(v9wTk0^48~i7 z$>w0Pky^!j*QD;oY0?j-pQD>n$LP+2&`GyP@)9ISahrNLmp6E8^ssgQZBZq}${$+=fDl%p>psAjA7s!b6RdYc%rrH1VEWzK0_d5AmK={N9?> z(~<_8(%_0T{16ZS4?Yu+&O77t-^5@6z5^P7*XzdHWq@$0FZGdE^f=0PUh>Lmf*=zaIYTqI(E`6MeYWnk&@VL2W9!wDqPcKnb6cFG$w2jz;M!rrI+8T zRiGyk8mG1dJtyh*9H+{~Iy6a!zFX9iZaHIR(H?&3F?NTQO*{VbLr!Od(#d)*`v4+Q zmuXXD@!&)T<%a@ez<(UF{2gMM$_RWWzEdizRb87P6L5%jU2_f|n*zsi|A>f-KSq%a z6yHFxC-m?A4RmY+z4@mQ-M|N*;K?n&!0q1(b#c+H0Vefv`!|yahpyFs6ZZa&#V<|* Kv-lPE#(x2x=tTbj literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a3b4a403985f73bf01afa71d0e6e30b10fa964a GIT binary patch literal 6451 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

...' % action) + + thedir = convert_path(words[1]) + patterns = [convert_path(word) for word in words[2:]] + + elif action in ('graft', 'prune'): + if len(words) != 2: + raise DistlibException( + '%r expects a single ' % action) + + dir_pattern = convert_path(words[1]) + + else: + raise DistlibException('unknown action %r' % action) + + return action, patterns, thedir, dir_pattern + + def _include_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Select strings (presumably filenames) from 'self.files' that + match 'pattern', a Unix-style wildcard (glob) pattern. + + Patterns are not quite the same as implemented by the 'fnmatch' + module: '*' and '?' match non-special characters, where "special" + is platform-dependent: slash on Unix; colon, slash, and backslash on + DOS/Windows; and colon on Mac OS. + + If 'anchor' is true (the default), then the pattern match is more + stringent: "*.py" will match "foo.py" but not "foo/bar.py". If + 'anchor' is false, both of these will match. + + If 'prefix' is supplied, then only filenames starting with 'prefix' + (itself a pattern) and ending with 'pattern', with anything in between + them, will match. 'anchor' is ignored in this case. + + If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and + 'pattern' is assumed to be either a string containing a regex or a + regex object -- no translation is done, the regex is just compiled + and used as-is. + + Selected strings will be added to self.files. + + Return True if files are found. + """ + # XXX docstring lying about what the special chars are? + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + + # delayed loading of allfiles list + if self.allfiles is None: + self.findall() + + for name in self.allfiles: + if pattern_re.search(name): + self.files.add(name) + found = True + return found + + def _exclude_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Remove strings (presumably filenames) from 'files' that match + 'pattern'. + + Other parameters are the same as for 'include_pattern()', above. + The list 'self.files' is modified in place. Return True if files are + found. + + This API is public to allow e.g. exclusion of SCM subdirs, e.g. when + packaging source distributions + """ + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + for f in list(self.files): + if pattern_re.search(f): + self.files.remove(f) + found = True + return found + + def _translate_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Translate a shell-like wildcard pattern to a compiled regular + expression. + + Return the compiled regex. If 'is_regex' true, + then 'pattern' is directly compiled to a regex (if it's a string) + or just returned as-is (assumes it's a regex object). + """ + if is_regex: + if isinstance(pattern, str): + return re.compile(pattern) + else: + return pattern + + if _PYTHON_VERSION > (3, 2): + # ditch start and end characters + start, _, end = self._glob_to_re('_').partition('_') + + if pattern: + pattern_re = self._glob_to_re(pattern) + if _PYTHON_VERSION > (3, 2): + assert pattern_re.startswith(start) and pattern_re.endswith(end) + else: + pattern_re = '' + + base = re.escape(os.path.join(self.base, '')) + if prefix is not None: + # ditch end of pattern character + if _PYTHON_VERSION <= (3, 2): + empty_pattern = self._glob_to_re('') + prefix_re = self._glob_to_re(prefix)[:-len(empty_pattern)] + else: + prefix_re = self._glob_to_re(prefix) + assert prefix_re.startswith(start) and prefix_re.endswith(end) + prefix_re = prefix_re[len(start): len(prefix_re) - len(end)] + sep = os.sep + if os.sep == '\\': + sep = r'\\' + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + sep.join((prefix_re, + '.*' + pattern_re)) + else: + pattern_re = pattern_re[len(start): len(pattern_re) - len(end)] + pattern_re = r'%s%s%s%s.*%s%s' % (start, base, prefix_re, sep, + pattern_re, end) + else: # no prefix -- respect anchor flag + if anchor: + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + pattern_re + else: + pattern_re = r'%s%s%s' % (start, base, pattern_re[len(start):]) + + return re.compile(pattern_re) + + def _glob_to_re(self, pattern): + """Translate a shell-like glob pattern to a regular expression. + + Return a string containing the regex. Differs from + 'fnmatch.translate()' in that '*' does not match "special characters" + (which are platform-specific). + """ + pattern_re = fnmatch.translate(pattern) + + # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which + # IMHO is wrong -- '?' and '*' aren't supposed to match slash in Unix, + # and by extension they shouldn't match such "special characters" under + # any OS. So change all non-escaped dots in the RE to match any + # character except the special characters (currently: just os.sep). + sep = os.sep + if os.sep == '\\': + # we're using a regex to manipulate a regex, so we need + # to escape the backslash twice + sep = r'\\\\' + escaped = r'\1[^%s]' % sep + pattern_re = re.sub(r'((? y, + '!=': lambda x, y: x != y, + '<': lambda x, y: x < y, + '<=': lambda x, y: x == y or x < y, + '>': lambda x, y: x > y, + '>=': lambda x, y: x == y or x > y, + 'and': lambda x, y: x and y, + 'or': lambda x, y: x or y, + 'in': lambda x, y: x in y, + 'not in': lambda x, y: x not in y, + } + + def evaluate(self, expr, context): + """ + Evaluate a marker expression returned by the :func:`parse_requirement` + function in the specified context. + """ + if isinstance(expr, string_types): + if expr[0] in '\'"': + result = expr[1:-1] + else: + if expr not in context: + raise SyntaxError('unknown variable: %s' % expr) + result = context[expr] + else: + assert isinstance(expr, dict) + op = expr['op'] + if op not in self.operations: + raise NotImplementedError('op not implemented: %s' % op) + elhs = expr['lhs'] + erhs = expr['rhs'] + if _is_literal(expr['lhs']) and _is_literal(expr['rhs']): + raise SyntaxError('invalid comparison: %s %s %s' % + (elhs, op, erhs)) + + lhs = self.evaluate(elhs, context) + rhs = self.evaluate(erhs, context) + if ((_is_version_marker(elhs) or _is_version_marker(erhs)) + and op in ('<', '<=', '>', '>=', '===', '==', '!=', '~=')): + lhs = LV(lhs) + rhs = LV(rhs) + elif _is_version_marker(elhs) and op in ('in', 'not in'): + lhs = LV(lhs) + rhs = _get_versions(rhs) + result = self.operations[op](lhs, rhs) + return result + + +_DIGITS = re.compile(r'\d+\.\d+') + + +def default_context(): + + def format_full_version(info): + version = '%s.%s.%s' % (info.major, info.minor, info.micro) + kind = info.releaselevel + if kind != 'final': + version += kind[0] + str(info.serial) + return version + + if hasattr(sys, 'implementation'): + implementation_version = format_full_version( + sys.implementation.version) + implementation_name = sys.implementation.name + else: + implementation_version = '0' + implementation_name = '' + + ppv = platform.python_version() + m = _DIGITS.match(ppv) + pv = m.group(0) + result = { + 'implementation_name': implementation_name, + 'implementation_version': implementation_version, + 'os_name': os.name, + 'platform_machine': platform.machine(), + 'platform_python_implementation': platform.python_implementation(), + 'platform_release': platform.release(), + 'platform_system': platform.system(), + 'platform_version': platform.version(), + 'platform_in_venv': str(in_venv()), + 'python_full_version': ppv, + 'python_version': pv, + 'sys_platform': sys.platform, + } + return result + + +DEFAULT_CONTEXT = default_context() +del default_context + +evaluator = Evaluator() + + +def interpret(marker, execution_context=None): + """ + Interpret a marker and return a result depending on environment. + + :param marker: The marker to interpret. + :type marker: str + :param execution_context: The context used for name lookup. + :type execution_context: mapping + """ + try: + expr, rest = parse_marker(marker) + except Exception as e: + raise SyntaxError('Unable to interpret marker syntax: %s: %s' % + (marker, e)) + if rest and rest[0] != '#': + raise SyntaxError('unexpected trailing data in marker: %s: %s' % + (marker, rest)) + context = dict(DEFAULT_CONTEXT) + if execution_context: + context.update(execution_context) + return evaluator.evaluate(expr, context) diff --git a/env/Lib/site-packages/pip/_vendor/distlib/metadata.py b/env/Lib/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 00000000..7189aeef --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1068 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Implementation of the Metadata for Python packages PEPs. + +Supports all metadata formats (1.0, 1.1, 1.2, 1.3/2.1 and 2.2). +""" +from __future__ import unicode_literals + +import codecs +from email import message_from_file +import json +import logging +import re + + +from . import DistlibException, __version__ +from .compat import StringIO, string_types, text_type +from .markers import interpret +from .util import extract_by_key, get_extras +from .version import get_scheme, PEP440_VERSION_RE + +logger = logging.getLogger(__name__) + + +class MetadataMissingError(DistlibException): + """A required metadata is missing""" + + +class MetadataConflictError(DistlibException): + """Attempt to read or write metadata fields that are conflictual.""" + + +class MetadataUnrecognizedVersionError(DistlibException): + """Unknown metadata version number.""" + + +class MetadataInvalidError(DistlibException): + """A metadata value is invalid""" + +# public API of this module +__all__ = ['Metadata', 'PKG_INFO_ENCODING', 'PKG_INFO_PREFERRED_VERSION'] + +# Encoding used for the PKG-INFO files +PKG_INFO_ENCODING = 'utf-8' + +# preferred version. Hopefully will be changed +# to 1.2 once PEP 345 is supported everywhere +PKG_INFO_PREFERRED_VERSION = '1.1' + +_LINE_PREFIX_1_2 = re.compile('\n \\|') +_LINE_PREFIX_PRE_1_2 = re.compile('\n ') +_241_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License') + +_314_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License', 'Classifier', 'Download-URL', 'Obsoletes', + 'Provides', 'Requires') + +_314_MARKERS = ('Obsoletes', 'Provides', 'Requires', 'Classifier', + 'Download-URL') + +_345_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External') + +_345_MARKERS = ('Provides-Dist', 'Requires-Dist', 'Requires-Python', + 'Obsoletes-Dist', 'Requires-External', 'Maintainer', + 'Maintainer-email', 'Project-URL') + +_426_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External', 'Private-Version', + 'Obsoleted-By', 'Setup-Requires-Dist', 'Extension', + 'Provides-Extra') + +_426_MARKERS = ('Private-Version', 'Provides-Extra', 'Obsoleted-By', + 'Setup-Requires-Dist', 'Extension') + +# See issue #106: Sometimes 'Requires' and 'Provides' occur wrongly in +# the metadata. Include them in the tuple literal below to allow them +# (for now). +# Ditto for Obsoletes - see issue #140. +_566_FIELDS = _426_FIELDS + ('Description-Content-Type', + 'Requires', 'Provides', 'Obsoletes') + +_566_MARKERS = ('Description-Content-Type',) + +_643_MARKERS = ('Dynamic', 'License-File') + +_643_FIELDS = _566_FIELDS + _643_MARKERS + +_ALL_FIELDS = set() +_ALL_FIELDS.update(_241_FIELDS) +_ALL_FIELDS.update(_314_FIELDS) +_ALL_FIELDS.update(_345_FIELDS) +_ALL_FIELDS.update(_426_FIELDS) +_ALL_FIELDS.update(_566_FIELDS) +_ALL_FIELDS.update(_643_FIELDS) + +EXTRA_RE = re.compile(r'''extra\s*==\s*("([^"]+)"|'([^']+)')''') + + +def _version2fieldlist(version): + if version == '1.0': + return _241_FIELDS + elif version == '1.1': + return _314_FIELDS + elif version == '1.2': + return _345_FIELDS + elif version in ('1.3', '2.1'): + # avoid adding field names if already there + return _345_FIELDS + tuple(f for f in _566_FIELDS if f not in _345_FIELDS) + elif version == '2.0': + raise ValueError('Metadata 2.0 is withdrawn and not supported') + # return _426_FIELDS + elif version == '2.2': + return _643_FIELDS + raise MetadataUnrecognizedVersionError(version) + + +def _best_version(fields): + """Detect the best version depending on the fields used.""" + def _has_marker(keys, markers): + return any(marker in keys for marker in markers) + + keys = [key for key, value in fields.items() if value not in ([], 'UNKNOWN', None)] + possible_versions = ['1.0', '1.1', '1.2', '1.3', '2.1', '2.2'] # 2.0 removed + + # first let's try to see if a field is not part of one of the version + for key in keys: + if key not in _241_FIELDS and '1.0' in possible_versions: + possible_versions.remove('1.0') + logger.debug('Removed 1.0 due to %s', key) + if key not in _314_FIELDS and '1.1' in possible_versions: + possible_versions.remove('1.1') + logger.debug('Removed 1.1 due to %s', key) + if key not in _345_FIELDS and '1.2' in possible_versions: + possible_versions.remove('1.2') + logger.debug('Removed 1.2 due to %s', key) + if key not in _566_FIELDS and '1.3' in possible_versions: + possible_versions.remove('1.3') + logger.debug('Removed 1.3 due to %s', key) + if key not in _566_FIELDS and '2.1' in possible_versions: + if key != 'Description': # In 2.1, description allowed after headers + possible_versions.remove('2.1') + logger.debug('Removed 2.1 due to %s', key) + if key not in _643_FIELDS and '2.2' in possible_versions: + possible_versions.remove('2.2') + logger.debug('Removed 2.2 due to %s', key) + # if key not in _426_FIELDS and '2.0' in possible_versions: + # possible_versions.remove('2.0') + # logger.debug('Removed 2.0 due to %s', key) + + # possible_version contains qualified versions + if len(possible_versions) == 1: + return possible_versions[0] # found ! + elif len(possible_versions) == 0: + logger.debug('Out of options - unknown metadata set: %s', fields) + raise MetadataConflictError('Unknown metadata set') + + # let's see if one unique marker is found + is_1_1 = '1.1' in possible_versions and _has_marker(keys, _314_MARKERS) + is_1_2 = '1.2' in possible_versions and _has_marker(keys, _345_MARKERS) + is_2_1 = '2.1' in possible_versions and _has_marker(keys, _566_MARKERS) + # is_2_0 = '2.0' in possible_versions and _has_marker(keys, _426_MARKERS) + is_2_2 = '2.2' in possible_versions and _has_marker(keys, _643_MARKERS) + if int(is_1_1) + int(is_1_2) + int(is_2_1) + int(is_2_2) > 1: + raise MetadataConflictError('You used incompatible 1.1/1.2/2.1/2.2 fields') + + # we have the choice, 1.0, or 1.2, 2.1 or 2.2 + # - 1.0 has a broken Summary field but works with all tools + # - 1.1 is to avoid + # - 1.2 fixes Summary but has little adoption + # - 2.1 adds more features + # - 2.2 is the latest + if not is_1_1 and not is_1_2 and not is_2_1 and not is_2_2: + # we couldn't find any specific marker + if PKG_INFO_PREFERRED_VERSION in possible_versions: + return PKG_INFO_PREFERRED_VERSION + if is_1_1: + return '1.1' + if is_1_2: + return '1.2' + if is_2_1: + return '2.1' + # if is_2_2: + # return '2.2' + + return '2.2' + +# This follows the rules about transforming keys as described in +# https://www.python.org/dev/peps/pep-0566/#id17 +_ATTR2FIELD = { + name.lower().replace("-", "_"): name for name in _ALL_FIELDS +} +_FIELD2ATTR = {field: attr for attr, field in _ATTR2FIELD.items()} + +_PREDICATE_FIELDS = ('Requires-Dist', 'Obsoletes-Dist', 'Provides-Dist') +_VERSIONS_FIELDS = ('Requires-Python',) +_VERSION_FIELDS = ('Version',) +_LISTFIELDS = ('Platform', 'Classifier', 'Obsoletes', + 'Requires', 'Provides', 'Obsoletes-Dist', + 'Provides-Dist', 'Requires-Dist', 'Requires-External', + 'Project-URL', 'Supported-Platform', 'Setup-Requires-Dist', + 'Provides-Extra', 'Extension', 'License-File') +_LISTTUPLEFIELDS = ('Project-URL',) + +_ELEMENTSFIELD = ('Keywords',) + +_UNICODEFIELDS = ('Author', 'Maintainer', 'Summary', 'Description') + +_MISSING = object() + +_FILESAFE = re.compile('[^A-Za-z0-9.]+') + + +def _get_name_and_version(name, version, for_filename=False): + """Return the distribution name with version. + + If for_filename is true, return a filename-escaped form.""" + if for_filename: + # For both name and version any runs of non-alphanumeric or '.' + # characters are replaced with a single '-'. Additionally any + # spaces in the version string become '.' + name = _FILESAFE.sub('-', name) + version = _FILESAFE.sub('-', version.replace(' ', '.')) + return '%s-%s' % (name, version) + + +class LegacyMetadata(object): + """The legacy metadata of a release. + + Supports versions 1.0, 1.1, 1.2, 2.0 and 1.3/2.1 (auto-detected). You can + instantiate the class with one of these arguments (or none): + - *path*, the path to a metadata file + - *fileobj* give a file-like object with metadata as content + - *mapping* is a dict-like object + - *scheme* is a version scheme name + """ + # TODO document the mapping API and UNKNOWN default key + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._fields = {} + self.requires_files = [] + self._dependencies = None + self.scheme = scheme + if path is not None: + self.read(path) + elif fileobj is not None: + self.read_file(fileobj) + elif mapping is not None: + self.update(mapping) + self.set_metadata_version() + + def set_metadata_version(self): + self._fields['Metadata-Version'] = _best_version(self._fields) + + def _write_field(self, fileobj, name, value): + fileobj.write('%s: %s\n' % (name, value)) + + def __getitem__(self, name): + return self.get(name) + + def __setitem__(self, name, value): + return self.set(name, value) + + def __delitem__(self, name): + field_name = self._convert_name(name) + try: + del self._fields[field_name] + except KeyError: + raise KeyError(name) + + def __contains__(self, name): + return (name in self._fields or + self._convert_name(name) in self._fields) + + def _convert_name(self, name): + if name in _ALL_FIELDS: + return name + name = name.replace('-', '_').lower() + return _ATTR2FIELD.get(name, name) + + def _default_value(self, name): + if name in _LISTFIELDS or name in _ELEMENTSFIELD: + return [] + return 'UNKNOWN' + + def _remove_line_prefix(self, value): + if self.metadata_version in ('1.0', '1.1'): + return _LINE_PREFIX_PRE_1_2.sub('\n', value) + else: + return _LINE_PREFIX_1_2.sub('\n', value) + + def __getattr__(self, name): + if name in _ATTR2FIELD: + return self[name] + raise AttributeError(name) + + # + # Public API + # + +# dependencies = property(_get_dependencies, _set_dependencies) + + def get_fullname(self, filesafe=False): + """Return the distribution name with version. + + If filesafe is true, return a filename-escaped form.""" + return _get_name_and_version(self['Name'], self['Version'], filesafe) + + def is_field(self, name): + """return True if name is a valid metadata key""" + name = self._convert_name(name) + return name in _ALL_FIELDS + + def is_multi_field(self, name): + name = self._convert_name(name) + return name in _LISTFIELDS + + def read(self, filepath): + """Read the metadata values from a file path.""" + fp = codecs.open(filepath, 'r', encoding='utf-8') + try: + self.read_file(fp) + finally: + fp.close() + + def read_file(self, fileob): + """Read the metadata values from a file object.""" + msg = message_from_file(fileob) + self._fields['Metadata-Version'] = msg['metadata-version'] + + # When reading, get all the fields we can + for field in _ALL_FIELDS: + if field not in msg: + continue + if field in _LISTFIELDS: + # we can have multiple lines + values = msg.get_all(field) + if field in _LISTTUPLEFIELDS and values is not None: + values = [tuple(value.split(',')) for value in values] + self.set(field, values) + else: + # single line + value = msg[field] + if value is not None and value != 'UNKNOWN': + self.set(field, value) + + # PEP 566 specifies that the body be used for the description, if + # available + body = msg.get_payload() + self["Description"] = body if body else self["Description"] + # logger.debug('Attempting to set metadata for %s', self) + # self.set_metadata_version() + + def write(self, filepath, skip_unknown=False): + """Write the metadata fields to filepath.""" + fp = codecs.open(filepath, 'w', encoding='utf-8') + try: + self.write_file(fp, skip_unknown) + finally: + fp.close() + + def write_file(self, fileobject, skip_unknown=False): + """Write the PKG-INFO format data to a file object.""" + self.set_metadata_version() + + for field in _version2fieldlist(self['Metadata-Version']): + values = self.get(field) + if skip_unknown and values in ('UNKNOWN', [], ['UNKNOWN']): + continue + if field in _ELEMENTSFIELD: + self._write_field(fileobject, field, ','.join(values)) + continue + if field not in _LISTFIELDS: + if field == 'Description': + if self.metadata_version in ('1.0', '1.1'): + values = values.replace('\n', '\n ') + else: + values = values.replace('\n', '\n |') + values = [values] + + if field in _LISTTUPLEFIELDS: + values = [','.join(value) for value in values] + + for value in values: + self._write_field(fileobject, field, value) + + def update(self, other=None, **kwargs): + """Set metadata values from the given iterable `other` and kwargs. + + Behavior is like `dict.update`: If `other` has a ``keys`` method, + they are looped over and ``self[key]`` is assigned ``other[key]``. + Else, ``other`` is an iterable of ``(key, value)`` iterables. + + Keys that don't match a metadata field or that have an empty value are + dropped. + """ + def _set(key, value): + if key in _ATTR2FIELD and value: + self.set(self._convert_name(key), value) + + if not other: + # other is None or empty container + pass + elif hasattr(other, 'keys'): + for k in other.keys(): + _set(k, other[k]) + else: + for k, v in other: + _set(k, v) + + if kwargs: + for k, v in kwargs.items(): + _set(k, v) + + def set(self, name, value): + """Control then set a metadata field.""" + name = self._convert_name(name) + + if ((name in _ELEMENTSFIELD or name == 'Platform') and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [v.strip() for v in value.split(',')] + else: + value = [] + elif (name in _LISTFIELDS and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [value] + else: + value = [] + + if logger.isEnabledFor(logging.WARNING): + project_name = self['Name'] + + scheme = get_scheme(self.scheme) + if name in _PREDICATE_FIELDS and value is not None: + for v in value: + # check that the values are valid + if not scheme.is_valid_matcher(v.split(';')[0]): + logger.warning( + "'%s': '%s' is not valid (field '%s')", + project_name, v, name) + # FIXME this rejects UNKNOWN, is that right? + elif name in _VERSIONS_FIELDS and value is not None: + if not scheme.is_valid_constraint_list(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + elif name in _VERSION_FIELDS and value is not None: + if not scheme.is_valid_version(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + + if name in _UNICODEFIELDS: + if name == 'Description': + value = self._remove_line_prefix(value) + + self._fields[name] = value + + def get(self, name, default=_MISSING): + """Get a metadata field.""" + name = self._convert_name(name) + if name not in self._fields: + if default is _MISSING: + default = self._default_value(name) + return default + if name in _UNICODEFIELDS: + value = self._fields[name] + return value + elif name in _LISTFIELDS: + value = self._fields[name] + if value is None: + return [] + res = [] + for val in value: + if name not in _LISTTUPLEFIELDS: + res.append(val) + else: + # That's for Project-URL + res.append((val[0], val[1])) + return res + + elif name in _ELEMENTSFIELD: + value = self._fields[name] + if isinstance(value, string_types): + return value.split(',') + return self._fields[name] + + def check(self, strict=False): + """Check if the metadata is compliant. If strict is True then raise if + no Name or Version are provided""" + self.set_metadata_version() + + # XXX should check the versions (if the file was loaded) + missing, warnings = [], [] + + for attr in ('Name', 'Version'): # required by PEP 345 + if attr not in self: + missing.append(attr) + + if strict and missing != []: + msg = 'missing required metadata: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + + for attr in ('Home-page', 'Author'): + if attr not in self: + missing.append(attr) + + # checking metadata 1.2 (XXX needs to check 1.1, 1.0) + if self['Metadata-Version'] != '1.2': + return missing, warnings + + scheme = get_scheme(self.scheme) + + def are_valid_constraints(value): + for v in value: + if not scheme.is_valid_matcher(v.split(';')[0]): + return False + return True + + for fields, controller in ((_PREDICATE_FIELDS, are_valid_constraints), + (_VERSIONS_FIELDS, + scheme.is_valid_constraint_list), + (_VERSION_FIELDS, + scheme.is_valid_version)): + for field in fields: + value = self.get(field, None) + if value is not None and not controller(value): + warnings.append("Wrong value for '%s': %s" % (field, value)) + + return missing, warnings + + def todict(self, skip_missing=False): + """Return fields as a dict. + + Field names will be converted to use the underscore-lowercase style + instead of hyphen-mixed case (i.e. home_page instead of Home-page). + This is as per https://www.python.org/dev/peps/pep-0566/#id17. + """ + self.set_metadata_version() + + fields = _version2fieldlist(self['Metadata-Version']) + + data = {} + + for field_name in fields: + if not skip_missing or field_name in self._fields: + key = _FIELD2ATTR[field_name] + if key != 'project_url': + data[key] = self[field_name] + else: + data[key] = [','.join(u) for u in self[field_name]] + + return data + + def add_requirements(self, requirements): + if self['Metadata-Version'] == '1.1': + # we can't have 1.1 metadata *and* Setuptools requires + for field in ('Obsoletes', 'Requires', 'Provides'): + if field in self: + del self[field] + self['Requires-Dist'] += requirements + + # Mapping API + # TODO could add iter* variants + + def keys(self): + return list(_version2fieldlist(self['Metadata-Version'])) + + def __iter__(self): + for key in self.keys(): + yield key + + def values(self): + return [self[key] for key in self.keys()] + + def items(self): + return [(key, self[key]) for key in self.keys()] + + def __repr__(self): + return '<%s %s %s>' % (self.__class__.__name__, self.name, + self.version) + + +METADATA_FILENAME = 'pydist.json' +WHEEL_METADATA_FILENAME = 'metadata.json' +LEGACY_METADATA_FILENAME = 'METADATA' + + +class Metadata(object): + """ + The metadata of a release. This implementation uses 2.1 + metadata where possible. If not possible, it wraps a LegacyMetadata + instance which handles the key-value metadata format. + """ + + METADATA_VERSION_MATCHER = re.compile(r'^\d+(\.\d+)*$') + + NAME_MATCHER = re.compile('^[0-9A-Z]([0-9A-Z_.-]*[0-9A-Z])?$', re.I) + + FIELDNAME_MATCHER = re.compile('^[A-Z]([0-9A-Z-]*[0-9A-Z])?$', re.I) + + VERSION_MATCHER = PEP440_VERSION_RE + + SUMMARY_MATCHER = re.compile('.{1,2047}') + + METADATA_VERSION = '2.0' + + GENERATOR = 'distlib (%s)' % __version__ + + MANDATORY_KEYS = { + 'name': (), + 'version': (), + 'summary': ('legacy',), + } + + INDEX_KEYS = ('name version license summary description author ' + 'author_email keywords platform home_page classifiers ' + 'download_url') + + DEPENDENCY_KEYS = ('extras run_requires test_requires build_requires ' + 'dev_requires provides meta_requires obsoleted_by ' + 'supports_environments') + + SYNTAX_VALIDATORS = { + 'metadata_version': (METADATA_VERSION_MATCHER, ()), + 'name': (NAME_MATCHER, ('legacy',)), + 'version': (VERSION_MATCHER, ('legacy',)), + 'summary': (SUMMARY_MATCHER, ('legacy',)), + 'dynamic': (FIELDNAME_MATCHER, ('legacy',)), + } + + __slots__ = ('_legacy', '_data', 'scheme') + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._legacy = None + self._data = None + self.scheme = scheme + #import pdb; pdb.set_trace() + if mapping is not None: + try: + self._validate_mapping(mapping, scheme) + self._data = mapping + except MetadataUnrecognizedVersionError: + self._legacy = LegacyMetadata(mapping=mapping, scheme=scheme) + self.validate() + else: + data = None + if path: + with open(path, 'rb') as f: + data = f.read() + elif fileobj: + data = fileobj.read() + if data is None: + # Initialised with no args - to be added + self._data = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + else: + if not isinstance(data, text_type): + data = data.decode('utf-8') + try: + self._data = json.loads(data) + self._validate_mapping(self._data, scheme) + except ValueError: + # Note: MetadataUnrecognizedVersionError does not + # inherit from ValueError (it's a DistlibException, + # which should not inherit from ValueError). + # The ValueError comes from the json.load - if that + # succeeds and we get a validation error, we want + # that to propagate + self._legacy = LegacyMetadata(fileobj=StringIO(data), + scheme=scheme) + self.validate() + + common_keys = set(('name', 'version', 'license', 'keywords', 'summary')) + + none_list = (None, list) + none_dict = (None, dict) + + mapped_keys = { + 'run_requires': ('Requires-Dist', list), + 'build_requires': ('Setup-Requires-Dist', list), + 'dev_requires': none_list, + 'test_requires': none_list, + 'meta_requires': none_list, + 'extras': ('Provides-Extra', list), + 'modules': none_list, + 'namespaces': none_list, + 'exports': none_dict, + 'commands': none_dict, + 'classifiers': ('Classifier', list), + 'source_url': ('Download-URL', None), + 'metadata_version': ('Metadata-Version', None), + } + + del none_list, none_dict + + def __getattribute__(self, key): + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, maker = mapped[key] + if self._legacy: + if lk is None: + result = None if maker is None else maker() + else: + result = self._legacy.get(lk) + else: + value = None if maker is None else maker() + if key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + result = self._data.get(key, value) + else: + # special cases for PEP 459 + sentinel = object() + result = sentinel + d = self._data.get('extensions') + if d: + if key == 'commands': + result = d.get('python.commands', value) + elif key == 'classifiers': + d = d.get('python.details') + if d: + result = d.get(key, value) + else: + d = d.get('python.exports') + if not d: + d = self._data.get('python.exports') + if d: + result = d.get(key, value) + if result is sentinel: + result = value + elif key not in common: + result = object.__getattribute__(self, key) + elif self._legacy: + result = self._legacy.get(key) + else: + result = self._data.get(key) + return result + + def _validate_value(self, key, value, scheme=None): + if key in self.SYNTAX_VALIDATORS: + pattern, exclusions = self.SYNTAX_VALIDATORS[key] + if (scheme or self.scheme) not in exclusions: + m = pattern.match(value) + if not m: + raise MetadataInvalidError("'%s' is an invalid value for " + "the '%s' property" % (value, + key)) + + def __setattr__(self, key, value): + self._validate_value(key, value) + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, _ = mapped[key] + if self._legacy: + if lk is None: + raise NotImplementedError + self._legacy[lk] = value + elif key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + self._data[key] = value + else: + # special cases for PEP 459 + d = self._data.setdefault('extensions', {}) + if key == 'commands': + d['python.commands'] = value + elif key == 'classifiers': + d = d.setdefault('python.details', {}) + d[key] = value + else: + d = d.setdefault('python.exports', {}) + d[key] = value + elif key not in common: + object.__setattr__(self, key, value) + else: + if key == 'keywords': + if isinstance(value, string_types): + value = value.strip() + if value: + value = value.split() + else: + value = [] + if self._legacy: + self._legacy[key] = value + else: + self._data[key] = value + + @property + def name_and_version(self): + return _get_name_and_version(self.name, self.version, True) + + @property + def provides(self): + if self._legacy: + result = self._legacy['Provides-Dist'] + else: + result = self._data.setdefault('provides', []) + s = '%s (%s)' % (self.name, self.version) + if s not in result: + result.append(s) + return result + + @provides.setter + def provides(self, value): + if self._legacy: + self._legacy['Provides-Dist'] = value + else: + self._data['provides'] = value + + def get_requirements(self, reqts, extras=None, env=None): + """ + Base method to get dependencies, given a set of extras + to satisfy and an optional environment context. + :param reqts: A list of sometimes-wanted dependencies, + perhaps dependent on extras and environment. + :param extras: A list of optional components being requested. + :param env: An optional environment for marker evaluation. + """ + if self._legacy: + result = reqts + else: + result = [] + extras = get_extras(extras or [], self.extras) + for d in reqts: + if 'extra' not in d and 'environment' not in d: + # unconditional + include = True + else: + if 'extra' not in d: + # Not extra-dependent - only environment-dependent + include = True + else: + include = d.get('extra') in extras + if include: + # Not excluded because of extras, check environment + marker = d.get('environment') + if marker: + include = interpret(marker, env) + if include: + result.extend(d['requires']) + for key in ('build', 'dev', 'test'): + e = ':%s:' % key + if e in extras: + extras.remove(e) + # A recursive call, but it should terminate since 'test' + # has been removed from the extras + reqts = self._data.get('%s_requires' % key, []) + result.extend(self.get_requirements(reqts, extras=extras, + env=env)) + return result + + @property + def dictionary(self): + if self._legacy: + return self._from_legacy() + return self._data + + @property + def dependencies(self): + if self._legacy: + raise NotImplementedError + else: + return extract_by_key(self._data, self.DEPENDENCY_KEYS) + + @dependencies.setter + def dependencies(self, value): + if self._legacy: + raise NotImplementedError + else: + self._data.update(value) + + def _validate_mapping(self, mapping, scheme): + if mapping.get('metadata_version') != self.METADATA_VERSION: + raise MetadataUnrecognizedVersionError() + missing = [] + for key, exclusions in self.MANDATORY_KEYS.items(): + if key not in mapping: + if scheme not in exclusions: + missing.append(key) + if missing: + msg = 'Missing metadata items: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + for k, v in mapping.items(): + self._validate_value(k, v, scheme) + + def validate(self): + if self._legacy: + missing, warnings = self._legacy.check(True) + if missing or warnings: + logger.warning('Metadata: missing: %s, warnings: %s', + missing, warnings) + else: + self._validate_mapping(self._data, self.scheme) + + def todict(self): + if self._legacy: + return self._legacy.todict(True) + else: + result = extract_by_key(self._data, self.INDEX_KEYS) + return result + + def _from_legacy(self): + assert self._legacy and not self._data + result = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + lmd = self._legacy.todict(True) # skip missing ones + for k in ('name', 'version', 'license', 'summary', 'description', + 'classifier'): + if k in lmd: + if k == 'classifier': + nk = 'classifiers' + else: + nk = k + result[nk] = lmd[k] + kw = lmd.get('Keywords', []) + if kw == ['']: + kw = [] + result['keywords'] = kw + keys = (('requires_dist', 'run_requires'), + ('setup_requires_dist', 'build_requires')) + for ok, nk in keys: + if ok in lmd and lmd[ok]: + result[nk] = [{'requires': lmd[ok]}] + result['provides'] = self.provides + author = {} + maintainer = {} + return result + + LEGACY_MAPPING = { + 'name': 'Name', + 'version': 'Version', + ('extensions', 'python.details', 'license'): 'License', + 'summary': 'Summary', + 'description': 'Description', + ('extensions', 'python.project', 'project_urls', 'Home'): 'Home-page', + ('extensions', 'python.project', 'contacts', 0, 'name'): 'Author', + ('extensions', 'python.project', 'contacts', 0, 'email'): 'Author-email', + 'source_url': 'Download-URL', + ('extensions', 'python.details', 'classifiers'): 'Classifier', + } + + def _to_legacy(self): + def process_entries(entries): + reqts = set() + for e in entries: + extra = e.get('extra') + env = e.get('environment') + rlist = e['requires'] + for r in rlist: + if not env and not extra: + reqts.add(r) + else: + marker = '' + if extra: + marker = 'extra == "%s"' % extra + if env: + if marker: + marker = '(%s) and %s' % (env, marker) + else: + marker = env + reqts.add(';'.join((r, marker))) + return reqts + + assert self._data and not self._legacy + result = LegacyMetadata() + nmd = self._data + # import pdb; pdb.set_trace() + for nk, ok in self.LEGACY_MAPPING.items(): + if not isinstance(nk, tuple): + if nk in nmd: + result[ok] = nmd[nk] + else: + d = nmd + found = True + for k in nk: + try: + d = d[k] + except (KeyError, IndexError): + found = False + break + if found: + result[ok] = d + r1 = process_entries(self.run_requires + self.meta_requires) + r2 = process_entries(self.build_requires + self.dev_requires) + if self.extras: + result['Provides-Extra'] = sorted(self.extras) + result['Requires-Dist'] = sorted(r1) + result['Setup-Requires-Dist'] = sorted(r2) + # TODO: any other fields wanted + return result + + def write(self, path=None, fileobj=None, legacy=False, skip_unknown=True): + if [path, fileobj].count(None) != 1: + raise ValueError('Exactly one of path and fileobj is needed') + self.validate() + if legacy: + if self._legacy: + legacy_md = self._legacy + else: + legacy_md = self._to_legacy() + if path: + legacy_md.write(path, skip_unknown=skip_unknown) + else: + legacy_md.write_file(fileobj, skip_unknown=skip_unknown) + else: + if self._legacy: + d = self._from_legacy() + else: + d = self._data + if fileobj: + json.dump(d, fileobj, ensure_ascii=True, indent=2, + sort_keys=True) + else: + with codecs.open(path, 'w', 'utf-8') as f: + json.dump(d, f, ensure_ascii=True, indent=2, + sort_keys=True) + + def add_requirements(self, requirements): + if self._legacy: + self._legacy.add_requirements(requirements) + else: + run_requires = self._data.setdefault('run_requires', []) + always = None + for entry in run_requires: + if 'environment' not in entry and 'extra' not in entry: + always = entry + break + if always is None: + always = { 'requires': requirements } + run_requires.insert(0, always) + else: + rset = set(always['requires']) | set(requirements) + always['requires'] = sorted(rset) + + def __repr__(self): + name = self.name or '(no name)' + version = self.version or 'no version' + return '<%s %s %s (%s)>' % (self.__class__.__name__, + self.metadata_version, name, version) diff --git a/env/Lib/site-packages/pip/_vendor/distlib/resources.py b/env/Lib/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 00000000..fef52aa1 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/resources.py @@ -0,0 +1,358 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import bisect +import io +import logging +import os +import pkgutil +import sys +import types +import zipimport + +from . import DistlibException +from .util import cached_property, get_cache_base, Cache + +logger = logging.getLogger(__name__) + + +cache = None # created when needed + + +class ResourceCache(Cache): + def __init__(self, base=None): + if base is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('resource-cache')) + super(ResourceCache, self).__init__(base) + + def is_stale(self, resource, path): + """ + Is the cache stale for the given resource? + + :param resource: The :class:`Resource` being cached. + :param path: The path of the resource in the cache. + :return: True if the cache is stale. + """ + # Cache invalidation is a hard problem :-) + return True + + def get(self, resource): + """ + Get a resource into the cache, + + :param resource: A :class:`Resource` instance. + :return: The pathname of the resource in the cache. + """ + prefix, path = resource.finder.get_cache_info(resource) + if prefix is None: + result = path + else: + result = os.path.join(self.base, self.prefix_to_dir(prefix), path) + dirname = os.path.dirname(result) + if not os.path.isdir(dirname): + os.makedirs(dirname) + if not os.path.exists(result): + stale = True + else: + stale = self.is_stale(resource, path) + if stale: + # write the bytes of the resource to the cache location + with open(result, 'wb') as f: + f.write(resource.bytes) + return result + + +class ResourceBase(object): + def __init__(self, finder, name): + self.finder = finder + self.name = name + + +class Resource(ResourceBase): + """ + A class representing an in-package resource, such as a data file. This is + not normally instantiated by user code, but rather by a + :class:`ResourceFinder` which manages the resource. + """ + is_container = False # Backwards compatibility + + def as_stream(self): + """ + Get the resource as a stream. + + This is not a property to make it obvious that it returns a new stream + each time. + """ + return self.finder.get_stream(self) + + @cached_property + def file_path(self): + global cache + if cache is None: + cache = ResourceCache() + return cache.get(self) + + @cached_property + def bytes(self): + return self.finder.get_bytes(self) + + @cached_property + def size(self): + return self.finder.get_size(self) + + +class ResourceContainer(ResourceBase): + is_container = True # Backwards compatibility + + @cached_property + def resources(self): + return self.finder.get_resources(self) + + +class ResourceFinder(object): + """ + Resource finder for file system resources. + """ + + if sys.platform.startswith('java'): + skipped_extensions = ('.pyc', '.pyo', '.class') + else: + skipped_extensions = ('.pyc', '.pyo') + + def __init__(self, module): + self.module = module + self.loader = getattr(module, '__loader__', None) + self.base = os.path.dirname(getattr(module, '__file__', '')) + + def _adjust_path(self, path): + return os.path.realpath(path) + + def _make_path(self, resource_name): + # Issue #50: need to preserve type of path on Python 2.x + # like os.path._get_sep + if isinstance(resource_name, bytes): # should only happen on 2.x + sep = b'/' + else: + sep = '/' + parts = resource_name.split(sep) + parts.insert(0, self.base) + result = os.path.join(*parts) + return self._adjust_path(result) + + def _find(self, path): + return os.path.exists(path) + + def get_cache_info(self, resource): + return None, resource.path + + def find(self, resource_name): + path = self._make_path(resource_name) + if not self._find(path): + result = None + else: + if self._is_directory(path): + result = ResourceContainer(self, resource_name) + else: + result = Resource(self, resource_name) + result.path = path + return result + + def get_stream(self, resource): + return open(resource.path, 'rb') + + def get_bytes(self, resource): + with open(resource.path, 'rb') as f: + return f.read() + + def get_size(self, resource): + return os.path.getsize(resource.path) + + def get_resources(self, resource): + def allowed(f): + return (f != '__pycache__' and not + f.endswith(self.skipped_extensions)) + return set([f for f in os.listdir(resource.path) if allowed(f)]) + + def is_container(self, resource): + return self._is_directory(resource.path) + + _is_directory = staticmethod(os.path.isdir) + + def iterator(self, resource_name): + resource = self.find(resource_name) + if resource is not None: + todo = [resource] + while todo: + resource = todo.pop(0) + yield resource + if resource.is_container: + rname = resource.name + for name in resource.resources: + if not rname: + new_name = name + else: + new_name = '/'.join([rname, name]) + child = self.find(new_name) + if child.is_container: + todo.append(child) + else: + yield child + + +class ZipResourceFinder(ResourceFinder): + """ + Resource finder for resources in .zip files. + """ + def __init__(self, module): + super(ZipResourceFinder, self).__init__(module) + archive = self.loader.archive + self.prefix_len = 1 + len(archive) + # PyPy doesn't have a _files attr on zipimporter, and you can't set one + if hasattr(self.loader, '_files'): + self._files = self.loader._files + else: + self._files = zipimport._zip_directory_cache[archive] + self.index = sorted(self._files) + + def _adjust_path(self, path): + return path + + def _find(self, path): + path = path[self.prefix_len:] + if path in self._files: + result = True + else: + if path and path[-1] != os.sep: + path = path + os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + if not result: + logger.debug('_find failed: %r %r', path, self.loader.prefix) + else: + logger.debug('_find worked: %r %r', path, self.loader.prefix) + return result + + def get_cache_info(self, resource): + prefix = self.loader.archive + path = resource.path[1 + len(prefix):] + return prefix, path + + def get_bytes(self, resource): + return self.loader.get_data(resource.path) + + def get_stream(self, resource): + return io.BytesIO(self.get_bytes(resource)) + + def get_size(self, resource): + path = resource.path[self.prefix_len:] + return self._files[path][3] + + def get_resources(self, resource): + path = resource.path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + plen = len(path) + result = set() + i = bisect.bisect(self.index, path) + while i < len(self.index): + if not self.index[i].startswith(path): + break + s = self.index[i][plen:] + result.add(s.split(os.sep, 1)[0]) # only immediate children + i += 1 + return result + + def _is_directory(self, path): + path = path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + return result + + +_finder_registry = { + type(None): ResourceFinder, + zipimport.zipimporter: ZipResourceFinder +} + +try: + # In Python 3.6, _frozen_importlib -> _frozen_importlib_external + try: + import _frozen_importlib_external as _fi + except ImportError: + import _frozen_importlib as _fi + _finder_registry[_fi.SourceFileLoader] = ResourceFinder + _finder_registry[_fi.FileFinder] = ResourceFinder + # See issue #146 + _finder_registry[_fi.SourcelessFileLoader] = ResourceFinder + del _fi +except (ImportError, AttributeError): + pass + + +def register_finder(loader, finder_maker): + _finder_registry[type(loader)] = finder_maker + + +_finder_cache = {} + + +def finder(package): + """ + Return a resource finder for a package. + :param package: The name of the package. + :return: A :class:`ResourceFinder` instance for the package. + """ + if package in _finder_cache: + result = _finder_cache[package] + else: + if package not in sys.modules: + __import__(package) + module = sys.modules[package] + path = getattr(module, '__path__', None) + if path is None: + raise DistlibException('You cannot get a finder for a module, ' + 'only for a package') + loader = getattr(module, '__loader__', None) + finder_maker = _finder_registry.get(type(loader)) + if finder_maker is None: + raise DistlibException('Unable to locate finder for %r' % package) + result = finder_maker(module) + _finder_cache[package] = result + return result + + +_dummy_module = types.ModuleType(str('__dummy__')) + + +def finder_for_path(path): + """ + Return a resource finder for a path, which should represent a container. + + :param path: The path. + :return: A :class:`ResourceFinder` instance for the path. + """ + result = None + # calls any path hooks, gets importer into cache + pkgutil.get_importer(path) + loader = sys.path_importer_cache.get(path) + finder = _finder_registry.get(type(loader)) + if finder: + module = _dummy_module + module.__file__ = os.path.join(path, '') + module.__loader__ = loader + result = finder(module) + return result diff --git a/env/Lib/site-packages/pip/_vendor/distlib/scripts.py b/env/Lib/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 00000000..e16292b8 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,466 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from io import BytesIO +import logging +import os +import re +import struct +import sys +import time +from zipfile import ZipInfo + +from .compat import sysconfig, detect_encoding, ZipFile +from .resources import finder +from .util import (FileOperator, get_export_entry, convert_path, + get_executable, get_platform, in_venv) + +logger = logging.getLogger(__name__) + +_DEFAULT_MANIFEST = ''' + + + + + + + + + + + + +'''.strip() + +# check if Python is called on the first line with this expression +FIRST_LINE_RE = re.compile(b'^#!.*pythonw?[0-9.]*([ \t].*)?$') +SCRIPT_TEMPLATE = r'''# -*- coding: utf-8 -*- +import re +import sys +from %(module)s import %(import_name)s +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(%(func)s()) +''' + +# Pre-fetch the contents of all executable wrapper stubs. +# This is to address https://github.com/pypa/pip/issues/12666. +# When updating pip, we rename the old pip in place before installing the +# new version. If we try to fetch a wrapper *after* that rename, the finder +# machinery will be confused as the package is no longer available at the +# location where it was imported from. So we load everything into memory in +# advance. + +# Issue 31: don't hardcode an absolute package name, but +# determine it relative to the current package +distlib_package = __name__.rsplit('.', 1)[0] + +WRAPPERS = { + r.name: r.bytes + for r in finder(distlib_package).iterator("") + if r.name.endswith(".exe") +} + + +def enquote_executable(executable): + if ' ' in executable: + # make sure we quote only the executable in case of env + # for example /usr/bin/env "/dir with spaces/bin/jython" + # instead of "/usr/bin/env /dir with spaces/bin/jython" + # otherwise whole + if executable.startswith('/usr/bin/env '): + env, _executable = executable.split(' ', 1) + if ' ' in _executable and not _executable.startswith('"'): + executable = '%s "%s"' % (env, _executable) + else: + if not executable.startswith('"'): + executable = '"%s"' % executable + return executable + + +# Keep the old name around (for now), as there is at least one project using it! +_enquote_executable = enquote_executable + + +class ScriptMaker(object): + """ + A class to copy or create scripts from source scripts or callable + specifications. + """ + script_template = SCRIPT_TEMPLATE + + executable = None # for shebangs + + def __init__(self, + source_dir, + target_dir, + add_launchers=True, + dry_run=False, + fileop=None): + self.source_dir = source_dir + self.target_dir = target_dir + self.add_launchers = add_launchers + self.force = False + self.clobber = False + # It only makes sense to set mode bits on POSIX. + self.set_mode = (os.name == 'posix') or (os.name == 'java' + and os._name == 'posix') + self.variants = set(('', 'X.Y')) + self._fileop = fileop or FileOperator(dry_run) + + self._is_nt = os.name == 'nt' or (os.name == 'java' + and os._name == 'nt') + self.version_info = sys.version_info + + def _get_alternate_executable(self, executable, options): + if options.get('gui', False) and self._is_nt: # pragma: no cover + dn, fn = os.path.split(executable) + fn = fn.replace('python', 'pythonw') + executable = os.path.join(dn, fn) + return executable + + if sys.platform.startswith('java'): # pragma: no cover + + def _is_shell(self, executable): + """ + Determine if the specified executable is a script + (contains a #! line) + """ + try: + with open(executable) as fp: + return fp.read(2) == '#!' + except (OSError, IOError): + logger.warning('Failed to open %s', executable) + return False + + def _fix_jython_executable(self, executable): + if self._is_shell(executable): + # Workaround for Jython is not needed on Linux systems. + import java + + if java.lang.System.getProperty('os.name') == 'Linux': + return executable + elif executable.lower().endswith('jython.exe'): + # Use wrapper exe for Jython on Windows + return executable + return '/usr/bin/env %s' % executable + + def _build_shebang(self, executable, post_interp): + """ + Build a shebang line. In the simple case (on Windows, or a shebang line + which is not too long or contains spaces) use a simple formulation for + the shebang. Otherwise, use /bin/sh as the executable, with a contrived + shebang which allows the script to run either under Python or sh, using + suitable quoting. Thanks to Harald Nordgren for his input. + + See also: http://www.in-ulm.de/~mascheck/various/shebang/#length + https://hg.mozilla.org/mozilla-central/file/tip/mach + """ + if os.name != 'posix': + simple_shebang = True + else: + # Add 3 for '#!' prefix and newline suffix. + shebang_length = len(executable) + len(post_interp) + 3 + if sys.platform == 'darwin': + max_shebang_length = 512 + else: + max_shebang_length = 127 + simple_shebang = ((b' ' not in executable) + and (shebang_length <= max_shebang_length)) + + if simple_shebang: + result = b'#!' + executable + post_interp + b'\n' + else: + result = b'#!/bin/sh\n' + result += b"'''exec' " + executable + post_interp + b' "$0" "$@"\n' + result += b"' '''" + return result + + def _get_shebang(self, encoding, post_interp=b'', options=None): + enquote = True + if self.executable: + executable = self.executable + enquote = False # assume this will be taken care of + elif not sysconfig.is_python_build(): + executable = get_executable() + elif in_venv(): # pragma: no cover + executable = os.path.join( + sysconfig.get_path('scripts'), + 'python%s' % sysconfig.get_config_var('EXE')) + else: # pragma: no cover + if os.name == 'nt': + # for Python builds from source on Windows, no Python executables with + # a version suffix are created, so we use python.exe + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s' % (sysconfig.get_config_var('EXE'))) + else: + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s%s' % (sysconfig.get_config_var('VERSION'), + sysconfig.get_config_var('EXE'))) + if options: + executable = self._get_alternate_executable(executable, options) + + if sys.platform.startswith('java'): # pragma: no cover + executable = self._fix_jython_executable(executable) + + # Normalise case for Windows - COMMENTED OUT + # executable = os.path.normcase(executable) + # N.B. The normalising operation above has been commented out: See + # issue #124. Although paths in Windows are generally case-insensitive, + # they aren't always. For example, a path containing a ẞ (which is a + # LATIN CAPITAL LETTER SHARP S - U+1E9E) is normcased to ß (which is a + # LATIN SMALL LETTER SHARP S' - U+00DF). The two are not considered by + # Windows as equivalent in path names. + + # If the user didn't specify an executable, it may be necessary to + # cater for executable paths with spaces (not uncommon on Windows) + if enquote: + executable = enquote_executable(executable) + # Issue #51: don't use fsencode, since we later try to + # check that the shebang is decodable using utf-8. + executable = executable.encode('utf-8') + # in case of IronPython, play safe and enable frames support + if (sys.platform == 'cli' and '-X:Frames' not in post_interp + and '-X:FullFrames' not in post_interp): # pragma: no cover + post_interp += b' -X:Frames' + shebang = self._build_shebang(executable, post_interp) + # Python parser starts to read a script using UTF-8 until + # it gets a #coding:xxx cookie. The shebang has to be the + # first line of a file, the #coding:xxx cookie cannot be + # written before. So the shebang has to be decodable from + # UTF-8. + try: + shebang.decode('utf-8') + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable from utf-8' % + shebang) + # If the script is encoded to a custom encoding (use a + # #coding:xxx cookie), the shebang has to be decodable from + # the script encoding too. + if encoding != 'utf-8': + try: + shebang.decode(encoding) + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable ' + 'from the script encoding (%r)' % + (shebang, encoding)) + return shebang + + def _get_script_text(self, entry): + return self.script_template % dict( + module=entry.prefix, + import_name=entry.suffix.split('.')[0], + func=entry.suffix) + + manifest = _DEFAULT_MANIFEST + + def get_manifest(self, exename): + base = os.path.basename(exename) + return self.manifest % base + + def _write_script(self, names, shebang, script_bytes, filenames, ext): + use_launcher = self.add_launchers and self._is_nt + linesep = os.linesep.encode('utf-8') + if not shebang.endswith(linesep): + shebang += linesep + if not use_launcher: + script_bytes = shebang + script_bytes + else: # pragma: no cover + if ext == 'py': + launcher = self._get_launcher('t') + else: + launcher = self._get_launcher('w') + stream = BytesIO() + with ZipFile(stream, 'w') as zf: + source_date_epoch = os.environ.get('SOURCE_DATE_EPOCH') + if source_date_epoch: + date_time = time.gmtime(int(source_date_epoch))[:6] + zinfo = ZipInfo(filename='__main__.py', + date_time=date_time) + zf.writestr(zinfo, script_bytes) + else: + zf.writestr('__main__.py', script_bytes) + zip_data = stream.getvalue() + script_bytes = launcher + shebang + zip_data + for name in names: + outname = os.path.join(self.target_dir, name) + if use_launcher: # pragma: no cover + n, e = os.path.splitext(outname) + if e.startswith('.py'): + outname = n + outname = '%s.exe' % outname + try: + self._fileop.write_binary_file(outname, script_bytes) + except Exception: + # Failed writing an executable - it might be in use. + logger.warning('Failed to write executable - trying to ' + 'use .deleteme logic') + dfname = '%s.deleteme' % outname + if os.path.exists(dfname): + os.remove(dfname) # Not allowed to fail here + os.rename(outname, dfname) # nor here + self._fileop.write_binary_file(outname, script_bytes) + logger.debug('Able to replace executable using ' + '.deleteme logic') + try: + os.remove(dfname) + except Exception: + pass # still in use - ignore error + else: + if self._is_nt and not outname.endswith( + '.' + ext): # pragma: no cover + outname = '%s.%s' % (outname, ext) + if os.path.exists(outname) and not self.clobber: + logger.warning('Skipping existing file %s', outname) + continue + self._fileop.write_binary_file(outname, script_bytes) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + + variant_separator = '-' + + def get_script_filenames(self, name): + result = set() + if '' in self.variants: + result.add(name) + if 'X' in self.variants: + result.add('%s%s' % (name, self.version_info[0])) + if 'X.Y' in self.variants: + result.add('%s%s%s.%s' % + (name, self.variant_separator, self.version_info[0], + self.version_info[1])) + return result + + def _make_script(self, entry, filenames, options=None): + post_interp = b'' + if options: + args = options.get('interpreter_args', []) + if args: + args = ' %s' % ' '.join(args) + post_interp = args.encode('utf-8') + shebang = self._get_shebang('utf-8', post_interp, options=options) + script = self._get_script_text(entry).encode('utf-8') + scriptnames = self.get_script_filenames(entry.name) + if options and options.get('gui', False): + ext = 'pyw' + else: + ext = 'py' + self._write_script(scriptnames, shebang, script, filenames, ext) + + def _copy_script(self, script, filenames): + adjust = False + script = os.path.join(self.source_dir, convert_path(script)) + outname = os.path.join(self.target_dir, os.path.basename(script)) + if not self.force and not self._fileop.newer(script, outname): + logger.debug('not copying %s (up-to-date)', script) + return + + # Always open the file, but ignore failures in dry-run mode -- + # that way, we'll get accurate feedback if we can read the + # script. + try: + f = open(script, 'rb') + except IOError: # pragma: no cover + if not self.dry_run: + raise + f = None + else: + first_line = f.readline() + if not first_line: # pragma: no cover + logger.warning('%s is an empty file (skipping)', script) + return + + match = FIRST_LINE_RE.match(first_line.replace(b'\r\n', b'\n')) + if match: + adjust = True + post_interp = match.group(1) or b'' + + if not adjust: + if f: + f.close() + self._fileop.copy_file(script, outname) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + else: + logger.info('copying and adjusting %s -> %s', script, + self.target_dir) + if not self._fileop.dry_run: + encoding, lines = detect_encoding(f.readline) + f.seek(0) + shebang = self._get_shebang(encoding, post_interp) + if b'pythonw' in first_line: # pragma: no cover + ext = 'pyw' + else: + ext = 'py' + n = os.path.basename(outname) + self._write_script([n], shebang, f.read(), filenames, ext) + if f: + f.close() + + @property + def dry_run(self): + return self._fileop.dry_run + + @dry_run.setter + def dry_run(self, value): + self._fileop.dry_run = value + + if os.name == 'nt' or (os.name == 'java' + and os._name == 'nt'): # pragma: no cover + # Executable launcher support. + # Launchers are from https://bitbucket.org/vinay.sajip/simple_launcher/ + + def _get_launcher(self, kind): + if struct.calcsize('P') == 8: # 64-bit + bits = '64' + else: + bits = '32' + platform_suffix = '-arm' if get_platform() == 'win-arm64' else '' + name = '%s%s%s.exe' % (kind, bits, platform_suffix) + if name not in WRAPPERS: + msg = ('Unable to find resource %s in package %s' % + (name, distlib_package)) + raise ValueError(msg) + return WRAPPERS[name] + + # Public API follows + + def make(self, specification, options=None): + """ + Make a script. + + :param specification: The specification, which is either a valid export + entry specification (to make a script from a + callable) or a filename (to make a script by + copying from a source location). + :param options: A dictionary of options controlling script generation. + :return: A list of all absolute pathnames written to. + """ + filenames = [] + entry = get_export_entry(specification) + if entry is None: + self._copy_script(specification, filenames) + else: + self._make_script(entry, filenames, options=options) + return filenames + + def make_multiple(self, specifications, options=None): + """ + Take a list of specifications and make scripts from them, + :param specifications: A list of specifications. + :return: A list of all absolute pathnames written to, + """ + filenames = [] + for specification in specifications: + filenames.extend(self.make(specification, options)) + return filenames diff --git a/env/Lib/site-packages/pip/_vendor/distlib/t32.exe b/env/Lib/site-packages/pip/_vendor/distlib/t32.exe new file mode 100644 index 0000000000000000000000000000000000000000..52154f0be32cc2bdbf98af131d477900667d0abd GIT binary patch literal 97792 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

XMwe#*Lv$g8jIpIBEV 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 w+IyK^N3WCD*(>mhAj=irKyR>D9b+D<@QBhV6U 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

qx{CqlSNQ_YhQ()VtG-D; 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 z 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 bB!6W7g#4-b3-g!cLzth+PZapSNrC?c%T_@< literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/wheel.py b/env/Lib/site-packages/pip/_vendor/distlib/wheel.py new file mode 100644 index 00000000..4a5a30e1 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/wheel.py @@ -0,0 +1,1099 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import base64 +import codecs +import datetime +from email import message_from_file +import hashlib +import json +import logging +import os +import posixpath +import re +import shutil +import sys +import tempfile +import zipfile + +from . import __version__, DistlibException +from .compat import sysconfig, ZipFile, fsdecode, text_type, filter +from .database import InstalledDistribution +from .metadata import Metadata, WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME +from .util import (FileOperator, convert_path, CSVReader, CSVWriter, Cache, + cached_property, get_cache_base, read_exports, tempdir, + get_platform) +from .version import NormalizedVersion, UnsupportedVersionError + +logger = logging.getLogger(__name__) + +cache = None # created when needed + +if hasattr(sys, 'pypy_version_info'): # pragma: no cover + IMP_PREFIX = 'pp' +elif sys.platform.startswith('java'): # pragma: no cover + IMP_PREFIX = 'jy' +elif sys.platform == 'cli': # pragma: no cover + IMP_PREFIX = 'ip' +else: + IMP_PREFIX = 'cp' + +VER_SUFFIX = sysconfig.get_config_var('py_version_nodot') +if not VER_SUFFIX: # pragma: no cover + VER_SUFFIX = '%s%s' % sys.version_info[:2] +PYVER = 'py' + VER_SUFFIX +IMPVER = IMP_PREFIX + VER_SUFFIX + +ARCH = get_platform().replace('-', '_').replace('.', '_') + +ABI = sysconfig.get_config_var('SOABI') +if ABI and ABI.startswith('cpython-'): + ABI = ABI.replace('cpython-', 'cp').split('-')[0] +else: + + def _derive_abi(): + parts = ['cp', VER_SUFFIX] + if sysconfig.get_config_var('Py_DEBUG'): + parts.append('d') + if IMP_PREFIX == 'cp': + vi = sys.version_info[:2] + if vi < (3, 8): + wpm = sysconfig.get_config_var('WITH_PYMALLOC') + if wpm is None: + wpm = True + if wpm: + parts.append('m') + if vi < (3, 3): + us = sysconfig.get_config_var('Py_UNICODE_SIZE') + if us == 4 or (us is None and sys.maxunicode == 0x10FFFF): + parts.append('u') + return ''.join(parts) + + ABI = _derive_abi() + del _derive_abi + +FILENAME_RE = re.compile( + r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))? +-(?P\w+\d+(\.\w+\d+)*) +-(?P\w+) +-(?P\w+(\.\w+)*) +\.whl$ +''', re.IGNORECASE | re.VERBOSE) + +NAME_VERSION_RE = re.compile( + r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))?$ +''', re.IGNORECASE | re.VERBOSE) + +SHEBANG_RE = re.compile(br'\s*#![^\r\n]*') +SHEBANG_DETAIL_RE = re.compile(br'^(\s*#!("[^"]+"|\S+))\s+(.*)$') +SHEBANG_PYTHON = b'#!python' +SHEBANG_PYTHONW = b'#!pythonw' + +if os.sep == '/': + to_posix = lambda o: o +else: + to_posix = lambda o: o.replace(os.sep, '/') + +if sys.version_info[0] < 3: + import imp +else: + imp = None + import importlib.machinery + import importlib.util + + +def _get_suffixes(): + if imp: + return [s[0] for s in imp.get_suffixes()] + else: + return importlib.machinery.EXTENSION_SUFFIXES + + +def _load_dynamic(name, path): + # https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly + if imp: + return imp.load_dynamic(name, path) + else: + spec = importlib.util.spec_from_file_location(name, path) + module = importlib.util.module_from_spec(spec) + sys.modules[name] = module + spec.loader.exec_module(module) + return module + + +class Mounter(object): + + def __init__(self): + self.impure_wheels = {} + self.libs = {} + + def add(self, pathname, extensions): + self.impure_wheels[pathname] = extensions + self.libs.update(extensions) + + def remove(self, pathname): + extensions = self.impure_wheels.pop(pathname) + for k, v in extensions: + if k in self.libs: + del self.libs[k] + + def find_module(self, fullname, path=None): + if fullname in self.libs: + result = self + else: + result = None + return result + + def load_module(self, fullname): + if fullname in sys.modules: + result = sys.modules[fullname] + else: + if fullname not in self.libs: + raise ImportError('unable to find extension for %s' % fullname) + result = _load_dynamic(fullname, self.libs[fullname]) + result.__loader__ = self + parts = fullname.rsplit('.', 1) + if len(parts) > 1: + result.__package__ = parts[0] + return result + + +_hook = Mounter() + + +class Wheel(object): + """ + Class to build and install from Wheel files (PEP 427). + """ + + wheel_version = (1, 1) + hash_kind = 'sha256' + + def __init__(self, filename=None, sign=False, verify=False): + """ + Initialise an instance using a (valid) filename. + """ + self.sign = sign + self.should_verify = verify + self.buildver = '' + self.pyver = [PYVER] + self.abi = ['none'] + self.arch = ['any'] + self.dirname = os.getcwd() + if filename is None: + self.name = 'dummy' + self.version = '0.1' + self._filename = self.filename + else: + m = NAME_VERSION_RE.match(filename) + if m: + info = m.groupdict('') + self.name = info['nm'] + # Reinstate the local version separator + self.version = info['vn'].replace('_', '-') + self.buildver = info['bn'] + self._filename = self.filename + else: + dirname, filename = os.path.split(filename) + m = FILENAME_RE.match(filename) + if not m: + raise DistlibException('Invalid name or ' + 'filename: %r' % filename) + if dirname: + self.dirname = os.path.abspath(dirname) + self._filename = filename + info = m.groupdict('') + self.name = info['nm'] + self.version = info['vn'] + self.buildver = info['bn'] + self.pyver = info['py'].split('.') + self.abi = info['bi'].split('.') + self.arch = info['ar'].split('.') + + @property + def filename(self): + """ + Build and return a filename from the various components. + """ + if self.buildver: + buildver = '-' + self.buildver + else: + buildver = '' + pyver = '.'.join(self.pyver) + abi = '.'.join(self.abi) + arch = '.'.join(self.arch) + # replace - with _ as a local version separator + version = self.version.replace('-', '_') + return '%s-%s%s-%s-%s-%s.whl' % (self.name, version, buildver, pyver, + abi, arch) + + @property + def exists(self): + path = os.path.join(self.dirname, self.filename) + return os.path.isfile(path) + + @property + def tags(self): + for pyver in self.pyver: + for abi in self.abi: + for arch in self.arch: + yield pyver, abi, arch + + @cached_property + def metadata(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + wrapper = codecs.getreader('utf-8') + with ZipFile(pathname, 'r') as zf: + self.get_wheel_metadata(zf) + # wv = wheel_metadata['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # if file_version < (1, 1): + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME, + # LEGACY_METADATA_FILENAME] + # else: + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME] + fns = [WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME] + result = None + for fn in fns: + try: + metadata_filename = posixpath.join(info_dir, fn) + with zf.open(metadata_filename) as bf: + wf = wrapper(bf) + result = Metadata(fileobj=wf) + if result: + break + except KeyError: + pass + if not result: + raise ValueError('Invalid wheel, because metadata is ' + 'missing: looked in %s' % ', '.join(fns)) + return result + + def get_wheel_metadata(self, zf): + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + metadata_filename = posixpath.join(info_dir, 'WHEEL') + with zf.open(metadata_filename) as bf: + wf = codecs.getreader('utf-8')(bf) + message = message_from_file(wf) + return dict(message) + + @cached_property + def info(self): + pathname = os.path.join(self.dirname, self.filename) + with ZipFile(pathname, 'r') as zf: + result = self.get_wheel_metadata(zf) + return result + + def process_shebang(self, data): + m = SHEBANG_RE.match(data) + if m: + end = m.end() + shebang, data_after_shebang = data[:end], data[end:] + # Preserve any arguments after the interpreter + if b'pythonw' in shebang.lower(): + shebang_python = SHEBANG_PYTHONW + else: + shebang_python = SHEBANG_PYTHON + m = SHEBANG_DETAIL_RE.match(shebang) + if m: + args = b' ' + m.groups()[-1] + else: + args = b'' + shebang = shebang_python + args + data = shebang + data_after_shebang + else: + cr = data.find(b'\r') + lf = data.find(b'\n') + if cr < 0 or cr > lf: + term = b'\n' + else: + if data[cr:cr + 2] == b'\r\n': + term = b'\r\n' + else: + term = b'\r' + data = SHEBANG_PYTHON + term + data + return data + + def get_hash(self, data, hash_kind=None): + if hash_kind is None: + hash_kind = self.hash_kind + try: + hasher = getattr(hashlib, hash_kind) + except AttributeError: + raise DistlibException('Unsupported hash algorithm: %r' % + hash_kind) + result = hasher(data).digest() + result = base64.urlsafe_b64encode(result).rstrip(b'=').decode('ascii') + return hash_kind, result + + def write_record(self, records, record_path, archive_record_path): + records = list(records) # make a copy, as mutated + records.append((archive_record_path, '', '')) + with CSVWriter(record_path) as writer: + for row in records: + writer.writerow(row) + + def write_records(self, info, libdir, archive_paths): + records = [] + distinfo, info_dir = info + # hasher = getattr(hashlib, self.hash_kind) + for ap, p in archive_paths: + with open(p, 'rb') as f: + data = f.read() + digest = '%s=%s' % self.get_hash(data) + size = os.path.getsize(p) + records.append((ap, digest, size)) + + p = os.path.join(distinfo, 'RECORD') + ap = to_posix(os.path.join(info_dir, 'RECORD')) + self.write_record(records, p, ap) + archive_paths.append((ap, p)) + + def build_zip(self, pathname, archive_paths): + with ZipFile(pathname, 'w', zipfile.ZIP_DEFLATED) as zf: + for ap, p in archive_paths: + logger.debug('Wrote %s to %s in wheel', p, ap) + zf.write(p, ap) + + def build(self, paths, tags=None, wheel_version=None): + """ + Build a wheel from files in specified paths, and use any specified tags + when determining the name of the wheel. + """ + if tags is None: + tags = {} + + libkey = list(filter(lambda o: o in paths, ('purelib', 'platlib')))[0] + if libkey == 'platlib': + is_pure = 'false' + default_pyver = [IMPVER] + default_abi = [ABI] + default_arch = [ARCH] + else: + is_pure = 'true' + default_pyver = [PYVER] + default_abi = ['none'] + default_arch = ['any'] + + self.pyver = tags.get('pyver', default_pyver) + self.abi = tags.get('abi', default_abi) + self.arch = tags.get('arch', default_arch) + + libdir = paths[libkey] + + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + archive_paths = [] + + # First, stuff which is not in site-packages + for key in ('data', 'headers', 'scripts'): + if key not in paths: + continue + path = paths[key] + if os.path.isdir(path): + for root, dirs, files in os.walk(path): + for fn in files: + p = fsdecode(os.path.join(root, fn)) + rp = os.path.relpath(p, path) + ap = to_posix(os.path.join(data_dir, key, rp)) + archive_paths.append((ap, p)) + if key == 'scripts' and not p.endswith('.exe'): + with open(p, 'rb') as f: + data = f.read() + data = self.process_shebang(data) + with open(p, 'wb') as f: + f.write(data) + + # Now, stuff which is in site-packages, other than the + # distinfo stuff. + path = libdir + distinfo = None + for root, dirs, files in os.walk(path): + if root == path: + # At the top level only, save distinfo for later + # and skip it for now + for i, dn in enumerate(dirs): + dn = fsdecode(dn) + if dn.endswith('.dist-info'): + distinfo = os.path.join(root, dn) + del dirs[i] + break + assert distinfo, '.dist-info directory expected, not found' + + for fn in files: + # comment out next suite to leave .pyc files in + if fsdecode(fn).endswith(('.pyc', '.pyo')): + continue + p = os.path.join(root, fn) + rp = to_posix(os.path.relpath(p, path)) + archive_paths.append((rp, p)) + + # Now distinfo. Assumed to be flat, i.e. os.listdir is enough. + files = os.listdir(distinfo) + for fn in files: + if fn not in ('RECORD', 'INSTALLER', 'SHARED', 'WHEEL'): + p = fsdecode(os.path.join(distinfo, fn)) + ap = to_posix(os.path.join(info_dir, fn)) + archive_paths.append((ap, p)) + + wheel_metadata = [ + 'Wheel-Version: %d.%d' % (wheel_version or self.wheel_version), + 'Generator: distlib %s' % __version__, + 'Root-Is-Purelib: %s' % is_pure, + ] + for pyver, abi, arch in self.tags: + wheel_metadata.append('Tag: %s-%s-%s' % (pyver, abi, arch)) + p = os.path.join(distinfo, 'WHEEL') + with open(p, 'w') as f: + f.write('\n'.join(wheel_metadata)) + ap = to_posix(os.path.join(info_dir, 'WHEEL')) + archive_paths.append((ap, p)) + + # sort the entries by archive path. Not needed by any spec, but it + # keeps the archive listing and RECORD tidier than they would otherwise + # be. Use the number of path segments to keep directory entries together, + # and keep the dist-info stuff at the end. + def sorter(t): + ap = t[0] + n = ap.count('/') + if '.dist-info' in ap: + n += 10000 + return (n, ap) + + archive_paths = sorted(archive_paths, key=sorter) + + # Now, at last, RECORD. + # Paths in here are archive paths - nothing else makes sense. + self.write_records((distinfo, info_dir), libdir, archive_paths) + # Now, ready to build the zip file + pathname = os.path.join(self.dirname, self.filename) + self.build_zip(pathname, archive_paths) + return pathname + + def skip_entry(self, arcname): + """ + Determine whether an archive entry should be skipped when verifying + or installing. + """ + # The signature file won't be in RECORD, + # and we don't currently don't do anything with it + # We also skip directories, as they won't be in RECORD + # either. See: + # + # https://github.com/pypa/wheel/issues/294 + # https://github.com/pypa/wheel/issues/287 + # https://github.com/pypa/wheel/pull/289 + # + return arcname.endswith(('/', '/RECORD.jws')) + + def install(self, paths, maker, **kwargs): + """ + Install a wheel to the specified paths. If kwarg ``warner`` is + specified, it should be a callable, which will be called with two + tuples indicating the wheel version of this software and the wheel + version in the file, if there is a discrepancy in the versions. + This can be used to issue any warnings to raise any exceptions. + If kwarg ``lib_only`` is True, only the purelib/platlib files are + installed, and the headers, scripts, data and dist-info metadata are + not written. If kwarg ``bytecode_hashed_invalidation`` is True, written + bytecode will try to use file-hash based invalidation (PEP-552) on + supported interpreter versions (CPython 2.7+). + + The return value is a :class:`InstalledDistribution` instance unless + ``options.lib_only`` is True, in which case the return value is ``None``. + """ + + dry_run = maker.dry_run + warner = kwargs.get('warner') + lib_only = kwargs.get('lib_only', False) + bc_hashed_invalidation = kwargs.get('bytecode_hashed_invalidation', + False) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message = message_from_file(wf) + wv = message['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + if (file_version != self.wheel_version) and warner: + warner(self.wheel_version, file_version) + + if message['Root-Is-Purelib'] == 'true': + libdir = paths['purelib'] + else: + libdir = paths['platlib'] + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + data_pfx = posixpath.join(data_dir, '') + info_pfx = posixpath.join(info_dir, '') + script_pfx = posixpath.join(data_dir, 'scripts', '') + + # make a new instance rather than a copy of maker's, + # as we mutate it + fileop = FileOperator(dry_run=dry_run) + fileop.record = True # so we can rollback if needed + + bc = not sys.dont_write_bytecode # Double negatives. Lovely! + + outfiles = [] # for RECORD writing + + # for script copying/shebang processing + workdir = tempfile.mkdtemp() + # set target dir later + # we default add_launchers to False, as the + # Python Launcher should be used instead + maker.source_dir = workdir + maker.target_dir = None + try: + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + if lib_only and u_arcname.startswith((info_pfx, data_pfx)): + logger.debug('lib_only: skipping %s', u_arcname) + continue + is_script = (u_arcname.startswith(script_pfx) + and not u_arcname.endswith('.exe')) + + if u_arcname.startswith(data_pfx): + _, where, rp = u_arcname.split('/', 2) + outfile = os.path.join(paths[where], convert_path(rp)) + else: + # meant for site-packages. + if u_arcname in (wheel_metadata_name, record_name): + continue + outfile = os.path.join(libdir, convert_path(u_arcname)) + if not is_script: + with zf.open(arcname) as bf: + fileop.copy_stream(bf, outfile) + # Issue #147: permission bits aren't preserved. Using + # zf.extract(zinfo, libdir) should have worked, but didn't, + # see https://www.thetopsites.net/article/53834422.shtml + # So ... manually preserve permission bits as given in zinfo + if os.name == 'posix': + # just set the normal permission bits + os.chmod(outfile, + (zinfo.external_attr >> 16) & 0x1FF) + outfiles.append(outfile) + # Double check the digest of the written file + if not dry_run and row[1]: + with open(outfile, 'rb') as bf: + data = bf.read() + _, newdigest = self.get_hash(data, kind) + if newdigest != digest: + raise DistlibException('digest mismatch ' + 'on write for ' + '%s' % outfile) + if bc and outfile.endswith('.py'): + try: + pyc = fileop.byte_compile( + outfile, + hashed_invalidation=bc_hashed_invalidation) + outfiles.append(pyc) + except Exception: + # Don't give up if byte-compilation fails, + # but log it and perhaps warn the user + logger.warning('Byte-compilation failed', + exc_info=True) + else: + fn = os.path.basename(convert_path(arcname)) + workname = os.path.join(workdir, fn) + with zf.open(arcname) as bf: + fileop.copy_stream(bf, workname) + + dn, fn = os.path.split(outfile) + maker.target_dir = dn + filenames = maker.make(fn) + fileop.set_executable_mode(filenames) + outfiles.extend(filenames) + + if lib_only: + logger.debug('lib_only: returning None') + dist = None + else: + # Generate scripts + + # Try to get pydist.json so we can see if there are + # any commands to generate. If this fails (e.g. because + # of a legacy wheel), log a warning but don't give up. + commands = None + file_version = self.info['Wheel-Version'] + if file_version == '1.0': + # Use legacy info + ep = posixpath.join(info_dir, 'entry_points.txt') + try: + with zf.open(ep) as bwf: + epdata = read_exports(bwf) + commands = {} + for key in ('console', 'gui'): + k = '%s_scripts' % key + if k in epdata: + commands['wrap_%s' % key] = d = {} + for v in epdata[k].values(): + s = '%s:%s' % (v.prefix, v.suffix) + if v.flags: + s += ' [%s]' % ','.join(v.flags) + d[v.name] = s + except Exception: + logger.warning('Unable to read legacy script ' + 'metadata, so cannot generate ' + 'scripts') + else: + try: + with zf.open(metadata_name) as bwf: + wf = wrapper(bwf) + commands = json.load(wf).get('extensions') + if commands: + commands = commands.get('python.commands') + except Exception: + logger.warning('Unable to read JSON metadata, so ' + 'cannot generate scripts') + if commands: + console_scripts = commands.get('wrap_console', {}) + gui_scripts = commands.get('wrap_gui', {}) + if console_scripts or gui_scripts: + script_dir = paths.get('scripts', '') + if not os.path.isdir(script_dir): + raise ValueError('Valid script path not ' + 'specified') + maker.target_dir = script_dir + for k, v in console_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script) + fileop.set_executable_mode(filenames) + + if gui_scripts: + options = {'gui': True} + for k, v in gui_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script, options) + fileop.set_executable_mode(filenames) + + p = os.path.join(libdir, info_dir) + dist = InstalledDistribution(p) + + # Write SHARED + paths = dict(paths) # don't change passed in dict + del paths['purelib'] + del paths['platlib'] + paths['lib'] = libdir + p = dist.write_shared_locations(paths, dry_run) + if p: + outfiles.append(p) + + # Write RECORD + dist.write_installed_files(outfiles, paths['prefix'], + dry_run) + return dist + except Exception: # pragma: no cover + logger.exception('installation failed.') + fileop.rollback() + raise + finally: + shutil.rmtree(workdir) + + def _get_dylib_cache(self): + global cache + if cache is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('dylib-cache'), + '%s.%s' % sys.version_info[:2]) + cache = Cache(base) + return cache + + def _get_extensions(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + arcname = posixpath.join(info_dir, 'EXTENSIONS') + wrapper = codecs.getreader('utf-8') + result = [] + with ZipFile(pathname, 'r') as zf: + try: + with zf.open(arcname) as bf: + wf = wrapper(bf) + extensions = json.load(wf) + cache = self._get_dylib_cache() + prefix = cache.prefix_to_dir(pathname) + cache_base = os.path.join(cache.base, prefix) + if not os.path.isdir(cache_base): + os.makedirs(cache_base) + for name, relpath in extensions.items(): + dest = os.path.join(cache_base, convert_path(relpath)) + if not os.path.exists(dest): + extract = True + else: + file_time = os.stat(dest).st_mtime + file_time = datetime.datetime.fromtimestamp( + file_time) + info = zf.getinfo(relpath) + wheel_time = datetime.datetime(*info.date_time) + extract = wheel_time > file_time + if extract: + zf.extract(relpath, cache_base) + result.append((name, dest)) + except KeyError: + pass + return result + + def is_compatible(self): + """ + Determine if a wheel is compatible with the running system. + """ + return is_compatible(self) + + def is_mountable(self): + """ + Determine if a wheel is asserted as mountable by its metadata. + """ + return True # for now - metadata details TBD + + def mount(self, append=False): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if not self.is_compatible(): + msg = 'Wheel %s not compatible with this Python.' % pathname + raise DistlibException(msg) + if not self.is_mountable(): + msg = 'Wheel %s is marked as not mountable.' % pathname + raise DistlibException(msg) + if pathname in sys.path: + logger.debug('%s already in path', pathname) + else: + if append: + sys.path.append(pathname) + else: + sys.path.insert(0, pathname) + extensions = self._get_extensions() + if extensions: + if _hook not in sys.meta_path: + sys.meta_path.append(_hook) + _hook.add(pathname, extensions) + + def unmount(self): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if pathname not in sys.path: + logger.debug('%s not in path', pathname) + else: + sys.path.remove(pathname) + if pathname in _hook.impure_wheels: + _hook.remove(pathname) + if not _hook.impure_wheels: + if _hook in sys.meta_path: + sys.meta_path.remove(_hook) + + def verify(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + # data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + # metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message_from_file(wf) + # wv = message['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # TODO version verification + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + # See issue #115: some wheels have .. in their entries, but + # in the filename ... e.g. __main__..py ! So the check is + # updated to look for .. in the directory portions + p = u_arcname.split('/') + if '..' in p: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + def update(self, modifier, dest_dir=None, **kwargs): + """ + Update the contents of a wheel in a generic way. The modifier should + be a callable which expects a dictionary argument: its keys are + archive-entry paths, and its values are absolute filesystem paths + where the contents the corresponding archive entries can be found. The + modifier is free to change the contents of the files pointed to, add + new entries and remove entries, before returning. This method will + extract the entire contents of the wheel to a temporary location, call + the modifier, and then use the passed (and possibly updated) + dictionary to write a new wheel. If ``dest_dir`` is specified, the new + wheel is written there -- otherwise, the original wheel is overwritten. + + The modifier should return True if it updated the wheel, else False. + This method returns the same value the modifier returns. + """ + + def get_version(path_map, info_dir): + version = path = None + key = '%s/%s' % (info_dir, LEGACY_METADATA_FILENAME) + if key not in path_map: + key = '%s/PKG-INFO' % info_dir + if key in path_map: + path = path_map[key] + version = Metadata(path=path).version + return version, path + + def update_version(version, path): + updated = None + try: + NormalizedVersion(version) + i = version.find('-') + if i < 0: + updated = '%s+1' % version + else: + parts = [int(s) for s in version[i + 1:].split('.')] + parts[-1] += 1 + updated = '%s+%s' % (version[:i], '.'.join( + str(i) for i in parts)) + except UnsupportedVersionError: + logger.debug( + 'Cannot update non-compliant (PEP-440) ' + 'version %r', version) + if updated: + md = Metadata(path=path) + md.version = updated + legacy = path.endswith(LEGACY_METADATA_FILENAME) + md.write(path=path, legacy=legacy) + logger.debug('Version updated from %r to %r', version, updated) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + record_name = posixpath.join(info_dir, 'RECORD') + with tempdir() as workdir: + with ZipFile(pathname, 'r') as zf: + path_map = {} + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if u_arcname == record_name: + continue + if '..' in u_arcname: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + zf.extract(zinfo, workdir) + path = os.path.join(workdir, convert_path(u_arcname)) + path_map[u_arcname] = path + + # Remember the version. + original_version, _ = get_version(path_map, info_dir) + # Files extracted. Call the modifier. + modified = modifier(path_map, **kwargs) + if modified: + # Something changed - need to build a new wheel. + current_version, path = get_version(path_map, info_dir) + if current_version and (current_version == original_version): + # Add or update local version to signify changes. + update_version(current_version, path) + # Decide where the new wheel goes. + if dest_dir is None: + fd, newpath = tempfile.mkstemp(suffix='.whl', + prefix='wheel-update-', + dir=workdir) + os.close(fd) + else: + if not os.path.isdir(dest_dir): + raise DistlibException('Not a directory: %r' % + dest_dir) + newpath = os.path.join(dest_dir, self.filename) + archive_paths = list(path_map.items()) + distinfo = os.path.join(workdir, info_dir) + info = distinfo, info_dir + self.write_records(info, workdir, archive_paths) + self.build_zip(newpath, archive_paths) + if dest_dir is None: + shutil.copyfile(newpath, pathname) + return modified + + +def _get_glibc_version(): + import platform + ver = platform.libc_ver() + result = [] + if ver[0] == 'glibc': + for s in ver[1].split('.'): + result.append(int(s) if s.isdigit() else 0) + result = tuple(result) + return result + + +def compatible_tags(): + """ + Return (pyver, abi, arch) tuples compatible with this Python. + """ + versions = [VER_SUFFIX] + major = VER_SUFFIX[0] + for minor in range(sys.version_info[1] - 1, -1, -1): + versions.append(''.join([major, str(minor)])) + + abis = [] + for suffix in _get_suffixes(): + if suffix.startswith('.abi'): + abis.append(suffix.split('.', 2)[1]) + abis.sort() + if ABI != 'none': + abis.insert(0, ABI) + abis.append('none') + result = [] + + arches = [ARCH] + if sys.platform == 'darwin': + m = re.match(r'(\w+)_(\d+)_(\d+)_(\w+)$', ARCH) + if m: + name, major, minor, arch = m.groups() + minor = int(minor) + matches = [arch] + if arch in ('i386', 'ppc'): + matches.append('fat') + if arch in ('i386', 'ppc', 'x86_64'): + matches.append('fat3') + if arch in ('ppc64', 'x86_64'): + matches.append('fat64') + if arch in ('i386', 'x86_64'): + matches.append('intel') + if arch in ('i386', 'x86_64', 'intel', 'ppc', 'ppc64'): + matches.append('universal') + while minor >= 0: + for match in matches: + s = '%s_%s_%s_%s' % (name, major, minor, match) + if s != ARCH: # already there + arches.append(s) + minor -= 1 + + # Most specific - our Python version, ABI and arch + for abi in abis: + for arch in arches: + result.append((''.join((IMP_PREFIX, versions[0])), abi, arch)) + # manylinux + if abi != 'none' and sys.platform.startswith('linux'): + arch = arch.replace('linux_', '') + parts = _get_glibc_version() + if len(parts) == 2: + if parts >= (2, 5): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux1_%s' % arch)) + if parts >= (2, 12): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2010_%s' % arch)) + if parts >= (2, 17): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2014_%s' % arch)) + result.append( + (''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux_%s_%s_%s' % (parts[0], parts[1], arch))) + + # where no ABI / arch dependency, but IMP_PREFIX dependency + for i, version in enumerate(versions): + result.append((''.join((IMP_PREFIX, version)), 'none', 'any')) + if i == 0: + result.append((''.join((IMP_PREFIX, version[0])), 'none', 'any')) + + # no IMP_PREFIX, ABI or arch dependency + for i, version in enumerate(versions): + result.append((''.join(('py', version)), 'none', 'any')) + if i == 0: + result.append((''.join(('py', version[0])), 'none', 'any')) + + return set(result) + + +COMPATIBLE_TAGS = compatible_tags() + +del compatible_tags + + +def is_compatible(wheel, tags=None): + if not isinstance(wheel, Wheel): + wheel = Wheel(wheel) # assume it's a filename + result = False + if tags is None: + tags = COMPATIBLE_TAGS + for ver, abi, arch in tags: + if ver in wheel.pyver and abi in wheel.abi and arch in wheel.arch: + result = True + break + return result diff --git a/env/Lib/site-packages/pip/_vendor/distro/__init__.py b/env/Lib/site-packages/pip/_vendor/distro/__init__.py new file mode 100644 index 00000000..7686fe85 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distro/__init__.py @@ -0,0 +1,54 @@ +from .distro import ( + NORMALIZED_DISTRO_ID, + NORMALIZED_LSB_ID, + NORMALIZED_OS_ID, + LinuxDistribution, + __version__, + build_number, + codename, + distro_release_attr, + distro_release_info, + id, + info, + like, + linux_distribution, + lsb_release_attr, + lsb_release_info, + major_version, + minor_version, + name, + os_release_attr, + os_release_info, + uname_attr, + uname_info, + version, + version_parts, +) + +__all__ = [ + "NORMALIZED_DISTRO_ID", + "NORMALIZED_LSB_ID", + "NORMALIZED_OS_ID", + "LinuxDistribution", + "build_number", + "codename", + "distro_release_attr", + "distro_release_info", + "id", + "info", + "like", + "linux_distribution", + "lsb_release_attr", + "lsb_release_info", + "major_version", + "minor_version", + "name", + "os_release_attr", + "os_release_info", + "uname_attr", + "uname_info", + "version", + "version_parts", +] + +__version__ = __version__ diff --git a/env/Lib/site-packages/pip/_vendor/distro/__main__.py b/env/Lib/site-packages/pip/_vendor/distro/__main__.py new file mode 100644 index 00000000..0c01d5b0 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distro/__main__.py @@ -0,0 +1,4 @@ +from .distro import main + +if __name__ == "__main__": + main() diff --git a/env/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c5868b969c34ba423392ca4111330ee04356105 GIT binary patch literal 947 zcmcJNzi-n(6vxkw^E=M(HfaXLhBA~QKphZ50@9&UXsd?l$Pw^?FviRgHIo4-*b%ppv`ibi{Sbq z4L&oEd4|u>00T`hF$X!cz`{J_u>b`uLJ><)!ZMVx0u`)66>CsK8*HpY9UIWVCN!}H zEo?&@JJ7){ba4YVa1%DM2R-aV-(WN5nO_Xp5^3ej+|c@Ir1rzU?j9T-zj-;{hrJOW z?N8nwAM*W?Zmp=}$t#kYE7IX4J2aL-axs!otmHI_Wf1ivAEMJ}p-S)|mXZcIZrXNk$ORXtc zwvFz)P%T^2Hp*aSYh_(E!f3tBs*qKwBy{ku-9?<~#l^_lUd}#uRU8d_D!qHAEJB`8 zAe0DY0=*GcCDaHup-yNJnuHdiP3RE1gbl(bp-1Qwwg`h12g89b-2LCbx)~Jmv8FT({etBDZj-i+M;)S}O8qiCQc2ivC48yoFw+!=!{R7wZ W;n!}zYQ8UCJ!Or-hpM`lrv3)wO#hq! literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d5a6166dcdbf51e51a262289f1e1c41e41cb5f1 GIT binary patch literal 279 zcmX@j%ge<81nN_}(;a~HV-N=hn4pZ$T0q8hh7^Vr#vF!R#wbQchE%2$rfdxch9V9o zhE&GYP=$;PmCTjQnk+9FfdZP0w^(u$GxKh7#K(i^_;^1}=38tjnZ+eV`9;h?6(E_s z#N5>Q_>~NwK}P%vaJ7o@Nlh%u%gjrU2{tx}2`EZ+&Mz%0PSrJvNzE&Z@ySezDb6fO z)h$R&&Q45EEsiP3EYOcHOU+BkFVcsYtq-$Lub}c5hfQvNN@-52T@lEiAa@l@0f`UH hjEszT86+Msb9Yo-VwSwg!qMvXfti6ts)z$94FGNpNo@cC literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb63b14eea23d0c87fda5f6a1004702edcc026d8 GIT binary patch literal 53795 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 NjpvGO^e)4=+2;!*@JtTPV14V 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 F|34?CD1HC{ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distro/distro.py b/env/Lib/site-packages/pip/_vendor/distro/distro.py new file mode 100644 index 00000000..78ccdfa4 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distro/distro.py @@ -0,0 +1,1403 @@ +#!/usr/bin/env python +# Copyright 2015-2021 Nir Cohen +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +The ``distro`` package (``distro`` stands for Linux Distribution) provides +information about the Linux distribution it runs on, such as a reliable +machine-readable distro ID, or version information. + +It is the recommended replacement for Python's original +:py:func:`platform.linux_distribution` function, but it provides much more +functionality. An alternative implementation became necessary because Python +3.5 deprecated this function, and Python 3.8 removed it altogether. Its +predecessor function :py:func:`platform.dist` was already deprecated since +Python 2.6 and removed in Python 3.8. Still, there are many cases in which +access to OS distribution information is needed. See `Python issue 1322 +`_ for more information. +""" + +import argparse +import json +import logging +import os +import re +import shlex +import subprocess +import sys +import warnings +from typing import ( + Any, + Callable, + Dict, + Iterable, + Optional, + Sequence, + TextIO, + Tuple, + Type, +) + +try: + from typing import TypedDict +except ImportError: + # Python 3.7 + TypedDict = dict + +__version__ = "1.9.0" + + +class VersionDict(TypedDict): + major: str + minor: str + build_number: str + + +class InfoDict(TypedDict): + id: str + version: str + version_parts: VersionDict + like: str + codename: str + + +_UNIXCONFDIR = os.environ.get("UNIXCONFDIR", "/etc") +_UNIXUSRLIBDIR = os.environ.get("UNIXUSRLIBDIR", "/usr/lib") +_OS_RELEASE_BASENAME = "os-release" + +#: Translation table for normalizing the "ID" attribute defined in os-release +#: files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as defined in the os-release file, translated to lower case, +#: with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_OS_ID = { + "ol": "oracle", # Oracle Linux + "opensuse-leap": "opensuse", # Newer versions of OpenSuSE report as opensuse-leap +} + +#: Translation table for normalizing the "Distributor ID" attribute returned by +#: the lsb_release command, for use by the :func:`distro.id` method. +#: +#: * Key: Value as returned by the lsb_release command, translated to lower +#: case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_LSB_ID = { + "enterpriseenterpriseas": "oracle", # Oracle Enterprise Linux 4 + "enterpriseenterpriseserver": "oracle", # Oracle Linux 5 + "redhatenterpriseworkstation": "rhel", # RHEL 6, 7 Workstation + "redhatenterpriseserver": "rhel", # RHEL 6, 7 Server + "redhatenterprisecomputenode": "rhel", # RHEL 6 ComputeNode +} + +#: Translation table for normalizing the distro ID derived from the file name +#: of distro release files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as derived from the file name of a distro release file, +#: translated to lower case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_DISTRO_ID = { + "redhat": "rhel", # RHEL 6.x, 7.x +} + +# Pattern for content of distro release file (reversed) +_DISTRO_RELEASE_CONTENT_REVERSED_PATTERN = re.compile( + r"(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)" +) + +# Pattern for base file name of distro release file +_DISTRO_RELEASE_BASENAME_PATTERN = re.compile(r"(\w+)[-_](release|version)$") + +# Base file names to be looked up for if _UNIXCONFDIR is not readable. +_DISTRO_RELEASE_BASENAMES = [ + "SuSE-release", + "altlinux-release", + "arch-release", + "base-release", + "centos-release", + "fedora-release", + "gentoo-release", + "mageia-release", + "mandrake-release", + "mandriva-release", + "mandrivalinux-release", + "manjaro-release", + "oracle-release", + "redhat-release", + "rocky-release", + "sl-release", + "slackware-version", +] + +# Base file names to be ignored when searching for distro release file +_DISTRO_RELEASE_IGNORE_BASENAMES = ( + "debian_version", + "lsb-release", + "oem-release", + _OS_RELEASE_BASENAME, + "system-release", + "plesk-release", + "iredmail-release", + "board-release", + "ec2_version", +) + + +def linux_distribution(full_distribution_name: bool = True) -> Tuple[str, str, str]: + """ + .. deprecated:: 1.6.0 + + :func:`distro.linux_distribution()` is deprecated. It should only be + used as a compatibility shim with Python's + :py:func:`platform.linux_distribution()`. Please use :func:`distro.id`, + :func:`distro.version` and :func:`distro.name` instead. + + Return information about the current OS distribution as a tuple + ``(id_name, version, codename)`` with items as follows: + + * ``id_name``: If *full_distribution_name* is false, the result of + :func:`distro.id`. Otherwise, the result of :func:`distro.name`. + + * ``version``: The result of :func:`distro.version`. + + * ``codename``: The extra item (usually in parentheses) after the + os-release version number, or the result of :func:`distro.codename`. + + The interface of this function is compatible with the original + :py:func:`platform.linux_distribution` function, supporting a subset of + its parameters. + + The data it returns may not exactly be the same, because it uses more data + sources than the original function, and that may lead to different data if + the OS distribution is not consistent across multiple data sources it + provides (there are indeed such distributions ...). + + Another reason for differences is the fact that the :func:`distro.id` + method normalizes the distro ID string to a reliable machine-readable value + for a number of popular OS distributions. + """ + warnings.warn( + "distro.linux_distribution() is deprecated. It should only be used as a " + "compatibility shim with Python's platform.linux_distribution(). Please use " + "distro.id(), distro.version() and distro.name() instead.", + DeprecationWarning, + stacklevel=2, + ) + return _distro.linux_distribution(full_distribution_name) + + +def id() -> str: + """ + Return the distro ID of the current distribution, as a + machine-readable string. + + For a number of OS distributions, the returned distro ID value is + *reliable*, in the sense that it is documented and that it does not change + across releases of the distribution. + + This package maintains the following reliable distro ID values: + + ============== ========================================= + Distro ID Distribution + ============== ========================================= + "ubuntu" Ubuntu + "debian" Debian + "rhel" RedHat Enterprise Linux + "centos" CentOS + "fedora" Fedora + "sles" SUSE Linux Enterprise Server + "opensuse" openSUSE + "amzn" Amazon Linux + "arch" Arch Linux + "buildroot" Buildroot + "cloudlinux" CloudLinux OS + "exherbo" Exherbo Linux + "gentoo" GenToo Linux + "ibm_powerkvm" IBM PowerKVM + "kvmibm" KVM for IBM z Systems + "linuxmint" Linux Mint + "mageia" Mageia + "mandriva" Mandriva Linux + "parallels" Parallels + "pidora" Pidora + "raspbian" Raspbian + "oracle" Oracle Linux (and Oracle Enterprise Linux) + "scientific" Scientific Linux + "slackware" Slackware + "xenserver" XenServer + "openbsd" OpenBSD + "netbsd" NetBSD + "freebsd" FreeBSD + "midnightbsd" MidnightBSD + "rocky" Rocky Linux + "aix" AIX + "guix" Guix System + "altlinux" ALT Linux + ============== ========================================= + + If you have a need to get distros for reliable IDs added into this set, + or if you find that the :func:`distro.id` function returns a different + distro ID for one of the listed distros, please create an issue in the + `distro issue tracker`_. + + **Lookup hierarchy and transformations:** + + First, the ID is obtained from the following sources, in the specified + order. The first available and non-empty value is used: + + * the value of the "ID" attribute of the os-release file, + + * the value of the "Distributor ID" attribute returned by the lsb_release + command, + + * the first part of the file name of the distro release file, + + The so determined ID value then passes the following transformations, + before it is returned by this method: + + * it is translated to lower case, + + * blanks (which should not be there anyway) are translated to underscores, + + * a normalization of the ID is performed, based upon + `normalization tables`_. The purpose of this normalization is to ensure + that the ID is as reliable as possible, even across incompatible changes + in the OS distributions. A common reason for an incompatible change is + the addition of an os-release file, or the addition of the lsb_release + command, with ID values that differ from what was previously determined + from the distro release file name. + """ + return _distro.id() + + +def name(pretty: bool = False) -> str: + """ + Return the name of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the name is returned without version or codename. + (e.g. "CentOS Linux") + + If *pretty* is true, the version and codename are appended. + (e.g. "CentOS Linux 7.1.1503 (Core)") + + **Lookup hierarchy:** + + The name is obtained from the following sources, in the specified order. + The first available and non-empty value is used: + + * If *pretty* is false: + + - the value of the "NAME" attribute of the os-release file, + + - the value of the "Distributor ID" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file. + + * If *pretty* is true: + + - the value of the "PRETTY_NAME" attribute of the os-release file, + + - the value of the "Description" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file, appended + with the value of the pretty version ("" and "" + fields) of the distro release file, if available. + """ + return _distro.name(pretty) + + +def version(pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the version is returned without codename (e.g. + "7.0"). + + If *pretty* is true, the codename in parenthesis is appended, if the + codename is non-empty (e.g. "7.0 (Maipo)"). + + Some distributions provide version numbers with different precisions in + the different sources of distribution information. Examining the different + sources in a fixed priority order does not always yield the most precise + version (e.g. for Debian 8.2, or CentOS 7.1). + + Some other distributions may not provide this kind of information. In these + cases, an empty string would be returned. This behavior can be observed + with rolling releases distributions (e.g. Arch Linux). + + The *best* parameter can be used to control the approach for the returned + version: + + If *best* is false, the first non-empty version number in priority order of + the examined sources is returned. + + If *best* is true, the most precise version number out of all examined + sources is returned. + + **Lookup hierarchy:** + + In all cases, the version number is obtained from the following sources. + If *best* is false, this order represents the priority order: + + * the value of the "VERSION_ID" attribute of the os-release file, + * the value of the "Release" attribute returned by the lsb_release + command, + * the version number parsed from the "" field of the first line + of the distro release file, + * the version number parsed from the "PRETTY_NAME" attribute of the + os-release file, if it follows the format of the distro release files. + * the version number parsed from the "Description" attribute returned by + the lsb_release command, if it follows the format of the distro release + files. + """ + return _distro.version(pretty, best) + + +def version_parts(best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the current OS distribution as a tuple + ``(major, minor, build_number)`` with items as follows: + + * ``major``: The result of :func:`distro.major_version`. + + * ``minor``: The result of :func:`distro.minor_version`. + + * ``build_number``: The result of :func:`distro.build_number`. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.version_parts(best) + + +def major_version(best: bool = False) -> str: + """ + Return the major version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The major version is the first + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.major_version(best) + + +def minor_version(best: bool = False) -> str: + """ + Return the minor version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The minor version is the second + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.minor_version(best) + + +def build_number(best: bool = False) -> str: + """ + Return the build number of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The build number is the third part + of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.build_number(best) + + +def like() -> str: + """ + Return a space-separated list of distro IDs of distributions that are + closely related to the current OS distribution in regards to packaging + and programming interfaces, for example distributions the current + distribution is a derivative from. + + **Lookup hierarchy:** + + This information item is only provided by the os-release file. + For details, see the description of the "ID_LIKE" attribute in the + `os-release man page + `_. + """ + return _distro.like() + + +def codename() -> str: + """ + Return the codename for the release of the current OS distribution, + as a string. + + If the distribution does not have a codename, an empty string is returned. + + Note that the returned codename is not always really a codename. For + example, openSUSE returns "x86_64". This function does not handle such + cases in any special way and just returns the string it finds, if any. + + **Lookup hierarchy:** + + * the codename within the "VERSION" attribute of the os-release file, if + provided, + + * the value of the "Codename" attribute returned by the lsb_release + command, + + * the value of the "" field of the distro release file. + """ + return _distro.codename() + + +def info(pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information items about the current OS + distribution in a dictionary, as shown in the following example: + + .. sourcecode:: python + + { + 'id': 'rhel', + 'version': '7.0', + 'version_parts': { + 'major': '7', + 'minor': '0', + 'build_number': '' + }, + 'like': 'fedora', + 'codename': 'Maipo' + } + + The dictionary structure and keys are always the same, regardless of which + information items are available in the underlying data sources. The values + for the various keys are as follows: + + * ``id``: The result of :func:`distro.id`. + + * ``version``: The result of :func:`distro.version`. + + * ``version_parts -> major``: The result of :func:`distro.major_version`. + + * ``version_parts -> minor``: The result of :func:`distro.minor_version`. + + * ``version_parts -> build_number``: The result of + :func:`distro.build_number`. + + * ``like``: The result of :func:`distro.like`. + + * ``codename``: The result of :func:`distro.codename`. + + For a description of the *pretty* and *best* parameters, see the + :func:`distro.version` method. + """ + return _distro.info(pretty, best) + + +def os_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the os-release file data source of the current OS distribution. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_info() + + +def lsb_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the lsb_release command data source of the current OS distribution. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_info() + + +def distro_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_info() + + +def uname_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + """ + return _distro.uname_info() + + +def os_release_attr(attribute: str) -> str: + """ + Return a single named information item from the os-release file data source + of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_attr(attribute) + + +def lsb_release_attr(attribute: str) -> str: + """ + Return a single named information item from the lsb_release command output + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_attr(attribute) + + +def distro_release_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_attr(attribute) + + +def uname_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + """ + return _distro.uname_attr(attribute) + + +try: + from functools import cached_property +except ImportError: + # Python < 3.8 + class cached_property: # type: ignore + """A version of @property which caches the value. On access, it calls the + underlying function and sets the value in `__dict__` so future accesses + will not re-call the property. + """ + + def __init__(self, f: Callable[[Any], Any]) -> None: + self._fname = f.__name__ + self._f = f + + def __get__(self, obj: Any, owner: Type[Any]) -> Any: + assert obj is not None, f"call {self._fname} on an instance" + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution: + """ + Provides information about a OS distribution. + + This package creates a private module-global instance of this class with + default initialization arguments, that is used by the + `consolidated accessor functions`_ and `single source accessor functions`_. + By using default initialization arguments, that module-global instance + returns data about the current OS distribution (i.e. the distro this + package runs on). + + Normally, it is not necessary to create additional instances of this class. + However, in situations where control is needed over the exact data sources + that are used, instances of this class can be created with a specific + distro release file, or a specific os-release file, or without invoking the + lsb_release command. + """ + + def __init__( + self, + include_lsb: Optional[bool] = None, + os_release_file: str = "", + distro_release_file: str = "", + include_uname: Optional[bool] = None, + root_dir: Optional[str] = None, + include_oslevel: Optional[bool] = None, + ) -> None: + """ + The initialization method of this class gathers information from the + available data sources, and stores that in private instance attributes. + Subsequent access to the information items uses these private instance + attributes, so that the data sources are read only once. + + Parameters: + + * ``include_lsb`` (bool): Controls whether the + `lsb_release command output`_ is included as a data source. + + If the lsb_release command is not available in the program execution + path, the data source for the lsb_release command will be empty. + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is to be used as a data source. + + An empty string (the default) will cause the default path name to + be used (see `os-release file`_ for details). + + If the specified or defaulted os-release file does not exist, the + data source for the os-release file will be empty. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is to be used as a data source. + + An empty string (the default) will cause a default search algorithm + to be used (see `distro release file`_ for details). + + If the specified distro release file does not exist, or if no default + distro release file can be found, the data source for the distro + release file will be empty. + + * ``include_uname`` (bool): Controls whether uname command output is + included as a data source. If the uname command is not available in + the program execution path the data source for the uname command will + be empty. + + * ``root_dir`` (string): The absolute path to the root directory to use + to find distro-related information files. Note that ``include_*`` + parameters must not be enabled in combination with ``root_dir``. + + * ``include_oslevel`` (bool): Controls whether (AIX) oslevel command + output is included as a data source. If the oslevel command is not + available in the program execution path the data source will be + empty. + + Public instance attributes: + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. + This controls whether the lsb information will be loaded. + + * ``include_uname`` (bool): The result of the ``include_uname`` + parameter. This controls whether the uname information will + be loaded. + + * ``include_oslevel`` (bool): The result of the ``include_oslevel`` + parameter. This controls whether (AIX) oslevel information will be + loaded. + + * ``root_dir`` (string): The result of the ``root_dir`` parameter. + The absolute path to the root directory to use to find distro-related + information files. + + Raises: + + * :py:exc:`ValueError`: Initialization parameters combination is not + supported. + + * :py:exc:`OSError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`UnicodeError`: A data source has unexpected characters or + uses an unexpected encoding. + """ + self.root_dir = root_dir + self.etc_dir = os.path.join(root_dir, "etc") if root_dir else _UNIXCONFDIR + self.usr_lib_dir = ( + os.path.join(root_dir, "usr/lib") if root_dir else _UNIXUSRLIBDIR + ) + + if os_release_file: + self.os_release_file = os_release_file + else: + etc_dir_os_release_file = os.path.join(self.etc_dir, _OS_RELEASE_BASENAME) + usr_lib_os_release_file = os.path.join( + self.usr_lib_dir, _OS_RELEASE_BASENAME + ) + + # NOTE: The idea is to respect order **and** have it set + # at all times for API backwards compatibility. + if os.path.isfile(etc_dir_os_release_file) or not os.path.isfile( + usr_lib_os_release_file + ): + self.os_release_file = etc_dir_os_release_file + else: + self.os_release_file = usr_lib_os_release_file + + self.distro_release_file = distro_release_file or "" # updated later + + is_root_dir_defined = root_dir is not None + if is_root_dir_defined and (include_lsb or include_uname or include_oslevel): + raise ValueError( + "Including subprocess data sources from specific root_dir is disallowed" + " to prevent false information" + ) + self.include_lsb = ( + include_lsb if include_lsb is not None else not is_root_dir_defined + ) + self.include_uname = ( + include_uname if include_uname is not None else not is_root_dir_defined + ) + self.include_oslevel = ( + include_oslevel if include_oslevel is not None else not is_root_dir_defined + ) + + def __repr__(self) -> str: + """Return repr of all info""" + return ( + "LinuxDistribution(" + "os_release_file={self.os_release_file!r}, " + "distro_release_file={self.distro_release_file!r}, " + "include_lsb={self.include_lsb!r}, " + "include_uname={self.include_uname!r}, " + "include_oslevel={self.include_oslevel!r}, " + "root_dir={self.root_dir!r}, " + "_os_release_info={self._os_release_info!r}, " + "_lsb_release_info={self._lsb_release_info!r}, " + "_distro_release_info={self._distro_release_info!r}, " + "_uname_info={self._uname_info!r}, " + "_oslevel_info={self._oslevel_info!r})".format(self=self) + ) + + def linux_distribution( + self, full_distribution_name: bool = True + ) -> Tuple[str, str, str]: + """ + Return information about the OS distribution that is compatible + with Python's :func:`platform.linux_distribution`, supporting a subset + of its parameters. + + For details, see :func:`distro.linux_distribution`. + """ + return ( + self.name() if full_distribution_name else self.id(), + self.version(), + self._os_release_info.get("release_codename") or self.codename(), + ) + + def id(self) -> str: + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + + def normalize(distro_id: str, table: Dict[str, str]) -> str: + distro_id = distro_id.lower().replace(" ", "_") + return table.get(distro_id, distro_id) + + distro_id = self.os_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_OS_ID) + + distro_id = self.lsb_release_attr("distributor_id") + if distro_id: + return normalize(distro_id, NORMALIZED_LSB_ID) + + distro_id = self.distro_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + distro_id = self.uname_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + return "" + + def name(self, pretty: bool = False) -> str: + """ + Return the name of the OS distribution, as a string. + + For details, see :func:`distro.name`. + """ + name = ( + self.os_release_attr("name") + or self.lsb_release_attr("distributor_id") + or self.distro_release_attr("name") + or self.uname_attr("name") + ) + if pretty: + name = self.os_release_attr("pretty_name") or self.lsb_release_attr( + "description" + ) + if not name: + name = self.distro_release_attr("name") or self.uname_attr("name") + version = self.version(pretty=True) + if version: + name = f"{name} {version}" + return name or "" + + def version(self, pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the OS distribution, as a string. + + For details, see :func:`distro.version`. + """ + versions = [ + self.os_release_attr("version_id"), + self.lsb_release_attr("release"), + self.distro_release_attr("version_id"), + self._parse_distro_release_content(self.os_release_attr("pretty_name")).get( + "version_id", "" + ), + self._parse_distro_release_content( + self.lsb_release_attr("description") + ).get("version_id", ""), + self.uname_attr("release"), + ] + if self.uname_attr("id").startswith("aix"): + # On AIX platforms, prefer oslevel command output. + versions.insert(0, self.oslevel_info()) + elif self.id() == "debian" or "debian" in self.like().split(): + # On Debian-like, add debian_version file content to candidates list. + versions.append(self._debian_version) + version = "" + if best: + # This algorithm uses the last version in priority order that has + # the best precision. If the versions are not in conflict, that + # does not matter; otherwise, using the last one instead of the + # first one might be considered a surprise. + for v in versions: + if v.count(".") > version.count(".") or version == "": + version = v + else: + for v in versions: + if v != "": + version = v + break + if pretty and version and self.codename(): + version = f"{version} ({self.codename()})" + return version + + def version_parts(self, best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the OS distribution, as a tuple of version + numbers. + + For details, see :func:`distro.version_parts`. + """ + version_str = self.version(best=best) + if version_str: + version_regex = re.compile(r"(\d+)\.?(\d+)?\.?(\d+)?") + matches = version_regex.match(version_str) + if matches: + major, minor, build_number = matches.groups() + return major, minor or "", build_number or "" + return "", "", "" + + def major_version(self, best: bool = False) -> str: + """ + Return the major version number of the current distribution. + + For details, see :func:`distro.major_version`. + """ + return self.version_parts(best)[0] + + def minor_version(self, best: bool = False) -> str: + """ + Return the minor version number of the current distribution. + + For details, see :func:`distro.minor_version`. + """ + return self.version_parts(best)[1] + + def build_number(self, best: bool = False) -> str: + """ + Return the build number of the current distribution. + + For details, see :func:`distro.build_number`. + """ + return self.version_parts(best)[2] + + def like(self) -> str: + """ + Return the IDs of distributions that are like the OS distribution. + + For details, see :func:`distro.like`. + """ + return self.os_release_attr("id_like") or "" + + def codename(self) -> str: + """ + Return the codename of the OS distribution. + + For details, see :func:`distro.codename`. + """ + try: + # Handle os_release specially since distros might purposefully set + # this to empty string to have no codename + return self._os_release_info["codename"] + except KeyError: + return ( + self.lsb_release_attr("codename") + or self.distro_release_attr("codename") + or "" + ) + + def info(self, pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information about the OS + distribution. + + For details, see :func:`distro.info`. + """ + return InfoDict( + id=self.id(), + version=self.version(pretty, best), + version_parts=VersionDict( + major=self.major_version(best), + minor=self.minor_version(best), + build_number=self.build_number(best), + ), + like=self.like(), + codename=self.codename(), + ) + + def os_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the os-release file data source of the OS distribution. + + For details, see :func:`distro.os_release_info`. + """ + return self._os_release_info + + def lsb_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the lsb_release command data source of the OS + distribution. + + For details, see :func:`distro.lsb_release_info`. + """ + return self._lsb_release_info + + def distro_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the distro release file data source of the OS + distribution. + + For details, see :func:`distro.distro_release_info`. + """ + return self._distro_release_info + + def uname_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the uname command data source of the OS distribution. + + For details, see :func:`distro.uname_info`. + """ + return self._uname_info + + def oslevel_info(self) -> str: + """ + Return AIX' oslevel command output. + """ + return self._oslevel_info + + def os_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the os-release file data + source of the OS distribution. + + For details, see :func:`distro.os_release_attr`. + """ + return self._os_release_info.get(attribute, "") + + def lsb_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the lsb_release command + output data source of the OS distribution. + + For details, see :func:`distro.lsb_release_attr`. + """ + return self._lsb_release_info.get(attribute, "") + + def distro_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the OS distribution. + + For details, see :func:`distro.distro_release_attr`. + """ + return self._distro_release_info.get(attribute, "") + + def uname_attr(self, attribute: str) -> str: + """ + Return a single named information item from the uname command + output data source of the OS distribution. + + For details, see :func:`distro.uname_attr`. + """ + return self._uname_info.get(attribute, "") + + @cached_property + def _os_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified os-release file. + + Returns: + A dictionary containing all information items. + """ + if os.path.isfile(self.os_release_file): + with open(self.os_release_file, encoding="utf-8") as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines: TextIO) -> Dict[str, str]: + """ + Parse the lines of an os-release file. + + Parameters: + + * lines: Iterable through the lines in the os-release file. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + lexer = shlex.shlex(lines, posix=True) + lexer.whitespace_split = True + + tokens = list(lexer) + for token in tokens: + # At this point, all shell-like parsing has been done (i.e. + # comments processed, quotes and backslash escape sequences + # processed, multi-line values assembled, trailing newlines + # stripped, etc.), so the tokens are now either: + # * variable assignments: var=value + # * commands or their arguments (not allowed in os-release) + # Ignore any tokens that are not variable assignments + if "=" in token: + k, v = token.split("=", 1) + props[k.lower()] = v + + if "version" in props: + # extract release codename (if any) from version attribute + match = re.search(r"\((\D+)\)|,\s*(\D+)", props["version"]) + if match: + release_codename = match.group(1) or match.group(2) + props["codename"] = props["release_codename"] = release_codename + + if "version_codename" in props: + # os-release added a version_codename field. Use that in + # preference to anything else Note that some distros purposefully + # do not have code names. They should be setting + # version_codename="" + props["codename"] = props["version_codename"] + elif "ubuntu_codename" in props: + # Same as above but a non-standard field name used on older Ubuntus + props["codename"] = props["ubuntu_codename"] + + return props + + @cached_property + def _lsb_release_info(self) -> Dict[str, str]: + """ + Get the information items from the lsb_release command output. + + Returns: + A dictionary containing all information items. + """ + if not self.include_lsb: + return {} + try: + cmd = ("lsb_release", "-a") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + # Command not found or lsb_release returned error + except (OSError, subprocess.CalledProcessError): + return {} + content = self._to_str(stdout).splitlines() + return self._parse_lsb_release_content(content) + + @staticmethod + def _parse_lsb_release_content(lines: Iterable[str]) -> Dict[str, str]: + """ + Parse the output of the lsb_release command. + + Parameters: + + * lines: Iterable through the lines of the lsb_release output. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + for line in lines: + kv = line.strip("\n").split(":", 1) + if len(kv) != 2: + # Ignore lines without colon. + continue + k, v = kv + props.update({k.replace(" ", "_").lower(): v.strip()}) + return props + + @cached_property + def _uname_info(self) -> Dict[str, str]: + if not self.include_uname: + return {} + try: + cmd = ("uname", "-rs") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @cached_property + def _oslevel_info(self) -> str: + if not self.include_oslevel: + return "" + try: + stdout = subprocess.check_output("oslevel", stderr=subprocess.DEVNULL) + except (OSError, subprocess.CalledProcessError): + return "" + return self._to_str(stdout).strip() + + @cached_property + def _debian_version(self) -> str: + try: + with open( + os.path.join(self.etc_dir, "debian_version"), encoding="ascii" + ) as fp: + return fp.readline().rstrip() + except FileNotFoundError: + return "" + + @staticmethod + def _parse_uname_content(lines: Sequence[str]) -> Dict[str, str]: + if not lines: + return {} + props = {} + match = re.search(r"^([^\s]+)\s+([\d\.]+)", lines[0].strip()) + if match: + name, version = match.groups() + + # This is to prevent the Linux kernel version from + # appearing as the 'best' version on otherwise + # identifiable distributions. + if name == "Linux": + return {} + props["id"] = name.lower() + props["name"] = name + props["release"] = version + return props + + @staticmethod + def _to_str(bytestring: bytes) -> str: + encoding = sys.getfilesystemencoding() + return bytestring.decode(encoding) + + @cached_property + def _distro_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified distro release file. + + Returns: + A dictionary containing all information items. + """ + if self.distro_release_file: + # If it was specified, we use it and parse what we can, even if + # its file name or content does not match the expected pattern. + distro_info = self._parse_distro_release_file(self.distro_release_file) + basename = os.path.basename(self.distro_release_file) + # The file name pattern for user-specified distro release files + # is somewhat more tolerant (compared to when searching for the + # file), because we want to use what was specified as best as + # possible. + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + else: + try: + basenames = [ + basename + for basename in os.listdir(self.etc_dir) + if basename not in _DISTRO_RELEASE_IGNORE_BASENAMES + and os.path.isfile(os.path.join(self.etc_dir, basename)) + ] + # We sort for repeatability in cases where there are multiple + # distro specific files; e.g. CentOS, Oracle, Enterprise all + # containing `redhat-release` on top of their own. + basenames.sort() + except OSError: + # This may occur when /etc is not readable but we can't be + # sure about the *-release files. Check common entries of + # /etc for information. If they turn out to not be there the + # error is handled in `_parse_distro_release_file()`. + basenames = _DISTRO_RELEASE_BASENAMES + for basename in basenames: + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match is None: + continue + filepath = os.path.join(self.etc_dir, basename) + distro_info = self._parse_distro_release_file(filepath) + # The name is always present if the pattern matches. + if "name" not in distro_info: + continue + self.distro_release_file = filepath + break + else: # the loop didn't "break": no candidate. + return {} + + if match is not None: + distro_info["id"] = match.group(1) + + # CloudLinux < 7: manually enrich info with proper id. + if "cloudlinux" in distro_info.get("name", "").lower(): + distro_info["id"] = "cloudlinux" + + return distro_info + + def _parse_distro_release_file(self, filepath: str) -> Dict[str, str]: + """ + Parse a distro release file. + + Parameters: + + * filepath: Path name of the distro release file. + + Returns: + A dictionary containing all information items. + """ + try: + with open(filepath, encoding="utf-8") as fp: + # Only parse the first line. For instance, on SLES there + # are multiple lines. We don't want them... + return self._parse_distro_release_content(fp.readline()) + except OSError: + # Ignore not being able to read a specific, seemingly version + # related file. + # See https://github.com/python-distro/distro/issues/162 + return {} + + @staticmethod + def _parse_distro_release_content(line: str) -> Dict[str, str]: + """ + Parse a line from a distro release file. + + Parameters: + * line: Line from the distro release file. Must be a unicode string + or a UTF-8 encoded byte string. + + Returns: + A dictionary containing all information items. + """ + matches = _DISTRO_RELEASE_CONTENT_REVERSED_PATTERN.match(line.strip()[::-1]) + distro_info = {} + if matches: + # regexp ensures non-None + distro_info["name"] = matches.group(3)[::-1] + if matches.group(2): + distro_info["version_id"] = matches.group(2)[::-1] + if matches.group(1): + distro_info["codename"] = matches.group(1)[::-1] + elif line: + distro_info["name"] = line.strip() + return distro_info + + +_distro = LinuxDistribution() + + +def main() -> None: + logger = logging.getLogger(__name__) + logger.setLevel(logging.DEBUG) + logger.addHandler(logging.StreamHandler(sys.stdout)) + + parser = argparse.ArgumentParser(description="OS distro info tool") + parser.add_argument( + "--json", "-j", help="Output in machine readable format", action="store_true" + ) + + parser.add_argument( + "--root-dir", + "-r", + type=str, + dest="root_dir", + help="Path to the root filesystem directory (defaults to /)", + ) + + args = parser.parse_args() + + if args.root_dir: + dist = LinuxDistribution( + include_lsb=False, + include_uname=False, + include_oslevel=False, + root_dir=args.root_dir, + ) + else: + dist = _distro + + if args.json: + logger.info(json.dumps(dist.info(), indent=4, sort_keys=True)) + else: + logger.info("Name: %s", dist.name(pretty=True)) + distribution_version = dist.version(pretty=True) + logger.info("Version: %s", distribution_version) + distribution_codename = dist.codename() + logger.info("Codename: %s", distribution_codename) + + +if __name__ == "__main__": + main() diff --git a/env/Lib/site-packages/pip/_vendor/distro/py.typed b/env/Lib/site-packages/pip/_vendor/distro/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_vendor/idna/__init__.py b/env/Lib/site-packages/pip/_vendor/idna/__init__.py new file mode 100644 index 00000000..a40eeafc --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/idna/__init__.py @@ -0,0 +1,44 @@ +from .package_data import __version__ +from .core import ( + IDNABidiError, + IDNAError, + InvalidCodepoint, + InvalidCodepointContext, + alabel, + check_bidi, + check_hyphen_ok, + check_initial_combiner, + check_label, + check_nfc, + decode, + encode, + ulabel, + uts46_remap, + valid_contextj, + valid_contexto, + valid_label_length, + valid_string_length, +) +from .intranges import intranges_contain + +__all__ = [ + "IDNABidiError", + "IDNAError", + "InvalidCodepoint", + "InvalidCodepointContext", + "alabel", + "check_bidi", + "check_hyphen_ok", + "check_initial_combiner", + "check_label", + "check_nfc", + "decode", + "encode", + "intranges_contain", + "ulabel", + "uts46_remap", + "valid_contextj", + "valid_contexto", + "valid_label_length", + "valid_string_length", +] diff --git a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70ab1366f2e36fd0cbbe90523104bb3735c396a7 GIT binary patch literal 868 zcmbu7zmL-}6vyp0O`E3auk?Bhhz&u8QUr(rAtWd_oOG%{Y*r-8O-$-*>_kpl(UF-M zv9s~F@E=%WVq!y_&`CF8CkMkJvEbp8_g?JpdwzbOJ+BM&y7m5D^0EoQSL6I%jZ5RK z)W!!8gBYfOLj<9*8)<_#QIlK9;w{wTHnMpewRs11xPu(tMP2S9m-kSQd&uK`)aL^< z;6pUzBQ)Y;H0D0?`2X5hem(TDobnWnde$ z4LSynfq8K08uSc2gTBGQU}`Wl7#WNWe1nO>fyOeprg}MvHYA}qCMA)2aDcL+Ow#{K z{m-n*`E%2%M%Bicq$$Rqz?n`DE|y1+!V^lQ(ESNt-M<^YkaUr4WkF~6LMnFQ30s8) zE9vaA_9Dz#KG$<4;!Mt2EXW*V^UxUI$@dqX$2^O-DSaYuXn8Y-#Z2RS6GHd}+&pji XuyGFl#?RXT20yHc+j!fS*Y$~C+Q95b literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8dffab863db0a2a532139346df03637af4b168fb GIT binary patch literal 4963 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 NGlviK-^E_c@CQTD#%llo literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d64efabc355bb1c335f8e3f52468e18111ab092 GIT binary patch literal 15778 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2548e3f1845c250e052aa8dfb81e10664fd4a78e GIT binary patch literal 99463 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99272c4e39656656d00d5b02bc65a87180d695b5 GIT binary patch literal 158835 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%0Dy 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 Tuple[bytes, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return b"", 0 + + return encode(data), len(data) + + def decode(self, data: bytes, errors: str = 'strict') -> Tuple[str, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return '', 0 + + return decode(data), len(data) + +class IncrementalEncoder(codecs.BufferedIncrementalEncoder): + def _buffer_encode(self, data: str, errors: str, final: bool) -> Tuple[bytes, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return b'', 0 + + labels = _unicode_dots_re.split(data) + trailing_dot = b'' + if labels: + if not labels[-1]: + trailing_dot = b'.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = b'.' + + result = [] + size = 0 + for label in labels: + result.append(alabel(label)) + if size: + size += 1 + size += len(label) + + # Join with U+002E + result_bytes = b'.'.join(result) + trailing_dot + size += len(trailing_dot) + return result_bytes, size + +class IncrementalDecoder(codecs.BufferedIncrementalDecoder): + def _buffer_decode(self, data: Any, errors: str, final: bool) -> Tuple[str, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return ('', 0) + + if not isinstance(data, str): + data = str(data, 'ascii') + + labels = _unicode_dots_re.split(data) + trailing_dot = '' + if labels: + if not labels[-1]: + trailing_dot = '.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = '.' + + result = [] + size = 0 + for label in labels: + result.append(ulabel(label)) + if size: + size += 1 + size += len(label) + + result_str = '.'.join(result) + trailing_dot + size += len(trailing_dot) + return (result_str, size) + + +class StreamWriter(Codec, codecs.StreamWriter): + pass + + +class StreamReader(Codec, codecs.StreamReader): + pass + + +def search_function(name: str) -> Optional[codecs.CodecInfo]: + if name != 'idna2008': + return None + return codecs.CodecInfo( + name=name, + encode=Codec().encode, + decode=Codec().decode, + incrementalencoder=IncrementalEncoder, + incrementaldecoder=IncrementalDecoder, + streamwriter=StreamWriter, + streamreader=StreamReader, + ) + +codecs.register(search_function) diff --git a/env/Lib/site-packages/pip/_vendor/idna/compat.py b/env/Lib/site-packages/pip/_vendor/idna/compat.py new file mode 100644 index 00000000..786e6bda --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/idna/compat.py @@ -0,0 +1,13 @@ +from .core import * +from .codec import * +from typing import Any, Union + +def ToASCII(label: str) -> bytes: + return encode(label) + +def ToUnicode(label: Union[bytes, bytearray]) -> str: + return decode(label) + +def nameprep(s: Any) -> None: + raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol') + diff --git a/env/Lib/site-packages/pip/_vendor/idna/core.py b/env/Lib/site-packages/pip/_vendor/idna/core.py new file mode 100644 index 00000000..0dae61ac --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/idna/core.py @@ -0,0 +1,395 @@ +from . import idnadata +import bisect +import unicodedata +import re +from typing import Union, Optional +from .intranges import intranges_contain + +_virama_combining_class = 9 +_alabel_prefix = b'xn--' +_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') + +class IDNAError(UnicodeError): + """ Base exception for all IDNA-encoding related problems """ + pass + + +class IDNABidiError(IDNAError): + """ Exception when bidirectional requirements are not satisfied """ + pass + + +class InvalidCodepoint(IDNAError): + """ Exception when a disallowed or unallocated codepoint is used """ + pass + + +class InvalidCodepointContext(IDNAError): + """ Exception when the codepoint is not valid in the context it is used """ + pass + + +def _combining_class(cp: int) -> int: + v = unicodedata.combining(chr(cp)) + if v == 0: + if not unicodedata.name(chr(cp)): + raise ValueError('Unknown character in unicodedata') + return v + +def _is_script(cp: str, script: str) -> bool: + return intranges_contain(ord(cp), idnadata.scripts[script]) + +def _punycode(s: str) -> bytes: + return s.encode('punycode') + +def _unot(s: int) -> str: + return 'U+{:04X}'.format(s) + + +def valid_label_length(label: Union[bytes, str]) -> bool: + if len(label) > 63: + return False + return True + + +def valid_string_length(label: Union[bytes, str], trailing_dot: bool) -> bool: + if len(label) > (254 if trailing_dot else 253): + return False + return True + + +def check_bidi(label: str, check_ltr: bool = False) -> bool: + # Bidi rules should only be applied if string contains RTL characters + bidi_label = False + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + if direction == '': + # String likely comes from a newer version of Unicode + raise IDNABidiError('Unknown directionality in label {} at position {}'.format(repr(label), idx)) + if direction in ['R', 'AL', 'AN']: + bidi_label = True + if not bidi_label and not check_ltr: + return True + + # Bidi rule 1 + direction = unicodedata.bidirectional(label[0]) + if direction in ['R', 'AL']: + rtl = True + elif direction == 'L': + rtl = False + else: + raise IDNABidiError('First codepoint in label {} must be directionality L, R or AL'.format(repr(label))) + + valid_ending = False + number_type = None # type: Optional[str] + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + + if rtl: + # Bidi rule 2 + if not direction in ['R', 'AL', 'AN', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a right-to-left label'.format(idx)) + # Bidi rule 3 + if direction in ['R', 'AL', 'EN', 'AN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + # Bidi rule 4 + if direction in ['AN', 'EN']: + if not number_type: + number_type = direction + else: + if number_type != direction: + raise IDNABidiError('Can not mix numeral types in a right-to-left label') + else: + # Bidi rule 5 + if not direction in ['L', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a left-to-right label'.format(idx)) + # Bidi rule 6 + if direction in ['L', 'EN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + + if not valid_ending: + raise IDNABidiError('Label ends with illegal codepoint directionality') + + return True + + +def check_initial_combiner(label: str) -> bool: + if unicodedata.category(label[0])[0] == 'M': + raise IDNAError('Label begins with an illegal combining character') + return True + + +def check_hyphen_ok(label: str) -> bool: + if label[2:4] == '--': + raise IDNAError('Label has disallowed hyphens in 3rd and 4th position') + if label[0] == '-' or label[-1] == '-': + raise IDNAError('Label must not start or end with a hyphen') + return True + + +def check_nfc(label: str) -> None: + if unicodedata.normalize('NFC', label) != label: + raise IDNAError('Label must be in Normalization Form C') + + +def valid_contextj(label: str, pos: int) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x200c: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + + ok = False + for i in range(pos-1, -1, -1): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + elif joining_type in [ord('L'), ord('D')]: + ok = True + break + else: + break + + if not ok: + return False + + ok = False + for i in range(pos+1, len(label)): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + elif joining_type in [ord('R'), ord('D')]: + ok = True + break + else: + break + return ok + + if cp_value == 0x200d: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + return False + + else: + + return False + + +def valid_contexto(label: str, pos: int, exception: bool = False) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x00b7: + if 0 < pos < len(label)-1: + if ord(label[pos - 1]) == 0x006c and ord(label[pos + 1]) == 0x006c: + return True + return False + + elif cp_value == 0x0375: + if pos < len(label)-1 and len(label) > 1: + return _is_script(label[pos + 1], 'Greek') + return False + + elif cp_value == 0x05f3 or cp_value == 0x05f4: + if pos > 0: + return _is_script(label[pos - 1], 'Hebrew') + return False + + elif cp_value == 0x30fb: + for cp in label: + if cp == '\u30fb': + continue + if _is_script(cp, 'Hiragana') or _is_script(cp, 'Katakana') or _is_script(cp, 'Han'): + return True + return False + + elif 0x660 <= cp_value <= 0x669: + for cp in label: + if 0x6f0 <= ord(cp) <= 0x06f9: + return False + return True + + elif 0x6f0 <= cp_value <= 0x6f9: + for cp in label: + if 0x660 <= ord(cp) <= 0x0669: + return False + return True + + return False + + +def check_label(label: Union[str, bytes, bytearray]) -> None: + if isinstance(label, (bytes, bytearray)): + label = label.decode('utf-8') + if len(label) == 0: + raise IDNAError('Empty Label') + + check_nfc(label) + check_hyphen_ok(label) + check_initial_combiner(label) + + for (pos, cp) in enumerate(label): + cp_value = ord(cp) + if intranges_contain(cp_value, idnadata.codepoint_classes['PVALID']): + continue + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTJ']): + if not valid_contextj(label, pos): + raise InvalidCodepointContext('Joiner {} not allowed at position {} in {}'.format( + _unot(cp_value), pos+1, repr(label))) + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTO']): + if not valid_contexto(label, pos): + raise InvalidCodepointContext('Codepoint {} not allowed at position {} in {}'.format(_unot(cp_value), pos+1, repr(label))) + else: + raise InvalidCodepoint('Codepoint {} at position {} of {} not allowed'.format(_unot(cp_value), pos+1, repr(label))) + + check_bidi(label) + + +def alabel(label: str) -> bytes: + try: + label_bytes = label.encode('ascii') + ulabel(label_bytes) + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + return label_bytes + except UnicodeEncodeError: + pass + + check_label(label) + label_bytes = _alabel_prefix + _punycode(label) + + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + + return label_bytes + + +def ulabel(label: Union[str, bytes, bytearray]) -> str: + if not isinstance(label, (bytes, bytearray)): + try: + label_bytes = label.encode('ascii') + except UnicodeEncodeError: + check_label(label) + return label + else: + label_bytes = label + + label_bytes = label_bytes.lower() + if label_bytes.startswith(_alabel_prefix): + label_bytes = label_bytes[len(_alabel_prefix):] + if not label_bytes: + raise IDNAError('Malformed A-label, no Punycode eligible content found') + if label_bytes.decode('ascii')[-1] == '-': + raise IDNAError('A-label must not end with a hyphen') + else: + check_label(label_bytes) + return label_bytes.decode('ascii') + + try: + label = label_bytes.decode('punycode') + except UnicodeError: + raise IDNAError('Invalid A-label') + check_label(label) + return label + + +def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str: + """Re-map the characters in the string according to UTS46 processing.""" + from .uts46data import uts46data + output = '' + + for pos, char in enumerate(domain): + code_point = ord(char) + try: + uts46row = uts46data[code_point if code_point < 256 else + bisect.bisect_left(uts46data, (code_point, 'Z')) - 1] + status = uts46row[1] + replacement = None # type: Optional[str] + if len(uts46row) == 3: + replacement = uts46row[2] + if (status == 'V' or + (status == 'D' and not transitional) or + (status == '3' and not std3_rules and replacement is None)): + output += char + elif replacement is not None and (status == 'M' or + (status == '3' and not std3_rules) or + (status == 'D' and transitional)): + output += replacement + elif status != 'I': + raise IndexError() + except IndexError: + raise InvalidCodepoint( + 'Codepoint {} not allowed at position {} in {}'.format( + _unot(code_point), pos + 1, repr(domain))) + + return unicodedata.normalize('NFC', output) + + +def encode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False, transitional: bool = False) -> bytes: + if not isinstance(s, str): + try: + s = str(s, 'ascii') + except UnicodeDecodeError: + raise IDNAError('should pass a unicode string to the function rather than a byte string.') + if uts46: + s = uts46_remap(s, std3_rules, transitional) + trailing_dot = False + result = [] + if strict: + labels = s.split('.') + else: + labels = _unicode_dots_re.split(s) + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if labels[-1] == '': + del labels[-1] + trailing_dot = True + for label in labels: + s = alabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append(b'') + s = b'.'.join(result) + if not valid_string_length(s, trailing_dot): + raise IDNAError('Domain too long') + return s + + +def decode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False) -> str: + try: + if not isinstance(s, str): + s = str(s, 'ascii') + except UnicodeDecodeError: + raise IDNAError('Invalid ASCII in A-label') + if uts46: + s = uts46_remap(s, std3_rules, False) + trailing_dot = False + result = [] + if not strict: + labels = _unicode_dots_re.split(s) + else: + labels = s.split('.') + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if not labels[-1]: + del labels[-1] + trailing_dot = True + for label in labels: + s = ulabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append('') + return '.'.join(result) diff --git a/env/Lib/site-packages/pip/_vendor/idna/idnadata.py b/env/Lib/site-packages/pip/_vendor/idna/idnadata.py new file mode 100644 index 00000000..c61dcf97 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/idna/idnadata.py @@ -0,0 +1,4245 @@ +# This file is automatically generated by tools/idna-data + +__version__ = '15.1.0' +scripts = { + 'Greek': ( + 0x37000000374, + 0x37500000378, + 0x37a0000037e, + 0x37f00000380, + 0x38400000385, + 0x38600000387, + 0x3880000038b, + 0x38c0000038d, + 0x38e000003a2, + 0x3a3000003e2, + 0x3f000000400, + 0x1d2600001d2b, + 0x1d5d00001d62, + 0x1d6600001d6b, + 0x1dbf00001dc0, + 0x1f0000001f16, + 0x1f1800001f1e, + 0x1f2000001f46, + 0x1f4800001f4e, + 0x1f5000001f58, + 0x1f5900001f5a, + 0x1f5b00001f5c, + 0x1f5d00001f5e, + 0x1f5f00001f7e, + 0x1f8000001fb5, + 0x1fb600001fc5, + 0x1fc600001fd4, + 0x1fd600001fdc, + 0x1fdd00001ff0, + 0x1ff200001ff5, + 0x1ff600001fff, + 0x212600002127, + 0xab650000ab66, + 0x101400001018f, + 0x101a0000101a1, + 0x1d2000001d246, + ), + 'Han': ( + 0x2e8000002e9a, + 0x2e9b00002ef4, + 0x2f0000002fd6, + 0x300500003006, + 0x300700003008, + 0x30210000302a, + 0x30380000303c, + 0x340000004dc0, + 0x4e000000a000, + 0xf9000000fa6e, + 0xfa700000fada, + 0x16fe200016fe4, + 0x16ff000016ff2, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x2ebf00002ee5e, + 0x2f8000002fa1e, + 0x300000003134b, + 0x31350000323b0, + ), + 'Hebrew': ( + 0x591000005c8, + 0x5d0000005eb, + 0x5ef000005f5, + 0xfb1d0000fb37, + 0xfb380000fb3d, + 0xfb3e0000fb3f, + 0xfb400000fb42, + 0xfb430000fb45, + 0xfb460000fb50, + ), + 'Hiragana': ( + 0x304100003097, + 0x309d000030a0, + 0x1b0010001b120, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1f2000001f201, + ), + 'Katakana': ( + 0x30a1000030fb, + 0x30fd00003100, + 0x31f000003200, + 0x32d0000032ff, + 0x330000003358, + 0xff660000ff70, + 0xff710000ff9e, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b001, + 0x1b1200001b123, + 0x1b1550001b156, + 0x1b1640001b168, + ), +} +joining_types = { + 0xad: 84, + 0x300: 84, + 0x301: 84, + 0x302: 84, + 0x303: 84, + 0x304: 84, + 0x305: 84, + 0x306: 84, + 0x307: 84, + 0x308: 84, + 0x309: 84, + 0x30a: 84, + 0x30b: 84, + 0x30c: 84, + 0x30d: 84, + 0x30e: 84, + 0x30f: 84, + 0x310: 84, + 0x311: 84, + 0x312: 84, + 0x313: 84, + 0x314: 84, + 0x315: 84, + 0x316: 84, + 0x317: 84, + 0x318: 84, + 0x319: 84, + 0x31a: 84, + 0x31b: 84, + 0x31c: 84, + 0x31d: 84, + 0x31e: 84, + 0x31f: 84, + 0x320: 84, + 0x321: 84, + 0x322: 84, + 0x323: 84, + 0x324: 84, + 0x325: 84, + 0x326: 84, + 0x327: 84, + 0x328: 84, + 0x329: 84, + 0x32a: 84, + 0x32b: 84, + 0x32c: 84, + 0x32d: 84, + 0x32e: 84, + 0x32f: 84, + 0x330: 84, + 0x331: 84, + 0x332: 84, + 0x333: 84, + 0x334: 84, + 0x335: 84, + 0x336: 84, + 0x337: 84, + 0x338: 84, + 0x339: 84, + 0x33a: 84, + 0x33b: 84, + 0x33c: 84, + 0x33d: 84, + 0x33e: 84, + 0x33f: 84, + 0x340: 84, + 0x341: 84, + 0x342: 84, + 0x343: 84, + 0x344: 84, + 0x345: 84, + 0x346: 84, + 0x347: 84, + 0x348: 84, + 0x349: 84, + 0x34a: 84, + 0x34b: 84, + 0x34c: 84, + 0x34d: 84, + 0x34e: 84, + 0x34f: 84, + 0x350: 84, + 0x351: 84, + 0x352: 84, + 0x353: 84, + 0x354: 84, + 0x355: 84, + 0x356: 84, + 0x357: 84, + 0x358: 84, + 0x359: 84, + 0x35a: 84, + 0x35b: 84, + 0x35c: 84, + 0x35d: 84, + 0x35e: 84, + 0x35f: 84, + 0x360: 84, + 0x361: 84, + 0x362: 84, + 0x363: 84, + 0x364: 84, + 0x365: 84, + 0x366: 84, + 0x367: 84, + 0x368: 84, + 0x369: 84, + 0x36a: 84, + 0x36b: 84, + 0x36c: 84, + 0x36d: 84, + 0x36e: 84, + 0x36f: 84, + 0x483: 84, + 0x484: 84, + 0x485: 84, + 0x486: 84, + 0x487: 84, + 0x488: 84, + 0x489: 84, + 0x591: 84, + 0x592: 84, + 0x593: 84, + 0x594: 84, + 0x595: 84, + 0x596: 84, + 0x597: 84, + 0x598: 84, + 0x599: 84, + 0x59a: 84, + 0x59b: 84, + 0x59c: 84, + 0x59d: 84, + 0x59e: 84, + 0x59f: 84, + 0x5a0: 84, + 0x5a1: 84, + 0x5a2: 84, + 0x5a3: 84, + 0x5a4: 84, + 0x5a5: 84, + 0x5a6: 84, + 0x5a7: 84, + 0x5a8: 84, + 0x5a9: 84, + 0x5aa: 84, + 0x5ab: 84, + 0x5ac: 84, + 0x5ad: 84, + 0x5ae: 84, + 0x5af: 84, + 0x5b0: 84, + 0x5b1: 84, + 0x5b2: 84, + 0x5b3: 84, + 0x5b4: 84, + 0x5b5: 84, + 0x5b6: 84, + 0x5b7: 84, + 0x5b8: 84, + 0x5b9: 84, + 0x5ba: 84, + 0x5bb: 84, + 0x5bc: 84, + 0x5bd: 84, + 0x5bf: 84, + 0x5c1: 84, + 0x5c2: 84, + 0x5c4: 84, + 0x5c5: 84, + 0x5c7: 84, + 0x610: 84, + 0x611: 84, + 0x612: 84, + 0x613: 84, + 0x614: 84, + 0x615: 84, + 0x616: 84, + 0x617: 84, + 0x618: 84, + 0x619: 84, + 0x61a: 84, + 0x61c: 84, + 0x620: 68, + 0x622: 82, + 0x623: 82, + 0x624: 82, + 0x625: 82, + 0x626: 68, + 0x627: 82, + 0x628: 68, + 0x629: 82, + 0x62a: 68, + 0x62b: 68, + 0x62c: 68, + 0x62d: 68, + 0x62e: 68, + 0x62f: 82, + 0x630: 82, + 0x631: 82, + 0x632: 82, + 0x633: 68, + 0x634: 68, + 0x635: 68, + 0x636: 68, + 0x637: 68, + 0x638: 68, + 0x639: 68, + 0x63a: 68, + 0x63b: 68, + 0x63c: 68, + 0x63d: 68, + 0x63e: 68, + 0x63f: 68, + 0x640: 67, + 0x641: 68, + 0x642: 68, + 0x643: 68, + 0x644: 68, + 0x645: 68, + 0x646: 68, + 0x647: 68, + 0x648: 82, + 0x649: 68, + 0x64a: 68, + 0x64b: 84, + 0x64c: 84, + 0x64d: 84, + 0x64e: 84, + 0x64f: 84, + 0x650: 84, + 0x651: 84, + 0x652: 84, + 0x653: 84, + 0x654: 84, + 0x655: 84, + 0x656: 84, + 0x657: 84, + 0x658: 84, + 0x659: 84, + 0x65a: 84, + 0x65b: 84, + 0x65c: 84, + 0x65d: 84, + 0x65e: 84, + 0x65f: 84, + 0x66e: 68, + 0x66f: 68, + 0x670: 84, + 0x671: 82, + 0x672: 82, + 0x673: 82, + 0x675: 82, + 0x676: 82, + 0x677: 82, + 0x678: 68, + 0x679: 68, + 0x67a: 68, + 0x67b: 68, + 0x67c: 68, + 0x67d: 68, + 0x67e: 68, + 0x67f: 68, + 0x680: 68, + 0x681: 68, + 0x682: 68, + 0x683: 68, + 0x684: 68, + 0x685: 68, + 0x686: 68, + 0x687: 68, + 0x688: 82, + 0x689: 82, + 0x68a: 82, + 0x68b: 82, + 0x68c: 82, + 0x68d: 82, + 0x68e: 82, + 0x68f: 82, + 0x690: 82, + 0x691: 82, + 0x692: 82, + 0x693: 82, + 0x694: 82, + 0x695: 82, + 0x696: 82, + 0x697: 82, + 0x698: 82, + 0x699: 82, + 0x69a: 68, + 0x69b: 68, + 0x69c: 68, + 0x69d: 68, + 0x69e: 68, + 0x69f: 68, + 0x6a0: 68, + 0x6a1: 68, + 0x6a2: 68, + 0x6a3: 68, + 0x6a4: 68, + 0x6a5: 68, + 0x6a6: 68, + 0x6a7: 68, + 0x6a8: 68, + 0x6a9: 68, + 0x6aa: 68, + 0x6ab: 68, + 0x6ac: 68, + 0x6ad: 68, + 0x6ae: 68, + 0x6af: 68, + 0x6b0: 68, + 0x6b1: 68, + 0x6b2: 68, + 0x6b3: 68, + 0x6b4: 68, + 0x6b5: 68, + 0x6b6: 68, + 0x6b7: 68, + 0x6b8: 68, + 0x6b9: 68, + 0x6ba: 68, + 0x6bb: 68, + 0x6bc: 68, + 0x6bd: 68, + 0x6be: 68, + 0x6bf: 68, + 0x6c0: 82, + 0x6c1: 68, + 0x6c2: 68, + 0x6c3: 82, + 0x6c4: 82, + 0x6c5: 82, + 0x6c6: 82, + 0x6c7: 82, + 0x6c8: 82, + 0x6c9: 82, + 0x6ca: 82, + 0x6cb: 82, + 0x6cc: 68, + 0x6cd: 82, + 0x6ce: 68, + 0x6cf: 82, + 0x6d0: 68, + 0x6d1: 68, + 0x6d2: 82, + 0x6d3: 82, + 0x6d5: 82, + 0x6d6: 84, + 0x6d7: 84, + 0x6d8: 84, + 0x6d9: 84, + 0x6da: 84, + 0x6db: 84, + 0x6dc: 84, + 0x6df: 84, + 0x6e0: 84, + 0x6e1: 84, + 0x6e2: 84, + 0x6e3: 84, + 0x6e4: 84, + 0x6e7: 84, + 0x6e8: 84, + 0x6ea: 84, + 0x6eb: 84, + 0x6ec: 84, + 0x6ed: 84, + 0x6ee: 82, + 0x6ef: 82, + 0x6fa: 68, + 0x6fb: 68, + 0x6fc: 68, + 0x6ff: 68, + 0x70f: 84, + 0x710: 82, + 0x711: 84, + 0x712: 68, + 0x713: 68, + 0x714: 68, + 0x715: 82, + 0x716: 82, + 0x717: 82, + 0x718: 82, + 0x719: 82, + 0x71a: 68, + 0x71b: 68, + 0x71c: 68, + 0x71d: 68, + 0x71e: 82, + 0x71f: 68, + 0x720: 68, + 0x721: 68, + 0x722: 68, + 0x723: 68, + 0x724: 68, + 0x725: 68, + 0x726: 68, + 0x727: 68, + 0x728: 82, + 0x729: 68, + 0x72a: 82, + 0x72b: 68, + 0x72c: 82, + 0x72d: 68, + 0x72e: 68, + 0x72f: 82, + 0x730: 84, + 0x731: 84, + 0x732: 84, + 0x733: 84, + 0x734: 84, + 0x735: 84, + 0x736: 84, + 0x737: 84, + 0x738: 84, + 0x739: 84, + 0x73a: 84, + 0x73b: 84, + 0x73c: 84, + 0x73d: 84, + 0x73e: 84, + 0x73f: 84, + 0x740: 84, + 0x741: 84, + 0x742: 84, + 0x743: 84, + 0x744: 84, + 0x745: 84, + 0x746: 84, + 0x747: 84, + 0x748: 84, + 0x749: 84, + 0x74a: 84, + 0x74d: 82, + 0x74e: 68, + 0x74f: 68, + 0x750: 68, + 0x751: 68, + 0x752: 68, + 0x753: 68, + 0x754: 68, + 0x755: 68, + 0x756: 68, + 0x757: 68, + 0x758: 68, + 0x759: 82, + 0x75a: 82, + 0x75b: 82, + 0x75c: 68, + 0x75d: 68, + 0x75e: 68, + 0x75f: 68, + 0x760: 68, + 0x761: 68, + 0x762: 68, + 0x763: 68, + 0x764: 68, + 0x765: 68, + 0x766: 68, + 0x767: 68, + 0x768: 68, + 0x769: 68, + 0x76a: 68, + 0x76b: 82, + 0x76c: 82, + 0x76d: 68, + 0x76e: 68, + 0x76f: 68, + 0x770: 68, + 0x771: 82, + 0x772: 68, + 0x773: 82, + 0x774: 82, + 0x775: 68, + 0x776: 68, + 0x777: 68, + 0x778: 82, + 0x779: 82, + 0x77a: 68, + 0x77b: 68, + 0x77c: 68, + 0x77d: 68, + 0x77e: 68, + 0x77f: 68, + 0x7a6: 84, + 0x7a7: 84, + 0x7a8: 84, + 0x7a9: 84, + 0x7aa: 84, + 0x7ab: 84, + 0x7ac: 84, + 0x7ad: 84, + 0x7ae: 84, + 0x7af: 84, + 0x7b0: 84, + 0x7ca: 68, + 0x7cb: 68, + 0x7cc: 68, + 0x7cd: 68, + 0x7ce: 68, + 0x7cf: 68, + 0x7d0: 68, + 0x7d1: 68, + 0x7d2: 68, + 0x7d3: 68, + 0x7d4: 68, + 0x7d5: 68, + 0x7d6: 68, + 0x7d7: 68, + 0x7d8: 68, + 0x7d9: 68, + 0x7da: 68, + 0x7db: 68, + 0x7dc: 68, + 0x7dd: 68, + 0x7de: 68, + 0x7df: 68, + 0x7e0: 68, + 0x7e1: 68, + 0x7e2: 68, + 0x7e3: 68, + 0x7e4: 68, + 0x7e5: 68, + 0x7e6: 68, + 0x7e7: 68, + 0x7e8: 68, + 0x7e9: 68, + 0x7ea: 68, + 0x7eb: 84, + 0x7ec: 84, + 0x7ed: 84, + 0x7ee: 84, + 0x7ef: 84, + 0x7f0: 84, + 0x7f1: 84, + 0x7f2: 84, + 0x7f3: 84, + 0x7fa: 67, + 0x7fd: 84, + 0x816: 84, + 0x817: 84, + 0x818: 84, + 0x819: 84, + 0x81b: 84, + 0x81c: 84, + 0x81d: 84, + 0x81e: 84, + 0x81f: 84, + 0x820: 84, + 0x821: 84, + 0x822: 84, + 0x823: 84, + 0x825: 84, + 0x826: 84, + 0x827: 84, + 0x829: 84, + 0x82a: 84, + 0x82b: 84, + 0x82c: 84, + 0x82d: 84, + 0x840: 82, + 0x841: 68, + 0x842: 68, + 0x843: 68, + 0x844: 68, + 0x845: 68, + 0x846: 82, + 0x847: 82, + 0x848: 68, + 0x849: 82, + 0x84a: 68, + 0x84b: 68, + 0x84c: 68, + 0x84d: 68, + 0x84e: 68, + 0x84f: 68, + 0x850: 68, + 0x851: 68, + 0x852: 68, + 0x853: 68, + 0x854: 82, + 0x855: 68, + 0x856: 82, + 0x857: 82, + 0x858: 82, + 0x859: 84, + 0x85a: 84, + 0x85b: 84, + 0x860: 68, + 0x862: 68, + 0x863: 68, + 0x864: 68, + 0x865: 68, + 0x867: 82, + 0x868: 68, + 0x869: 82, + 0x86a: 82, + 0x870: 82, + 0x871: 82, + 0x872: 82, + 0x873: 82, + 0x874: 82, + 0x875: 82, + 0x876: 82, + 0x877: 82, + 0x878: 82, + 0x879: 82, + 0x87a: 82, + 0x87b: 82, + 0x87c: 82, + 0x87d: 82, + 0x87e: 82, + 0x87f: 82, + 0x880: 82, + 0x881: 82, + 0x882: 82, + 0x883: 67, + 0x884: 67, + 0x885: 67, + 0x886: 68, + 0x889: 68, + 0x88a: 68, + 0x88b: 68, + 0x88c: 68, + 0x88d: 68, + 0x88e: 82, + 0x898: 84, + 0x899: 84, + 0x89a: 84, + 0x89b: 84, + 0x89c: 84, + 0x89d: 84, + 0x89e: 84, + 0x89f: 84, + 0x8a0: 68, + 0x8a1: 68, + 0x8a2: 68, + 0x8a3: 68, + 0x8a4: 68, + 0x8a5: 68, + 0x8a6: 68, + 0x8a7: 68, + 0x8a8: 68, + 0x8a9: 68, + 0x8aa: 82, + 0x8ab: 82, + 0x8ac: 82, + 0x8ae: 82, + 0x8af: 68, + 0x8b0: 68, + 0x8b1: 82, + 0x8b2: 82, + 0x8b3: 68, + 0x8b4: 68, + 0x8b5: 68, + 0x8b6: 68, + 0x8b7: 68, + 0x8b8: 68, + 0x8b9: 82, + 0x8ba: 68, + 0x8bb: 68, + 0x8bc: 68, + 0x8bd: 68, + 0x8be: 68, + 0x8bf: 68, + 0x8c0: 68, + 0x8c1: 68, + 0x8c2: 68, + 0x8c3: 68, + 0x8c4: 68, + 0x8c5: 68, + 0x8c6: 68, + 0x8c7: 68, + 0x8c8: 68, + 0x8ca: 84, + 0x8cb: 84, + 0x8cc: 84, + 0x8cd: 84, + 0x8ce: 84, + 0x8cf: 84, + 0x8d0: 84, + 0x8d1: 84, + 0x8d2: 84, + 0x8d3: 84, + 0x8d4: 84, + 0x8d5: 84, + 0x8d6: 84, + 0x8d7: 84, + 0x8d8: 84, + 0x8d9: 84, + 0x8da: 84, + 0x8db: 84, + 0x8dc: 84, + 0x8dd: 84, + 0x8de: 84, + 0x8df: 84, + 0x8e0: 84, + 0x8e1: 84, + 0x8e3: 84, + 0x8e4: 84, + 0x8e5: 84, + 0x8e6: 84, + 0x8e7: 84, + 0x8e8: 84, + 0x8e9: 84, + 0x8ea: 84, + 0x8eb: 84, + 0x8ec: 84, + 0x8ed: 84, + 0x8ee: 84, + 0x8ef: 84, + 0x8f0: 84, + 0x8f1: 84, + 0x8f2: 84, + 0x8f3: 84, + 0x8f4: 84, + 0x8f5: 84, + 0x8f6: 84, + 0x8f7: 84, + 0x8f8: 84, + 0x8f9: 84, + 0x8fa: 84, + 0x8fb: 84, + 0x8fc: 84, + 0x8fd: 84, + 0x8fe: 84, + 0x8ff: 84, + 0x900: 84, + 0x901: 84, + 0x902: 84, + 0x93a: 84, + 0x93c: 84, + 0x941: 84, + 0x942: 84, + 0x943: 84, + 0x944: 84, + 0x945: 84, + 0x946: 84, + 0x947: 84, + 0x948: 84, + 0x94d: 84, + 0x951: 84, + 0x952: 84, + 0x953: 84, + 0x954: 84, + 0x955: 84, + 0x956: 84, + 0x957: 84, + 0x962: 84, + 0x963: 84, + 0x981: 84, + 0x9bc: 84, + 0x9c1: 84, + 0x9c2: 84, + 0x9c3: 84, + 0x9c4: 84, + 0x9cd: 84, + 0x9e2: 84, + 0x9e3: 84, + 0x9fe: 84, + 0xa01: 84, + 0xa02: 84, + 0xa3c: 84, + 0xa41: 84, + 0xa42: 84, + 0xa47: 84, + 0xa48: 84, + 0xa4b: 84, + 0xa4c: 84, + 0xa4d: 84, + 0xa51: 84, + 0xa70: 84, + 0xa71: 84, + 0xa75: 84, + 0xa81: 84, + 0xa82: 84, + 0xabc: 84, + 0xac1: 84, + 0xac2: 84, + 0xac3: 84, + 0xac4: 84, + 0xac5: 84, + 0xac7: 84, + 0xac8: 84, + 0xacd: 84, + 0xae2: 84, + 0xae3: 84, + 0xafa: 84, + 0xafb: 84, + 0xafc: 84, + 0xafd: 84, + 0xafe: 84, + 0xaff: 84, + 0xb01: 84, + 0xb3c: 84, + 0xb3f: 84, + 0xb41: 84, + 0xb42: 84, + 0xb43: 84, + 0xb44: 84, + 0xb4d: 84, + 0xb55: 84, + 0xb56: 84, + 0xb62: 84, + 0xb63: 84, + 0xb82: 84, + 0xbc0: 84, + 0xbcd: 84, + 0xc00: 84, + 0xc04: 84, + 0xc3c: 84, + 0xc3e: 84, + 0xc3f: 84, + 0xc40: 84, + 0xc46: 84, + 0xc47: 84, + 0xc48: 84, + 0xc4a: 84, + 0xc4b: 84, + 0xc4c: 84, + 0xc4d: 84, + 0xc55: 84, + 0xc56: 84, + 0xc62: 84, + 0xc63: 84, + 0xc81: 84, + 0xcbc: 84, + 0xcbf: 84, + 0xcc6: 84, + 0xccc: 84, + 0xccd: 84, + 0xce2: 84, + 0xce3: 84, + 0xd00: 84, + 0xd01: 84, + 0xd3b: 84, + 0xd3c: 84, + 0xd41: 84, + 0xd42: 84, + 0xd43: 84, + 0xd44: 84, + 0xd4d: 84, + 0xd62: 84, + 0xd63: 84, + 0xd81: 84, + 0xdca: 84, + 0xdd2: 84, + 0xdd3: 84, + 0xdd4: 84, + 0xdd6: 84, + 0xe31: 84, + 0xe34: 84, + 0xe35: 84, + 0xe36: 84, + 0xe37: 84, + 0xe38: 84, + 0xe39: 84, + 0xe3a: 84, + 0xe47: 84, + 0xe48: 84, + 0xe49: 84, + 0xe4a: 84, + 0xe4b: 84, + 0xe4c: 84, + 0xe4d: 84, + 0xe4e: 84, + 0xeb1: 84, + 0xeb4: 84, + 0xeb5: 84, + 0xeb6: 84, + 0xeb7: 84, + 0xeb8: 84, + 0xeb9: 84, + 0xeba: 84, + 0xebb: 84, + 0xebc: 84, + 0xec8: 84, + 0xec9: 84, + 0xeca: 84, + 0xecb: 84, + 0xecc: 84, + 0xecd: 84, + 0xece: 84, + 0xf18: 84, + 0xf19: 84, + 0xf35: 84, + 0xf37: 84, + 0xf39: 84, + 0xf71: 84, + 0xf72: 84, + 0xf73: 84, + 0xf74: 84, + 0xf75: 84, + 0xf76: 84, + 0xf77: 84, + 0xf78: 84, + 0xf79: 84, + 0xf7a: 84, + 0xf7b: 84, + 0xf7c: 84, + 0xf7d: 84, + 0xf7e: 84, + 0xf80: 84, + 0xf81: 84, + 0xf82: 84, + 0xf83: 84, + 0xf84: 84, + 0xf86: 84, + 0xf87: 84, + 0xf8d: 84, + 0xf8e: 84, + 0xf8f: 84, + 0xf90: 84, + 0xf91: 84, + 0xf92: 84, + 0xf93: 84, + 0xf94: 84, + 0xf95: 84, + 0xf96: 84, + 0xf97: 84, + 0xf99: 84, + 0xf9a: 84, + 0xf9b: 84, + 0xf9c: 84, + 0xf9d: 84, + 0xf9e: 84, + 0xf9f: 84, + 0xfa0: 84, + 0xfa1: 84, + 0xfa2: 84, + 0xfa3: 84, + 0xfa4: 84, + 0xfa5: 84, + 0xfa6: 84, + 0xfa7: 84, + 0xfa8: 84, + 0xfa9: 84, + 0xfaa: 84, + 0xfab: 84, + 0xfac: 84, + 0xfad: 84, + 0xfae: 84, + 0xfaf: 84, + 0xfb0: 84, + 0xfb1: 84, + 0xfb2: 84, + 0xfb3: 84, + 0xfb4: 84, + 0xfb5: 84, + 0xfb6: 84, + 0xfb7: 84, + 0xfb8: 84, + 0xfb9: 84, + 0xfba: 84, + 0xfbb: 84, + 0xfbc: 84, + 0xfc6: 84, + 0x102d: 84, + 0x102e: 84, + 0x102f: 84, + 0x1030: 84, + 0x1032: 84, + 0x1033: 84, + 0x1034: 84, + 0x1035: 84, + 0x1036: 84, + 0x1037: 84, + 0x1039: 84, + 0x103a: 84, + 0x103d: 84, + 0x103e: 84, + 0x1058: 84, + 0x1059: 84, + 0x105e: 84, + 0x105f: 84, + 0x1060: 84, + 0x1071: 84, + 0x1072: 84, + 0x1073: 84, + 0x1074: 84, + 0x1082: 84, + 0x1085: 84, + 0x1086: 84, + 0x108d: 84, + 0x109d: 84, + 0x135d: 84, + 0x135e: 84, + 0x135f: 84, + 0x1712: 84, + 0x1713: 84, + 0x1714: 84, + 0x1732: 84, + 0x1733: 84, + 0x1752: 84, + 0x1753: 84, + 0x1772: 84, + 0x1773: 84, + 0x17b4: 84, + 0x17b5: 84, + 0x17b7: 84, + 0x17b8: 84, + 0x17b9: 84, + 0x17ba: 84, + 0x17bb: 84, + 0x17bc: 84, + 0x17bd: 84, + 0x17c6: 84, + 0x17c9: 84, + 0x17ca: 84, + 0x17cb: 84, + 0x17cc: 84, + 0x17cd: 84, + 0x17ce: 84, + 0x17cf: 84, + 0x17d0: 84, + 0x17d1: 84, + 0x17d2: 84, + 0x17d3: 84, + 0x17dd: 84, + 0x1807: 68, + 0x180a: 67, + 0x180b: 84, + 0x180c: 84, + 0x180d: 84, + 0x180f: 84, + 0x1820: 68, + 0x1821: 68, + 0x1822: 68, + 0x1823: 68, + 0x1824: 68, + 0x1825: 68, + 0x1826: 68, + 0x1827: 68, + 0x1828: 68, + 0x1829: 68, + 0x182a: 68, + 0x182b: 68, + 0x182c: 68, + 0x182d: 68, + 0x182e: 68, + 0x182f: 68, + 0x1830: 68, + 0x1831: 68, + 0x1832: 68, + 0x1833: 68, + 0x1834: 68, + 0x1835: 68, + 0x1836: 68, + 0x1837: 68, + 0x1838: 68, + 0x1839: 68, + 0x183a: 68, + 0x183b: 68, + 0x183c: 68, + 0x183d: 68, + 0x183e: 68, + 0x183f: 68, + 0x1840: 68, + 0x1841: 68, + 0x1842: 68, + 0x1843: 68, + 0x1844: 68, + 0x1845: 68, + 0x1846: 68, + 0x1847: 68, + 0x1848: 68, + 0x1849: 68, + 0x184a: 68, + 0x184b: 68, + 0x184c: 68, + 0x184d: 68, + 0x184e: 68, + 0x184f: 68, + 0x1850: 68, + 0x1851: 68, + 0x1852: 68, + 0x1853: 68, + 0x1854: 68, + 0x1855: 68, + 0x1856: 68, + 0x1857: 68, + 0x1858: 68, + 0x1859: 68, + 0x185a: 68, + 0x185b: 68, + 0x185c: 68, + 0x185d: 68, + 0x185e: 68, + 0x185f: 68, + 0x1860: 68, + 0x1861: 68, + 0x1862: 68, + 0x1863: 68, + 0x1864: 68, + 0x1865: 68, + 0x1866: 68, + 0x1867: 68, + 0x1868: 68, + 0x1869: 68, + 0x186a: 68, + 0x186b: 68, + 0x186c: 68, + 0x186d: 68, + 0x186e: 68, + 0x186f: 68, + 0x1870: 68, + 0x1871: 68, + 0x1872: 68, + 0x1873: 68, + 0x1874: 68, + 0x1875: 68, + 0x1876: 68, + 0x1877: 68, + 0x1878: 68, + 0x1885: 84, + 0x1886: 84, + 0x1887: 68, + 0x1888: 68, + 0x1889: 68, + 0x188a: 68, + 0x188b: 68, + 0x188c: 68, + 0x188d: 68, + 0x188e: 68, + 0x188f: 68, + 0x1890: 68, + 0x1891: 68, + 0x1892: 68, + 0x1893: 68, + 0x1894: 68, + 0x1895: 68, + 0x1896: 68, + 0x1897: 68, + 0x1898: 68, + 0x1899: 68, + 0x189a: 68, + 0x189b: 68, + 0x189c: 68, + 0x189d: 68, + 0x189e: 68, + 0x189f: 68, + 0x18a0: 68, + 0x18a1: 68, + 0x18a2: 68, + 0x18a3: 68, + 0x18a4: 68, + 0x18a5: 68, + 0x18a6: 68, + 0x18a7: 68, + 0x18a8: 68, + 0x18a9: 84, + 0x18aa: 68, + 0x1920: 84, + 0x1921: 84, + 0x1922: 84, + 0x1927: 84, + 0x1928: 84, + 0x1932: 84, + 0x1939: 84, + 0x193a: 84, + 0x193b: 84, + 0x1a17: 84, + 0x1a18: 84, + 0x1a1b: 84, + 0x1a56: 84, + 0x1a58: 84, + 0x1a59: 84, + 0x1a5a: 84, + 0x1a5b: 84, + 0x1a5c: 84, + 0x1a5d: 84, + 0x1a5e: 84, + 0x1a60: 84, + 0x1a62: 84, + 0x1a65: 84, + 0x1a66: 84, + 0x1a67: 84, + 0x1a68: 84, + 0x1a69: 84, + 0x1a6a: 84, + 0x1a6b: 84, + 0x1a6c: 84, + 0x1a73: 84, + 0x1a74: 84, + 0x1a75: 84, + 0x1a76: 84, + 0x1a77: 84, + 0x1a78: 84, + 0x1a79: 84, + 0x1a7a: 84, + 0x1a7b: 84, + 0x1a7c: 84, + 0x1a7f: 84, + 0x1ab0: 84, + 0x1ab1: 84, + 0x1ab2: 84, + 0x1ab3: 84, + 0x1ab4: 84, + 0x1ab5: 84, + 0x1ab6: 84, + 0x1ab7: 84, + 0x1ab8: 84, + 0x1ab9: 84, + 0x1aba: 84, + 0x1abb: 84, + 0x1abc: 84, + 0x1abd: 84, + 0x1abe: 84, + 0x1abf: 84, + 0x1ac0: 84, + 0x1ac1: 84, + 0x1ac2: 84, + 0x1ac3: 84, + 0x1ac4: 84, + 0x1ac5: 84, + 0x1ac6: 84, + 0x1ac7: 84, + 0x1ac8: 84, + 0x1ac9: 84, + 0x1aca: 84, + 0x1acb: 84, + 0x1acc: 84, + 0x1acd: 84, + 0x1ace: 84, + 0x1b00: 84, + 0x1b01: 84, + 0x1b02: 84, + 0x1b03: 84, + 0x1b34: 84, + 0x1b36: 84, + 0x1b37: 84, + 0x1b38: 84, + 0x1b39: 84, + 0x1b3a: 84, + 0x1b3c: 84, + 0x1b42: 84, + 0x1b6b: 84, + 0x1b6c: 84, + 0x1b6d: 84, + 0x1b6e: 84, + 0x1b6f: 84, + 0x1b70: 84, + 0x1b71: 84, + 0x1b72: 84, + 0x1b73: 84, + 0x1b80: 84, + 0x1b81: 84, + 0x1ba2: 84, + 0x1ba3: 84, + 0x1ba4: 84, + 0x1ba5: 84, + 0x1ba8: 84, + 0x1ba9: 84, + 0x1bab: 84, + 0x1bac: 84, + 0x1bad: 84, + 0x1be6: 84, + 0x1be8: 84, + 0x1be9: 84, + 0x1bed: 84, + 0x1bef: 84, + 0x1bf0: 84, + 0x1bf1: 84, + 0x1c2c: 84, + 0x1c2d: 84, + 0x1c2e: 84, + 0x1c2f: 84, + 0x1c30: 84, + 0x1c31: 84, + 0x1c32: 84, + 0x1c33: 84, + 0x1c36: 84, + 0x1c37: 84, + 0x1cd0: 84, + 0x1cd1: 84, + 0x1cd2: 84, + 0x1cd4: 84, + 0x1cd5: 84, + 0x1cd6: 84, + 0x1cd7: 84, + 0x1cd8: 84, + 0x1cd9: 84, + 0x1cda: 84, + 0x1cdb: 84, + 0x1cdc: 84, + 0x1cdd: 84, + 0x1cde: 84, + 0x1cdf: 84, + 0x1ce0: 84, + 0x1ce2: 84, + 0x1ce3: 84, + 0x1ce4: 84, + 0x1ce5: 84, + 0x1ce6: 84, + 0x1ce7: 84, + 0x1ce8: 84, + 0x1ced: 84, + 0x1cf4: 84, + 0x1cf8: 84, + 0x1cf9: 84, + 0x1dc0: 84, + 0x1dc1: 84, + 0x1dc2: 84, + 0x1dc3: 84, + 0x1dc4: 84, + 0x1dc5: 84, + 0x1dc6: 84, + 0x1dc7: 84, + 0x1dc8: 84, + 0x1dc9: 84, + 0x1dca: 84, + 0x1dcb: 84, + 0x1dcc: 84, + 0x1dcd: 84, + 0x1dce: 84, + 0x1dcf: 84, + 0x1dd0: 84, + 0x1dd1: 84, + 0x1dd2: 84, + 0x1dd3: 84, + 0x1dd4: 84, + 0x1dd5: 84, + 0x1dd6: 84, + 0x1dd7: 84, + 0x1dd8: 84, + 0x1dd9: 84, + 0x1dda: 84, + 0x1ddb: 84, + 0x1ddc: 84, + 0x1ddd: 84, + 0x1dde: 84, + 0x1ddf: 84, + 0x1de0: 84, + 0x1de1: 84, + 0x1de2: 84, + 0x1de3: 84, + 0x1de4: 84, + 0x1de5: 84, + 0x1de6: 84, + 0x1de7: 84, + 0x1de8: 84, + 0x1de9: 84, + 0x1dea: 84, + 0x1deb: 84, + 0x1dec: 84, + 0x1ded: 84, + 0x1dee: 84, + 0x1def: 84, + 0x1df0: 84, + 0x1df1: 84, + 0x1df2: 84, + 0x1df3: 84, + 0x1df4: 84, + 0x1df5: 84, + 0x1df6: 84, + 0x1df7: 84, + 0x1df8: 84, + 0x1df9: 84, + 0x1dfa: 84, + 0x1dfb: 84, + 0x1dfc: 84, + 0x1dfd: 84, + 0x1dfe: 84, + 0x1dff: 84, + 0x200b: 84, + 0x200d: 67, + 0x200e: 84, + 0x200f: 84, + 0x202a: 84, + 0x202b: 84, + 0x202c: 84, + 0x202d: 84, + 0x202e: 84, + 0x2060: 84, + 0x2061: 84, + 0x2062: 84, + 0x2063: 84, + 0x2064: 84, + 0x206a: 84, + 0x206b: 84, + 0x206c: 84, + 0x206d: 84, + 0x206e: 84, + 0x206f: 84, + 0x20d0: 84, + 0x20d1: 84, + 0x20d2: 84, + 0x20d3: 84, + 0x20d4: 84, + 0x20d5: 84, + 0x20d6: 84, + 0x20d7: 84, + 0x20d8: 84, + 0x20d9: 84, + 0x20da: 84, + 0x20db: 84, + 0x20dc: 84, + 0x20dd: 84, + 0x20de: 84, + 0x20df: 84, + 0x20e0: 84, + 0x20e1: 84, + 0x20e2: 84, + 0x20e3: 84, + 0x20e4: 84, + 0x20e5: 84, + 0x20e6: 84, + 0x20e7: 84, + 0x20e8: 84, + 0x20e9: 84, + 0x20ea: 84, + 0x20eb: 84, + 0x20ec: 84, + 0x20ed: 84, + 0x20ee: 84, + 0x20ef: 84, + 0x20f0: 84, + 0x2cef: 84, + 0x2cf0: 84, + 0x2cf1: 84, + 0x2d7f: 84, + 0x2de0: 84, + 0x2de1: 84, + 0x2de2: 84, + 0x2de3: 84, + 0x2de4: 84, + 0x2de5: 84, + 0x2de6: 84, + 0x2de7: 84, + 0x2de8: 84, + 0x2de9: 84, + 0x2dea: 84, + 0x2deb: 84, + 0x2dec: 84, + 0x2ded: 84, + 0x2dee: 84, + 0x2def: 84, + 0x2df0: 84, + 0x2df1: 84, + 0x2df2: 84, + 0x2df3: 84, + 0x2df4: 84, + 0x2df5: 84, + 0x2df6: 84, + 0x2df7: 84, + 0x2df8: 84, + 0x2df9: 84, + 0x2dfa: 84, + 0x2dfb: 84, + 0x2dfc: 84, + 0x2dfd: 84, + 0x2dfe: 84, + 0x2dff: 84, + 0x302a: 84, + 0x302b: 84, + 0x302c: 84, + 0x302d: 84, + 0x3099: 84, + 0x309a: 84, + 0xa66f: 84, + 0xa670: 84, + 0xa671: 84, + 0xa672: 84, + 0xa674: 84, + 0xa675: 84, + 0xa676: 84, + 0xa677: 84, + 0xa678: 84, + 0xa679: 84, + 0xa67a: 84, + 0xa67b: 84, + 0xa67c: 84, + 0xa67d: 84, + 0xa69e: 84, + 0xa69f: 84, + 0xa6f0: 84, + 0xa6f1: 84, + 0xa802: 84, + 0xa806: 84, + 0xa80b: 84, + 0xa825: 84, + 0xa826: 84, + 0xa82c: 84, + 0xa840: 68, + 0xa841: 68, + 0xa842: 68, + 0xa843: 68, + 0xa844: 68, + 0xa845: 68, + 0xa846: 68, + 0xa847: 68, + 0xa848: 68, + 0xa849: 68, + 0xa84a: 68, + 0xa84b: 68, + 0xa84c: 68, + 0xa84d: 68, + 0xa84e: 68, + 0xa84f: 68, + 0xa850: 68, + 0xa851: 68, + 0xa852: 68, + 0xa853: 68, + 0xa854: 68, + 0xa855: 68, + 0xa856: 68, + 0xa857: 68, + 0xa858: 68, + 0xa859: 68, + 0xa85a: 68, + 0xa85b: 68, + 0xa85c: 68, + 0xa85d: 68, + 0xa85e: 68, + 0xa85f: 68, + 0xa860: 68, + 0xa861: 68, + 0xa862: 68, + 0xa863: 68, + 0xa864: 68, + 0xa865: 68, + 0xa866: 68, + 0xa867: 68, + 0xa868: 68, + 0xa869: 68, + 0xa86a: 68, + 0xa86b: 68, + 0xa86c: 68, + 0xa86d: 68, + 0xa86e: 68, + 0xa86f: 68, + 0xa870: 68, + 0xa871: 68, + 0xa872: 76, + 0xa8c4: 84, + 0xa8c5: 84, + 0xa8e0: 84, + 0xa8e1: 84, + 0xa8e2: 84, + 0xa8e3: 84, + 0xa8e4: 84, + 0xa8e5: 84, + 0xa8e6: 84, + 0xa8e7: 84, + 0xa8e8: 84, + 0xa8e9: 84, + 0xa8ea: 84, + 0xa8eb: 84, + 0xa8ec: 84, + 0xa8ed: 84, + 0xa8ee: 84, + 0xa8ef: 84, + 0xa8f0: 84, + 0xa8f1: 84, + 0xa8ff: 84, + 0xa926: 84, + 0xa927: 84, + 0xa928: 84, + 0xa929: 84, + 0xa92a: 84, + 0xa92b: 84, + 0xa92c: 84, + 0xa92d: 84, + 0xa947: 84, + 0xa948: 84, + 0xa949: 84, + 0xa94a: 84, + 0xa94b: 84, + 0xa94c: 84, + 0xa94d: 84, + 0xa94e: 84, + 0xa94f: 84, + 0xa950: 84, + 0xa951: 84, + 0xa980: 84, + 0xa981: 84, + 0xa982: 84, + 0xa9b3: 84, + 0xa9b6: 84, + 0xa9b7: 84, + 0xa9b8: 84, + 0xa9b9: 84, + 0xa9bc: 84, + 0xa9bd: 84, + 0xa9e5: 84, + 0xaa29: 84, + 0xaa2a: 84, + 0xaa2b: 84, + 0xaa2c: 84, + 0xaa2d: 84, + 0xaa2e: 84, + 0xaa31: 84, + 0xaa32: 84, + 0xaa35: 84, + 0xaa36: 84, + 0xaa43: 84, + 0xaa4c: 84, + 0xaa7c: 84, + 0xaab0: 84, + 0xaab2: 84, + 0xaab3: 84, + 0xaab4: 84, + 0xaab7: 84, + 0xaab8: 84, + 0xaabe: 84, + 0xaabf: 84, + 0xaac1: 84, + 0xaaec: 84, + 0xaaed: 84, + 0xaaf6: 84, + 0xabe5: 84, + 0xabe8: 84, + 0xabed: 84, + 0xfb1e: 84, + 0xfe00: 84, + 0xfe01: 84, + 0xfe02: 84, + 0xfe03: 84, + 0xfe04: 84, + 0xfe05: 84, + 0xfe06: 84, + 0xfe07: 84, + 0xfe08: 84, + 0xfe09: 84, + 0xfe0a: 84, + 0xfe0b: 84, + 0xfe0c: 84, + 0xfe0d: 84, + 0xfe0e: 84, + 0xfe0f: 84, + 0xfe20: 84, + 0xfe21: 84, + 0xfe22: 84, + 0xfe23: 84, + 0xfe24: 84, + 0xfe25: 84, + 0xfe26: 84, + 0xfe27: 84, + 0xfe28: 84, + 0xfe29: 84, + 0xfe2a: 84, + 0xfe2b: 84, + 0xfe2c: 84, + 0xfe2d: 84, + 0xfe2e: 84, + 0xfe2f: 84, + 0xfeff: 84, + 0xfff9: 84, + 0xfffa: 84, + 0xfffb: 84, + 0x101fd: 84, + 0x102e0: 84, + 0x10376: 84, + 0x10377: 84, + 0x10378: 84, + 0x10379: 84, + 0x1037a: 84, + 0x10a01: 84, + 0x10a02: 84, + 0x10a03: 84, + 0x10a05: 84, + 0x10a06: 84, + 0x10a0c: 84, + 0x10a0d: 84, + 0x10a0e: 84, + 0x10a0f: 84, + 0x10a38: 84, + 0x10a39: 84, + 0x10a3a: 84, + 0x10a3f: 84, + 0x10ac0: 68, + 0x10ac1: 68, + 0x10ac2: 68, + 0x10ac3: 68, + 0x10ac4: 68, + 0x10ac5: 82, + 0x10ac7: 82, + 0x10ac9: 82, + 0x10aca: 82, + 0x10acd: 76, + 0x10ace: 82, + 0x10acf: 82, + 0x10ad0: 82, + 0x10ad1: 82, + 0x10ad2: 82, + 0x10ad3: 68, + 0x10ad4: 68, + 0x10ad5: 68, + 0x10ad6: 68, + 0x10ad7: 76, + 0x10ad8: 68, + 0x10ad9: 68, + 0x10ada: 68, + 0x10adb: 68, + 0x10adc: 68, + 0x10add: 82, + 0x10ade: 68, + 0x10adf: 68, + 0x10ae0: 68, + 0x10ae1: 82, + 0x10ae4: 82, + 0x10ae5: 84, + 0x10ae6: 84, + 0x10aeb: 68, + 0x10aec: 68, + 0x10aed: 68, + 0x10aee: 68, + 0x10aef: 82, + 0x10b80: 68, + 0x10b81: 82, + 0x10b82: 68, + 0x10b83: 82, + 0x10b84: 82, + 0x10b85: 82, + 0x10b86: 68, + 0x10b87: 68, + 0x10b88: 68, + 0x10b89: 82, + 0x10b8a: 68, + 0x10b8b: 68, + 0x10b8c: 82, + 0x10b8d: 68, + 0x10b8e: 82, + 0x10b8f: 82, + 0x10b90: 68, + 0x10b91: 82, + 0x10ba9: 82, + 0x10baa: 82, + 0x10bab: 82, + 0x10bac: 82, + 0x10bad: 68, + 0x10bae: 68, + 0x10d00: 76, + 0x10d01: 68, + 0x10d02: 68, + 0x10d03: 68, + 0x10d04: 68, + 0x10d05: 68, + 0x10d06: 68, + 0x10d07: 68, + 0x10d08: 68, + 0x10d09: 68, + 0x10d0a: 68, + 0x10d0b: 68, + 0x10d0c: 68, + 0x10d0d: 68, + 0x10d0e: 68, + 0x10d0f: 68, + 0x10d10: 68, + 0x10d11: 68, + 0x10d12: 68, + 0x10d13: 68, + 0x10d14: 68, + 0x10d15: 68, + 0x10d16: 68, + 0x10d17: 68, + 0x10d18: 68, + 0x10d19: 68, + 0x10d1a: 68, + 0x10d1b: 68, + 0x10d1c: 68, + 0x10d1d: 68, + 0x10d1e: 68, + 0x10d1f: 68, + 0x10d20: 68, + 0x10d21: 68, + 0x10d22: 82, + 0x10d23: 68, + 0x10d24: 84, + 0x10d25: 84, + 0x10d26: 84, + 0x10d27: 84, + 0x10eab: 84, + 0x10eac: 84, + 0x10efd: 84, + 0x10efe: 84, + 0x10eff: 84, + 0x10f30: 68, + 0x10f31: 68, + 0x10f32: 68, + 0x10f33: 82, + 0x10f34: 68, + 0x10f35: 68, + 0x10f36: 68, + 0x10f37: 68, + 0x10f38: 68, + 0x10f39: 68, + 0x10f3a: 68, + 0x10f3b: 68, + 0x10f3c: 68, + 0x10f3d: 68, + 0x10f3e: 68, + 0x10f3f: 68, + 0x10f40: 68, + 0x10f41: 68, + 0x10f42: 68, + 0x10f43: 68, + 0x10f44: 68, + 0x10f46: 84, + 0x10f47: 84, + 0x10f48: 84, + 0x10f49: 84, + 0x10f4a: 84, + 0x10f4b: 84, + 0x10f4c: 84, + 0x10f4d: 84, + 0x10f4e: 84, + 0x10f4f: 84, + 0x10f50: 84, + 0x10f51: 68, + 0x10f52: 68, + 0x10f53: 68, + 0x10f54: 82, + 0x10f70: 68, + 0x10f71: 68, + 0x10f72: 68, + 0x10f73: 68, + 0x10f74: 82, + 0x10f75: 82, + 0x10f76: 68, + 0x10f77: 68, + 0x10f78: 68, + 0x10f79: 68, + 0x10f7a: 68, + 0x10f7b: 68, + 0x10f7c: 68, + 0x10f7d: 68, + 0x10f7e: 68, + 0x10f7f: 68, + 0x10f80: 68, + 0x10f81: 68, + 0x10f82: 84, + 0x10f83: 84, + 0x10f84: 84, + 0x10f85: 84, + 0x10fb0: 68, + 0x10fb2: 68, + 0x10fb3: 68, + 0x10fb4: 82, + 0x10fb5: 82, + 0x10fb6: 82, + 0x10fb8: 68, + 0x10fb9: 82, + 0x10fba: 82, + 0x10fbb: 68, + 0x10fbc: 68, + 0x10fbd: 82, + 0x10fbe: 68, + 0x10fbf: 68, + 0x10fc1: 68, + 0x10fc2: 82, + 0x10fc3: 82, + 0x10fc4: 68, + 0x10fc9: 82, + 0x10fca: 68, + 0x10fcb: 76, + 0x11001: 84, + 0x11038: 84, + 0x11039: 84, + 0x1103a: 84, + 0x1103b: 84, + 0x1103c: 84, + 0x1103d: 84, + 0x1103e: 84, + 0x1103f: 84, + 0x11040: 84, + 0x11041: 84, + 0x11042: 84, + 0x11043: 84, + 0x11044: 84, + 0x11045: 84, + 0x11046: 84, + 0x11070: 84, + 0x11073: 84, + 0x11074: 84, + 0x1107f: 84, + 0x11080: 84, + 0x11081: 84, + 0x110b3: 84, + 0x110b4: 84, + 0x110b5: 84, + 0x110b6: 84, + 0x110b9: 84, + 0x110ba: 84, + 0x110c2: 84, + 0x11100: 84, + 0x11101: 84, + 0x11102: 84, + 0x11127: 84, + 0x11128: 84, + 0x11129: 84, + 0x1112a: 84, + 0x1112b: 84, + 0x1112d: 84, + 0x1112e: 84, + 0x1112f: 84, + 0x11130: 84, + 0x11131: 84, + 0x11132: 84, + 0x11133: 84, + 0x11134: 84, + 0x11173: 84, + 0x11180: 84, + 0x11181: 84, + 0x111b6: 84, + 0x111b7: 84, + 0x111b8: 84, + 0x111b9: 84, + 0x111ba: 84, + 0x111bb: 84, + 0x111bc: 84, + 0x111bd: 84, + 0x111be: 84, + 0x111c9: 84, + 0x111ca: 84, + 0x111cb: 84, + 0x111cc: 84, + 0x111cf: 84, + 0x1122f: 84, + 0x11230: 84, + 0x11231: 84, + 0x11234: 84, + 0x11236: 84, + 0x11237: 84, + 0x1123e: 84, + 0x11241: 84, + 0x112df: 84, + 0x112e3: 84, + 0x112e4: 84, + 0x112e5: 84, + 0x112e6: 84, + 0x112e7: 84, + 0x112e8: 84, + 0x112e9: 84, + 0x112ea: 84, + 0x11300: 84, + 0x11301: 84, + 0x1133b: 84, + 0x1133c: 84, + 0x11340: 84, + 0x11366: 84, + 0x11367: 84, + 0x11368: 84, + 0x11369: 84, + 0x1136a: 84, + 0x1136b: 84, + 0x1136c: 84, + 0x11370: 84, + 0x11371: 84, + 0x11372: 84, + 0x11373: 84, + 0x11374: 84, + 0x11438: 84, + 0x11439: 84, + 0x1143a: 84, + 0x1143b: 84, + 0x1143c: 84, + 0x1143d: 84, + 0x1143e: 84, + 0x1143f: 84, + 0x11442: 84, + 0x11443: 84, + 0x11444: 84, + 0x11446: 84, + 0x1145e: 84, + 0x114b3: 84, + 0x114b4: 84, + 0x114b5: 84, + 0x114b6: 84, + 0x114b7: 84, + 0x114b8: 84, + 0x114ba: 84, + 0x114bf: 84, + 0x114c0: 84, + 0x114c2: 84, + 0x114c3: 84, + 0x115b2: 84, + 0x115b3: 84, + 0x115b4: 84, + 0x115b5: 84, + 0x115bc: 84, + 0x115bd: 84, + 0x115bf: 84, + 0x115c0: 84, + 0x115dc: 84, + 0x115dd: 84, + 0x11633: 84, + 0x11634: 84, + 0x11635: 84, + 0x11636: 84, + 0x11637: 84, + 0x11638: 84, + 0x11639: 84, + 0x1163a: 84, + 0x1163d: 84, + 0x1163f: 84, + 0x11640: 84, + 0x116ab: 84, + 0x116ad: 84, + 0x116b0: 84, + 0x116b1: 84, + 0x116b2: 84, + 0x116b3: 84, + 0x116b4: 84, + 0x116b5: 84, + 0x116b7: 84, + 0x1171d: 84, + 0x1171e: 84, + 0x1171f: 84, + 0x11722: 84, + 0x11723: 84, + 0x11724: 84, + 0x11725: 84, + 0x11727: 84, + 0x11728: 84, + 0x11729: 84, + 0x1172a: 84, + 0x1172b: 84, + 0x1182f: 84, + 0x11830: 84, + 0x11831: 84, + 0x11832: 84, + 0x11833: 84, + 0x11834: 84, + 0x11835: 84, + 0x11836: 84, + 0x11837: 84, + 0x11839: 84, + 0x1183a: 84, + 0x1193b: 84, + 0x1193c: 84, + 0x1193e: 84, + 0x11943: 84, + 0x119d4: 84, + 0x119d5: 84, + 0x119d6: 84, + 0x119d7: 84, + 0x119da: 84, + 0x119db: 84, + 0x119e0: 84, + 0x11a01: 84, + 0x11a02: 84, + 0x11a03: 84, + 0x11a04: 84, + 0x11a05: 84, + 0x11a06: 84, + 0x11a07: 84, + 0x11a08: 84, + 0x11a09: 84, + 0x11a0a: 84, + 0x11a33: 84, + 0x11a34: 84, + 0x11a35: 84, + 0x11a36: 84, + 0x11a37: 84, + 0x11a38: 84, + 0x11a3b: 84, + 0x11a3c: 84, + 0x11a3d: 84, + 0x11a3e: 84, + 0x11a47: 84, + 0x11a51: 84, + 0x11a52: 84, + 0x11a53: 84, + 0x11a54: 84, + 0x11a55: 84, + 0x11a56: 84, + 0x11a59: 84, + 0x11a5a: 84, + 0x11a5b: 84, + 0x11a8a: 84, + 0x11a8b: 84, + 0x11a8c: 84, + 0x11a8d: 84, + 0x11a8e: 84, + 0x11a8f: 84, + 0x11a90: 84, + 0x11a91: 84, + 0x11a92: 84, + 0x11a93: 84, + 0x11a94: 84, + 0x11a95: 84, + 0x11a96: 84, + 0x11a98: 84, + 0x11a99: 84, + 0x11c30: 84, + 0x11c31: 84, + 0x11c32: 84, + 0x11c33: 84, + 0x11c34: 84, + 0x11c35: 84, + 0x11c36: 84, + 0x11c38: 84, + 0x11c39: 84, + 0x11c3a: 84, + 0x11c3b: 84, + 0x11c3c: 84, + 0x11c3d: 84, + 0x11c3f: 84, + 0x11c92: 84, + 0x11c93: 84, + 0x11c94: 84, + 0x11c95: 84, + 0x11c96: 84, + 0x11c97: 84, + 0x11c98: 84, + 0x11c99: 84, + 0x11c9a: 84, + 0x11c9b: 84, + 0x11c9c: 84, + 0x11c9d: 84, + 0x11c9e: 84, + 0x11c9f: 84, + 0x11ca0: 84, + 0x11ca1: 84, + 0x11ca2: 84, + 0x11ca3: 84, + 0x11ca4: 84, + 0x11ca5: 84, + 0x11ca6: 84, + 0x11ca7: 84, + 0x11caa: 84, + 0x11cab: 84, + 0x11cac: 84, + 0x11cad: 84, + 0x11cae: 84, + 0x11caf: 84, + 0x11cb0: 84, + 0x11cb2: 84, + 0x11cb3: 84, + 0x11cb5: 84, + 0x11cb6: 84, + 0x11d31: 84, + 0x11d32: 84, + 0x11d33: 84, + 0x11d34: 84, + 0x11d35: 84, + 0x11d36: 84, + 0x11d3a: 84, + 0x11d3c: 84, + 0x11d3d: 84, + 0x11d3f: 84, + 0x11d40: 84, + 0x11d41: 84, + 0x11d42: 84, + 0x11d43: 84, + 0x11d44: 84, + 0x11d45: 84, + 0x11d47: 84, + 0x11d90: 84, + 0x11d91: 84, + 0x11d95: 84, + 0x11d97: 84, + 0x11ef3: 84, + 0x11ef4: 84, + 0x11f00: 84, + 0x11f01: 84, + 0x11f36: 84, + 0x11f37: 84, + 0x11f38: 84, + 0x11f39: 84, + 0x11f3a: 84, + 0x11f40: 84, + 0x11f42: 84, + 0x13430: 84, + 0x13431: 84, + 0x13432: 84, + 0x13433: 84, + 0x13434: 84, + 0x13435: 84, + 0x13436: 84, + 0x13437: 84, + 0x13438: 84, + 0x13439: 84, + 0x1343a: 84, + 0x1343b: 84, + 0x1343c: 84, + 0x1343d: 84, + 0x1343e: 84, + 0x1343f: 84, + 0x13440: 84, + 0x13447: 84, + 0x13448: 84, + 0x13449: 84, + 0x1344a: 84, + 0x1344b: 84, + 0x1344c: 84, + 0x1344d: 84, + 0x1344e: 84, + 0x1344f: 84, + 0x13450: 84, + 0x13451: 84, + 0x13452: 84, + 0x13453: 84, + 0x13454: 84, + 0x13455: 84, + 0x16af0: 84, + 0x16af1: 84, + 0x16af2: 84, + 0x16af3: 84, + 0x16af4: 84, + 0x16b30: 84, + 0x16b31: 84, + 0x16b32: 84, + 0x16b33: 84, + 0x16b34: 84, + 0x16b35: 84, + 0x16b36: 84, + 0x16f4f: 84, + 0x16f8f: 84, + 0x16f90: 84, + 0x16f91: 84, + 0x16f92: 84, + 0x16fe4: 84, + 0x1bc9d: 84, + 0x1bc9e: 84, + 0x1bca0: 84, + 0x1bca1: 84, + 0x1bca2: 84, + 0x1bca3: 84, + 0x1cf00: 84, + 0x1cf01: 84, + 0x1cf02: 84, + 0x1cf03: 84, + 0x1cf04: 84, + 0x1cf05: 84, + 0x1cf06: 84, + 0x1cf07: 84, + 0x1cf08: 84, + 0x1cf09: 84, + 0x1cf0a: 84, + 0x1cf0b: 84, + 0x1cf0c: 84, + 0x1cf0d: 84, + 0x1cf0e: 84, + 0x1cf0f: 84, + 0x1cf10: 84, + 0x1cf11: 84, + 0x1cf12: 84, + 0x1cf13: 84, + 0x1cf14: 84, + 0x1cf15: 84, + 0x1cf16: 84, + 0x1cf17: 84, + 0x1cf18: 84, + 0x1cf19: 84, + 0x1cf1a: 84, + 0x1cf1b: 84, + 0x1cf1c: 84, + 0x1cf1d: 84, + 0x1cf1e: 84, + 0x1cf1f: 84, + 0x1cf20: 84, + 0x1cf21: 84, + 0x1cf22: 84, + 0x1cf23: 84, + 0x1cf24: 84, + 0x1cf25: 84, + 0x1cf26: 84, + 0x1cf27: 84, + 0x1cf28: 84, + 0x1cf29: 84, + 0x1cf2a: 84, + 0x1cf2b: 84, + 0x1cf2c: 84, + 0x1cf2d: 84, + 0x1cf30: 84, + 0x1cf31: 84, + 0x1cf32: 84, + 0x1cf33: 84, + 0x1cf34: 84, + 0x1cf35: 84, + 0x1cf36: 84, + 0x1cf37: 84, + 0x1cf38: 84, + 0x1cf39: 84, + 0x1cf3a: 84, + 0x1cf3b: 84, + 0x1cf3c: 84, + 0x1cf3d: 84, + 0x1cf3e: 84, + 0x1cf3f: 84, + 0x1cf40: 84, + 0x1cf41: 84, + 0x1cf42: 84, + 0x1cf43: 84, + 0x1cf44: 84, + 0x1cf45: 84, + 0x1cf46: 84, + 0x1d167: 84, + 0x1d168: 84, + 0x1d169: 84, + 0x1d173: 84, + 0x1d174: 84, + 0x1d175: 84, + 0x1d176: 84, + 0x1d177: 84, + 0x1d178: 84, + 0x1d179: 84, + 0x1d17a: 84, + 0x1d17b: 84, + 0x1d17c: 84, + 0x1d17d: 84, + 0x1d17e: 84, + 0x1d17f: 84, + 0x1d180: 84, + 0x1d181: 84, + 0x1d182: 84, + 0x1d185: 84, + 0x1d186: 84, + 0x1d187: 84, + 0x1d188: 84, + 0x1d189: 84, + 0x1d18a: 84, + 0x1d18b: 84, + 0x1d1aa: 84, + 0x1d1ab: 84, + 0x1d1ac: 84, + 0x1d1ad: 84, + 0x1d242: 84, + 0x1d243: 84, + 0x1d244: 84, + 0x1da00: 84, + 0x1da01: 84, + 0x1da02: 84, + 0x1da03: 84, + 0x1da04: 84, + 0x1da05: 84, + 0x1da06: 84, + 0x1da07: 84, + 0x1da08: 84, + 0x1da09: 84, + 0x1da0a: 84, + 0x1da0b: 84, + 0x1da0c: 84, + 0x1da0d: 84, + 0x1da0e: 84, + 0x1da0f: 84, + 0x1da10: 84, + 0x1da11: 84, + 0x1da12: 84, + 0x1da13: 84, + 0x1da14: 84, + 0x1da15: 84, + 0x1da16: 84, + 0x1da17: 84, + 0x1da18: 84, + 0x1da19: 84, + 0x1da1a: 84, + 0x1da1b: 84, + 0x1da1c: 84, + 0x1da1d: 84, + 0x1da1e: 84, + 0x1da1f: 84, + 0x1da20: 84, + 0x1da21: 84, + 0x1da22: 84, + 0x1da23: 84, + 0x1da24: 84, + 0x1da25: 84, + 0x1da26: 84, + 0x1da27: 84, + 0x1da28: 84, + 0x1da29: 84, + 0x1da2a: 84, + 0x1da2b: 84, + 0x1da2c: 84, + 0x1da2d: 84, + 0x1da2e: 84, + 0x1da2f: 84, + 0x1da30: 84, + 0x1da31: 84, + 0x1da32: 84, + 0x1da33: 84, + 0x1da34: 84, + 0x1da35: 84, + 0x1da36: 84, + 0x1da3b: 84, + 0x1da3c: 84, + 0x1da3d: 84, + 0x1da3e: 84, + 0x1da3f: 84, + 0x1da40: 84, + 0x1da41: 84, + 0x1da42: 84, + 0x1da43: 84, + 0x1da44: 84, + 0x1da45: 84, + 0x1da46: 84, + 0x1da47: 84, + 0x1da48: 84, + 0x1da49: 84, + 0x1da4a: 84, + 0x1da4b: 84, + 0x1da4c: 84, + 0x1da4d: 84, + 0x1da4e: 84, + 0x1da4f: 84, + 0x1da50: 84, + 0x1da51: 84, + 0x1da52: 84, + 0x1da53: 84, + 0x1da54: 84, + 0x1da55: 84, + 0x1da56: 84, + 0x1da57: 84, + 0x1da58: 84, + 0x1da59: 84, + 0x1da5a: 84, + 0x1da5b: 84, + 0x1da5c: 84, + 0x1da5d: 84, + 0x1da5e: 84, + 0x1da5f: 84, + 0x1da60: 84, + 0x1da61: 84, + 0x1da62: 84, + 0x1da63: 84, + 0x1da64: 84, + 0x1da65: 84, + 0x1da66: 84, + 0x1da67: 84, + 0x1da68: 84, + 0x1da69: 84, + 0x1da6a: 84, + 0x1da6b: 84, + 0x1da6c: 84, + 0x1da75: 84, + 0x1da84: 84, + 0x1da9b: 84, + 0x1da9c: 84, + 0x1da9d: 84, + 0x1da9e: 84, + 0x1da9f: 84, + 0x1daa1: 84, + 0x1daa2: 84, + 0x1daa3: 84, + 0x1daa4: 84, + 0x1daa5: 84, + 0x1daa6: 84, + 0x1daa7: 84, + 0x1daa8: 84, + 0x1daa9: 84, + 0x1daaa: 84, + 0x1daab: 84, + 0x1daac: 84, + 0x1daad: 84, + 0x1daae: 84, + 0x1daaf: 84, + 0x1e000: 84, + 0x1e001: 84, + 0x1e002: 84, + 0x1e003: 84, + 0x1e004: 84, + 0x1e005: 84, + 0x1e006: 84, + 0x1e008: 84, + 0x1e009: 84, + 0x1e00a: 84, + 0x1e00b: 84, + 0x1e00c: 84, + 0x1e00d: 84, + 0x1e00e: 84, + 0x1e00f: 84, + 0x1e010: 84, + 0x1e011: 84, + 0x1e012: 84, + 0x1e013: 84, + 0x1e014: 84, + 0x1e015: 84, + 0x1e016: 84, + 0x1e017: 84, + 0x1e018: 84, + 0x1e01b: 84, + 0x1e01c: 84, + 0x1e01d: 84, + 0x1e01e: 84, + 0x1e01f: 84, + 0x1e020: 84, + 0x1e021: 84, + 0x1e023: 84, + 0x1e024: 84, + 0x1e026: 84, + 0x1e027: 84, + 0x1e028: 84, + 0x1e029: 84, + 0x1e02a: 84, + 0x1e08f: 84, + 0x1e130: 84, + 0x1e131: 84, + 0x1e132: 84, + 0x1e133: 84, + 0x1e134: 84, + 0x1e135: 84, + 0x1e136: 84, + 0x1e2ae: 84, + 0x1e2ec: 84, + 0x1e2ed: 84, + 0x1e2ee: 84, + 0x1e2ef: 84, + 0x1e4ec: 84, + 0x1e4ed: 84, + 0x1e4ee: 84, + 0x1e4ef: 84, + 0x1e8d0: 84, + 0x1e8d1: 84, + 0x1e8d2: 84, + 0x1e8d3: 84, + 0x1e8d4: 84, + 0x1e8d5: 84, + 0x1e8d6: 84, + 0x1e900: 68, + 0x1e901: 68, + 0x1e902: 68, + 0x1e903: 68, + 0x1e904: 68, + 0x1e905: 68, + 0x1e906: 68, + 0x1e907: 68, + 0x1e908: 68, + 0x1e909: 68, + 0x1e90a: 68, + 0x1e90b: 68, + 0x1e90c: 68, + 0x1e90d: 68, + 0x1e90e: 68, + 0x1e90f: 68, + 0x1e910: 68, + 0x1e911: 68, + 0x1e912: 68, + 0x1e913: 68, + 0x1e914: 68, + 0x1e915: 68, + 0x1e916: 68, + 0x1e917: 68, + 0x1e918: 68, + 0x1e919: 68, + 0x1e91a: 68, + 0x1e91b: 68, + 0x1e91c: 68, + 0x1e91d: 68, + 0x1e91e: 68, + 0x1e91f: 68, + 0x1e920: 68, + 0x1e921: 68, + 0x1e922: 68, + 0x1e923: 68, + 0x1e924: 68, + 0x1e925: 68, + 0x1e926: 68, + 0x1e927: 68, + 0x1e928: 68, + 0x1e929: 68, + 0x1e92a: 68, + 0x1e92b: 68, + 0x1e92c: 68, + 0x1e92d: 68, + 0x1e92e: 68, + 0x1e92f: 68, + 0x1e930: 68, + 0x1e931: 68, + 0x1e932: 68, + 0x1e933: 68, + 0x1e934: 68, + 0x1e935: 68, + 0x1e936: 68, + 0x1e937: 68, + 0x1e938: 68, + 0x1e939: 68, + 0x1e93a: 68, + 0x1e93b: 68, + 0x1e93c: 68, + 0x1e93d: 68, + 0x1e93e: 68, + 0x1e93f: 68, + 0x1e940: 68, + 0x1e941: 68, + 0x1e942: 68, + 0x1e943: 68, + 0x1e944: 84, + 0x1e945: 84, + 0x1e946: 84, + 0x1e947: 84, + 0x1e948: 84, + 0x1e949: 84, + 0x1e94a: 84, + 0x1e94b: 84, + 0xe0001: 84, + 0xe0020: 84, + 0xe0021: 84, + 0xe0022: 84, + 0xe0023: 84, + 0xe0024: 84, + 0xe0025: 84, + 0xe0026: 84, + 0xe0027: 84, + 0xe0028: 84, + 0xe0029: 84, + 0xe002a: 84, + 0xe002b: 84, + 0xe002c: 84, + 0xe002d: 84, + 0xe002e: 84, + 0xe002f: 84, + 0xe0030: 84, + 0xe0031: 84, + 0xe0032: 84, + 0xe0033: 84, + 0xe0034: 84, + 0xe0035: 84, + 0xe0036: 84, + 0xe0037: 84, + 0xe0038: 84, + 0xe0039: 84, + 0xe003a: 84, + 0xe003b: 84, + 0xe003c: 84, + 0xe003d: 84, + 0xe003e: 84, + 0xe003f: 84, + 0xe0040: 84, + 0xe0041: 84, + 0xe0042: 84, + 0xe0043: 84, + 0xe0044: 84, + 0xe0045: 84, + 0xe0046: 84, + 0xe0047: 84, + 0xe0048: 84, + 0xe0049: 84, + 0xe004a: 84, + 0xe004b: 84, + 0xe004c: 84, + 0xe004d: 84, + 0xe004e: 84, + 0xe004f: 84, + 0xe0050: 84, + 0xe0051: 84, + 0xe0052: 84, + 0xe0053: 84, + 0xe0054: 84, + 0xe0055: 84, + 0xe0056: 84, + 0xe0057: 84, + 0xe0058: 84, + 0xe0059: 84, + 0xe005a: 84, + 0xe005b: 84, + 0xe005c: 84, + 0xe005d: 84, + 0xe005e: 84, + 0xe005f: 84, + 0xe0060: 84, + 0xe0061: 84, + 0xe0062: 84, + 0xe0063: 84, + 0xe0064: 84, + 0xe0065: 84, + 0xe0066: 84, + 0xe0067: 84, + 0xe0068: 84, + 0xe0069: 84, + 0xe006a: 84, + 0xe006b: 84, + 0xe006c: 84, + 0xe006d: 84, + 0xe006e: 84, + 0xe006f: 84, + 0xe0070: 84, + 0xe0071: 84, + 0xe0072: 84, + 0xe0073: 84, + 0xe0074: 84, + 0xe0075: 84, + 0xe0076: 84, + 0xe0077: 84, + 0xe0078: 84, + 0xe0079: 84, + 0xe007a: 84, + 0xe007b: 84, + 0xe007c: 84, + 0xe007d: 84, + 0xe007e: 84, + 0xe007f: 84, + 0xe0100: 84, + 0xe0101: 84, + 0xe0102: 84, + 0xe0103: 84, + 0xe0104: 84, + 0xe0105: 84, + 0xe0106: 84, + 0xe0107: 84, + 0xe0108: 84, + 0xe0109: 84, + 0xe010a: 84, + 0xe010b: 84, + 0xe010c: 84, + 0xe010d: 84, + 0xe010e: 84, + 0xe010f: 84, + 0xe0110: 84, + 0xe0111: 84, + 0xe0112: 84, + 0xe0113: 84, + 0xe0114: 84, + 0xe0115: 84, + 0xe0116: 84, + 0xe0117: 84, + 0xe0118: 84, + 0xe0119: 84, + 0xe011a: 84, + 0xe011b: 84, + 0xe011c: 84, + 0xe011d: 84, + 0xe011e: 84, + 0xe011f: 84, + 0xe0120: 84, + 0xe0121: 84, + 0xe0122: 84, + 0xe0123: 84, + 0xe0124: 84, + 0xe0125: 84, + 0xe0126: 84, + 0xe0127: 84, + 0xe0128: 84, + 0xe0129: 84, + 0xe012a: 84, + 0xe012b: 84, + 0xe012c: 84, + 0xe012d: 84, + 0xe012e: 84, + 0xe012f: 84, + 0xe0130: 84, + 0xe0131: 84, + 0xe0132: 84, + 0xe0133: 84, + 0xe0134: 84, + 0xe0135: 84, + 0xe0136: 84, + 0xe0137: 84, + 0xe0138: 84, + 0xe0139: 84, + 0xe013a: 84, + 0xe013b: 84, + 0xe013c: 84, + 0xe013d: 84, + 0xe013e: 84, + 0xe013f: 84, + 0xe0140: 84, + 0xe0141: 84, + 0xe0142: 84, + 0xe0143: 84, + 0xe0144: 84, + 0xe0145: 84, + 0xe0146: 84, + 0xe0147: 84, + 0xe0148: 84, + 0xe0149: 84, + 0xe014a: 84, + 0xe014b: 84, + 0xe014c: 84, + 0xe014d: 84, + 0xe014e: 84, + 0xe014f: 84, + 0xe0150: 84, + 0xe0151: 84, + 0xe0152: 84, + 0xe0153: 84, + 0xe0154: 84, + 0xe0155: 84, + 0xe0156: 84, + 0xe0157: 84, + 0xe0158: 84, + 0xe0159: 84, + 0xe015a: 84, + 0xe015b: 84, + 0xe015c: 84, + 0xe015d: 84, + 0xe015e: 84, + 0xe015f: 84, + 0xe0160: 84, + 0xe0161: 84, + 0xe0162: 84, + 0xe0163: 84, + 0xe0164: 84, + 0xe0165: 84, + 0xe0166: 84, + 0xe0167: 84, + 0xe0168: 84, + 0xe0169: 84, + 0xe016a: 84, + 0xe016b: 84, + 0xe016c: 84, + 0xe016d: 84, + 0xe016e: 84, + 0xe016f: 84, + 0xe0170: 84, + 0xe0171: 84, + 0xe0172: 84, + 0xe0173: 84, + 0xe0174: 84, + 0xe0175: 84, + 0xe0176: 84, + 0xe0177: 84, + 0xe0178: 84, + 0xe0179: 84, + 0xe017a: 84, + 0xe017b: 84, + 0xe017c: 84, + 0xe017d: 84, + 0xe017e: 84, + 0xe017f: 84, + 0xe0180: 84, + 0xe0181: 84, + 0xe0182: 84, + 0xe0183: 84, + 0xe0184: 84, + 0xe0185: 84, + 0xe0186: 84, + 0xe0187: 84, + 0xe0188: 84, + 0xe0189: 84, + 0xe018a: 84, + 0xe018b: 84, + 0xe018c: 84, + 0xe018d: 84, + 0xe018e: 84, + 0xe018f: 84, + 0xe0190: 84, + 0xe0191: 84, + 0xe0192: 84, + 0xe0193: 84, + 0xe0194: 84, + 0xe0195: 84, + 0xe0196: 84, + 0xe0197: 84, + 0xe0198: 84, + 0xe0199: 84, + 0xe019a: 84, + 0xe019b: 84, + 0xe019c: 84, + 0xe019d: 84, + 0xe019e: 84, + 0xe019f: 84, + 0xe01a0: 84, + 0xe01a1: 84, + 0xe01a2: 84, + 0xe01a3: 84, + 0xe01a4: 84, + 0xe01a5: 84, + 0xe01a6: 84, + 0xe01a7: 84, + 0xe01a8: 84, + 0xe01a9: 84, + 0xe01aa: 84, + 0xe01ab: 84, + 0xe01ac: 84, + 0xe01ad: 84, + 0xe01ae: 84, + 0xe01af: 84, + 0xe01b0: 84, + 0xe01b1: 84, + 0xe01b2: 84, + 0xe01b3: 84, + 0xe01b4: 84, + 0xe01b5: 84, + 0xe01b6: 84, + 0xe01b7: 84, + 0xe01b8: 84, + 0xe01b9: 84, + 0xe01ba: 84, + 0xe01bb: 84, + 0xe01bc: 84, + 0xe01bd: 84, + 0xe01be: 84, + 0xe01bf: 84, + 0xe01c0: 84, + 0xe01c1: 84, + 0xe01c2: 84, + 0xe01c3: 84, + 0xe01c4: 84, + 0xe01c5: 84, + 0xe01c6: 84, + 0xe01c7: 84, + 0xe01c8: 84, + 0xe01c9: 84, + 0xe01ca: 84, + 0xe01cb: 84, + 0xe01cc: 84, + 0xe01cd: 84, + 0xe01ce: 84, + 0xe01cf: 84, + 0xe01d0: 84, + 0xe01d1: 84, + 0xe01d2: 84, + 0xe01d3: 84, + 0xe01d4: 84, + 0xe01d5: 84, + 0xe01d6: 84, + 0xe01d7: 84, + 0xe01d8: 84, + 0xe01d9: 84, + 0xe01da: 84, + 0xe01db: 84, + 0xe01dc: 84, + 0xe01dd: 84, + 0xe01de: 84, + 0xe01df: 84, + 0xe01e0: 84, + 0xe01e1: 84, + 0xe01e2: 84, + 0xe01e3: 84, + 0xe01e4: 84, + 0xe01e5: 84, + 0xe01e6: 84, + 0xe01e7: 84, + 0xe01e8: 84, + 0xe01e9: 84, + 0xe01ea: 84, + 0xe01eb: 84, + 0xe01ec: 84, + 0xe01ed: 84, + 0xe01ee: 84, + 0xe01ef: 84, +} +codepoint_classes = { + 'PVALID': ( + 0x2d0000002e, + 0x300000003a, + 0x610000007b, + 0xdf000000f7, + 0xf800000100, + 0x10100000102, + 0x10300000104, + 0x10500000106, + 0x10700000108, + 0x1090000010a, + 0x10b0000010c, + 0x10d0000010e, + 0x10f00000110, + 0x11100000112, + 0x11300000114, + 0x11500000116, + 0x11700000118, + 0x1190000011a, + 0x11b0000011c, + 0x11d0000011e, + 0x11f00000120, + 0x12100000122, + 0x12300000124, + 0x12500000126, + 0x12700000128, + 0x1290000012a, + 0x12b0000012c, + 0x12d0000012e, + 0x12f00000130, + 0x13100000132, + 0x13500000136, + 0x13700000139, + 0x13a0000013b, + 0x13c0000013d, + 0x13e0000013f, + 0x14200000143, + 0x14400000145, + 0x14600000147, + 0x14800000149, + 0x14b0000014c, + 0x14d0000014e, + 0x14f00000150, + 0x15100000152, + 0x15300000154, + 0x15500000156, + 0x15700000158, + 0x1590000015a, + 0x15b0000015c, + 0x15d0000015e, + 0x15f00000160, + 0x16100000162, + 0x16300000164, + 0x16500000166, + 0x16700000168, + 0x1690000016a, + 0x16b0000016c, + 0x16d0000016e, + 0x16f00000170, + 0x17100000172, + 0x17300000174, + 0x17500000176, + 0x17700000178, + 0x17a0000017b, + 0x17c0000017d, + 0x17e0000017f, + 0x18000000181, + 0x18300000184, + 0x18500000186, + 0x18800000189, + 0x18c0000018e, + 0x19200000193, + 0x19500000196, + 0x1990000019c, + 0x19e0000019f, + 0x1a1000001a2, + 0x1a3000001a4, + 0x1a5000001a6, + 0x1a8000001a9, + 0x1aa000001ac, + 0x1ad000001ae, + 0x1b0000001b1, + 0x1b4000001b5, + 0x1b6000001b7, + 0x1b9000001bc, + 0x1bd000001c4, + 0x1ce000001cf, + 0x1d0000001d1, + 0x1d2000001d3, + 0x1d4000001d5, + 0x1d6000001d7, + 0x1d8000001d9, + 0x1da000001db, + 0x1dc000001de, + 0x1df000001e0, + 0x1e1000001e2, + 0x1e3000001e4, + 0x1e5000001e6, + 0x1e7000001e8, + 0x1e9000001ea, + 0x1eb000001ec, + 0x1ed000001ee, + 0x1ef000001f1, + 0x1f5000001f6, + 0x1f9000001fa, + 0x1fb000001fc, + 0x1fd000001fe, + 0x1ff00000200, + 0x20100000202, + 0x20300000204, + 0x20500000206, + 0x20700000208, + 0x2090000020a, + 0x20b0000020c, + 0x20d0000020e, + 0x20f00000210, + 0x21100000212, + 0x21300000214, + 0x21500000216, + 0x21700000218, + 0x2190000021a, + 0x21b0000021c, + 0x21d0000021e, + 0x21f00000220, + 0x22100000222, + 0x22300000224, + 0x22500000226, + 0x22700000228, + 0x2290000022a, + 0x22b0000022c, + 0x22d0000022e, + 0x22f00000230, + 0x23100000232, + 0x2330000023a, + 0x23c0000023d, + 0x23f00000241, + 0x24200000243, + 0x24700000248, + 0x2490000024a, + 0x24b0000024c, + 0x24d0000024e, + 0x24f000002b0, + 0x2b9000002c2, + 0x2c6000002d2, + 0x2ec000002ed, + 0x2ee000002ef, + 0x30000000340, + 0x34200000343, + 0x3460000034f, + 0x35000000370, + 0x37100000372, + 0x37300000374, + 0x37700000378, + 0x37b0000037e, + 0x39000000391, + 0x3ac000003cf, + 0x3d7000003d8, + 0x3d9000003da, + 0x3db000003dc, + 0x3dd000003de, + 0x3df000003e0, + 0x3e1000003e2, + 0x3e3000003e4, + 0x3e5000003e6, + 0x3e7000003e8, + 0x3e9000003ea, + 0x3eb000003ec, + 0x3ed000003ee, + 0x3ef000003f0, + 0x3f3000003f4, + 0x3f8000003f9, + 0x3fb000003fd, + 0x43000000460, + 0x46100000462, + 0x46300000464, + 0x46500000466, + 0x46700000468, + 0x4690000046a, + 0x46b0000046c, + 0x46d0000046e, + 0x46f00000470, + 0x47100000472, + 0x47300000474, + 0x47500000476, + 0x47700000478, + 0x4790000047a, + 0x47b0000047c, + 0x47d0000047e, + 0x47f00000480, + 0x48100000482, + 0x48300000488, + 0x48b0000048c, + 0x48d0000048e, + 0x48f00000490, + 0x49100000492, + 0x49300000494, + 0x49500000496, + 0x49700000498, + 0x4990000049a, + 0x49b0000049c, + 0x49d0000049e, + 0x49f000004a0, + 0x4a1000004a2, + 0x4a3000004a4, + 0x4a5000004a6, + 0x4a7000004a8, + 0x4a9000004aa, + 0x4ab000004ac, + 0x4ad000004ae, + 0x4af000004b0, + 0x4b1000004b2, + 0x4b3000004b4, + 0x4b5000004b6, + 0x4b7000004b8, + 0x4b9000004ba, + 0x4bb000004bc, + 0x4bd000004be, + 0x4bf000004c0, + 0x4c2000004c3, + 0x4c4000004c5, + 0x4c6000004c7, + 0x4c8000004c9, + 0x4ca000004cb, + 0x4cc000004cd, + 0x4ce000004d0, + 0x4d1000004d2, + 0x4d3000004d4, + 0x4d5000004d6, + 0x4d7000004d8, + 0x4d9000004da, + 0x4db000004dc, + 0x4dd000004de, + 0x4df000004e0, + 0x4e1000004e2, + 0x4e3000004e4, + 0x4e5000004e6, + 0x4e7000004e8, + 0x4e9000004ea, + 0x4eb000004ec, + 0x4ed000004ee, + 0x4ef000004f0, + 0x4f1000004f2, + 0x4f3000004f4, + 0x4f5000004f6, + 0x4f7000004f8, + 0x4f9000004fa, + 0x4fb000004fc, + 0x4fd000004fe, + 0x4ff00000500, + 0x50100000502, + 0x50300000504, + 0x50500000506, + 0x50700000508, + 0x5090000050a, + 0x50b0000050c, + 0x50d0000050e, + 0x50f00000510, + 0x51100000512, + 0x51300000514, + 0x51500000516, + 0x51700000518, + 0x5190000051a, + 0x51b0000051c, + 0x51d0000051e, + 0x51f00000520, + 0x52100000522, + 0x52300000524, + 0x52500000526, + 0x52700000528, + 0x5290000052a, + 0x52b0000052c, + 0x52d0000052e, + 0x52f00000530, + 0x5590000055a, + 0x56000000587, + 0x58800000589, + 0x591000005be, + 0x5bf000005c0, + 0x5c1000005c3, + 0x5c4000005c6, + 0x5c7000005c8, + 0x5d0000005eb, + 0x5ef000005f3, + 0x6100000061b, + 0x62000000640, + 0x64100000660, + 0x66e00000675, + 0x679000006d4, + 0x6d5000006dd, + 0x6df000006e9, + 0x6ea000006f0, + 0x6fa00000700, + 0x7100000074b, + 0x74d000007b2, + 0x7c0000007f6, + 0x7fd000007fe, + 0x8000000082e, + 0x8400000085c, + 0x8600000086b, + 0x87000000888, + 0x8890000088f, + 0x898000008e2, + 0x8e300000958, + 0x96000000964, + 0x96600000970, + 0x97100000984, + 0x9850000098d, + 0x98f00000991, + 0x993000009a9, + 0x9aa000009b1, + 0x9b2000009b3, + 0x9b6000009ba, + 0x9bc000009c5, + 0x9c7000009c9, + 0x9cb000009cf, + 0x9d7000009d8, + 0x9e0000009e4, + 0x9e6000009f2, + 0x9fc000009fd, + 0x9fe000009ff, + 0xa0100000a04, + 0xa0500000a0b, + 0xa0f00000a11, + 0xa1300000a29, + 0xa2a00000a31, + 0xa3200000a33, + 0xa3500000a36, + 0xa3800000a3a, + 0xa3c00000a3d, + 0xa3e00000a43, + 0xa4700000a49, + 0xa4b00000a4e, + 0xa5100000a52, + 0xa5c00000a5d, + 0xa6600000a76, + 0xa8100000a84, + 0xa8500000a8e, + 0xa8f00000a92, + 0xa9300000aa9, + 0xaaa00000ab1, + 0xab200000ab4, + 0xab500000aba, + 0xabc00000ac6, + 0xac700000aca, + 0xacb00000ace, + 0xad000000ad1, + 0xae000000ae4, + 0xae600000af0, + 0xaf900000b00, + 0xb0100000b04, + 0xb0500000b0d, + 0xb0f00000b11, + 0xb1300000b29, + 0xb2a00000b31, + 0xb3200000b34, + 0xb3500000b3a, + 0xb3c00000b45, + 0xb4700000b49, + 0xb4b00000b4e, + 0xb5500000b58, + 0xb5f00000b64, + 0xb6600000b70, + 0xb7100000b72, + 0xb8200000b84, + 0xb8500000b8b, + 0xb8e00000b91, + 0xb9200000b96, + 0xb9900000b9b, + 0xb9c00000b9d, + 0xb9e00000ba0, + 0xba300000ba5, + 0xba800000bab, + 0xbae00000bba, + 0xbbe00000bc3, + 0xbc600000bc9, + 0xbca00000bce, + 0xbd000000bd1, + 0xbd700000bd8, + 0xbe600000bf0, + 0xc0000000c0d, + 0xc0e00000c11, + 0xc1200000c29, + 0xc2a00000c3a, + 0xc3c00000c45, + 0xc4600000c49, + 0xc4a00000c4e, + 0xc5500000c57, + 0xc5800000c5b, + 0xc5d00000c5e, + 0xc6000000c64, + 0xc6600000c70, + 0xc8000000c84, + 0xc8500000c8d, + 0xc8e00000c91, + 0xc9200000ca9, + 0xcaa00000cb4, + 0xcb500000cba, + 0xcbc00000cc5, + 0xcc600000cc9, + 0xcca00000cce, + 0xcd500000cd7, + 0xcdd00000cdf, + 0xce000000ce4, + 0xce600000cf0, + 0xcf100000cf4, + 0xd0000000d0d, + 0xd0e00000d11, + 0xd1200000d45, + 0xd4600000d49, + 0xd4a00000d4f, + 0xd5400000d58, + 0xd5f00000d64, + 0xd6600000d70, + 0xd7a00000d80, + 0xd8100000d84, + 0xd8500000d97, + 0xd9a00000db2, + 0xdb300000dbc, + 0xdbd00000dbe, + 0xdc000000dc7, + 0xdca00000dcb, + 0xdcf00000dd5, + 0xdd600000dd7, + 0xdd800000de0, + 0xde600000df0, + 0xdf200000df4, + 0xe0100000e33, + 0xe3400000e3b, + 0xe4000000e4f, + 0xe5000000e5a, + 0xe8100000e83, + 0xe8400000e85, + 0xe8600000e8b, + 0xe8c00000ea4, + 0xea500000ea6, + 0xea700000eb3, + 0xeb400000ebe, + 0xec000000ec5, + 0xec600000ec7, + 0xec800000ecf, + 0xed000000eda, + 0xede00000ee0, + 0xf0000000f01, + 0xf0b00000f0c, + 0xf1800000f1a, + 0xf2000000f2a, + 0xf3500000f36, + 0xf3700000f38, + 0xf3900000f3a, + 0xf3e00000f43, + 0xf4400000f48, + 0xf4900000f4d, + 0xf4e00000f52, + 0xf5300000f57, + 0xf5800000f5c, + 0xf5d00000f69, + 0xf6a00000f6d, + 0xf7100000f73, + 0xf7400000f75, + 0xf7a00000f81, + 0xf8200000f85, + 0xf8600000f93, + 0xf9400000f98, + 0xf9900000f9d, + 0xf9e00000fa2, + 0xfa300000fa7, + 0xfa800000fac, + 0xfad00000fb9, + 0xfba00000fbd, + 0xfc600000fc7, + 0x10000000104a, + 0x10500000109e, + 0x10d0000010fb, + 0x10fd00001100, + 0x120000001249, + 0x124a0000124e, + 0x125000001257, + 0x125800001259, + 0x125a0000125e, + 0x126000001289, + 0x128a0000128e, + 0x1290000012b1, + 0x12b2000012b6, + 0x12b8000012bf, + 0x12c0000012c1, + 0x12c2000012c6, + 0x12c8000012d7, + 0x12d800001311, + 0x131200001316, + 0x13180000135b, + 0x135d00001360, + 0x138000001390, + 0x13a0000013f6, + 0x14010000166d, + 0x166f00001680, + 0x16810000169b, + 0x16a0000016eb, + 0x16f1000016f9, + 0x170000001716, + 0x171f00001735, + 0x174000001754, + 0x17600000176d, + 0x176e00001771, + 0x177200001774, + 0x1780000017b4, + 0x17b6000017d4, + 0x17d7000017d8, + 0x17dc000017de, + 0x17e0000017ea, + 0x18100000181a, + 0x182000001879, + 0x1880000018ab, + 0x18b0000018f6, + 0x19000000191f, + 0x19200000192c, + 0x19300000193c, + 0x19460000196e, + 0x197000001975, + 0x1980000019ac, + 0x19b0000019ca, + 0x19d0000019da, + 0x1a0000001a1c, + 0x1a2000001a5f, + 0x1a6000001a7d, + 0x1a7f00001a8a, + 0x1a9000001a9a, + 0x1aa700001aa8, + 0x1ab000001abe, + 0x1abf00001acf, + 0x1b0000001b4d, + 0x1b5000001b5a, + 0x1b6b00001b74, + 0x1b8000001bf4, + 0x1c0000001c38, + 0x1c4000001c4a, + 0x1c4d00001c7e, + 0x1cd000001cd3, + 0x1cd400001cfb, + 0x1d0000001d2c, + 0x1d2f00001d30, + 0x1d3b00001d3c, + 0x1d4e00001d4f, + 0x1d6b00001d78, + 0x1d7900001d9b, + 0x1dc000001e00, + 0x1e0100001e02, + 0x1e0300001e04, + 0x1e0500001e06, + 0x1e0700001e08, + 0x1e0900001e0a, + 0x1e0b00001e0c, + 0x1e0d00001e0e, + 0x1e0f00001e10, + 0x1e1100001e12, + 0x1e1300001e14, + 0x1e1500001e16, + 0x1e1700001e18, + 0x1e1900001e1a, + 0x1e1b00001e1c, + 0x1e1d00001e1e, + 0x1e1f00001e20, + 0x1e2100001e22, + 0x1e2300001e24, + 0x1e2500001e26, + 0x1e2700001e28, + 0x1e2900001e2a, + 0x1e2b00001e2c, + 0x1e2d00001e2e, + 0x1e2f00001e30, + 0x1e3100001e32, + 0x1e3300001e34, + 0x1e3500001e36, + 0x1e3700001e38, + 0x1e3900001e3a, + 0x1e3b00001e3c, + 0x1e3d00001e3e, + 0x1e3f00001e40, + 0x1e4100001e42, + 0x1e4300001e44, + 0x1e4500001e46, + 0x1e4700001e48, + 0x1e4900001e4a, + 0x1e4b00001e4c, + 0x1e4d00001e4e, + 0x1e4f00001e50, + 0x1e5100001e52, + 0x1e5300001e54, + 0x1e5500001e56, + 0x1e5700001e58, + 0x1e5900001e5a, + 0x1e5b00001e5c, + 0x1e5d00001e5e, + 0x1e5f00001e60, + 0x1e6100001e62, + 0x1e6300001e64, + 0x1e6500001e66, + 0x1e6700001e68, + 0x1e6900001e6a, + 0x1e6b00001e6c, + 0x1e6d00001e6e, + 0x1e6f00001e70, + 0x1e7100001e72, + 0x1e7300001e74, + 0x1e7500001e76, + 0x1e7700001e78, + 0x1e7900001e7a, + 0x1e7b00001e7c, + 0x1e7d00001e7e, + 0x1e7f00001e80, + 0x1e8100001e82, + 0x1e8300001e84, + 0x1e8500001e86, + 0x1e8700001e88, + 0x1e8900001e8a, + 0x1e8b00001e8c, + 0x1e8d00001e8e, + 0x1e8f00001e90, + 0x1e9100001e92, + 0x1e9300001e94, + 0x1e9500001e9a, + 0x1e9c00001e9e, + 0x1e9f00001ea0, + 0x1ea100001ea2, + 0x1ea300001ea4, + 0x1ea500001ea6, + 0x1ea700001ea8, + 0x1ea900001eaa, + 0x1eab00001eac, + 0x1ead00001eae, + 0x1eaf00001eb0, + 0x1eb100001eb2, + 0x1eb300001eb4, + 0x1eb500001eb6, + 0x1eb700001eb8, + 0x1eb900001eba, + 0x1ebb00001ebc, + 0x1ebd00001ebe, + 0x1ebf00001ec0, + 0x1ec100001ec2, + 0x1ec300001ec4, + 0x1ec500001ec6, + 0x1ec700001ec8, + 0x1ec900001eca, + 0x1ecb00001ecc, + 0x1ecd00001ece, + 0x1ecf00001ed0, + 0x1ed100001ed2, + 0x1ed300001ed4, + 0x1ed500001ed6, + 0x1ed700001ed8, + 0x1ed900001eda, + 0x1edb00001edc, + 0x1edd00001ede, + 0x1edf00001ee0, + 0x1ee100001ee2, + 0x1ee300001ee4, + 0x1ee500001ee6, + 0x1ee700001ee8, + 0x1ee900001eea, + 0x1eeb00001eec, + 0x1eed00001eee, + 0x1eef00001ef0, + 0x1ef100001ef2, + 0x1ef300001ef4, + 0x1ef500001ef6, + 0x1ef700001ef8, + 0x1ef900001efa, + 0x1efb00001efc, + 0x1efd00001efe, + 0x1eff00001f08, + 0x1f1000001f16, + 0x1f2000001f28, + 0x1f3000001f38, + 0x1f4000001f46, + 0x1f5000001f58, + 0x1f6000001f68, + 0x1f7000001f71, + 0x1f7200001f73, + 0x1f7400001f75, + 0x1f7600001f77, + 0x1f7800001f79, + 0x1f7a00001f7b, + 0x1f7c00001f7d, + 0x1fb000001fb2, + 0x1fb600001fb7, + 0x1fc600001fc7, + 0x1fd000001fd3, + 0x1fd600001fd8, + 0x1fe000001fe3, + 0x1fe400001fe8, + 0x1ff600001ff7, + 0x214e0000214f, + 0x218400002185, + 0x2c3000002c60, + 0x2c6100002c62, + 0x2c6500002c67, + 0x2c6800002c69, + 0x2c6a00002c6b, + 0x2c6c00002c6d, + 0x2c7100002c72, + 0x2c7300002c75, + 0x2c7600002c7c, + 0x2c8100002c82, + 0x2c8300002c84, + 0x2c8500002c86, + 0x2c8700002c88, + 0x2c8900002c8a, + 0x2c8b00002c8c, + 0x2c8d00002c8e, + 0x2c8f00002c90, + 0x2c9100002c92, + 0x2c9300002c94, + 0x2c9500002c96, + 0x2c9700002c98, + 0x2c9900002c9a, + 0x2c9b00002c9c, + 0x2c9d00002c9e, + 0x2c9f00002ca0, + 0x2ca100002ca2, + 0x2ca300002ca4, + 0x2ca500002ca6, + 0x2ca700002ca8, + 0x2ca900002caa, + 0x2cab00002cac, + 0x2cad00002cae, + 0x2caf00002cb0, + 0x2cb100002cb2, + 0x2cb300002cb4, + 0x2cb500002cb6, + 0x2cb700002cb8, + 0x2cb900002cba, + 0x2cbb00002cbc, + 0x2cbd00002cbe, + 0x2cbf00002cc0, + 0x2cc100002cc2, + 0x2cc300002cc4, + 0x2cc500002cc6, + 0x2cc700002cc8, + 0x2cc900002cca, + 0x2ccb00002ccc, + 0x2ccd00002cce, + 0x2ccf00002cd0, + 0x2cd100002cd2, + 0x2cd300002cd4, + 0x2cd500002cd6, + 0x2cd700002cd8, + 0x2cd900002cda, + 0x2cdb00002cdc, + 0x2cdd00002cde, + 0x2cdf00002ce0, + 0x2ce100002ce2, + 0x2ce300002ce5, + 0x2cec00002ced, + 0x2cee00002cf2, + 0x2cf300002cf4, + 0x2d0000002d26, + 0x2d2700002d28, + 0x2d2d00002d2e, + 0x2d3000002d68, + 0x2d7f00002d97, + 0x2da000002da7, + 0x2da800002daf, + 0x2db000002db7, + 0x2db800002dbf, + 0x2dc000002dc7, + 0x2dc800002dcf, + 0x2dd000002dd7, + 0x2dd800002ddf, + 0x2de000002e00, + 0x2e2f00002e30, + 0x300500003008, + 0x302a0000302e, + 0x303c0000303d, + 0x304100003097, + 0x30990000309b, + 0x309d0000309f, + 0x30a1000030fb, + 0x30fc000030ff, + 0x310500003130, + 0x31a0000031c0, + 0x31f000003200, + 0x340000004dc0, + 0x4e000000a48d, + 0xa4d00000a4fe, + 0xa5000000a60d, + 0xa6100000a62c, + 0xa6410000a642, + 0xa6430000a644, + 0xa6450000a646, + 0xa6470000a648, + 0xa6490000a64a, + 0xa64b0000a64c, + 0xa64d0000a64e, + 0xa64f0000a650, + 0xa6510000a652, + 0xa6530000a654, + 0xa6550000a656, + 0xa6570000a658, + 0xa6590000a65a, + 0xa65b0000a65c, + 0xa65d0000a65e, + 0xa65f0000a660, + 0xa6610000a662, + 0xa6630000a664, + 0xa6650000a666, + 0xa6670000a668, + 0xa6690000a66a, + 0xa66b0000a66c, + 0xa66d0000a670, + 0xa6740000a67e, + 0xa67f0000a680, + 0xa6810000a682, + 0xa6830000a684, + 0xa6850000a686, + 0xa6870000a688, + 0xa6890000a68a, + 0xa68b0000a68c, + 0xa68d0000a68e, + 0xa68f0000a690, + 0xa6910000a692, + 0xa6930000a694, + 0xa6950000a696, + 0xa6970000a698, + 0xa6990000a69a, + 0xa69b0000a69c, + 0xa69e0000a6e6, + 0xa6f00000a6f2, + 0xa7170000a720, + 0xa7230000a724, + 0xa7250000a726, + 0xa7270000a728, + 0xa7290000a72a, + 0xa72b0000a72c, + 0xa72d0000a72e, + 0xa72f0000a732, + 0xa7330000a734, + 0xa7350000a736, + 0xa7370000a738, + 0xa7390000a73a, + 0xa73b0000a73c, + 0xa73d0000a73e, + 0xa73f0000a740, + 0xa7410000a742, + 0xa7430000a744, + 0xa7450000a746, + 0xa7470000a748, + 0xa7490000a74a, + 0xa74b0000a74c, + 0xa74d0000a74e, + 0xa74f0000a750, + 0xa7510000a752, + 0xa7530000a754, + 0xa7550000a756, + 0xa7570000a758, + 0xa7590000a75a, + 0xa75b0000a75c, + 0xa75d0000a75e, + 0xa75f0000a760, + 0xa7610000a762, + 0xa7630000a764, + 0xa7650000a766, + 0xa7670000a768, + 0xa7690000a76a, + 0xa76b0000a76c, + 0xa76d0000a76e, + 0xa76f0000a770, + 0xa7710000a779, + 0xa77a0000a77b, + 0xa77c0000a77d, + 0xa77f0000a780, + 0xa7810000a782, + 0xa7830000a784, + 0xa7850000a786, + 0xa7870000a789, + 0xa78c0000a78d, + 0xa78e0000a790, + 0xa7910000a792, + 0xa7930000a796, + 0xa7970000a798, + 0xa7990000a79a, + 0xa79b0000a79c, + 0xa79d0000a79e, + 0xa79f0000a7a0, + 0xa7a10000a7a2, + 0xa7a30000a7a4, + 0xa7a50000a7a6, + 0xa7a70000a7a8, + 0xa7a90000a7aa, + 0xa7af0000a7b0, + 0xa7b50000a7b6, + 0xa7b70000a7b8, + 0xa7b90000a7ba, + 0xa7bb0000a7bc, + 0xa7bd0000a7be, + 0xa7bf0000a7c0, + 0xa7c10000a7c2, + 0xa7c30000a7c4, + 0xa7c80000a7c9, + 0xa7ca0000a7cb, + 0xa7d10000a7d2, + 0xa7d30000a7d4, + 0xa7d50000a7d6, + 0xa7d70000a7d8, + 0xa7d90000a7da, + 0xa7f60000a7f8, + 0xa7fa0000a828, + 0xa82c0000a82d, + 0xa8400000a874, + 0xa8800000a8c6, + 0xa8d00000a8da, + 0xa8e00000a8f8, + 0xa8fb0000a8fc, + 0xa8fd0000a92e, + 0xa9300000a954, + 0xa9800000a9c1, + 0xa9cf0000a9da, + 0xa9e00000a9ff, + 0xaa000000aa37, + 0xaa400000aa4e, + 0xaa500000aa5a, + 0xaa600000aa77, + 0xaa7a0000aac3, + 0xaadb0000aade, + 0xaae00000aaf0, + 0xaaf20000aaf7, + 0xab010000ab07, + 0xab090000ab0f, + 0xab110000ab17, + 0xab200000ab27, + 0xab280000ab2f, + 0xab300000ab5b, + 0xab600000ab69, + 0xabc00000abeb, + 0xabec0000abee, + 0xabf00000abfa, + 0xac000000d7a4, + 0xfa0e0000fa10, + 0xfa110000fa12, + 0xfa130000fa15, + 0xfa1f0000fa20, + 0xfa210000fa22, + 0xfa230000fa25, + 0xfa270000fa2a, + 0xfb1e0000fb1f, + 0xfe200000fe30, + 0xfe730000fe74, + 0x100000001000c, + 0x1000d00010027, + 0x100280001003b, + 0x1003c0001003e, + 0x1003f0001004e, + 0x100500001005e, + 0x10080000100fb, + 0x101fd000101fe, + 0x102800001029d, + 0x102a0000102d1, + 0x102e0000102e1, + 0x1030000010320, + 0x1032d00010341, + 0x103420001034a, + 0x103500001037b, + 0x103800001039e, + 0x103a0000103c4, + 0x103c8000103d0, + 0x104280001049e, + 0x104a0000104aa, + 0x104d8000104fc, + 0x1050000010528, + 0x1053000010564, + 0x10597000105a2, + 0x105a3000105b2, + 0x105b3000105ba, + 0x105bb000105bd, + 0x1060000010737, + 0x1074000010756, + 0x1076000010768, + 0x1078000010781, + 0x1080000010806, + 0x1080800010809, + 0x1080a00010836, + 0x1083700010839, + 0x1083c0001083d, + 0x1083f00010856, + 0x1086000010877, + 0x108800001089f, + 0x108e0000108f3, + 0x108f4000108f6, + 0x1090000010916, + 0x109200001093a, + 0x10980000109b8, + 0x109be000109c0, + 0x10a0000010a04, + 0x10a0500010a07, + 0x10a0c00010a14, + 0x10a1500010a18, + 0x10a1900010a36, + 0x10a3800010a3b, + 0x10a3f00010a40, + 0x10a6000010a7d, + 0x10a8000010a9d, + 0x10ac000010ac8, + 0x10ac900010ae7, + 0x10b0000010b36, + 0x10b4000010b56, + 0x10b6000010b73, + 0x10b8000010b92, + 0x10c0000010c49, + 0x10cc000010cf3, + 0x10d0000010d28, + 0x10d3000010d3a, + 0x10e8000010eaa, + 0x10eab00010ead, + 0x10eb000010eb2, + 0x10efd00010f1d, + 0x10f2700010f28, + 0x10f3000010f51, + 0x10f7000010f86, + 0x10fb000010fc5, + 0x10fe000010ff7, + 0x1100000011047, + 0x1106600011076, + 0x1107f000110bb, + 0x110c2000110c3, + 0x110d0000110e9, + 0x110f0000110fa, + 0x1110000011135, + 0x1113600011140, + 0x1114400011148, + 0x1115000011174, + 0x1117600011177, + 0x11180000111c5, + 0x111c9000111cd, + 0x111ce000111db, + 0x111dc000111dd, + 0x1120000011212, + 0x1121300011238, + 0x1123e00011242, + 0x1128000011287, + 0x1128800011289, + 0x1128a0001128e, + 0x1128f0001129e, + 0x1129f000112a9, + 0x112b0000112eb, + 0x112f0000112fa, + 0x1130000011304, + 0x113050001130d, + 0x1130f00011311, + 0x1131300011329, + 0x1132a00011331, + 0x1133200011334, + 0x113350001133a, + 0x1133b00011345, + 0x1134700011349, + 0x1134b0001134e, + 0x1135000011351, + 0x1135700011358, + 0x1135d00011364, + 0x113660001136d, + 0x1137000011375, + 0x114000001144b, + 0x114500001145a, + 0x1145e00011462, + 0x11480000114c6, + 0x114c7000114c8, + 0x114d0000114da, + 0x11580000115b6, + 0x115b8000115c1, + 0x115d8000115de, + 0x1160000011641, + 0x1164400011645, + 0x116500001165a, + 0x11680000116b9, + 0x116c0000116ca, + 0x117000001171b, + 0x1171d0001172c, + 0x117300001173a, + 0x1174000011747, + 0x118000001183b, + 0x118c0000118ea, + 0x118ff00011907, + 0x119090001190a, + 0x1190c00011914, + 0x1191500011917, + 0x1191800011936, + 0x1193700011939, + 0x1193b00011944, + 0x119500001195a, + 0x119a0000119a8, + 0x119aa000119d8, + 0x119da000119e2, + 0x119e3000119e5, + 0x11a0000011a3f, + 0x11a4700011a48, + 0x11a5000011a9a, + 0x11a9d00011a9e, + 0x11ab000011af9, + 0x11c0000011c09, + 0x11c0a00011c37, + 0x11c3800011c41, + 0x11c5000011c5a, + 0x11c7200011c90, + 0x11c9200011ca8, + 0x11ca900011cb7, + 0x11d0000011d07, + 0x11d0800011d0a, + 0x11d0b00011d37, + 0x11d3a00011d3b, + 0x11d3c00011d3e, + 0x11d3f00011d48, + 0x11d5000011d5a, + 0x11d6000011d66, + 0x11d6700011d69, + 0x11d6a00011d8f, + 0x11d9000011d92, + 0x11d9300011d99, + 0x11da000011daa, + 0x11ee000011ef7, + 0x11f0000011f11, + 0x11f1200011f3b, + 0x11f3e00011f43, + 0x11f5000011f5a, + 0x11fb000011fb1, + 0x120000001239a, + 0x1248000012544, + 0x12f9000012ff1, + 0x1300000013430, + 0x1344000013456, + 0x1440000014647, + 0x1680000016a39, + 0x16a4000016a5f, + 0x16a6000016a6a, + 0x16a7000016abf, + 0x16ac000016aca, + 0x16ad000016aee, + 0x16af000016af5, + 0x16b0000016b37, + 0x16b4000016b44, + 0x16b5000016b5a, + 0x16b6300016b78, + 0x16b7d00016b90, + 0x16e6000016e80, + 0x16f0000016f4b, + 0x16f4f00016f88, + 0x16f8f00016fa0, + 0x16fe000016fe2, + 0x16fe300016fe5, + 0x16ff000016ff2, + 0x17000000187f8, + 0x1880000018cd6, + 0x18d0000018d09, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b123, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1b1550001b156, + 0x1b1640001b168, + 0x1b1700001b2fc, + 0x1bc000001bc6b, + 0x1bc700001bc7d, + 0x1bc800001bc89, + 0x1bc900001bc9a, + 0x1bc9d0001bc9f, + 0x1cf000001cf2e, + 0x1cf300001cf47, + 0x1da000001da37, + 0x1da3b0001da6d, + 0x1da750001da76, + 0x1da840001da85, + 0x1da9b0001daa0, + 0x1daa10001dab0, + 0x1df000001df1f, + 0x1df250001df2b, + 0x1e0000001e007, + 0x1e0080001e019, + 0x1e01b0001e022, + 0x1e0230001e025, + 0x1e0260001e02b, + 0x1e08f0001e090, + 0x1e1000001e12d, + 0x1e1300001e13e, + 0x1e1400001e14a, + 0x1e14e0001e14f, + 0x1e2900001e2af, + 0x1e2c00001e2fa, + 0x1e4d00001e4fa, + 0x1e7e00001e7e7, + 0x1e7e80001e7ec, + 0x1e7ed0001e7ef, + 0x1e7f00001e7ff, + 0x1e8000001e8c5, + 0x1e8d00001e8d7, + 0x1e9220001e94c, + 0x1e9500001e95a, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x2ebf00002ee5e, + 0x300000003134b, + 0x31350000323b0, + ), + 'CONTEXTJ': ( + 0x200c0000200e, + ), + 'CONTEXTO': ( + 0xb7000000b8, + 0x37500000376, + 0x5f3000005f5, + 0x6600000066a, + 0x6f0000006fa, + 0x30fb000030fc, + ), +} diff --git a/env/Lib/site-packages/pip/_vendor/idna/intranges.py b/env/Lib/site-packages/pip/_vendor/idna/intranges.py new file mode 100644 index 00000000..6a43b047 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/idna/intranges.py @@ -0,0 +1,54 @@ +""" +Given a list of integers, made up of (hopefully) a small number of long runs +of consecutive integers, compute a representation of the form +((start1, end1), (start2, end2) ...). Then answer the question "was x present +in the original list?" in time O(log(# runs)). +""" + +import bisect +from typing import List, Tuple + +def intranges_from_list(list_: List[int]) -> Tuple[int, ...]: + """Represent a list of integers as a sequence of ranges: + ((start_0, end_0), (start_1, end_1), ...), such that the original + integers are exactly those x such that start_i <= x < end_i for some i. + + Ranges are encoded as single integers (start << 32 | end), not as tuples. + """ + + sorted_list = sorted(list_) + ranges = [] + last_write = -1 + for i in range(len(sorted_list)): + if i+1 < len(sorted_list): + if sorted_list[i] == sorted_list[i+1]-1: + continue + current_range = sorted_list[last_write+1:i+1] + ranges.append(_encode_range(current_range[0], current_range[-1] + 1)) + last_write = i + + return tuple(ranges) + +def _encode_range(start: int, end: int) -> int: + return (start << 32) | end + +def _decode_range(r: int) -> Tuple[int, int]: + return (r >> 32), (r & ((1 << 32) - 1)) + + +def intranges_contain(int_: int, ranges: Tuple[int, ...]) -> bool: + """Determine if `int_` falls into one of the ranges in `ranges`.""" + tuple_ = _encode_range(int_, 0) + pos = bisect.bisect_left(ranges, tuple_) + # we could be immediately ahead of a tuple (start, end) + # with start < int_ <= end + if pos > 0: + left, right = _decode_range(ranges[pos-1]) + if left <= int_ < right: + return True + # or we could be immediately behind a tuple (int_, end) + if pos < len(ranges): + left, _ = _decode_range(ranges[pos]) + if left == int_: + return True + return False diff --git a/env/Lib/site-packages/pip/_vendor/idna/package_data.py b/env/Lib/site-packages/pip/_vendor/idna/package_data.py new file mode 100644 index 00000000..ed811133 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/idna/package_data.py @@ -0,0 +1,2 @@ +__version__ = '3.7' + diff --git a/env/Lib/site-packages/pip/_vendor/idna/py.typed b/env/Lib/site-packages/pip/_vendor/idna/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_vendor/idna/uts46data.py b/env/Lib/site-packages/pip/_vendor/idna/uts46data.py new file mode 100644 index 00000000..6a1eddbf --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/idna/uts46data.py @@ -0,0 +1,8598 @@ +# This file is automatically generated by tools/idna-data +# vim: set fileencoding=utf-8 : + +from typing import List, Tuple, Union + + +"""IDNA Mapping Table from UTS46.""" + + +__version__ = '15.1.0' +def _seg_0() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x0, '3'), + (0x1, '3'), + (0x2, '3'), + (0x3, '3'), + (0x4, '3'), + (0x5, '3'), + (0x6, '3'), + (0x7, '3'), + (0x8, '3'), + (0x9, '3'), + (0xA, '3'), + (0xB, '3'), + (0xC, '3'), + (0xD, '3'), + (0xE, '3'), + (0xF, '3'), + (0x10, '3'), + (0x11, '3'), + (0x12, '3'), + (0x13, '3'), + (0x14, '3'), + (0x15, '3'), + (0x16, '3'), + (0x17, '3'), + (0x18, '3'), + (0x19, '3'), + (0x1A, '3'), + (0x1B, '3'), + (0x1C, '3'), + (0x1D, '3'), + (0x1E, '3'), + (0x1F, '3'), + (0x20, '3'), + (0x21, '3'), + (0x22, '3'), + (0x23, '3'), + (0x24, '3'), + (0x25, '3'), + (0x26, '3'), + (0x27, '3'), + (0x28, '3'), + (0x29, '3'), + (0x2A, '3'), + (0x2B, '3'), + (0x2C, '3'), + (0x2D, 'V'), + (0x2E, 'V'), + (0x2F, '3'), + (0x30, 'V'), + (0x31, 'V'), + (0x32, 'V'), + (0x33, 'V'), + (0x34, 'V'), + (0x35, 'V'), + (0x36, 'V'), + (0x37, 'V'), + (0x38, 'V'), + (0x39, 'V'), + (0x3A, '3'), + (0x3B, '3'), + (0x3C, '3'), + (0x3D, '3'), + (0x3E, '3'), + (0x3F, '3'), + (0x40, '3'), + (0x41, 'M', 'a'), + (0x42, 'M', 'b'), + (0x43, 'M', 'c'), + (0x44, 'M', 'd'), + (0x45, 'M', 'e'), + (0x46, 'M', 'f'), + (0x47, 'M', 'g'), + (0x48, 'M', 'h'), + (0x49, 'M', 'i'), + (0x4A, 'M', 'j'), + (0x4B, 'M', 'k'), + (0x4C, 'M', 'l'), + (0x4D, 'M', 'm'), + (0x4E, 'M', 'n'), + (0x4F, 'M', 'o'), + (0x50, 'M', 'p'), + (0x51, 'M', 'q'), + (0x52, 'M', 'r'), + (0x53, 'M', 's'), + (0x54, 'M', 't'), + (0x55, 'M', 'u'), + (0x56, 'M', 'v'), + (0x57, 'M', 'w'), + (0x58, 'M', 'x'), + (0x59, 'M', 'y'), + (0x5A, 'M', 'z'), + (0x5B, '3'), + (0x5C, '3'), + (0x5D, '3'), + (0x5E, '3'), + (0x5F, '3'), + (0x60, '3'), + (0x61, 'V'), + (0x62, 'V'), + (0x63, 'V'), + ] + +def _seg_1() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x64, 'V'), + (0x65, 'V'), + (0x66, 'V'), + (0x67, 'V'), + (0x68, 'V'), + (0x69, 'V'), + (0x6A, 'V'), + (0x6B, 'V'), + (0x6C, 'V'), + (0x6D, 'V'), + (0x6E, 'V'), + (0x6F, 'V'), + (0x70, 'V'), + (0x71, 'V'), + (0x72, 'V'), + (0x73, 'V'), + (0x74, 'V'), + (0x75, 'V'), + (0x76, 'V'), + (0x77, 'V'), + (0x78, 'V'), + (0x79, 'V'), + (0x7A, 'V'), + (0x7B, '3'), + (0x7C, '3'), + (0x7D, '3'), + (0x7E, '3'), + (0x7F, '3'), + (0x80, 'X'), + (0x81, 'X'), + (0x82, 'X'), + (0x83, 'X'), + (0x84, 'X'), + (0x85, 'X'), + (0x86, 'X'), + (0x87, 'X'), + (0x88, 'X'), + (0x89, 'X'), + (0x8A, 'X'), + (0x8B, 'X'), + (0x8C, 'X'), + (0x8D, 'X'), + (0x8E, 'X'), + (0x8F, 'X'), + (0x90, 'X'), + (0x91, 'X'), + (0x92, 'X'), + (0x93, 'X'), + (0x94, 'X'), + (0x95, 'X'), + (0x96, 'X'), + (0x97, 'X'), + (0x98, 'X'), + (0x99, 'X'), + (0x9A, 'X'), + (0x9B, 'X'), + (0x9C, 'X'), + (0x9D, 'X'), + (0x9E, 'X'), + (0x9F, 'X'), + (0xA0, '3', ' '), + (0xA1, 'V'), + (0xA2, 'V'), + (0xA3, 'V'), + (0xA4, 'V'), + (0xA5, 'V'), + (0xA6, 'V'), + (0xA7, 'V'), + (0xA8, '3', ' ̈'), + (0xA9, 'V'), + (0xAA, 'M', 'a'), + (0xAB, 'V'), + (0xAC, 'V'), + (0xAD, 'I'), + (0xAE, 'V'), + (0xAF, '3', ' ̄'), + (0xB0, 'V'), + (0xB1, 'V'), + (0xB2, 'M', '2'), + (0xB3, 'M', '3'), + (0xB4, '3', ' ́'), + (0xB5, 'M', 'μ'), + (0xB6, 'V'), + (0xB7, 'V'), + (0xB8, '3', ' ̧'), + (0xB9, 'M', '1'), + (0xBA, 'M', 'o'), + (0xBB, 'V'), + (0xBC, 'M', '1⁄4'), + (0xBD, 'M', '1⁄2'), + (0xBE, 'M', '3⁄4'), + (0xBF, 'V'), + (0xC0, 'M', 'à'), + (0xC1, 'M', 'á'), + (0xC2, 'M', 'â'), + (0xC3, 'M', 'ã'), + (0xC4, 'M', 'ä'), + (0xC5, 'M', 'å'), + (0xC6, 'M', 'æ'), + (0xC7, 'M', 'ç'), + ] + +def _seg_2() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC8, 'M', 'è'), + (0xC9, 'M', 'é'), + (0xCA, 'M', 'ê'), + (0xCB, 'M', 'ë'), + (0xCC, 'M', 'ì'), + (0xCD, 'M', 'í'), + (0xCE, 'M', 'î'), + (0xCF, 'M', 'ï'), + (0xD0, 'M', 'ð'), + (0xD1, 'M', 'ñ'), + (0xD2, 'M', 'ò'), + (0xD3, 'M', 'ó'), + (0xD4, 'M', 'ô'), + (0xD5, 'M', 'õ'), + (0xD6, 'M', 'ö'), + (0xD7, 'V'), + (0xD8, 'M', 'ø'), + (0xD9, 'M', 'ù'), + (0xDA, 'M', 'ú'), + (0xDB, 'M', 'û'), + (0xDC, 'M', 'ü'), + (0xDD, 'M', 'ý'), + (0xDE, 'M', 'þ'), + (0xDF, 'D', 'ss'), + (0xE0, 'V'), + (0xE1, 'V'), + (0xE2, 'V'), + (0xE3, 'V'), + (0xE4, 'V'), + (0xE5, 'V'), + (0xE6, 'V'), + (0xE7, 'V'), + (0xE8, 'V'), + (0xE9, 'V'), + (0xEA, 'V'), + (0xEB, 'V'), + (0xEC, 'V'), + (0xED, 'V'), + (0xEE, 'V'), + (0xEF, 'V'), + (0xF0, 'V'), + (0xF1, 'V'), + (0xF2, 'V'), + (0xF3, 'V'), + (0xF4, 'V'), + (0xF5, 'V'), + (0xF6, 'V'), + (0xF7, 'V'), + (0xF8, 'V'), + (0xF9, 'V'), + (0xFA, 'V'), + (0xFB, 'V'), + (0xFC, 'V'), + (0xFD, 'V'), + (0xFE, 'V'), + (0xFF, 'V'), + (0x100, 'M', 'ā'), + (0x101, 'V'), + (0x102, 'M', 'ă'), + (0x103, 'V'), + (0x104, 'M', 'ą'), + (0x105, 'V'), + (0x106, 'M', 'ć'), + (0x107, 'V'), + (0x108, 'M', 'ĉ'), + (0x109, 'V'), + (0x10A, 'M', 'ċ'), + (0x10B, 'V'), + (0x10C, 'M', 'č'), + (0x10D, 'V'), + (0x10E, 'M', 'ď'), + (0x10F, 'V'), + (0x110, 'M', 'đ'), + (0x111, 'V'), + (0x112, 'M', 'ē'), + (0x113, 'V'), + (0x114, 'M', 'ĕ'), + (0x115, 'V'), + (0x116, 'M', 'ė'), + (0x117, 'V'), + (0x118, 'M', 'ę'), + (0x119, 'V'), + (0x11A, 'M', 'ě'), + (0x11B, 'V'), + (0x11C, 'M', 'ĝ'), + (0x11D, 'V'), + (0x11E, 'M', 'ğ'), + (0x11F, 'V'), + (0x120, 'M', 'ġ'), + (0x121, 'V'), + (0x122, 'M', 'ģ'), + (0x123, 'V'), + (0x124, 'M', 'ĥ'), + (0x125, 'V'), + (0x126, 'M', 'ħ'), + (0x127, 'V'), + (0x128, 'M', 'ĩ'), + (0x129, 'V'), + (0x12A, 'M', 'ī'), + (0x12B, 'V'), + ] + +def _seg_3() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x12C, 'M', 'ĭ'), + (0x12D, 'V'), + (0x12E, 'M', 'į'), + (0x12F, 'V'), + (0x130, 'M', 'i̇'), + (0x131, 'V'), + (0x132, 'M', 'ij'), + (0x134, 'M', 'ĵ'), + (0x135, 'V'), + (0x136, 'M', 'ķ'), + (0x137, 'V'), + (0x139, 'M', 'ĺ'), + (0x13A, 'V'), + (0x13B, 'M', 'ļ'), + (0x13C, 'V'), + (0x13D, 'M', 'ľ'), + (0x13E, 'V'), + (0x13F, 'M', 'l·'), + (0x141, 'M', 'ł'), + (0x142, 'V'), + (0x143, 'M', 'ń'), + (0x144, 'V'), + (0x145, 'M', 'ņ'), + (0x146, 'V'), + (0x147, 'M', 'ň'), + (0x148, 'V'), + (0x149, 'M', 'ʼn'), + (0x14A, 'M', 'ŋ'), + (0x14B, 'V'), + (0x14C, 'M', 'ō'), + (0x14D, 'V'), + (0x14E, 'M', 'ŏ'), + (0x14F, 'V'), + (0x150, 'M', 'ő'), + (0x151, 'V'), + (0x152, 'M', 'œ'), + (0x153, 'V'), + (0x154, 'M', 'ŕ'), + (0x155, 'V'), + (0x156, 'M', 'ŗ'), + (0x157, 'V'), + (0x158, 'M', 'ř'), + (0x159, 'V'), + (0x15A, 'M', 'ś'), + (0x15B, 'V'), + (0x15C, 'M', 'ŝ'), + (0x15D, 'V'), + (0x15E, 'M', 'ş'), + (0x15F, 'V'), + (0x160, 'M', 'š'), + (0x161, 'V'), + (0x162, 'M', 'ţ'), + (0x163, 'V'), + (0x164, 'M', 'ť'), + (0x165, 'V'), + (0x166, 'M', 'ŧ'), + (0x167, 'V'), + (0x168, 'M', 'ũ'), + (0x169, 'V'), + (0x16A, 'M', 'ū'), + (0x16B, 'V'), + (0x16C, 'M', 'ŭ'), + (0x16D, 'V'), + (0x16E, 'M', 'ů'), + (0x16F, 'V'), + (0x170, 'M', 'ű'), + (0x171, 'V'), + (0x172, 'M', 'ų'), + (0x173, 'V'), + (0x174, 'M', 'ŵ'), + (0x175, 'V'), + (0x176, 'M', 'ŷ'), + (0x177, 'V'), + (0x178, 'M', 'ÿ'), + (0x179, 'M', 'ź'), + (0x17A, 'V'), + (0x17B, 'M', 'ż'), + (0x17C, 'V'), + (0x17D, 'M', 'ž'), + (0x17E, 'V'), + (0x17F, 'M', 's'), + (0x180, 'V'), + (0x181, 'M', 'ɓ'), + (0x182, 'M', 'ƃ'), + (0x183, 'V'), + (0x184, 'M', 'ƅ'), + (0x185, 'V'), + (0x186, 'M', 'ɔ'), + (0x187, 'M', 'ƈ'), + (0x188, 'V'), + (0x189, 'M', 'ɖ'), + (0x18A, 'M', 'ɗ'), + (0x18B, 'M', 'ƌ'), + (0x18C, 'V'), + (0x18E, 'M', 'ǝ'), + (0x18F, 'M', 'ə'), + (0x190, 'M', 'ɛ'), + (0x191, 'M', 'ƒ'), + (0x192, 'V'), + (0x193, 'M', 'ɠ'), + ] + +def _seg_4() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x194, 'M', 'ɣ'), + (0x195, 'V'), + (0x196, 'M', 'ɩ'), + (0x197, 'M', 'ɨ'), + (0x198, 'M', 'ƙ'), + (0x199, 'V'), + (0x19C, 'M', 'ɯ'), + (0x19D, 'M', 'ɲ'), + (0x19E, 'V'), + (0x19F, 'M', 'ɵ'), + (0x1A0, 'M', 'ơ'), + (0x1A1, 'V'), + (0x1A2, 'M', 'ƣ'), + (0x1A3, 'V'), + (0x1A4, 'M', 'ƥ'), + (0x1A5, 'V'), + (0x1A6, 'M', 'ʀ'), + (0x1A7, 'M', 'ƨ'), + (0x1A8, 'V'), + (0x1A9, 'M', 'ʃ'), + (0x1AA, 'V'), + (0x1AC, 'M', 'ƭ'), + (0x1AD, 'V'), + (0x1AE, 'M', 'ʈ'), + (0x1AF, 'M', 'ư'), + (0x1B0, 'V'), + (0x1B1, 'M', 'ʊ'), + (0x1B2, 'M', 'ʋ'), + (0x1B3, 'M', 'ƴ'), + (0x1B4, 'V'), + (0x1B5, 'M', 'ƶ'), + (0x1B6, 'V'), + (0x1B7, 'M', 'ʒ'), + (0x1B8, 'M', 'ƹ'), + (0x1B9, 'V'), + (0x1BC, 'M', 'ƽ'), + (0x1BD, 'V'), + (0x1C4, 'M', 'dž'), + (0x1C7, 'M', 'lj'), + (0x1CA, 'M', 'nj'), + (0x1CD, 'M', 'ǎ'), + (0x1CE, 'V'), + (0x1CF, 'M', 'ǐ'), + (0x1D0, 'V'), + (0x1D1, 'M', 'ǒ'), + (0x1D2, 'V'), + (0x1D3, 'M', 'ǔ'), + (0x1D4, 'V'), + (0x1D5, 'M', 'ǖ'), + (0x1D6, 'V'), + (0x1D7, 'M', 'ǘ'), + (0x1D8, 'V'), + (0x1D9, 'M', 'ǚ'), + (0x1DA, 'V'), + (0x1DB, 'M', 'ǜ'), + (0x1DC, 'V'), + (0x1DE, 'M', 'ǟ'), + (0x1DF, 'V'), + (0x1E0, 'M', 'ǡ'), + (0x1E1, 'V'), + (0x1E2, 'M', 'ǣ'), + (0x1E3, 'V'), + (0x1E4, 'M', 'ǥ'), + (0x1E5, 'V'), + (0x1E6, 'M', 'ǧ'), + (0x1E7, 'V'), + (0x1E8, 'M', 'ǩ'), + (0x1E9, 'V'), + (0x1EA, 'M', 'ǫ'), + (0x1EB, 'V'), + (0x1EC, 'M', 'ǭ'), + (0x1ED, 'V'), + (0x1EE, 'M', 'ǯ'), + (0x1EF, 'V'), + (0x1F1, 'M', 'dz'), + (0x1F4, 'M', 'ǵ'), + (0x1F5, 'V'), + (0x1F6, 'M', 'ƕ'), + (0x1F7, 'M', 'ƿ'), + (0x1F8, 'M', 'ǹ'), + (0x1F9, 'V'), + (0x1FA, 'M', 'ǻ'), + (0x1FB, 'V'), + (0x1FC, 'M', 'ǽ'), + (0x1FD, 'V'), + (0x1FE, 'M', 'ǿ'), + (0x1FF, 'V'), + (0x200, 'M', 'ȁ'), + (0x201, 'V'), + (0x202, 'M', 'ȃ'), + (0x203, 'V'), + (0x204, 'M', 'ȅ'), + (0x205, 'V'), + (0x206, 'M', 'ȇ'), + (0x207, 'V'), + (0x208, 'M', 'ȉ'), + (0x209, 'V'), + (0x20A, 'M', 'ȋ'), + (0x20B, 'V'), + (0x20C, 'M', 'ȍ'), + ] + +def _seg_5() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x20D, 'V'), + (0x20E, 'M', 'ȏ'), + (0x20F, 'V'), + (0x210, 'M', 'ȑ'), + (0x211, 'V'), + (0x212, 'M', 'ȓ'), + (0x213, 'V'), + (0x214, 'M', 'ȕ'), + (0x215, 'V'), + (0x216, 'M', 'ȗ'), + (0x217, 'V'), + (0x218, 'M', 'ș'), + (0x219, 'V'), + (0x21A, 'M', 'ț'), + (0x21B, 'V'), + (0x21C, 'M', 'ȝ'), + (0x21D, 'V'), + (0x21E, 'M', 'ȟ'), + (0x21F, 'V'), + (0x220, 'M', 'ƞ'), + (0x221, 'V'), + (0x222, 'M', 'ȣ'), + (0x223, 'V'), + (0x224, 'M', 'ȥ'), + (0x225, 'V'), + (0x226, 'M', 'ȧ'), + (0x227, 'V'), + (0x228, 'M', 'ȩ'), + (0x229, 'V'), + (0x22A, 'M', 'ȫ'), + (0x22B, 'V'), + (0x22C, 'M', 'ȭ'), + (0x22D, 'V'), + (0x22E, 'M', 'ȯ'), + (0x22F, 'V'), + (0x230, 'M', 'ȱ'), + (0x231, 'V'), + (0x232, 'M', 'ȳ'), + (0x233, 'V'), + (0x23A, 'M', 'ⱥ'), + (0x23B, 'M', 'ȼ'), + (0x23C, 'V'), + (0x23D, 'M', 'ƚ'), + (0x23E, 'M', 'ⱦ'), + (0x23F, 'V'), + (0x241, 'M', 'ɂ'), + (0x242, 'V'), + (0x243, 'M', 'ƀ'), + (0x244, 'M', 'ʉ'), + (0x245, 'M', 'ʌ'), + (0x246, 'M', 'ɇ'), + (0x247, 'V'), + (0x248, 'M', 'ɉ'), + (0x249, 'V'), + (0x24A, 'M', 'ɋ'), + (0x24B, 'V'), + (0x24C, 'M', 'ɍ'), + (0x24D, 'V'), + (0x24E, 'M', 'ɏ'), + (0x24F, 'V'), + (0x2B0, 'M', 'h'), + (0x2B1, 'M', 'ɦ'), + (0x2B2, 'M', 'j'), + (0x2B3, 'M', 'r'), + (0x2B4, 'M', 'ɹ'), + (0x2B5, 'M', 'ɻ'), + (0x2B6, 'M', 'ʁ'), + (0x2B7, 'M', 'w'), + (0x2B8, 'M', 'y'), + (0x2B9, 'V'), + (0x2D8, '3', ' ̆'), + (0x2D9, '3', ' ̇'), + (0x2DA, '3', ' ̊'), + (0x2DB, '3', ' ̨'), + (0x2DC, '3', ' ̃'), + (0x2DD, '3', ' ̋'), + (0x2DE, 'V'), + (0x2E0, 'M', 'ɣ'), + (0x2E1, 'M', 'l'), + (0x2E2, 'M', 's'), + (0x2E3, 'M', 'x'), + (0x2E4, 'M', 'ʕ'), + (0x2E5, 'V'), + (0x340, 'M', '̀'), + (0x341, 'M', '́'), + (0x342, 'V'), + (0x343, 'M', '̓'), + (0x344, 'M', '̈́'), + (0x345, 'M', 'ι'), + (0x346, 'V'), + (0x34F, 'I'), + (0x350, 'V'), + (0x370, 'M', 'ͱ'), + (0x371, 'V'), + (0x372, 'M', 'ͳ'), + (0x373, 'V'), + (0x374, 'M', 'ʹ'), + (0x375, 'V'), + (0x376, 'M', 'ͷ'), + (0x377, 'V'), + ] + +def _seg_6() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x378, 'X'), + (0x37A, '3', ' ι'), + (0x37B, 'V'), + (0x37E, '3', ';'), + (0x37F, 'M', 'ϳ'), + (0x380, 'X'), + (0x384, '3', ' ́'), + (0x385, '3', ' ̈́'), + (0x386, 'M', 'ά'), + (0x387, 'M', '·'), + (0x388, 'M', 'έ'), + (0x389, 'M', 'ή'), + (0x38A, 'M', 'ί'), + (0x38B, 'X'), + (0x38C, 'M', 'ό'), + (0x38D, 'X'), + (0x38E, 'M', 'ύ'), + (0x38F, 'M', 'ώ'), + (0x390, 'V'), + (0x391, 'M', 'α'), + (0x392, 'M', 'β'), + (0x393, 'M', 'γ'), + (0x394, 'M', 'δ'), + (0x395, 'M', 'ε'), + (0x396, 'M', 'ζ'), + (0x397, 'M', 'η'), + (0x398, 'M', 'θ'), + (0x399, 'M', 'ι'), + (0x39A, 'M', 'κ'), + (0x39B, 'M', 'λ'), + (0x39C, 'M', 'μ'), + (0x39D, 'M', 'ν'), + (0x39E, 'M', 'ξ'), + (0x39F, 'M', 'ο'), + (0x3A0, 'M', 'π'), + (0x3A1, 'M', 'ρ'), + (0x3A2, 'X'), + (0x3A3, 'M', 'σ'), + (0x3A4, 'M', 'τ'), + (0x3A5, 'M', 'υ'), + (0x3A6, 'M', 'φ'), + (0x3A7, 'M', 'χ'), + (0x3A8, 'M', 'ψ'), + (0x3A9, 'M', 'ω'), + (0x3AA, 'M', 'ϊ'), + (0x3AB, 'M', 'ϋ'), + (0x3AC, 'V'), + (0x3C2, 'D', 'σ'), + (0x3C3, 'V'), + (0x3CF, 'M', 'ϗ'), + (0x3D0, 'M', 'β'), + (0x3D1, 'M', 'θ'), + (0x3D2, 'M', 'υ'), + (0x3D3, 'M', 'ύ'), + (0x3D4, 'M', 'ϋ'), + (0x3D5, 'M', 'φ'), + (0x3D6, 'M', 'π'), + (0x3D7, 'V'), + (0x3D8, 'M', 'ϙ'), + (0x3D9, 'V'), + (0x3DA, 'M', 'ϛ'), + (0x3DB, 'V'), + (0x3DC, 'M', 'ϝ'), + (0x3DD, 'V'), + (0x3DE, 'M', 'ϟ'), + (0x3DF, 'V'), + (0x3E0, 'M', 'ϡ'), + (0x3E1, 'V'), + (0x3E2, 'M', 'ϣ'), + (0x3E3, 'V'), + (0x3E4, 'M', 'ϥ'), + (0x3E5, 'V'), + (0x3E6, 'M', 'ϧ'), + (0x3E7, 'V'), + (0x3E8, 'M', 'ϩ'), + (0x3E9, 'V'), + (0x3EA, 'M', 'ϫ'), + (0x3EB, 'V'), + (0x3EC, 'M', 'ϭ'), + (0x3ED, 'V'), + (0x3EE, 'M', 'ϯ'), + (0x3EF, 'V'), + (0x3F0, 'M', 'κ'), + (0x3F1, 'M', 'ρ'), + (0x3F2, 'M', 'σ'), + (0x3F3, 'V'), + (0x3F4, 'M', 'θ'), + (0x3F5, 'M', 'ε'), + (0x3F6, 'V'), + (0x3F7, 'M', 'ϸ'), + (0x3F8, 'V'), + (0x3F9, 'M', 'σ'), + (0x3FA, 'M', 'ϻ'), + (0x3FB, 'V'), + (0x3FD, 'M', 'ͻ'), + (0x3FE, 'M', 'ͼ'), + (0x3FF, 'M', 'ͽ'), + (0x400, 'M', 'ѐ'), + (0x401, 'M', 'ё'), + (0x402, 'M', 'ђ'), + ] + +def _seg_7() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x403, 'M', 'ѓ'), + (0x404, 'M', 'є'), + (0x405, 'M', 'ѕ'), + (0x406, 'M', 'і'), + (0x407, 'M', 'ї'), + (0x408, 'M', 'ј'), + (0x409, 'M', 'љ'), + (0x40A, 'M', 'њ'), + (0x40B, 'M', 'ћ'), + (0x40C, 'M', 'ќ'), + (0x40D, 'M', 'ѝ'), + (0x40E, 'M', 'ў'), + (0x40F, 'M', 'џ'), + (0x410, 'M', 'а'), + (0x411, 'M', 'б'), + (0x412, 'M', 'в'), + (0x413, 'M', 'г'), + (0x414, 'M', 'д'), + (0x415, 'M', 'е'), + (0x416, 'M', 'ж'), + (0x417, 'M', 'з'), + (0x418, 'M', 'и'), + (0x419, 'M', 'й'), + (0x41A, 'M', 'к'), + (0x41B, 'M', 'л'), + (0x41C, 'M', 'м'), + (0x41D, 'M', 'н'), + (0x41E, 'M', 'о'), + (0x41F, 'M', 'п'), + (0x420, 'M', 'р'), + (0x421, 'M', 'с'), + (0x422, 'M', 'т'), + (0x423, 'M', 'у'), + (0x424, 'M', 'ф'), + (0x425, 'M', 'х'), + (0x426, 'M', 'ц'), + (0x427, 'M', 'ч'), + (0x428, 'M', 'ш'), + (0x429, 'M', 'щ'), + (0x42A, 'M', 'ъ'), + (0x42B, 'M', 'ы'), + (0x42C, 'M', 'ь'), + (0x42D, 'M', 'э'), + (0x42E, 'M', 'ю'), + (0x42F, 'M', 'я'), + (0x430, 'V'), + (0x460, 'M', 'ѡ'), + (0x461, 'V'), + (0x462, 'M', 'ѣ'), + (0x463, 'V'), + (0x464, 'M', 'ѥ'), + (0x465, 'V'), + (0x466, 'M', 'ѧ'), + (0x467, 'V'), + (0x468, 'M', 'ѩ'), + (0x469, 'V'), + (0x46A, 'M', 'ѫ'), + (0x46B, 'V'), + (0x46C, 'M', 'ѭ'), + (0x46D, 'V'), + (0x46E, 'M', 'ѯ'), + (0x46F, 'V'), + (0x470, 'M', 'ѱ'), + (0x471, 'V'), + (0x472, 'M', 'ѳ'), + (0x473, 'V'), + (0x474, 'M', 'ѵ'), + (0x475, 'V'), + (0x476, 'M', 'ѷ'), + (0x477, 'V'), + (0x478, 'M', 'ѹ'), + (0x479, 'V'), + (0x47A, 'M', 'ѻ'), + (0x47B, 'V'), + (0x47C, 'M', 'ѽ'), + (0x47D, 'V'), + (0x47E, 'M', 'ѿ'), + (0x47F, 'V'), + (0x480, 'M', 'ҁ'), + (0x481, 'V'), + (0x48A, 'M', 'ҋ'), + (0x48B, 'V'), + (0x48C, 'M', 'ҍ'), + (0x48D, 'V'), + (0x48E, 'M', 'ҏ'), + (0x48F, 'V'), + (0x490, 'M', 'ґ'), + (0x491, 'V'), + (0x492, 'M', 'ғ'), + (0x493, 'V'), + (0x494, 'M', 'ҕ'), + (0x495, 'V'), + (0x496, 'M', 'җ'), + (0x497, 'V'), + (0x498, 'M', 'ҙ'), + (0x499, 'V'), + (0x49A, 'M', 'қ'), + (0x49B, 'V'), + (0x49C, 'M', 'ҝ'), + (0x49D, 'V'), + ] + +def _seg_8() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x49E, 'M', 'ҟ'), + (0x49F, 'V'), + (0x4A0, 'M', 'ҡ'), + (0x4A1, 'V'), + (0x4A2, 'M', 'ң'), + (0x4A3, 'V'), + (0x4A4, 'M', 'ҥ'), + (0x4A5, 'V'), + (0x4A6, 'M', 'ҧ'), + (0x4A7, 'V'), + (0x4A8, 'M', 'ҩ'), + (0x4A9, 'V'), + (0x4AA, 'M', 'ҫ'), + (0x4AB, 'V'), + (0x4AC, 'M', 'ҭ'), + (0x4AD, 'V'), + (0x4AE, 'M', 'ү'), + (0x4AF, 'V'), + (0x4B0, 'M', 'ұ'), + (0x4B1, 'V'), + (0x4B2, 'M', 'ҳ'), + (0x4B3, 'V'), + (0x4B4, 'M', 'ҵ'), + (0x4B5, 'V'), + (0x4B6, 'M', 'ҷ'), + (0x4B7, 'V'), + (0x4B8, 'M', 'ҹ'), + (0x4B9, 'V'), + (0x4BA, 'M', 'һ'), + (0x4BB, 'V'), + (0x4BC, 'M', 'ҽ'), + (0x4BD, 'V'), + (0x4BE, 'M', 'ҿ'), + (0x4BF, 'V'), + (0x4C0, 'X'), + (0x4C1, 'M', 'ӂ'), + (0x4C2, 'V'), + (0x4C3, 'M', 'ӄ'), + (0x4C4, 'V'), + (0x4C5, 'M', 'ӆ'), + (0x4C6, 'V'), + (0x4C7, 'M', 'ӈ'), + (0x4C8, 'V'), + (0x4C9, 'M', 'ӊ'), + (0x4CA, 'V'), + (0x4CB, 'M', 'ӌ'), + (0x4CC, 'V'), + (0x4CD, 'M', 'ӎ'), + (0x4CE, 'V'), + (0x4D0, 'M', 'ӑ'), + (0x4D1, 'V'), + (0x4D2, 'M', 'ӓ'), + (0x4D3, 'V'), + (0x4D4, 'M', 'ӕ'), + (0x4D5, 'V'), + (0x4D6, 'M', 'ӗ'), + (0x4D7, 'V'), + (0x4D8, 'M', 'ә'), + (0x4D9, 'V'), + (0x4DA, 'M', 'ӛ'), + (0x4DB, 'V'), + (0x4DC, 'M', 'ӝ'), + (0x4DD, 'V'), + (0x4DE, 'M', 'ӟ'), + (0x4DF, 'V'), + (0x4E0, 'M', 'ӡ'), + (0x4E1, 'V'), + (0x4E2, 'M', 'ӣ'), + (0x4E3, 'V'), + (0x4E4, 'M', 'ӥ'), + (0x4E5, 'V'), + (0x4E6, 'M', 'ӧ'), + (0x4E7, 'V'), + (0x4E8, 'M', 'ө'), + (0x4E9, 'V'), + (0x4EA, 'M', 'ӫ'), + (0x4EB, 'V'), + (0x4EC, 'M', 'ӭ'), + (0x4ED, 'V'), + (0x4EE, 'M', 'ӯ'), + (0x4EF, 'V'), + (0x4F0, 'M', 'ӱ'), + (0x4F1, 'V'), + (0x4F2, 'M', 'ӳ'), + (0x4F3, 'V'), + (0x4F4, 'M', 'ӵ'), + (0x4F5, 'V'), + (0x4F6, 'M', 'ӷ'), + (0x4F7, 'V'), + (0x4F8, 'M', 'ӹ'), + (0x4F9, 'V'), + (0x4FA, 'M', 'ӻ'), + (0x4FB, 'V'), + (0x4FC, 'M', 'ӽ'), + (0x4FD, 'V'), + (0x4FE, 'M', 'ӿ'), + (0x4FF, 'V'), + (0x500, 'M', 'ԁ'), + (0x501, 'V'), + (0x502, 'M', 'ԃ'), + ] + +def _seg_9() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x503, 'V'), + (0x504, 'M', 'ԅ'), + (0x505, 'V'), + (0x506, 'M', 'ԇ'), + (0x507, 'V'), + (0x508, 'M', 'ԉ'), + (0x509, 'V'), + (0x50A, 'M', 'ԋ'), + (0x50B, 'V'), + (0x50C, 'M', 'ԍ'), + (0x50D, 'V'), + (0x50E, 'M', 'ԏ'), + (0x50F, 'V'), + (0x510, 'M', 'ԑ'), + (0x511, 'V'), + (0x512, 'M', 'ԓ'), + (0x513, 'V'), + (0x514, 'M', 'ԕ'), + (0x515, 'V'), + (0x516, 'M', 'ԗ'), + (0x517, 'V'), + (0x518, 'M', 'ԙ'), + (0x519, 'V'), + (0x51A, 'M', 'ԛ'), + (0x51B, 'V'), + (0x51C, 'M', 'ԝ'), + (0x51D, 'V'), + (0x51E, 'M', 'ԟ'), + (0x51F, 'V'), + (0x520, 'M', 'ԡ'), + (0x521, 'V'), + (0x522, 'M', 'ԣ'), + (0x523, 'V'), + (0x524, 'M', 'ԥ'), + (0x525, 'V'), + (0x526, 'M', 'ԧ'), + (0x527, 'V'), + (0x528, 'M', 'ԩ'), + (0x529, 'V'), + (0x52A, 'M', 'ԫ'), + (0x52B, 'V'), + (0x52C, 'M', 'ԭ'), + (0x52D, 'V'), + (0x52E, 'M', 'ԯ'), + (0x52F, 'V'), + (0x530, 'X'), + (0x531, 'M', 'ա'), + (0x532, 'M', 'բ'), + (0x533, 'M', 'գ'), + (0x534, 'M', 'դ'), + (0x535, 'M', 'ե'), + (0x536, 'M', 'զ'), + (0x537, 'M', 'է'), + (0x538, 'M', 'ը'), + (0x539, 'M', 'թ'), + (0x53A, 'M', 'ժ'), + (0x53B, 'M', 'ի'), + (0x53C, 'M', 'լ'), + (0x53D, 'M', 'խ'), + (0x53E, 'M', 'ծ'), + (0x53F, 'M', 'կ'), + (0x540, 'M', 'հ'), + (0x541, 'M', 'ձ'), + (0x542, 'M', 'ղ'), + (0x543, 'M', 'ճ'), + (0x544, 'M', 'մ'), + (0x545, 'M', 'յ'), + (0x546, 'M', 'ն'), + (0x547, 'M', 'շ'), + (0x548, 'M', 'ո'), + (0x549, 'M', 'չ'), + (0x54A, 'M', 'պ'), + (0x54B, 'M', 'ջ'), + (0x54C, 'M', 'ռ'), + (0x54D, 'M', 'ս'), + (0x54E, 'M', 'վ'), + (0x54F, 'M', 'տ'), + (0x550, 'M', 'ր'), + (0x551, 'M', 'ց'), + (0x552, 'M', 'ւ'), + (0x553, 'M', 'փ'), + (0x554, 'M', 'ք'), + (0x555, 'M', 'օ'), + (0x556, 'M', 'ֆ'), + (0x557, 'X'), + (0x559, 'V'), + (0x587, 'M', 'եւ'), + (0x588, 'V'), + (0x58B, 'X'), + (0x58D, 'V'), + (0x590, 'X'), + (0x591, 'V'), + (0x5C8, 'X'), + (0x5D0, 'V'), + (0x5EB, 'X'), + (0x5EF, 'V'), + (0x5F5, 'X'), + (0x606, 'V'), + (0x61C, 'X'), + (0x61D, 'V'), + ] + +def _seg_10() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x675, 'M', 'اٴ'), + (0x676, 'M', 'وٴ'), + (0x677, 'M', 'ۇٴ'), + (0x678, 'M', 'يٴ'), + (0x679, 'V'), + (0x6DD, 'X'), + (0x6DE, 'V'), + (0x70E, 'X'), + (0x710, 'V'), + (0x74B, 'X'), + (0x74D, 'V'), + (0x7B2, 'X'), + (0x7C0, 'V'), + (0x7FB, 'X'), + (0x7FD, 'V'), + (0x82E, 'X'), + (0x830, 'V'), + (0x83F, 'X'), + (0x840, 'V'), + (0x85C, 'X'), + (0x85E, 'V'), + (0x85F, 'X'), + (0x860, 'V'), + (0x86B, 'X'), + (0x870, 'V'), + (0x88F, 'X'), + (0x898, 'V'), + (0x8E2, 'X'), + (0x8E3, 'V'), + (0x958, 'M', 'क़'), + (0x959, 'M', 'ख़'), + (0x95A, 'M', 'ग़'), + (0x95B, 'M', 'ज़'), + (0x95C, 'M', 'ड़'), + (0x95D, 'M', 'ढ़'), + (0x95E, 'M', 'फ़'), + (0x95F, 'M', 'य़'), + (0x960, 'V'), + (0x984, 'X'), + (0x985, 'V'), + (0x98D, 'X'), + (0x98F, 'V'), + (0x991, 'X'), + (0x993, 'V'), + (0x9A9, 'X'), + (0x9AA, 'V'), + (0x9B1, 'X'), + (0x9B2, 'V'), + (0x9B3, 'X'), + (0x9B6, 'V'), + (0x9BA, 'X'), + (0x9BC, 'V'), + (0x9C5, 'X'), + (0x9C7, 'V'), + (0x9C9, 'X'), + (0x9CB, 'V'), + (0x9CF, 'X'), + (0x9D7, 'V'), + (0x9D8, 'X'), + (0x9DC, 'M', 'ড়'), + (0x9DD, 'M', 'ঢ়'), + (0x9DE, 'X'), + (0x9DF, 'M', 'য়'), + (0x9E0, 'V'), + (0x9E4, 'X'), + (0x9E6, 'V'), + (0x9FF, 'X'), + (0xA01, 'V'), + (0xA04, 'X'), + (0xA05, 'V'), + (0xA0B, 'X'), + (0xA0F, 'V'), + (0xA11, 'X'), + (0xA13, 'V'), + (0xA29, 'X'), + (0xA2A, 'V'), + (0xA31, 'X'), + (0xA32, 'V'), + (0xA33, 'M', 'ਲ਼'), + (0xA34, 'X'), + (0xA35, 'V'), + (0xA36, 'M', 'ਸ਼'), + (0xA37, 'X'), + (0xA38, 'V'), + (0xA3A, 'X'), + (0xA3C, 'V'), + (0xA3D, 'X'), + (0xA3E, 'V'), + (0xA43, 'X'), + (0xA47, 'V'), + (0xA49, 'X'), + (0xA4B, 'V'), + (0xA4E, 'X'), + (0xA51, 'V'), + (0xA52, 'X'), + (0xA59, 'M', 'ਖ਼'), + (0xA5A, 'M', 'ਗ਼'), + (0xA5B, 'M', 'ਜ਼'), + (0xA5C, 'V'), + (0xA5D, 'X'), + ] + +def _seg_11() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA5E, 'M', 'ਫ਼'), + (0xA5F, 'X'), + (0xA66, 'V'), + (0xA77, 'X'), + (0xA81, 'V'), + (0xA84, 'X'), + (0xA85, 'V'), + (0xA8E, 'X'), + (0xA8F, 'V'), + (0xA92, 'X'), + (0xA93, 'V'), + (0xAA9, 'X'), + (0xAAA, 'V'), + (0xAB1, 'X'), + (0xAB2, 'V'), + (0xAB4, 'X'), + (0xAB5, 'V'), + (0xABA, 'X'), + (0xABC, 'V'), + (0xAC6, 'X'), + (0xAC7, 'V'), + (0xACA, 'X'), + (0xACB, 'V'), + (0xACE, 'X'), + (0xAD0, 'V'), + (0xAD1, 'X'), + (0xAE0, 'V'), + (0xAE4, 'X'), + (0xAE6, 'V'), + (0xAF2, 'X'), + (0xAF9, 'V'), + (0xB00, 'X'), + (0xB01, 'V'), + (0xB04, 'X'), + (0xB05, 'V'), + (0xB0D, 'X'), + (0xB0F, 'V'), + (0xB11, 'X'), + (0xB13, 'V'), + (0xB29, 'X'), + (0xB2A, 'V'), + (0xB31, 'X'), + (0xB32, 'V'), + (0xB34, 'X'), + (0xB35, 'V'), + (0xB3A, 'X'), + (0xB3C, 'V'), + (0xB45, 'X'), + (0xB47, 'V'), + (0xB49, 'X'), + (0xB4B, 'V'), + (0xB4E, 'X'), + (0xB55, 'V'), + (0xB58, 'X'), + (0xB5C, 'M', 'ଡ଼'), + (0xB5D, 'M', 'ଢ଼'), + (0xB5E, 'X'), + (0xB5F, 'V'), + (0xB64, 'X'), + (0xB66, 'V'), + (0xB78, 'X'), + (0xB82, 'V'), + (0xB84, 'X'), + (0xB85, 'V'), + (0xB8B, 'X'), + (0xB8E, 'V'), + (0xB91, 'X'), + (0xB92, 'V'), + (0xB96, 'X'), + (0xB99, 'V'), + (0xB9B, 'X'), + (0xB9C, 'V'), + (0xB9D, 'X'), + (0xB9E, 'V'), + (0xBA0, 'X'), + (0xBA3, 'V'), + (0xBA5, 'X'), + (0xBA8, 'V'), + (0xBAB, 'X'), + (0xBAE, 'V'), + (0xBBA, 'X'), + (0xBBE, 'V'), + (0xBC3, 'X'), + (0xBC6, 'V'), + (0xBC9, 'X'), + (0xBCA, 'V'), + (0xBCE, 'X'), + (0xBD0, 'V'), + (0xBD1, 'X'), + (0xBD7, 'V'), + (0xBD8, 'X'), + (0xBE6, 'V'), + (0xBFB, 'X'), + (0xC00, 'V'), + (0xC0D, 'X'), + (0xC0E, 'V'), + (0xC11, 'X'), + (0xC12, 'V'), + (0xC29, 'X'), + (0xC2A, 'V'), + ] + +def _seg_12() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC3A, 'X'), + (0xC3C, 'V'), + (0xC45, 'X'), + (0xC46, 'V'), + (0xC49, 'X'), + (0xC4A, 'V'), + (0xC4E, 'X'), + (0xC55, 'V'), + (0xC57, 'X'), + (0xC58, 'V'), + (0xC5B, 'X'), + (0xC5D, 'V'), + (0xC5E, 'X'), + (0xC60, 'V'), + (0xC64, 'X'), + (0xC66, 'V'), + (0xC70, 'X'), + (0xC77, 'V'), + (0xC8D, 'X'), + (0xC8E, 'V'), + (0xC91, 'X'), + (0xC92, 'V'), + (0xCA9, 'X'), + (0xCAA, 'V'), + (0xCB4, 'X'), + (0xCB5, 'V'), + (0xCBA, 'X'), + (0xCBC, 'V'), + (0xCC5, 'X'), + (0xCC6, 'V'), + (0xCC9, 'X'), + (0xCCA, 'V'), + (0xCCE, 'X'), + (0xCD5, 'V'), + (0xCD7, 'X'), + (0xCDD, 'V'), + (0xCDF, 'X'), + (0xCE0, 'V'), + (0xCE4, 'X'), + (0xCE6, 'V'), + (0xCF0, 'X'), + (0xCF1, 'V'), + (0xCF4, 'X'), + (0xD00, 'V'), + (0xD0D, 'X'), + (0xD0E, 'V'), + (0xD11, 'X'), + (0xD12, 'V'), + (0xD45, 'X'), + (0xD46, 'V'), + (0xD49, 'X'), + (0xD4A, 'V'), + (0xD50, 'X'), + (0xD54, 'V'), + (0xD64, 'X'), + (0xD66, 'V'), + (0xD80, 'X'), + (0xD81, 'V'), + (0xD84, 'X'), + (0xD85, 'V'), + (0xD97, 'X'), + (0xD9A, 'V'), + (0xDB2, 'X'), + (0xDB3, 'V'), + (0xDBC, 'X'), + (0xDBD, 'V'), + (0xDBE, 'X'), + (0xDC0, 'V'), + (0xDC7, 'X'), + (0xDCA, 'V'), + (0xDCB, 'X'), + (0xDCF, 'V'), + (0xDD5, 'X'), + (0xDD6, 'V'), + (0xDD7, 'X'), + (0xDD8, 'V'), + (0xDE0, 'X'), + (0xDE6, 'V'), + (0xDF0, 'X'), + (0xDF2, 'V'), + (0xDF5, 'X'), + (0xE01, 'V'), + (0xE33, 'M', 'ํา'), + (0xE34, 'V'), + (0xE3B, 'X'), + (0xE3F, 'V'), + (0xE5C, 'X'), + (0xE81, 'V'), + (0xE83, 'X'), + (0xE84, 'V'), + (0xE85, 'X'), + (0xE86, 'V'), + (0xE8B, 'X'), + (0xE8C, 'V'), + (0xEA4, 'X'), + (0xEA5, 'V'), + (0xEA6, 'X'), + (0xEA7, 'V'), + (0xEB3, 'M', 'ໍາ'), + (0xEB4, 'V'), + ] + +def _seg_13() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xEBE, 'X'), + (0xEC0, 'V'), + (0xEC5, 'X'), + (0xEC6, 'V'), + (0xEC7, 'X'), + (0xEC8, 'V'), + (0xECF, 'X'), + (0xED0, 'V'), + (0xEDA, 'X'), + (0xEDC, 'M', 'ຫນ'), + (0xEDD, 'M', 'ຫມ'), + (0xEDE, 'V'), + (0xEE0, 'X'), + (0xF00, 'V'), + (0xF0C, 'M', '་'), + (0xF0D, 'V'), + (0xF43, 'M', 'གྷ'), + (0xF44, 'V'), + (0xF48, 'X'), + (0xF49, 'V'), + (0xF4D, 'M', 'ཌྷ'), + (0xF4E, 'V'), + (0xF52, 'M', 'དྷ'), + (0xF53, 'V'), + (0xF57, 'M', 'བྷ'), + (0xF58, 'V'), + (0xF5C, 'M', 'ཛྷ'), + (0xF5D, 'V'), + (0xF69, 'M', 'ཀྵ'), + (0xF6A, 'V'), + (0xF6D, 'X'), + (0xF71, 'V'), + (0xF73, 'M', 'ཱི'), + (0xF74, 'V'), + (0xF75, 'M', 'ཱུ'), + (0xF76, 'M', 'ྲྀ'), + (0xF77, 'M', 'ྲཱྀ'), + (0xF78, 'M', 'ླྀ'), + (0xF79, 'M', 'ླཱྀ'), + (0xF7A, 'V'), + (0xF81, 'M', 'ཱྀ'), + (0xF82, 'V'), + (0xF93, 'M', 'ྒྷ'), + (0xF94, 'V'), + (0xF98, 'X'), + (0xF99, 'V'), + (0xF9D, 'M', 'ྜྷ'), + (0xF9E, 'V'), + (0xFA2, 'M', 'ྡྷ'), + (0xFA3, 'V'), + (0xFA7, 'M', 'ྦྷ'), + (0xFA8, 'V'), + (0xFAC, 'M', 'ྫྷ'), + (0xFAD, 'V'), + (0xFB9, 'M', 'ྐྵ'), + (0xFBA, 'V'), + (0xFBD, 'X'), + (0xFBE, 'V'), + (0xFCD, 'X'), + (0xFCE, 'V'), + (0xFDB, 'X'), + (0x1000, 'V'), + (0x10A0, 'X'), + (0x10C7, 'M', 'ⴧ'), + (0x10C8, 'X'), + (0x10CD, 'M', 'ⴭ'), + (0x10CE, 'X'), + (0x10D0, 'V'), + (0x10FC, 'M', 'ნ'), + (0x10FD, 'V'), + (0x115F, 'X'), + (0x1161, 'V'), + (0x1249, 'X'), + (0x124A, 'V'), + (0x124E, 'X'), + (0x1250, 'V'), + (0x1257, 'X'), + (0x1258, 'V'), + (0x1259, 'X'), + (0x125A, 'V'), + (0x125E, 'X'), + (0x1260, 'V'), + (0x1289, 'X'), + (0x128A, 'V'), + (0x128E, 'X'), + (0x1290, 'V'), + (0x12B1, 'X'), + (0x12B2, 'V'), + (0x12B6, 'X'), + (0x12B8, 'V'), + (0x12BF, 'X'), + (0x12C0, 'V'), + (0x12C1, 'X'), + (0x12C2, 'V'), + (0x12C6, 'X'), + (0x12C8, 'V'), + (0x12D7, 'X'), + (0x12D8, 'V'), + (0x1311, 'X'), + (0x1312, 'V'), + ] + +def _seg_14() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1316, 'X'), + (0x1318, 'V'), + (0x135B, 'X'), + (0x135D, 'V'), + (0x137D, 'X'), + (0x1380, 'V'), + (0x139A, 'X'), + (0x13A0, 'V'), + (0x13F6, 'X'), + (0x13F8, 'M', 'Ᏸ'), + (0x13F9, 'M', 'Ᏹ'), + (0x13FA, 'M', 'Ᏺ'), + (0x13FB, 'M', 'Ᏻ'), + (0x13FC, 'M', 'Ᏼ'), + (0x13FD, 'M', 'Ᏽ'), + (0x13FE, 'X'), + (0x1400, 'V'), + (0x1680, 'X'), + (0x1681, 'V'), + (0x169D, 'X'), + (0x16A0, 'V'), + (0x16F9, 'X'), + (0x1700, 'V'), + (0x1716, 'X'), + (0x171F, 'V'), + (0x1737, 'X'), + (0x1740, 'V'), + (0x1754, 'X'), + (0x1760, 'V'), + (0x176D, 'X'), + (0x176E, 'V'), + (0x1771, 'X'), + (0x1772, 'V'), + (0x1774, 'X'), + (0x1780, 'V'), + (0x17B4, 'X'), + (0x17B6, 'V'), + (0x17DE, 'X'), + (0x17E0, 'V'), + (0x17EA, 'X'), + (0x17F0, 'V'), + (0x17FA, 'X'), + (0x1800, 'V'), + (0x1806, 'X'), + (0x1807, 'V'), + (0x180B, 'I'), + (0x180E, 'X'), + (0x180F, 'I'), + (0x1810, 'V'), + (0x181A, 'X'), + (0x1820, 'V'), + (0x1879, 'X'), + (0x1880, 'V'), + (0x18AB, 'X'), + (0x18B0, 'V'), + (0x18F6, 'X'), + (0x1900, 'V'), + (0x191F, 'X'), + (0x1920, 'V'), + (0x192C, 'X'), + (0x1930, 'V'), + (0x193C, 'X'), + (0x1940, 'V'), + (0x1941, 'X'), + (0x1944, 'V'), + (0x196E, 'X'), + (0x1970, 'V'), + (0x1975, 'X'), + (0x1980, 'V'), + (0x19AC, 'X'), + (0x19B0, 'V'), + (0x19CA, 'X'), + (0x19D0, 'V'), + (0x19DB, 'X'), + (0x19DE, 'V'), + (0x1A1C, 'X'), + (0x1A1E, 'V'), + (0x1A5F, 'X'), + (0x1A60, 'V'), + (0x1A7D, 'X'), + (0x1A7F, 'V'), + (0x1A8A, 'X'), + (0x1A90, 'V'), + (0x1A9A, 'X'), + (0x1AA0, 'V'), + (0x1AAE, 'X'), + (0x1AB0, 'V'), + (0x1ACF, 'X'), + (0x1B00, 'V'), + (0x1B4D, 'X'), + (0x1B50, 'V'), + (0x1B7F, 'X'), + (0x1B80, 'V'), + (0x1BF4, 'X'), + (0x1BFC, 'V'), + (0x1C38, 'X'), + (0x1C3B, 'V'), + (0x1C4A, 'X'), + (0x1C4D, 'V'), + (0x1C80, 'M', 'в'), + ] + +def _seg_15() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1C81, 'M', 'д'), + (0x1C82, 'M', 'о'), + (0x1C83, 'M', 'с'), + (0x1C84, 'M', 'т'), + (0x1C86, 'M', 'ъ'), + (0x1C87, 'M', 'ѣ'), + (0x1C88, 'M', 'ꙋ'), + (0x1C89, 'X'), + (0x1C90, 'M', 'ა'), + (0x1C91, 'M', 'ბ'), + (0x1C92, 'M', 'გ'), + (0x1C93, 'M', 'დ'), + (0x1C94, 'M', 'ე'), + (0x1C95, 'M', 'ვ'), + (0x1C96, 'M', 'ზ'), + (0x1C97, 'M', 'თ'), + (0x1C98, 'M', 'ი'), + (0x1C99, 'M', 'კ'), + (0x1C9A, 'M', 'ლ'), + (0x1C9B, 'M', 'მ'), + (0x1C9C, 'M', 'ნ'), + (0x1C9D, 'M', 'ო'), + (0x1C9E, 'M', 'პ'), + (0x1C9F, 'M', 'ჟ'), + (0x1CA0, 'M', 'რ'), + (0x1CA1, 'M', 'ს'), + (0x1CA2, 'M', 'ტ'), + (0x1CA3, 'M', 'უ'), + (0x1CA4, 'M', 'ფ'), + (0x1CA5, 'M', 'ქ'), + (0x1CA6, 'M', 'ღ'), + (0x1CA7, 'M', 'ყ'), + (0x1CA8, 'M', 'შ'), + (0x1CA9, 'M', 'ჩ'), + (0x1CAA, 'M', 'ც'), + (0x1CAB, 'M', 'ძ'), + (0x1CAC, 'M', 'წ'), + (0x1CAD, 'M', 'ჭ'), + (0x1CAE, 'M', 'ხ'), + (0x1CAF, 'M', 'ჯ'), + (0x1CB0, 'M', 'ჰ'), + (0x1CB1, 'M', 'ჱ'), + (0x1CB2, 'M', 'ჲ'), + (0x1CB3, 'M', 'ჳ'), + (0x1CB4, 'M', 'ჴ'), + (0x1CB5, 'M', 'ჵ'), + (0x1CB6, 'M', 'ჶ'), + (0x1CB7, 'M', 'ჷ'), + (0x1CB8, 'M', 'ჸ'), + (0x1CB9, 'M', 'ჹ'), + (0x1CBA, 'M', 'ჺ'), + (0x1CBB, 'X'), + (0x1CBD, 'M', 'ჽ'), + (0x1CBE, 'M', 'ჾ'), + (0x1CBF, 'M', 'ჿ'), + (0x1CC0, 'V'), + (0x1CC8, 'X'), + (0x1CD0, 'V'), + (0x1CFB, 'X'), + (0x1D00, 'V'), + (0x1D2C, 'M', 'a'), + (0x1D2D, 'M', 'æ'), + (0x1D2E, 'M', 'b'), + (0x1D2F, 'V'), + (0x1D30, 'M', 'd'), + (0x1D31, 'M', 'e'), + (0x1D32, 'M', 'ǝ'), + (0x1D33, 'M', 'g'), + (0x1D34, 'M', 'h'), + (0x1D35, 'M', 'i'), + (0x1D36, 'M', 'j'), + (0x1D37, 'M', 'k'), + (0x1D38, 'M', 'l'), + (0x1D39, 'M', 'm'), + (0x1D3A, 'M', 'n'), + (0x1D3B, 'V'), + (0x1D3C, 'M', 'o'), + (0x1D3D, 'M', 'ȣ'), + (0x1D3E, 'M', 'p'), + (0x1D3F, 'M', 'r'), + (0x1D40, 'M', 't'), + (0x1D41, 'M', 'u'), + (0x1D42, 'M', 'w'), + (0x1D43, 'M', 'a'), + (0x1D44, 'M', 'ɐ'), + (0x1D45, 'M', 'ɑ'), + (0x1D46, 'M', 'ᴂ'), + (0x1D47, 'M', 'b'), + (0x1D48, 'M', 'd'), + (0x1D49, 'M', 'e'), + (0x1D4A, 'M', 'ə'), + (0x1D4B, 'M', 'ɛ'), + (0x1D4C, 'M', 'ɜ'), + (0x1D4D, 'M', 'g'), + (0x1D4E, 'V'), + (0x1D4F, 'M', 'k'), + (0x1D50, 'M', 'm'), + (0x1D51, 'M', 'ŋ'), + (0x1D52, 'M', 'o'), + (0x1D53, 'M', 'ɔ'), + ] + +def _seg_16() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D54, 'M', 'ᴖ'), + (0x1D55, 'M', 'ᴗ'), + (0x1D56, 'M', 'p'), + (0x1D57, 'M', 't'), + (0x1D58, 'M', 'u'), + (0x1D59, 'M', 'ᴝ'), + (0x1D5A, 'M', 'ɯ'), + (0x1D5B, 'M', 'v'), + (0x1D5C, 'M', 'ᴥ'), + (0x1D5D, 'M', 'β'), + (0x1D5E, 'M', 'γ'), + (0x1D5F, 'M', 'δ'), + (0x1D60, 'M', 'φ'), + (0x1D61, 'M', 'χ'), + (0x1D62, 'M', 'i'), + (0x1D63, 'M', 'r'), + (0x1D64, 'M', 'u'), + (0x1D65, 'M', 'v'), + (0x1D66, 'M', 'β'), + (0x1D67, 'M', 'γ'), + (0x1D68, 'M', 'ρ'), + (0x1D69, 'M', 'φ'), + (0x1D6A, 'M', 'χ'), + (0x1D6B, 'V'), + (0x1D78, 'M', 'н'), + (0x1D79, 'V'), + (0x1D9B, 'M', 'ɒ'), + (0x1D9C, 'M', 'c'), + (0x1D9D, 'M', 'ɕ'), + (0x1D9E, 'M', 'ð'), + (0x1D9F, 'M', 'ɜ'), + (0x1DA0, 'M', 'f'), + (0x1DA1, 'M', 'ɟ'), + (0x1DA2, 'M', 'ɡ'), + (0x1DA3, 'M', 'ɥ'), + (0x1DA4, 'M', 'ɨ'), + (0x1DA5, 'M', 'ɩ'), + (0x1DA6, 'M', 'ɪ'), + (0x1DA7, 'M', 'ᵻ'), + (0x1DA8, 'M', 'ʝ'), + (0x1DA9, 'M', 'ɭ'), + (0x1DAA, 'M', 'ᶅ'), + (0x1DAB, 'M', 'ʟ'), + (0x1DAC, 'M', 'ɱ'), + (0x1DAD, 'M', 'ɰ'), + (0x1DAE, 'M', 'ɲ'), + (0x1DAF, 'M', 'ɳ'), + (0x1DB0, 'M', 'ɴ'), + (0x1DB1, 'M', 'ɵ'), + (0x1DB2, 'M', 'ɸ'), + (0x1DB3, 'M', 'ʂ'), + (0x1DB4, 'M', 'ʃ'), + (0x1DB5, 'M', 'ƫ'), + (0x1DB6, 'M', 'ʉ'), + (0x1DB7, 'M', 'ʊ'), + (0x1DB8, 'M', 'ᴜ'), + (0x1DB9, 'M', 'ʋ'), + (0x1DBA, 'M', 'ʌ'), + (0x1DBB, 'M', 'z'), + (0x1DBC, 'M', 'ʐ'), + (0x1DBD, 'M', 'ʑ'), + (0x1DBE, 'M', 'ʒ'), + (0x1DBF, 'M', 'θ'), + (0x1DC0, 'V'), + (0x1E00, 'M', 'ḁ'), + (0x1E01, 'V'), + (0x1E02, 'M', 'ḃ'), + (0x1E03, 'V'), + (0x1E04, 'M', 'ḅ'), + (0x1E05, 'V'), + (0x1E06, 'M', 'ḇ'), + (0x1E07, 'V'), + (0x1E08, 'M', 'ḉ'), + (0x1E09, 'V'), + (0x1E0A, 'M', 'ḋ'), + (0x1E0B, 'V'), + (0x1E0C, 'M', 'ḍ'), + (0x1E0D, 'V'), + (0x1E0E, 'M', 'ḏ'), + (0x1E0F, 'V'), + (0x1E10, 'M', 'ḑ'), + (0x1E11, 'V'), + (0x1E12, 'M', 'ḓ'), + (0x1E13, 'V'), + (0x1E14, 'M', 'ḕ'), + (0x1E15, 'V'), + (0x1E16, 'M', 'ḗ'), + (0x1E17, 'V'), + (0x1E18, 'M', 'ḙ'), + (0x1E19, 'V'), + (0x1E1A, 'M', 'ḛ'), + (0x1E1B, 'V'), + (0x1E1C, 'M', 'ḝ'), + (0x1E1D, 'V'), + (0x1E1E, 'M', 'ḟ'), + (0x1E1F, 'V'), + (0x1E20, 'M', 'ḡ'), + (0x1E21, 'V'), + (0x1E22, 'M', 'ḣ'), + (0x1E23, 'V'), + ] + +def _seg_17() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E24, 'M', 'ḥ'), + (0x1E25, 'V'), + (0x1E26, 'M', 'ḧ'), + (0x1E27, 'V'), + (0x1E28, 'M', 'ḩ'), + (0x1E29, 'V'), + (0x1E2A, 'M', 'ḫ'), + (0x1E2B, 'V'), + (0x1E2C, 'M', 'ḭ'), + (0x1E2D, 'V'), + (0x1E2E, 'M', 'ḯ'), + (0x1E2F, 'V'), + (0x1E30, 'M', 'ḱ'), + (0x1E31, 'V'), + (0x1E32, 'M', 'ḳ'), + (0x1E33, 'V'), + (0x1E34, 'M', 'ḵ'), + (0x1E35, 'V'), + (0x1E36, 'M', 'ḷ'), + (0x1E37, 'V'), + (0x1E38, 'M', 'ḹ'), + (0x1E39, 'V'), + (0x1E3A, 'M', 'ḻ'), + (0x1E3B, 'V'), + (0x1E3C, 'M', 'ḽ'), + (0x1E3D, 'V'), + (0x1E3E, 'M', 'ḿ'), + (0x1E3F, 'V'), + (0x1E40, 'M', 'ṁ'), + (0x1E41, 'V'), + (0x1E42, 'M', 'ṃ'), + (0x1E43, 'V'), + (0x1E44, 'M', 'ṅ'), + (0x1E45, 'V'), + (0x1E46, 'M', 'ṇ'), + (0x1E47, 'V'), + (0x1E48, 'M', 'ṉ'), + (0x1E49, 'V'), + (0x1E4A, 'M', 'ṋ'), + (0x1E4B, 'V'), + (0x1E4C, 'M', 'ṍ'), + (0x1E4D, 'V'), + (0x1E4E, 'M', 'ṏ'), + (0x1E4F, 'V'), + (0x1E50, 'M', 'ṑ'), + (0x1E51, 'V'), + (0x1E52, 'M', 'ṓ'), + (0x1E53, 'V'), + (0x1E54, 'M', 'ṕ'), + (0x1E55, 'V'), + (0x1E56, 'M', 'ṗ'), + (0x1E57, 'V'), + (0x1E58, 'M', 'ṙ'), + (0x1E59, 'V'), + (0x1E5A, 'M', 'ṛ'), + (0x1E5B, 'V'), + (0x1E5C, 'M', 'ṝ'), + (0x1E5D, 'V'), + (0x1E5E, 'M', 'ṟ'), + (0x1E5F, 'V'), + (0x1E60, 'M', 'ṡ'), + (0x1E61, 'V'), + (0x1E62, 'M', 'ṣ'), + (0x1E63, 'V'), + (0x1E64, 'M', 'ṥ'), + (0x1E65, 'V'), + (0x1E66, 'M', 'ṧ'), + (0x1E67, 'V'), + (0x1E68, 'M', 'ṩ'), + (0x1E69, 'V'), + (0x1E6A, 'M', 'ṫ'), + (0x1E6B, 'V'), + (0x1E6C, 'M', 'ṭ'), + (0x1E6D, 'V'), + (0x1E6E, 'M', 'ṯ'), + (0x1E6F, 'V'), + (0x1E70, 'M', 'ṱ'), + (0x1E71, 'V'), + (0x1E72, 'M', 'ṳ'), + (0x1E73, 'V'), + (0x1E74, 'M', 'ṵ'), + (0x1E75, 'V'), + (0x1E76, 'M', 'ṷ'), + (0x1E77, 'V'), + (0x1E78, 'M', 'ṹ'), + (0x1E79, 'V'), + (0x1E7A, 'M', 'ṻ'), + (0x1E7B, 'V'), + (0x1E7C, 'M', 'ṽ'), + (0x1E7D, 'V'), + (0x1E7E, 'M', 'ṿ'), + (0x1E7F, 'V'), + (0x1E80, 'M', 'ẁ'), + (0x1E81, 'V'), + (0x1E82, 'M', 'ẃ'), + (0x1E83, 'V'), + (0x1E84, 'M', 'ẅ'), + (0x1E85, 'V'), + (0x1E86, 'M', 'ẇ'), + (0x1E87, 'V'), + ] + +def _seg_18() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E88, 'M', 'ẉ'), + (0x1E89, 'V'), + (0x1E8A, 'M', 'ẋ'), + (0x1E8B, 'V'), + (0x1E8C, 'M', 'ẍ'), + (0x1E8D, 'V'), + (0x1E8E, 'M', 'ẏ'), + (0x1E8F, 'V'), + (0x1E90, 'M', 'ẑ'), + (0x1E91, 'V'), + (0x1E92, 'M', 'ẓ'), + (0x1E93, 'V'), + (0x1E94, 'M', 'ẕ'), + (0x1E95, 'V'), + (0x1E9A, 'M', 'aʾ'), + (0x1E9B, 'M', 'ṡ'), + (0x1E9C, 'V'), + (0x1E9E, 'M', 'ß'), + (0x1E9F, 'V'), + (0x1EA0, 'M', 'ạ'), + (0x1EA1, 'V'), + (0x1EA2, 'M', 'ả'), + (0x1EA3, 'V'), + (0x1EA4, 'M', 'ấ'), + (0x1EA5, 'V'), + (0x1EA6, 'M', 'ầ'), + (0x1EA7, 'V'), + (0x1EA8, 'M', 'ẩ'), + (0x1EA9, 'V'), + (0x1EAA, 'M', 'ẫ'), + (0x1EAB, 'V'), + (0x1EAC, 'M', 'ậ'), + (0x1EAD, 'V'), + (0x1EAE, 'M', 'ắ'), + (0x1EAF, 'V'), + (0x1EB0, 'M', 'ằ'), + (0x1EB1, 'V'), + (0x1EB2, 'M', 'ẳ'), + (0x1EB3, 'V'), + (0x1EB4, 'M', 'ẵ'), + (0x1EB5, 'V'), + (0x1EB6, 'M', 'ặ'), + (0x1EB7, 'V'), + (0x1EB8, 'M', 'ẹ'), + (0x1EB9, 'V'), + (0x1EBA, 'M', 'ẻ'), + (0x1EBB, 'V'), + (0x1EBC, 'M', 'ẽ'), + (0x1EBD, 'V'), + (0x1EBE, 'M', 'ế'), + (0x1EBF, 'V'), + (0x1EC0, 'M', 'ề'), + (0x1EC1, 'V'), + (0x1EC2, 'M', 'ể'), + (0x1EC3, 'V'), + (0x1EC4, 'M', 'ễ'), + (0x1EC5, 'V'), + (0x1EC6, 'M', 'ệ'), + (0x1EC7, 'V'), + (0x1EC8, 'M', 'ỉ'), + (0x1EC9, 'V'), + (0x1ECA, 'M', 'ị'), + (0x1ECB, 'V'), + (0x1ECC, 'M', 'ọ'), + (0x1ECD, 'V'), + (0x1ECE, 'M', 'ỏ'), + (0x1ECF, 'V'), + (0x1ED0, 'M', 'ố'), + (0x1ED1, 'V'), + (0x1ED2, 'M', 'ồ'), + (0x1ED3, 'V'), + (0x1ED4, 'M', 'ổ'), + (0x1ED5, 'V'), + (0x1ED6, 'M', 'ỗ'), + (0x1ED7, 'V'), + (0x1ED8, 'M', 'ộ'), + (0x1ED9, 'V'), + (0x1EDA, 'M', 'ớ'), + (0x1EDB, 'V'), + (0x1EDC, 'M', 'ờ'), + (0x1EDD, 'V'), + (0x1EDE, 'M', 'ở'), + (0x1EDF, 'V'), + (0x1EE0, 'M', 'ỡ'), + (0x1EE1, 'V'), + (0x1EE2, 'M', 'ợ'), + (0x1EE3, 'V'), + (0x1EE4, 'M', 'ụ'), + (0x1EE5, 'V'), + (0x1EE6, 'M', 'ủ'), + (0x1EE7, 'V'), + (0x1EE8, 'M', 'ứ'), + (0x1EE9, 'V'), + (0x1EEA, 'M', 'ừ'), + (0x1EEB, 'V'), + (0x1EEC, 'M', 'ử'), + (0x1EED, 'V'), + (0x1EEE, 'M', 'ữ'), + (0x1EEF, 'V'), + (0x1EF0, 'M', 'ự'), + ] + +def _seg_19() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EF1, 'V'), + (0x1EF2, 'M', 'ỳ'), + (0x1EF3, 'V'), + (0x1EF4, 'M', 'ỵ'), + (0x1EF5, 'V'), + (0x1EF6, 'M', 'ỷ'), + (0x1EF7, 'V'), + (0x1EF8, 'M', 'ỹ'), + (0x1EF9, 'V'), + (0x1EFA, 'M', 'ỻ'), + (0x1EFB, 'V'), + (0x1EFC, 'M', 'ỽ'), + (0x1EFD, 'V'), + (0x1EFE, 'M', 'ỿ'), + (0x1EFF, 'V'), + (0x1F08, 'M', 'ἀ'), + (0x1F09, 'M', 'ἁ'), + (0x1F0A, 'M', 'ἂ'), + (0x1F0B, 'M', 'ἃ'), + (0x1F0C, 'M', 'ἄ'), + (0x1F0D, 'M', 'ἅ'), + (0x1F0E, 'M', 'ἆ'), + (0x1F0F, 'M', 'ἇ'), + (0x1F10, 'V'), + (0x1F16, 'X'), + (0x1F18, 'M', 'ἐ'), + (0x1F19, 'M', 'ἑ'), + (0x1F1A, 'M', 'ἒ'), + (0x1F1B, 'M', 'ἓ'), + (0x1F1C, 'M', 'ἔ'), + (0x1F1D, 'M', 'ἕ'), + (0x1F1E, 'X'), + (0x1F20, 'V'), + (0x1F28, 'M', 'ἠ'), + (0x1F29, 'M', 'ἡ'), + (0x1F2A, 'M', 'ἢ'), + (0x1F2B, 'M', 'ἣ'), + (0x1F2C, 'M', 'ἤ'), + (0x1F2D, 'M', 'ἥ'), + (0x1F2E, 'M', 'ἦ'), + (0x1F2F, 'M', 'ἧ'), + (0x1F30, 'V'), + (0x1F38, 'M', 'ἰ'), + (0x1F39, 'M', 'ἱ'), + (0x1F3A, 'M', 'ἲ'), + (0x1F3B, 'M', 'ἳ'), + (0x1F3C, 'M', 'ἴ'), + (0x1F3D, 'M', 'ἵ'), + (0x1F3E, 'M', 'ἶ'), + (0x1F3F, 'M', 'ἷ'), + (0x1F40, 'V'), + (0x1F46, 'X'), + (0x1F48, 'M', 'ὀ'), + (0x1F49, 'M', 'ὁ'), + (0x1F4A, 'M', 'ὂ'), + (0x1F4B, 'M', 'ὃ'), + (0x1F4C, 'M', 'ὄ'), + (0x1F4D, 'M', 'ὅ'), + (0x1F4E, 'X'), + (0x1F50, 'V'), + (0x1F58, 'X'), + (0x1F59, 'M', 'ὑ'), + (0x1F5A, 'X'), + (0x1F5B, 'M', 'ὓ'), + (0x1F5C, 'X'), + (0x1F5D, 'M', 'ὕ'), + (0x1F5E, 'X'), + (0x1F5F, 'M', 'ὗ'), + (0x1F60, 'V'), + (0x1F68, 'M', 'ὠ'), + (0x1F69, 'M', 'ὡ'), + (0x1F6A, 'M', 'ὢ'), + (0x1F6B, 'M', 'ὣ'), + (0x1F6C, 'M', 'ὤ'), + (0x1F6D, 'M', 'ὥ'), + (0x1F6E, 'M', 'ὦ'), + (0x1F6F, 'M', 'ὧ'), + (0x1F70, 'V'), + (0x1F71, 'M', 'ά'), + (0x1F72, 'V'), + (0x1F73, 'M', 'έ'), + (0x1F74, 'V'), + (0x1F75, 'M', 'ή'), + (0x1F76, 'V'), + (0x1F77, 'M', 'ί'), + (0x1F78, 'V'), + (0x1F79, 'M', 'ό'), + (0x1F7A, 'V'), + (0x1F7B, 'M', 'ύ'), + (0x1F7C, 'V'), + (0x1F7D, 'M', 'ώ'), + (0x1F7E, 'X'), + (0x1F80, 'M', 'ἀι'), + (0x1F81, 'M', 'ἁι'), + (0x1F82, 'M', 'ἂι'), + (0x1F83, 'M', 'ἃι'), + (0x1F84, 'M', 'ἄι'), + (0x1F85, 'M', 'ἅι'), + (0x1F86, 'M', 'ἆι'), + (0x1F87, 'M', 'ἇι'), + ] + +def _seg_20() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F88, 'M', 'ἀι'), + (0x1F89, 'M', 'ἁι'), + (0x1F8A, 'M', 'ἂι'), + (0x1F8B, 'M', 'ἃι'), + (0x1F8C, 'M', 'ἄι'), + (0x1F8D, 'M', 'ἅι'), + (0x1F8E, 'M', 'ἆι'), + (0x1F8F, 'M', 'ἇι'), + (0x1F90, 'M', 'ἠι'), + (0x1F91, 'M', 'ἡι'), + (0x1F92, 'M', 'ἢι'), + (0x1F93, 'M', 'ἣι'), + (0x1F94, 'M', 'ἤι'), + (0x1F95, 'M', 'ἥι'), + (0x1F96, 'M', 'ἦι'), + (0x1F97, 'M', 'ἧι'), + (0x1F98, 'M', 'ἠι'), + (0x1F99, 'M', 'ἡι'), + (0x1F9A, 'M', 'ἢι'), + (0x1F9B, 'M', 'ἣι'), + (0x1F9C, 'M', 'ἤι'), + (0x1F9D, 'M', 'ἥι'), + (0x1F9E, 'M', 'ἦι'), + (0x1F9F, 'M', 'ἧι'), + (0x1FA0, 'M', 'ὠι'), + (0x1FA1, 'M', 'ὡι'), + (0x1FA2, 'M', 'ὢι'), + (0x1FA3, 'M', 'ὣι'), + (0x1FA4, 'M', 'ὤι'), + (0x1FA5, 'M', 'ὥι'), + (0x1FA6, 'M', 'ὦι'), + (0x1FA7, 'M', 'ὧι'), + (0x1FA8, 'M', 'ὠι'), + (0x1FA9, 'M', 'ὡι'), + (0x1FAA, 'M', 'ὢι'), + (0x1FAB, 'M', 'ὣι'), + (0x1FAC, 'M', 'ὤι'), + (0x1FAD, 'M', 'ὥι'), + (0x1FAE, 'M', 'ὦι'), + (0x1FAF, 'M', 'ὧι'), + (0x1FB0, 'V'), + (0x1FB2, 'M', 'ὰι'), + (0x1FB3, 'M', 'αι'), + (0x1FB4, 'M', 'άι'), + (0x1FB5, 'X'), + (0x1FB6, 'V'), + (0x1FB7, 'M', 'ᾶι'), + (0x1FB8, 'M', 'ᾰ'), + (0x1FB9, 'M', 'ᾱ'), + (0x1FBA, 'M', 'ὰ'), + (0x1FBB, 'M', 'ά'), + (0x1FBC, 'M', 'αι'), + (0x1FBD, '3', ' ̓'), + (0x1FBE, 'M', 'ι'), + (0x1FBF, '3', ' ̓'), + (0x1FC0, '3', ' ͂'), + (0x1FC1, '3', ' ̈͂'), + (0x1FC2, 'M', 'ὴι'), + (0x1FC3, 'M', 'ηι'), + (0x1FC4, 'M', 'ήι'), + (0x1FC5, 'X'), + (0x1FC6, 'V'), + (0x1FC7, 'M', 'ῆι'), + (0x1FC8, 'M', 'ὲ'), + (0x1FC9, 'M', 'έ'), + (0x1FCA, 'M', 'ὴ'), + (0x1FCB, 'M', 'ή'), + (0x1FCC, 'M', 'ηι'), + (0x1FCD, '3', ' ̓̀'), + (0x1FCE, '3', ' ̓́'), + (0x1FCF, '3', ' ̓͂'), + (0x1FD0, 'V'), + (0x1FD3, 'M', 'ΐ'), + (0x1FD4, 'X'), + (0x1FD6, 'V'), + (0x1FD8, 'M', 'ῐ'), + (0x1FD9, 'M', 'ῑ'), + (0x1FDA, 'M', 'ὶ'), + (0x1FDB, 'M', 'ί'), + (0x1FDC, 'X'), + (0x1FDD, '3', ' ̔̀'), + (0x1FDE, '3', ' ̔́'), + (0x1FDF, '3', ' ̔͂'), + (0x1FE0, 'V'), + (0x1FE3, 'M', 'ΰ'), + (0x1FE4, 'V'), + (0x1FE8, 'M', 'ῠ'), + (0x1FE9, 'M', 'ῡ'), + (0x1FEA, 'M', 'ὺ'), + (0x1FEB, 'M', 'ύ'), + (0x1FEC, 'M', 'ῥ'), + (0x1FED, '3', ' ̈̀'), + (0x1FEE, '3', ' ̈́'), + (0x1FEF, '3', '`'), + (0x1FF0, 'X'), + (0x1FF2, 'M', 'ὼι'), + (0x1FF3, 'M', 'ωι'), + (0x1FF4, 'M', 'ώι'), + (0x1FF5, 'X'), + (0x1FF6, 'V'), + ] + +def _seg_21() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FF7, 'M', 'ῶι'), + (0x1FF8, 'M', 'ὸ'), + (0x1FF9, 'M', 'ό'), + (0x1FFA, 'M', 'ὼ'), + (0x1FFB, 'M', 'ώ'), + (0x1FFC, 'M', 'ωι'), + (0x1FFD, '3', ' ́'), + (0x1FFE, '3', ' ̔'), + (0x1FFF, 'X'), + (0x2000, '3', ' '), + (0x200B, 'I'), + (0x200C, 'D', ''), + (0x200E, 'X'), + (0x2010, 'V'), + (0x2011, 'M', '‐'), + (0x2012, 'V'), + (0x2017, '3', ' ̳'), + (0x2018, 'V'), + (0x2024, 'X'), + (0x2027, 'V'), + (0x2028, 'X'), + (0x202F, '3', ' '), + (0x2030, 'V'), + (0x2033, 'M', '′′'), + (0x2034, 'M', '′′′'), + (0x2035, 'V'), + (0x2036, 'M', '‵‵'), + (0x2037, 'M', '‵‵‵'), + (0x2038, 'V'), + (0x203C, '3', '!!'), + (0x203D, 'V'), + (0x203E, '3', ' ̅'), + (0x203F, 'V'), + (0x2047, '3', '??'), + (0x2048, '3', '?!'), + (0x2049, '3', '!?'), + (0x204A, 'V'), + (0x2057, 'M', '′′′′'), + (0x2058, 'V'), + (0x205F, '3', ' '), + (0x2060, 'I'), + (0x2061, 'X'), + (0x2064, 'I'), + (0x2065, 'X'), + (0x2070, 'M', '0'), + (0x2071, 'M', 'i'), + (0x2072, 'X'), + (0x2074, 'M', '4'), + (0x2075, 'M', '5'), + (0x2076, 'M', '6'), + (0x2077, 'M', '7'), + (0x2078, 'M', '8'), + (0x2079, 'M', '9'), + (0x207A, '3', '+'), + (0x207B, 'M', '−'), + (0x207C, '3', '='), + (0x207D, '3', '('), + (0x207E, '3', ')'), + (0x207F, 'M', 'n'), + (0x2080, 'M', '0'), + (0x2081, 'M', '1'), + (0x2082, 'M', '2'), + (0x2083, 'M', '3'), + (0x2084, 'M', '4'), + (0x2085, 'M', '5'), + (0x2086, 'M', '6'), + (0x2087, 'M', '7'), + (0x2088, 'M', '8'), + (0x2089, 'M', '9'), + (0x208A, '3', '+'), + (0x208B, 'M', '−'), + (0x208C, '3', '='), + (0x208D, '3', '('), + (0x208E, '3', ')'), + (0x208F, 'X'), + (0x2090, 'M', 'a'), + (0x2091, 'M', 'e'), + (0x2092, 'M', 'o'), + (0x2093, 'M', 'x'), + (0x2094, 'M', 'ə'), + (0x2095, 'M', 'h'), + (0x2096, 'M', 'k'), + (0x2097, 'M', 'l'), + (0x2098, 'M', 'm'), + (0x2099, 'M', 'n'), + (0x209A, 'M', 'p'), + (0x209B, 'M', 's'), + (0x209C, 'M', 't'), + (0x209D, 'X'), + (0x20A0, 'V'), + (0x20A8, 'M', 'rs'), + (0x20A9, 'V'), + (0x20C1, 'X'), + (0x20D0, 'V'), + (0x20F1, 'X'), + (0x2100, '3', 'a/c'), + (0x2101, '3', 'a/s'), + (0x2102, 'M', 'c'), + (0x2103, 'M', '°c'), + (0x2104, 'V'), + ] + +def _seg_22() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2105, '3', 'c/o'), + (0x2106, '3', 'c/u'), + (0x2107, 'M', 'ɛ'), + (0x2108, 'V'), + (0x2109, 'M', '°f'), + (0x210A, 'M', 'g'), + (0x210B, 'M', 'h'), + (0x210F, 'M', 'ħ'), + (0x2110, 'M', 'i'), + (0x2112, 'M', 'l'), + (0x2114, 'V'), + (0x2115, 'M', 'n'), + (0x2116, 'M', 'no'), + (0x2117, 'V'), + (0x2119, 'M', 'p'), + (0x211A, 'M', 'q'), + (0x211B, 'M', 'r'), + (0x211E, 'V'), + (0x2120, 'M', 'sm'), + (0x2121, 'M', 'tel'), + (0x2122, 'M', 'tm'), + (0x2123, 'V'), + (0x2124, 'M', 'z'), + (0x2125, 'V'), + (0x2126, 'M', 'ω'), + (0x2127, 'V'), + (0x2128, 'M', 'z'), + (0x2129, 'V'), + (0x212A, 'M', 'k'), + (0x212B, 'M', 'å'), + (0x212C, 'M', 'b'), + (0x212D, 'M', 'c'), + (0x212E, 'V'), + (0x212F, 'M', 'e'), + (0x2131, 'M', 'f'), + (0x2132, 'X'), + (0x2133, 'M', 'm'), + (0x2134, 'M', 'o'), + (0x2135, 'M', 'א'), + (0x2136, 'M', 'ב'), + (0x2137, 'M', 'ג'), + (0x2138, 'M', 'ד'), + (0x2139, 'M', 'i'), + (0x213A, 'V'), + (0x213B, 'M', 'fax'), + (0x213C, 'M', 'π'), + (0x213D, 'M', 'γ'), + (0x213F, 'M', 'π'), + (0x2140, 'M', '∑'), + (0x2141, 'V'), + (0x2145, 'M', 'd'), + (0x2147, 'M', 'e'), + (0x2148, 'M', 'i'), + (0x2149, 'M', 'j'), + (0x214A, 'V'), + (0x2150, 'M', '1⁄7'), + (0x2151, 'M', '1⁄9'), + (0x2152, 'M', '1⁄10'), + (0x2153, 'M', '1⁄3'), + (0x2154, 'M', '2⁄3'), + (0x2155, 'M', '1⁄5'), + (0x2156, 'M', '2⁄5'), + (0x2157, 'M', '3⁄5'), + (0x2158, 'M', '4⁄5'), + (0x2159, 'M', '1⁄6'), + (0x215A, 'M', '5⁄6'), + (0x215B, 'M', '1⁄8'), + (0x215C, 'M', '3⁄8'), + (0x215D, 'M', '5⁄8'), + (0x215E, 'M', '7⁄8'), + (0x215F, 'M', '1⁄'), + (0x2160, 'M', 'i'), + (0x2161, 'M', 'ii'), + (0x2162, 'M', 'iii'), + (0x2163, 'M', 'iv'), + (0x2164, 'M', 'v'), + (0x2165, 'M', 'vi'), + (0x2166, 'M', 'vii'), + (0x2167, 'M', 'viii'), + (0x2168, 'M', 'ix'), + (0x2169, 'M', 'x'), + (0x216A, 'M', 'xi'), + (0x216B, 'M', 'xii'), + (0x216C, 'M', 'l'), + (0x216D, 'M', 'c'), + (0x216E, 'M', 'd'), + (0x216F, 'M', 'm'), + (0x2170, 'M', 'i'), + (0x2171, 'M', 'ii'), + (0x2172, 'M', 'iii'), + (0x2173, 'M', 'iv'), + (0x2174, 'M', 'v'), + (0x2175, 'M', 'vi'), + (0x2176, 'M', 'vii'), + (0x2177, 'M', 'viii'), + (0x2178, 'M', 'ix'), + (0x2179, 'M', 'x'), + (0x217A, 'M', 'xi'), + (0x217B, 'M', 'xii'), + (0x217C, 'M', 'l'), + ] + +def _seg_23() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x217D, 'M', 'c'), + (0x217E, 'M', 'd'), + (0x217F, 'M', 'm'), + (0x2180, 'V'), + (0x2183, 'X'), + (0x2184, 'V'), + (0x2189, 'M', '0⁄3'), + (0x218A, 'V'), + (0x218C, 'X'), + (0x2190, 'V'), + (0x222C, 'M', '∫∫'), + (0x222D, 'M', '∫∫∫'), + (0x222E, 'V'), + (0x222F, 'M', '∮∮'), + (0x2230, 'M', '∮∮∮'), + (0x2231, 'V'), + (0x2329, 'M', '〈'), + (0x232A, 'M', '〉'), + (0x232B, 'V'), + (0x2427, 'X'), + (0x2440, 'V'), + (0x244B, 'X'), + (0x2460, 'M', '1'), + (0x2461, 'M', '2'), + (0x2462, 'M', '3'), + (0x2463, 'M', '4'), + (0x2464, 'M', '5'), + (0x2465, 'M', '6'), + (0x2466, 'M', '7'), + (0x2467, 'M', '8'), + (0x2468, 'M', '9'), + (0x2469, 'M', '10'), + (0x246A, 'M', '11'), + (0x246B, 'M', '12'), + (0x246C, 'M', '13'), + (0x246D, 'M', '14'), + (0x246E, 'M', '15'), + (0x246F, 'M', '16'), + (0x2470, 'M', '17'), + (0x2471, 'M', '18'), + (0x2472, 'M', '19'), + (0x2473, 'M', '20'), + (0x2474, '3', '(1)'), + (0x2475, '3', '(2)'), + (0x2476, '3', '(3)'), + (0x2477, '3', '(4)'), + (0x2478, '3', '(5)'), + (0x2479, '3', '(6)'), + (0x247A, '3', '(7)'), + (0x247B, '3', '(8)'), + (0x247C, '3', '(9)'), + (0x247D, '3', '(10)'), + (0x247E, '3', '(11)'), + (0x247F, '3', '(12)'), + (0x2480, '3', '(13)'), + (0x2481, '3', '(14)'), + (0x2482, '3', '(15)'), + (0x2483, '3', '(16)'), + (0x2484, '3', '(17)'), + (0x2485, '3', '(18)'), + (0x2486, '3', '(19)'), + (0x2487, '3', '(20)'), + (0x2488, 'X'), + (0x249C, '3', '(a)'), + (0x249D, '3', '(b)'), + (0x249E, '3', '(c)'), + (0x249F, '3', '(d)'), + (0x24A0, '3', '(e)'), + (0x24A1, '3', '(f)'), + (0x24A2, '3', '(g)'), + (0x24A3, '3', '(h)'), + (0x24A4, '3', '(i)'), + (0x24A5, '3', '(j)'), + (0x24A6, '3', '(k)'), + (0x24A7, '3', '(l)'), + (0x24A8, '3', '(m)'), + (0x24A9, '3', '(n)'), + (0x24AA, '3', '(o)'), + (0x24AB, '3', '(p)'), + (0x24AC, '3', '(q)'), + (0x24AD, '3', '(r)'), + (0x24AE, '3', '(s)'), + (0x24AF, '3', '(t)'), + (0x24B0, '3', '(u)'), + (0x24B1, '3', '(v)'), + (0x24B2, '3', '(w)'), + (0x24B3, '3', '(x)'), + (0x24B4, '3', '(y)'), + (0x24B5, '3', '(z)'), + (0x24B6, 'M', 'a'), + (0x24B7, 'M', 'b'), + (0x24B8, 'M', 'c'), + (0x24B9, 'M', 'd'), + (0x24BA, 'M', 'e'), + (0x24BB, 'M', 'f'), + (0x24BC, 'M', 'g'), + (0x24BD, 'M', 'h'), + (0x24BE, 'M', 'i'), + (0x24BF, 'M', 'j'), + (0x24C0, 'M', 'k'), + ] + +def _seg_24() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x24C1, 'M', 'l'), + (0x24C2, 'M', 'm'), + (0x24C3, 'M', 'n'), + (0x24C4, 'M', 'o'), + (0x24C5, 'M', 'p'), + (0x24C6, 'M', 'q'), + (0x24C7, 'M', 'r'), + (0x24C8, 'M', 's'), + (0x24C9, 'M', 't'), + (0x24CA, 'M', 'u'), + (0x24CB, 'M', 'v'), + (0x24CC, 'M', 'w'), + (0x24CD, 'M', 'x'), + (0x24CE, 'M', 'y'), + (0x24CF, 'M', 'z'), + (0x24D0, 'M', 'a'), + (0x24D1, 'M', 'b'), + (0x24D2, 'M', 'c'), + (0x24D3, 'M', 'd'), + (0x24D4, 'M', 'e'), + (0x24D5, 'M', 'f'), + (0x24D6, 'M', 'g'), + (0x24D7, 'M', 'h'), + (0x24D8, 'M', 'i'), + (0x24D9, 'M', 'j'), + (0x24DA, 'M', 'k'), + (0x24DB, 'M', 'l'), + (0x24DC, 'M', 'm'), + (0x24DD, 'M', 'n'), + (0x24DE, 'M', 'o'), + (0x24DF, 'M', 'p'), + (0x24E0, 'M', 'q'), + (0x24E1, 'M', 'r'), + (0x24E2, 'M', 's'), + (0x24E3, 'M', 't'), + (0x24E4, 'M', 'u'), + (0x24E5, 'M', 'v'), + (0x24E6, 'M', 'w'), + (0x24E7, 'M', 'x'), + (0x24E8, 'M', 'y'), + (0x24E9, 'M', 'z'), + (0x24EA, 'M', '0'), + (0x24EB, 'V'), + (0x2A0C, 'M', '∫∫∫∫'), + (0x2A0D, 'V'), + (0x2A74, '3', '::='), + (0x2A75, '3', '=='), + (0x2A76, '3', '==='), + (0x2A77, 'V'), + (0x2ADC, 'M', '⫝̸'), + (0x2ADD, 'V'), + (0x2B74, 'X'), + (0x2B76, 'V'), + (0x2B96, 'X'), + (0x2B97, 'V'), + (0x2C00, 'M', 'ⰰ'), + (0x2C01, 'M', 'ⰱ'), + (0x2C02, 'M', 'ⰲ'), + (0x2C03, 'M', 'ⰳ'), + (0x2C04, 'M', 'ⰴ'), + (0x2C05, 'M', 'ⰵ'), + (0x2C06, 'M', 'ⰶ'), + (0x2C07, 'M', 'ⰷ'), + (0x2C08, 'M', 'ⰸ'), + (0x2C09, 'M', 'ⰹ'), + (0x2C0A, 'M', 'ⰺ'), + (0x2C0B, 'M', 'ⰻ'), + (0x2C0C, 'M', 'ⰼ'), + (0x2C0D, 'M', 'ⰽ'), + (0x2C0E, 'M', 'ⰾ'), + (0x2C0F, 'M', 'ⰿ'), + (0x2C10, 'M', 'ⱀ'), + (0x2C11, 'M', 'ⱁ'), + (0x2C12, 'M', 'ⱂ'), + (0x2C13, 'M', 'ⱃ'), + (0x2C14, 'M', 'ⱄ'), + (0x2C15, 'M', 'ⱅ'), + (0x2C16, 'M', 'ⱆ'), + (0x2C17, 'M', 'ⱇ'), + (0x2C18, 'M', 'ⱈ'), + (0x2C19, 'M', 'ⱉ'), + (0x2C1A, 'M', 'ⱊ'), + (0x2C1B, 'M', 'ⱋ'), + (0x2C1C, 'M', 'ⱌ'), + (0x2C1D, 'M', 'ⱍ'), + (0x2C1E, 'M', 'ⱎ'), + (0x2C1F, 'M', 'ⱏ'), + (0x2C20, 'M', 'ⱐ'), + (0x2C21, 'M', 'ⱑ'), + (0x2C22, 'M', 'ⱒ'), + (0x2C23, 'M', 'ⱓ'), + (0x2C24, 'M', 'ⱔ'), + (0x2C25, 'M', 'ⱕ'), + (0x2C26, 'M', 'ⱖ'), + (0x2C27, 'M', 'ⱗ'), + (0x2C28, 'M', 'ⱘ'), + (0x2C29, 'M', 'ⱙ'), + (0x2C2A, 'M', 'ⱚ'), + (0x2C2B, 'M', 'ⱛ'), + (0x2C2C, 'M', 'ⱜ'), + ] + +def _seg_25() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2C2D, 'M', 'ⱝ'), + (0x2C2E, 'M', 'ⱞ'), + (0x2C2F, 'M', 'ⱟ'), + (0x2C30, 'V'), + (0x2C60, 'M', 'ⱡ'), + (0x2C61, 'V'), + (0x2C62, 'M', 'ɫ'), + (0x2C63, 'M', 'ᵽ'), + (0x2C64, 'M', 'ɽ'), + (0x2C65, 'V'), + (0x2C67, 'M', 'ⱨ'), + (0x2C68, 'V'), + (0x2C69, 'M', 'ⱪ'), + (0x2C6A, 'V'), + (0x2C6B, 'M', 'ⱬ'), + (0x2C6C, 'V'), + (0x2C6D, 'M', 'ɑ'), + (0x2C6E, 'M', 'ɱ'), + (0x2C6F, 'M', 'ɐ'), + (0x2C70, 'M', 'ɒ'), + (0x2C71, 'V'), + (0x2C72, 'M', 'ⱳ'), + (0x2C73, 'V'), + (0x2C75, 'M', 'ⱶ'), + (0x2C76, 'V'), + (0x2C7C, 'M', 'j'), + (0x2C7D, 'M', 'v'), + (0x2C7E, 'M', 'ȿ'), + (0x2C7F, 'M', 'ɀ'), + (0x2C80, 'M', 'ⲁ'), + (0x2C81, 'V'), + (0x2C82, 'M', 'ⲃ'), + (0x2C83, 'V'), + (0x2C84, 'M', 'ⲅ'), + (0x2C85, 'V'), + (0x2C86, 'M', 'ⲇ'), + (0x2C87, 'V'), + (0x2C88, 'M', 'ⲉ'), + (0x2C89, 'V'), + (0x2C8A, 'M', 'ⲋ'), + (0x2C8B, 'V'), + (0x2C8C, 'M', 'ⲍ'), + (0x2C8D, 'V'), + (0x2C8E, 'M', 'ⲏ'), + (0x2C8F, 'V'), + (0x2C90, 'M', 'ⲑ'), + (0x2C91, 'V'), + (0x2C92, 'M', 'ⲓ'), + (0x2C93, 'V'), + (0x2C94, 'M', 'ⲕ'), + (0x2C95, 'V'), + (0x2C96, 'M', 'ⲗ'), + (0x2C97, 'V'), + (0x2C98, 'M', 'ⲙ'), + (0x2C99, 'V'), + (0x2C9A, 'M', 'ⲛ'), + (0x2C9B, 'V'), + (0x2C9C, 'M', 'ⲝ'), + (0x2C9D, 'V'), + (0x2C9E, 'M', 'ⲟ'), + (0x2C9F, 'V'), + (0x2CA0, 'M', 'ⲡ'), + (0x2CA1, 'V'), + (0x2CA2, 'M', 'ⲣ'), + (0x2CA3, 'V'), + (0x2CA4, 'M', 'ⲥ'), + (0x2CA5, 'V'), + (0x2CA6, 'M', 'ⲧ'), + (0x2CA7, 'V'), + (0x2CA8, 'M', 'ⲩ'), + (0x2CA9, 'V'), + (0x2CAA, 'M', 'ⲫ'), + (0x2CAB, 'V'), + (0x2CAC, 'M', 'ⲭ'), + (0x2CAD, 'V'), + (0x2CAE, 'M', 'ⲯ'), + (0x2CAF, 'V'), + (0x2CB0, 'M', 'ⲱ'), + (0x2CB1, 'V'), + (0x2CB2, 'M', 'ⲳ'), + (0x2CB3, 'V'), + (0x2CB4, 'M', 'ⲵ'), + (0x2CB5, 'V'), + (0x2CB6, 'M', 'ⲷ'), + (0x2CB7, 'V'), + (0x2CB8, 'M', 'ⲹ'), + (0x2CB9, 'V'), + (0x2CBA, 'M', 'ⲻ'), + (0x2CBB, 'V'), + (0x2CBC, 'M', 'ⲽ'), + (0x2CBD, 'V'), + (0x2CBE, 'M', 'ⲿ'), + (0x2CBF, 'V'), + (0x2CC0, 'M', 'ⳁ'), + (0x2CC1, 'V'), + (0x2CC2, 'M', 'ⳃ'), + (0x2CC3, 'V'), + (0x2CC4, 'M', 'ⳅ'), + (0x2CC5, 'V'), + (0x2CC6, 'M', 'ⳇ'), + ] + +def _seg_26() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2CC7, 'V'), + (0x2CC8, 'M', 'ⳉ'), + (0x2CC9, 'V'), + (0x2CCA, 'M', 'ⳋ'), + (0x2CCB, 'V'), + (0x2CCC, 'M', 'ⳍ'), + (0x2CCD, 'V'), + (0x2CCE, 'M', 'ⳏ'), + (0x2CCF, 'V'), + (0x2CD0, 'M', 'ⳑ'), + (0x2CD1, 'V'), + (0x2CD2, 'M', 'ⳓ'), + (0x2CD3, 'V'), + (0x2CD4, 'M', 'ⳕ'), + (0x2CD5, 'V'), + (0x2CD6, 'M', 'ⳗ'), + (0x2CD7, 'V'), + (0x2CD8, 'M', 'ⳙ'), + (0x2CD9, 'V'), + (0x2CDA, 'M', 'ⳛ'), + (0x2CDB, 'V'), + (0x2CDC, 'M', 'ⳝ'), + (0x2CDD, 'V'), + (0x2CDE, 'M', 'ⳟ'), + (0x2CDF, 'V'), + (0x2CE0, 'M', 'ⳡ'), + (0x2CE1, 'V'), + (0x2CE2, 'M', 'ⳣ'), + (0x2CE3, 'V'), + (0x2CEB, 'M', 'ⳬ'), + (0x2CEC, 'V'), + (0x2CED, 'M', 'ⳮ'), + (0x2CEE, 'V'), + (0x2CF2, 'M', 'ⳳ'), + (0x2CF3, 'V'), + (0x2CF4, 'X'), + (0x2CF9, 'V'), + (0x2D26, 'X'), + (0x2D27, 'V'), + (0x2D28, 'X'), + (0x2D2D, 'V'), + (0x2D2E, 'X'), + (0x2D30, 'V'), + (0x2D68, 'X'), + (0x2D6F, 'M', 'ⵡ'), + (0x2D70, 'V'), + (0x2D71, 'X'), + (0x2D7F, 'V'), + (0x2D97, 'X'), + (0x2DA0, 'V'), + (0x2DA7, 'X'), + (0x2DA8, 'V'), + (0x2DAF, 'X'), + (0x2DB0, 'V'), + (0x2DB7, 'X'), + (0x2DB8, 'V'), + (0x2DBF, 'X'), + (0x2DC0, 'V'), + (0x2DC7, 'X'), + (0x2DC8, 'V'), + (0x2DCF, 'X'), + (0x2DD0, 'V'), + (0x2DD7, 'X'), + (0x2DD8, 'V'), + (0x2DDF, 'X'), + (0x2DE0, 'V'), + (0x2E5E, 'X'), + (0x2E80, 'V'), + (0x2E9A, 'X'), + (0x2E9B, 'V'), + (0x2E9F, 'M', '母'), + (0x2EA0, 'V'), + (0x2EF3, 'M', '龟'), + (0x2EF4, 'X'), + (0x2F00, 'M', '一'), + (0x2F01, 'M', '丨'), + (0x2F02, 'M', '丶'), + (0x2F03, 'M', '丿'), + (0x2F04, 'M', '乙'), + (0x2F05, 'M', '亅'), + (0x2F06, 'M', '二'), + (0x2F07, 'M', '亠'), + (0x2F08, 'M', '人'), + (0x2F09, 'M', '儿'), + (0x2F0A, 'M', '入'), + (0x2F0B, 'M', '八'), + (0x2F0C, 'M', '冂'), + (0x2F0D, 'M', '冖'), + (0x2F0E, 'M', '冫'), + (0x2F0F, 'M', '几'), + (0x2F10, 'M', '凵'), + (0x2F11, 'M', '刀'), + (0x2F12, 'M', '力'), + (0x2F13, 'M', '勹'), + (0x2F14, 'M', '匕'), + (0x2F15, 'M', '匚'), + (0x2F16, 'M', '匸'), + (0x2F17, 'M', '十'), + (0x2F18, 'M', '卜'), + (0x2F19, 'M', '卩'), + ] + +def _seg_27() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F1A, 'M', '厂'), + (0x2F1B, 'M', '厶'), + (0x2F1C, 'M', '又'), + (0x2F1D, 'M', '口'), + (0x2F1E, 'M', '囗'), + (0x2F1F, 'M', '土'), + (0x2F20, 'M', '士'), + (0x2F21, 'M', '夂'), + (0x2F22, 'M', '夊'), + (0x2F23, 'M', '夕'), + (0x2F24, 'M', '大'), + (0x2F25, 'M', '女'), + (0x2F26, 'M', '子'), + (0x2F27, 'M', '宀'), + (0x2F28, 'M', '寸'), + (0x2F29, 'M', '小'), + (0x2F2A, 'M', '尢'), + (0x2F2B, 'M', '尸'), + (0x2F2C, 'M', '屮'), + (0x2F2D, 'M', '山'), + (0x2F2E, 'M', '巛'), + (0x2F2F, 'M', '工'), + (0x2F30, 'M', '己'), + (0x2F31, 'M', '巾'), + (0x2F32, 'M', '干'), + (0x2F33, 'M', '幺'), + (0x2F34, 'M', '广'), + (0x2F35, 'M', '廴'), + (0x2F36, 'M', '廾'), + (0x2F37, 'M', '弋'), + (0x2F38, 'M', '弓'), + (0x2F39, 'M', '彐'), + (0x2F3A, 'M', '彡'), + (0x2F3B, 'M', '彳'), + (0x2F3C, 'M', '心'), + (0x2F3D, 'M', '戈'), + (0x2F3E, 'M', '戶'), + (0x2F3F, 'M', '手'), + (0x2F40, 'M', '支'), + (0x2F41, 'M', '攴'), + (0x2F42, 'M', '文'), + (0x2F43, 'M', '斗'), + (0x2F44, 'M', '斤'), + (0x2F45, 'M', '方'), + (0x2F46, 'M', '无'), + (0x2F47, 'M', '日'), + (0x2F48, 'M', '曰'), + (0x2F49, 'M', '月'), + (0x2F4A, 'M', '木'), + (0x2F4B, 'M', '欠'), + (0x2F4C, 'M', '止'), + (0x2F4D, 'M', '歹'), + (0x2F4E, 'M', '殳'), + (0x2F4F, 'M', '毋'), + (0x2F50, 'M', '比'), + (0x2F51, 'M', '毛'), + (0x2F52, 'M', '氏'), + (0x2F53, 'M', '气'), + (0x2F54, 'M', '水'), + (0x2F55, 'M', '火'), + (0x2F56, 'M', '爪'), + (0x2F57, 'M', '父'), + (0x2F58, 'M', '爻'), + (0x2F59, 'M', '爿'), + (0x2F5A, 'M', '片'), + (0x2F5B, 'M', '牙'), + (0x2F5C, 'M', '牛'), + (0x2F5D, 'M', '犬'), + (0x2F5E, 'M', '玄'), + (0x2F5F, 'M', '玉'), + (0x2F60, 'M', '瓜'), + (0x2F61, 'M', '瓦'), + (0x2F62, 'M', '甘'), + (0x2F63, 'M', '生'), + (0x2F64, 'M', '用'), + (0x2F65, 'M', '田'), + (0x2F66, 'M', '疋'), + (0x2F67, 'M', '疒'), + (0x2F68, 'M', '癶'), + (0x2F69, 'M', '白'), + (0x2F6A, 'M', '皮'), + (0x2F6B, 'M', '皿'), + (0x2F6C, 'M', '目'), + (0x2F6D, 'M', '矛'), + (0x2F6E, 'M', '矢'), + (0x2F6F, 'M', '石'), + (0x2F70, 'M', '示'), + (0x2F71, 'M', '禸'), + (0x2F72, 'M', '禾'), + (0x2F73, 'M', '穴'), + (0x2F74, 'M', '立'), + (0x2F75, 'M', '竹'), + (0x2F76, 'M', '米'), + (0x2F77, 'M', '糸'), + (0x2F78, 'M', '缶'), + (0x2F79, 'M', '网'), + (0x2F7A, 'M', '羊'), + (0x2F7B, 'M', '羽'), + (0x2F7C, 'M', '老'), + (0x2F7D, 'M', '而'), + ] + +def _seg_28() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F7E, 'M', '耒'), + (0x2F7F, 'M', '耳'), + (0x2F80, 'M', '聿'), + (0x2F81, 'M', '肉'), + (0x2F82, 'M', '臣'), + (0x2F83, 'M', '自'), + (0x2F84, 'M', '至'), + (0x2F85, 'M', '臼'), + (0x2F86, 'M', '舌'), + (0x2F87, 'M', '舛'), + (0x2F88, 'M', '舟'), + (0x2F89, 'M', '艮'), + (0x2F8A, 'M', '色'), + (0x2F8B, 'M', '艸'), + (0x2F8C, 'M', '虍'), + (0x2F8D, 'M', '虫'), + (0x2F8E, 'M', '血'), + (0x2F8F, 'M', '行'), + (0x2F90, 'M', '衣'), + (0x2F91, 'M', '襾'), + (0x2F92, 'M', '見'), + (0x2F93, 'M', '角'), + (0x2F94, 'M', '言'), + (0x2F95, 'M', '谷'), + (0x2F96, 'M', '豆'), + (0x2F97, 'M', '豕'), + (0x2F98, 'M', '豸'), + (0x2F99, 'M', '貝'), + (0x2F9A, 'M', '赤'), + (0x2F9B, 'M', '走'), + (0x2F9C, 'M', '足'), + (0x2F9D, 'M', '身'), + (0x2F9E, 'M', '車'), + (0x2F9F, 'M', '辛'), + (0x2FA0, 'M', '辰'), + (0x2FA1, 'M', '辵'), + (0x2FA2, 'M', '邑'), + (0x2FA3, 'M', '酉'), + (0x2FA4, 'M', '釆'), + (0x2FA5, 'M', '里'), + (0x2FA6, 'M', '金'), + (0x2FA7, 'M', '長'), + (0x2FA8, 'M', '門'), + (0x2FA9, 'M', '阜'), + (0x2FAA, 'M', '隶'), + (0x2FAB, 'M', '隹'), + (0x2FAC, 'M', '雨'), + (0x2FAD, 'M', '靑'), + (0x2FAE, 'M', '非'), + (0x2FAF, 'M', '面'), + (0x2FB0, 'M', '革'), + (0x2FB1, 'M', '韋'), + (0x2FB2, 'M', '韭'), + (0x2FB3, 'M', '音'), + (0x2FB4, 'M', '頁'), + (0x2FB5, 'M', '風'), + (0x2FB6, 'M', '飛'), + (0x2FB7, 'M', '食'), + (0x2FB8, 'M', '首'), + (0x2FB9, 'M', '香'), + (0x2FBA, 'M', '馬'), + (0x2FBB, 'M', '骨'), + (0x2FBC, 'M', '高'), + (0x2FBD, 'M', '髟'), + (0x2FBE, 'M', '鬥'), + (0x2FBF, 'M', '鬯'), + (0x2FC0, 'M', '鬲'), + (0x2FC1, 'M', '鬼'), + (0x2FC2, 'M', '魚'), + (0x2FC3, 'M', '鳥'), + (0x2FC4, 'M', '鹵'), + (0x2FC5, 'M', '鹿'), + (0x2FC6, 'M', '麥'), + (0x2FC7, 'M', '麻'), + (0x2FC8, 'M', '黃'), + (0x2FC9, 'M', '黍'), + (0x2FCA, 'M', '黑'), + (0x2FCB, 'M', '黹'), + (0x2FCC, 'M', '黽'), + (0x2FCD, 'M', '鼎'), + (0x2FCE, 'M', '鼓'), + (0x2FCF, 'M', '鼠'), + (0x2FD0, 'M', '鼻'), + (0x2FD1, 'M', '齊'), + (0x2FD2, 'M', '齒'), + (0x2FD3, 'M', '龍'), + (0x2FD4, 'M', '龜'), + (0x2FD5, 'M', '龠'), + (0x2FD6, 'X'), + (0x3000, '3', ' '), + (0x3001, 'V'), + (0x3002, 'M', '.'), + (0x3003, 'V'), + (0x3036, 'M', '〒'), + (0x3037, 'V'), + (0x3038, 'M', '十'), + (0x3039, 'M', '卄'), + (0x303A, 'M', '卅'), + (0x303B, 'V'), + (0x3040, 'X'), + ] + +def _seg_29() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3041, 'V'), + (0x3097, 'X'), + (0x3099, 'V'), + (0x309B, '3', ' ゙'), + (0x309C, '3', ' ゚'), + (0x309D, 'V'), + (0x309F, 'M', 'より'), + (0x30A0, 'V'), + (0x30FF, 'M', 'コト'), + (0x3100, 'X'), + (0x3105, 'V'), + (0x3130, 'X'), + (0x3131, 'M', 'ᄀ'), + (0x3132, 'M', 'ᄁ'), + (0x3133, 'M', 'ᆪ'), + (0x3134, 'M', 'ᄂ'), + (0x3135, 'M', 'ᆬ'), + (0x3136, 'M', 'ᆭ'), + (0x3137, 'M', 'ᄃ'), + (0x3138, 'M', 'ᄄ'), + (0x3139, 'M', 'ᄅ'), + (0x313A, 'M', 'ᆰ'), + (0x313B, 'M', 'ᆱ'), + (0x313C, 'M', 'ᆲ'), + (0x313D, 'M', 'ᆳ'), + (0x313E, 'M', 'ᆴ'), + (0x313F, 'M', 'ᆵ'), + (0x3140, 'M', 'ᄚ'), + (0x3141, 'M', 'ᄆ'), + (0x3142, 'M', 'ᄇ'), + (0x3143, 'M', 'ᄈ'), + (0x3144, 'M', 'ᄡ'), + (0x3145, 'M', 'ᄉ'), + (0x3146, 'M', 'ᄊ'), + (0x3147, 'M', 'ᄋ'), + (0x3148, 'M', 'ᄌ'), + (0x3149, 'M', 'ᄍ'), + (0x314A, 'M', 'ᄎ'), + (0x314B, 'M', 'ᄏ'), + (0x314C, 'M', 'ᄐ'), + (0x314D, 'M', 'ᄑ'), + (0x314E, 'M', 'ᄒ'), + (0x314F, 'M', 'ᅡ'), + (0x3150, 'M', 'ᅢ'), + (0x3151, 'M', 'ᅣ'), + (0x3152, 'M', 'ᅤ'), + (0x3153, 'M', 'ᅥ'), + (0x3154, 'M', 'ᅦ'), + (0x3155, 'M', 'ᅧ'), + (0x3156, 'M', 'ᅨ'), + (0x3157, 'M', 'ᅩ'), + (0x3158, 'M', 'ᅪ'), + (0x3159, 'M', 'ᅫ'), + (0x315A, 'M', 'ᅬ'), + (0x315B, 'M', 'ᅭ'), + (0x315C, 'M', 'ᅮ'), + (0x315D, 'M', 'ᅯ'), + (0x315E, 'M', 'ᅰ'), + (0x315F, 'M', 'ᅱ'), + (0x3160, 'M', 'ᅲ'), + (0x3161, 'M', 'ᅳ'), + (0x3162, 'M', 'ᅴ'), + (0x3163, 'M', 'ᅵ'), + (0x3164, 'X'), + (0x3165, 'M', 'ᄔ'), + (0x3166, 'M', 'ᄕ'), + (0x3167, 'M', 'ᇇ'), + (0x3168, 'M', 'ᇈ'), + (0x3169, 'M', 'ᇌ'), + (0x316A, 'M', 'ᇎ'), + (0x316B, 'M', 'ᇓ'), + (0x316C, 'M', 'ᇗ'), + (0x316D, 'M', 'ᇙ'), + (0x316E, 'M', 'ᄜ'), + (0x316F, 'M', 'ᇝ'), + (0x3170, 'M', 'ᇟ'), + (0x3171, 'M', 'ᄝ'), + (0x3172, 'M', 'ᄞ'), + (0x3173, 'M', 'ᄠ'), + (0x3174, 'M', 'ᄢ'), + (0x3175, 'M', 'ᄣ'), + (0x3176, 'M', 'ᄧ'), + (0x3177, 'M', 'ᄩ'), + (0x3178, 'M', 'ᄫ'), + (0x3179, 'M', 'ᄬ'), + (0x317A, 'M', 'ᄭ'), + (0x317B, 'M', 'ᄮ'), + (0x317C, 'M', 'ᄯ'), + (0x317D, 'M', 'ᄲ'), + (0x317E, 'M', 'ᄶ'), + (0x317F, 'M', 'ᅀ'), + (0x3180, 'M', 'ᅇ'), + (0x3181, 'M', 'ᅌ'), + (0x3182, 'M', 'ᇱ'), + (0x3183, 'M', 'ᇲ'), + (0x3184, 'M', 'ᅗ'), + (0x3185, 'M', 'ᅘ'), + (0x3186, 'M', 'ᅙ'), + (0x3187, 'M', 'ᆄ'), + (0x3188, 'M', 'ᆅ'), + ] + +def _seg_30() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3189, 'M', 'ᆈ'), + (0x318A, 'M', 'ᆑ'), + (0x318B, 'M', 'ᆒ'), + (0x318C, 'M', 'ᆔ'), + (0x318D, 'M', 'ᆞ'), + (0x318E, 'M', 'ᆡ'), + (0x318F, 'X'), + (0x3190, 'V'), + (0x3192, 'M', '一'), + (0x3193, 'M', '二'), + (0x3194, 'M', '三'), + (0x3195, 'M', '四'), + (0x3196, 'M', '上'), + (0x3197, 'M', '中'), + (0x3198, 'M', '下'), + (0x3199, 'M', '甲'), + (0x319A, 'M', '乙'), + (0x319B, 'M', '丙'), + (0x319C, 'M', '丁'), + (0x319D, 'M', '天'), + (0x319E, 'M', '地'), + (0x319F, 'M', '人'), + (0x31A0, 'V'), + (0x31E4, 'X'), + (0x31F0, 'V'), + (0x3200, '3', '(ᄀ)'), + (0x3201, '3', '(ᄂ)'), + (0x3202, '3', '(ᄃ)'), + (0x3203, '3', '(ᄅ)'), + (0x3204, '3', '(ᄆ)'), + (0x3205, '3', '(ᄇ)'), + (0x3206, '3', '(ᄉ)'), + (0x3207, '3', '(ᄋ)'), + (0x3208, '3', '(ᄌ)'), + (0x3209, '3', '(ᄎ)'), + (0x320A, '3', '(ᄏ)'), + (0x320B, '3', '(ᄐ)'), + (0x320C, '3', '(ᄑ)'), + (0x320D, '3', '(ᄒ)'), + (0x320E, '3', '(가)'), + (0x320F, '3', '(나)'), + (0x3210, '3', '(다)'), + (0x3211, '3', '(라)'), + (0x3212, '3', '(마)'), + (0x3213, '3', '(바)'), + (0x3214, '3', '(사)'), + (0x3215, '3', '(아)'), + (0x3216, '3', '(자)'), + (0x3217, '3', '(차)'), + (0x3218, '3', '(카)'), + (0x3219, '3', '(타)'), + (0x321A, '3', '(파)'), + (0x321B, '3', '(하)'), + (0x321C, '3', '(주)'), + (0x321D, '3', '(오전)'), + (0x321E, '3', '(오후)'), + (0x321F, 'X'), + (0x3220, '3', '(一)'), + (0x3221, '3', '(二)'), + (0x3222, '3', '(三)'), + (0x3223, '3', '(四)'), + (0x3224, '3', '(五)'), + (0x3225, '3', '(六)'), + (0x3226, '3', '(七)'), + (0x3227, '3', '(八)'), + (0x3228, '3', '(九)'), + (0x3229, '3', '(十)'), + (0x322A, '3', '(月)'), + (0x322B, '3', '(火)'), + (0x322C, '3', '(水)'), + (0x322D, '3', '(木)'), + (0x322E, '3', '(金)'), + (0x322F, '3', '(土)'), + (0x3230, '3', '(日)'), + (0x3231, '3', '(株)'), + (0x3232, '3', '(有)'), + (0x3233, '3', '(社)'), + (0x3234, '3', '(名)'), + (0x3235, '3', '(特)'), + (0x3236, '3', '(財)'), + (0x3237, '3', '(祝)'), + (0x3238, '3', '(労)'), + (0x3239, '3', '(代)'), + (0x323A, '3', '(呼)'), + (0x323B, '3', '(学)'), + (0x323C, '3', '(監)'), + (0x323D, '3', '(企)'), + (0x323E, '3', '(資)'), + (0x323F, '3', '(協)'), + (0x3240, '3', '(祭)'), + (0x3241, '3', '(休)'), + (0x3242, '3', '(自)'), + (0x3243, '3', '(至)'), + (0x3244, 'M', '問'), + (0x3245, 'M', '幼'), + (0x3246, 'M', '文'), + (0x3247, 'M', '箏'), + (0x3248, 'V'), + (0x3250, 'M', 'pte'), + (0x3251, 'M', '21'), + ] + +def _seg_31() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3252, 'M', '22'), + (0x3253, 'M', '23'), + (0x3254, 'M', '24'), + (0x3255, 'M', '25'), + (0x3256, 'M', '26'), + (0x3257, 'M', '27'), + (0x3258, 'M', '28'), + (0x3259, 'M', '29'), + (0x325A, 'M', '30'), + (0x325B, 'M', '31'), + (0x325C, 'M', '32'), + (0x325D, 'M', '33'), + (0x325E, 'M', '34'), + (0x325F, 'M', '35'), + (0x3260, 'M', 'ᄀ'), + (0x3261, 'M', 'ᄂ'), + (0x3262, 'M', 'ᄃ'), + (0x3263, 'M', 'ᄅ'), + (0x3264, 'M', 'ᄆ'), + (0x3265, 'M', 'ᄇ'), + (0x3266, 'M', 'ᄉ'), + (0x3267, 'M', 'ᄋ'), + (0x3268, 'M', 'ᄌ'), + (0x3269, 'M', 'ᄎ'), + (0x326A, 'M', 'ᄏ'), + (0x326B, 'M', 'ᄐ'), + (0x326C, 'M', 'ᄑ'), + (0x326D, 'M', 'ᄒ'), + (0x326E, 'M', '가'), + (0x326F, 'M', '나'), + (0x3270, 'M', '다'), + (0x3271, 'M', '라'), + (0x3272, 'M', '마'), + (0x3273, 'M', '바'), + (0x3274, 'M', '사'), + (0x3275, 'M', '아'), + (0x3276, 'M', '자'), + (0x3277, 'M', '차'), + (0x3278, 'M', '카'), + (0x3279, 'M', '타'), + (0x327A, 'M', '파'), + (0x327B, 'M', '하'), + (0x327C, 'M', '참고'), + (0x327D, 'M', '주의'), + (0x327E, 'M', '우'), + (0x327F, 'V'), + (0x3280, 'M', '一'), + (0x3281, 'M', '二'), + (0x3282, 'M', '三'), + (0x3283, 'M', '四'), + (0x3284, 'M', '五'), + (0x3285, 'M', '六'), + (0x3286, 'M', '七'), + (0x3287, 'M', '八'), + (0x3288, 'M', '九'), + (0x3289, 'M', '十'), + (0x328A, 'M', '月'), + (0x328B, 'M', '火'), + (0x328C, 'M', '水'), + (0x328D, 'M', '木'), + (0x328E, 'M', '金'), + (0x328F, 'M', '土'), + (0x3290, 'M', '日'), + (0x3291, 'M', '株'), + (0x3292, 'M', '有'), + (0x3293, 'M', '社'), + (0x3294, 'M', '名'), + (0x3295, 'M', '特'), + (0x3296, 'M', '財'), + (0x3297, 'M', '祝'), + (0x3298, 'M', '労'), + (0x3299, 'M', '秘'), + (0x329A, 'M', '男'), + (0x329B, 'M', '女'), + (0x329C, 'M', '適'), + (0x329D, 'M', '優'), + (0x329E, 'M', '印'), + (0x329F, 'M', '注'), + (0x32A0, 'M', '項'), + (0x32A1, 'M', '休'), + (0x32A2, 'M', '写'), + (0x32A3, 'M', '正'), + (0x32A4, 'M', '上'), + (0x32A5, 'M', '中'), + (0x32A6, 'M', '下'), + (0x32A7, 'M', '左'), + (0x32A8, 'M', '右'), + (0x32A9, 'M', '医'), + (0x32AA, 'M', '宗'), + (0x32AB, 'M', '学'), + (0x32AC, 'M', '監'), + (0x32AD, 'M', '企'), + (0x32AE, 'M', '資'), + (0x32AF, 'M', '協'), + (0x32B0, 'M', '夜'), + (0x32B1, 'M', '36'), + (0x32B2, 'M', '37'), + (0x32B3, 'M', '38'), + (0x32B4, 'M', '39'), + (0x32B5, 'M', '40'), + ] + +def _seg_32() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x32B6, 'M', '41'), + (0x32B7, 'M', '42'), + (0x32B8, 'M', '43'), + (0x32B9, 'M', '44'), + (0x32BA, 'M', '45'), + (0x32BB, 'M', '46'), + (0x32BC, 'M', '47'), + (0x32BD, 'M', '48'), + (0x32BE, 'M', '49'), + (0x32BF, 'M', '50'), + (0x32C0, 'M', '1月'), + (0x32C1, 'M', '2月'), + (0x32C2, 'M', '3月'), + (0x32C3, 'M', '4月'), + (0x32C4, 'M', '5月'), + (0x32C5, 'M', '6月'), + (0x32C6, 'M', '7月'), + (0x32C7, 'M', '8月'), + (0x32C8, 'M', '9月'), + (0x32C9, 'M', '10月'), + (0x32CA, 'M', '11月'), + (0x32CB, 'M', '12月'), + (0x32CC, 'M', 'hg'), + (0x32CD, 'M', 'erg'), + (0x32CE, 'M', 'ev'), + (0x32CF, 'M', 'ltd'), + (0x32D0, 'M', 'ア'), + (0x32D1, 'M', 'イ'), + (0x32D2, 'M', 'ウ'), + (0x32D3, 'M', 'エ'), + (0x32D4, 'M', 'オ'), + (0x32D5, 'M', 'カ'), + (0x32D6, 'M', 'キ'), + (0x32D7, 'M', 'ク'), + (0x32D8, 'M', 'ケ'), + (0x32D9, 'M', 'コ'), + (0x32DA, 'M', 'サ'), + (0x32DB, 'M', 'シ'), + (0x32DC, 'M', 'ス'), + (0x32DD, 'M', 'セ'), + (0x32DE, 'M', 'ソ'), + (0x32DF, 'M', 'タ'), + (0x32E0, 'M', 'チ'), + (0x32E1, 'M', 'ツ'), + (0x32E2, 'M', 'テ'), + (0x32E3, 'M', 'ト'), + (0x32E4, 'M', 'ナ'), + (0x32E5, 'M', 'ニ'), + (0x32E6, 'M', 'ヌ'), + (0x32E7, 'M', 'ネ'), + (0x32E8, 'M', 'ノ'), + (0x32E9, 'M', 'ハ'), + (0x32EA, 'M', 'ヒ'), + (0x32EB, 'M', 'フ'), + (0x32EC, 'M', 'ヘ'), + (0x32ED, 'M', 'ホ'), + (0x32EE, 'M', 'マ'), + (0x32EF, 'M', 'ミ'), + (0x32F0, 'M', 'ム'), + (0x32F1, 'M', 'メ'), + (0x32F2, 'M', 'モ'), + (0x32F3, 'M', 'ヤ'), + (0x32F4, 'M', 'ユ'), + (0x32F5, 'M', 'ヨ'), + (0x32F6, 'M', 'ラ'), + (0x32F7, 'M', 'リ'), + (0x32F8, 'M', 'ル'), + (0x32F9, 'M', 'レ'), + (0x32FA, 'M', 'ロ'), + (0x32FB, 'M', 'ワ'), + (0x32FC, 'M', 'ヰ'), + (0x32FD, 'M', 'ヱ'), + (0x32FE, 'M', 'ヲ'), + (0x32FF, 'M', '令和'), + (0x3300, 'M', 'アパート'), + (0x3301, 'M', 'アルファ'), + (0x3302, 'M', 'アンペア'), + (0x3303, 'M', 'アール'), + (0x3304, 'M', 'イニング'), + (0x3305, 'M', 'インチ'), + (0x3306, 'M', 'ウォン'), + (0x3307, 'M', 'エスクード'), + (0x3308, 'M', 'エーカー'), + (0x3309, 'M', 'オンス'), + (0x330A, 'M', 'オーム'), + (0x330B, 'M', 'カイリ'), + (0x330C, 'M', 'カラット'), + (0x330D, 'M', 'カロリー'), + (0x330E, 'M', 'ガロン'), + (0x330F, 'M', 'ガンマ'), + (0x3310, 'M', 'ギガ'), + (0x3311, 'M', 'ギニー'), + (0x3312, 'M', 'キュリー'), + (0x3313, 'M', 'ギルダー'), + (0x3314, 'M', 'キロ'), + (0x3315, 'M', 'キログラム'), + (0x3316, 'M', 'キロメートル'), + (0x3317, 'M', 'キロワット'), + (0x3318, 'M', 'グラム'), + (0x3319, 'M', 'グラムトン'), + ] + +def _seg_33() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x331A, 'M', 'クルゼイロ'), + (0x331B, 'M', 'クローネ'), + (0x331C, 'M', 'ケース'), + (0x331D, 'M', 'コルナ'), + (0x331E, 'M', 'コーポ'), + (0x331F, 'M', 'サイクル'), + (0x3320, 'M', 'サンチーム'), + (0x3321, 'M', 'シリング'), + (0x3322, 'M', 'センチ'), + (0x3323, 'M', 'セント'), + (0x3324, 'M', 'ダース'), + (0x3325, 'M', 'デシ'), + (0x3326, 'M', 'ドル'), + (0x3327, 'M', 'トン'), + (0x3328, 'M', 'ナノ'), + (0x3329, 'M', 'ノット'), + (0x332A, 'M', 'ハイツ'), + (0x332B, 'M', 'パーセント'), + (0x332C, 'M', 'パーツ'), + (0x332D, 'M', 'バーレル'), + (0x332E, 'M', 'ピアストル'), + (0x332F, 'M', 'ピクル'), + (0x3330, 'M', 'ピコ'), + (0x3331, 'M', 'ビル'), + (0x3332, 'M', 'ファラッド'), + (0x3333, 'M', 'フィート'), + (0x3334, 'M', 'ブッシェル'), + (0x3335, 'M', 'フラン'), + (0x3336, 'M', 'ヘクタール'), + (0x3337, 'M', 'ペソ'), + (0x3338, 'M', 'ペニヒ'), + (0x3339, 'M', 'ヘルツ'), + (0x333A, 'M', 'ペンス'), + (0x333B, 'M', 'ページ'), + (0x333C, 'M', 'ベータ'), + (0x333D, 'M', 'ポイント'), + (0x333E, 'M', 'ボルト'), + (0x333F, 'M', 'ホン'), + (0x3340, 'M', 'ポンド'), + (0x3341, 'M', 'ホール'), + (0x3342, 'M', 'ホーン'), + (0x3343, 'M', 'マイクロ'), + (0x3344, 'M', 'マイル'), + (0x3345, 'M', 'マッハ'), + (0x3346, 'M', 'マルク'), + (0x3347, 'M', 'マンション'), + (0x3348, 'M', 'ミクロン'), + (0x3349, 'M', 'ミリ'), + (0x334A, 'M', 'ミリバール'), + (0x334B, 'M', 'メガ'), + (0x334C, 'M', 'メガトン'), + (0x334D, 'M', 'メートル'), + (0x334E, 'M', 'ヤード'), + (0x334F, 'M', 'ヤール'), + (0x3350, 'M', 'ユアン'), + (0x3351, 'M', 'リットル'), + (0x3352, 'M', 'リラ'), + (0x3353, 'M', 'ルピー'), + (0x3354, 'M', 'ルーブル'), + (0x3355, 'M', 'レム'), + (0x3356, 'M', 'レントゲン'), + (0x3357, 'M', 'ワット'), + (0x3358, 'M', '0点'), + (0x3359, 'M', '1点'), + (0x335A, 'M', '2点'), + (0x335B, 'M', '3点'), + (0x335C, 'M', '4点'), + (0x335D, 'M', '5点'), + (0x335E, 'M', '6点'), + (0x335F, 'M', '7点'), + (0x3360, 'M', '8点'), + (0x3361, 'M', '9点'), + (0x3362, 'M', '10点'), + (0x3363, 'M', '11点'), + (0x3364, 'M', '12点'), + (0x3365, 'M', '13点'), + (0x3366, 'M', '14点'), + (0x3367, 'M', '15点'), + (0x3368, 'M', '16点'), + (0x3369, 'M', '17点'), + (0x336A, 'M', '18点'), + (0x336B, 'M', '19点'), + (0x336C, 'M', '20点'), + (0x336D, 'M', '21点'), + (0x336E, 'M', '22点'), + (0x336F, 'M', '23点'), + (0x3370, 'M', '24点'), + (0x3371, 'M', 'hpa'), + (0x3372, 'M', 'da'), + (0x3373, 'M', 'au'), + (0x3374, 'M', 'bar'), + (0x3375, 'M', 'ov'), + (0x3376, 'M', 'pc'), + (0x3377, 'M', 'dm'), + (0x3378, 'M', 'dm2'), + (0x3379, 'M', 'dm3'), + (0x337A, 'M', 'iu'), + (0x337B, 'M', '平成'), + (0x337C, 'M', '昭和'), + (0x337D, 'M', '大正'), + ] + +def _seg_34() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x337E, 'M', '明治'), + (0x337F, 'M', '株式会社'), + (0x3380, 'M', 'pa'), + (0x3381, 'M', 'na'), + (0x3382, 'M', 'μa'), + (0x3383, 'M', 'ma'), + (0x3384, 'M', 'ka'), + (0x3385, 'M', 'kb'), + (0x3386, 'M', 'mb'), + (0x3387, 'M', 'gb'), + (0x3388, 'M', 'cal'), + (0x3389, 'M', 'kcal'), + (0x338A, 'M', 'pf'), + (0x338B, 'M', 'nf'), + (0x338C, 'M', 'μf'), + (0x338D, 'M', 'μg'), + (0x338E, 'M', 'mg'), + (0x338F, 'M', 'kg'), + (0x3390, 'M', 'hz'), + (0x3391, 'M', 'khz'), + (0x3392, 'M', 'mhz'), + (0x3393, 'M', 'ghz'), + (0x3394, 'M', 'thz'), + (0x3395, 'M', 'μl'), + (0x3396, 'M', 'ml'), + (0x3397, 'M', 'dl'), + (0x3398, 'M', 'kl'), + (0x3399, 'M', 'fm'), + (0x339A, 'M', 'nm'), + (0x339B, 'M', 'μm'), + (0x339C, 'M', 'mm'), + (0x339D, 'M', 'cm'), + (0x339E, 'M', 'km'), + (0x339F, 'M', 'mm2'), + (0x33A0, 'M', 'cm2'), + (0x33A1, 'M', 'm2'), + (0x33A2, 'M', 'km2'), + (0x33A3, 'M', 'mm3'), + (0x33A4, 'M', 'cm3'), + (0x33A5, 'M', 'm3'), + (0x33A6, 'M', 'km3'), + (0x33A7, 'M', 'm∕s'), + (0x33A8, 'M', 'm∕s2'), + (0x33A9, 'M', 'pa'), + (0x33AA, 'M', 'kpa'), + (0x33AB, 'M', 'mpa'), + (0x33AC, 'M', 'gpa'), + (0x33AD, 'M', 'rad'), + (0x33AE, 'M', 'rad∕s'), + (0x33AF, 'M', 'rad∕s2'), + (0x33B0, 'M', 'ps'), + (0x33B1, 'M', 'ns'), + (0x33B2, 'M', 'μs'), + (0x33B3, 'M', 'ms'), + (0x33B4, 'M', 'pv'), + (0x33B5, 'M', 'nv'), + (0x33B6, 'M', 'μv'), + (0x33B7, 'M', 'mv'), + (0x33B8, 'M', 'kv'), + (0x33B9, 'M', 'mv'), + (0x33BA, 'M', 'pw'), + (0x33BB, 'M', 'nw'), + (0x33BC, 'M', 'μw'), + (0x33BD, 'M', 'mw'), + (0x33BE, 'M', 'kw'), + (0x33BF, 'M', 'mw'), + (0x33C0, 'M', 'kω'), + (0x33C1, 'M', 'mω'), + (0x33C2, 'X'), + (0x33C3, 'M', 'bq'), + (0x33C4, 'M', 'cc'), + (0x33C5, 'M', 'cd'), + (0x33C6, 'M', 'c∕kg'), + (0x33C7, 'X'), + (0x33C8, 'M', 'db'), + (0x33C9, 'M', 'gy'), + (0x33CA, 'M', 'ha'), + (0x33CB, 'M', 'hp'), + (0x33CC, 'M', 'in'), + (0x33CD, 'M', 'kk'), + (0x33CE, 'M', 'km'), + (0x33CF, 'M', 'kt'), + (0x33D0, 'M', 'lm'), + (0x33D1, 'M', 'ln'), + (0x33D2, 'M', 'log'), + (0x33D3, 'M', 'lx'), + (0x33D4, 'M', 'mb'), + (0x33D5, 'M', 'mil'), + (0x33D6, 'M', 'mol'), + (0x33D7, 'M', 'ph'), + (0x33D8, 'X'), + (0x33D9, 'M', 'ppm'), + (0x33DA, 'M', 'pr'), + (0x33DB, 'M', 'sr'), + (0x33DC, 'M', 'sv'), + (0x33DD, 'M', 'wb'), + (0x33DE, 'M', 'v∕m'), + (0x33DF, 'M', 'a∕m'), + (0x33E0, 'M', '1日'), + (0x33E1, 'M', '2日'), + ] + +def _seg_35() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x33E2, 'M', '3日'), + (0x33E3, 'M', '4日'), + (0x33E4, 'M', '5日'), + (0x33E5, 'M', '6日'), + (0x33E6, 'M', '7日'), + (0x33E7, 'M', '8日'), + (0x33E8, 'M', '9日'), + (0x33E9, 'M', '10日'), + (0x33EA, 'M', '11日'), + (0x33EB, 'M', '12日'), + (0x33EC, 'M', '13日'), + (0x33ED, 'M', '14日'), + (0x33EE, 'M', '15日'), + (0x33EF, 'M', '16日'), + (0x33F0, 'M', '17日'), + (0x33F1, 'M', '18日'), + (0x33F2, 'M', '19日'), + (0x33F3, 'M', '20日'), + (0x33F4, 'M', '21日'), + (0x33F5, 'M', '22日'), + (0x33F6, 'M', '23日'), + (0x33F7, 'M', '24日'), + (0x33F8, 'M', '25日'), + (0x33F9, 'M', '26日'), + (0x33FA, 'M', '27日'), + (0x33FB, 'M', '28日'), + (0x33FC, 'M', '29日'), + (0x33FD, 'M', '30日'), + (0x33FE, 'M', '31日'), + (0x33FF, 'M', 'gal'), + (0x3400, 'V'), + (0xA48D, 'X'), + (0xA490, 'V'), + (0xA4C7, 'X'), + (0xA4D0, 'V'), + (0xA62C, 'X'), + (0xA640, 'M', 'ꙁ'), + (0xA641, 'V'), + (0xA642, 'M', 'ꙃ'), + (0xA643, 'V'), + (0xA644, 'M', 'ꙅ'), + (0xA645, 'V'), + (0xA646, 'M', 'ꙇ'), + (0xA647, 'V'), + (0xA648, 'M', 'ꙉ'), + (0xA649, 'V'), + (0xA64A, 'M', 'ꙋ'), + (0xA64B, 'V'), + (0xA64C, 'M', 'ꙍ'), + (0xA64D, 'V'), + (0xA64E, 'M', 'ꙏ'), + (0xA64F, 'V'), + (0xA650, 'M', 'ꙑ'), + (0xA651, 'V'), + (0xA652, 'M', 'ꙓ'), + (0xA653, 'V'), + (0xA654, 'M', 'ꙕ'), + (0xA655, 'V'), + (0xA656, 'M', 'ꙗ'), + (0xA657, 'V'), + (0xA658, 'M', 'ꙙ'), + (0xA659, 'V'), + (0xA65A, 'M', 'ꙛ'), + (0xA65B, 'V'), + (0xA65C, 'M', 'ꙝ'), + (0xA65D, 'V'), + (0xA65E, 'M', 'ꙟ'), + (0xA65F, 'V'), + (0xA660, 'M', 'ꙡ'), + (0xA661, 'V'), + (0xA662, 'M', 'ꙣ'), + (0xA663, 'V'), + (0xA664, 'M', 'ꙥ'), + (0xA665, 'V'), + (0xA666, 'M', 'ꙧ'), + (0xA667, 'V'), + (0xA668, 'M', 'ꙩ'), + (0xA669, 'V'), + (0xA66A, 'M', 'ꙫ'), + (0xA66B, 'V'), + (0xA66C, 'M', 'ꙭ'), + (0xA66D, 'V'), + (0xA680, 'M', 'ꚁ'), + (0xA681, 'V'), + (0xA682, 'M', 'ꚃ'), + (0xA683, 'V'), + (0xA684, 'M', 'ꚅ'), + (0xA685, 'V'), + (0xA686, 'M', 'ꚇ'), + (0xA687, 'V'), + (0xA688, 'M', 'ꚉ'), + (0xA689, 'V'), + (0xA68A, 'M', 'ꚋ'), + (0xA68B, 'V'), + (0xA68C, 'M', 'ꚍ'), + (0xA68D, 'V'), + (0xA68E, 'M', 'ꚏ'), + (0xA68F, 'V'), + (0xA690, 'M', 'ꚑ'), + (0xA691, 'V'), + ] + +def _seg_36() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA692, 'M', 'ꚓ'), + (0xA693, 'V'), + (0xA694, 'M', 'ꚕ'), + (0xA695, 'V'), + (0xA696, 'M', 'ꚗ'), + (0xA697, 'V'), + (0xA698, 'M', 'ꚙ'), + (0xA699, 'V'), + (0xA69A, 'M', 'ꚛ'), + (0xA69B, 'V'), + (0xA69C, 'M', 'ъ'), + (0xA69D, 'M', 'ь'), + (0xA69E, 'V'), + (0xA6F8, 'X'), + (0xA700, 'V'), + (0xA722, 'M', 'ꜣ'), + (0xA723, 'V'), + (0xA724, 'M', 'ꜥ'), + (0xA725, 'V'), + (0xA726, 'M', 'ꜧ'), + (0xA727, 'V'), + (0xA728, 'M', 'ꜩ'), + (0xA729, 'V'), + (0xA72A, 'M', 'ꜫ'), + (0xA72B, 'V'), + (0xA72C, 'M', 'ꜭ'), + (0xA72D, 'V'), + (0xA72E, 'M', 'ꜯ'), + (0xA72F, 'V'), + (0xA732, 'M', 'ꜳ'), + (0xA733, 'V'), + (0xA734, 'M', 'ꜵ'), + (0xA735, 'V'), + (0xA736, 'M', 'ꜷ'), + (0xA737, 'V'), + (0xA738, 'M', 'ꜹ'), + (0xA739, 'V'), + (0xA73A, 'M', 'ꜻ'), + (0xA73B, 'V'), + (0xA73C, 'M', 'ꜽ'), + (0xA73D, 'V'), + (0xA73E, 'M', 'ꜿ'), + (0xA73F, 'V'), + (0xA740, 'M', 'ꝁ'), + (0xA741, 'V'), + (0xA742, 'M', 'ꝃ'), + (0xA743, 'V'), + (0xA744, 'M', 'ꝅ'), + (0xA745, 'V'), + (0xA746, 'M', 'ꝇ'), + (0xA747, 'V'), + (0xA748, 'M', 'ꝉ'), + (0xA749, 'V'), + (0xA74A, 'M', 'ꝋ'), + (0xA74B, 'V'), + (0xA74C, 'M', 'ꝍ'), + (0xA74D, 'V'), + (0xA74E, 'M', 'ꝏ'), + (0xA74F, 'V'), + (0xA750, 'M', 'ꝑ'), + (0xA751, 'V'), + (0xA752, 'M', 'ꝓ'), + (0xA753, 'V'), + (0xA754, 'M', 'ꝕ'), + (0xA755, 'V'), + (0xA756, 'M', 'ꝗ'), + (0xA757, 'V'), + (0xA758, 'M', 'ꝙ'), + (0xA759, 'V'), + (0xA75A, 'M', 'ꝛ'), + (0xA75B, 'V'), + (0xA75C, 'M', 'ꝝ'), + (0xA75D, 'V'), + (0xA75E, 'M', 'ꝟ'), + (0xA75F, 'V'), + (0xA760, 'M', 'ꝡ'), + (0xA761, 'V'), + (0xA762, 'M', 'ꝣ'), + (0xA763, 'V'), + (0xA764, 'M', 'ꝥ'), + (0xA765, 'V'), + (0xA766, 'M', 'ꝧ'), + (0xA767, 'V'), + (0xA768, 'M', 'ꝩ'), + (0xA769, 'V'), + (0xA76A, 'M', 'ꝫ'), + (0xA76B, 'V'), + (0xA76C, 'M', 'ꝭ'), + (0xA76D, 'V'), + (0xA76E, 'M', 'ꝯ'), + (0xA76F, 'V'), + (0xA770, 'M', 'ꝯ'), + (0xA771, 'V'), + (0xA779, 'M', 'ꝺ'), + (0xA77A, 'V'), + (0xA77B, 'M', 'ꝼ'), + (0xA77C, 'V'), + (0xA77D, 'M', 'ᵹ'), + (0xA77E, 'M', 'ꝿ'), + (0xA77F, 'V'), + ] + +def _seg_37() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA780, 'M', 'ꞁ'), + (0xA781, 'V'), + (0xA782, 'M', 'ꞃ'), + (0xA783, 'V'), + (0xA784, 'M', 'ꞅ'), + (0xA785, 'V'), + (0xA786, 'M', 'ꞇ'), + (0xA787, 'V'), + (0xA78B, 'M', 'ꞌ'), + (0xA78C, 'V'), + (0xA78D, 'M', 'ɥ'), + (0xA78E, 'V'), + (0xA790, 'M', 'ꞑ'), + (0xA791, 'V'), + (0xA792, 'M', 'ꞓ'), + (0xA793, 'V'), + (0xA796, 'M', 'ꞗ'), + (0xA797, 'V'), + (0xA798, 'M', 'ꞙ'), + (0xA799, 'V'), + (0xA79A, 'M', 'ꞛ'), + (0xA79B, 'V'), + (0xA79C, 'M', 'ꞝ'), + (0xA79D, 'V'), + (0xA79E, 'M', 'ꞟ'), + (0xA79F, 'V'), + (0xA7A0, 'M', 'ꞡ'), + (0xA7A1, 'V'), + (0xA7A2, 'M', 'ꞣ'), + (0xA7A3, 'V'), + (0xA7A4, 'M', 'ꞥ'), + (0xA7A5, 'V'), + (0xA7A6, 'M', 'ꞧ'), + (0xA7A7, 'V'), + (0xA7A8, 'M', 'ꞩ'), + (0xA7A9, 'V'), + (0xA7AA, 'M', 'ɦ'), + (0xA7AB, 'M', 'ɜ'), + (0xA7AC, 'M', 'ɡ'), + (0xA7AD, 'M', 'ɬ'), + (0xA7AE, 'M', 'ɪ'), + (0xA7AF, 'V'), + (0xA7B0, 'M', 'ʞ'), + (0xA7B1, 'M', 'ʇ'), + (0xA7B2, 'M', 'ʝ'), + (0xA7B3, 'M', 'ꭓ'), + (0xA7B4, 'M', 'ꞵ'), + (0xA7B5, 'V'), + (0xA7B6, 'M', 'ꞷ'), + (0xA7B7, 'V'), + (0xA7B8, 'M', 'ꞹ'), + (0xA7B9, 'V'), + (0xA7BA, 'M', 'ꞻ'), + (0xA7BB, 'V'), + (0xA7BC, 'M', 'ꞽ'), + (0xA7BD, 'V'), + (0xA7BE, 'M', 'ꞿ'), + (0xA7BF, 'V'), + (0xA7C0, 'M', 'ꟁ'), + (0xA7C1, 'V'), + (0xA7C2, 'M', 'ꟃ'), + (0xA7C3, 'V'), + (0xA7C4, 'M', 'ꞔ'), + (0xA7C5, 'M', 'ʂ'), + (0xA7C6, 'M', 'ᶎ'), + (0xA7C7, 'M', 'ꟈ'), + (0xA7C8, 'V'), + (0xA7C9, 'M', 'ꟊ'), + (0xA7CA, 'V'), + (0xA7CB, 'X'), + (0xA7D0, 'M', 'ꟑ'), + (0xA7D1, 'V'), + (0xA7D2, 'X'), + (0xA7D3, 'V'), + (0xA7D4, 'X'), + (0xA7D5, 'V'), + (0xA7D6, 'M', 'ꟗ'), + (0xA7D7, 'V'), + (0xA7D8, 'M', 'ꟙ'), + (0xA7D9, 'V'), + (0xA7DA, 'X'), + (0xA7F2, 'M', 'c'), + (0xA7F3, 'M', 'f'), + (0xA7F4, 'M', 'q'), + (0xA7F5, 'M', 'ꟶ'), + (0xA7F6, 'V'), + (0xA7F8, 'M', 'ħ'), + (0xA7F9, 'M', 'œ'), + (0xA7FA, 'V'), + (0xA82D, 'X'), + (0xA830, 'V'), + (0xA83A, 'X'), + (0xA840, 'V'), + (0xA878, 'X'), + (0xA880, 'V'), + (0xA8C6, 'X'), + (0xA8CE, 'V'), + (0xA8DA, 'X'), + (0xA8E0, 'V'), + (0xA954, 'X'), + ] + +def _seg_38() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA95F, 'V'), + (0xA97D, 'X'), + (0xA980, 'V'), + (0xA9CE, 'X'), + (0xA9CF, 'V'), + (0xA9DA, 'X'), + (0xA9DE, 'V'), + (0xA9FF, 'X'), + (0xAA00, 'V'), + (0xAA37, 'X'), + (0xAA40, 'V'), + (0xAA4E, 'X'), + (0xAA50, 'V'), + (0xAA5A, 'X'), + (0xAA5C, 'V'), + (0xAAC3, 'X'), + (0xAADB, 'V'), + (0xAAF7, 'X'), + (0xAB01, 'V'), + (0xAB07, 'X'), + (0xAB09, 'V'), + (0xAB0F, 'X'), + (0xAB11, 'V'), + (0xAB17, 'X'), + (0xAB20, 'V'), + (0xAB27, 'X'), + (0xAB28, 'V'), + (0xAB2F, 'X'), + (0xAB30, 'V'), + (0xAB5C, 'M', 'ꜧ'), + (0xAB5D, 'M', 'ꬷ'), + (0xAB5E, 'M', 'ɫ'), + (0xAB5F, 'M', 'ꭒ'), + (0xAB60, 'V'), + (0xAB69, 'M', 'ʍ'), + (0xAB6A, 'V'), + (0xAB6C, 'X'), + (0xAB70, 'M', 'Ꭰ'), + (0xAB71, 'M', 'Ꭱ'), + (0xAB72, 'M', 'Ꭲ'), + (0xAB73, 'M', 'Ꭳ'), + (0xAB74, 'M', 'Ꭴ'), + (0xAB75, 'M', 'Ꭵ'), + (0xAB76, 'M', 'Ꭶ'), + (0xAB77, 'M', 'Ꭷ'), + (0xAB78, 'M', 'Ꭸ'), + (0xAB79, 'M', 'Ꭹ'), + (0xAB7A, 'M', 'Ꭺ'), + (0xAB7B, 'M', 'Ꭻ'), + (0xAB7C, 'M', 'Ꭼ'), + (0xAB7D, 'M', 'Ꭽ'), + (0xAB7E, 'M', 'Ꭾ'), + (0xAB7F, 'M', 'Ꭿ'), + (0xAB80, 'M', 'Ꮀ'), + (0xAB81, 'M', 'Ꮁ'), + (0xAB82, 'M', 'Ꮂ'), + (0xAB83, 'M', 'Ꮃ'), + (0xAB84, 'M', 'Ꮄ'), + (0xAB85, 'M', 'Ꮅ'), + (0xAB86, 'M', 'Ꮆ'), + (0xAB87, 'M', 'Ꮇ'), + (0xAB88, 'M', 'Ꮈ'), + (0xAB89, 'M', 'Ꮉ'), + (0xAB8A, 'M', 'Ꮊ'), + (0xAB8B, 'M', 'Ꮋ'), + (0xAB8C, 'M', 'Ꮌ'), + (0xAB8D, 'M', 'Ꮍ'), + (0xAB8E, 'M', 'Ꮎ'), + (0xAB8F, 'M', 'Ꮏ'), + (0xAB90, 'M', 'Ꮐ'), + (0xAB91, 'M', 'Ꮑ'), + (0xAB92, 'M', 'Ꮒ'), + (0xAB93, 'M', 'Ꮓ'), + (0xAB94, 'M', 'Ꮔ'), + (0xAB95, 'M', 'Ꮕ'), + (0xAB96, 'M', 'Ꮖ'), + (0xAB97, 'M', 'Ꮗ'), + (0xAB98, 'M', 'Ꮘ'), + (0xAB99, 'M', 'Ꮙ'), + (0xAB9A, 'M', 'Ꮚ'), + (0xAB9B, 'M', 'Ꮛ'), + (0xAB9C, 'M', 'Ꮜ'), + (0xAB9D, 'M', 'Ꮝ'), + (0xAB9E, 'M', 'Ꮞ'), + (0xAB9F, 'M', 'Ꮟ'), + (0xABA0, 'M', 'Ꮠ'), + (0xABA1, 'M', 'Ꮡ'), + (0xABA2, 'M', 'Ꮢ'), + (0xABA3, 'M', 'Ꮣ'), + (0xABA4, 'M', 'Ꮤ'), + (0xABA5, 'M', 'Ꮥ'), + (0xABA6, 'M', 'Ꮦ'), + (0xABA7, 'M', 'Ꮧ'), + (0xABA8, 'M', 'Ꮨ'), + (0xABA9, 'M', 'Ꮩ'), + (0xABAA, 'M', 'Ꮪ'), + (0xABAB, 'M', 'Ꮫ'), + (0xABAC, 'M', 'Ꮬ'), + (0xABAD, 'M', 'Ꮭ'), + (0xABAE, 'M', 'Ꮮ'), + ] + +def _seg_39() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xABAF, 'M', 'Ꮯ'), + (0xABB0, 'M', 'Ꮰ'), + (0xABB1, 'M', 'Ꮱ'), + (0xABB2, 'M', 'Ꮲ'), + (0xABB3, 'M', 'Ꮳ'), + (0xABB4, 'M', 'Ꮴ'), + (0xABB5, 'M', 'Ꮵ'), + (0xABB6, 'M', 'Ꮶ'), + (0xABB7, 'M', 'Ꮷ'), + (0xABB8, 'M', 'Ꮸ'), + (0xABB9, 'M', 'Ꮹ'), + (0xABBA, 'M', 'Ꮺ'), + (0xABBB, 'M', 'Ꮻ'), + (0xABBC, 'M', 'Ꮼ'), + (0xABBD, 'M', 'Ꮽ'), + (0xABBE, 'M', 'Ꮾ'), + (0xABBF, 'M', 'Ꮿ'), + (0xABC0, 'V'), + (0xABEE, 'X'), + (0xABF0, 'V'), + (0xABFA, 'X'), + (0xAC00, 'V'), + (0xD7A4, 'X'), + (0xD7B0, 'V'), + (0xD7C7, 'X'), + (0xD7CB, 'V'), + (0xD7FC, 'X'), + (0xF900, 'M', '豈'), + (0xF901, 'M', '更'), + (0xF902, 'M', '車'), + (0xF903, 'M', '賈'), + (0xF904, 'M', '滑'), + (0xF905, 'M', '串'), + (0xF906, 'M', '句'), + (0xF907, 'M', '龜'), + (0xF909, 'M', '契'), + (0xF90A, 'M', '金'), + (0xF90B, 'M', '喇'), + (0xF90C, 'M', '奈'), + (0xF90D, 'M', '懶'), + (0xF90E, 'M', '癩'), + (0xF90F, 'M', '羅'), + (0xF910, 'M', '蘿'), + (0xF911, 'M', '螺'), + (0xF912, 'M', '裸'), + (0xF913, 'M', '邏'), + (0xF914, 'M', '樂'), + (0xF915, 'M', '洛'), + (0xF916, 'M', '烙'), + (0xF917, 'M', '珞'), + (0xF918, 'M', '落'), + (0xF919, 'M', '酪'), + (0xF91A, 'M', '駱'), + (0xF91B, 'M', '亂'), + (0xF91C, 'M', '卵'), + (0xF91D, 'M', '欄'), + (0xF91E, 'M', '爛'), + (0xF91F, 'M', '蘭'), + (0xF920, 'M', '鸞'), + (0xF921, 'M', '嵐'), + (0xF922, 'M', '濫'), + (0xF923, 'M', '藍'), + (0xF924, 'M', '襤'), + (0xF925, 'M', '拉'), + (0xF926, 'M', '臘'), + (0xF927, 'M', '蠟'), + (0xF928, 'M', '廊'), + (0xF929, 'M', '朗'), + (0xF92A, 'M', '浪'), + (0xF92B, 'M', '狼'), + (0xF92C, 'M', '郎'), + (0xF92D, 'M', '來'), + (0xF92E, 'M', '冷'), + (0xF92F, 'M', '勞'), + (0xF930, 'M', '擄'), + (0xF931, 'M', '櫓'), + (0xF932, 'M', '爐'), + (0xF933, 'M', '盧'), + (0xF934, 'M', '老'), + (0xF935, 'M', '蘆'), + (0xF936, 'M', '虜'), + (0xF937, 'M', '路'), + (0xF938, 'M', '露'), + (0xF939, 'M', '魯'), + (0xF93A, 'M', '鷺'), + (0xF93B, 'M', '碌'), + (0xF93C, 'M', '祿'), + (0xF93D, 'M', '綠'), + (0xF93E, 'M', '菉'), + (0xF93F, 'M', '錄'), + (0xF940, 'M', '鹿'), + (0xF941, 'M', '論'), + (0xF942, 'M', '壟'), + (0xF943, 'M', '弄'), + (0xF944, 'M', '籠'), + (0xF945, 'M', '聾'), + (0xF946, 'M', '牢'), + (0xF947, 'M', '磊'), + (0xF948, 'M', '賂'), + (0xF949, 'M', '雷'), + ] + +def _seg_40() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF94A, 'M', '壘'), + (0xF94B, 'M', '屢'), + (0xF94C, 'M', '樓'), + (0xF94D, 'M', '淚'), + (0xF94E, 'M', '漏'), + (0xF94F, 'M', '累'), + (0xF950, 'M', '縷'), + (0xF951, 'M', '陋'), + (0xF952, 'M', '勒'), + (0xF953, 'M', '肋'), + (0xF954, 'M', '凜'), + (0xF955, 'M', '凌'), + (0xF956, 'M', '稜'), + (0xF957, 'M', '綾'), + (0xF958, 'M', '菱'), + (0xF959, 'M', '陵'), + (0xF95A, 'M', '讀'), + (0xF95B, 'M', '拏'), + (0xF95C, 'M', '樂'), + (0xF95D, 'M', '諾'), + (0xF95E, 'M', '丹'), + (0xF95F, 'M', '寧'), + (0xF960, 'M', '怒'), + (0xF961, 'M', '率'), + (0xF962, 'M', '異'), + (0xF963, 'M', '北'), + (0xF964, 'M', '磻'), + (0xF965, 'M', '便'), + (0xF966, 'M', '復'), + (0xF967, 'M', '不'), + (0xF968, 'M', '泌'), + (0xF969, 'M', '數'), + (0xF96A, 'M', '索'), + (0xF96B, 'M', '參'), + (0xF96C, 'M', '塞'), + (0xF96D, 'M', '省'), + (0xF96E, 'M', '葉'), + (0xF96F, 'M', '說'), + (0xF970, 'M', '殺'), + (0xF971, 'M', '辰'), + (0xF972, 'M', '沈'), + (0xF973, 'M', '拾'), + (0xF974, 'M', '若'), + (0xF975, 'M', '掠'), + (0xF976, 'M', '略'), + (0xF977, 'M', '亮'), + (0xF978, 'M', '兩'), + (0xF979, 'M', '凉'), + (0xF97A, 'M', '梁'), + (0xF97B, 'M', '糧'), + (0xF97C, 'M', '良'), + (0xF97D, 'M', '諒'), + (0xF97E, 'M', '量'), + (0xF97F, 'M', '勵'), + (0xF980, 'M', '呂'), + (0xF981, 'M', '女'), + (0xF982, 'M', '廬'), + (0xF983, 'M', '旅'), + (0xF984, 'M', '濾'), + (0xF985, 'M', '礪'), + (0xF986, 'M', '閭'), + (0xF987, 'M', '驪'), + (0xF988, 'M', '麗'), + (0xF989, 'M', '黎'), + (0xF98A, 'M', '力'), + (0xF98B, 'M', '曆'), + (0xF98C, 'M', '歷'), + (0xF98D, 'M', '轢'), + (0xF98E, 'M', '年'), + (0xF98F, 'M', '憐'), + (0xF990, 'M', '戀'), + (0xF991, 'M', '撚'), + (0xF992, 'M', '漣'), + (0xF993, 'M', '煉'), + (0xF994, 'M', '璉'), + (0xF995, 'M', '秊'), + (0xF996, 'M', '練'), + (0xF997, 'M', '聯'), + (0xF998, 'M', '輦'), + (0xF999, 'M', '蓮'), + (0xF99A, 'M', '連'), + (0xF99B, 'M', '鍊'), + (0xF99C, 'M', '列'), + (0xF99D, 'M', '劣'), + (0xF99E, 'M', '咽'), + (0xF99F, 'M', '烈'), + (0xF9A0, 'M', '裂'), + (0xF9A1, 'M', '說'), + (0xF9A2, 'M', '廉'), + (0xF9A3, 'M', '念'), + (0xF9A4, 'M', '捻'), + (0xF9A5, 'M', '殮'), + (0xF9A6, 'M', '簾'), + (0xF9A7, 'M', '獵'), + (0xF9A8, 'M', '令'), + (0xF9A9, 'M', '囹'), + (0xF9AA, 'M', '寧'), + (0xF9AB, 'M', '嶺'), + (0xF9AC, 'M', '怜'), + (0xF9AD, 'M', '玲'), + ] + +def _seg_41() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF9AE, 'M', '瑩'), + (0xF9AF, 'M', '羚'), + (0xF9B0, 'M', '聆'), + (0xF9B1, 'M', '鈴'), + (0xF9B2, 'M', '零'), + (0xF9B3, 'M', '靈'), + (0xF9B4, 'M', '領'), + (0xF9B5, 'M', '例'), + (0xF9B6, 'M', '禮'), + (0xF9B7, 'M', '醴'), + (0xF9B8, 'M', '隸'), + (0xF9B9, 'M', '惡'), + (0xF9BA, 'M', '了'), + (0xF9BB, 'M', '僚'), + (0xF9BC, 'M', '寮'), + (0xF9BD, 'M', '尿'), + (0xF9BE, 'M', '料'), + (0xF9BF, 'M', '樂'), + (0xF9C0, 'M', '燎'), + (0xF9C1, 'M', '療'), + (0xF9C2, 'M', '蓼'), + (0xF9C3, 'M', '遼'), + (0xF9C4, 'M', '龍'), + (0xF9C5, 'M', '暈'), + (0xF9C6, 'M', '阮'), + (0xF9C7, 'M', '劉'), + (0xF9C8, 'M', '杻'), + (0xF9C9, 'M', '柳'), + (0xF9CA, 'M', '流'), + (0xF9CB, 'M', '溜'), + (0xF9CC, 'M', '琉'), + (0xF9CD, 'M', '留'), + (0xF9CE, 'M', '硫'), + (0xF9CF, 'M', '紐'), + (0xF9D0, 'M', '類'), + (0xF9D1, 'M', '六'), + (0xF9D2, 'M', '戮'), + (0xF9D3, 'M', '陸'), + (0xF9D4, 'M', '倫'), + (0xF9D5, 'M', '崙'), + (0xF9D6, 'M', '淪'), + (0xF9D7, 'M', '輪'), + (0xF9D8, 'M', '律'), + (0xF9D9, 'M', '慄'), + (0xF9DA, 'M', '栗'), + (0xF9DB, 'M', '率'), + (0xF9DC, 'M', '隆'), + (0xF9DD, 'M', '利'), + (0xF9DE, 'M', '吏'), + (0xF9DF, 'M', '履'), + (0xF9E0, 'M', '易'), + (0xF9E1, 'M', '李'), + (0xF9E2, 'M', '梨'), + (0xF9E3, 'M', '泥'), + (0xF9E4, 'M', '理'), + (0xF9E5, 'M', '痢'), + (0xF9E6, 'M', '罹'), + (0xF9E7, 'M', '裏'), + (0xF9E8, 'M', '裡'), + (0xF9E9, 'M', '里'), + (0xF9EA, 'M', '離'), + (0xF9EB, 'M', '匿'), + (0xF9EC, 'M', '溺'), + (0xF9ED, 'M', '吝'), + (0xF9EE, 'M', '燐'), + (0xF9EF, 'M', '璘'), + (0xF9F0, 'M', '藺'), + (0xF9F1, 'M', '隣'), + (0xF9F2, 'M', '鱗'), + (0xF9F3, 'M', '麟'), + (0xF9F4, 'M', '林'), + (0xF9F5, 'M', '淋'), + (0xF9F6, 'M', '臨'), + (0xF9F7, 'M', '立'), + (0xF9F8, 'M', '笠'), + (0xF9F9, 'M', '粒'), + (0xF9FA, 'M', '狀'), + (0xF9FB, 'M', '炙'), + (0xF9FC, 'M', '識'), + (0xF9FD, 'M', '什'), + (0xF9FE, 'M', '茶'), + (0xF9FF, 'M', '刺'), + (0xFA00, 'M', '切'), + (0xFA01, 'M', '度'), + (0xFA02, 'M', '拓'), + (0xFA03, 'M', '糖'), + (0xFA04, 'M', '宅'), + (0xFA05, 'M', '洞'), + (0xFA06, 'M', '暴'), + (0xFA07, 'M', '輻'), + (0xFA08, 'M', '行'), + (0xFA09, 'M', '降'), + (0xFA0A, 'M', '見'), + (0xFA0B, 'M', '廓'), + (0xFA0C, 'M', '兀'), + (0xFA0D, 'M', '嗀'), + (0xFA0E, 'V'), + (0xFA10, 'M', '塚'), + (0xFA11, 'V'), + (0xFA12, 'M', '晴'), + ] + +def _seg_42() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA13, 'V'), + (0xFA15, 'M', '凞'), + (0xFA16, 'M', '猪'), + (0xFA17, 'M', '益'), + (0xFA18, 'M', '礼'), + (0xFA19, 'M', '神'), + (0xFA1A, 'M', '祥'), + (0xFA1B, 'M', '福'), + (0xFA1C, 'M', '靖'), + (0xFA1D, 'M', '精'), + (0xFA1E, 'M', '羽'), + (0xFA1F, 'V'), + (0xFA20, 'M', '蘒'), + (0xFA21, 'V'), + (0xFA22, 'M', '諸'), + (0xFA23, 'V'), + (0xFA25, 'M', '逸'), + (0xFA26, 'M', '都'), + (0xFA27, 'V'), + (0xFA2A, 'M', '飯'), + (0xFA2B, 'M', '飼'), + (0xFA2C, 'M', '館'), + (0xFA2D, 'M', '鶴'), + (0xFA2E, 'M', '郞'), + (0xFA2F, 'M', '隷'), + (0xFA30, 'M', '侮'), + (0xFA31, 'M', '僧'), + (0xFA32, 'M', '免'), + (0xFA33, 'M', '勉'), + (0xFA34, 'M', '勤'), + (0xFA35, 'M', '卑'), + (0xFA36, 'M', '喝'), + (0xFA37, 'M', '嘆'), + (0xFA38, 'M', '器'), + (0xFA39, 'M', '塀'), + (0xFA3A, 'M', '墨'), + (0xFA3B, 'M', '層'), + (0xFA3C, 'M', '屮'), + (0xFA3D, 'M', '悔'), + (0xFA3E, 'M', '慨'), + (0xFA3F, 'M', '憎'), + (0xFA40, 'M', '懲'), + (0xFA41, 'M', '敏'), + (0xFA42, 'M', '既'), + (0xFA43, 'M', '暑'), + (0xFA44, 'M', '梅'), + (0xFA45, 'M', '海'), + (0xFA46, 'M', '渚'), + (0xFA47, 'M', '漢'), + (0xFA48, 'M', '煮'), + (0xFA49, 'M', '爫'), + (0xFA4A, 'M', '琢'), + (0xFA4B, 'M', '碑'), + (0xFA4C, 'M', '社'), + (0xFA4D, 'M', '祉'), + (0xFA4E, 'M', '祈'), + (0xFA4F, 'M', '祐'), + (0xFA50, 'M', '祖'), + (0xFA51, 'M', '祝'), + (0xFA52, 'M', '禍'), + (0xFA53, 'M', '禎'), + (0xFA54, 'M', '穀'), + (0xFA55, 'M', '突'), + (0xFA56, 'M', '節'), + (0xFA57, 'M', '練'), + (0xFA58, 'M', '縉'), + (0xFA59, 'M', '繁'), + (0xFA5A, 'M', '署'), + (0xFA5B, 'M', '者'), + (0xFA5C, 'M', '臭'), + (0xFA5D, 'M', '艹'), + (0xFA5F, 'M', '著'), + (0xFA60, 'M', '褐'), + (0xFA61, 'M', '視'), + (0xFA62, 'M', '謁'), + (0xFA63, 'M', '謹'), + (0xFA64, 'M', '賓'), + (0xFA65, 'M', '贈'), + (0xFA66, 'M', '辶'), + (0xFA67, 'M', '逸'), + (0xFA68, 'M', '難'), + (0xFA69, 'M', '響'), + (0xFA6A, 'M', '頻'), + (0xFA6B, 'M', '恵'), + (0xFA6C, 'M', '𤋮'), + (0xFA6D, 'M', '舘'), + (0xFA6E, 'X'), + (0xFA70, 'M', '並'), + (0xFA71, 'M', '况'), + (0xFA72, 'M', '全'), + (0xFA73, 'M', '侀'), + (0xFA74, 'M', '充'), + (0xFA75, 'M', '冀'), + (0xFA76, 'M', '勇'), + (0xFA77, 'M', '勺'), + (0xFA78, 'M', '喝'), + (0xFA79, 'M', '啕'), + (0xFA7A, 'M', '喙'), + (0xFA7B, 'M', '嗢'), + (0xFA7C, 'M', '塚'), + ] + +def _seg_43() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA7D, 'M', '墳'), + (0xFA7E, 'M', '奄'), + (0xFA7F, 'M', '奔'), + (0xFA80, 'M', '婢'), + (0xFA81, 'M', '嬨'), + (0xFA82, 'M', '廒'), + (0xFA83, 'M', '廙'), + (0xFA84, 'M', '彩'), + (0xFA85, 'M', '徭'), + (0xFA86, 'M', '惘'), + (0xFA87, 'M', '慎'), + (0xFA88, 'M', '愈'), + (0xFA89, 'M', '憎'), + (0xFA8A, 'M', '慠'), + (0xFA8B, 'M', '懲'), + (0xFA8C, 'M', '戴'), + (0xFA8D, 'M', '揄'), + (0xFA8E, 'M', '搜'), + (0xFA8F, 'M', '摒'), + (0xFA90, 'M', '敖'), + (0xFA91, 'M', '晴'), + (0xFA92, 'M', '朗'), + (0xFA93, 'M', '望'), + (0xFA94, 'M', '杖'), + (0xFA95, 'M', '歹'), + (0xFA96, 'M', '殺'), + (0xFA97, 'M', '流'), + (0xFA98, 'M', '滛'), + (0xFA99, 'M', '滋'), + (0xFA9A, 'M', '漢'), + (0xFA9B, 'M', '瀞'), + (0xFA9C, 'M', '煮'), + (0xFA9D, 'M', '瞧'), + (0xFA9E, 'M', '爵'), + (0xFA9F, 'M', '犯'), + (0xFAA0, 'M', '猪'), + (0xFAA1, 'M', '瑱'), + (0xFAA2, 'M', '甆'), + (0xFAA3, 'M', '画'), + (0xFAA4, 'M', '瘝'), + (0xFAA5, 'M', '瘟'), + (0xFAA6, 'M', '益'), + (0xFAA7, 'M', '盛'), + (0xFAA8, 'M', '直'), + (0xFAA9, 'M', '睊'), + (0xFAAA, 'M', '着'), + (0xFAAB, 'M', '磌'), + (0xFAAC, 'M', '窱'), + (0xFAAD, 'M', '節'), + (0xFAAE, 'M', '类'), + (0xFAAF, 'M', '絛'), + (0xFAB0, 'M', '練'), + (0xFAB1, 'M', '缾'), + (0xFAB2, 'M', '者'), + (0xFAB3, 'M', '荒'), + (0xFAB4, 'M', '華'), + (0xFAB5, 'M', '蝹'), + (0xFAB6, 'M', '襁'), + (0xFAB7, 'M', '覆'), + (0xFAB8, 'M', '視'), + (0xFAB9, 'M', '調'), + (0xFABA, 'M', '諸'), + (0xFABB, 'M', '請'), + (0xFABC, 'M', '謁'), + (0xFABD, 'M', '諾'), + (0xFABE, 'M', '諭'), + (0xFABF, 'M', '謹'), + (0xFAC0, 'M', '變'), + (0xFAC1, 'M', '贈'), + (0xFAC2, 'M', '輸'), + (0xFAC3, 'M', '遲'), + (0xFAC4, 'M', '醙'), + (0xFAC5, 'M', '鉶'), + (0xFAC6, 'M', '陼'), + (0xFAC7, 'M', '難'), + (0xFAC8, 'M', '靖'), + (0xFAC9, 'M', '韛'), + (0xFACA, 'M', '響'), + (0xFACB, 'M', '頋'), + (0xFACC, 'M', '頻'), + (0xFACD, 'M', '鬒'), + (0xFACE, 'M', '龜'), + (0xFACF, 'M', '𢡊'), + (0xFAD0, 'M', '𢡄'), + (0xFAD1, 'M', '𣏕'), + (0xFAD2, 'M', '㮝'), + (0xFAD3, 'M', '䀘'), + (0xFAD4, 'M', '䀹'), + (0xFAD5, 'M', '𥉉'), + (0xFAD6, 'M', '𥳐'), + (0xFAD7, 'M', '𧻓'), + (0xFAD8, 'M', '齃'), + (0xFAD9, 'M', '龎'), + (0xFADA, 'X'), + (0xFB00, 'M', 'ff'), + (0xFB01, 'M', 'fi'), + (0xFB02, 'M', 'fl'), + (0xFB03, 'M', 'ffi'), + (0xFB04, 'M', 'ffl'), + (0xFB05, 'M', 'st'), + ] + +def _seg_44() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFB07, 'X'), + (0xFB13, 'M', 'մն'), + (0xFB14, 'M', 'մե'), + (0xFB15, 'M', 'մի'), + (0xFB16, 'M', 'վն'), + (0xFB17, 'M', 'մխ'), + (0xFB18, 'X'), + (0xFB1D, 'M', 'יִ'), + (0xFB1E, 'V'), + (0xFB1F, 'M', 'ײַ'), + (0xFB20, 'M', 'ע'), + (0xFB21, 'M', 'א'), + (0xFB22, 'M', 'ד'), + (0xFB23, 'M', 'ה'), + (0xFB24, 'M', 'כ'), + (0xFB25, 'M', 'ל'), + (0xFB26, 'M', 'ם'), + (0xFB27, 'M', 'ר'), + (0xFB28, 'M', 'ת'), + (0xFB29, '3', '+'), + (0xFB2A, 'M', 'שׁ'), + (0xFB2B, 'M', 'שׂ'), + (0xFB2C, 'M', 'שּׁ'), + (0xFB2D, 'M', 'שּׂ'), + (0xFB2E, 'M', 'אַ'), + (0xFB2F, 'M', 'אָ'), + (0xFB30, 'M', 'אּ'), + (0xFB31, 'M', 'בּ'), + (0xFB32, 'M', 'גּ'), + (0xFB33, 'M', 'דּ'), + (0xFB34, 'M', 'הּ'), + (0xFB35, 'M', 'וּ'), + (0xFB36, 'M', 'זּ'), + (0xFB37, 'X'), + (0xFB38, 'M', 'טּ'), + (0xFB39, 'M', 'יּ'), + (0xFB3A, 'M', 'ךּ'), + (0xFB3B, 'M', 'כּ'), + (0xFB3C, 'M', 'לּ'), + (0xFB3D, 'X'), + (0xFB3E, 'M', 'מּ'), + (0xFB3F, 'X'), + (0xFB40, 'M', 'נּ'), + (0xFB41, 'M', 'סּ'), + (0xFB42, 'X'), + (0xFB43, 'M', 'ףּ'), + (0xFB44, 'M', 'פּ'), + (0xFB45, 'X'), + (0xFB46, 'M', 'צּ'), + (0xFB47, 'M', 'קּ'), + (0xFB48, 'M', 'רּ'), + (0xFB49, 'M', 'שּ'), + (0xFB4A, 'M', 'תּ'), + (0xFB4B, 'M', 'וֹ'), + (0xFB4C, 'M', 'בֿ'), + (0xFB4D, 'M', 'כֿ'), + (0xFB4E, 'M', 'פֿ'), + (0xFB4F, 'M', 'אל'), + (0xFB50, 'M', 'ٱ'), + (0xFB52, 'M', 'ٻ'), + (0xFB56, 'M', 'پ'), + (0xFB5A, 'M', 'ڀ'), + (0xFB5E, 'M', 'ٺ'), + (0xFB62, 'M', 'ٿ'), + (0xFB66, 'M', 'ٹ'), + (0xFB6A, 'M', 'ڤ'), + (0xFB6E, 'M', 'ڦ'), + (0xFB72, 'M', 'ڄ'), + (0xFB76, 'M', 'ڃ'), + (0xFB7A, 'M', 'چ'), + (0xFB7E, 'M', 'ڇ'), + (0xFB82, 'M', 'ڍ'), + (0xFB84, 'M', 'ڌ'), + (0xFB86, 'M', 'ڎ'), + (0xFB88, 'M', 'ڈ'), + (0xFB8A, 'M', 'ژ'), + (0xFB8C, 'M', 'ڑ'), + (0xFB8E, 'M', 'ک'), + (0xFB92, 'M', 'گ'), + (0xFB96, 'M', 'ڳ'), + (0xFB9A, 'M', 'ڱ'), + (0xFB9E, 'M', 'ں'), + (0xFBA0, 'M', 'ڻ'), + (0xFBA4, 'M', 'ۀ'), + (0xFBA6, 'M', 'ہ'), + (0xFBAA, 'M', 'ھ'), + (0xFBAE, 'M', 'ے'), + (0xFBB0, 'M', 'ۓ'), + (0xFBB2, 'V'), + (0xFBC3, 'X'), + (0xFBD3, 'M', 'ڭ'), + (0xFBD7, 'M', 'ۇ'), + (0xFBD9, 'M', 'ۆ'), + (0xFBDB, 'M', 'ۈ'), + (0xFBDD, 'M', 'ۇٴ'), + (0xFBDE, 'M', 'ۋ'), + (0xFBE0, 'M', 'ۅ'), + (0xFBE2, 'M', 'ۉ'), + (0xFBE4, 'M', 'ې'), + (0xFBE8, 'M', 'ى'), + ] + +def _seg_45() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFBEA, 'M', 'ئا'), + (0xFBEC, 'M', 'ئە'), + (0xFBEE, 'M', 'ئو'), + (0xFBF0, 'M', 'ئۇ'), + (0xFBF2, 'M', 'ئۆ'), + (0xFBF4, 'M', 'ئۈ'), + (0xFBF6, 'M', 'ئې'), + (0xFBF9, 'M', 'ئى'), + (0xFBFC, 'M', 'ی'), + (0xFC00, 'M', 'ئج'), + (0xFC01, 'M', 'ئح'), + (0xFC02, 'M', 'ئم'), + (0xFC03, 'M', 'ئى'), + (0xFC04, 'M', 'ئي'), + (0xFC05, 'M', 'بج'), + (0xFC06, 'M', 'بح'), + (0xFC07, 'M', 'بخ'), + (0xFC08, 'M', 'بم'), + (0xFC09, 'M', 'بى'), + (0xFC0A, 'M', 'بي'), + (0xFC0B, 'M', 'تج'), + (0xFC0C, 'M', 'تح'), + (0xFC0D, 'M', 'تخ'), + (0xFC0E, 'M', 'تم'), + (0xFC0F, 'M', 'تى'), + (0xFC10, 'M', 'تي'), + (0xFC11, 'M', 'ثج'), + (0xFC12, 'M', 'ثم'), + (0xFC13, 'M', 'ثى'), + (0xFC14, 'M', 'ثي'), + (0xFC15, 'M', 'جح'), + (0xFC16, 'M', 'جم'), + (0xFC17, 'M', 'حج'), + (0xFC18, 'M', 'حم'), + (0xFC19, 'M', 'خج'), + (0xFC1A, 'M', 'خح'), + (0xFC1B, 'M', 'خم'), + (0xFC1C, 'M', 'سج'), + (0xFC1D, 'M', 'سح'), + (0xFC1E, 'M', 'سخ'), + (0xFC1F, 'M', 'سم'), + (0xFC20, 'M', 'صح'), + (0xFC21, 'M', 'صم'), + (0xFC22, 'M', 'ضج'), + (0xFC23, 'M', 'ضح'), + (0xFC24, 'M', 'ضخ'), + (0xFC25, 'M', 'ضم'), + (0xFC26, 'M', 'طح'), + (0xFC27, 'M', 'طم'), + (0xFC28, 'M', 'ظم'), + (0xFC29, 'M', 'عج'), + (0xFC2A, 'M', 'عم'), + (0xFC2B, 'M', 'غج'), + (0xFC2C, 'M', 'غم'), + (0xFC2D, 'M', 'فج'), + (0xFC2E, 'M', 'فح'), + (0xFC2F, 'M', 'فخ'), + (0xFC30, 'M', 'فم'), + (0xFC31, 'M', 'فى'), + (0xFC32, 'M', 'في'), + (0xFC33, 'M', 'قح'), + (0xFC34, 'M', 'قم'), + (0xFC35, 'M', 'قى'), + (0xFC36, 'M', 'قي'), + (0xFC37, 'M', 'كا'), + (0xFC38, 'M', 'كج'), + (0xFC39, 'M', 'كح'), + (0xFC3A, 'M', 'كخ'), + (0xFC3B, 'M', 'كل'), + (0xFC3C, 'M', 'كم'), + (0xFC3D, 'M', 'كى'), + (0xFC3E, 'M', 'كي'), + (0xFC3F, 'M', 'لج'), + (0xFC40, 'M', 'لح'), + (0xFC41, 'M', 'لخ'), + (0xFC42, 'M', 'لم'), + (0xFC43, 'M', 'لى'), + (0xFC44, 'M', 'لي'), + (0xFC45, 'M', 'مج'), + (0xFC46, 'M', 'مح'), + (0xFC47, 'M', 'مخ'), + (0xFC48, 'M', 'مم'), + (0xFC49, 'M', 'مى'), + (0xFC4A, 'M', 'مي'), + (0xFC4B, 'M', 'نج'), + (0xFC4C, 'M', 'نح'), + (0xFC4D, 'M', 'نخ'), + (0xFC4E, 'M', 'نم'), + (0xFC4F, 'M', 'نى'), + (0xFC50, 'M', 'ني'), + (0xFC51, 'M', 'هج'), + (0xFC52, 'M', 'هم'), + (0xFC53, 'M', 'هى'), + (0xFC54, 'M', 'هي'), + (0xFC55, 'M', 'يج'), + (0xFC56, 'M', 'يح'), + (0xFC57, 'M', 'يخ'), + (0xFC58, 'M', 'يم'), + (0xFC59, 'M', 'يى'), + (0xFC5A, 'M', 'يي'), + ] + +def _seg_46() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFC5B, 'M', 'ذٰ'), + (0xFC5C, 'M', 'رٰ'), + (0xFC5D, 'M', 'ىٰ'), + (0xFC5E, '3', ' ٌّ'), + (0xFC5F, '3', ' ٍّ'), + (0xFC60, '3', ' َّ'), + (0xFC61, '3', ' ُّ'), + (0xFC62, '3', ' ِّ'), + (0xFC63, '3', ' ّٰ'), + (0xFC64, 'M', 'ئر'), + (0xFC65, 'M', 'ئز'), + (0xFC66, 'M', 'ئم'), + (0xFC67, 'M', 'ئن'), + (0xFC68, 'M', 'ئى'), + (0xFC69, 'M', 'ئي'), + (0xFC6A, 'M', 'بر'), + (0xFC6B, 'M', 'بز'), + (0xFC6C, 'M', 'بم'), + (0xFC6D, 'M', 'بن'), + (0xFC6E, 'M', 'بى'), + (0xFC6F, 'M', 'بي'), + (0xFC70, 'M', 'تر'), + (0xFC71, 'M', 'تز'), + (0xFC72, 'M', 'تم'), + (0xFC73, 'M', 'تن'), + (0xFC74, 'M', 'تى'), + (0xFC75, 'M', 'تي'), + (0xFC76, 'M', 'ثر'), + (0xFC77, 'M', 'ثز'), + (0xFC78, 'M', 'ثم'), + (0xFC79, 'M', 'ثن'), + (0xFC7A, 'M', 'ثى'), + (0xFC7B, 'M', 'ثي'), + (0xFC7C, 'M', 'فى'), + (0xFC7D, 'M', 'في'), + (0xFC7E, 'M', 'قى'), + (0xFC7F, 'M', 'قي'), + (0xFC80, 'M', 'كا'), + (0xFC81, 'M', 'كل'), + (0xFC82, 'M', 'كم'), + (0xFC83, 'M', 'كى'), + (0xFC84, 'M', 'كي'), + (0xFC85, 'M', 'لم'), + (0xFC86, 'M', 'لى'), + (0xFC87, 'M', 'لي'), + (0xFC88, 'M', 'ما'), + (0xFC89, 'M', 'مم'), + (0xFC8A, 'M', 'نر'), + (0xFC8B, 'M', 'نز'), + (0xFC8C, 'M', 'نم'), + (0xFC8D, 'M', 'نن'), + (0xFC8E, 'M', 'نى'), + (0xFC8F, 'M', 'ني'), + (0xFC90, 'M', 'ىٰ'), + (0xFC91, 'M', 'ير'), + (0xFC92, 'M', 'يز'), + (0xFC93, 'M', 'يم'), + (0xFC94, 'M', 'ين'), + (0xFC95, 'M', 'يى'), + (0xFC96, 'M', 'يي'), + (0xFC97, 'M', 'ئج'), + (0xFC98, 'M', 'ئح'), + (0xFC99, 'M', 'ئخ'), + (0xFC9A, 'M', 'ئم'), + (0xFC9B, 'M', 'ئه'), + (0xFC9C, 'M', 'بج'), + (0xFC9D, 'M', 'بح'), + (0xFC9E, 'M', 'بخ'), + (0xFC9F, 'M', 'بم'), + (0xFCA0, 'M', 'به'), + (0xFCA1, 'M', 'تج'), + (0xFCA2, 'M', 'تح'), + (0xFCA3, 'M', 'تخ'), + (0xFCA4, 'M', 'تم'), + (0xFCA5, 'M', 'ته'), + (0xFCA6, 'M', 'ثم'), + (0xFCA7, 'M', 'جح'), + (0xFCA8, 'M', 'جم'), + (0xFCA9, 'M', 'حج'), + (0xFCAA, 'M', 'حم'), + (0xFCAB, 'M', 'خج'), + (0xFCAC, 'M', 'خم'), + (0xFCAD, 'M', 'سج'), + (0xFCAE, 'M', 'سح'), + (0xFCAF, 'M', 'سخ'), + (0xFCB0, 'M', 'سم'), + (0xFCB1, 'M', 'صح'), + (0xFCB2, 'M', 'صخ'), + (0xFCB3, 'M', 'صم'), + (0xFCB4, 'M', 'ضج'), + (0xFCB5, 'M', 'ضح'), + (0xFCB6, 'M', 'ضخ'), + (0xFCB7, 'M', 'ضم'), + (0xFCB8, 'M', 'طح'), + (0xFCB9, 'M', 'ظم'), + (0xFCBA, 'M', 'عج'), + (0xFCBB, 'M', 'عم'), + (0xFCBC, 'M', 'غج'), + (0xFCBD, 'M', 'غم'), + (0xFCBE, 'M', 'فج'), + ] + +def _seg_47() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFCBF, 'M', 'فح'), + (0xFCC0, 'M', 'فخ'), + (0xFCC1, 'M', 'فم'), + (0xFCC2, 'M', 'قح'), + (0xFCC3, 'M', 'قم'), + (0xFCC4, 'M', 'كج'), + (0xFCC5, 'M', 'كح'), + (0xFCC6, 'M', 'كخ'), + (0xFCC7, 'M', 'كل'), + (0xFCC8, 'M', 'كم'), + (0xFCC9, 'M', 'لج'), + (0xFCCA, 'M', 'لح'), + (0xFCCB, 'M', 'لخ'), + (0xFCCC, 'M', 'لم'), + (0xFCCD, 'M', 'له'), + (0xFCCE, 'M', 'مج'), + (0xFCCF, 'M', 'مح'), + (0xFCD0, 'M', 'مخ'), + (0xFCD1, 'M', 'مم'), + (0xFCD2, 'M', 'نج'), + (0xFCD3, 'M', 'نح'), + (0xFCD4, 'M', 'نخ'), + (0xFCD5, 'M', 'نم'), + (0xFCD6, 'M', 'نه'), + (0xFCD7, 'M', 'هج'), + (0xFCD8, 'M', 'هم'), + (0xFCD9, 'M', 'هٰ'), + (0xFCDA, 'M', 'يج'), + (0xFCDB, 'M', 'يح'), + (0xFCDC, 'M', 'يخ'), + (0xFCDD, 'M', 'يم'), + (0xFCDE, 'M', 'يه'), + (0xFCDF, 'M', 'ئم'), + (0xFCE0, 'M', 'ئه'), + (0xFCE1, 'M', 'بم'), + (0xFCE2, 'M', 'به'), + (0xFCE3, 'M', 'تم'), + (0xFCE4, 'M', 'ته'), + (0xFCE5, 'M', 'ثم'), + (0xFCE6, 'M', 'ثه'), + (0xFCE7, 'M', 'سم'), + (0xFCE8, 'M', 'سه'), + (0xFCE9, 'M', 'شم'), + (0xFCEA, 'M', 'شه'), + (0xFCEB, 'M', 'كل'), + (0xFCEC, 'M', 'كم'), + (0xFCED, 'M', 'لم'), + (0xFCEE, 'M', 'نم'), + (0xFCEF, 'M', 'نه'), + (0xFCF0, 'M', 'يم'), + (0xFCF1, 'M', 'يه'), + (0xFCF2, 'M', 'ـَّ'), + (0xFCF3, 'M', 'ـُّ'), + (0xFCF4, 'M', 'ـِّ'), + (0xFCF5, 'M', 'طى'), + (0xFCF6, 'M', 'طي'), + (0xFCF7, 'M', 'عى'), + (0xFCF8, 'M', 'عي'), + (0xFCF9, 'M', 'غى'), + (0xFCFA, 'M', 'غي'), + (0xFCFB, 'M', 'سى'), + (0xFCFC, 'M', 'سي'), + (0xFCFD, 'M', 'شى'), + (0xFCFE, 'M', 'شي'), + (0xFCFF, 'M', 'حى'), + (0xFD00, 'M', 'حي'), + (0xFD01, 'M', 'جى'), + (0xFD02, 'M', 'جي'), + (0xFD03, 'M', 'خى'), + (0xFD04, 'M', 'خي'), + (0xFD05, 'M', 'صى'), + (0xFD06, 'M', 'صي'), + (0xFD07, 'M', 'ضى'), + (0xFD08, 'M', 'ضي'), + (0xFD09, 'M', 'شج'), + (0xFD0A, 'M', 'شح'), + (0xFD0B, 'M', 'شخ'), + (0xFD0C, 'M', 'شم'), + (0xFD0D, 'M', 'شر'), + (0xFD0E, 'M', 'سر'), + (0xFD0F, 'M', 'صر'), + (0xFD10, 'M', 'ضر'), + (0xFD11, 'M', 'طى'), + (0xFD12, 'M', 'طي'), + (0xFD13, 'M', 'عى'), + (0xFD14, 'M', 'عي'), + (0xFD15, 'M', 'غى'), + (0xFD16, 'M', 'غي'), + (0xFD17, 'M', 'سى'), + (0xFD18, 'M', 'سي'), + (0xFD19, 'M', 'شى'), + (0xFD1A, 'M', 'شي'), + (0xFD1B, 'M', 'حى'), + (0xFD1C, 'M', 'حي'), + (0xFD1D, 'M', 'جى'), + (0xFD1E, 'M', 'جي'), + (0xFD1F, 'M', 'خى'), + (0xFD20, 'M', 'خي'), + (0xFD21, 'M', 'صى'), + (0xFD22, 'M', 'صي'), + ] + +def _seg_48() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFD23, 'M', 'ضى'), + (0xFD24, 'M', 'ضي'), + (0xFD25, 'M', 'شج'), + (0xFD26, 'M', 'شح'), + (0xFD27, 'M', 'شخ'), + (0xFD28, 'M', 'شم'), + (0xFD29, 'M', 'شر'), + (0xFD2A, 'M', 'سر'), + (0xFD2B, 'M', 'صر'), + (0xFD2C, 'M', 'ضر'), + (0xFD2D, 'M', 'شج'), + (0xFD2E, 'M', 'شح'), + (0xFD2F, 'M', 'شخ'), + (0xFD30, 'M', 'شم'), + (0xFD31, 'M', 'سه'), + (0xFD32, 'M', 'شه'), + (0xFD33, 'M', 'طم'), + (0xFD34, 'M', 'سج'), + (0xFD35, 'M', 'سح'), + (0xFD36, 'M', 'سخ'), + (0xFD37, 'M', 'شج'), + (0xFD38, 'M', 'شح'), + (0xFD39, 'M', 'شخ'), + (0xFD3A, 'M', 'طم'), + (0xFD3B, 'M', 'ظم'), + (0xFD3C, 'M', 'اً'), + (0xFD3E, 'V'), + (0xFD50, 'M', 'تجم'), + (0xFD51, 'M', 'تحج'), + (0xFD53, 'M', 'تحم'), + (0xFD54, 'M', 'تخم'), + (0xFD55, 'M', 'تمج'), + (0xFD56, 'M', 'تمح'), + (0xFD57, 'M', 'تمخ'), + (0xFD58, 'M', 'جمح'), + (0xFD5A, 'M', 'حمي'), + (0xFD5B, 'M', 'حمى'), + (0xFD5C, 'M', 'سحج'), + (0xFD5D, 'M', 'سجح'), + (0xFD5E, 'M', 'سجى'), + (0xFD5F, 'M', 'سمح'), + (0xFD61, 'M', 'سمج'), + (0xFD62, 'M', 'سمم'), + (0xFD64, 'M', 'صحح'), + (0xFD66, 'M', 'صمم'), + (0xFD67, 'M', 'شحم'), + (0xFD69, 'M', 'شجي'), + (0xFD6A, 'M', 'شمخ'), + (0xFD6C, 'M', 'شمم'), + (0xFD6E, 'M', 'ضحى'), + (0xFD6F, 'M', 'ضخم'), + (0xFD71, 'M', 'طمح'), + (0xFD73, 'M', 'طمم'), + (0xFD74, 'M', 'طمي'), + (0xFD75, 'M', 'عجم'), + (0xFD76, 'M', 'عمم'), + (0xFD78, 'M', 'عمى'), + (0xFD79, 'M', 'غمم'), + (0xFD7A, 'M', 'غمي'), + (0xFD7B, 'M', 'غمى'), + (0xFD7C, 'M', 'فخم'), + (0xFD7E, 'M', 'قمح'), + (0xFD7F, 'M', 'قمم'), + (0xFD80, 'M', 'لحم'), + (0xFD81, 'M', 'لحي'), + (0xFD82, 'M', 'لحى'), + (0xFD83, 'M', 'لجج'), + (0xFD85, 'M', 'لخم'), + (0xFD87, 'M', 'لمح'), + (0xFD89, 'M', 'محج'), + (0xFD8A, 'M', 'محم'), + (0xFD8B, 'M', 'محي'), + (0xFD8C, 'M', 'مجح'), + (0xFD8D, 'M', 'مجم'), + (0xFD8E, 'M', 'مخج'), + (0xFD8F, 'M', 'مخم'), + (0xFD90, 'X'), + (0xFD92, 'M', 'مجخ'), + (0xFD93, 'M', 'همج'), + (0xFD94, 'M', 'همم'), + (0xFD95, 'M', 'نحم'), + (0xFD96, 'M', 'نحى'), + (0xFD97, 'M', 'نجم'), + (0xFD99, 'M', 'نجى'), + (0xFD9A, 'M', 'نمي'), + (0xFD9B, 'M', 'نمى'), + (0xFD9C, 'M', 'يمم'), + (0xFD9E, 'M', 'بخي'), + (0xFD9F, 'M', 'تجي'), + (0xFDA0, 'M', 'تجى'), + (0xFDA1, 'M', 'تخي'), + (0xFDA2, 'M', 'تخى'), + (0xFDA3, 'M', 'تمي'), + (0xFDA4, 'M', 'تمى'), + (0xFDA5, 'M', 'جمي'), + (0xFDA6, 'M', 'جحى'), + (0xFDA7, 'M', 'جمى'), + (0xFDA8, 'M', 'سخى'), + (0xFDA9, 'M', 'صحي'), + (0xFDAA, 'M', 'شحي'), + ] + +def _seg_49() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFDAB, 'M', 'ضحي'), + (0xFDAC, 'M', 'لجي'), + (0xFDAD, 'M', 'لمي'), + (0xFDAE, 'M', 'يحي'), + (0xFDAF, 'M', 'يجي'), + (0xFDB0, 'M', 'يمي'), + (0xFDB1, 'M', 'ممي'), + (0xFDB2, 'M', 'قمي'), + (0xFDB3, 'M', 'نحي'), + (0xFDB4, 'M', 'قمح'), + (0xFDB5, 'M', 'لحم'), + (0xFDB6, 'M', 'عمي'), + (0xFDB7, 'M', 'كمي'), + (0xFDB8, 'M', 'نجح'), + (0xFDB9, 'M', 'مخي'), + (0xFDBA, 'M', 'لجم'), + (0xFDBB, 'M', 'كمم'), + (0xFDBC, 'M', 'لجم'), + (0xFDBD, 'M', 'نجح'), + (0xFDBE, 'M', 'جحي'), + (0xFDBF, 'M', 'حجي'), + (0xFDC0, 'M', 'مجي'), + (0xFDC1, 'M', 'فمي'), + (0xFDC2, 'M', 'بحي'), + (0xFDC3, 'M', 'كمم'), + (0xFDC4, 'M', 'عجم'), + (0xFDC5, 'M', 'صمم'), + (0xFDC6, 'M', 'سخي'), + (0xFDC7, 'M', 'نجي'), + (0xFDC8, 'X'), + (0xFDCF, 'V'), + (0xFDD0, 'X'), + (0xFDF0, 'M', 'صلے'), + (0xFDF1, 'M', 'قلے'), + (0xFDF2, 'M', 'الله'), + (0xFDF3, 'M', 'اكبر'), + (0xFDF4, 'M', 'محمد'), + (0xFDF5, 'M', 'صلعم'), + (0xFDF6, 'M', 'رسول'), + (0xFDF7, 'M', 'عليه'), + (0xFDF8, 'M', 'وسلم'), + (0xFDF9, 'M', 'صلى'), + (0xFDFA, '3', 'صلى الله عليه وسلم'), + (0xFDFB, '3', 'جل جلاله'), + (0xFDFC, 'M', 'ریال'), + (0xFDFD, 'V'), + (0xFE00, 'I'), + (0xFE10, '3', ','), + (0xFE11, 'M', '、'), + (0xFE12, 'X'), + (0xFE13, '3', ':'), + (0xFE14, '3', ';'), + (0xFE15, '3', '!'), + (0xFE16, '3', '?'), + (0xFE17, 'M', '〖'), + (0xFE18, 'M', '〗'), + (0xFE19, 'X'), + (0xFE20, 'V'), + (0xFE30, 'X'), + (0xFE31, 'M', '—'), + (0xFE32, 'M', '–'), + (0xFE33, '3', '_'), + (0xFE35, '3', '('), + (0xFE36, '3', ')'), + (0xFE37, '3', '{'), + (0xFE38, '3', '}'), + (0xFE39, 'M', '〔'), + (0xFE3A, 'M', '〕'), + (0xFE3B, 'M', '【'), + (0xFE3C, 'M', '】'), + (0xFE3D, 'M', '《'), + (0xFE3E, 'M', '》'), + (0xFE3F, 'M', '〈'), + (0xFE40, 'M', '〉'), + (0xFE41, 'M', '「'), + (0xFE42, 'M', '」'), + (0xFE43, 'M', '『'), + (0xFE44, 'M', '』'), + (0xFE45, 'V'), + (0xFE47, '3', '['), + (0xFE48, '3', ']'), + (0xFE49, '3', ' ̅'), + (0xFE4D, '3', '_'), + (0xFE50, '3', ','), + (0xFE51, 'M', '、'), + (0xFE52, 'X'), + (0xFE54, '3', ';'), + (0xFE55, '3', ':'), + (0xFE56, '3', '?'), + (0xFE57, '3', '!'), + (0xFE58, 'M', '—'), + (0xFE59, '3', '('), + (0xFE5A, '3', ')'), + (0xFE5B, '3', '{'), + (0xFE5C, '3', '}'), + (0xFE5D, 'M', '〔'), + (0xFE5E, 'M', '〕'), + (0xFE5F, '3', '#'), + (0xFE60, '3', '&'), + (0xFE61, '3', '*'), + ] + +def _seg_50() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFE62, '3', '+'), + (0xFE63, 'M', '-'), + (0xFE64, '3', '<'), + (0xFE65, '3', '>'), + (0xFE66, '3', '='), + (0xFE67, 'X'), + (0xFE68, '3', '\\'), + (0xFE69, '3', '$'), + (0xFE6A, '3', '%'), + (0xFE6B, '3', '@'), + (0xFE6C, 'X'), + (0xFE70, '3', ' ً'), + (0xFE71, 'M', 'ـً'), + (0xFE72, '3', ' ٌ'), + (0xFE73, 'V'), + (0xFE74, '3', ' ٍ'), + (0xFE75, 'X'), + (0xFE76, '3', ' َ'), + (0xFE77, 'M', 'ـَ'), + (0xFE78, '3', ' ُ'), + (0xFE79, 'M', 'ـُ'), + (0xFE7A, '3', ' ِ'), + (0xFE7B, 'M', 'ـِ'), + (0xFE7C, '3', ' ّ'), + (0xFE7D, 'M', 'ـّ'), + (0xFE7E, '3', ' ْ'), + (0xFE7F, 'M', 'ـْ'), + (0xFE80, 'M', 'ء'), + (0xFE81, 'M', 'آ'), + (0xFE83, 'M', 'أ'), + (0xFE85, 'M', 'ؤ'), + (0xFE87, 'M', 'إ'), + (0xFE89, 'M', 'ئ'), + (0xFE8D, 'M', 'ا'), + (0xFE8F, 'M', 'ب'), + (0xFE93, 'M', 'ة'), + (0xFE95, 'M', 'ت'), + (0xFE99, 'M', 'ث'), + (0xFE9D, 'M', 'ج'), + (0xFEA1, 'M', 'ح'), + (0xFEA5, 'M', 'خ'), + (0xFEA9, 'M', 'د'), + (0xFEAB, 'M', 'ذ'), + (0xFEAD, 'M', 'ر'), + (0xFEAF, 'M', 'ز'), + (0xFEB1, 'M', 'س'), + (0xFEB5, 'M', 'ش'), + (0xFEB9, 'M', 'ص'), + (0xFEBD, 'M', 'ض'), + (0xFEC1, 'M', 'ط'), + (0xFEC5, 'M', 'ظ'), + (0xFEC9, 'M', 'ع'), + (0xFECD, 'M', 'غ'), + (0xFED1, 'M', 'ف'), + (0xFED5, 'M', 'ق'), + (0xFED9, 'M', 'ك'), + (0xFEDD, 'M', 'ل'), + (0xFEE1, 'M', 'م'), + (0xFEE5, 'M', 'ن'), + (0xFEE9, 'M', 'ه'), + (0xFEED, 'M', 'و'), + (0xFEEF, 'M', 'ى'), + (0xFEF1, 'M', 'ي'), + (0xFEF5, 'M', 'لآ'), + (0xFEF7, 'M', 'لأ'), + (0xFEF9, 'M', 'لإ'), + (0xFEFB, 'M', 'لا'), + (0xFEFD, 'X'), + (0xFEFF, 'I'), + (0xFF00, 'X'), + (0xFF01, '3', '!'), + (0xFF02, '3', '"'), + (0xFF03, '3', '#'), + (0xFF04, '3', '$'), + (0xFF05, '3', '%'), + (0xFF06, '3', '&'), + (0xFF07, '3', '\''), + (0xFF08, '3', '('), + (0xFF09, '3', ')'), + (0xFF0A, '3', '*'), + (0xFF0B, '3', '+'), + (0xFF0C, '3', ','), + (0xFF0D, 'M', '-'), + (0xFF0E, 'M', '.'), + (0xFF0F, '3', '/'), + (0xFF10, 'M', '0'), + (0xFF11, 'M', '1'), + (0xFF12, 'M', '2'), + (0xFF13, 'M', '3'), + (0xFF14, 'M', '4'), + (0xFF15, 'M', '5'), + (0xFF16, 'M', '6'), + (0xFF17, 'M', '7'), + (0xFF18, 'M', '8'), + (0xFF19, 'M', '9'), + (0xFF1A, '3', ':'), + (0xFF1B, '3', ';'), + (0xFF1C, '3', '<'), + (0xFF1D, '3', '='), + (0xFF1E, '3', '>'), + ] + +def _seg_51() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF1F, '3', '?'), + (0xFF20, '3', '@'), + (0xFF21, 'M', 'a'), + (0xFF22, 'M', 'b'), + (0xFF23, 'M', 'c'), + (0xFF24, 'M', 'd'), + (0xFF25, 'M', 'e'), + (0xFF26, 'M', 'f'), + (0xFF27, 'M', 'g'), + (0xFF28, 'M', 'h'), + (0xFF29, 'M', 'i'), + (0xFF2A, 'M', 'j'), + (0xFF2B, 'M', 'k'), + (0xFF2C, 'M', 'l'), + (0xFF2D, 'M', 'm'), + (0xFF2E, 'M', 'n'), + (0xFF2F, 'M', 'o'), + (0xFF30, 'M', 'p'), + (0xFF31, 'M', 'q'), + (0xFF32, 'M', 'r'), + (0xFF33, 'M', 's'), + (0xFF34, 'M', 't'), + (0xFF35, 'M', 'u'), + (0xFF36, 'M', 'v'), + (0xFF37, 'M', 'w'), + (0xFF38, 'M', 'x'), + (0xFF39, 'M', 'y'), + (0xFF3A, 'M', 'z'), + (0xFF3B, '3', '['), + (0xFF3C, '3', '\\'), + (0xFF3D, '3', ']'), + (0xFF3E, '3', '^'), + (0xFF3F, '3', '_'), + (0xFF40, '3', '`'), + (0xFF41, 'M', 'a'), + (0xFF42, 'M', 'b'), + (0xFF43, 'M', 'c'), + (0xFF44, 'M', 'd'), + (0xFF45, 'M', 'e'), + (0xFF46, 'M', 'f'), + (0xFF47, 'M', 'g'), + (0xFF48, 'M', 'h'), + (0xFF49, 'M', 'i'), + (0xFF4A, 'M', 'j'), + (0xFF4B, 'M', 'k'), + (0xFF4C, 'M', 'l'), + (0xFF4D, 'M', 'm'), + (0xFF4E, 'M', 'n'), + (0xFF4F, 'M', 'o'), + (0xFF50, 'M', 'p'), + (0xFF51, 'M', 'q'), + (0xFF52, 'M', 'r'), + (0xFF53, 'M', 's'), + (0xFF54, 'M', 't'), + (0xFF55, 'M', 'u'), + (0xFF56, 'M', 'v'), + (0xFF57, 'M', 'w'), + (0xFF58, 'M', 'x'), + (0xFF59, 'M', 'y'), + (0xFF5A, 'M', 'z'), + (0xFF5B, '3', '{'), + (0xFF5C, '3', '|'), + (0xFF5D, '3', '}'), + (0xFF5E, '3', '~'), + (0xFF5F, 'M', '⦅'), + (0xFF60, 'M', '⦆'), + (0xFF61, 'M', '.'), + (0xFF62, 'M', '「'), + (0xFF63, 'M', '」'), + (0xFF64, 'M', '、'), + (0xFF65, 'M', '・'), + (0xFF66, 'M', 'ヲ'), + (0xFF67, 'M', 'ァ'), + (0xFF68, 'M', 'ィ'), + (0xFF69, 'M', 'ゥ'), + (0xFF6A, 'M', 'ェ'), + (0xFF6B, 'M', 'ォ'), + (0xFF6C, 'M', 'ャ'), + (0xFF6D, 'M', 'ュ'), + (0xFF6E, 'M', 'ョ'), + (0xFF6F, 'M', 'ッ'), + (0xFF70, 'M', 'ー'), + (0xFF71, 'M', 'ア'), + (0xFF72, 'M', 'イ'), + (0xFF73, 'M', 'ウ'), + (0xFF74, 'M', 'エ'), + (0xFF75, 'M', 'オ'), + (0xFF76, 'M', 'カ'), + (0xFF77, 'M', 'キ'), + (0xFF78, 'M', 'ク'), + (0xFF79, 'M', 'ケ'), + (0xFF7A, 'M', 'コ'), + (0xFF7B, 'M', 'サ'), + (0xFF7C, 'M', 'シ'), + (0xFF7D, 'M', 'ス'), + (0xFF7E, 'M', 'セ'), + (0xFF7F, 'M', 'ソ'), + (0xFF80, 'M', 'タ'), + (0xFF81, 'M', 'チ'), + (0xFF82, 'M', 'ツ'), + ] + +def _seg_52() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF83, 'M', 'テ'), + (0xFF84, 'M', 'ト'), + (0xFF85, 'M', 'ナ'), + (0xFF86, 'M', 'ニ'), + (0xFF87, 'M', 'ヌ'), + (0xFF88, 'M', 'ネ'), + (0xFF89, 'M', 'ノ'), + (0xFF8A, 'M', 'ハ'), + (0xFF8B, 'M', 'ヒ'), + (0xFF8C, 'M', 'フ'), + (0xFF8D, 'M', 'ヘ'), + (0xFF8E, 'M', 'ホ'), + (0xFF8F, 'M', 'マ'), + (0xFF90, 'M', 'ミ'), + (0xFF91, 'M', 'ム'), + (0xFF92, 'M', 'メ'), + (0xFF93, 'M', 'モ'), + (0xFF94, 'M', 'ヤ'), + (0xFF95, 'M', 'ユ'), + (0xFF96, 'M', 'ヨ'), + (0xFF97, 'M', 'ラ'), + (0xFF98, 'M', 'リ'), + (0xFF99, 'M', 'ル'), + (0xFF9A, 'M', 'レ'), + (0xFF9B, 'M', 'ロ'), + (0xFF9C, 'M', 'ワ'), + (0xFF9D, 'M', 'ン'), + (0xFF9E, 'M', '゙'), + (0xFF9F, 'M', '゚'), + (0xFFA0, 'X'), + (0xFFA1, 'M', 'ᄀ'), + (0xFFA2, 'M', 'ᄁ'), + (0xFFA3, 'M', 'ᆪ'), + (0xFFA4, 'M', 'ᄂ'), + (0xFFA5, 'M', 'ᆬ'), + (0xFFA6, 'M', 'ᆭ'), + (0xFFA7, 'M', 'ᄃ'), + (0xFFA8, 'M', 'ᄄ'), + (0xFFA9, 'M', 'ᄅ'), + (0xFFAA, 'M', 'ᆰ'), + (0xFFAB, 'M', 'ᆱ'), + (0xFFAC, 'M', 'ᆲ'), + (0xFFAD, 'M', 'ᆳ'), + (0xFFAE, 'M', 'ᆴ'), + (0xFFAF, 'M', 'ᆵ'), + (0xFFB0, 'M', 'ᄚ'), + (0xFFB1, 'M', 'ᄆ'), + (0xFFB2, 'M', 'ᄇ'), + (0xFFB3, 'M', 'ᄈ'), + (0xFFB4, 'M', 'ᄡ'), + (0xFFB5, 'M', 'ᄉ'), + (0xFFB6, 'M', 'ᄊ'), + (0xFFB7, 'M', 'ᄋ'), + (0xFFB8, 'M', 'ᄌ'), + (0xFFB9, 'M', 'ᄍ'), + (0xFFBA, 'M', 'ᄎ'), + (0xFFBB, 'M', 'ᄏ'), + (0xFFBC, 'M', 'ᄐ'), + (0xFFBD, 'M', 'ᄑ'), + (0xFFBE, 'M', 'ᄒ'), + (0xFFBF, 'X'), + (0xFFC2, 'M', 'ᅡ'), + (0xFFC3, 'M', 'ᅢ'), + (0xFFC4, 'M', 'ᅣ'), + (0xFFC5, 'M', 'ᅤ'), + (0xFFC6, 'M', 'ᅥ'), + (0xFFC7, 'M', 'ᅦ'), + (0xFFC8, 'X'), + (0xFFCA, 'M', 'ᅧ'), + (0xFFCB, 'M', 'ᅨ'), + (0xFFCC, 'M', 'ᅩ'), + (0xFFCD, 'M', 'ᅪ'), + (0xFFCE, 'M', 'ᅫ'), + (0xFFCF, 'M', 'ᅬ'), + (0xFFD0, 'X'), + (0xFFD2, 'M', 'ᅭ'), + (0xFFD3, 'M', 'ᅮ'), + (0xFFD4, 'M', 'ᅯ'), + (0xFFD5, 'M', 'ᅰ'), + (0xFFD6, 'M', 'ᅱ'), + (0xFFD7, 'M', 'ᅲ'), + (0xFFD8, 'X'), + (0xFFDA, 'M', 'ᅳ'), + (0xFFDB, 'M', 'ᅴ'), + (0xFFDC, 'M', 'ᅵ'), + (0xFFDD, 'X'), + (0xFFE0, 'M', '¢'), + (0xFFE1, 'M', '£'), + (0xFFE2, 'M', '¬'), + (0xFFE3, '3', ' ̄'), + (0xFFE4, 'M', '¦'), + (0xFFE5, 'M', '¥'), + (0xFFE6, 'M', '₩'), + (0xFFE7, 'X'), + (0xFFE8, 'M', '│'), + (0xFFE9, 'M', '←'), + (0xFFEA, 'M', '↑'), + (0xFFEB, 'M', '→'), + (0xFFEC, 'M', '↓'), + (0xFFED, 'M', '■'), + ] + +def _seg_53() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFFEE, 'M', '○'), + (0xFFEF, 'X'), + (0x10000, 'V'), + (0x1000C, 'X'), + (0x1000D, 'V'), + (0x10027, 'X'), + (0x10028, 'V'), + (0x1003B, 'X'), + (0x1003C, 'V'), + (0x1003E, 'X'), + (0x1003F, 'V'), + (0x1004E, 'X'), + (0x10050, 'V'), + (0x1005E, 'X'), + (0x10080, 'V'), + (0x100FB, 'X'), + (0x10100, 'V'), + (0x10103, 'X'), + (0x10107, 'V'), + (0x10134, 'X'), + (0x10137, 'V'), + (0x1018F, 'X'), + (0x10190, 'V'), + (0x1019D, 'X'), + (0x101A0, 'V'), + (0x101A1, 'X'), + (0x101D0, 'V'), + (0x101FE, 'X'), + (0x10280, 'V'), + (0x1029D, 'X'), + (0x102A0, 'V'), + (0x102D1, 'X'), + (0x102E0, 'V'), + (0x102FC, 'X'), + (0x10300, 'V'), + (0x10324, 'X'), + (0x1032D, 'V'), + (0x1034B, 'X'), + (0x10350, 'V'), + (0x1037B, 'X'), + (0x10380, 'V'), + (0x1039E, 'X'), + (0x1039F, 'V'), + (0x103C4, 'X'), + (0x103C8, 'V'), + (0x103D6, 'X'), + (0x10400, 'M', '𐐨'), + (0x10401, 'M', '𐐩'), + (0x10402, 'M', '𐐪'), + (0x10403, 'M', '𐐫'), + (0x10404, 'M', '𐐬'), + (0x10405, 'M', '𐐭'), + (0x10406, 'M', '𐐮'), + (0x10407, 'M', '𐐯'), + (0x10408, 'M', '𐐰'), + (0x10409, 'M', '𐐱'), + (0x1040A, 'M', '𐐲'), + (0x1040B, 'M', '𐐳'), + (0x1040C, 'M', '𐐴'), + (0x1040D, 'M', '𐐵'), + (0x1040E, 'M', '𐐶'), + (0x1040F, 'M', '𐐷'), + (0x10410, 'M', '𐐸'), + (0x10411, 'M', '𐐹'), + (0x10412, 'M', '𐐺'), + (0x10413, 'M', '𐐻'), + (0x10414, 'M', '𐐼'), + (0x10415, 'M', '𐐽'), + (0x10416, 'M', '𐐾'), + (0x10417, 'M', '𐐿'), + (0x10418, 'M', '𐑀'), + (0x10419, 'M', '𐑁'), + (0x1041A, 'M', '𐑂'), + (0x1041B, 'M', '𐑃'), + (0x1041C, 'M', '𐑄'), + (0x1041D, 'M', '𐑅'), + (0x1041E, 'M', '𐑆'), + (0x1041F, 'M', '𐑇'), + (0x10420, 'M', '𐑈'), + (0x10421, 'M', '𐑉'), + (0x10422, 'M', '𐑊'), + (0x10423, 'M', '𐑋'), + (0x10424, 'M', '𐑌'), + (0x10425, 'M', '𐑍'), + (0x10426, 'M', '𐑎'), + (0x10427, 'M', '𐑏'), + (0x10428, 'V'), + (0x1049E, 'X'), + (0x104A0, 'V'), + (0x104AA, 'X'), + (0x104B0, 'M', '𐓘'), + (0x104B1, 'M', '𐓙'), + (0x104B2, 'M', '𐓚'), + (0x104B3, 'M', '𐓛'), + (0x104B4, 'M', '𐓜'), + (0x104B5, 'M', '𐓝'), + (0x104B6, 'M', '𐓞'), + (0x104B7, 'M', '𐓟'), + (0x104B8, 'M', '𐓠'), + (0x104B9, 'M', '𐓡'), + ] + +def _seg_54() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x104BA, 'M', '𐓢'), + (0x104BB, 'M', '𐓣'), + (0x104BC, 'M', '𐓤'), + (0x104BD, 'M', '𐓥'), + (0x104BE, 'M', '𐓦'), + (0x104BF, 'M', '𐓧'), + (0x104C0, 'M', '𐓨'), + (0x104C1, 'M', '𐓩'), + (0x104C2, 'M', '𐓪'), + (0x104C3, 'M', '𐓫'), + (0x104C4, 'M', '𐓬'), + (0x104C5, 'M', '𐓭'), + (0x104C6, 'M', '𐓮'), + (0x104C7, 'M', '𐓯'), + (0x104C8, 'M', '𐓰'), + (0x104C9, 'M', '𐓱'), + (0x104CA, 'M', '𐓲'), + (0x104CB, 'M', '𐓳'), + (0x104CC, 'M', '𐓴'), + (0x104CD, 'M', '𐓵'), + (0x104CE, 'M', '𐓶'), + (0x104CF, 'M', '𐓷'), + (0x104D0, 'M', '𐓸'), + (0x104D1, 'M', '𐓹'), + (0x104D2, 'M', '𐓺'), + (0x104D3, 'M', '𐓻'), + (0x104D4, 'X'), + (0x104D8, 'V'), + (0x104FC, 'X'), + (0x10500, 'V'), + (0x10528, 'X'), + (0x10530, 'V'), + (0x10564, 'X'), + (0x1056F, 'V'), + (0x10570, 'M', '𐖗'), + (0x10571, 'M', '𐖘'), + (0x10572, 'M', '𐖙'), + (0x10573, 'M', '𐖚'), + (0x10574, 'M', '𐖛'), + (0x10575, 'M', '𐖜'), + (0x10576, 'M', '𐖝'), + (0x10577, 'M', '𐖞'), + (0x10578, 'M', '𐖟'), + (0x10579, 'M', '𐖠'), + (0x1057A, 'M', '𐖡'), + (0x1057B, 'X'), + (0x1057C, 'M', '𐖣'), + (0x1057D, 'M', '𐖤'), + (0x1057E, 'M', '𐖥'), + (0x1057F, 'M', '𐖦'), + (0x10580, 'M', '𐖧'), + (0x10581, 'M', '𐖨'), + (0x10582, 'M', '𐖩'), + (0x10583, 'M', '𐖪'), + (0x10584, 'M', '𐖫'), + (0x10585, 'M', '𐖬'), + (0x10586, 'M', '𐖭'), + (0x10587, 'M', '𐖮'), + (0x10588, 'M', '𐖯'), + (0x10589, 'M', '𐖰'), + (0x1058A, 'M', '𐖱'), + (0x1058B, 'X'), + (0x1058C, 'M', '𐖳'), + (0x1058D, 'M', '𐖴'), + (0x1058E, 'M', '𐖵'), + (0x1058F, 'M', '𐖶'), + (0x10590, 'M', '𐖷'), + (0x10591, 'M', '𐖸'), + (0x10592, 'M', '𐖹'), + (0x10593, 'X'), + (0x10594, 'M', '𐖻'), + (0x10595, 'M', '𐖼'), + (0x10596, 'X'), + (0x10597, 'V'), + (0x105A2, 'X'), + (0x105A3, 'V'), + (0x105B2, 'X'), + (0x105B3, 'V'), + (0x105BA, 'X'), + (0x105BB, 'V'), + (0x105BD, 'X'), + (0x10600, 'V'), + (0x10737, 'X'), + (0x10740, 'V'), + (0x10756, 'X'), + (0x10760, 'V'), + (0x10768, 'X'), + (0x10780, 'V'), + (0x10781, 'M', 'ː'), + (0x10782, 'M', 'ˑ'), + (0x10783, 'M', 'æ'), + (0x10784, 'M', 'ʙ'), + (0x10785, 'M', 'ɓ'), + (0x10786, 'X'), + (0x10787, 'M', 'ʣ'), + (0x10788, 'M', 'ꭦ'), + (0x10789, 'M', 'ʥ'), + (0x1078A, 'M', 'ʤ'), + (0x1078B, 'M', 'ɖ'), + (0x1078C, 'M', 'ɗ'), + ] + +def _seg_55() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1078D, 'M', 'ᶑ'), + (0x1078E, 'M', 'ɘ'), + (0x1078F, 'M', 'ɞ'), + (0x10790, 'M', 'ʩ'), + (0x10791, 'M', 'ɤ'), + (0x10792, 'M', 'ɢ'), + (0x10793, 'M', 'ɠ'), + (0x10794, 'M', 'ʛ'), + (0x10795, 'M', 'ħ'), + (0x10796, 'M', 'ʜ'), + (0x10797, 'M', 'ɧ'), + (0x10798, 'M', 'ʄ'), + (0x10799, 'M', 'ʪ'), + (0x1079A, 'M', 'ʫ'), + (0x1079B, 'M', 'ɬ'), + (0x1079C, 'M', '𝼄'), + (0x1079D, 'M', 'ꞎ'), + (0x1079E, 'M', 'ɮ'), + (0x1079F, 'M', '𝼅'), + (0x107A0, 'M', 'ʎ'), + (0x107A1, 'M', '𝼆'), + (0x107A2, 'M', 'ø'), + (0x107A3, 'M', 'ɶ'), + (0x107A4, 'M', 'ɷ'), + (0x107A5, 'M', 'q'), + (0x107A6, 'M', 'ɺ'), + (0x107A7, 'M', '𝼈'), + (0x107A8, 'M', 'ɽ'), + (0x107A9, 'M', 'ɾ'), + (0x107AA, 'M', 'ʀ'), + (0x107AB, 'M', 'ʨ'), + (0x107AC, 'M', 'ʦ'), + (0x107AD, 'M', 'ꭧ'), + (0x107AE, 'M', 'ʧ'), + (0x107AF, 'M', 'ʈ'), + (0x107B0, 'M', 'ⱱ'), + (0x107B1, 'X'), + (0x107B2, 'M', 'ʏ'), + (0x107B3, 'M', 'ʡ'), + (0x107B4, 'M', 'ʢ'), + (0x107B5, 'M', 'ʘ'), + (0x107B6, 'M', 'ǀ'), + (0x107B7, 'M', 'ǁ'), + (0x107B8, 'M', 'ǂ'), + (0x107B9, 'M', '𝼊'), + (0x107BA, 'M', '𝼞'), + (0x107BB, 'X'), + (0x10800, 'V'), + (0x10806, 'X'), + (0x10808, 'V'), + (0x10809, 'X'), + (0x1080A, 'V'), + (0x10836, 'X'), + (0x10837, 'V'), + (0x10839, 'X'), + (0x1083C, 'V'), + (0x1083D, 'X'), + (0x1083F, 'V'), + (0x10856, 'X'), + (0x10857, 'V'), + (0x1089F, 'X'), + (0x108A7, 'V'), + (0x108B0, 'X'), + (0x108E0, 'V'), + (0x108F3, 'X'), + (0x108F4, 'V'), + (0x108F6, 'X'), + (0x108FB, 'V'), + (0x1091C, 'X'), + (0x1091F, 'V'), + (0x1093A, 'X'), + (0x1093F, 'V'), + (0x10940, 'X'), + (0x10980, 'V'), + (0x109B8, 'X'), + (0x109BC, 'V'), + (0x109D0, 'X'), + (0x109D2, 'V'), + (0x10A04, 'X'), + (0x10A05, 'V'), + (0x10A07, 'X'), + (0x10A0C, 'V'), + (0x10A14, 'X'), + (0x10A15, 'V'), + (0x10A18, 'X'), + (0x10A19, 'V'), + (0x10A36, 'X'), + (0x10A38, 'V'), + (0x10A3B, 'X'), + (0x10A3F, 'V'), + (0x10A49, 'X'), + (0x10A50, 'V'), + (0x10A59, 'X'), + (0x10A60, 'V'), + (0x10AA0, 'X'), + (0x10AC0, 'V'), + (0x10AE7, 'X'), + (0x10AEB, 'V'), + (0x10AF7, 'X'), + (0x10B00, 'V'), + ] + +def _seg_56() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10B36, 'X'), + (0x10B39, 'V'), + (0x10B56, 'X'), + (0x10B58, 'V'), + (0x10B73, 'X'), + (0x10B78, 'V'), + (0x10B92, 'X'), + (0x10B99, 'V'), + (0x10B9D, 'X'), + (0x10BA9, 'V'), + (0x10BB0, 'X'), + (0x10C00, 'V'), + (0x10C49, 'X'), + (0x10C80, 'M', '𐳀'), + (0x10C81, 'M', '𐳁'), + (0x10C82, 'M', '𐳂'), + (0x10C83, 'M', '𐳃'), + (0x10C84, 'M', '𐳄'), + (0x10C85, 'M', '𐳅'), + (0x10C86, 'M', '𐳆'), + (0x10C87, 'M', '𐳇'), + (0x10C88, 'M', '𐳈'), + (0x10C89, 'M', '𐳉'), + (0x10C8A, 'M', '𐳊'), + (0x10C8B, 'M', '𐳋'), + (0x10C8C, 'M', '𐳌'), + (0x10C8D, 'M', '𐳍'), + (0x10C8E, 'M', '𐳎'), + (0x10C8F, 'M', '𐳏'), + (0x10C90, 'M', '𐳐'), + (0x10C91, 'M', '𐳑'), + (0x10C92, 'M', '𐳒'), + (0x10C93, 'M', '𐳓'), + (0x10C94, 'M', '𐳔'), + (0x10C95, 'M', '𐳕'), + (0x10C96, 'M', '𐳖'), + (0x10C97, 'M', '𐳗'), + (0x10C98, 'M', '𐳘'), + (0x10C99, 'M', '𐳙'), + (0x10C9A, 'M', '𐳚'), + (0x10C9B, 'M', '𐳛'), + (0x10C9C, 'M', '𐳜'), + (0x10C9D, 'M', '𐳝'), + (0x10C9E, 'M', '𐳞'), + (0x10C9F, 'M', '𐳟'), + (0x10CA0, 'M', '𐳠'), + (0x10CA1, 'M', '𐳡'), + (0x10CA2, 'M', '𐳢'), + (0x10CA3, 'M', '𐳣'), + (0x10CA4, 'M', '𐳤'), + (0x10CA5, 'M', '𐳥'), + (0x10CA6, 'M', '𐳦'), + (0x10CA7, 'M', '𐳧'), + (0x10CA8, 'M', '𐳨'), + (0x10CA9, 'M', '𐳩'), + (0x10CAA, 'M', '𐳪'), + (0x10CAB, 'M', '𐳫'), + (0x10CAC, 'M', '𐳬'), + (0x10CAD, 'M', '𐳭'), + (0x10CAE, 'M', '𐳮'), + (0x10CAF, 'M', '𐳯'), + (0x10CB0, 'M', '𐳰'), + (0x10CB1, 'M', '𐳱'), + (0x10CB2, 'M', '𐳲'), + (0x10CB3, 'X'), + (0x10CC0, 'V'), + (0x10CF3, 'X'), + (0x10CFA, 'V'), + (0x10D28, 'X'), + (0x10D30, 'V'), + (0x10D3A, 'X'), + (0x10E60, 'V'), + (0x10E7F, 'X'), + (0x10E80, 'V'), + (0x10EAA, 'X'), + (0x10EAB, 'V'), + (0x10EAE, 'X'), + (0x10EB0, 'V'), + (0x10EB2, 'X'), + (0x10EFD, 'V'), + (0x10F28, 'X'), + (0x10F30, 'V'), + (0x10F5A, 'X'), + (0x10F70, 'V'), + (0x10F8A, 'X'), + (0x10FB0, 'V'), + (0x10FCC, 'X'), + (0x10FE0, 'V'), + (0x10FF7, 'X'), + (0x11000, 'V'), + (0x1104E, 'X'), + (0x11052, 'V'), + (0x11076, 'X'), + (0x1107F, 'V'), + (0x110BD, 'X'), + (0x110BE, 'V'), + (0x110C3, 'X'), + (0x110D0, 'V'), + (0x110E9, 'X'), + (0x110F0, 'V'), + ] + +def _seg_57() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x110FA, 'X'), + (0x11100, 'V'), + (0x11135, 'X'), + (0x11136, 'V'), + (0x11148, 'X'), + (0x11150, 'V'), + (0x11177, 'X'), + (0x11180, 'V'), + (0x111E0, 'X'), + (0x111E1, 'V'), + (0x111F5, 'X'), + (0x11200, 'V'), + (0x11212, 'X'), + (0x11213, 'V'), + (0x11242, 'X'), + (0x11280, 'V'), + (0x11287, 'X'), + (0x11288, 'V'), + (0x11289, 'X'), + (0x1128A, 'V'), + (0x1128E, 'X'), + (0x1128F, 'V'), + (0x1129E, 'X'), + (0x1129F, 'V'), + (0x112AA, 'X'), + (0x112B0, 'V'), + (0x112EB, 'X'), + (0x112F0, 'V'), + (0x112FA, 'X'), + (0x11300, 'V'), + (0x11304, 'X'), + (0x11305, 'V'), + (0x1130D, 'X'), + (0x1130F, 'V'), + (0x11311, 'X'), + (0x11313, 'V'), + (0x11329, 'X'), + (0x1132A, 'V'), + (0x11331, 'X'), + (0x11332, 'V'), + (0x11334, 'X'), + (0x11335, 'V'), + (0x1133A, 'X'), + (0x1133B, 'V'), + (0x11345, 'X'), + (0x11347, 'V'), + (0x11349, 'X'), + (0x1134B, 'V'), + (0x1134E, 'X'), + (0x11350, 'V'), + (0x11351, 'X'), + (0x11357, 'V'), + (0x11358, 'X'), + (0x1135D, 'V'), + (0x11364, 'X'), + (0x11366, 'V'), + (0x1136D, 'X'), + (0x11370, 'V'), + (0x11375, 'X'), + (0x11400, 'V'), + (0x1145C, 'X'), + (0x1145D, 'V'), + (0x11462, 'X'), + (0x11480, 'V'), + (0x114C8, 'X'), + (0x114D0, 'V'), + (0x114DA, 'X'), + (0x11580, 'V'), + (0x115B6, 'X'), + (0x115B8, 'V'), + (0x115DE, 'X'), + (0x11600, 'V'), + (0x11645, 'X'), + (0x11650, 'V'), + (0x1165A, 'X'), + (0x11660, 'V'), + (0x1166D, 'X'), + (0x11680, 'V'), + (0x116BA, 'X'), + (0x116C0, 'V'), + (0x116CA, 'X'), + (0x11700, 'V'), + (0x1171B, 'X'), + (0x1171D, 'V'), + (0x1172C, 'X'), + (0x11730, 'V'), + (0x11747, 'X'), + (0x11800, 'V'), + (0x1183C, 'X'), + (0x118A0, 'M', '𑣀'), + (0x118A1, 'M', '𑣁'), + (0x118A2, 'M', '𑣂'), + (0x118A3, 'M', '𑣃'), + (0x118A4, 'M', '𑣄'), + (0x118A5, 'M', '𑣅'), + (0x118A6, 'M', '𑣆'), + (0x118A7, 'M', '𑣇'), + (0x118A8, 'M', '𑣈'), + (0x118A9, 'M', '𑣉'), + (0x118AA, 'M', '𑣊'), + ] + +def _seg_58() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x118AB, 'M', '𑣋'), + (0x118AC, 'M', '𑣌'), + (0x118AD, 'M', '𑣍'), + (0x118AE, 'M', '𑣎'), + (0x118AF, 'M', '𑣏'), + (0x118B0, 'M', '𑣐'), + (0x118B1, 'M', '𑣑'), + (0x118B2, 'M', '𑣒'), + (0x118B3, 'M', '𑣓'), + (0x118B4, 'M', '𑣔'), + (0x118B5, 'M', '𑣕'), + (0x118B6, 'M', '𑣖'), + (0x118B7, 'M', '𑣗'), + (0x118B8, 'M', '𑣘'), + (0x118B9, 'M', '𑣙'), + (0x118BA, 'M', '𑣚'), + (0x118BB, 'M', '𑣛'), + (0x118BC, 'M', '𑣜'), + (0x118BD, 'M', '𑣝'), + (0x118BE, 'M', '𑣞'), + (0x118BF, 'M', '𑣟'), + (0x118C0, 'V'), + (0x118F3, 'X'), + (0x118FF, 'V'), + (0x11907, 'X'), + (0x11909, 'V'), + (0x1190A, 'X'), + (0x1190C, 'V'), + (0x11914, 'X'), + (0x11915, 'V'), + (0x11917, 'X'), + (0x11918, 'V'), + (0x11936, 'X'), + (0x11937, 'V'), + (0x11939, 'X'), + (0x1193B, 'V'), + (0x11947, 'X'), + (0x11950, 'V'), + (0x1195A, 'X'), + (0x119A0, 'V'), + (0x119A8, 'X'), + (0x119AA, 'V'), + (0x119D8, 'X'), + (0x119DA, 'V'), + (0x119E5, 'X'), + (0x11A00, 'V'), + (0x11A48, 'X'), + (0x11A50, 'V'), + (0x11AA3, 'X'), + (0x11AB0, 'V'), + (0x11AF9, 'X'), + (0x11B00, 'V'), + (0x11B0A, 'X'), + (0x11C00, 'V'), + (0x11C09, 'X'), + (0x11C0A, 'V'), + (0x11C37, 'X'), + (0x11C38, 'V'), + (0x11C46, 'X'), + (0x11C50, 'V'), + (0x11C6D, 'X'), + (0x11C70, 'V'), + (0x11C90, 'X'), + (0x11C92, 'V'), + (0x11CA8, 'X'), + (0x11CA9, 'V'), + (0x11CB7, 'X'), + (0x11D00, 'V'), + (0x11D07, 'X'), + (0x11D08, 'V'), + (0x11D0A, 'X'), + (0x11D0B, 'V'), + (0x11D37, 'X'), + (0x11D3A, 'V'), + (0x11D3B, 'X'), + (0x11D3C, 'V'), + (0x11D3E, 'X'), + (0x11D3F, 'V'), + (0x11D48, 'X'), + (0x11D50, 'V'), + (0x11D5A, 'X'), + (0x11D60, 'V'), + (0x11D66, 'X'), + (0x11D67, 'V'), + (0x11D69, 'X'), + (0x11D6A, 'V'), + (0x11D8F, 'X'), + (0x11D90, 'V'), + (0x11D92, 'X'), + (0x11D93, 'V'), + (0x11D99, 'X'), + (0x11DA0, 'V'), + (0x11DAA, 'X'), + (0x11EE0, 'V'), + (0x11EF9, 'X'), + (0x11F00, 'V'), + (0x11F11, 'X'), + (0x11F12, 'V'), + (0x11F3B, 'X'), + (0x11F3E, 'V'), + ] + +def _seg_59() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x11F5A, 'X'), + (0x11FB0, 'V'), + (0x11FB1, 'X'), + (0x11FC0, 'V'), + (0x11FF2, 'X'), + (0x11FFF, 'V'), + (0x1239A, 'X'), + (0x12400, 'V'), + (0x1246F, 'X'), + (0x12470, 'V'), + (0x12475, 'X'), + (0x12480, 'V'), + (0x12544, 'X'), + (0x12F90, 'V'), + (0x12FF3, 'X'), + (0x13000, 'V'), + (0x13430, 'X'), + (0x13440, 'V'), + (0x13456, 'X'), + (0x14400, 'V'), + (0x14647, 'X'), + (0x16800, 'V'), + (0x16A39, 'X'), + (0x16A40, 'V'), + (0x16A5F, 'X'), + (0x16A60, 'V'), + (0x16A6A, 'X'), + (0x16A6E, 'V'), + (0x16ABF, 'X'), + (0x16AC0, 'V'), + (0x16ACA, 'X'), + (0x16AD0, 'V'), + (0x16AEE, 'X'), + (0x16AF0, 'V'), + (0x16AF6, 'X'), + (0x16B00, 'V'), + (0x16B46, 'X'), + (0x16B50, 'V'), + (0x16B5A, 'X'), + (0x16B5B, 'V'), + (0x16B62, 'X'), + (0x16B63, 'V'), + (0x16B78, 'X'), + (0x16B7D, 'V'), + (0x16B90, 'X'), + (0x16E40, 'M', '𖹠'), + (0x16E41, 'M', '𖹡'), + (0x16E42, 'M', '𖹢'), + (0x16E43, 'M', '𖹣'), + (0x16E44, 'M', '𖹤'), + (0x16E45, 'M', '𖹥'), + (0x16E46, 'M', '𖹦'), + (0x16E47, 'M', '𖹧'), + (0x16E48, 'M', '𖹨'), + (0x16E49, 'M', '𖹩'), + (0x16E4A, 'M', '𖹪'), + (0x16E4B, 'M', '𖹫'), + (0x16E4C, 'M', '𖹬'), + (0x16E4D, 'M', '𖹭'), + (0x16E4E, 'M', '𖹮'), + (0x16E4F, 'M', '𖹯'), + (0x16E50, 'M', '𖹰'), + (0x16E51, 'M', '𖹱'), + (0x16E52, 'M', '𖹲'), + (0x16E53, 'M', '𖹳'), + (0x16E54, 'M', '𖹴'), + (0x16E55, 'M', '𖹵'), + (0x16E56, 'M', '𖹶'), + (0x16E57, 'M', '𖹷'), + (0x16E58, 'M', '𖹸'), + (0x16E59, 'M', '𖹹'), + (0x16E5A, 'M', '𖹺'), + (0x16E5B, 'M', '𖹻'), + (0x16E5C, 'M', '𖹼'), + (0x16E5D, 'M', '𖹽'), + (0x16E5E, 'M', '𖹾'), + (0x16E5F, 'M', '𖹿'), + (0x16E60, 'V'), + (0x16E9B, 'X'), + (0x16F00, 'V'), + (0x16F4B, 'X'), + (0x16F4F, 'V'), + (0x16F88, 'X'), + (0x16F8F, 'V'), + (0x16FA0, 'X'), + (0x16FE0, 'V'), + (0x16FE5, 'X'), + (0x16FF0, 'V'), + (0x16FF2, 'X'), + (0x17000, 'V'), + (0x187F8, 'X'), + (0x18800, 'V'), + (0x18CD6, 'X'), + (0x18D00, 'V'), + (0x18D09, 'X'), + (0x1AFF0, 'V'), + (0x1AFF4, 'X'), + (0x1AFF5, 'V'), + (0x1AFFC, 'X'), + (0x1AFFD, 'V'), + ] + +def _seg_60() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1AFFF, 'X'), + (0x1B000, 'V'), + (0x1B123, 'X'), + (0x1B132, 'V'), + (0x1B133, 'X'), + (0x1B150, 'V'), + (0x1B153, 'X'), + (0x1B155, 'V'), + (0x1B156, 'X'), + (0x1B164, 'V'), + (0x1B168, 'X'), + (0x1B170, 'V'), + (0x1B2FC, 'X'), + (0x1BC00, 'V'), + (0x1BC6B, 'X'), + (0x1BC70, 'V'), + (0x1BC7D, 'X'), + (0x1BC80, 'V'), + (0x1BC89, 'X'), + (0x1BC90, 'V'), + (0x1BC9A, 'X'), + (0x1BC9C, 'V'), + (0x1BCA0, 'I'), + (0x1BCA4, 'X'), + (0x1CF00, 'V'), + (0x1CF2E, 'X'), + (0x1CF30, 'V'), + (0x1CF47, 'X'), + (0x1CF50, 'V'), + (0x1CFC4, 'X'), + (0x1D000, 'V'), + (0x1D0F6, 'X'), + (0x1D100, 'V'), + (0x1D127, 'X'), + (0x1D129, 'V'), + (0x1D15E, 'M', '𝅗𝅥'), + (0x1D15F, 'M', '𝅘𝅥'), + (0x1D160, 'M', '𝅘𝅥𝅮'), + (0x1D161, 'M', '𝅘𝅥𝅯'), + (0x1D162, 'M', '𝅘𝅥𝅰'), + (0x1D163, 'M', '𝅘𝅥𝅱'), + (0x1D164, 'M', '𝅘𝅥𝅲'), + (0x1D165, 'V'), + (0x1D173, 'X'), + (0x1D17B, 'V'), + (0x1D1BB, 'M', '𝆹𝅥'), + (0x1D1BC, 'M', '𝆺𝅥'), + (0x1D1BD, 'M', '𝆹𝅥𝅮'), + (0x1D1BE, 'M', '𝆺𝅥𝅮'), + (0x1D1BF, 'M', '𝆹𝅥𝅯'), + (0x1D1C0, 'M', '𝆺𝅥𝅯'), + (0x1D1C1, 'V'), + (0x1D1EB, 'X'), + (0x1D200, 'V'), + (0x1D246, 'X'), + (0x1D2C0, 'V'), + (0x1D2D4, 'X'), + (0x1D2E0, 'V'), + (0x1D2F4, 'X'), + (0x1D300, 'V'), + (0x1D357, 'X'), + (0x1D360, 'V'), + (0x1D379, 'X'), + (0x1D400, 'M', 'a'), + (0x1D401, 'M', 'b'), + (0x1D402, 'M', 'c'), + (0x1D403, 'M', 'd'), + (0x1D404, 'M', 'e'), + (0x1D405, 'M', 'f'), + (0x1D406, 'M', 'g'), + (0x1D407, 'M', 'h'), + (0x1D408, 'M', 'i'), + (0x1D409, 'M', 'j'), + (0x1D40A, 'M', 'k'), + (0x1D40B, 'M', 'l'), + (0x1D40C, 'M', 'm'), + (0x1D40D, 'M', 'n'), + (0x1D40E, 'M', 'o'), + (0x1D40F, 'M', 'p'), + (0x1D410, 'M', 'q'), + (0x1D411, 'M', 'r'), + (0x1D412, 'M', 's'), + (0x1D413, 'M', 't'), + (0x1D414, 'M', 'u'), + (0x1D415, 'M', 'v'), + (0x1D416, 'M', 'w'), + (0x1D417, 'M', 'x'), + (0x1D418, 'M', 'y'), + (0x1D419, 'M', 'z'), + (0x1D41A, 'M', 'a'), + (0x1D41B, 'M', 'b'), + (0x1D41C, 'M', 'c'), + (0x1D41D, 'M', 'd'), + (0x1D41E, 'M', 'e'), + (0x1D41F, 'M', 'f'), + (0x1D420, 'M', 'g'), + (0x1D421, 'M', 'h'), + (0x1D422, 'M', 'i'), + (0x1D423, 'M', 'j'), + (0x1D424, 'M', 'k'), + ] + +def _seg_61() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D425, 'M', 'l'), + (0x1D426, 'M', 'm'), + (0x1D427, 'M', 'n'), + (0x1D428, 'M', 'o'), + (0x1D429, 'M', 'p'), + (0x1D42A, 'M', 'q'), + (0x1D42B, 'M', 'r'), + (0x1D42C, 'M', 's'), + (0x1D42D, 'M', 't'), + (0x1D42E, 'M', 'u'), + (0x1D42F, 'M', 'v'), + (0x1D430, 'M', 'w'), + (0x1D431, 'M', 'x'), + (0x1D432, 'M', 'y'), + (0x1D433, 'M', 'z'), + (0x1D434, 'M', 'a'), + (0x1D435, 'M', 'b'), + (0x1D436, 'M', 'c'), + (0x1D437, 'M', 'd'), + (0x1D438, 'M', 'e'), + (0x1D439, 'M', 'f'), + (0x1D43A, 'M', 'g'), + (0x1D43B, 'M', 'h'), + (0x1D43C, 'M', 'i'), + (0x1D43D, 'M', 'j'), + (0x1D43E, 'M', 'k'), + (0x1D43F, 'M', 'l'), + (0x1D440, 'M', 'm'), + (0x1D441, 'M', 'n'), + (0x1D442, 'M', 'o'), + (0x1D443, 'M', 'p'), + (0x1D444, 'M', 'q'), + (0x1D445, 'M', 'r'), + (0x1D446, 'M', 's'), + (0x1D447, 'M', 't'), + (0x1D448, 'M', 'u'), + (0x1D449, 'M', 'v'), + (0x1D44A, 'M', 'w'), + (0x1D44B, 'M', 'x'), + (0x1D44C, 'M', 'y'), + (0x1D44D, 'M', 'z'), + (0x1D44E, 'M', 'a'), + (0x1D44F, 'M', 'b'), + (0x1D450, 'M', 'c'), + (0x1D451, 'M', 'd'), + (0x1D452, 'M', 'e'), + (0x1D453, 'M', 'f'), + (0x1D454, 'M', 'g'), + (0x1D455, 'X'), + (0x1D456, 'M', 'i'), + (0x1D457, 'M', 'j'), + (0x1D458, 'M', 'k'), + (0x1D459, 'M', 'l'), + (0x1D45A, 'M', 'm'), + (0x1D45B, 'M', 'n'), + (0x1D45C, 'M', 'o'), + (0x1D45D, 'M', 'p'), + (0x1D45E, 'M', 'q'), + (0x1D45F, 'M', 'r'), + (0x1D460, 'M', 's'), + (0x1D461, 'M', 't'), + (0x1D462, 'M', 'u'), + (0x1D463, 'M', 'v'), + (0x1D464, 'M', 'w'), + (0x1D465, 'M', 'x'), + (0x1D466, 'M', 'y'), + (0x1D467, 'M', 'z'), + (0x1D468, 'M', 'a'), + (0x1D469, 'M', 'b'), + (0x1D46A, 'M', 'c'), + (0x1D46B, 'M', 'd'), + (0x1D46C, 'M', 'e'), + (0x1D46D, 'M', 'f'), + (0x1D46E, 'M', 'g'), + (0x1D46F, 'M', 'h'), + (0x1D470, 'M', 'i'), + (0x1D471, 'M', 'j'), + (0x1D472, 'M', 'k'), + (0x1D473, 'M', 'l'), + (0x1D474, 'M', 'm'), + (0x1D475, 'M', 'n'), + (0x1D476, 'M', 'o'), + (0x1D477, 'M', 'p'), + (0x1D478, 'M', 'q'), + (0x1D479, 'M', 'r'), + (0x1D47A, 'M', 's'), + (0x1D47B, 'M', 't'), + (0x1D47C, 'M', 'u'), + (0x1D47D, 'M', 'v'), + (0x1D47E, 'M', 'w'), + (0x1D47F, 'M', 'x'), + (0x1D480, 'M', 'y'), + (0x1D481, 'M', 'z'), + (0x1D482, 'M', 'a'), + (0x1D483, 'M', 'b'), + (0x1D484, 'M', 'c'), + (0x1D485, 'M', 'd'), + (0x1D486, 'M', 'e'), + (0x1D487, 'M', 'f'), + (0x1D488, 'M', 'g'), + ] + +def _seg_62() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D489, 'M', 'h'), + (0x1D48A, 'M', 'i'), + (0x1D48B, 'M', 'j'), + (0x1D48C, 'M', 'k'), + (0x1D48D, 'M', 'l'), + (0x1D48E, 'M', 'm'), + (0x1D48F, 'M', 'n'), + (0x1D490, 'M', 'o'), + (0x1D491, 'M', 'p'), + (0x1D492, 'M', 'q'), + (0x1D493, 'M', 'r'), + (0x1D494, 'M', 's'), + (0x1D495, 'M', 't'), + (0x1D496, 'M', 'u'), + (0x1D497, 'M', 'v'), + (0x1D498, 'M', 'w'), + (0x1D499, 'M', 'x'), + (0x1D49A, 'M', 'y'), + (0x1D49B, 'M', 'z'), + (0x1D49C, 'M', 'a'), + (0x1D49D, 'X'), + (0x1D49E, 'M', 'c'), + (0x1D49F, 'M', 'd'), + (0x1D4A0, 'X'), + (0x1D4A2, 'M', 'g'), + (0x1D4A3, 'X'), + (0x1D4A5, 'M', 'j'), + (0x1D4A6, 'M', 'k'), + (0x1D4A7, 'X'), + (0x1D4A9, 'M', 'n'), + (0x1D4AA, 'M', 'o'), + (0x1D4AB, 'M', 'p'), + (0x1D4AC, 'M', 'q'), + (0x1D4AD, 'X'), + (0x1D4AE, 'M', 's'), + (0x1D4AF, 'M', 't'), + (0x1D4B0, 'M', 'u'), + (0x1D4B1, 'M', 'v'), + (0x1D4B2, 'M', 'w'), + (0x1D4B3, 'M', 'x'), + (0x1D4B4, 'M', 'y'), + (0x1D4B5, 'M', 'z'), + (0x1D4B6, 'M', 'a'), + (0x1D4B7, 'M', 'b'), + (0x1D4B8, 'M', 'c'), + (0x1D4B9, 'M', 'd'), + (0x1D4BA, 'X'), + (0x1D4BB, 'M', 'f'), + (0x1D4BC, 'X'), + (0x1D4BD, 'M', 'h'), + (0x1D4BE, 'M', 'i'), + (0x1D4BF, 'M', 'j'), + (0x1D4C0, 'M', 'k'), + (0x1D4C1, 'M', 'l'), + (0x1D4C2, 'M', 'm'), + (0x1D4C3, 'M', 'n'), + (0x1D4C4, 'X'), + (0x1D4C5, 'M', 'p'), + (0x1D4C6, 'M', 'q'), + (0x1D4C7, 'M', 'r'), + (0x1D4C8, 'M', 's'), + (0x1D4C9, 'M', 't'), + (0x1D4CA, 'M', 'u'), + (0x1D4CB, 'M', 'v'), + (0x1D4CC, 'M', 'w'), + (0x1D4CD, 'M', 'x'), + (0x1D4CE, 'M', 'y'), + (0x1D4CF, 'M', 'z'), + (0x1D4D0, 'M', 'a'), + (0x1D4D1, 'M', 'b'), + (0x1D4D2, 'M', 'c'), + (0x1D4D3, 'M', 'd'), + (0x1D4D4, 'M', 'e'), + (0x1D4D5, 'M', 'f'), + (0x1D4D6, 'M', 'g'), + (0x1D4D7, 'M', 'h'), + (0x1D4D8, 'M', 'i'), + (0x1D4D9, 'M', 'j'), + (0x1D4DA, 'M', 'k'), + (0x1D4DB, 'M', 'l'), + (0x1D4DC, 'M', 'm'), + (0x1D4DD, 'M', 'n'), + (0x1D4DE, 'M', 'o'), + (0x1D4DF, 'M', 'p'), + (0x1D4E0, 'M', 'q'), + (0x1D4E1, 'M', 'r'), + (0x1D4E2, 'M', 's'), + (0x1D4E3, 'M', 't'), + (0x1D4E4, 'M', 'u'), + (0x1D4E5, 'M', 'v'), + (0x1D4E6, 'M', 'w'), + (0x1D4E7, 'M', 'x'), + (0x1D4E8, 'M', 'y'), + (0x1D4E9, 'M', 'z'), + (0x1D4EA, 'M', 'a'), + (0x1D4EB, 'M', 'b'), + (0x1D4EC, 'M', 'c'), + (0x1D4ED, 'M', 'd'), + (0x1D4EE, 'M', 'e'), + (0x1D4EF, 'M', 'f'), + ] + +def _seg_63() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D4F0, 'M', 'g'), + (0x1D4F1, 'M', 'h'), + (0x1D4F2, 'M', 'i'), + (0x1D4F3, 'M', 'j'), + (0x1D4F4, 'M', 'k'), + (0x1D4F5, 'M', 'l'), + (0x1D4F6, 'M', 'm'), + (0x1D4F7, 'M', 'n'), + (0x1D4F8, 'M', 'o'), + (0x1D4F9, 'M', 'p'), + (0x1D4FA, 'M', 'q'), + (0x1D4FB, 'M', 'r'), + (0x1D4FC, 'M', 's'), + (0x1D4FD, 'M', 't'), + (0x1D4FE, 'M', 'u'), + (0x1D4FF, 'M', 'v'), + (0x1D500, 'M', 'w'), + (0x1D501, 'M', 'x'), + (0x1D502, 'M', 'y'), + (0x1D503, 'M', 'z'), + (0x1D504, 'M', 'a'), + (0x1D505, 'M', 'b'), + (0x1D506, 'X'), + (0x1D507, 'M', 'd'), + (0x1D508, 'M', 'e'), + (0x1D509, 'M', 'f'), + (0x1D50A, 'M', 'g'), + (0x1D50B, 'X'), + (0x1D50D, 'M', 'j'), + (0x1D50E, 'M', 'k'), + (0x1D50F, 'M', 'l'), + (0x1D510, 'M', 'm'), + (0x1D511, 'M', 'n'), + (0x1D512, 'M', 'o'), + (0x1D513, 'M', 'p'), + (0x1D514, 'M', 'q'), + (0x1D515, 'X'), + (0x1D516, 'M', 's'), + (0x1D517, 'M', 't'), + (0x1D518, 'M', 'u'), + (0x1D519, 'M', 'v'), + (0x1D51A, 'M', 'w'), + (0x1D51B, 'M', 'x'), + (0x1D51C, 'M', 'y'), + (0x1D51D, 'X'), + (0x1D51E, 'M', 'a'), + (0x1D51F, 'M', 'b'), + (0x1D520, 'M', 'c'), + (0x1D521, 'M', 'd'), + (0x1D522, 'M', 'e'), + (0x1D523, 'M', 'f'), + (0x1D524, 'M', 'g'), + (0x1D525, 'M', 'h'), + (0x1D526, 'M', 'i'), + (0x1D527, 'M', 'j'), + (0x1D528, 'M', 'k'), + (0x1D529, 'M', 'l'), + (0x1D52A, 'M', 'm'), + (0x1D52B, 'M', 'n'), + (0x1D52C, 'M', 'o'), + (0x1D52D, 'M', 'p'), + (0x1D52E, 'M', 'q'), + (0x1D52F, 'M', 'r'), + (0x1D530, 'M', 's'), + (0x1D531, 'M', 't'), + (0x1D532, 'M', 'u'), + (0x1D533, 'M', 'v'), + (0x1D534, 'M', 'w'), + (0x1D535, 'M', 'x'), + (0x1D536, 'M', 'y'), + (0x1D537, 'M', 'z'), + (0x1D538, 'M', 'a'), + (0x1D539, 'M', 'b'), + (0x1D53A, 'X'), + (0x1D53B, 'M', 'd'), + (0x1D53C, 'M', 'e'), + (0x1D53D, 'M', 'f'), + (0x1D53E, 'M', 'g'), + (0x1D53F, 'X'), + (0x1D540, 'M', 'i'), + (0x1D541, 'M', 'j'), + (0x1D542, 'M', 'k'), + (0x1D543, 'M', 'l'), + (0x1D544, 'M', 'm'), + (0x1D545, 'X'), + (0x1D546, 'M', 'o'), + (0x1D547, 'X'), + (0x1D54A, 'M', 's'), + (0x1D54B, 'M', 't'), + (0x1D54C, 'M', 'u'), + (0x1D54D, 'M', 'v'), + (0x1D54E, 'M', 'w'), + (0x1D54F, 'M', 'x'), + (0x1D550, 'M', 'y'), + (0x1D551, 'X'), + (0x1D552, 'M', 'a'), + (0x1D553, 'M', 'b'), + (0x1D554, 'M', 'c'), + (0x1D555, 'M', 'd'), + (0x1D556, 'M', 'e'), + ] + +def _seg_64() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D557, 'M', 'f'), + (0x1D558, 'M', 'g'), + (0x1D559, 'M', 'h'), + (0x1D55A, 'M', 'i'), + (0x1D55B, 'M', 'j'), + (0x1D55C, 'M', 'k'), + (0x1D55D, 'M', 'l'), + (0x1D55E, 'M', 'm'), + (0x1D55F, 'M', 'n'), + (0x1D560, 'M', 'o'), + (0x1D561, 'M', 'p'), + (0x1D562, 'M', 'q'), + (0x1D563, 'M', 'r'), + (0x1D564, 'M', 's'), + (0x1D565, 'M', 't'), + (0x1D566, 'M', 'u'), + (0x1D567, 'M', 'v'), + (0x1D568, 'M', 'w'), + (0x1D569, 'M', 'x'), + (0x1D56A, 'M', 'y'), + (0x1D56B, 'M', 'z'), + (0x1D56C, 'M', 'a'), + (0x1D56D, 'M', 'b'), + (0x1D56E, 'M', 'c'), + (0x1D56F, 'M', 'd'), + (0x1D570, 'M', 'e'), + (0x1D571, 'M', 'f'), + (0x1D572, 'M', 'g'), + (0x1D573, 'M', 'h'), + (0x1D574, 'M', 'i'), + (0x1D575, 'M', 'j'), + (0x1D576, 'M', 'k'), + (0x1D577, 'M', 'l'), + (0x1D578, 'M', 'm'), + (0x1D579, 'M', 'n'), + (0x1D57A, 'M', 'o'), + (0x1D57B, 'M', 'p'), + (0x1D57C, 'M', 'q'), + (0x1D57D, 'M', 'r'), + (0x1D57E, 'M', 's'), + (0x1D57F, 'M', 't'), + (0x1D580, 'M', 'u'), + (0x1D581, 'M', 'v'), + (0x1D582, 'M', 'w'), + (0x1D583, 'M', 'x'), + (0x1D584, 'M', 'y'), + (0x1D585, 'M', 'z'), + (0x1D586, 'M', 'a'), + (0x1D587, 'M', 'b'), + (0x1D588, 'M', 'c'), + (0x1D589, 'M', 'd'), + (0x1D58A, 'M', 'e'), + (0x1D58B, 'M', 'f'), + (0x1D58C, 'M', 'g'), + (0x1D58D, 'M', 'h'), + (0x1D58E, 'M', 'i'), + (0x1D58F, 'M', 'j'), + (0x1D590, 'M', 'k'), + (0x1D591, 'M', 'l'), + (0x1D592, 'M', 'm'), + (0x1D593, 'M', 'n'), + (0x1D594, 'M', 'o'), + (0x1D595, 'M', 'p'), + (0x1D596, 'M', 'q'), + (0x1D597, 'M', 'r'), + (0x1D598, 'M', 's'), + (0x1D599, 'M', 't'), + (0x1D59A, 'M', 'u'), + (0x1D59B, 'M', 'v'), + (0x1D59C, 'M', 'w'), + (0x1D59D, 'M', 'x'), + (0x1D59E, 'M', 'y'), + (0x1D59F, 'M', 'z'), + (0x1D5A0, 'M', 'a'), + (0x1D5A1, 'M', 'b'), + (0x1D5A2, 'M', 'c'), + (0x1D5A3, 'M', 'd'), + (0x1D5A4, 'M', 'e'), + (0x1D5A5, 'M', 'f'), + (0x1D5A6, 'M', 'g'), + (0x1D5A7, 'M', 'h'), + (0x1D5A8, 'M', 'i'), + (0x1D5A9, 'M', 'j'), + (0x1D5AA, 'M', 'k'), + (0x1D5AB, 'M', 'l'), + (0x1D5AC, 'M', 'm'), + (0x1D5AD, 'M', 'n'), + (0x1D5AE, 'M', 'o'), + (0x1D5AF, 'M', 'p'), + (0x1D5B0, 'M', 'q'), + (0x1D5B1, 'M', 'r'), + (0x1D5B2, 'M', 's'), + (0x1D5B3, 'M', 't'), + (0x1D5B4, 'M', 'u'), + (0x1D5B5, 'M', 'v'), + (0x1D5B6, 'M', 'w'), + (0x1D5B7, 'M', 'x'), + (0x1D5B8, 'M', 'y'), + (0x1D5B9, 'M', 'z'), + (0x1D5BA, 'M', 'a'), + ] + +def _seg_65() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D5BB, 'M', 'b'), + (0x1D5BC, 'M', 'c'), + (0x1D5BD, 'M', 'd'), + (0x1D5BE, 'M', 'e'), + (0x1D5BF, 'M', 'f'), + (0x1D5C0, 'M', 'g'), + (0x1D5C1, 'M', 'h'), + (0x1D5C2, 'M', 'i'), + (0x1D5C3, 'M', 'j'), + (0x1D5C4, 'M', 'k'), + (0x1D5C5, 'M', 'l'), + (0x1D5C6, 'M', 'm'), + (0x1D5C7, 'M', 'n'), + (0x1D5C8, 'M', 'o'), + (0x1D5C9, 'M', 'p'), + (0x1D5CA, 'M', 'q'), + (0x1D5CB, 'M', 'r'), + (0x1D5CC, 'M', 's'), + (0x1D5CD, 'M', 't'), + (0x1D5CE, 'M', 'u'), + (0x1D5CF, 'M', 'v'), + (0x1D5D0, 'M', 'w'), + (0x1D5D1, 'M', 'x'), + (0x1D5D2, 'M', 'y'), + (0x1D5D3, 'M', 'z'), + (0x1D5D4, 'M', 'a'), + (0x1D5D5, 'M', 'b'), + (0x1D5D6, 'M', 'c'), + (0x1D5D7, 'M', 'd'), + (0x1D5D8, 'M', 'e'), + (0x1D5D9, 'M', 'f'), + (0x1D5DA, 'M', 'g'), + (0x1D5DB, 'M', 'h'), + (0x1D5DC, 'M', 'i'), + (0x1D5DD, 'M', 'j'), + (0x1D5DE, 'M', 'k'), + (0x1D5DF, 'M', 'l'), + (0x1D5E0, 'M', 'm'), + (0x1D5E1, 'M', 'n'), + (0x1D5E2, 'M', 'o'), + (0x1D5E3, 'M', 'p'), + (0x1D5E4, 'M', 'q'), + (0x1D5E5, 'M', 'r'), + (0x1D5E6, 'M', 's'), + (0x1D5E7, 'M', 't'), + (0x1D5E8, 'M', 'u'), + (0x1D5E9, 'M', 'v'), + (0x1D5EA, 'M', 'w'), + (0x1D5EB, 'M', 'x'), + (0x1D5EC, 'M', 'y'), + (0x1D5ED, 'M', 'z'), + (0x1D5EE, 'M', 'a'), + (0x1D5EF, 'M', 'b'), + (0x1D5F0, 'M', 'c'), + (0x1D5F1, 'M', 'd'), + (0x1D5F2, 'M', 'e'), + (0x1D5F3, 'M', 'f'), + (0x1D5F4, 'M', 'g'), + (0x1D5F5, 'M', 'h'), + (0x1D5F6, 'M', 'i'), + (0x1D5F7, 'M', 'j'), + (0x1D5F8, 'M', 'k'), + (0x1D5F9, 'M', 'l'), + (0x1D5FA, 'M', 'm'), + (0x1D5FB, 'M', 'n'), + (0x1D5FC, 'M', 'o'), + (0x1D5FD, 'M', 'p'), + (0x1D5FE, 'M', 'q'), + (0x1D5FF, 'M', 'r'), + (0x1D600, 'M', 's'), + (0x1D601, 'M', 't'), + (0x1D602, 'M', 'u'), + (0x1D603, 'M', 'v'), + (0x1D604, 'M', 'w'), + (0x1D605, 'M', 'x'), + (0x1D606, 'M', 'y'), + (0x1D607, 'M', 'z'), + (0x1D608, 'M', 'a'), + (0x1D609, 'M', 'b'), + (0x1D60A, 'M', 'c'), + (0x1D60B, 'M', 'd'), + (0x1D60C, 'M', 'e'), + (0x1D60D, 'M', 'f'), + (0x1D60E, 'M', 'g'), + (0x1D60F, 'M', 'h'), + (0x1D610, 'M', 'i'), + (0x1D611, 'M', 'j'), + (0x1D612, 'M', 'k'), + (0x1D613, 'M', 'l'), + (0x1D614, 'M', 'm'), + (0x1D615, 'M', 'n'), + (0x1D616, 'M', 'o'), + (0x1D617, 'M', 'p'), + (0x1D618, 'M', 'q'), + (0x1D619, 'M', 'r'), + (0x1D61A, 'M', 's'), + (0x1D61B, 'M', 't'), + (0x1D61C, 'M', 'u'), + (0x1D61D, 'M', 'v'), + (0x1D61E, 'M', 'w'), + ] + +def _seg_66() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D61F, 'M', 'x'), + (0x1D620, 'M', 'y'), + (0x1D621, 'M', 'z'), + (0x1D622, 'M', 'a'), + (0x1D623, 'M', 'b'), + (0x1D624, 'M', 'c'), + (0x1D625, 'M', 'd'), + (0x1D626, 'M', 'e'), + (0x1D627, 'M', 'f'), + (0x1D628, 'M', 'g'), + (0x1D629, 'M', 'h'), + (0x1D62A, 'M', 'i'), + (0x1D62B, 'M', 'j'), + (0x1D62C, 'M', 'k'), + (0x1D62D, 'M', 'l'), + (0x1D62E, 'M', 'm'), + (0x1D62F, 'M', 'n'), + (0x1D630, 'M', 'o'), + (0x1D631, 'M', 'p'), + (0x1D632, 'M', 'q'), + (0x1D633, 'M', 'r'), + (0x1D634, 'M', 's'), + (0x1D635, 'M', 't'), + (0x1D636, 'M', 'u'), + (0x1D637, 'M', 'v'), + (0x1D638, 'M', 'w'), + (0x1D639, 'M', 'x'), + (0x1D63A, 'M', 'y'), + (0x1D63B, 'M', 'z'), + (0x1D63C, 'M', 'a'), + (0x1D63D, 'M', 'b'), + (0x1D63E, 'M', 'c'), + (0x1D63F, 'M', 'd'), + (0x1D640, 'M', 'e'), + (0x1D641, 'M', 'f'), + (0x1D642, 'M', 'g'), + (0x1D643, 'M', 'h'), + (0x1D644, 'M', 'i'), + (0x1D645, 'M', 'j'), + (0x1D646, 'M', 'k'), + (0x1D647, 'M', 'l'), + (0x1D648, 'M', 'm'), + (0x1D649, 'M', 'n'), + (0x1D64A, 'M', 'o'), + (0x1D64B, 'M', 'p'), + (0x1D64C, 'M', 'q'), + (0x1D64D, 'M', 'r'), + (0x1D64E, 'M', 's'), + (0x1D64F, 'M', 't'), + (0x1D650, 'M', 'u'), + (0x1D651, 'M', 'v'), + (0x1D652, 'M', 'w'), + (0x1D653, 'M', 'x'), + (0x1D654, 'M', 'y'), + (0x1D655, 'M', 'z'), + (0x1D656, 'M', 'a'), + (0x1D657, 'M', 'b'), + (0x1D658, 'M', 'c'), + (0x1D659, 'M', 'd'), + (0x1D65A, 'M', 'e'), + (0x1D65B, 'M', 'f'), + (0x1D65C, 'M', 'g'), + (0x1D65D, 'M', 'h'), + (0x1D65E, 'M', 'i'), + (0x1D65F, 'M', 'j'), + (0x1D660, 'M', 'k'), + (0x1D661, 'M', 'l'), + (0x1D662, 'M', 'm'), + (0x1D663, 'M', 'n'), + (0x1D664, 'M', 'o'), + (0x1D665, 'M', 'p'), + (0x1D666, 'M', 'q'), + (0x1D667, 'M', 'r'), + (0x1D668, 'M', 's'), + (0x1D669, 'M', 't'), + (0x1D66A, 'M', 'u'), + (0x1D66B, 'M', 'v'), + (0x1D66C, 'M', 'w'), + (0x1D66D, 'M', 'x'), + (0x1D66E, 'M', 'y'), + (0x1D66F, 'M', 'z'), + (0x1D670, 'M', 'a'), + (0x1D671, 'M', 'b'), + (0x1D672, 'M', 'c'), + (0x1D673, 'M', 'd'), + (0x1D674, 'M', 'e'), + (0x1D675, 'M', 'f'), + (0x1D676, 'M', 'g'), + (0x1D677, 'M', 'h'), + (0x1D678, 'M', 'i'), + (0x1D679, 'M', 'j'), + (0x1D67A, 'M', 'k'), + (0x1D67B, 'M', 'l'), + (0x1D67C, 'M', 'm'), + (0x1D67D, 'M', 'n'), + (0x1D67E, 'M', 'o'), + (0x1D67F, 'M', 'p'), + (0x1D680, 'M', 'q'), + (0x1D681, 'M', 'r'), + (0x1D682, 'M', 's'), + ] + +def _seg_67() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D683, 'M', 't'), + (0x1D684, 'M', 'u'), + (0x1D685, 'M', 'v'), + (0x1D686, 'M', 'w'), + (0x1D687, 'M', 'x'), + (0x1D688, 'M', 'y'), + (0x1D689, 'M', 'z'), + (0x1D68A, 'M', 'a'), + (0x1D68B, 'M', 'b'), + (0x1D68C, 'M', 'c'), + (0x1D68D, 'M', 'd'), + (0x1D68E, 'M', 'e'), + (0x1D68F, 'M', 'f'), + (0x1D690, 'M', 'g'), + (0x1D691, 'M', 'h'), + (0x1D692, 'M', 'i'), + (0x1D693, 'M', 'j'), + (0x1D694, 'M', 'k'), + (0x1D695, 'M', 'l'), + (0x1D696, 'M', 'm'), + (0x1D697, 'M', 'n'), + (0x1D698, 'M', 'o'), + (0x1D699, 'M', 'p'), + (0x1D69A, 'M', 'q'), + (0x1D69B, 'M', 'r'), + (0x1D69C, 'M', 's'), + (0x1D69D, 'M', 't'), + (0x1D69E, 'M', 'u'), + (0x1D69F, 'M', 'v'), + (0x1D6A0, 'M', 'w'), + (0x1D6A1, 'M', 'x'), + (0x1D6A2, 'M', 'y'), + (0x1D6A3, 'M', 'z'), + (0x1D6A4, 'M', 'ı'), + (0x1D6A5, 'M', 'ȷ'), + (0x1D6A6, 'X'), + (0x1D6A8, 'M', 'α'), + (0x1D6A9, 'M', 'β'), + (0x1D6AA, 'M', 'γ'), + (0x1D6AB, 'M', 'δ'), + (0x1D6AC, 'M', 'ε'), + (0x1D6AD, 'M', 'ζ'), + (0x1D6AE, 'M', 'η'), + (0x1D6AF, 'M', 'θ'), + (0x1D6B0, 'M', 'ι'), + (0x1D6B1, 'M', 'κ'), + (0x1D6B2, 'M', 'λ'), + (0x1D6B3, 'M', 'μ'), + (0x1D6B4, 'M', 'ν'), + (0x1D6B5, 'M', 'ξ'), + (0x1D6B6, 'M', 'ο'), + (0x1D6B7, 'M', 'π'), + (0x1D6B8, 'M', 'ρ'), + (0x1D6B9, 'M', 'θ'), + (0x1D6BA, 'M', 'σ'), + (0x1D6BB, 'M', 'τ'), + (0x1D6BC, 'M', 'υ'), + (0x1D6BD, 'M', 'φ'), + (0x1D6BE, 'M', 'χ'), + (0x1D6BF, 'M', 'ψ'), + (0x1D6C0, 'M', 'ω'), + (0x1D6C1, 'M', '∇'), + (0x1D6C2, 'M', 'α'), + (0x1D6C3, 'M', 'β'), + (0x1D6C4, 'M', 'γ'), + (0x1D6C5, 'M', 'δ'), + (0x1D6C6, 'M', 'ε'), + (0x1D6C7, 'M', 'ζ'), + (0x1D6C8, 'M', 'η'), + (0x1D6C9, 'M', 'θ'), + (0x1D6CA, 'M', 'ι'), + (0x1D6CB, 'M', 'κ'), + (0x1D6CC, 'M', 'λ'), + (0x1D6CD, 'M', 'μ'), + (0x1D6CE, 'M', 'ν'), + (0x1D6CF, 'M', 'ξ'), + (0x1D6D0, 'M', 'ο'), + (0x1D6D1, 'M', 'π'), + (0x1D6D2, 'M', 'ρ'), + (0x1D6D3, 'M', 'σ'), + (0x1D6D5, 'M', 'τ'), + (0x1D6D6, 'M', 'υ'), + (0x1D6D7, 'M', 'φ'), + (0x1D6D8, 'M', 'χ'), + (0x1D6D9, 'M', 'ψ'), + (0x1D6DA, 'M', 'ω'), + (0x1D6DB, 'M', '∂'), + (0x1D6DC, 'M', 'ε'), + (0x1D6DD, 'M', 'θ'), + (0x1D6DE, 'M', 'κ'), + (0x1D6DF, 'M', 'φ'), + (0x1D6E0, 'M', 'ρ'), + (0x1D6E1, 'M', 'π'), + (0x1D6E2, 'M', 'α'), + (0x1D6E3, 'M', 'β'), + (0x1D6E4, 'M', 'γ'), + (0x1D6E5, 'M', 'δ'), + (0x1D6E6, 'M', 'ε'), + (0x1D6E7, 'M', 'ζ'), + (0x1D6E8, 'M', 'η'), + ] + +def _seg_68() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D6E9, 'M', 'θ'), + (0x1D6EA, 'M', 'ι'), + (0x1D6EB, 'M', 'κ'), + (0x1D6EC, 'M', 'λ'), + (0x1D6ED, 'M', 'μ'), + (0x1D6EE, 'M', 'ν'), + (0x1D6EF, 'M', 'ξ'), + (0x1D6F0, 'M', 'ο'), + (0x1D6F1, 'M', 'π'), + (0x1D6F2, 'M', 'ρ'), + (0x1D6F3, 'M', 'θ'), + (0x1D6F4, 'M', 'σ'), + (0x1D6F5, 'M', 'τ'), + (0x1D6F6, 'M', 'υ'), + (0x1D6F7, 'M', 'φ'), + (0x1D6F8, 'M', 'χ'), + (0x1D6F9, 'M', 'ψ'), + (0x1D6FA, 'M', 'ω'), + (0x1D6FB, 'M', '∇'), + (0x1D6FC, 'M', 'α'), + (0x1D6FD, 'M', 'β'), + (0x1D6FE, 'M', 'γ'), + (0x1D6FF, 'M', 'δ'), + (0x1D700, 'M', 'ε'), + (0x1D701, 'M', 'ζ'), + (0x1D702, 'M', 'η'), + (0x1D703, 'M', 'θ'), + (0x1D704, 'M', 'ι'), + (0x1D705, 'M', 'κ'), + (0x1D706, 'M', 'λ'), + (0x1D707, 'M', 'μ'), + (0x1D708, 'M', 'ν'), + (0x1D709, 'M', 'ξ'), + (0x1D70A, 'M', 'ο'), + (0x1D70B, 'M', 'π'), + (0x1D70C, 'M', 'ρ'), + (0x1D70D, 'M', 'σ'), + (0x1D70F, 'M', 'τ'), + (0x1D710, 'M', 'υ'), + (0x1D711, 'M', 'φ'), + (0x1D712, 'M', 'χ'), + (0x1D713, 'M', 'ψ'), + (0x1D714, 'M', 'ω'), + (0x1D715, 'M', '∂'), + (0x1D716, 'M', 'ε'), + (0x1D717, 'M', 'θ'), + (0x1D718, 'M', 'κ'), + (0x1D719, 'M', 'φ'), + (0x1D71A, 'M', 'ρ'), + (0x1D71B, 'M', 'π'), + (0x1D71C, 'M', 'α'), + (0x1D71D, 'M', 'β'), + (0x1D71E, 'M', 'γ'), + (0x1D71F, 'M', 'δ'), + (0x1D720, 'M', 'ε'), + (0x1D721, 'M', 'ζ'), + (0x1D722, 'M', 'η'), + (0x1D723, 'M', 'θ'), + (0x1D724, 'M', 'ι'), + (0x1D725, 'M', 'κ'), + (0x1D726, 'M', 'λ'), + (0x1D727, 'M', 'μ'), + (0x1D728, 'M', 'ν'), + (0x1D729, 'M', 'ξ'), + (0x1D72A, 'M', 'ο'), + (0x1D72B, 'M', 'π'), + (0x1D72C, 'M', 'ρ'), + (0x1D72D, 'M', 'θ'), + (0x1D72E, 'M', 'σ'), + (0x1D72F, 'M', 'τ'), + (0x1D730, 'M', 'υ'), + (0x1D731, 'M', 'φ'), + (0x1D732, 'M', 'χ'), + (0x1D733, 'M', 'ψ'), + (0x1D734, 'M', 'ω'), + (0x1D735, 'M', '∇'), + (0x1D736, 'M', 'α'), + (0x1D737, 'M', 'β'), + (0x1D738, 'M', 'γ'), + (0x1D739, 'M', 'δ'), + (0x1D73A, 'M', 'ε'), + (0x1D73B, 'M', 'ζ'), + (0x1D73C, 'M', 'η'), + (0x1D73D, 'M', 'θ'), + (0x1D73E, 'M', 'ι'), + (0x1D73F, 'M', 'κ'), + (0x1D740, 'M', 'λ'), + (0x1D741, 'M', 'μ'), + (0x1D742, 'M', 'ν'), + (0x1D743, 'M', 'ξ'), + (0x1D744, 'M', 'ο'), + (0x1D745, 'M', 'π'), + (0x1D746, 'M', 'ρ'), + (0x1D747, 'M', 'σ'), + (0x1D749, 'M', 'τ'), + (0x1D74A, 'M', 'υ'), + (0x1D74B, 'M', 'φ'), + (0x1D74C, 'M', 'χ'), + (0x1D74D, 'M', 'ψ'), + (0x1D74E, 'M', 'ω'), + ] + +def _seg_69() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D74F, 'M', '∂'), + (0x1D750, 'M', 'ε'), + (0x1D751, 'M', 'θ'), + (0x1D752, 'M', 'κ'), + (0x1D753, 'M', 'φ'), + (0x1D754, 'M', 'ρ'), + (0x1D755, 'M', 'π'), + (0x1D756, 'M', 'α'), + (0x1D757, 'M', 'β'), + (0x1D758, 'M', 'γ'), + (0x1D759, 'M', 'δ'), + (0x1D75A, 'M', 'ε'), + (0x1D75B, 'M', 'ζ'), + (0x1D75C, 'M', 'η'), + (0x1D75D, 'M', 'θ'), + (0x1D75E, 'M', 'ι'), + (0x1D75F, 'M', 'κ'), + (0x1D760, 'M', 'λ'), + (0x1D761, 'M', 'μ'), + (0x1D762, 'M', 'ν'), + (0x1D763, 'M', 'ξ'), + (0x1D764, 'M', 'ο'), + (0x1D765, 'M', 'π'), + (0x1D766, 'M', 'ρ'), + (0x1D767, 'M', 'θ'), + (0x1D768, 'M', 'σ'), + (0x1D769, 'M', 'τ'), + (0x1D76A, 'M', 'υ'), + (0x1D76B, 'M', 'φ'), + (0x1D76C, 'M', 'χ'), + (0x1D76D, 'M', 'ψ'), + (0x1D76E, 'M', 'ω'), + (0x1D76F, 'M', '∇'), + (0x1D770, 'M', 'α'), + (0x1D771, 'M', 'β'), + (0x1D772, 'M', 'γ'), + (0x1D773, 'M', 'δ'), + (0x1D774, 'M', 'ε'), + (0x1D775, 'M', 'ζ'), + (0x1D776, 'M', 'η'), + (0x1D777, 'M', 'θ'), + (0x1D778, 'M', 'ι'), + (0x1D779, 'M', 'κ'), + (0x1D77A, 'M', 'λ'), + (0x1D77B, 'M', 'μ'), + (0x1D77C, 'M', 'ν'), + (0x1D77D, 'M', 'ξ'), + (0x1D77E, 'M', 'ο'), + (0x1D77F, 'M', 'π'), + (0x1D780, 'M', 'ρ'), + (0x1D781, 'M', 'σ'), + (0x1D783, 'M', 'τ'), + (0x1D784, 'M', 'υ'), + (0x1D785, 'M', 'φ'), + (0x1D786, 'M', 'χ'), + (0x1D787, 'M', 'ψ'), + (0x1D788, 'M', 'ω'), + (0x1D789, 'M', '∂'), + (0x1D78A, 'M', 'ε'), + (0x1D78B, 'M', 'θ'), + (0x1D78C, 'M', 'κ'), + (0x1D78D, 'M', 'φ'), + (0x1D78E, 'M', 'ρ'), + (0x1D78F, 'M', 'π'), + (0x1D790, 'M', 'α'), + (0x1D791, 'M', 'β'), + (0x1D792, 'M', 'γ'), + (0x1D793, 'M', 'δ'), + (0x1D794, 'M', 'ε'), + (0x1D795, 'M', 'ζ'), + (0x1D796, 'M', 'η'), + (0x1D797, 'M', 'θ'), + (0x1D798, 'M', 'ι'), + (0x1D799, 'M', 'κ'), + (0x1D79A, 'M', 'λ'), + (0x1D79B, 'M', 'μ'), + (0x1D79C, 'M', 'ν'), + (0x1D79D, 'M', 'ξ'), + (0x1D79E, 'M', 'ο'), + (0x1D79F, 'M', 'π'), + (0x1D7A0, 'M', 'ρ'), + (0x1D7A1, 'M', 'θ'), + (0x1D7A2, 'M', 'σ'), + (0x1D7A3, 'M', 'τ'), + (0x1D7A4, 'M', 'υ'), + (0x1D7A5, 'M', 'φ'), + (0x1D7A6, 'M', 'χ'), + (0x1D7A7, 'M', 'ψ'), + (0x1D7A8, 'M', 'ω'), + (0x1D7A9, 'M', '∇'), + (0x1D7AA, 'M', 'α'), + (0x1D7AB, 'M', 'β'), + (0x1D7AC, 'M', 'γ'), + (0x1D7AD, 'M', 'δ'), + (0x1D7AE, 'M', 'ε'), + (0x1D7AF, 'M', 'ζ'), + (0x1D7B0, 'M', 'η'), + (0x1D7B1, 'M', 'θ'), + (0x1D7B2, 'M', 'ι'), + (0x1D7B3, 'M', 'κ'), + ] + +def _seg_70() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D7B4, 'M', 'λ'), + (0x1D7B5, 'M', 'μ'), + (0x1D7B6, 'M', 'ν'), + (0x1D7B7, 'M', 'ξ'), + (0x1D7B8, 'M', 'ο'), + (0x1D7B9, 'M', 'π'), + (0x1D7BA, 'M', 'ρ'), + (0x1D7BB, 'M', 'σ'), + (0x1D7BD, 'M', 'τ'), + (0x1D7BE, 'M', 'υ'), + (0x1D7BF, 'M', 'φ'), + (0x1D7C0, 'M', 'χ'), + (0x1D7C1, 'M', 'ψ'), + (0x1D7C2, 'M', 'ω'), + (0x1D7C3, 'M', '∂'), + (0x1D7C4, 'M', 'ε'), + (0x1D7C5, 'M', 'θ'), + (0x1D7C6, 'M', 'κ'), + (0x1D7C7, 'M', 'φ'), + (0x1D7C8, 'M', 'ρ'), + (0x1D7C9, 'M', 'π'), + (0x1D7CA, 'M', 'ϝ'), + (0x1D7CC, 'X'), + (0x1D7CE, 'M', '0'), + (0x1D7CF, 'M', '1'), + (0x1D7D0, 'M', '2'), + (0x1D7D1, 'M', '3'), + (0x1D7D2, 'M', '4'), + (0x1D7D3, 'M', '5'), + (0x1D7D4, 'M', '6'), + (0x1D7D5, 'M', '7'), + (0x1D7D6, 'M', '8'), + (0x1D7D7, 'M', '9'), + (0x1D7D8, 'M', '0'), + (0x1D7D9, 'M', '1'), + (0x1D7DA, 'M', '2'), + (0x1D7DB, 'M', '3'), + (0x1D7DC, 'M', '4'), + (0x1D7DD, 'M', '5'), + (0x1D7DE, 'M', '6'), + (0x1D7DF, 'M', '7'), + (0x1D7E0, 'M', '8'), + (0x1D7E1, 'M', '9'), + (0x1D7E2, 'M', '0'), + (0x1D7E3, 'M', '1'), + (0x1D7E4, 'M', '2'), + (0x1D7E5, 'M', '3'), + (0x1D7E6, 'M', '4'), + (0x1D7E7, 'M', '5'), + (0x1D7E8, 'M', '6'), + (0x1D7E9, 'M', '7'), + (0x1D7EA, 'M', '8'), + (0x1D7EB, 'M', '9'), + (0x1D7EC, 'M', '0'), + (0x1D7ED, 'M', '1'), + (0x1D7EE, 'M', '2'), + (0x1D7EF, 'M', '3'), + (0x1D7F0, 'M', '4'), + (0x1D7F1, 'M', '5'), + (0x1D7F2, 'M', '6'), + (0x1D7F3, 'M', '7'), + (0x1D7F4, 'M', '8'), + (0x1D7F5, 'M', '9'), + (0x1D7F6, 'M', '0'), + (0x1D7F7, 'M', '1'), + (0x1D7F8, 'M', '2'), + (0x1D7F9, 'M', '3'), + (0x1D7FA, 'M', '4'), + (0x1D7FB, 'M', '5'), + (0x1D7FC, 'M', '6'), + (0x1D7FD, 'M', '7'), + (0x1D7FE, 'M', '8'), + (0x1D7FF, 'M', '9'), + (0x1D800, 'V'), + (0x1DA8C, 'X'), + (0x1DA9B, 'V'), + (0x1DAA0, 'X'), + (0x1DAA1, 'V'), + (0x1DAB0, 'X'), + (0x1DF00, 'V'), + (0x1DF1F, 'X'), + (0x1DF25, 'V'), + (0x1DF2B, 'X'), + (0x1E000, 'V'), + (0x1E007, 'X'), + (0x1E008, 'V'), + (0x1E019, 'X'), + (0x1E01B, 'V'), + (0x1E022, 'X'), + (0x1E023, 'V'), + (0x1E025, 'X'), + (0x1E026, 'V'), + (0x1E02B, 'X'), + (0x1E030, 'M', 'а'), + (0x1E031, 'M', 'б'), + (0x1E032, 'M', 'в'), + (0x1E033, 'M', 'г'), + (0x1E034, 'M', 'д'), + (0x1E035, 'M', 'е'), + (0x1E036, 'M', 'ж'), + ] + +def _seg_71() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E037, 'M', 'з'), + (0x1E038, 'M', 'и'), + (0x1E039, 'M', 'к'), + (0x1E03A, 'M', 'л'), + (0x1E03B, 'M', 'м'), + (0x1E03C, 'M', 'о'), + (0x1E03D, 'M', 'п'), + (0x1E03E, 'M', 'р'), + (0x1E03F, 'M', 'с'), + (0x1E040, 'M', 'т'), + (0x1E041, 'M', 'у'), + (0x1E042, 'M', 'ф'), + (0x1E043, 'M', 'х'), + (0x1E044, 'M', 'ц'), + (0x1E045, 'M', 'ч'), + (0x1E046, 'M', 'ш'), + (0x1E047, 'M', 'ы'), + (0x1E048, 'M', 'э'), + (0x1E049, 'M', 'ю'), + (0x1E04A, 'M', 'ꚉ'), + (0x1E04B, 'M', 'ә'), + (0x1E04C, 'M', 'і'), + (0x1E04D, 'M', 'ј'), + (0x1E04E, 'M', 'ө'), + (0x1E04F, 'M', 'ү'), + (0x1E050, 'M', 'ӏ'), + (0x1E051, 'M', 'а'), + (0x1E052, 'M', 'б'), + (0x1E053, 'M', 'в'), + (0x1E054, 'M', 'г'), + (0x1E055, 'M', 'д'), + (0x1E056, 'M', 'е'), + (0x1E057, 'M', 'ж'), + (0x1E058, 'M', 'з'), + (0x1E059, 'M', 'и'), + (0x1E05A, 'M', 'к'), + (0x1E05B, 'M', 'л'), + (0x1E05C, 'M', 'о'), + (0x1E05D, 'M', 'п'), + (0x1E05E, 'M', 'с'), + (0x1E05F, 'M', 'у'), + (0x1E060, 'M', 'ф'), + (0x1E061, 'M', 'х'), + (0x1E062, 'M', 'ц'), + (0x1E063, 'M', 'ч'), + (0x1E064, 'M', 'ш'), + (0x1E065, 'M', 'ъ'), + (0x1E066, 'M', 'ы'), + (0x1E067, 'M', 'ґ'), + (0x1E068, 'M', 'і'), + (0x1E069, 'M', 'ѕ'), + (0x1E06A, 'M', 'џ'), + (0x1E06B, 'M', 'ҫ'), + (0x1E06C, 'M', 'ꙑ'), + (0x1E06D, 'M', 'ұ'), + (0x1E06E, 'X'), + (0x1E08F, 'V'), + (0x1E090, 'X'), + (0x1E100, 'V'), + (0x1E12D, 'X'), + (0x1E130, 'V'), + (0x1E13E, 'X'), + (0x1E140, 'V'), + (0x1E14A, 'X'), + (0x1E14E, 'V'), + (0x1E150, 'X'), + (0x1E290, 'V'), + (0x1E2AF, 'X'), + (0x1E2C0, 'V'), + (0x1E2FA, 'X'), + (0x1E2FF, 'V'), + (0x1E300, 'X'), + (0x1E4D0, 'V'), + (0x1E4FA, 'X'), + (0x1E7E0, 'V'), + (0x1E7E7, 'X'), + (0x1E7E8, 'V'), + (0x1E7EC, 'X'), + (0x1E7ED, 'V'), + (0x1E7EF, 'X'), + (0x1E7F0, 'V'), + (0x1E7FF, 'X'), + (0x1E800, 'V'), + (0x1E8C5, 'X'), + (0x1E8C7, 'V'), + (0x1E8D7, 'X'), + (0x1E900, 'M', '𞤢'), + (0x1E901, 'M', '𞤣'), + (0x1E902, 'M', '𞤤'), + (0x1E903, 'M', '𞤥'), + (0x1E904, 'M', '𞤦'), + (0x1E905, 'M', '𞤧'), + (0x1E906, 'M', '𞤨'), + (0x1E907, 'M', '𞤩'), + (0x1E908, 'M', '𞤪'), + (0x1E909, 'M', '𞤫'), + (0x1E90A, 'M', '𞤬'), + (0x1E90B, 'M', '𞤭'), + (0x1E90C, 'M', '𞤮'), + (0x1E90D, 'M', '𞤯'), + ] + +def _seg_72() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E90E, 'M', '𞤰'), + (0x1E90F, 'M', '𞤱'), + (0x1E910, 'M', '𞤲'), + (0x1E911, 'M', '𞤳'), + (0x1E912, 'M', '𞤴'), + (0x1E913, 'M', '𞤵'), + (0x1E914, 'M', '𞤶'), + (0x1E915, 'M', '𞤷'), + (0x1E916, 'M', '𞤸'), + (0x1E917, 'M', '𞤹'), + (0x1E918, 'M', '𞤺'), + (0x1E919, 'M', '𞤻'), + (0x1E91A, 'M', '𞤼'), + (0x1E91B, 'M', '𞤽'), + (0x1E91C, 'M', '𞤾'), + (0x1E91D, 'M', '𞤿'), + (0x1E91E, 'M', '𞥀'), + (0x1E91F, 'M', '𞥁'), + (0x1E920, 'M', '𞥂'), + (0x1E921, 'M', '𞥃'), + (0x1E922, 'V'), + (0x1E94C, 'X'), + (0x1E950, 'V'), + (0x1E95A, 'X'), + (0x1E95E, 'V'), + (0x1E960, 'X'), + (0x1EC71, 'V'), + (0x1ECB5, 'X'), + (0x1ED01, 'V'), + (0x1ED3E, 'X'), + (0x1EE00, 'M', 'ا'), + (0x1EE01, 'M', 'ب'), + (0x1EE02, 'M', 'ج'), + (0x1EE03, 'M', 'د'), + (0x1EE04, 'X'), + (0x1EE05, 'M', 'و'), + (0x1EE06, 'M', 'ز'), + (0x1EE07, 'M', 'ح'), + (0x1EE08, 'M', 'ط'), + (0x1EE09, 'M', 'ي'), + (0x1EE0A, 'M', 'ك'), + (0x1EE0B, 'M', 'ل'), + (0x1EE0C, 'M', 'م'), + (0x1EE0D, 'M', 'ن'), + (0x1EE0E, 'M', 'س'), + (0x1EE0F, 'M', 'ع'), + (0x1EE10, 'M', 'ف'), + (0x1EE11, 'M', 'ص'), + (0x1EE12, 'M', 'ق'), + (0x1EE13, 'M', 'ر'), + (0x1EE14, 'M', 'ش'), + (0x1EE15, 'M', 'ت'), + (0x1EE16, 'M', 'ث'), + (0x1EE17, 'M', 'خ'), + (0x1EE18, 'M', 'ذ'), + (0x1EE19, 'M', 'ض'), + (0x1EE1A, 'M', 'ظ'), + (0x1EE1B, 'M', 'غ'), + (0x1EE1C, 'M', 'ٮ'), + (0x1EE1D, 'M', 'ں'), + (0x1EE1E, 'M', 'ڡ'), + (0x1EE1F, 'M', 'ٯ'), + (0x1EE20, 'X'), + (0x1EE21, 'M', 'ب'), + (0x1EE22, 'M', 'ج'), + (0x1EE23, 'X'), + (0x1EE24, 'M', 'ه'), + (0x1EE25, 'X'), + (0x1EE27, 'M', 'ح'), + (0x1EE28, 'X'), + (0x1EE29, 'M', 'ي'), + (0x1EE2A, 'M', 'ك'), + (0x1EE2B, 'M', 'ل'), + (0x1EE2C, 'M', 'م'), + (0x1EE2D, 'M', 'ن'), + (0x1EE2E, 'M', 'س'), + (0x1EE2F, 'M', 'ع'), + (0x1EE30, 'M', 'ف'), + (0x1EE31, 'M', 'ص'), + (0x1EE32, 'M', 'ق'), + (0x1EE33, 'X'), + (0x1EE34, 'M', 'ش'), + (0x1EE35, 'M', 'ت'), + (0x1EE36, 'M', 'ث'), + (0x1EE37, 'M', 'خ'), + (0x1EE38, 'X'), + (0x1EE39, 'M', 'ض'), + (0x1EE3A, 'X'), + (0x1EE3B, 'M', 'غ'), + (0x1EE3C, 'X'), + (0x1EE42, 'M', 'ج'), + (0x1EE43, 'X'), + (0x1EE47, 'M', 'ح'), + (0x1EE48, 'X'), + (0x1EE49, 'M', 'ي'), + (0x1EE4A, 'X'), + (0x1EE4B, 'M', 'ل'), + (0x1EE4C, 'X'), + (0x1EE4D, 'M', 'ن'), + (0x1EE4E, 'M', 'س'), + ] + +def _seg_73() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EE4F, 'M', 'ع'), + (0x1EE50, 'X'), + (0x1EE51, 'M', 'ص'), + (0x1EE52, 'M', 'ق'), + (0x1EE53, 'X'), + (0x1EE54, 'M', 'ش'), + (0x1EE55, 'X'), + (0x1EE57, 'M', 'خ'), + (0x1EE58, 'X'), + (0x1EE59, 'M', 'ض'), + (0x1EE5A, 'X'), + (0x1EE5B, 'M', 'غ'), + (0x1EE5C, 'X'), + (0x1EE5D, 'M', 'ں'), + (0x1EE5E, 'X'), + (0x1EE5F, 'M', 'ٯ'), + (0x1EE60, 'X'), + (0x1EE61, 'M', 'ب'), + (0x1EE62, 'M', 'ج'), + (0x1EE63, 'X'), + (0x1EE64, 'M', 'ه'), + (0x1EE65, 'X'), + (0x1EE67, 'M', 'ح'), + (0x1EE68, 'M', 'ط'), + (0x1EE69, 'M', 'ي'), + (0x1EE6A, 'M', 'ك'), + (0x1EE6B, 'X'), + (0x1EE6C, 'M', 'م'), + (0x1EE6D, 'M', 'ن'), + (0x1EE6E, 'M', 'س'), + (0x1EE6F, 'M', 'ع'), + (0x1EE70, 'M', 'ف'), + (0x1EE71, 'M', 'ص'), + (0x1EE72, 'M', 'ق'), + (0x1EE73, 'X'), + (0x1EE74, 'M', 'ش'), + (0x1EE75, 'M', 'ت'), + (0x1EE76, 'M', 'ث'), + (0x1EE77, 'M', 'خ'), + (0x1EE78, 'X'), + (0x1EE79, 'M', 'ض'), + (0x1EE7A, 'M', 'ظ'), + (0x1EE7B, 'M', 'غ'), + (0x1EE7C, 'M', 'ٮ'), + (0x1EE7D, 'X'), + (0x1EE7E, 'M', 'ڡ'), + (0x1EE7F, 'X'), + (0x1EE80, 'M', 'ا'), + (0x1EE81, 'M', 'ب'), + (0x1EE82, 'M', 'ج'), + (0x1EE83, 'M', 'د'), + (0x1EE84, 'M', 'ه'), + (0x1EE85, 'M', 'و'), + (0x1EE86, 'M', 'ز'), + (0x1EE87, 'M', 'ح'), + (0x1EE88, 'M', 'ط'), + (0x1EE89, 'M', 'ي'), + (0x1EE8A, 'X'), + (0x1EE8B, 'M', 'ل'), + (0x1EE8C, 'M', 'م'), + (0x1EE8D, 'M', 'ن'), + (0x1EE8E, 'M', 'س'), + (0x1EE8F, 'M', 'ع'), + (0x1EE90, 'M', 'ف'), + (0x1EE91, 'M', 'ص'), + (0x1EE92, 'M', 'ق'), + (0x1EE93, 'M', 'ر'), + (0x1EE94, 'M', 'ش'), + (0x1EE95, 'M', 'ت'), + (0x1EE96, 'M', 'ث'), + (0x1EE97, 'M', 'خ'), + (0x1EE98, 'M', 'ذ'), + (0x1EE99, 'M', 'ض'), + (0x1EE9A, 'M', 'ظ'), + (0x1EE9B, 'M', 'غ'), + (0x1EE9C, 'X'), + (0x1EEA1, 'M', 'ب'), + (0x1EEA2, 'M', 'ج'), + (0x1EEA3, 'M', 'د'), + (0x1EEA4, 'X'), + (0x1EEA5, 'M', 'و'), + (0x1EEA6, 'M', 'ز'), + (0x1EEA7, 'M', 'ح'), + (0x1EEA8, 'M', 'ط'), + (0x1EEA9, 'M', 'ي'), + (0x1EEAA, 'X'), + (0x1EEAB, 'M', 'ل'), + (0x1EEAC, 'M', 'م'), + (0x1EEAD, 'M', 'ن'), + (0x1EEAE, 'M', 'س'), + (0x1EEAF, 'M', 'ع'), + (0x1EEB0, 'M', 'ف'), + (0x1EEB1, 'M', 'ص'), + (0x1EEB2, 'M', 'ق'), + (0x1EEB3, 'M', 'ر'), + (0x1EEB4, 'M', 'ش'), + (0x1EEB5, 'M', 'ت'), + (0x1EEB6, 'M', 'ث'), + (0x1EEB7, 'M', 'خ'), + (0x1EEB8, 'M', 'ذ'), + ] + +def _seg_74() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EEB9, 'M', 'ض'), + (0x1EEBA, 'M', 'ظ'), + (0x1EEBB, 'M', 'غ'), + (0x1EEBC, 'X'), + (0x1EEF0, 'V'), + (0x1EEF2, 'X'), + (0x1F000, 'V'), + (0x1F02C, 'X'), + (0x1F030, 'V'), + (0x1F094, 'X'), + (0x1F0A0, 'V'), + (0x1F0AF, 'X'), + (0x1F0B1, 'V'), + (0x1F0C0, 'X'), + (0x1F0C1, 'V'), + (0x1F0D0, 'X'), + (0x1F0D1, 'V'), + (0x1F0F6, 'X'), + (0x1F101, '3', '0,'), + (0x1F102, '3', '1,'), + (0x1F103, '3', '2,'), + (0x1F104, '3', '3,'), + (0x1F105, '3', '4,'), + (0x1F106, '3', '5,'), + (0x1F107, '3', '6,'), + (0x1F108, '3', '7,'), + (0x1F109, '3', '8,'), + (0x1F10A, '3', '9,'), + (0x1F10B, 'V'), + (0x1F110, '3', '(a)'), + (0x1F111, '3', '(b)'), + (0x1F112, '3', '(c)'), + (0x1F113, '3', '(d)'), + (0x1F114, '3', '(e)'), + (0x1F115, '3', '(f)'), + (0x1F116, '3', '(g)'), + (0x1F117, '3', '(h)'), + (0x1F118, '3', '(i)'), + (0x1F119, '3', '(j)'), + (0x1F11A, '3', '(k)'), + (0x1F11B, '3', '(l)'), + (0x1F11C, '3', '(m)'), + (0x1F11D, '3', '(n)'), + (0x1F11E, '3', '(o)'), + (0x1F11F, '3', '(p)'), + (0x1F120, '3', '(q)'), + (0x1F121, '3', '(r)'), + (0x1F122, '3', '(s)'), + (0x1F123, '3', '(t)'), + (0x1F124, '3', '(u)'), + (0x1F125, '3', '(v)'), + (0x1F126, '3', '(w)'), + (0x1F127, '3', '(x)'), + (0x1F128, '3', '(y)'), + (0x1F129, '3', '(z)'), + (0x1F12A, 'M', '〔s〕'), + (0x1F12B, 'M', 'c'), + (0x1F12C, 'M', 'r'), + (0x1F12D, 'M', 'cd'), + (0x1F12E, 'M', 'wz'), + (0x1F12F, 'V'), + (0x1F130, 'M', 'a'), + (0x1F131, 'M', 'b'), + (0x1F132, 'M', 'c'), + (0x1F133, 'M', 'd'), + (0x1F134, 'M', 'e'), + (0x1F135, 'M', 'f'), + (0x1F136, 'M', 'g'), + (0x1F137, 'M', 'h'), + (0x1F138, 'M', 'i'), + (0x1F139, 'M', 'j'), + (0x1F13A, 'M', 'k'), + (0x1F13B, 'M', 'l'), + (0x1F13C, 'M', 'm'), + (0x1F13D, 'M', 'n'), + (0x1F13E, 'M', 'o'), + (0x1F13F, 'M', 'p'), + (0x1F140, 'M', 'q'), + (0x1F141, 'M', 'r'), + (0x1F142, 'M', 's'), + (0x1F143, 'M', 't'), + (0x1F144, 'M', 'u'), + (0x1F145, 'M', 'v'), + (0x1F146, 'M', 'w'), + (0x1F147, 'M', 'x'), + (0x1F148, 'M', 'y'), + (0x1F149, 'M', 'z'), + (0x1F14A, 'M', 'hv'), + (0x1F14B, 'M', 'mv'), + (0x1F14C, 'M', 'sd'), + (0x1F14D, 'M', 'ss'), + (0x1F14E, 'M', 'ppv'), + (0x1F14F, 'M', 'wc'), + (0x1F150, 'V'), + (0x1F16A, 'M', 'mc'), + (0x1F16B, 'M', 'md'), + (0x1F16C, 'M', 'mr'), + (0x1F16D, 'V'), + (0x1F190, 'M', 'dj'), + (0x1F191, 'V'), + ] + +def _seg_75() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F1AE, 'X'), + (0x1F1E6, 'V'), + (0x1F200, 'M', 'ほか'), + (0x1F201, 'M', 'ココ'), + (0x1F202, 'M', 'サ'), + (0x1F203, 'X'), + (0x1F210, 'M', '手'), + (0x1F211, 'M', '字'), + (0x1F212, 'M', '双'), + (0x1F213, 'M', 'デ'), + (0x1F214, 'M', '二'), + (0x1F215, 'M', '多'), + (0x1F216, 'M', '解'), + (0x1F217, 'M', '天'), + (0x1F218, 'M', '交'), + (0x1F219, 'M', '映'), + (0x1F21A, 'M', '無'), + (0x1F21B, 'M', '料'), + (0x1F21C, 'M', '前'), + (0x1F21D, 'M', '後'), + (0x1F21E, 'M', '再'), + (0x1F21F, 'M', '新'), + (0x1F220, 'M', '初'), + (0x1F221, 'M', '終'), + (0x1F222, 'M', '生'), + (0x1F223, 'M', '販'), + (0x1F224, 'M', '声'), + (0x1F225, 'M', '吹'), + (0x1F226, 'M', '演'), + (0x1F227, 'M', '投'), + (0x1F228, 'M', '捕'), + (0x1F229, 'M', '一'), + (0x1F22A, 'M', '三'), + (0x1F22B, 'M', '遊'), + (0x1F22C, 'M', '左'), + (0x1F22D, 'M', '中'), + (0x1F22E, 'M', '右'), + (0x1F22F, 'M', '指'), + (0x1F230, 'M', '走'), + (0x1F231, 'M', '打'), + (0x1F232, 'M', '禁'), + (0x1F233, 'M', '空'), + (0x1F234, 'M', '合'), + (0x1F235, 'M', '満'), + (0x1F236, 'M', '有'), + (0x1F237, 'M', '月'), + (0x1F238, 'M', '申'), + (0x1F239, 'M', '割'), + (0x1F23A, 'M', '営'), + (0x1F23B, 'M', '配'), + (0x1F23C, 'X'), + (0x1F240, 'M', '〔本〕'), + (0x1F241, 'M', '〔三〕'), + (0x1F242, 'M', '〔二〕'), + (0x1F243, 'M', '〔安〕'), + (0x1F244, 'M', '〔点〕'), + (0x1F245, 'M', '〔打〕'), + (0x1F246, 'M', '〔盗〕'), + (0x1F247, 'M', '〔勝〕'), + (0x1F248, 'M', '〔敗〕'), + (0x1F249, 'X'), + (0x1F250, 'M', '得'), + (0x1F251, 'M', '可'), + (0x1F252, 'X'), + (0x1F260, 'V'), + (0x1F266, 'X'), + (0x1F300, 'V'), + (0x1F6D8, 'X'), + (0x1F6DC, 'V'), + (0x1F6ED, 'X'), + (0x1F6F0, 'V'), + (0x1F6FD, 'X'), + (0x1F700, 'V'), + (0x1F777, 'X'), + (0x1F77B, 'V'), + (0x1F7DA, 'X'), + (0x1F7E0, 'V'), + (0x1F7EC, 'X'), + (0x1F7F0, 'V'), + (0x1F7F1, 'X'), + (0x1F800, 'V'), + (0x1F80C, 'X'), + (0x1F810, 'V'), + (0x1F848, 'X'), + (0x1F850, 'V'), + (0x1F85A, 'X'), + (0x1F860, 'V'), + (0x1F888, 'X'), + (0x1F890, 'V'), + (0x1F8AE, 'X'), + (0x1F8B0, 'V'), + (0x1F8B2, 'X'), + (0x1F900, 'V'), + (0x1FA54, 'X'), + (0x1FA60, 'V'), + (0x1FA6E, 'X'), + (0x1FA70, 'V'), + (0x1FA7D, 'X'), + (0x1FA80, 'V'), + (0x1FA89, 'X'), + ] + +def _seg_76() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FA90, 'V'), + (0x1FABE, 'X'), + (0x1FABF, 'V'), + (0x1FAC6, 'X'), + (0x1FACE, 'V'), + (0x1FADC, 'X'), + (0x1FAE0, 'V'), + (0x1FAE9, 'X'), + (0x1FAF0, 'V'), + (0x1FAF9, 'X'), + (0x1FB00, 'V'), + (0x1FB93, 'X'), + (0x1FB94, 'V'), + (0x1FBCB, 'X'), + (0x1FBF0, 'M', '0'), + (0x1FBF1, 'M', '1'), + (0x1FBF2, 'M', '2'), + (0x1FBF3, 'M', '3'), + (0x1FBF4, 'M', '4'), + (0x1FBF5, 'M', '5'), + (0x1FBF6, 'M', '6'), + (0x1FBF7, 'M', '7'), + (0x1FBF8, 'M', '8'), + (0x1FBF9, 'M', '9'), + (0x1FBFA, 'X'), + (0x20000, 'V'), + (0x2A6E0, 'X'), + (0x2A700, 'V'), + (0x2B73A, 'X'), + (0x2B740, 'V'), + (0x2B81E, 'X'), + (0x2B820, 'V'), + (0x2CEA2, 'X'), + (0x2CEB0, 'V'), + (0x2EBE1, 'X'), + (0x2EBF0, 'V'), + (0x2EE5E, 'X'), + (0x2F800, 'M', '丽'), + (0x2F801, 'M', '丸'), + (0x2F802, 'M', '乁'), + (0x2F803, 'M', '𠄢'), + (0x2F804, 'M', '你'), + (0x2F805, 'M', '侮'), + (0x2F806, 'M', '侻'), + (0x2F807, 'M', '倂'), + (0x2F808, 'M', '偺'), + (0x2F809, 'M', '備'), + (0x2F80A, 'M', '僧'), + (0x2F80B, 'M', '像'), + (0x2F80C, 'M', '㒞'), + (0x2F80D, 'M', '𠘺'), + (0x2F80E, 'M', '免'), + (0x2F80F, 'M', '兔'), + (0x2F810, 'M', '兤'), + (0x2F811, 'M', '具'), + (0x2F812, 'M', '𠔜'), + (0x2F813, 'M', '㒹'), + (0x2F814, 'M', '內'), + (0x2F815, 'M', '再'), + (0x2F816, 'M', '𠕋'), + (0x2F817, 'M', '冗'), + (0x2F818, 'M', '冤'), + (0x2F819, 'M', '仌'), + (0x2F81A, 'M', '冬'), + (0x2F81B, 'M', '况'), + (0x2F81C, 'M', '𩇟'), + (0x2F81D, 'M', '凵'), + (0x2F81E, 'M', '刃'), + (0x2F81F, 'M', '㓟'), + (0x2F820, 'M', '刻'), + (0x2F821, 'M', '剆'), + (0x2F822, 'M', '割'), + (0x2F823, 'M', '剷'), + (0x2F824, 'M', '㔕'), + (0x2F825, 'M', '勇'), + (0x2F826, 'M', '勉'), + (0x2F827, 'M', '勤'), + (0x2F828, 'M', '勺'), + (0x2F829, 'M', '包'), + (0x2F82A, 'M', '匆'), + (0x2F82B, 'M', '北'), + (0x2F82C, 'M', '卉'), + (0x2F82D, 'M', '卑'), + (0x2F82E, 'M', '博'), + (0x2F82F, 'M', '即'), + (0x2F830, 'M', '卽'), + (0x2F831, 'M', '卿'), + (0x2F834, 'M', '𠨬'), + (0x2F835, 'M', '灰'), + (0x2F836, 'M', '及'), + (0x2F837, 'M', '叟'), + (0x2F838, 'M', '𠭣'), + (0x2F839, 'M', '叫'), + (0x2F83A, 'M', '叱'), + (0x2F83B, 'M', '吆'), + (0x2F83C, 'M', '咞'), + (0x2F83D, 'M', '吸'), + (0x2F83E, 'M', '呈'), + (0x2F83F, 'M', '周'), + (0x2F840, 'M', '咢'), + ] + +def _seg_77() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F841, 'M', '哶'), + (0x2F842, 'M', '唐'), + (0x2F843, 'M', '啓'), + (0x2F844, 'M', '啣'), + (0x2F845, 'M', '善'), + (0x2F847, 'M', '喙'), + (0x2F848, 'M', '喫'), + (0x2F849, 'M', '喳'), + (0x2F84A, 'M', '嗂'), + (0x2F84B, 'M', '圖'), + (0x2F84C, 'M', '嘆'), + (0x2F84D, 'M', '圗'), + (0x2F84E, 'M', '噑'), + (0x2F84F, 'M', '噴'), + (0x2F850, 'M', '切'), + (0x2F851, 'M', '壮'), + (0x2F852, 'M', '城'), + (0x2F853, 'M', '埴'), + (0x2F854, 'M', '堍'), + (0x2F855, 'M', '型'), + (0x2F856, 'M', '堲'), + (0x2F857, 'M', '報'), + (0x2F858, 'M', '墬'), + (0x2F859, 'M', '𡓤'), + (0x2F85A, 'M', '売'), + (0x2F85B, 'M', '壷'), + (0x2F85C, 'M', '夆'), + (0x2F85D, 'M', '多'), + (0x2F85E, 'M', '夢'), + (0x2F85F, 'M', '奢'), + (0x2F860, 'M', '𡚨'), + (0x2F861, 'M', '𡛪'), + (0x2F862, 'M', '姬'), + (0x2F863, 'M', '娛'), + (0x2F864, 'M', '娧'), + (0x2F865, 'M', '姘'), + (0x2F866, 'M', '婦'), + (0x2F867, 'M', '㛮'), + (0x2F868, 'X'), + (0x2F869, 'M', '嬈'), + (0x2F86A, 'M', '嬾'), + (0x2F86C, 'M', '𡧈'), + (0x2F86D, 'M', '寃'), + (0x2F86E, 'M', '寘'), + (0x2F86F, 'M', '寧'), + (0x2F870, 'M', '寳'), + (0x2F871, 'M', '𡬘'), + (0x2F872, 'M', '寿'), + (0x2F873, 'M', '将'), + (0x2F874, 'X'), + (0x2F875, 'M', '尢'), + (0x2F876, 'M', '㞁'), + (0x2F877, 'M', '屠'), + (0x2F878, 'M', '屮'), + (0x2F879, 'M', '峀'), + (0x2F87A, 'M', '岍'), + (0x2F87B, 'M', '𡷤'), + (0x2F87C, 'M', '嵃'), + (0x2F87D, 'M', '𡷦'), + (0x2F87E, 'M', '嵮'), + (0x2F87F, 'M', '嵫'), + (0x2F880, 'M', '嵼'), + (0x2F881, 'M', '巡'), + (0x2F882, 'M', '巢'), + (0x2F883, 'M', '㠯'), + (0x2F884, 'M', '巽'), + (0x2F885, 'M', '帨'), + (0x2F886, 'M', '帽'), + (0x2F887, 'M', '幩'), + (0x2F888, 'M', '㡢'), + (0x2F889, 'M', '𢆃'), + (0x2F88A, 'M', '㡼'), + (0x2F88B, 'M', '庰'), + (0x2F88C, 'M', '庳'), + (0x2F88D, 'M', '庶'), + (0x2F88E, 'M', '廊'), + (0x2F88F, 'M', '𪎒'), + (0x2F890, 'M', '廾'), + (0x2F891, 'M', '𢌱'), + (0x2F893, 'M', '舁'), + (0x2F894, 'M', '弢'), + (0x2F896, 'M', '㣇'), + (0x2F897, 'M', '𣊸'), + (0x2F898, 'M', '𦇚'), + (0x2F899, 'M', '形'), + (0x2F89A, 'M', '彫'), + (0x2F89B, 'M', '㣣'), + (0x2F89C, 'M', '徚'), + (0x2F89D, 'M', '忍'), + (0x2F89E, 'M', '志'), + (0x2F89F, 'M', '忹'), + (0x2F8A0, 'M', '悁'), + (0x2F8A1, 'M', '㤺'), + (0x2F8A2, 'M', '㤜'), + (0x2F8A3, 'M', '悔'), + (0x2F8A4, 'M', '𢛔'), + (0x2F8A5, 'M', '惇'), + (0x2F8A6, 'M', '慈'), + (0x2F8A7, 'M', '慌'), + (0x2F8A8, 'M', '慎'), + ] + +def _seg_78() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F8A9, 'M', '慌'), + (0x2F8AA, 'M', '慺'), + (0x2F8AB, 'M', '憎'), + (0x2F8AC, 'M', '憲'), + (0x2F8AD, 'M', '憤'), + (0x2F8AE, 'M', '憯'), + (0x2F8AF, 'M', '懞'), + (0x2F8B0, 'M', '懲'), + (0x2F8B1, 'M', '懶'), + (0x2F8B2, 'M', '成'), + (0x2F8B3, 'M', '戛'), + (0x2F8B4, 'M', '扝'), + (0x2F8B5, 'M', '抱'), + (0x2F8B6, 'M', '拔'), + (0x2F8B7, 'M', '捐'), + (0x2F8B8, 'M', '𢬌'), + (0x2F8B9, 'M', '挽'), + (0x2F8BA, 'M', '拼'), + (0x2F8BB, 'M', '捨'), + (0x2F8BC, 'M', '掃'), + (0x2F8BD, 'M', '揤'), + (0x2F8BE, 'M', '𢯱'), + (0x2F8BF, 'M', '搢'), + (0x2F8C0, 'M', '揅'), + (0x2F8C1, 'M', '掩'), + (0x2F8C2, 'M', '㨮'), + (0x2F8C3, 'M', '摩'), + (0x2F8C4, 'M', '摾'), + (0x2F8C5, 'M', '撝'), + (0x2F8C6, 'M', '摷'), + (0x2F8C7, 'M', '㩬'), + (0x2F8C8, 'M', '敏'), + (0x2F8C9, 'M', '敬'), + (0x2F8CA, 'M', '𣀊'), + (0x2F8CB, 'M', '旣'), + (0x2F8CC, 'M', '書'), + (0x2F8CD, 'M', '晉'), + (0x2F8CE, 'M', '㬙'), + (0x2F8CF, 'M', '暑'), + (0x2F8D0, 'M', '㬈'), + (0x2F8D1, 'M', '㫤'), + (0x2F8D2, 'M', '冒'), + (0x2F8D3, 'M', '冕'), + (0x2F8D4, 'M', '最'), + (0x2F8D5, 'M', '暜'), + (0x2F8D6, 'M', '肭'), + (0x2F8D7, 'M', '䏙'), + (0x2F8D8, 'M', '朗'), + (0x2F8D9, 'M', '望'), + (0x2F8DA, 'M', '朡'), + (0x2F8DB, 'M', '杞'), + (0x2F8DC, 'M', '杓'), + (0x2F8DD, 'M', '𣏃'), + (0x2F8DE, 'M', '㭉'), + (0x2F8DF, 'M', '柺'), + (0x2F8E0, 'M', '枅'), + (0x2F8E1, 'M', '桒'), + (0x2F8E2, 'M', '梅'), + (0x2F8E3, 'M', '𣑭'), + (0x2F8E4, 'M', '梎'), + (0x2F8E5, 'M', '栟'), + (0x2F8E6, 'M', '椔'), + (0x2F8E7, 'M', '㮝'), + (0x2F8E8, 'M', '楂'), + (0x2F8E9, 'M', '榣'), + (0x2F8EA, 'M', '槪'), + (0x2F8EB, 'M', '檨'), + (0x2F8EC, 'M', '𣚣'), + (0x2F8ED, 'M', '櫛'), + (0x2F8EE, 'M', '㰘'), + (0x2F8EF, 'M', '次'), + (0x2F8F0, 'M', '𣢧'), + (0x2F8F1, 'M', '歔'), + (0x2F8F2, 'M', '㱎'), + (0x2F8F3, 'M', '歲'), + (0x2F8F4, 'M', '殟'), + (0x2F8F5, 'M', '殺'), + (0x2F8F6, 'M', '殻'), + (0x2F8F7, 'M', '𣪍'), + (0x2F8F8, 'M', '𡴋'), + (0x2F8F9, 'M', '𣫺'), + (0x2F8FA, 'M', '汎'), + (0x2F8FB, 'M', '𣲼'), + (0x2F8FC, 'M', '沿'), + (0x2F8FD, 'M', '泍'), + (0x2F8FE, 'M', '汧'), + (0x2F8FF, 'M', '洖'), + (0x2F900, 'M', '派'), + (0x2F901, 'M', '海'), + (0x2F902, 'M', '流'), + (0x2F903, 'M', '浩'), + (0x2F904, 'M', '浸'), + (0x2F905, 'M', '涅'), + (0x2F906, 'M', '𣴞'), + (0x2F907, 'M', '洴'), + (0x2F908, 'M', '港'), + (0x2F909, 'M', '湮'), + (0x2F90A, 'M', '㴳'), + (0x2F90B, 'M', '滋'), + (0x2F90C, 'M', '滇'), + ] + +def _seg_79() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F90D, 'M', '𣻑'), + (0x2F90E, 'M', '淹'), + (0x2F90F, 'M', '潮'), + (0x2F910, 'M', '𣽞'), + (0x2F911, 'M', '𣾎'), + (0x2F912, 'M', '濆'), + (0x2F913, 'M', '瀹'), + (0x2F914, 'M', '瀞'), + (0x2F915, 'M', '瀛'), + (0x2F916, 'M', '㶖'), + (0x2F917, 'M', '灊'), + (0x2F918, 'M', '災'), + (0x2F919, 'M', '灷'), + (0x2F91A, 'M', '炭'), + (0x2F91B, 'M', '𠔥'), + (0x2F91C, 'M', '煅'), + (0x2F91D, 'M', '𤉣'), + (0x2F91E, 'M', '熜'), + (0x2F91F, 'X'), + (0x2F920, 'M', '爨'), + (0x2F921, 'M', '爵'), + (0x2F922, 'M', '牐'), + (0x2F923, 'M', '𤘈'), + (0x2F924, 'M', '犀'), + (0x2F925, 'M', '犕'), + (0x2F926, 'M', '𤜵'), + (0x2F927, 'M', '𤠔'), + (0x2F928, 'M', '獺'), + (0x2F929, 'M', '王'), + (0x2F92A, 'M', '㺬'), + (0x2F92B, 'M', '玥'), + (0x2F92C, 'M', '㺸'), + (0x2F92E, 'M', '瑇'), + (0x2F92F, 'M', '瑜'), + (0x2F930, 'M', '瑱'), + (0x2F931, 'M', '璅'), + (0x2F932, 'M', '瓊'), + (0x2F933, 'M', '㼛'), + (0x2F934, 'M', '甤'), + (0x2F935, 'M', '𤰶'), + (0x2F936, 'M', '甾'), + (0x2F937, 'M', '𤲒'), + (0x2F938, 'M', '異'), + (0x2F939, 'M', '𢆟'), + (0x2F93A, 'M', '瘐'), + (0x2F93B, 'M', '𤾡'), + (0x2F93C, 'M', '𤾸'), + (0x2F93D, 'M', '𥁄'), + (0x2F93E, 'M', '㿼'), + (0x2F93F, 'M', '䀈'), + (0x2F940, 'M', '直'), + (0x2F941, 'M', '𥃳'), + (0x2F942, 'M', '𥃲'), + (0x2F943, 'M', '𥄙'), + (0x2F944, 'M', '𥄳'), + (0x2F945, 'M', '眞'), + (0x2F946, 'M', '真'), + (0x2F948, 'M', '睊'), + (0x2F949, 'M', '䀹'), + (0x2F94A, 'M', '瞋'), + (0x2F94B, 'M', '䁆'), + (0x2F94C, 'M', '䂖'), + (0x2F94D, 'M', '𥐝'), + (0x2F94E, 'M', '硎'), + (0x2F94F, 'M', '碌'), + (0x2F950, 'M', '磌'), + (0x2F951, 'M', '䃣'), + (0x2F952, 'M', '𥘦'), + (0x2F953, 'M', '祖'), + (0x2F954, 'M', '𥚚'), + (0x2F955, 'M', '𥛅'), + (0x2F956, 'M', '福'), + (0x2F957, 'M', '秫'), + (0x2F958, 'M', '䄯'), + (0x2F959, 'M', '穀'), + (0x2F95A, 'M', '穊'), + (0x2F95B, 'M', '穏'), + (0x2F95C, 'M', '𥥼'), + (0x2F95D, 'M', '𥪧'), + (0x2F95F, 'X'), + (0x2F960, 'M', '䈂'), + (0x2F961, 'M', '𥮫'), + (0x2F962, 'M', '篆'), + (0x2F963, 'M', '築'), + (0x2F964, 'M', '䈧'), + (0x2F965, 'M', '𥲀'), + (0x2F966, 'M', '糒'), + (0x2F967, 'M', '䊠'), + (0x2F968, 'M', '糨'), + (0x2F969, 'M', '糣'), + (0x2F96A, 'M', '紀'), + (0x2F96B, 'M', '𥾆'), + (0x2F96C, 'M', '絣'), + (0x2F96D, 'M', '䌁'), + (0x2F96E, 'M', '緇'), + (0x2F96F, 'M', '縂'), + (0x2F970, 'M', '繅'), + (0x2F971, 'M', '䌴'), + (0x2F972, 'M', '𦈨'), + (0x2F973, 'M', '𦉇'), + ] + +def _seg_80() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F974, 'M', '䍙'), + (0x2F975, 'M', '𦋙'), + (0x2F976, 'M', '罺'), + (0x2F977, 'M', '𦌾'), + (0x2F978, 'M', '羕'), + (0x2F979, 'M', '翺'), + (0x2F97A, 'M', '者'), + (0x2F97B, 'M', '𦓚'), + (0x2F97C, 'M', '𦔣'), + (0x2F97D, 'M', '聠'), + (0x2F97E, 'M', '𦖨'), + (0x2F97F, 'M', '聰'), + (0x2F980, 'M', '𣍟'), + (0x2F981, 'M', '䏕'), + (0x2F982, 'M', '育'), + (0x2F983, 'M', '脃'), + (0x2F984, 'M', '䐋'), + (0x2F985, 'M', '脾'), + (0x2F986, 'M', '媵'), + (0x2F987, 'M', '𦞧'), + (0x2F988, 'M', '𦞵'), + (0x2F989, 'M', '𣎓'), + (0x2F98A, 'M', '𣎜'), + (0x2F98B, 'M', '舁'), + (0x2F98C, 'M', '舄'), + (0x2F98D, 'M', '辞'), + (0x2F98E, 'M', '䑫'), + (0x2F98F, 'M', '芑'), + (0x2F990, 'M', '芋'), + (0x2F991, 'M', '芝'), + (0x2F992, 'M', '劳'), + (0x2F993, 'M', '花'), + (0x2F994, 'M', '芳'), + (0x2F995, 'M', '芽'), + (0x2F996, 'M', '苦'), + (0x2F997, 'M', '𦬼'), + (0x2F998, 'M', '若'), + (0x2F999, 'M', '茝'), + (0x2F99A, 'M', '荣'), + (0x2F99B, 'M', '莭'), + (0x2F99C, 'M', '茣'), + (0x2F99D, 'M', '莽'), + (0x2F99E, 'M', '菧'), + (0x2F99F, 'M', '著'), + (0x2F9A0, 'M', '荓'), + (0x2F9A1, 'M', '菊'), + (0x2F9A2, 'M', '菌'), + (0x2F9A3, 'M', '菜'), + (0x2F9A4, 'M', '𦰶'), + (0x2F9A5, 'M', '𦵫'), + (0x2F9A6, 'M', '𦳕'), + (0x2F9A7, 'M', '䔫'), + (0x2F9A8, 'M', '蓱'), + (0x2F9A9, 'M', '蓳'), + (0x2F9AA, 'M', '蔖'), + (0x2F9AB, 'M', '𧏊'), + (0x2F9AC, 'M', '蕤'), + (0x2F9AD, 'M', '𦼬'), + (0x2F9AE, 'M', '䕝'), + (0x2F9AF, 'M', '䕡'), + (0x2F9B0, 'M', '𦾱'), + (0x2F9B1, 'M', '𧃒'), + (0x2F9B2, 'M', '䕫'), + (0x2F9B3, 'M', '虐'), + (0x2F9B4, 'M', '虜'), + (0x2F9B5, 'M', '虧'), + (0x2F9B6, 'M', '虩'), + (0x2F9B7, 'M', '蚩'), + (0x2F9B8, 'M', '蚈'), + (0x2F9B9, 'M', '蜎'), + (0x2F9BA, 'M', '蛢'), + (0x2F9BB, 'M', '蝹'), + (0x2F9BC, 'M', '蜨'), + (0x2F9BD, 'M', '蝫'), + (0x2F9BE, 'M', '螆'), + (0x2F9BF, 'X'), + (0x2F9C0, 'M', '蟡'), + (0x2F9C1, 'M', '蠁'), + (0x2F9C2, 'M', '䗹'), + (0x2F9C3, 'M', '衠'), + (0x2F9C4, 'M', '衣'), + (0x2F9C5, 'M', '𧙧'), + (0x2F9C6, 'M', '裗'), + (0x2F9C7, 'M', '裞'), + (0x2F9C8, 'M', '䘵'), + (0x2F9C9, 'M', '裺'), + (0x2F9CA, 'M', '㒻'), + (0x2F9CB, 'M', '𧢮'), + (0x2F9CC, 'M', '𧥦'), + (0x2F9CD, 'M', '䚾'), + (0x2F9CE, 'M', '䛇'), + (0x2F9CF, 'M', '誠'), + (0x2F9D0, 'M', '諭'), + (0x2F9D1, 'M', '變'), + (0x2F9D2, 'M', '豕'), + (0x2F9D3, 'M', '𧲨'), + (0x2F9D4, 'M', '貫'), + (0x2F9D5, 'M', '賁'), + (0x2F9D6, 'M', '贛'), + (0x2F9D7, 'M', '起'), + ] + +def _seg_81() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F9D8, 'M', '𧼯'), + (0x2F9D9, 'M', '𠠄'), + (0x2F9DA, 'M', '跋'), + (0x2F9DB, 'M', '趼'), + (0x2F9DC, 'M', '跰'), + (0x2F9DD, 'M', '𠣞'), + (0x2F9DE, 'M', '軔'), + (0x2F9DF, 'M', '輸'), + (0x2F9E0, 'M', '𨗒'), + (0x2F9E1, 'M', '𨗭'), + (0x2F9E2, 'M', '邔'), + (0x2F9E3, 'M', '郱'), + (0x2F9E4, 'M', '鄑'), + (0x2F9E5, 'M', '𨜮'), + (0x2F9E6, 'M', '鄛'), + (0x2F9E7, 'M', '鈸'), + (0x2F9E8, 'M', '鋗'), + (0x2F9E9, 'M', '鋘'), + (0x2F9EA, 'M', '鉼'), + (0x2F9EB, 'M', '鏹'), + (0x2F9EC, 'M', '鐕'), + (0x2F9ED, 'M', '𨯺'), + (0x2F9EE, 'M', '開'), + (0x2F9EF, 'M', '䦕'), + (0x2F9F0, 'M', '閷'), + (0x2F9F1, 'M', '𨵷'), + (0x2F9F2, 'M', '䧦'), + (0x2F9F3, 'M', '雃'), + (0x2F9F4, 'M', '嶲'), + (0x2F9F5, 'M', '霣'), + (0x2F9F6, 'M', '𩅅'), + (0x2F9F7, 'M', '𩈚'), + (0x2F9F8, 'M', '䩮'), + (0x2F9F9, 'M', '䩶'), + (0x2F9FA, 'M', '韠'), + (0x2F9FB, 'M', '𩐊'), + (0x2F9FC, 'M', '䪲'), + (0x2F9FD, 'M', '𩒖'), + (0x2F9FE, 'M', '頋'), + (0x2FA00, 'M', '頩'), + (0x2FA01, 'M', '𩖶'), + (0x2FA02, 'M', '飢'), + (0x2FA03, 'M', '䬳'), + (0x2FA04, 'M', '餩'), + (0x2FA05, 'M', '馧'), + (0x2FA06, 'M', '駂'), + (0x2FA07, 'M', '駾'), + (0x2FA08, 'M', '䯎'), + (0x2FA09, 'M', '𩬰'), + (0x2FA0A, 'M', '鬒'), + (0x2FA0B, 'M', '鱀'), + (0x2FA0C, 'M', '鳽'), + (0x2FA0D, 'M', '䳎'), + (0x2FA0E, 'M', '䳭'), + (0x2FA0F, 'M', '鵧'), + (0x2FA10, 'M', '𪃎'), + (0x2FA11, 'M', '䳸'), + (0x2FA12, 'M', '𪄅'), + (0x2FA13, 'M', '𪈎'), + (0x2FA14, 'M', '𪊑'), + (0x2FA15, 'M', '麻'), + (0x2FA16, 'M', '䵖'), + (0x2FA17, 'M', '黹'), + (0x2FA18, 'M', '黾'), + (0x2FA19, 'M', '鼅'), + (0x2FA1A, 'M', '鼏'), + (0x2FA1B, 'M', '鼖'), + (0x2FA1C, 'M', '鼻'), + (0x2FA1D, 'M', '𪘀'), + (0x2FA1E, 'X'), + (0x30000, 'V'), + (0x3134B, 'X'), + (0x31350, 'V'), + (0x323B0, 'X'), + (0xE0100, 'I'), + (0xE01F0, 'X'), + ] + +uts46data = tuple( + _seg_0() + + _seg_1() + + _seg_2() + + _seg_3() + + _seg_4() + + _seg_5() + + _seg_6() + + _seg_7() + + _seg_8() + + _seg_9() + + _seg_10() + + _seg_11() + + _seg_12() + + _seg_13() + + _seg_14() + + _seg_15() + + _seg_16() + + _seg_17() + + _seg_18() + + _seg_19() + + _seg_20() + + _seg_21() + + _seg_22() + + _seg_23() + + _seg_24() + + _seg_25() + + _seg_26() + + _seg_27() + + _seg_28() + + _seg_29() + + _seg_30() + + _seg_31() + + _seg_32() + + _seg_33() + + _seg_34() + + _seg_35() + + _seg_36() + + _seg_37() + + _seg_38() + + _seg_39() + + _seg_40() + + _seg_41() + + _seg_42() + + _seg_43() + + _seg_44() + + _seg_45() + + _seg_46() + + _seg_47() + + _seg_48() + + _seg_49() + + _seg_50() + + _seg_51() + + _seg_52() + + _seg_53() + + _seg_54() + + _seg_55() + + _seg_56() + + _seg_57() + + _seg_58() + + _seg_59() + + _seg_60() + + _seg_61() + + _seg_62() + + _seg_63() + + _seg_64() + + _seg_65() + + _seg_66() + + _seg_67() + + _seg_68() + + _seg_69() + + _seg_70() + + _seg_71() + + _seg_72() + + _seg_73() + + _seg_74() + + _seg_75() + + _seg_76() + + _seg_77() + + _seg_78() + + _seg_79() + + _seg_80() + + _seg_81() +) # type: Tuple[Union[Tuple[int, str], Tuple[int, str, str]], ...] diff --git a/env/Lib/site-packages/pip/_vendor/msgpack/__init__.py b/env/Lib/site-packages/pip/_vendor/msgpack/__init__.py new file mode 100644 index 00000000..919b86f1 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/msgpack/__init__.py @@ -0,0 +1,55 @@ +from .exceptions import * +from .ext import ExtType, Timestamp + +import os + + +version = (1, 0, 8) +__version__ = "1.0.8" + + +if os.environ.get("MSGPACK_PUREPYTHON"): + from .fallback import Packer, unpackb, Unpacker +else: + try: + from ._cmsgpack import Packer, unpackb, Unpacker + except ImportError: + from .fallback import Packer, unpackb, Unpacker + + +def pack(o, stream, **kwargs): + """ + Pack object `o` and write it to `stream` + + See :class:`Packer` for options. + """ + packer = Packer(**kwargs) + stream.write(packer.pack(o)) + + +def packb(o, **kwargs): + """ + Pack object `o` and return packed bytes + + See :class:`Packer` for options. + """ + return Packer(**kwargs).pack(o) + + +def unpack(stream, **kwargs): + """ + Unpack an object from `stream`. + + Raises `ExtraData` when `stream` contains extra bytes. + See :class:`Unpacker` for options. + """ + data = stream.read() + return unpackb(data, **kwargs) + + +# alias for compatibility to simplejson/marshal/pickle. +load = unpack +loads = unpackb + +dump = pack +dumps = packb diff --git a/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..49ca7315c435f727df3247c0b527b2bb03dc877e GIT binary patch literal 1728 zcmb7E&2Jk;6rb4-d+oKI#3U_I)Uwot$U#jCfi`j>Qq-n^2yNP=f~+jrYwyIY>)o|x zH=nqYBOyho6$Bxa9yxG96@LPUp1C9xL^O(2q@HrK5)LRQ-t5LEg>c|W`=!9qdB0iA-eT8u~%N+!Jcp7IeWDbrJfaDb*xhGG$#h zBYK2L)zs16V@z)e%y?GhV(8o z4%ls~fIXx~PZL#tfpqD;q+9P>kur#+&Lf%(;{DgjbLc^42`!6rXbEQ%dpwFPW_Tzo zu;}EnKf6*VEH-P|#PbcizQ=>Skrk-`EsX%|DFCbT>%$j^$5{HqnRllru6|IMzH@tW zdT#c;o3NHerj7DlLRoadse@Ny%ALR=w9Jobn+%Q$-+>OWiToo%5Rh!4hVUK!0^buG zxGJ_c{M|OhD&PGNYoIo%?G~dIoE29;j%#2%D$OlbN!izmZc#HFQ(K~zPc+Ndd{--a zJ|%`-j0dY{2+?xon&El5V)&k-Ht$l+t^1bic*DV>8{Z?~CI)dZIXH?*{KZ*`VV6b1 z^H}8Wl0hpTi|{EzJuWXE&*81fTz-le)UljOerEJyewvc2?gI75g*WoVS=TlvBWDenW|#2LCLd zI|C30~^-?ep9t=Rr|K*iJIAxGPDm?oJ>UyW;Rg+RgV(|W85Bv4Z0`z9lbV$ z`3_k?2VQ*;&=D2`$geHNdFt97^$mwK+%_zacv=xkk{Z_x-zaKJpAe_BOe?#NZ&;3} z5xyd1Fcjr+<+cm&1nok>OQ3g?@*g3nnE#~${+MLKeI9=Xs5GQ85|%O@fWbldyq5r) zsFgyA^p{sYzjFVb=Cxflz47L@dhX#RfGz1A;)la(Da!{33qA}aZgIOKvj3MYSLQdv!rs0wI?D^paJs0OG$hh`+21vJMs zz#$&4nl5nz@cb=2%e7ig%1n?g@!ZtE!AT8tYbIZ+6?z4$*hpQaR2grEtH4|l&{Z5# zQyrz2>8VyGS$XDnSmTGv^9JukZs7M{J!B!L4UdH(Z3cpdL7P)P5rBi}^H+kJBhYQ`#;hQl|8AllFp`o-#k8 zQ9v6kYP2ZxJj#U##AhiWZKvr|*AFAkoN}7ZwU!vR?Xxzw?ZmY0cHqPw@&()eF=pOa zlCy0mXxR2O8RB)lJ*+&aKjBRHaI*U07yI?6f`1dlBILWD*SX)VKXH%ip&RjCygPQn z!+OW=k4771r6#nP1`GYt*XnxBgRu#+W zbs?(P)|n;{PiT^Dx5ZkZG7lK|p;D<>lNRdILivxi=qrJq?Zc-Jw4K$?SQtF&!8o zHOl*uoXn~z7Hgf1ZQn5N^AlN(IdB|%BBUHySIwyno z=nL(a;$UO*h4!l{@4Yb%4jQ;*s#rKz1UsqP-%gXce{4~~8{F-}aFbc3*C*@CQp6UR zgy?LX6O0VFAxNn-pOSBgIas&5SqMc+^B3U#Vh5ldt|!P7w_n;z{F^LysST-LB`3|XSdYC3M`Waud=KArzF zNS1Ls(@Ba4T`rnla4Ov;B^2L+7S8e3_$nQ_UyF~yy_|d=FgF=RQATQ3F)rN^fzN17 zQSz4`jtG242J$OYe&_PjmjUi}P_l8k`O?PS#*InVw_lUhQMRD$zh0#y0^b`-N}K1! RL22uJd9c3oCn?E$`UhE(%~t>b literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb9be8febb49a640df33f609e21eb3c47c988df5 GIT binary patch literal 8157 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d5f72c5068f3f05790359cc594cc78c63e31e04c GIT binary patch literal 42030 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 34 + elif len(b) == 12: + nanoseconds, seconds = struct.unpack("!Iq", b) + else: + raise ValueError( + "Timestamp type can only be created from 32, 64, or 96-bit byte objects" + ) + return Timestamp(seconds, nanoseconds) + + def to_bytes(self): + """Pack this Timestamp object into bytes. + + Used for pure-Python msgpack packing. + + :returns data: Payload for EXT message with code -1 (timestamp type) + :rtype: bytes + """ + if (self.seconds >> 34) == 0: # seconds is non-negative and fits in 34 bits + data64 = self.nanoseconds << 34 | self.seconds + if data64 & 0xFFFFFFFF00000000 == 0: + # nanoseconds is zero and seconds < 2**32, so timestamp 32 + data = struct.pack("!L", data64) + else: + # timestamp 64 + data = struct.pack("!Q", data64) + else: + # timestamp 96 + data = struct.pack("!Iq", self.nanoseconds, self.seconds) + return data + + @staticmethod + def from_unix(unix_sec): + """Create a Timestamp from posix timestamp in seconds. + + :param unix_float: Posix timestamp in seconds. + :type unix_float: int or float + """ + seconds = int(unix_sec // 1) + nanoseconds = int((unix_sec % 1) * 10**9) + return Timestamp(seconds, nanoseconds) + + def to_unix(self): + """Get the timestamp as a floating-point value. + + :returns: posix timestamp + :rtype: float + """ + return self.seconds + self.nanoseconds / 1e9 + + @staticmethod + def from_unix_nano(unix_ns): + """Create a Timestamp from posix timestamp in nanoseconds. + + :param int unix_ns: Posix timestamp in nanoseconds. + :rtype: Timestamp + """ + return Timestamp(*divmod(unix_ns, 10**9)) + + def to_unix_nano(self): + """Get the timestamp as a unixtime in nanoseconds. + + :returns: posix timestamp in nanoseconds + :rtype: int + """ + return self.seconds * 10**9 + self.nanoseconds + + def to_datetime(self): + """Get the timestamp as a UTC datetime. + + :rtype: `datetime.datetime` + """ + utc = datetime.timezone.utc + return datetime.datetime.fromtimestamp(0, utc) + datetime.timedelta(seconds=self.to_unix()) + + @staticmethod + def from_datetime(dt): + """Create a Timestamp from datetime with tzinfo. + + :rtype: Timestamp + """ + return Timestamp.from_unix(dt.timestamp()) diff --git a/env/Lib/site-packages/pip/_vendor/msgpack/fallback.py b/env/Lib/site-packages/pip/_vendor/msgpack/fallback.py new file mode 100644 index 00000000..a174162a --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/msgpack/fallback.py @@ -0,0 +1,951 @@ +"""Fallback pure Python implementation of msgpack""" +from datetime import datetime as _DateTime +import sys +import struct + + +if hasattr(sys, "pypy_version_info"): + # StringIO is slow on PyPy, StringIO is faster. However: PyPy's own + # StringBuilder is fastest. + from __pypy__ import newlist_hint + + try: + from __pypy__.builders import BytesBuilder as StringBuilder + except ImportError: + from __pypy__.builders import StringBuilder + USING_STRINGBUILDER = True + + class StringIO: + def __init__(self, s=b""): + if s: + self.builder = StringBuilder(len(s)) + self.builder.append(s) + else: + self.builder = StringBuilder() + + def write(self, s): + if isinstance(s, memoryview): + s = s.tobytes() + elif isinstance(s, bytearray): + s = bytes(s) + self.builder.append(s) + + def getvalue(self): + return self.builder.build() + +else: + USING_STRINGBUILDER = False + from io import BytesIO as StringIO + + newlist_hint = lambda size: [] + + +from .exceptions import BufferFull, OutOfData, ExtraData, FormatError, StackError + +from .ext import ExtType, Timestamp + + +EX_SKIP = 0 +EX_CONSTRUCT = 1 +EX_READ_ARRAY_HEADER = 2 +EX_READ_MAP_HEADER = 3 + +TYPE_IMMEDIATE = 0 +TYPE_ARRAY = 1 +TYPE_MAP = 2 +TYPE_RAW = 3 +TYPE_BIN = 4 +TYPE_EXT = 5 + +DEFAULT_RECURSE_LIMIT = 511 + + +def _check_type_strict(obj, t, type=type, tuple=tuple): + if type(t) is tuple: + return type(obj) in t + else: + return type(obj) is t + + +def _get_data_from_buffer(obj): + view = memoryview(obj) + if view.itemsize != 1: + raise ValueError("cannot unpack from multi-byte object") + return view + + +def unpackb(packed, **kwargs): + """ + Unpack an object from `packed`. + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``ValueError`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + + See :class:`Unpacker` for options. + """ + unpacker = Unpacker(None, max_buffer_size=len(packed), **kwargs) + unpacker.feed(packed) + try: + ret = unpacker._unpack() + except OutOfData: + raise ValueError("Unpack failed: incomplete input") + except RecursionError: + raise StackError + if unpacker._got_extradata(): + raise ExtraData(ret, unpacker._get_extradata()) + return ret + + +_NO_FORMAT_USED = "" +_MSGPACK_HEADERS = { + 0xC4: (1, _NO_FORMAT_USED, TYPE_BIN), + 0xC5: (2, ">H", TYPE_BIN), + 0xC6: (4, ">I", TYPE_BIN), + 0xC7: (2, "Bb", TYPE_EXT), + 0xC8: (3, ">Hb", TYPE_EXT), + 0xC9: (5, ">Ib", TYPE_EXT), + 0xCA: (4, ">f"), + 0xCB: (8, ">d"), + 0xCC: (1, _NO_FORMAT_USED), + 0xCD: (2, ">H"), + 0xCE: (4, ">I"), + 0xCF: (8, ">Q"), + 0xD0: (1, "b"), + 0xD1: (2, ">h"), + 0xD2: (4, ">i"), + 0xD3: (8, ">q"), + 0xD4: (1, "b1s", TYPE_EXT), + 0xD5: (2, "b2s", TYPE_EXT), + 0xD6: (4, "b4s", TYPE_EXT), + 0xD7: (8, "b8s", TYPE_EXT), + 0xD8: (16, "b16s", TYPE_EXT), + 0xD9: (1, _NO_FORMAT_USED, TYPE_RAW), + 0xDA: (2, ">H", TYPE_RAW), + 0xDB: (4, ">I", TYPE_RAW), + 0xDC: (2, ">H", TYPE_ARRAY), + 0xDD: (4, ">I", TYPE_ARRAY), + 0xDE: (2, ">H", TYPE_MAP), + 0xDF: (4, ">I", TYPE_MAP), +} + + +class Unpacker: + """Streaming unpacker. + + Arguments: + + :param file_like: + File-like object having `.read(n)` method. + If specified, unpacker reads serialized data from it and `.feed()` is not usable. + + :param int read_size: + Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`) + + :param bool use_list: + If true, unpack msgpack array to Python list. + Otherwise, unpack to Python tuple. (default: True) + + :param bool raw: + If true, unpack msgpack raw to Python bytes. + Otherwise, unpack to Python str by decoding with UTF-8 encoding (default). + + :param int timestamp: + Control how timestamp type is unpacked: + + 0 - Timestamp + 1 - float (Seconds from the EPOCH) + 2 - int (Nanoseconds from the EPOCH) + 3 - datetime.datetime (UTC). + + :param bool strict_map_key: + If true (default), only str or bytes are accepted for map (dict) keys. + + :param object_hook: + When specified, it should be callable. + Unpacker calls it with a dict argument after unpacking msgpack map. + (See also simplejson) + + :param object_pairs_hook: + When specified, it should be callable. + Unpacker calls it with a list of key-value pairs after unpacking msgpack map. + (See also simplejson) + + :param str unicode_errors: + The error handler for decoding unicode. (default: 'strict') + This option should be used only when you have msgpack data which + contains invalid UTF-8 string. + + :param int max_buffer_size: + Limits size of data waiting unpacked. 0 means 2**32-1. + The default value is 100*1024*1024 (100MiB). + Raises `BufferFull` exception when it is insufficient. + You should set this parameter when unpacking data from untrusted source. + + :param int max_str_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of str. (default: max_buffer_size) + + :param int max_bin_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of bin. (default: max_buffer_size) + + :param int max_array_len: + Limits max length of array. + (default: max_buffer_size) + + :param int max_map_len: + Limits max length of map. + (default: max_buffer_size//2) + + :param int max_ext_len: + Deprecated, use *max_buffer_size* instead. + Limits max size of ext type. (default: max_buffer_size) + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + file_like=None, + read_size=0, + use_list=True, + raw=False, + timestamp=0, + strict_map_key=True, + object_hook=None, + object_pairs_hook=None, + list_hook=None, + unicode_errors=None, + max_buffer_size=100 * 1024 * 1024, + ext_hook=ExtType, + max_str_len=-1, + max_bin_len=-1, + max_array_len=-1, + max_map_len=-1, + max_ext_len=-1, + ): + if unicode_errors is None: + unicode_errors = "strict" + + if file_like is None: + self._feeding = True + else: + if not callable(file_like.read): + raise TypeError("`file_like.read` must be callable") + self.file_like = file_like + self._feeding = False + + #: array of bytes fed. + self._buffer = bytearray() + #: Which position we currently reads + self._buff_i = 0 + + # When Unpacker is used as an iterable, between the calls to next(), + # the buffer is not "consumed" completely, for efficiency sake. + # Instead, it is done sloppily. To make sure we raise BufferFull at + # the correct moments, we have to keep track of how sloppy we were. + # Furthermore, when the buffer is incomplete (that is: in the case + # we raise an OutOfData) we need to rollback the buffer to the correct + # state, which _buf_checkpoint records. + self._buf_checkpoint = 0 + + if not max_buffer_size: + max_buffer_size = 2**31 - 1 + if max_str_len == -1: + max_str_len = max_buffer_size + if max_bin_len == -1: + max_bin_len = max_buffer_size + if max_array_len == -1: + max_array_len = max_buffer_size + if max_map_len == -1: + max_map_len = max_buffer_size // 2 + if max_ext_len == -1: + max_ext_len = max_buffer_size + + self._max_buffer_size = max_buffer_size + if read_size > self._max_buffer_size: + raise ValueError("read_size must be smaller than max_buffer_size") + self._read_size = read_size or min(self._max_buffer_size, 16 * 1024) + self._raw = bool(raw) + self._strict_map_key = bool(strict_map_key) + self._unicode_errors = unicode_errors + self._use_list = use_list + if not (0 <= timestamp <= 3): + raise ValueError("timestamp must be 0..3") + self._timestamp = timestamp + self._list_hook = list_hook + self._object_hook = object_hook + self._object_pairs_hook = object_pairs_hook + self._ext_hook = ext_hook + self._max_str_len = max_str_len + self._max_bin_len = max_bin_len + self._max_array_len = max_array_len + self._max_map_len = max_map_len + self._max_ext_len = max_ext_len + self._stream_offset = 0 + + if list_hook is not None and not callable(list_hook): + raise TypeError("`list_hook` is not callable") + if object_hook is not None and not callable(object_hook): + raise TypeError("`object_hook` is not callable") + if object_pairs_hook is not None and not callable(object_pairs_hook): + raise TypeError("`object_pairs_hook` is not callable") + if object_hook is not None and object_pairs_hook is not None: + raise TypeError("object_pairs_hook and object_hook are mutually exclusive") + if not callable(ext_hook): + raise TypeError("`ext_hook` is not callable") + + def feed(self, next_bytes): + assert self._feeding + view = _get_data_from_buffer(next_bytes) + if len(self._buffer) - self._buff_i + len(view) > self._max_buffer_size: + raise BufferFull + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Use extend here: INPLACE_ADD += doesn't reliably typecast memoryview in jython + self._buffer.extend(view) + + def _consume(self): + """Gets rid of the used parts of the buffer.""" + self._stream_offset += self._buff_i - self._buf_checkpoint + self._buf_checkpoint = self._buff_i + + def _got_extradata(self): + return self._buff_i < len(self._buffer) + + def _get_extradata(self): + return self._buffer[self._buff_i :] + + def read_bytes(self, n): + ret = self._read(n, raise_outofdata=False) + self._consume() + return ret + + def _read(self, n, raise_outofdata=True): + # (int) -> bytearray + self._reserve(n, raise_outofdata=raise_outofdata) + i = self._buff_i + ret = self._buffer[i : i + n] + self._buff_i = i + len(ret) + return ret + + def _reserve(self, n, raise_outofdata=True): + remain_bytes = len(self._buffer) - self._buff_i - n + + # Fast path: buffer has n bytes already + if remain_bytes >= 0: + return + + if self._feeding: + self._buff_i = self._buf_checkpoint + raise OutOfData + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Read from file + remain_bytes = -remain_bytes + if remain_bytes + len(self._buffer) > self._max_buffer_size: + raise BufferFull + while remain_bytes > 0: + to_read_bytes = max(self._read_size, remain_bytes) + read_data = self.file_like.read(to_read_bytes) + if not read_data: + break + assert isinstance(read_data, bytes) + self._buffer += read_data + remain_bytes -= len(read_data) + + if len(self._buffer) < n + self._buff_i and raise_outofdata: + self._buff_i = 0 # rollback + raise OutOfData + + def _read_header(self): + typ = TYPE_IMMEDIATE + n = 0 + obj = None + self._reserve(1) + b = self._buffer[self._buff_i] + self._buff_i += 1 + if b & 0b10000000 == 0: + obj = b + elif b & 0b11100000 == 0b11100000: + obj = -1 - (b ^ 0xFF) + elif b & 0b11100000 == 0b10100000: + n = b & 0b00011111 + typ = TYPE_RAW + if n > self._max_str_len: + raise ValueError(f"{n} exceeds max_str_len({self._max_str_len})") + obj = self._read(n) + elif b & 0b11110000 == 0b10010000: + n = b & 0b00001111 + typ = TYPE_ARRAY + if n > self._max_array_len: + raise ValueError(f"{n} exceeds max_array_len({self._max_array_len})") + elif b & 0b11110000 == 0b10000000: + n = b & 0b00001111 + typ = TYPE_MAP + if n > self._max_map_len: + raise ValueError(f"{n} exceeds max_map_len({self._max_map_len})") + elif b == 0xC0: + obj = None + elif b == 0xC2: + obj = False + elif b == 0xC3: + obj = True + elif 0xC4 <= b <= 0xC6: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + n = struct.unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_bin_len: + raise ValueError(f"{n} exceeds max_bin_len({self._max_bin_len})") + obj = self._read(n) + elif 0xC7 <= b <= 0xC9: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + L, n = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if L > self._max_ext_len: + raise ValueError(f"{L} exceeds max_ext_len({self._max_ext_len})") + obj = self._read(L) + elif 0xCA <= b <= 0xD3: + size, fmt = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + obj = struct.unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + obj = self._buffer[self._buff_i] + self._buff_i += size + elif 0xD4 <= b <= 0xD8: + size, fmt, typ = _MSGPACK_HEADERS[b] + if self._max_ext_len < size: + raise ValueError(f"{size} exceeds max_ext_len({self._max_ext_len})") + self._reserve(size + 1) + n, obj = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + 1 + elif 0xD9 <= b <= 0xDB: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_str_len: + raise ValueError(f"{n} exceeds max_str_len({self._max_str_len})") + obj = self._read(n) + elif 0xDC <= b <= 0xDD: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_array_len: + raise ValueError(f"{n} exceeds max_array_len({self._max_array_len})") + elif 0xDE <= b <= 0xDF: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_map_len: + raise ValueError(f"{n} exceeds max_map_len({self._max_map_len})") + else: + raise FormatError("Unknown header: 0x%x" % b) + return typ, n, obj + + def _unpack(self, execute=EX_CONSTRUCT): + typ, n, obj = self._read_header() + + if execute == EX_READ_ARRAY_HEADER: + if typ != TYPE_ARRAY: + raise ValueError("Expected array") + return n + if execute == EX_READ_MAP_HEADER: + if typ != TYPE_MAP: + raise ValueError("Expected map") + return n + # TODO should we eliminate the recursion? + if typ == TYPE_ARRAY: + if execute == EX_SKIP: + for i in range(n): + # TODO check whether we need to call `list_hook` + self._unpack(EX_SKIP) + return + ret = newlist_hint(n) + for i in range(n): + ret.append(self._unpack(EX_CONSTRUCT)) + if self._list_hook is not None: + ret = self._list_hook(ret) + # TODO is the interaction between `list_hook` and `use_list` ok? + return ret if self._use_list else tuple(ret) + if typ == TYPE_MAP: + if execute == EX_SKIP: + for i in range(n): + # TODO check whether we need to call hooks + self._unpack(EX_SKIP) + self._unpack(EX_SKIP) + return + if self._object_pairs_hook is not None: + ret = self._object_pairs_hook( + (self._unpack(EX_CONSTRUCT), self._unpack(EX_CONSTRUCT)) for _ in range(n) + ) + else: + ret = {} + for _ in range(n): + key = self._unpack(EX_CONSTRUCT) + if self._strict_map_key and type(key) not in (str, bytes): + raise ValueError("%s is not allowed for map key" % str(type(key))) + if isinstance(key, str): + key = sys.intern(key) + ret[key] = self._unpack(EX_CONSTRUCT) + if self._object_hook is not None: + ret = self._object_hook(ret) + return ret + if execute == EX_SKIP: + return + if typ == TYPE_RAW: + if self._raw: + obj = bytes(obj) + else: + obj = obj.decode("utf_8", self._unicode_errors) + return obj + if typ == TYPE_BIN: + return bytes(obj) + if typ == TYPE_EXT: + if n == -1: # timestamp + ts = Timestamp.from_bytes(bytes(obj)) + if self._timestamp == 1: + return ts.to_unix() + elif self._timestamp == 2: + return ts.to_unix_nano() + elif self._timestamp == 3: + return ts.to_datetime() + else: + return ts + else: + return self._ext_hook(n, bytes(obj)) + assert typ == TYPE_IMMEDIATE + return obj + + def __iter__(self): + return self + + def __next__(self): + try: + ret = self._unpack(EX_CONSTRUCT) + self._consume() + return ret + except OutOfData: + self._consume() + raise StopIteration + except RecursionError: + raise StackError + + next = __next__ + + def skip(self): + self._unpack(EX_SKIP) + self._consume() + + def unpack(self): + try: + ret = self._unpack(EX_CONSTRUCT) + except RecursionError: + raise StackError + self._consume() + return ret + + def read_array_header(self): + ret = self._unpack(EX_READ_ARRAY_HEADER) + self._consume() + return ret + + def read_map_header(self): + ret = self._unpack(EX_READ_MAP_HEADER) + self._consume() + return ret + + def tell(self): + return self._stream_offset + + +class Packer: + """ + MessagePack Packer + + Usage:: + + packer = Packer() + astream.write(packer.pack(a)) + astream.write(packer.pack(b)) + + Packer's constructor has some keyword arguments: + + :param default: + When specified, it should be callable. + Convert user type to builtin type that Packer supports. + See also simplejson's document. + + :param bool use_single_float: + Use single precision float type for float. (default: False) + + :param bool autoreset: + Reset buffer after each pack and return its content as `bytes`. (default: True). + If set this to false, use `bytes()` to get content and `.reset()` to clear buffer. + + :param bool use_bin_type: + Use bin type introduced in msgpack spec 2.0 for bytes. + It also enables str8 type for unicode. (default: True) + + :param bool strict_types: + If set to true, types will be checked to be exact. Derived classes + from serializable types will not be serialized and will be + treated as unsupported type and forwarded to default. + Additionally tuples will not be serialized as lists. + This is useful when trying to implement accurate serialization + for python types. + + :param bool datetime: + If set to true, datetime with tzinfo is packed into Timestamp type. + Note that the tzinfo is stripped in the timestamp. + You can get UTC datetime with `timestamp=3` option of the Unpacker. + + :param str unicode_errors: + The error handler for encoding unicode. (default: 'strict') + DO NOT USE THIS!! This option is kept for very specific usage. + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + default=None, + use_single_float=False, + autoreset=True, + use_bin_type=True, + strict_types=False, + datetime=False, + unicode_errors=None, + ): + self._strict_types = strict_types + self._use_float = use_single_float + self._autoreset = autoreset + self._use_bin_type = use_bin_type + self._buffer = StringIO() + self._datetime = bool(datetime) + self._unicode_errors = unicode_errors or "strict" + if default is not None: + if not callable(default): + raise TypeError("default must be callable") + self._default = default + + def _pack( + self, + obj, + nest_limit=DEFAULT_RECURSE_LIMIT, + check=isinstance, + check_type_strict=_check_type_strict, + ): + default_used = False + if self._strict_types: + check = check_type_strict + list_types = list + else: + list_types = (list, tuple) + while True: + if nest_limit < 0: + raise ValueError("recursion limit exceeded") + if obj is None: + return self._buffer.write(b"\xc0") + if check(obj, bool): + if obj: + return self._buffer.write(b"\xc3") + return self._buffer.write(b"\xc2") + if check(obj, int): + if 0 <= obj < 0x80: + return self._buffer.write(struct.pack("B", obj)) + if -0x20 <= obj < 0: + return self._buffer.write(struct.pack("b", obj)) + if 0x80 <= obj <= 0xFF: + return self._buffer.write(struct.pack("BB", 0xCC, obj)) + if -0x80 <= obj < 0: + return self._buffer.write(struct.pack(">Bb", 0xD0, obj)) + if 0xFF < obj <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xCD, obj)) + if -0x8000 <= obj < -0x80: + return self._buffer.write(struct.pack(">Bh", 0xD1, obj)) + if 0xFFFF < obj <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xCE, obj)) + if -0x80000000 <= obj < -0x8000: + return self._buffer.write(struct.pack(">Bi", 0xD2, obj)) + if 0xFFFFFFFF < obj <= 0xFFFFFFFFFFFFFFFF: + return self._buffer.write(struct.pack(">BQ", 0xCF, obj)) + if -0x8000000000000000 <= obj < -0x80000000: + return self._buffer.write(struct.pack(">Bq", 0xD3, obj)) + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = True + continue + raise OverflowError("Integer value out of range") + if check(obj, (bytes, bytearray)): + n = len(obj) + if n >= 2**32: + raise ValueError("%s is too large" % type(obj).__name__) + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, str): + obj = obj.encode("utf-8", self._unicode_errors) + n = len(obj) + if n >= 2**32: + raise ValueError("String is too large") + self._pack_raw_header(n) + return self._buffer.write(obj) + if check(obj, memoryview): + n = obj.nbytes + if n >= 2**32: + raise ValueError("Memoryview is too large") + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, float): + if self._use_float: + return self._buffer.write(struct.pack(">Bf", 0xCA, obj)) + return self._buffer.write(struct.pack(">Bd", 0xCB, obj)) + if check(obj, (ExtType, Timestamp)): + if check(obj, Timestamp): + code = -1 + data = obj.to_bytes() + else: + code = obj.code + data = obj.data + assert isinstance(code, int) + assert isinstance(data, bytes) + L = len(data) + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xC7, L)) + elif L <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xC8, L)) + else: + self._buffer.write(struct.pack(">BI", 0xC9, L)) + self._buffer.write(struct.pack("b", code)) + self._buffer.write(data) + return + if check(obj, list_types): + n = len(obj) + self._pack_array_header(n) + for i in range(n): + self._pack(obj[i], nest_limit - 1) + return + if check(obj, dict): + return self._pack_map_pairs(len(obj), obj.items(), nest_limit - 1) + + if self._datetime and check(obj, _DateTime) and obj.tzinfo is not None: + obj = Timestamp.from_datetime(obj) + default_used = 1 + continue + + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = 1 + continue + + if self._datetime and check(obj, _DateTime): + raise ValueError(f"Cannot serialize {obj!r} where tzinfo=None") + + raise TypeError(f"Cannot serialize {obj!r}") + + def pack(self, obj): + try: + self._pack(obj) + except: + self._buffer = StringIO() # force reset + raise + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_pairs(self, pairs): + self._pack_map_pairs(len(pairs), pairs) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_array_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_array_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_map_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_ext_type(self, typecode, data): + if not isinstance(typecode, int): + raise TypeError("typecode must have int type.") + if not 0 <= typecode <= 127: + raise ValueError("typecode should be 0-127") + if not isinstance(data, bytes): + raise TypeError("data must have bytes type") + L = len(data) + if L > 0xFFFFFFFF: + raise ValueError("Too large data") + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(b"\xc7" + struct.pack("B", L)) + elif L <= 0xFFFF: + self._buffer.write(b"\xc8" + struct.pack(">H", L)) + else: + self._buffer.write(b"\xc9" + struct.pack(">I", L)) + self._buffer.write(struct.pack("B", typecode)) + self._buffer.write(data) + + def _pack_array_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x90 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDC, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDD, n)) + raise ValueError("Array is too large") + + def _pack_map_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x80 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDE, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDF, n)) + raise ValueError("Dict is too large") + + def _pack_map_pairs(self, n, pairs, nest_limit=DEFAULT_RECURSE_LIMIT): + self._pack_map_header(n) + for k, v in pairs: + self._pack(k, nest_limit - 1) + self._pack(v, nest_limit - 1) + + def _pack_raw_header(self, n): + if n <= 0x1F: + self._buffer.write(struct.pack("B", 0xA0 + n)) + elif self._use_bin_type and n <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xD9, n)) + elif n <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xDA, n)) + elif n <= 0xFFFFFFFF: + self._buffer.write(struct.pack(">BI", 0xDB, n)) + else: + raise ValueError("Raw is too large") + + def _pack_bin_header(self, n): + if not self._use_bin_type: + return self._pack_raw_header(n) + elif n <= 0xFF: + return self._buffer.write(struct.pack(">BB", 0xC4, n)) + elif n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xC5, n)) + elif n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xC6, n)) + else: + raise ValueError("Bin is too large") + + def bytes(self): + """Return internal buffer contents as bytes object""" + return self._buffer.getvalue() + + def reset(self): + """Reset internal buffer. + + This method is useful only when autoreset=False. + """ + self._buffer = StringIO() + + def getbuffer(self): + """Return view of internal buffer.""" + if USING_STRINGBUILDER: + return memoryview(self.bytes()) + else: + return self._buffer.getbuffer() diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__init__.py b/env/Lib/site-packages/pip/_vendor/packaging/__init__.py new file mode 100644 index 00000000..9ba41d83 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/__init__.py @@ -0,0 +1,15 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +__title__ = "packaging" +__summary__ = "Core utilities for Python packages" +__uri__ = "https://github.com/pypa/packaging" + +__version__ = "24.1" + +__author__ = "Donald Stufft and individual contributors" +__email__ = "donald@stufft.io" + +__license__ = "BSD-2-Clause or Apache-2.0" +__copyright__ = "2014 %s" % __author__ diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d93f6ebd41c2c1ed01822b643dedea5638f2477 GIT binary patch literal 545 zcmYLGziS&Y7}eR1&u8b1hYoFraxJvQ0s9=+LkOj`b-I*L0^W`TAzQNj(L3qT55wJb znLC&EU+CY`shja+=s#e{mZ@^wkZ%z0N$-35^z_^Jo51c+7rNO8dpr4b9$zvdxs55Fycxt-l8uFt%8nE>zKSnl8Y|GOcOO)o zK^Ec_<5b9pY(k8IgEj7F`EBEEDyT`=JK45(*dIk|WS3plahzQf`HxF)-5!>$b+cEx j+xDZfwe`=+=KA22F5_Mr3R=jT72SJ%EgwvGP)WFfEF literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab5fa85575a1a37d13cf2d915c3d0dddcb6cf6c8 GIT binary patch literal 4954 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1a76c4ff628dba4500142fdaecfa43f923e68de5 GIT binary patch literal 4541 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 lENtstTzlYJW8i!!xrC&+>*S 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 s5S)jlW8X%|b=ldPd|f4^`kd^ke3O%Pk literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..30d309a68c644d97c8c3d4dc0dde75fe35459373 GIT binary patch literal 3228 zcmc&#&1)M+6rWwKWLcIhx0Y);b`k|QBx>ugq_nhzT-v4|1W|D4!3Y*vJC>CyD`j?N zknq6=9|~!q&=&dVo{I3F(u<2PW$CT|fQt%&ocewzk)Cx29CxqT(beYa)#I%^sK4lg=WR`ZKt3O+$q9~xT*@nPaa#78WHPmmnlF|07jlLK;u zV_pz;*)HWb@2}^-6#S!VT{wK@ zUY^@~`N!q$yi<1hO07`*x=`XyzE-ZSnS0!}s$xwkY3-WnxT0R9aJaKtYj{!96uc%( zvpLuEjgVJ+>Iw4hP*vFh`#rhPA%^*mfnV|%ZxPdCZvTibwDQ?!CtYptyGf_ZwRO+f zEjYWLfdE95Y}Hu>+6jT-@0h@p8b+Phh#as#lCwX4e3bg(i?ig-)96hR$NF&9-Q}X# zZ8OrS$CvW9o_i#4!nQ6Z=_67^94yIXR1^`@thf}z>`-!`OpsltmztFHda*n427JJu zm?tvgh>vqb${DO!0Kv(8KF~b!NUOvQrhi}CXHSO@Pd2@&+GJvyL@Gk8?38WCE!aiw zO`2x0Qg9rq{H~YA;l_UGX}&NOk)uFS?$wU9DC`np9#DBm?p$$Q_WkL1ZV(j9?fA z&MHZS80R}8hwNO}!q<+LJB&W(5iOiidQN2(n0T|G@;|=^PUIzitmcO}EDs-5$wCJev@ADHMUgeEmeS ze{AT+Xil#5`a+ds2u5Xjo7aci%m?wPY9HdSsWIxqIQ_dK#7le;N!nnzsb!}H2BqL# zb{P;wl?}k`13r@d$+%#)Wg9ma1CjtJ$K@sZ1AcW!7?og0G=VF@j!t95>sWRRWaM@sD{+ zW&sErXPQoe}R~KUsWKSFC{md4Y9-G zl~K#l^WP+|q7T%K^-w&ZMJShp+?|IsO?w%i*D`-Gkat-;{o>(4^krmTOGA|=RqF29 LZ1y)cBc1*OhrNJe literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e3e3d247f56938d1b7c8e6fbbd2aeec3355c9c0 GIT binary patch literal 7902 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..24a43466dc591f78ca57c51757e7e051d89134be GIT binary patch literal 10998 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f573215bb3ee3f6e9d9a581ea47d0bb23593fb17 GIT binary patch literal 38726 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 HWMli^$OqbZ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5c2d333ce3599c8fbe881591abee9e640b006d3 GIT binary patch literal 21331 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

{29O=m_Z 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 G@qYlEVT05F literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebfc72528a3d512f5c81865bd9c94c921d954a8f GIT binary patch literal 19494 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%0DPKo3G*MB{K3H(pE?FWa?D#`ZrNed= z{Q1WuN$8Gx24ayjH@W`0bzs)AXy!WCU-w+|{G@jJz~wh)-uS_h|FHj#<=-F9d0zQN z>%gxSV$64UzKB7PL&)aaLM#lb$96)BgocHa30aX(p&UL2`AtQqs^nojv*dqL8(zQ@ zynYAgsL9w{A9@=fQ(J!7+V`OK#cb<~cdYkY2bQb=EpcX_3k`L;P}$>CRS8L&e$k;E zrbM-R;8`W=gTEmnoHZ# z_Ov7IOuI&GwBc4N>7Yrjb8m%rv3=ByK@v=z}0z()j(1 z5mVe=_((g=kC?Q%)P=dk(^*|uG3P;=!uvaMXR}DAj|$|skSw1yy> z2i5_Eh9sQGiA9xU-U*vjPU2fkCGQkr`{0Z=EGO1N`eFhfVzM|Ji>|R42=m&Rze#fo zhh8}jey*KNX@xK7n?rwvY&*OvyjeRQwq-aG|hE-1N}l`>64w z=!0f|7XLT)|HCqnWp=t<20}3sYPwGP9spgMzq8Rp~y7GGEHMuc<4kSo!!C_T99W=rk#?!^N9YdF8MlqK6Ff$ zjv=aZK$>8`hT{Rqs322gnX#X5(V{^6jgPyIBG#D@)gNB*5nD~|DTCg None: + self._f = f + + try: + ident = self._read("16B") + except struct.error: + raise ELFInvalid("unable to parse identification") + magic = bytes(ident[:4]) + if magic != b"\x7fELF": + raise ELFInvalid(f"invalid magic: {magic!r}") + + self.capacity = ident[4] # Format for program header (bitness). + self.encoding = ident[5] # Data structure encoding (endianness). + + try: + # e_fmt: Format for program header. + # p_fmt: Format for section header. + # p_idx: Indexes to find p_type, p_offset, and p_filesz. + e_fmt, self._p_fmt, self._p_idx = { + (1, 1): ("HHIIIIIHHH", ">IIIIIIII", (0, 1, 4)), # 32-bit MSB. + (2, 1): ("HHIQQQIHHH", ">IIQQQQQQ", (0, 2, 5)), # 64-bit MSB. + }[(self.capacity, self.encoding)] + except KeyError: + raise ELFInvalid( + f"unrecognized capacity ({self.capacity}) or " + f"encoding ({self.encoding})" + ) + + try: + ( + _, + self.machine, # Architecture type. + _, + _, + self._e_phoff, # Offset of program header. + _, + self.flags, # Processor-specific flags. + _, + self._e_phentsize, # Size of section. + self._e_phnum, # Number of sections. + ) = self._read(e_fmt) + except struct.error as e: + raise ELFInvalid("unable to parse machine and section information") from e + + def _read(self, fmt: str) -> tuple[int, ...]: + return struct.unpack(fmt, self._f.read(struct.calcsize(fmt))) + + @property + def interpreter(self) -> str | None: + """ + The path recorded in the ``PT_INTERP`` section header. + """ + for index in range(self._e_phnum): + self._f.seek(self._e_phoff + self._e_phentsize * index) + try: + data = self._read(self._p_fmt) + except struct.error: + continue + if data[self._p_idx[0]] != 3: # Not PT_INTERP. + continue + self._f.seek(data[self._p_idx[1]]) + return os.fsdecode(self._f.read(data[self._p_idx[2]])).strip("\0") + return None diff --git a/env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py b/env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py new file mode 100644 index 00000000..08f651fb --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py @@ -0,0 +1,262 @@ +from __future__ import annotations + +import collections +import contextlib +import functools +import os +import re +import sys +import warnings +from typing import Generator, Iterator, NamedTuple, Sequence + +from ._elffile import EIClass, EIData, ELFFile, EMachine + +EF_ARM_ABIMASK = 0xFF000000 +EF_ARM_ABI_VER5 = 0x05000000 +EF_ARM_ABI_FLOAT_HARD = 0x00000400 + + +# `os.PathLike` not a generic type until Python 3.9, so sticking with `str` +# as the type for `path` until then. +@contextlib.contextmanager +def _parse_elf(path: str) -> Generator[ELFFile | None, None, None]: + try: + with open(path, "rb") as f: + yield ELFFile(f) + except (OSError, TypeError, ValueError): + yield None + + +def _is_linux_armhf(executable: str) -> bool: + # hard-float ABI can be detected from the ELF header of the running + # process + # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.Arm + and f.flags & EF_ARM_ABIMASK == EF_ARM_ABI_VER5 + and f.flags & EF_ARM_ABI_FLOAT_HARD == EF_ARM_ABI_FLOAT_HARD + ) + + +def _is_linux_i686(executable: str) -> bool: + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.I386 + ) + + +def _have_compatible_abi(executable: str, archs: Sequence[str]) -> bool: + if "armv7l" in archs: + return _is_linux_armhf(executable) + if "i686" in archs: + return _is_linux_i686(executable) + allowed_archs = { + "x86_64", + "aarch64", + "ppc64", + "ppc64le", + "s390x", + "loongarch64", + "riscv64", + } + return any(arch in allowed_archs for arch in archs) + + +# If glibc ever changes its major version, we need to know what the last +# minor version was, so we can build the complete list of all versions. +# For now, guess what the highest minor version might be, assume it will +# be 50 for testing. Once this actually happens, update the dictionary +# with the actual value. +_LAST_GLIBC_MINOR: dict[int, int] = collections.defaultdict(lambda: 50) + + +class _GLibCVersion(NamedTuple): + major: int + minor: int + + +def _glibc_version_string_confstr() -> str | None: + """ + Primary implementation of glibc_version_string using os.confstr. + """ + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module. + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 + try: + # Should be a string like "glibc 2.17". + version_string: str | None = os.confstr("CS_GNU_LIBC_VERSION") + assert version_string is not None + _, version = version_string.rsplit() + except (AssertionError, AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def _glibc_version_string_ctypes() -> str | None: + """ + Fallback implementation of glibc_version_string using ctypes. + """ + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +def _glibc_version_string() -> str | None: + """Returns glibc version string, or None if not using glibc.""" + return _glibc_version_string_confstr() or _glibc_version_string_ctypes() + + +def _parse_glibc_version(version_str: str) -> tuple[int, int]: + """Parse glibc version. + + We use a regexp instead of str.split because we want to discard any + random junk that might come after the minor version -- this might happen + in patched/forked versions of glibc (e.g. Linaro's version of glibc + uses version strings like "2.20-2014.11"). See gh-3588. + """ + m = re.match(r"(?P[0-9]+)\.(?P[0-9]+)", version_str) + if not m: + warnings.warn( + f"Expected glibc version with 2 components major.minor," + f" got: {version_str}", + RuntimeWarning, + ) + return -1, -1 + return int(m.group("major")), int(m.group("minor")) + + +@functools.lru_cache +def _get_glibc_version() -> tuple[int, int]: + version_str = _glibc_version_string() + if version_str is None: + return (-1, -1) + return _parse_glibc_version(version_str) + + +# From PEP 513, PEP 600 +def _is_compatible(arch: str, version: _GLibCVersion) -> bool: + sys_glibc = _get_glibc_version() + if sys_glibc < version: + return False + # Check for presence of _manylinux module. + try: + import _manylinux + except ImportError: + return True + if hasattr(_manylinux, "manylinux_compatible"): + result = _manylinux.manylinux_compatible(version[0], version[1], arch) + if result is not None: + return bool(result) + return True + if version == _GLibCVersion(2, 5): + if hasattr(_manylinux, "manylinux1_compatible"): + return bool(_manylinux.manylinux1_compatible) + if version == _GLibCVersion(2, 12): + if hasattr(_manylinux, "manylinux2010_compatible"): + return bool(_manylinux.manylinux2010_compatible) + if version == _GLibCVersion(2, 17): + if hasattr(_manylinux, "manylinux2014_compatible"): + return bool(_manylinux.manylinux2014_compatible) + return True + + +_LEGACY_MANYLINUX_MAP = { + # CentOS 7 w/ glibc 2.17 (PEP 599) + (2, 17): "manylinux2014", + # CentOS 6 w/ glibc 2.12 (PEP 571) + (2, 12): "manylinux2010", + # CentOS 5 w/ glibc 2.5 (PEP 513) + (2, 5): "manylinux1", +} + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate manylinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be manylinux-compatible. + + :returns: An iterator of compatible manylinux tags. + """ + if not _have_compatible_abi(sys.executable, archs): + return + # Oldest glibc to be supported regardless of architecture is (2, 17). + too_old_glibc2 = _GLibCVersion(2, 16) + if set(archs) & {"x86_64", "i686"}: + # On x86/i686 also oldest glibc to be supported is (2, 5). + too_old_glibc2 = _GLibCVersion(2, 4) + current_glibc = _GLibCVersion(*_get_glibc_version()) + glibc_max_list = [current_glibc] + # We can assume compatibility across glibc major versions. + # https://sourceware.org/bugzilla/show_bug.cgi?id=24636 + # + # Build a list of maximum glibc versions so that we can + # output the canonical list of all glibc from current_glibc + # down to too_old_glibc2, including all intermediary versions. + for glibc_major in range(current_glibc.major - 1, 1, -1): + glibc_minor = _LAST_GLIBC_MINOR[glibc_major] + glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor)) + for arch in archs: + for glibc_max in glibc_max_list: + if glibc_max.major == too_old_glibc2.major: + min_minor = too_old_glibc2.minor + else: + # For other glibc major versions oldest supported is (x, 0). + min_minor = -1 + for glibc_minor in range(glibc_max.minor, min_minor, -1): + glibc_version = _GLibCVersion(glibc_max.major, glibc_minor) + tag = "manylinux_{}_{}".format(*glibc_version) + if _is_compatible(arch, glibc_version): + yield f"{tag}_{arch}" + # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. + if glibc_version in _LEGACY_MANYLINUX_MAP: + legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] + if _is_compatible(arch, glibc_version): + yield f"{legacy_tag}_{arch}" diff --git a/env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py b/env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py new file mode 100644 index 00000000..d2bf30b5 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py @@ -0,0 +1,85 @@ +"""PEP 656 support. + +This module implements logic to detect if the currently running Python is +linked against musl, and what musl version is used. +""" + +from __future__ import annotations + +import functools +import re +import subprocess +import sys +from typing import Iterator, NamedTuple, Sequence + +from ._elffile import ELFFile + + +class _MuslVersion(NamedTuple): + major: int + minor: int + + +def _parse_musl_version(output: str) -> _MuslVersion | None: + lines = [n for n in (n.strip() for n in output.splitlines()) if n] + if len(lines) < 2 or lines[0][:4] != "musl": + return None + m = re.match(r"Version (\d+)\.(\d+)", lines[1]) + if not m: + return None + return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2))) + + +@functools.lru_cache +def _get_musl_version(executable: str) -> _MuslVersion | None: + """Detect currently-running musl runtime version. + + This is done by checking the specified executable's dynamic linking + information, and invoking the loader to parse its output for a version + string. If the loader is musl, the output would be something like:: + + musl libc (x86_64) + Version 1.2.2 + Dynamic Program Loader + """ + try: + with open(executable, "rb") as f: + ld = ELFFile(f).interpreter + except (OSError, TypeError, ValueError): + return None + if ld is None or "musl" not in ld: + return None + proc = subprocess.run([ld], stderr=subprocess.PIPE, text=True) + return _parse_musl_version(proc.stderr) + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate musllinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be musllinux-compatible. + + :returns: An iterator of compatible musllinux tags. + """ + sys_musl = _get_musl_version(sys.executable) + if sys_musl is None: # Python not dynamically linked against musl. + return + for arch in archs: + for minor in range(sys_musl.minor, -1, -1): + yield f"musllinux_{sys_musl.major}_{minor}_{arch}" + + +if __name__ == "__main__": # pragma: no cover + import sysconfig + + plat = sysconfig.get_platform() + assert plat.startswith("linux-"), "not linux" + + print("plat:", plat) + print("musl:", _get_musl_version(sys.executable)) + print("tags:", end=" ") + for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])): + print(t, end="\n ") diff --git a/env/Lib/site-packages/pip/_vendor/packaging/_parser.py b/env/Lib/site-packages/pip/_vendor/packaging/_parser.py new file mode 100644 index 00000000..c1238c06 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/_parser.py @@ -0,0 +1,354 @@ +"""Handwritten parser of dependency specifiers. + +The docstring for each __parse_* function contains EBNF-inspired grammar representing +the implementation. +""" + +from __future__ import annotations + +import ast +from typing import NamedTuple, Sequence, Tuple, Union + +from ._tokenizer import DEFAULT_RULES, Tokenizer + + +class Node: + def __init__(self, value: str) -> None: + self.value = value + + def __str__(self) -> str: + return self.value + + def __repr__(self) -> str: + return f"<{self.__class__.__name__}('{self}')>" + + def serialize(self) -> str: + raise NotImplementedError + + +class Variable(Node): + def serialize(self) -> str: + return str(self) + + +class Value(Node): + def serialize(self) -> str: + return f'"{self}"' + + +class Op(Node): + def serialize(self) -> str: + return str(self) + + +MarkerVar = Union[Variable, Value] +MarkerItem = Tuple[MarkerVar, Op, MarkerVar] +MarkerAtom = Union[MarkerItem, Sequence["MarkerAtom"]] +MarkerList = Sequence[Union["MarkerList", MarkerAtom, str]] + + +class ParsedRequirement(NamedTuple): + name: str + url: str + extras: list[str] + specifier: str + marker: MarkerList | None + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for dependency specifier +# -------------------------------------------------------------------------------------- +def parse_requirement(source: str) -> ParsedRequirement: + return _parse_requirement(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_requirement(tokenizer: Tokenizer) -> ParsedRequirement: + """ + requirement = WS? IDENTIFIER WS? extras WS? requirement_details + """ + tokenizer.consume("WS") + + name_token = tokenizer.expect( + "IDENTIFIER", expected="package name at the start of dependency specifier" + ) + name = name_token.text + tokenizer.consume("WS") + + extras = _parse_extras(tokenizer) + tokenizer.consume("WS") + + url, specifier, marker = _parse_requirement_details(tokenizer) + tokenizer.expect("END", expected="end of dependency specifier") + + return ParsedRequirement(name, url, extras, specifier, marker) + + +def _parse_requirement_details( + tokenizer: Tokenizer, +) -> tuple[str, str, MarkerList | None]: + """ + requirement_details = AT URL (WS requirement_marker?)? + | specifier WS? (requirement_marker)? + """ + + specifier = "" + url = "" + marker = None + + if tokenizer.check("AT"): + tokenizer.read() + tokenizer.consume("WS") + + url_start = tokenizer.position + url = tokenizer.expect("URL", expected="URL after @").text + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + tokenizer.expect("WS", expected="whitespace after URL") + + # The input might end after whitespace. + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, span_start=url_start, after="URL and whitespace" + ) + else: + specifier_start = tokenizer.position + specifier = _parse_specifier(tokenizer) + tokenizer.consume("WS") + + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, + span_start=specifier_start, + after=( + "version specifier" + if specifier + else "name and no valid version specifier" + ), + ) + + return (url, specifier, marker) + + +def _parse_requirement_marker( + tokenizer: Tokenizer, *, span_start: int, after: str +) -> MarkerList: + """ + requirement_marker = SEMICOLON marker WS? + """ + + if not tokenizer.check("SEMICOLON"): + tokenizer.raise_syntax_error( + f"Expected end or semicolon (after {after})", + span_start=span_start, + ) + tokenizer.read() + + marker = _parse_marker(tokenizer) + tokenizer.consume("WS") + + return marker + + +def _parse_extras(tokenizer: Tokenizer) -> list[str]: + """ + extras = (LEFT_BRACKET wsp* extras_list? wsp* RIGHT_BRACKET)? + """ + if not tokenizer.check("LEFT_BRACKET", peek=True): + return [] + + with tokenizer.enclosing_tokens( + "LEFT_BRACKET", + "RIGHT_BRACKET", + around="extras", + ): + tokenizer.consume("WS") + extras = _parse_extras_list(tokenizer) + tokenizer.consume("WS") + + return extras + + +def _parse_extras_list(tokenizer: Tokenizer) -> list[str]: + """ + extras_list = identifier (wsp* ',' wsp* identifier)* + """ + extras: list[str] = [] + + if not tokenizer.check("IDENTIFIER"): + return extras + + extras.append(tokenizer.read().text) + + while True: + tokenizer.consume("WS") + if tokenizer.check("IDENTIFIER", peek=True): + tokenizer.raise_syntax_error("Expected comma between extra names") + elif not tokenizer.check("COMMA"): + break + + tokenizer.read() + tokenizer.consume("WS") + + extra_token = tokenizer.expect("IDENTIFIER", expected="extra name after comma") + extras.append(extra_token.text) + + return extras + + +def _parse_specifier(tokenizer: Tokenizer) -> str: + """ + specifier = LEFT_PARENTHESIS WS? version_many WS? RIGHT_PARENTHESIS + | WS? version_many WS? + """ + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="version specifier", + ): + tokenizer.consume("WS") + parsed_specifiers = _parse_version_many(tokenizer) + tokenizer.consume("WS") + + return parsed_specifiers + + +def _parse_version_many(tokenizer: Tokenizer) -> str: + """ + version_many = (SPECIFIER (WS? COMMA WS? SPECIFIER)*)? + """ + parsed_specifiers = "" + while tokenizer.check("SPECIFIER"): + span_start = tokenizer.position + parsed_specifiers += tokenizer.read().text + if tokenizer.check("VERSION_PREFIX_TRAIL", peek=True): + tokenizer.raise_syntax_error( + ".* suffix can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position + 1, + ) + if tokenizer.check("VERSION_LOCAL_LABEL_TRAIL", peek=True): + tokenizer.raise_syntax_error( + "Local version label can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position, + ) + tokenizer.consume("WS") + if not tokenizer.check("COMMA"): + break + parsed_specifiers += tokenizer.read().text + tokenizer.consume("WS") + + return parsed_specifiers + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for marker expression +# -------------------------------------------------------------------------------------- +def parse_marker(source: str) -> MarkerList: + return _parse_full_marker(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_full_marker(tokenizer: Tokenizer) -> MarkerList: + retval = _parse_marker(tokenizer) + tokenizer.expect("END", expected="end of marker expression") + return retval + + +def _parse_marker(tokenizer: Tokenizer) -> MarkerList: + """ + marker = marker_atom (BOOLOP marker_atom)+ + """ + expression = [_parse_marker_atom(tokenizer)] + while tokenizer.check("BOOLOP"): + token = tokenizer.read() + expr_right = _parse_marker_atom(tokenizer) + expression.extend((token.text, expr_right)) + return expression + + +def _parse_marker_atom(tokenizer: Tokenizer) -> MarkerAtom: + """ + marker_atom = WS? LEFT_PARENTHESIS WS? marker WS? RIGHT_PARENTHESIS WS? + | WS? marker_item WS? + """ + + tokenizer.consume("WS") + if tokenizer.check("LEFT_PARENTHESIS", peek=True): + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="marker expression", + ): + tokenizer.consume("WS") + marker: MarkerAtom = _parse_marker(tokenizer) + tokenizer.consume("WS") + else: + marker = _parse_marker_item(tokenizer) + tokenizer.consume("WS") + return marker + + +def _parse_marker_item(tokenizer: Tokenizer) -> MarkerItem: + """ + marker_item = WS? marker_var WS? marker_op WS? marker_var WS? + """ + tokenizer.consume("WS") + marker_var_left = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + marker_op = _parse_marker_op(tokenizer) + tokenizer.consume("WS") + marker_var_right = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + return (marker_var_left, marker_op, marker_var_right) + + +def _parse_marker_var(tokenizer: Tokenizer) -> MarkerVar: + """ + marker_var = VARIABLE | QUOTED_STRING + """ + if tokenizer.check("VARIABLE"): + return process_env_var(tokenizer.read().text.replace(".", "_")) + elif tokenizer.check("QUOTED_STRING"): + return process_python_str(tokenizer.read().text) + else: + tokenizer.raise_syntax_error( + message="Expected a marker variable or quoted string" + ) + + +def process_env_var(env_var: str) -> Variable: + if env_var in ("platform_python_implementation", "python_implementation"): + return Variable("platform_python_implementation") + else: + return Variable(env_var) + + +def process_python_str(python_str: str) -> Value: + value = ast.literal_eval(python_str) + return Value(str(value)) + + +def _parse_marker_op(tokenizer: Tokenizer) -> Op: + """ + marker_op = IN | NOT IN | OP + """ + if tokenizer.check("IN"): + tokenizer.read() + return Op("in") + elif tokenizer.check("NOT"): + tokenizer.read() + tokenizer.expect("WS", expected="whitespace after 'not'") + tokenizer.expect("IN", expected="'in' after 'not'") + return Op("not in") + elif tokenizer.check("OP"): + return Op(tokenizer.read().text) + else: + return tokenizer.raise_syntax_error( + "Expected marker operator, one of " + "<=, <, !=, ==, >=, >, ~=, ===, in, not in" + ) diff --git a/env/Lib/site-packages/pip/_vendor/packaging/_structures.py b/env/Lib/site-packages/pip/_vendor/packaging/_structures.py new file mode 100644 index 00000000..90a6465f --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/_structures.py @@ -0,0 +1,61 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + + +class InfinityType: + def __repr__(self) -> str: + return "Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return False + + def __le__(self, other: object) -> bool: + return False + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return True + + def __ge__(self, other: object) -> bool: + return True + + def __neg__(self: object) -> "NegativeInfinityType": + return NegativeInfinity + + +Infinity = InfinityType() + + +class NegativeInfinityType: + def __repr__(self) -> str: + return "-Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return True + + def __le__(self, other: object) -> bool: + return True + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return False + + def __ge__(self, other: object) -> bool: + return False + + def __neg__(self: object) -> InfinityType: + return Infinity + + +NegativeInfinity = NegativeInfinityType() diff --git a/env/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py b/env/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py new file mode 100644 index 00000000..89d04160 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py @@ -0,0 +1,194 @@ +from __future__ import annotations + +import contextlib +import re +from dataclasses import dataclass +from typing import Iterator, NoReturn + +from .specifiers import Specifier + + +@dataclass +class Token: + name: str + text: str + position: int + + +class ParserSyntaxError(Exception): + """The provided source text could not be parsed correctly.""" + + def __init__( + self, + message: str, + *, + source: str, + span: tuple[int, int], + ) -> None: + self.span = span + self.message = message + self.source = source + + super().__init__() + + def __str__(self) -> str: + marker = " " * self.span[0] + "~" * (self.span[1] - self.span[0]) + "^" + return "\n ".join([self.message, self.source, marker]) + + +DEFAULT_RULES: dict[str, str | re.Pattern[str]] = { + "LEFT_PARENTHESIS": r"\(", + "RIGHT_PARENTHESIS": r"\)", + "LEFT_BRACKET": r"\[", + "RIGHT_BRACKET": r"\]", + "SEMICOLON": r";", + "COMMA": r",", + "QUOTED_STRING": re.compile( + r""" + ( + ('[^']*') + | + ("[^"]*") + ) + """, + re.VERBOSE, + ), + "OP": r"(===|==|~=|!=|<=|>=|<|>)", + "BOOLOP": r"\b(or|and)\b", + "IN": r"\bin\b", + "NOT": r"\bnot\b", + "VARIABLE": re.compile( + r""" + \b( + python_version + |python_full_version + |os[._]name + |sys[._]platform + |platform_(release|system) + |platform[._](version|machine|python_implementation) + |python_implementation + |implementation_(name|version) + |extra + )\b + """, + re.VERBOSE, + ), + "SPECIFIER": re.compile( + Specifier._operator_regex_str + Specifier._version_regex_str, + re.VERBOSE | re.IGNORECASE, + ), + "AT": r"\@", + "URL": r"[^ \t]+", + "IDENTIFIER": r"\b[a-zA-Z0-9][a-zA-Z0-9._-]*\b", + "VERSION_PREFIX_TRAIL": r"\.\*", + "VERSION_LOCAL_LABEL_TRAIL": r"\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*", + "WS": r"[ \t]+", + "END": r"$", +} + + +class Tokenizer: + """Context-sensitive token parsing. + + Provides methods to examine the input stream to check whether the next token + matches. + """ + + def __init__( + self, + source: str, + *, + rules: dict[str, str | re.Pattern[str]], + ) -> None: + self.source = source + self.rules: dict[str, re.Pattern[str]] = { + name: re.compile(pattern) for name, pattern in rules.items() + } + self.next_token: Token | None = None + self.position = 0 + + def consume(self, name: str) -> None: + """Move beyond provided token name, if at current position.""" + if self.check(name): + self.read() + + def check(self, name: str, *, peek: bool = False) -> bool: + """Check whether the next token has the provided name. + + By default, if the check succeeds, the token *must* be read before + another check. If `peek` is set to `True`, the token is not loaded and + would need to be checked again. + """ + assert ( + self.next_token is None + ), f"Cannot check for {name!r}, already have {self.next_token!r}" + assert name in self.rules, f"Unknown token name: {name!r}" + + expression = self.rules[name] + + match = expression.match(self.source, self.position) + if match is None: + return False + if not peek: + self.next_token = Token(name, match[0], self.position) + return True + + def expect(self, name: str, *, expected: str) -> Token: + """Expect a certain token name next, failing with a syntax error otherwise. + + The token is *not* read. + """ + if not self.check(name): + raise self.raise_syntax_error(f"Expected {expected}") + return self.read() + + def read(self) -> Token: + """Consume the next token and return it.""" + token = self.next_token + assert token is not None + + self.position += len(token.text) + self.next_token = None + + return token + + def raise_syntax_error( + self, + message: str, + *, + span_start: int | None = None, + span_end: int | None = None, + ) -> NoReturn: + """Raise ParserSyntaxError at the given position.""" + span = ( + self.position if span_start is None else span_start, + self.position if span_end is None else span_end, + ) + raise ParserSyntaxError( + message, + source=self.source, + span=span, + ) + + @contextlib.contextmanager + def enclosing_tokens( + self, open_token: str, close_token: str, *, around: str + ) -> Iterator[None]: + if self.check(open_token): + open_position = self.position + self.read() + else: + open_position = None + + yield + + if open_position is None: + return + + if not self.check(close_token): + self.raise_syntax_error( + f"Expected matching {close_token} for {open_token}, after {around}", + span_start=open_position, + ) + + self.read() diff --git a/env/Lib/site-packages/pip/_vendor/packaging/markers.py b/env/Lib/site-packages/pip/_vendor/packaging/markers.py new file mode 100644 index 00000000..7ac7bb69 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/markers.py @@ -0,0 +1,325 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import operator +import os +import platform +import sys +from typing import Any, Callable, TypedDict, cast + +from ._parser import MarkerAtom, MarkerList, Op, Value, Variable +from ._parser import parse_marker as _parse_marker +from ._tokenizer import ParserSyntaxError +from .specifiers import InvalidSpecifier, Specifier +from .utils import canonicalize_name + +__all__ = [ + "InvalidMarker", + "UndefinedComparison", + "UndefinedEnvironmentName", + "Marker", + "default_environment", +] + +Operator = Callable[[str, str], bool] + + +class InvalidMarker(ValueError): + """ + An invalid marker was found, users should refer to PEP 508. + """ + + +class UndefinedComparison(ValueError): + """ + An invalid operation was attempted on a value that doesn't support it. + """ + + +class UndefinedEnvironmentName(ValueError): + """ + A name was attempted to be used that does not exist inside of the + environment. + """ + + +class Environment(TypedDict): + implementation_name: str + """The implementation's identifier, e.g. ``'cpython'``.""" + + implementation_version: str + """ + The implementation's version, e.g. ``'3.13.0a2'`` for CPython 3.13.0a2, or + ``'7.3.13'`` for PyPy3.10 v7.3.13. + """ + + os_name: str + """ + The value of :py:data:`os.name`. The name of the operating system dependent module + imported, e.g. ``'posix'``. + """ + + platform_machine: str + """ + Returns the machine type, e.g. ``'i386'``. + + An empty string if the value cannot be determined. + """ + + platform_release: str + """ + The system's release, e.g. ``'2.2.0'`` or ``'NT'``. + + An empty string if the value cannot be determined. + """ + + platform_system: str + """ + The system/OS name, e.g. ``'Linux'``, ``'Windows'`` or ``'Java'``. + + An empty string if the value cannot be determined. + """ + + platform_version: str + """ + The system's release version, e.g. ``'#3 on degas'``. + + An empty string if the value cannot be determined. + """ + + python_full_version: str + """ + The Python version as string ``'major.minor.patchlevel'``. + + Note that unlike the Python :py:data:`sys.version`, this value will always include + the patchlevel (it defaults to 0). + """ + + platform_python_implementation: str + """ + A string identifying the Python implementation, e.g. ``'CPython'``. + """ + + python_version: str + """The Python version as string ``'major.minor'``.""" + + sys_platform: str + """ + This string contains a platform identifier that can be used to append + platform-specific components to :py:data:`sys.path`, for instance. + + For Unix systems, except on Linux and AIX, this is the lowercased OS name as + returned by ``uname -s`` with the first part of the version as returned by + ``uname -r`` appended, e.g. ``'sunos5'`` or ``'freebsd8'``, at the time when Python + was built. + """ + + +def _normalize_extra_values(results: Any) -> Any: + """ + Normalize extra values. + """ + if isinstance(results[0], tuple): + lhs, op, rhs = results[0] + if isinstance(lhs, Variable) and lhs.value == "extra": + normalized_extra = canonicalize_name(rhs.value) + rhs = Value(normalized_extra) + elif isinstance(rhs, Variable) and rhs.value == "extra": + normalized_extra = canonicalize_name(lhs.value) + lhs = Value(normalized_extra) + results[0] = lhs, op, rhs + return results + + +def _format_marker( + marker: list[str] | MarkerAtom | str, first: bool | None = True +) -> str: + assert isinstance(marker, (list, tuple, str)) + + # Sometimes we have a structure like [[...]] which is a single item list + # where the single item is itself it's own list. In that case we want skip + # the rest of this function so that we don't get extraneous () on the + # outside. + if ( + isinstance(marker, list) + and len(marker) == 1 + and isinstance(marker[0], (list, tuple)) + ): + return _format_marker(marker[0]) + + if isinstance(marker, list): + inner = (_format_marker(m, first=False) for m in marker) + if first: + return " ".join(inner) + else: + return "(" + " ".join(inner) + ")" + elif isinstance(marker, tuple): + return " ".join([m.serialize() for m in marker]) + else: + return marker + + +_operators: dict[str, Operator] = { + "in": lambda lhs, rhs: lhs in rhs, + "not in": lambda lhs, rhs: lhs not in rhs, + "<": operator.lt, + "<=": operator.le, + "==": operator.eq, + "!=": operator.ne, + ">=": operator.ge, + ">": operator.gt, +} + + +def _eval_op(lhs: str, op: Op, rhs: str) -> bool: + try: + spec = Specifier("".join([op.serialize(), rhs])) + except InvalidSpecifier: + pass + else: + return spec.contains(lhs, prereleases=True) + + oper: Operator | None = _operators.get(op.serialize()) + if oper is None: + raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") + + return oper(lhs, rhs) + + +def _normalize(*values: str, key: str) -> tuple[str, ...]: + # PEP 685 – Comparison of extra names for optional distribution dependencies + # https://peps.python.org/pep-0685/ + # > When comparing extra names, tools MUST normalize the names being + # > compared using the semantics outlined in PEP 503 for names + if key == "extra": + return tuple(canonicalize_name(v) for v in values) + + # other environment markers don't have such standards + return values + + +def _evaluate_markers(markers: MarkerList, environment: dict[str, str]) -> bool: + groups: list[list[bool]] = [[]] + + for marker in markers: + assert isinstance(marker, (list, tuple, str)) + + if isinstance(marker, list): + groups[-1].append(_evaluate_markers(marker, environment)) + elif isinstance(marker, tuple): + lhs, op, rhs = marker + + if isinstance(lhs, Variable): + environment_key = lhs.value + lhs_value = environment[environment_key] + rhs_value = rhs.value + else: + lhs_value = lhs.value + environment_key = rhs.value + rhs_value = environment[environment_key] + + lhs_value, rhs_value = _normalize(lhs_value, rhs_value, key=environment_key) + groups[-1].append(_eval_op(lhs_value, op, rhs_value)) + else: + assert marker in ["and", "or"] + if marker == "or": + groups.append([]) + + return any(all(item) for item in groups) + + +def format_full_version(info: sys._version_info) -> str: + version = "{0.major}.{0.minor}.{0.micro}".format(info) + kind = info.releaselevel + if kind != "final": + version += kind[0] + str(info.serial) + return version + + +def default_environment() -> Environment: + iver = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + return { + "implementation_name": implementation_name, + "implementation_version": iver, + "os_name": os.name, + "platform_machine": platform.machine(), + "platform_release": platform.release(), + "platform_system": platform.system(), + "platform_version": platform.version(), + "python_full_version": platform.python_version(), + "platform_python_implementation": platform.python_implementation(), + "python_version": ".".join(platform.python_version_tuple()[:2]), + "sys_platform": sys.platform, + } + + +class Marker: + def __init__(self, marker: str) -> None: + # Note: We create a Marker object without calling this constructor in + # packaging.requirements.Requirement. If any additional logic is + # added here, make sure to mirror/adapt Requirement. + try: + self._markers = _normalize_extra_values(_parse_marker(marker)) + # The attribute `_markers` can be described in terms of a recursive type: + # MarkerList = List[Union[Tuple[Node, ...], str, MarkerList]] + # + # For example, the following expression: + # python_version > "3.6" or (python_version == "3.6" and os_name == "unix") + # + # is parsed into: + # [ + # (, ')>, ), + # 'and', + # [ + # (, , ), + # 'or', + # (, , ) + # ] + # ] + except ParserSyntaxError as e: + raise InvalidMarker(str(e)) from e + + def __str__(self) -> str: + return _format_marker(self._markers) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash((self.__class__.__name__, str(self))) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Marker): + return NotImplemented + + return str(self) == str(other) + + def evaluate(self, environment: dict[str, str] | None = None) -> bool: + """Evaluate a marker. + + Return the boolean from evaluating the given marker against the + environment. environment is an optional argument to override all or + part of the determined environment. + + The environment is determined from the current Python process. + """ + current_environment = cast("dict[str, str]", default_environment()) + current_environment["extra"] = "" + # Work around platform.python_version() returning something that is not PEP 440 + # compliant for non-tagged Python builds. We preserve default_environment()'s + # behavior of returning platform.python_version() verbatim, and leave it to the + # caller to provide a syntactically valid version if they want to override it. + if current_environment["python_full_version"].endswith("+"): + current_environment["python_full_version"] += "local" + if environment is not None: + current_environment.update(environment) + # The API used to allow setting extra to None. We need to handle this + # case for backwards compatibility. + if current_environment["extra"] is None: + current_environment["extra"] = "" + + return _evaluate_markers(self._markers, current_environment) diff --git a/env/Lib/site-packages/pip/_vendor/packaging/metadata.py b/env/Lib/site-packages/pip/_vendor/packaging/metadata.py new file mode 100644 index 00000000..eb8dc844 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/metadata.py @@ -0,0 +1,804 @@ +from __future__ import annotations + +import email.feedparser +import email.header +import email.message +import email.parser +import email.policy +import typing +from typing import ( + Any, + Callable, + Generic, + Literal, + TypedDict, + cast, +) + +from . import requirements, specifiers, utils +from . import version as version_module + +T = typing.TypeVar("T") + + +try: + ExceptionGroup +except NameError: # pragma: no cover + + class ExceptionGroup(Exception): + """A minimal implementation of :external:exc:`ExceptionGroup` from Python 3.11. + + If :external:exc:`ExceptionGroup` is already defined by Python itself, + that version is used instead. + """ + + message: str + exceptions: list[Exception] + + def __init__(self, message: str, exceptions: list[Exception]) -> None: + self.message = message + self.exceptions = exceptions + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.message!r}, {self.exceptions!r})" + +else: # pragma: no cover + ExceptionGroup = ExceptionGroup + + +class InvalidMetadata(ValueError): + """A metadata field contains invalid data.""" + + field: str + """The name of the field that contains invalid data.""" + + def __init__(self, field: str, message: str) -> None: + self.field = field + super().__init__(message) + + +# The RawMetadata class attempts to make as few assumptions about the underlying +# serialization formats as possible. The idea is that as long as a serialization +# formats offer some very basic primitives in *some* way then we can support +# serializing to and from that format. +class RawMetadata(TypedDict, total=False): + """A dictionary of raw core metadata. + + Each field in core metadata maps to a key of this dictionary (when data is + provided). The key is lower-case and underscores are used instead of dashes + compared to the equivalent core metadata field. Any core metadata field that + can be specified multiple times or can hold multiple values in a single + field have a key with a plural name. See :class:`Metadata` whose attributes + match the keys of this dictionary. + + Core metadata fields that can be specified multiple times are stored as a + list or dict depending on which is appropriate for the field. Any fields + which hold multiple values in a single field are stored as a list. + + """ + + # Metadata 1.0 - PEP 241 + metadata_version: str + name: str + version: str + platforms: list[str] + summary: str + description: str + keywords: list[str] + home_page: str + author: str + author_email: str + license: str + + # Metadata 1.1 - PEP 314 + supported_platforms: list[str] + download_url: str + classifiers: list[str] + requires: list[str] + provides: list[str] + obsoletes: list[str] + + # Metadata 1.2 - PEP 345 + maintainer: str + maintainer_email: str + requires_dist: list[str] + provides_dist: list[str] + obsoletes_dist: list[str] + requires_python: str + requires_external: list[str] + project_urls: dict[str, str] + + # Metadata 2.0 + # PEP 426 attempted to completely revamp the metadata format + # but got stuck without ever being able to build consensus on + # it and ultimately ended up withdrawn. + # + # However, a number of tools had started emitting METADATA with + # `2.0` Metadata-Version, so for historical reasons, this version + # was skipped. + + # Metadata 2.1 - PEP 566 + description_content_type: str + provides_extra: list[str] + + # Metadata 2.2 - PEP 643 + dynamic: list[str] + + # Metadata 2.3 - PEP 685 + # No new fields were added in PEP 685, just some edge case were + # tightened up to provide better interoptability. + + +_STRING_FIELDS = { + "author", + "author_email", + "description", + "description_content_type", + "download_url", + "home_page", + "license", + "maintainer", + "maintainer_email", + "metadata_version", + "name", + "requires_python", + "summary", + "version", +} + +_LIST_FIELDS = { + "classifiers", + "dynamic", + "obsoletes", + "obsoletes_dist", + "platforms", + "provides", + "provides_dist", + "provides_extra", + "requires", + "requires_dist", + "requires_external", + "supported_platforms", +} + +_DICT_FIELDS = { + "project_urls", +} + + +def _parse_keywords(data: str) -> list[str]: + """Split a string of comma-separate keyboards into a list of keywords.""" + return [k.strip() for k in data.split(",")] + + +def _parse_project_urls(data: list[str]) -> dict[str, str]: + """Parse a list of label/URL string pairings separated by a comma.""" + urls = {} + for pair in data: + # Our logic is slightly tricky here as we want to try and do + # *something* reasonable with malformed data. + # + # The main thing that we have to worry about, is data that does + # not have a ',' at all to split the label from the Value. There + # isn't a singular right answer here, and we will fail validation + # later on (if the caller is validating) so it doesn't *really* + # matter, but since the missing value has to be an empty str + # and our return value is dict[str, str], if we let the key + # be the missing value, then they'd have multiple '' values that + # overwrite each other in a accumulating dict. + # + # The other potentional issue is that it's possible to have the + # same label multiple times in the metadata, with no solid "right" + # answer with what to do in that case. As such, we'll do the only + # thing we can, which is treat the field as unparseable and add it + # to our list of unparsed fields. + parts = [p.strip() for p in pair.split(",", 1)] + parts.extend([""] * (max(0, 2 - len(parts)))) # Ensure 2 items + + # TODO: The spec doesn't say anything about if the keys should be + # considered case sensitive or not... logically they should + # be case-preserving and case-insensitive, but doing that + # would open up more cases where we might have duplicate + # entries. + label, url = parts + if label in urls: + # The label already exists in our set of urls, so this field + # is unparseable, and we can just add the whole thing to our + # unparseable data and stop processing it. + raise KeyError("duplicate labels in project urls") + urls[label] = url + + return urls + + +def _get_payload(msg: email.message.Message, source: bytes | str) -> str: + """Get the body of the message.""" + # If our source is a str, then our caller has managed encodings for us, + # and we don't need to deal with it. + if isinstance(source, str): + payload: str = msg.get_payload() + return payload + # If our source is a bytes, then we're managing the encoding and we need + # to deal with it. + else: + bpayload: bytes = msg.get_payload(decode=True) + try: + return bpayload.decode("utf8", "strict") + except UnicodeDecodeError: + raise ValueError("payload in an invalid encoding") + + +# The various parse_FORMAT functions here are intended to be as lenient as +# possible in their parsing, while still returning a correctly typed +# RawMetadata. +# +# To aid in this, we also generally want to do as little touching of the +# data as possible, except where there are possibly some historic holdovers +# that make valid data awkward to work with. +# +# While this is a lower level, intermediate format than our ``Metadata`` +# class, some light touch ups can make a massive difference in usability. + +# Map METADATA fields to RawMetadata. +_EMAIL_TO_RAW_MAPPING = { + "author": "author", + "author-email": "author_email", + "classifier": "classifiers", + "description": "description", + "description-content-type": "description_content_type", + "download-url": "download_url", + "dynamic": "dynamic", + "home-page": "home_page", + "keywords": "keywords", + "license": "license", + "maintainer": "maintainer", + "maintainer-email": "maintainer_email", + "metadata-version": "metadata_version", + "name": "name", + "obsoletes": "obsoletes", + "obsoletes-dist": "obsoletes_dist", + "platform": "platforms", + "project-url": "project_urls", + "provides": "provides", + "provides-dist": "provides_dist", + "provides-extra": "provides_extra", + "requires": "requires", + "requires-dist": "requires_dist", + "requires-external": "requires_external", + "requires-python": "requires_python", + "summary": "summary", + "supported-platform": "supported_platforms", + "version": "version", +} +_RAW_TO_EMAIL_MAPPING = {raw: email for email, raw in _EMAIL_TO_RAW_MAPPING.items()} + + +def parse_email(data: bytes | str) -> tuple[RawMetadata, dict[str, list[str]]]: + """Parse a distribution's metadata stored as email headers (e.g. from ``METADATA``). + + This function returns a two-item tuple of dicts. The first dict is of + recognized fields from the core metadata specification. Fields that can be + parsed and translated into Python's built-in types are converted + appropriately. All other fields are left as-is. Fields that are allowed to + appear multiple times are stored as lists. + + The second dict contains all other fields from the metadata. This includes + any unrecognized fields. It also includes any fields which are expected to + be parsed into a built-in type but were not formatted appropriately. Finally, + any fields that are expected to appear only once but are repeated are + included in this dict. + + """ + raw: dict[str, str | list[str] | dict[str, str]] = {} + unparsed: dict[str, list[str]] = {} + + if isinstance(data, str): + parsed = email.parser.Parser(policy=email.policy.compat32).parsestr(data) + else: + parsed = email.parser.BytesParser(policy=email.policy.compat32).parsebytes(data) + + # We have to wrap parsed.keys() in a set, because in the case of multiple + # values for a key (a list), the key will appear multiple times in the + # list of keys, but we're avoiding that by using get_all(). + for name in frozenset(parsed.keys()): + # Header names in RFC are case insensitive, so we'll normalize to all + # lower case to make comparisons easier. + name = name.lower() + + # We use get_all() here, even for fields that aren't multiple use, + # because otherwise someone could have e.g. two Name fields, and we + # would just silently ignore it rather than doing something about it. + headers = parsed.get_all(name) or [] + + # The way the email module works when parsing bytes is that it + # unconditionally decodes the bytes as ascii using the surrogateescape + # handler. When you pull that data back out (such as with get_all() ), + # it looks to see if the str has any surrogate escapes, and if it does + # it wraps it in a Header object instead of returning the string. + # + # As such, we'll look for those Header objects, and fix up the encoding. + value = [] + # Flag if we have run into any issues processing the headers, thus + # signalling that the data belongs in 'unparsed'. + valid_encoding = True + for h in headers: + # It's unclear if this can return more types than just a Header or + # a str, so we'll just assert here to make sure. + assert isinstance(h, (email.header.Header, str)) + + # If it's a header object, we need to do our little dance to get + # the real data out of it. In cases where there is invalid data + # we're going to end up with mojibake, but there's no obvious, good + # way around that without reimplementing parts of the Header object + # ourselves. + # + # That should be fine since, if mojibacked happens, this key is + # going into the unparsed dict anyways. + if isinstance(h, email.header.Header): + # The Header object stores it's data as chunks, and each chunk + # can be independently encoded, so we'll need to check each + # of them. + chunks: list[tuple[bytes, str | None]] = [] + for bin, encoding in email.header.decode_header(h): + try: + bin.decode("utf8", "strict") + except UnicodeDecodeError: + # Enable mojibake. + encoding = "latin1" + valid_encoding = False + else: + encoding = "utf8" + chunks.append((bin, encoding)) + + # Turn our chunks back into a Header object, then let that + # Header object do the right thing to turn them into a + # string for us. + value.append(str(email.header.make_header(chunks))) + # This is already a string, so just add it. + else: + value.append(h) + + # We've processed all of our values to get them into a list of str, + # but we may have mojibake data, in which case this is an unparsed + # field. + if not valid_encoding: + unparsed[name] = value + continue + + raw_name = _EMAIL_TO_RAW_MAPPING.get(name) + if raw_name is None: + # This is a bit of a weird situation, we've encountered a key that + # we don't know what it means, so we don't know whether it's meant + # to be a list or not. + # + # Since we can't really tell one way or another, we'll just leave it + # as a list, even though it may be a single item list, because that's + # what makes the most sense for email headers. + unparsed[name] = value + continue + + # If this is one of our string fields, then we'll check to see if our + # value is a list of a single item. If it is then we'll assume that + # it was emitted as a single string, and unwrap the str from inside + # the list. + # + # If it's any other kind of data, then we haven't the faintest clue + # what we should parse it as, and we have to just add it to our list + # of unparsed stuff. + if raw_name in _STRING_FIELDS and len(value) == 1: + raw[raw_name] = value[0] + # If this is one of our list of string fields, then we can just assign + # the value, since email *only* has strings, and our get_all() call + # above ensures that this is a list. + elif raw_name in _LIST_FIELDS: + raw[raw_name] = value + # Special Case: Keywords + # The keywords field is implemented in the metadata spec as a str, + # but it conceptually is a list of strings, and is serialized using + # ", ".join(keywords), so we'll do some light data massaging to turn + # this into what it logically is. + elif raw_name == "keywords" and len(value) == 1: + raw[raw_name] = _parse_keywords(value[0]) + # Special Case: Project-URL + # The project urls is implemented in the metadata spec as a list of + # specially-formatted strings that represent a key and a value, which + # is fundamentally a mapping, however the email format doesn't support + # mappings in a sane way, so it was crammed into a list of strings + # instead. + # + # We will do a little light data massaging to turn this into a map as + # it logically should be. + elif raw_name == "project_urls": + try: + raw[raw_name] = _parse_project_urls(value) + except KeyError: + unparsed[name] = value + # Nothing that we've done has managed to parse this, so it'll just + # throw it in our unparseable data and move on. + else: + unparsed[name] = value + + # We need to support getting the Description from the message payload in + # addition to getting it from the the headers. This does mean, though, there + # is the possibility of it being set both ways, in which case we put both + # in 'unparsed' since we don't know which is right. + try: + payload = _get_payload(parsed, data) + except ValueError: + unparsed.setdefault("description", []).append( + parsed.get_payload(decode=isinstance(data, bytes)) + ) + else: + if payload: + # Check to see if we've already got a description, if so then both + # it, and this body move to unparseable. + if "description" in raw: + description_header = cast(str, raw.pop("description")) + unparsed.setdefault("description", []).extend( + [description_header, payload] + ) + elif "description" in unparsed: + unparsed["description"].append(payload) + else: + raw["description"] = payload + + # We need to cast our `raw` to a metadata, because a TypedDict only support + # literal key names, but we're computing our key names on purpose, but the + # way this function is implemented, our `TypedDict` can only have valid key + # names. + return cast(RawMetadata, raw), unparsed + + +_NOT_FOUND = object() + + +# Keep the two values in sync. +_VALID_METADATA_VERSIONS = ["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] +_MetadataVersion = Literal["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] + +_REQUIRED_ATTRS = frozenset(["metadata_version", "name", "version"]) + + +class _Validator(Generic[T]): + """Validate a metadata field. + + All _process_*() methods correspond to a core metadata field. The method is + called with the field's raw value. If the raw value is valid it is returned + in its "enriched" form (e.g. ``version.Version`` for the ``Version`` field). + If the raw value is invalid, :exc:`InvalidMetadata` is raised (with a cause + as appropriate). + """ + + name: str + raw_name: str + added: _MetadataVersion + + def __init__( + self, + *, + added: _MetadataVersion = "1.0", + ) -> None: + self.added = added + + def __set_name__(self, _owner: Metadata, name: str) -> None: + self.name = name + self.raw_name = _RAW_TO_EMAIL_MAPPING[name] + + def __get__(self, instance: Metadata, _owner: type[Metadata]) -> T: + # With Python 3.8, the caching can be replaced with functools.cached_property(). + # No need to check the cache as attribute lookup will resolve into the + # instance's __dict__ before __get__ is called. + cache = instance.__dict__ + value = instance._raw.get(self.name) + + # To make the _process_* methods easier, we'll check if the value is None + # and if this field is NOT a required attribute, and if both of those + # things are true, we'll skip the the converter. This will mean that the + # converters never have to deal with the None union. + if self.name in _REQUIRED_ATTRS or value is not None: + try: + converter: Callable[[Any], T] = getattr(self, f"_process_{self.name}") + except AttributeError: + pass + else: + value = converter(value) + + cache[self.name] = value + try: + del instance._raw[self.name] # type: ignore[misc] + except KeyError: + pass + + return cast(T, value) + + def _invalid_metadata( + self, msg: str, cause: Exception | None = None + ) -> InvalidMetadata: + exc = InvalidMetadata( + self.raw_name, msg.format_map({"field": repr(self.raw_name)}) + ) + exc.__cause__ = cause + return exc + + def _process_metadata_version(self, value: str) -> _MetadataVersion: + # Implicitly makes Metadata-Version required. + if value not in _VALID_METADATA_VERSIONS: + raise self._invalid_metadata(f"{value!r} is not a valid metadata version") + return cast(_MetadataVersion, value) + + def _process_name(self, value: str) -> str: + if not value: + raise self._invalid_metadata("{field} is a required field") + # Validate the name as a side-effect. + try: + utils.canonicalize_name(value, validate=True) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + else: + return value + + def _process_version(self, value: str) -> version_module.Version: + if not value: + raise self._invalid_metadata("{field} is a required field") + try: + return version_module.parse(value) + except version_module.InvalidVersion as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_summary(self, value: str) -> str: + """Check the field contains no newlines.""" + if "\n" in value: + raise self._invalid_metadata("{field} must be a single line") + return value + + def _process_description_content_type(self, value: str) -> str: + content_types = {"text/plain", "text/x-rst", "text/markdown"} + message = email.message.EmailMessage() + message["content-type"] = value + + content_type, parameters = ( + # Defaults to `text/plain` if parsing failed. + message.get_content_type().lower(), + message["content-type"].params, + ) + # Check if content-type is valid or defaulted to `text/plain` and thus was + # not parseable. + if content_type not in content_types or content_type not in value.lower(): + raise self._invalid_metadata( + f"{{field}} must be one of {list(content_types)}, not {value!r}" + ) + + charset = parameters.get("charset", "UTF-8") + if charset != "UTF-8": + raise self._invalid_metadata( + f"{{field}} can only specify the UTF-8 charset, not {list(charset)}" + ) + + markdown_variants = {"GFM", "CommonMark"} + variant = parameters.get("variant", "GFM") # Use an acceptable default. + if content_type == "text/markdown" and variant not in markdown_variants: + raise self._invalid_metadata( + f"valid Markdown variants for {{field}} are {list(markdown_variants)}, " + f"not {variant!r}", + ) + return value + + def _process_dynamic(self, value: list[str]) -> list[str]: + for dynamic_field in map(str.lower, value): + if dynamic_field in {"name", "version", "metadata-version"}: + raise self._invalid_metadata( + f"{value!r} is not allowed as a dynamic field" + ) + elif dynamic_field not in _EMAIL_TO_RAW_MAPPING: + raise self._invalid_metadata(f"{value!r} is not a valid dynamic field") + return list(map(str.lower, value)) + + def _process_provides_extra( + self, + value: list[str], + ) -> list[utils.NormalizedName]: + normalized_names = [] + try: + for name in value: + normalized_names.append(utils.canonicalize_name(name, validate=True)) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{name!r} is invalid for {{field}}", cause=exc + ) + else: + return normalized_names + + def _process_requires_python(self, value: str) -> specifiers.SpecifierSet: + try: + return specifiers.SpecifierSet(value) + except specifiers.InvalidSpecifier as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_requires_dist( + self, + value: list[str], + ) -> list[requirements.Requirement]: + reqs = [] + try: + for req in value: + reqs.append(requirements.Requirement(req)) + except requirements.InvalidRequirement as exc: + raise self._invalid_metadata(f"{req!r} is invalid for {{field}}", cause=exc) + else: + return reqs + + +class Metadata: + """Representation of distribution metadata. + + Compared to :class:`RawMetadata`, this class provides objects representing + metadata fields instead of only using built-in types. Any invalid metadata + will cause :exc:`InvalidMetadata` to be raised (with a + :py:attr:`~BaseException.__cause__` attribute as appropriate). + """ + + _raw: RawMetadata + + @classmethod + def from_raw(cls, data: RawMetadata, *, validate: bool = True) -> Metadata: + """Create an instance from :class:`RawMetadata`. + + If *validate* is true, all metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + ins = cls() + ins._raw = data.copy() # Mutations occur due to caching enriched values. + + if validate: + exceptions: list[Exception] = [] + try: + metadata_version = ins.metadata_version + metadata_age = _VALID_METADATA_VERSIONS.index(metadata_version) + except InvalidMetadata as metadata_version_exc: + exceptions.append(metadata_version_exc) + metadata_version = None + + # Make sure to check for the fields that are present, the required + # fields (so their absence can be reported). + fields_to_check = frozenset(ins._raw) | _REQUIRED_ATTRS + # Remove fields that have already been checked. + fields_to_check -= {"metadata_version"} + + for key in fields_to_check: + try: + if metadata_version: + # Can't use getattr() as that triggers descriptor protocol which + # will fail due to no value for the instance argument. + try: + field_metadata_version = cls.__dict__[key].added + except KeyError: + exc = InvalidMetadata(key, f"unrecognized field: {key!r}") + exceptions.append(exc) + continue + field_age = _VALID_METADATA_VERSIONS.index( + field_metadata_version + ) + if field_age > metadata_age: + field = _RAW_TO_EMAIL_MAPPING[key] + exc = InvalidMetadata( + field, + "{field} introduced in metadata version " + "{field_metadata_version}, not {metadata_version}", + ) + exceptions.append(exc) + continue + getattr(ins, key) + except InvalidMetadata as exc: + exceptions.append(exc) + + if exceptions: + raise ExceptionGroup("invalid metadata", exceptions) + + return ins + + @classmethod + def from_email(cls, data: bytes | str, *, validate: bool = True) -> Metadata: + """Parse metadata from email headers. + + If *validate* is true, the metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + raw, unparsed = parse_email(data) + + if validate: + exceptions: list[Exception] = [] + for unparsed_key in unparsed: + if unparsed_key in _EMAIL_TO_RAW_MAPPING: + message = f"{unparsed_key!r} has invalid data" + else: + message = f"unrecognized field: {unparsed_key!r}" + exceptions.append(InvalidMetadata(unparsed_key, message)) + + if exceptions: + raise ExceptionGroup("unparsed", exceptions) + + try: + return cls.from_raw(raw, validate=validate) + except ExceptionGroup as exc_group: + raise ExceptionGroup( + "invalid or unparsed metadata", exc_group.exceptions + ) from None + + metadata_version: _Validator[_MetadataVersion] = _Validator() + """:external:ref:`core-metadata-metadata-version` + (required; validated to be a valid metadata version)""" + name: _Validator[str] = _Validator() + """:external:ref:`core-metadata-name` + (required; validated using :func:`~packaging.utils.canonicalize_name` and its + *validate* parameter)""" + version: _Validator[version_module.Version] = _Validator() + """:external:ref:`core-metadata-version` (required)""" + dynamic: _Validator[list[str] | None] = _Validator( + added="2.2", + ) + """:external:ref:`core-metadata-dynamic` + (validated against core metadata field names and lowercased)""" + platforms: _Validator[list[str] | None] = _Validator() + """:external:ref:`core-metadata-platform`""" + supported_platforms: _Validator[list[str] | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-supported-platform`""" + summary: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-summary` (validated to contain no newlines)""" + description: _Validator[str | None] = _Validator() # TODO 2.1: can be in body + """:external:ref:`core-metadata-description`""" + description_content_type: _Validator[str | None] = _Validator(added="2.1") + """:external:ref:`core-metadata-description-content-type` (validated)""" + keywords: _Validator[list[str] | None] = _Validator() + """:external:ref:`core-metadata-keywords`""" + home_page: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-home-page`""" + download_url: _Validator[str | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-download-url`""" + author: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-author`""" + author_email: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-author-email`""" + maintainer: _Validator[str | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer`""" + maintainer_email: _Validator[str | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer-email`""" + license: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-license`""" + classifiers: _Validator[list[str] | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-classifier`""" + requires_dist: _Validator[list[requirements.Requirement] | None] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-dist`""" + requires_python: _Validator[specifiers.SpecifierSet | None] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-python`""" + # Because `Requires-External` allows for non-PEP 440 version specifiers, we + # don't do any processing on the values. + requires_external: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-requires-external`""" + project_urls: _Validator[dict[str, str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-project-url`""" + # PEP 685 lets us raise an error if an extra doesn't pass `Name` validation + # regardless of metadata version. + provides_extra: _Validator[list[utils.NormalizedName] | None] = _Validator( + added="2.1", + ) + """:external:ref:`core-metadata-provides-extra`""" + provides_dist: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-provides-dist`""" + obsoletes_dist: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-obsoletes-dist`""" + requires: _Validator[list[str] | None] = _Validator(added="1.1") + """``Requires`` (deprecated)""" + provides: _Validator[list[str] | None] = _Validator(added="1.1") + """``Provides`` (deprecated)""" + obsoletes: _Validator[list[str] | None] = _Validator(added="1.1") + """``Obsoletes`` (deprecated)""" diff --git a/env/Lib/site-packages/pip/_vendor/packaging/py.typed b/env/Lib/site-packages/pip/_vendor/packaging/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_vendor/packaging/requirements.py b/env/Lib/site-packages/pip/_vendor/packaging/requirements.py new file mode 100644 index 00000000..4e068c95 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/requirements.py @@ -0,0 +1,91 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +from __future__ import annotations + +from typing import Any, Iterator + +from ._parser import parse_requirement as _parse_requirement +from ._tokenizer import ParserSyntaxError +from .markers import Marker, _normalize_extra_values +from .specifiers import SpecifierSet +from .utils import canonicalize_name + + +class InvalidRequirement(ValueError): + """ + An invalid requirement was found, users should refer to PEP 508. + """ + + +class Requirement: + """Parse a requirement. + + Parse a given requirement string into its parts, such as name, specifier, + URL, and extras. Raises InvalidRequirement on a badly-formed requirement + string. + """ + + # TODO: Can we test whether something is contained within a requirement? + # If so how do we do that? Do we need to test against the _name_ of + # the thing as well as the version? What about the markers? + # TODO: Can we normalize the name and extra name? + + def __init__(self, requirement_string: str) -> None: + try: + parsed = _parse_requirement(requirement_string) + except ParserSyntaxError as e: + raise InvalidRequirement(str(e)) from e + + self.name: str = parsed.name + self.url: str | None = parsed.url or None + self.extras: set[str] = set(parsed.extras or []) + self.specifier: SpecifierSet = SpecifierSet(parsed.specifier) + self.marker: Marker | None = None + if parsed.marker is not None: + self.marker = Marker.__new__(Marker) + self.marker._markers = _normalize_extra_values(parsed.marker) + + def _iter_parts(self, name: str) -> Iterator[str]: + yield name + + if self.extras: + formatted_extras = ",".join(sorted(self.extras)) + yield f"[{formatted_extras}]" + + if self.specifier: + yield str(self.specifier) + + if self.url: + yield f"@ {self.url}" + if self.marker: + yield " " + + if self.marker: + yield f"; {self.marker}" + + def __str__(self) -> str: + return "".join(self._iter_parts(self.name)) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash( + ( + self.__class__.__name__, + *self._iter_parts(canonicalize_name(self.name)), + ) + ) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Requirement): + return NotImplemented + + return ( + canonicalize_name(self.name) == canonicalize_name(other.name) + and self.extras == other.extras + and self.specifier == other.specifier + and self.url == other.url + and self.marker == other.marker + ) diff --git a/env/Lib/site-packages/pip/_vendor/packaging/specifiers.py b/env/Lib/site-packages/pip/_vendor/packaging/specifiers.py new file mode 100644 index 00000000..f3ac480f --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/specifiers.py @@ -0,0 +1,1009 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from pip._vendor.packaging.specifiers import Specifier, SpecifierSet, InvalidSpecifier + from pip._vendor.packaging.version import Version +""" + +from __future__ import annotations + +import abc +import itertools +import re +from typing import Callable, Iterable, Iterator, TypeVar, Union + +from .utils import canonicalize_version +from .version import Version + +UnparsedVersion = Union[Version, str] +UnparsedVersionVar = TypeVar("UnparsedVersionVar", bound=UnparsedVersion) +CallableOperator = Callable[[Version, str], bool] + + +def _coerce_version(version: UnparsedVersion) -> Version: + if not isinstance(version, Version): + version = Version(version) + return version + + +class InvalidSpecifier(ValueError): + """ + Raised when attempting to create a :class:`Specifier` with a specifier + string that is invalid. + + >>> Specifier("lolwat") + Traceback (most recent call last): + ... + packaging.specifiers.InvalidSpecifier: Invalid specifier: 'lolwat' + """ + + +class BaseSpecifier(metaclass=abc.ABCMeta): + @abc.abstractmethod + def __str__(self) -> str: + """ + Returns the str representation of this Specifier-like object. This + should be representative of the Specifier itself. + """ + + @abc.abstractmethod + def __hash__(self) -> int: + """ + Returns a hash value for this Specifier-like object. + """ + + @abc.abstractmethod + def __eq__(self, other: object) -> bool: + """ + Returns a boolean representing whether or not the two Specifier-like + objects are equal. + + :param other: The other object to check against. + """ + + @property + @abc.abstractmethod + def prereleases(self) -> bool | None: + """Whether or not pre-releases as a whole are allowed. + + This can be set to either ``True`` or ``False`` to explicitly enable or disable + prereleases or it can be set to ``None`` (the default) to use default semantics. + """ + + @prereleases.setter + def prereleases(self, value: bool) -> None: + """Setter for :attr:`prereleases`. + + :param value: The value to set. + """ + + @abc.abstractmethod + def contains(self, item: str, prereleases: bool | None = None) -> bool: + """ + Determines if the given item is contained within this specifier. + """ + + @abc.abstractmethod + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """ + Takes an iterable of items and filters them so that only items which + are contained within this specifier are allowed in it. + """ + + +class Specifier(BaseSpecifier): + """This class abstracts handling of version specifiers. + + .. tip:: + + It is generally not required to instantiate this manually. You should instead + prefer to work with :class:`SpecifierSet` instead, which can parse + comma-separated version specifiers (which is what package metadata contains). + """ + + _operator_regex_str = r""" + (?P(~=|==|!=|<=|>=|<|>|===)) + """ + _version_regex_str = r""" + (?P + (?: + # The identity operators allow for an escape hatch that will + # do an exact string match of the version you wish to install. + # This will not be parsed by PEP 440 and we cannot determine + # any semantic meaning from it. This operator is discouraged + # but included entirely as an escape hatch. + (?<====) # Only match for the identity operator + \s* + [^\s;)]* # The arbitrary version can be just about anything, + # we match everything except for whitespace, a + # semi-colon for marker support, and a closing paren + # since versions can be enclosed in them. + ) + | + (?: + # The (non)equality operators allow for wild card and local + # versions to be specified so we have to define these two + # operators separately to enable that. + (?<===|!=) # Only match for equals and not equals + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)* # release + + # You cannot use a wild card and a pre-release, post-release, a dev or + # local version together so group them with a | and make them optional. + (?: + \.\* # Wild card syntax of .* + | + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local + )? + ) + | + (?: + # The compatible operator requires at least two digits in the + # release segment. + (?<=~=) # Only match for the compatible operator + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + ) + | + (?: + # All other operators only allow a sub set of what the + # (non)equality operators do. Specifically they do not allow + # local versions to be specified nor do they allow the prefix + # matching wild cards. + (?=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + "===": "arbitrary", + } + + def __init__(self, spec: str = "", prereleases: bool | None = None) -> None: + """Initialize a Specifier instance. + + :param spec: + The string representation of a specifier which will be parsed and + normalized before use. + :param prereleases: + This tells the specifier if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + :raises InvalidSpecifier: + If the given specifier is invalid (i.e. bad syntax). + """ + match = self._regex.search(spec) + if not match: + raise InvalidSpecifier(f"Invalid specifier: '{spec}'") + + self._spec: tuple[str, str] = ( + match.group("operator").strip(), + match.group("version").strip(), + ) + + # Store whether or not this Specifier should accept prereleases + self._prereleases = prereleases + + # https://github.com/python/mypy/pull/13475#pullrequestreview-1079784515 + @property # type: ignore[override] + def prereleases(self) -> bool: + # If there is an explicit prereleases set for this, then we'll just + # blindly use that. + if self._prereleases is not None: + return self._prereleases + + # Look at all of our specifiers and determine if they are inclusive + # operators, and if they are if they are including an explicit + # prerelease. + operator, version = self._spec + if operator in ["==", ">=", "<=", "~=", "==="]: + # The == specifier can include a trailing .*, if it does we + # want to remove before parsing. + if operator == "==" and version.endswith(".*"): + version = version[:-2] + + # Parse the version, and if it is a pre-release than this + # specifier allows pre-releases. + if Version(version).is_prerelease: + return True + + return False + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + @property + def operator(self) -> str: + """The operator of this specifier. + + >>> Specifier("==1.2.3").operator + '==' + """ + return self._spec[0] + + @property + def version(self) -> str: + """The version of this specifier. + + >>> Specifier("==1.2.3").version + '1.2.3' + """ + return self._spec[1] + + def __repr__(self) -> str: + """A representation of the Specifier that shows all internal state. + + >>> Specifier('>=1.0.0') + =1.0.0')> + >>> Specifier('>=1.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> Specifier('>=1.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"<{self.__class__.__name__}({str(self)!r}{pre})>" + + def __str__(self) -> str: + """A string representation of the Specifier that can be round-tripped. + + >>> str(Specifier('>=1.0.0')) + '>=1.0.0' + >>> str(Specifier('>=1.0.0', prereleases=False)) + '>=1.0.0' + """ + return "{}{}".format(*self._spec) + + @property + def _canonical_spec(self) -> tuple[str, str]: + canonical_version = canonicalize_version( + self._spec[1], + strip_trailing_zero=(self._spec[0] != "~="), + ) + return self._spec[0], canonical_version + + def __hash__(self) -> int: + return hash(self._canonical_spec) + + def __eq__(self, other: object) -> bool: + """Whether or not the two Specifier-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> Specifier("==1.2.3") == Specifier("== 1.2.3.0") + True + >>> (Specifier("==1.2.3", prereleases=False) == + ... Specifier("==1.2.3", prereleases=True)) + True + >>> Specifier("==1.2.3") == "==1.2.3" + True + >>> Specifier("==1.2.3") == Specifier("==1.2.4") + False + >>> Specifier("==1.2.3") == Specifier("~=1.2.3") + False + """ + if isinstance(other, str): + try: + other = self.__class__(str(other)) + except InvalidSpecifier: + return NotImplemented + elif not isinstance(other, self.__class__): + return NotImplemented + + return self._canonical_spec == other._canonical_spec + + def _get_operator(self, op: str) -> CallableOperator: + operator_callable: CallableOperator = getattr( + self, f"_compare_{self._operators[op]}" + ) + return operator_callable + + def _compare_compatible(self, prospective: Version, spec: str) -> bool: + # Compatible releases have an equivalent combination of >= and ==. That + # is that ~=2.2 is equivalent to >=2.2,==2.*. This allows us to + # implement this in terms of the other specifiers instead of + # implementing it ourselves. The only thing we need to do is construct + # the other specifiers. + + # We want everything but the last item in the version, but we want to + # ignore suffix segments. + prefix = _version_join( + list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1] + ) + + # Add the prefix notation to the end of our string + prefix += ".*" + + return self._get_operator(">=")(prospective, spec) and self._get_operator("==")( + prospective, prefix + ) + + def _compare_equal(self, prospective: Version, spec: str) -> bool: + # We need special logic to handle prefix matching + if spec.endswith(".*"): + # In the case of prefix matching we want to ignore local segment. + normalized_prospective = canonicalize_version( + prospective.public, strip_trailing_zero=False + ) + # Get the normalized version string ignoring the trailing .* + normalized_spec = canonicalize_version(spec[:-2], strip_trailing_zero=False) + # Split the spec out by bangs and dots, and pretend that there is + # an implicit dot in between a release segment and a pre-release segment. + split_spec = _version_split(normalized_spec) + + # Split the prospective version out by bangs and dots, and pretend + # that there is an implicit dot in between a release segment and + # a pre-release segment. + split_prospective = _version_split(normalized_prospective) + + # 0-pad the prospective version before shortening it to get the correct + # shortened version. + padded_prospective, _ = _pad_version(split_prospective, split_spec) + + # Shorten the prospective version to be the same length as the spec + # so that we can determine if the specifier is a prefix of the + # prospective version or not. + shortened_prospective = padded_prospective[: len(split_spec)] + + return shortened_prospective == split_spec + else: + # Convert our spec string into a Version + spec_version = Version(spec) + + # If the specifier does not have a local segment, then we want to + # act as if the prospective version also does not have a local + # segment. + if not spec_version.local: + prospective = Version(prospective.public) + + return prospective == spec_version + + def _compare_not_equal(self, prospective: Version, spec: str) -> bool: + return not self._compare_equal(prospective, spec) + + def _compare_less_than_equal(self, prospective: Version, spec: str) -> bool: + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) <= Version(spec) + + def _compare_greater_than_equal(self, prospective: Version, spec: str) -> bool: + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) >= Version(spec) + + def _compare_less_than(self, prospective: Version, spec_str: str) -> bool: + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is less than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective < spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a pre-release version, that we do not accept pre-release + # versions for the version mentioned in the specifier (e.g. <3.1 should + # not match 3.1.dev0, but should match 3.0.dev0). + if not spec.is_prerelease and prospective.is_prerelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # less than the spec version *and* it's not a pre-release of the same + # version in the spec. + return True + + def _compare_greater_than(self, prospective: Version, spec_str: str) -> bool: + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is greater than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective > spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a post-release version, that we do not accept + # post-release versions for the version mentioned in the specifier + # (e.g. >3.1 should not match 3.0.post0, but should match 3.2.post0). + if not spec.is_postrelease and prospective.is_postrelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # Ensure that we do not allow a local version of the version mentioned + # in the specifier, which is technically greater than, to match. + if prospective.local is not None: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # greater than the spec version *and* it's not a pre-release of the + # same version in the spec. + return True + + def _compare_arbitrary(self, prospective: Version, spec: str) -> bool: + return str(prospective).lower() == str(spec).lower() + + def __contains__(self, item: str | Version) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in Specifier(">=1.2.3") + True + >>> Version("1.2.3") in Specifier(">=1.2.3") + True + >>> "1.0.0" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3", prereleases=True) + True + """ + return self.contains(item) + + def contains(self, item: UnparsedVersion, prereleases: bool | None = None) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this Specifier. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> Specifier(">=1.2.3").contains("1.2.3") + True + >>> Specifier(">=1.2.3").contains(Version("1.2.3")) + True + >>> Specifier(">=1.2.3").contains("1.0.0") + False + >>> Specifier(">=1.2.3").contains("1.3.0a1") + False + >>> Specifier(">=1.2.3", prereleases=True).contains("1.3.0a1") + True + >>> Specifier(">=1.2.3").contains("1.3.0a1", prereleases=True) + True + """ + + # Determine if prereleases are to be allowed or not. + if prereleases is None: + prereleases = self.prereleases + + # Normalize item to a Version, this allows us to have a shortcut for + # "2.0" in Specifier(">=2") + normalized_item = _coerce_version(item) + + # Determine if we should be supporting prereleases in this specifier + # or not, if we do not support prereleases than we can short circuit + # logic if this version is a prereleases. + if normalized_item.is_prerelease and not prereleases: + return False + + # Actually do the comparison to determine if this item is contained + # within this Specifier or not. + operator_callable: CallableOperator = self._get_operator(self.operator) + return operator_callable(normalized_item, self.version) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifier. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(Specifier().contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.2.3", "1.3", Version("1.4")])) + ['1.2.3', '1.3', ] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.5a1"])) + ['1.5a1'] + >>> list(Specifier(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(Specifier(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + """ + + yielded = False + found_prereleases = [] + + kw = {"prereleases": prereleases if prereleases is not None else True} + + # Attempt to iterate over all the values in the iterable and if any of + # them match, yield them. + for version in iterable: + parsed_version = _coerce_version(version) + + if self.contains(parsed_version, **kw): + # If our version is a prerelease, and we were not set to allow + # prereleases, then we'll store it for later in case nothing + # else matches this specifier. + if parsed_version.is_prerelease and not ( + prereleases or self.prereleases + ): + found_prereleases.append(version) + # Either this is not a prerelease, or we should have been + # accepting prereleases from the beginning. + else: + yielded = True + yield version + + # Now that we've iterated over everything, determine if we've yielded + # any values, and if we have not and we have any prereleases stored up + # then we will go ahead and yield the prereleases. + if not yielded and found_prereleases: + for version in found_prereleases: + yield version + + +_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") + + +def _version_split(version: str) -> list[str]: + """Split version into components. + + The split components are intended for version comparison. The logic does + not attempt to retain the original version string, so joining the + components back with :func:`_version_join` may not produce the original + version string. + """ + result: list[str] = [] + + epoch, _, rest = version.rpartition("!") + result.append(epoch or "0") + + for item in rest.split("."): + match = _prefix_regex.search(item) + if match: + result.extend(match.groups()) + else: + result.append(item) + return result + + +def _version_join(components: list[str]) -> str: + """Join split version components into a version string. + + This function assumes the input came from :func:`_version_split`, where the + first component must be the epoch (either empty or numeric), and all other + components numeric. + """ + epoch, *rest = components + return f"{epoch}!{'.'.join(rest)}" + + +def _is_not_suffix(segment: str) -> bool: + return not any( + segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post") + ) + + +def _pad_version(left: list[str], right: list[str]) -> tuple[list[str], list[str]]: + left_split, right_split = [], [] + + # Get the release segment of our versions + left_split.append(list(itertools.takewhile(lambda x: x.isdigit(), left))) + right_split.append(list(itertools.takewhile(lambda x: x.isdigit(), right))) + + # Get the rest of our versions + left_split.append(left[len(left_split[0]) :]) + right_split.append(right[len(right_split[0]) :]) + + # Insert our padding + left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) + right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0]))) + + return ( + list(itertools.chain.from_iterable(left_split)), + list(itertools.chain.from_iterable(right_split)), + ) + + +class SpecifierSet(BaseSpecifier): + """This class abstracts handling of a set of version specifiers. + + It can be passed a single specifier (``>=3.0``), a comma-separated list of + specifiers (``>=3.0,!=3.1``), or no specifier at all. + """ + + def __init__(self, specifiers: str = "", prereleases: bool | None = None) -> None: + """Initialize a SpecifierSet instance. + + :param specifiers: + The string representation of a specifier or a comma-separated list of + specifiers which will be parsed and normalized before use. + :param prereleases: + This tells the SpecifierSet if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + + :raises InvalidSpecifier: + If the given ``specifiers`` are not parseable than this exception will be + raised. + """ + + # Split on `,` to break each individual specifier into it's own item, and + # strip each item to remove leading/trailing whitespace. + split_specifiers = [s.strip() for s in specifiers.split(",") if s.strip()] + + # Make each individual specifier a Specifier and save in a frozen set for later. + self._specs = frozenset(map(Specifier, split_specifiers)) + + # Store our prereleases value so we can use it later to determine if + # we accept prereleases or not. + self._prereleases = prereleases + + @property + def prereleases(self) -> bool | None: + # If we have been given an explicit prerelease modifier, then we'll + # pass that through here. + if self._prereleases is not None: + return self._prereleases + + # If we don't have any specifiers, and we don't have a forced value, + # then we'll just return None since we don't know if this should have + # pre-releases or not. + if not self._specs: + return None + + # Otherwise we'll see if any of the given specifiers accept + # prereleases, if any of them do we'll return True, otherwise False. + return any(s.prereleases for s in self._specs) + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __repr__(self) -> str: + """A representation of the specifier set that shows all internal state. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> SpecifierSet('>=1.0.0,!=2.0.0') + =1.0.0')> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"" + + def __str__(self) -> str: + """A string representation of the specifier set that can be round-tripped. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> str(SpecifierSet(">=1.0.0,!=1.0.1")) + '!=1.0.1,>=1.0.0' + >>> str(SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False)) + '!=1.0.1,>=1.0.0' + """ + return ",".join(sorted(str(s) for s in self._specs)) + + def __hash__(self) -> int: + return hash(self._specs) + + def __and__(self, other: SpecifierSet | str) -> SpecifierSet: + """Return a SpecifierSet which is a combination of the two sets. + + :param other: The other object to combine with. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") & '<=2.0.0,!=2.0.1' + =1.0.0')> + >>> SpecifierSet(">=1.0.0,!=1.0.1") & SpecifierSet('<=2.0.0,!=2.0.1') + =1.0.0')> + """ + if isinstance(other, str): + other = SpecifierSet(other) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + specifier = SpecifierSet() + specifier._specs = frozenset(self._specs | other._specs) + + if self._prereleases is None and other._prereleases is not None: + specifier._prereleases = other._prereleases + elif self._prereleases is not None and other._prereleases is None: + specifier._prereleases = self._prereleases + elif self._prereleases == other._prereleases: + specifier._prereleases = self._prereleases + else: + raise ValueError( + "Cannot combine SpecifierSets with True and False prerelease " + "overrides." + ) + + return specifier + + def __eq__(self, other: object) -> bool: + """Whether or not the two SpecifierSet-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> (SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False) == + ... SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True)) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == ">=1.0.0,!=1.0.1" + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.2") + False + """ + if isinstance(other, (str, Specifier)): + other = SpecifierSet(str(other)) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + return self._specs == other._specs + + def __len__(self) -> int: + """Returns the number of specifiers in this specifier set.""" + return len(self._specs) + + def __iter__(self) -> Iterator[Specifier]: + """ + Returns an iterator over all the underlying :class:`Specifier` instances + in this specifier set. + + >>> sorted(SpecifierSet(">=1.0.0,!=1.0.1"), key=str) + [, =1.0.0')>] + """ + return iter(self._specs) + + def __contains__(self, item: UnparsedVersion) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> Version("1.2.3") in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> "1.0.1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True) + True + """ + return self.contains(item) + + def contains( + self, + item: UnparsedVersion, + prereleases: bool | None = None, + installed: bool | None = None, + ) -> bool: + """Return whether or not the item is contained in this SpecifierSet. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this SpecifierSet. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.2.3") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains(Version("1.2.3")) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.0.1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True).contains("1.3.0a1") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1", prereleases=True) + True + """ + # Ensure that our item is a Version instance. + if not isinstance(item, Version): + item = Version(item) + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # We can determine if we're going to allow pre-releases by looking to + # see if any of the underlying items supports them. If none of them do + # and this item is a pre-release then we do not allow it and we can + # short circuit that here. + # Note: This means that 1.0.dev1 would not be contained in something + # like >=1.0.devabc however it would be in >=1.0.debabc,>0.0.dev0 + if not prereleases and item.is_prerelease: + return False + + if installed and item.is_prerelease: + item = Version(item.base_version) + + # We simply dispatch to the underlying specs here to make sure that the + # given version is contained within all of them. + # Note: This use of all() here means that an empty set of specifiers + # will always return True, this is an explicit design decision. + return all(s.contains(item, prereleases=prereleases) for s in self._specs) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifiers in this set. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(SpecifierSet(...).contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", Version("1.4")])) + ['1.3', ] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.5a1"])) + [] + >>> list(SpecifierSet(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(SpecifierSet(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + + An "empty" SpecifierSet will filter items based on the presence of prerelease + versions in the set. + + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet("").filter(["1.5a1"])) + ['1.5a1'] + >>> list(SpecifierSet("", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + """ + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # If we have any specifiers, then we want to wrap our iterable in the + # filter method for each one, this will act as a logical AND amongst + # each specifier. + if self._specs: + for spec in self._specs: + iterable = spec.filter(iterable, prereleases=bool(prereleases)) + return iter(iterable) + # If we do not have any specifiers, then we need to have a rough filter + # which will filter out any pre-releases, unless there are no final + # releases. + else: + filtered: list[UnparsedVersionVar] = [] + found_prereleases: list[UnparsedVersionVar] = [] + + for item in iterable: + parsed_version = _coerce_version(item) + + # Store any item which is a pre-release for later unless we've + # already found a final version or we are accepting prereleases + if parsed_version.is_prerelease and not prereleases: + if not filtered: + found_prereleases.append(item) + else: + filtered.append(item) + + # If we've found no items except for pre-releases, then we'll go + # ahead and use the pre-releases + if not filtered and found_prereleases and prereleases is None: + return iter(found_prereleases) + + return iter(filtered) diff --git a/env/Lib/site-packages/pip/_vendor/packaging/tags.py b/env/Lib/site-packages/pip/_vendor/packaging/tags.py new file mode 100644 index 00000000..6667d299 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/tags.py @@ -0,0 +1,568 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import logging +import platform +import re +import struct +import subprocess +import sys +import sysconfig +from importlib.machinery import EXTENSION_SUFFIXES +from typing import ( + Iterable, + Iterator, + Sequence, + Tuple, + cast, +) + +from . import _manylinux, _musllinux + +logger = logging.getLogger(__name__) + +PythonVersion = Sequence[int] +MacVersion = Tuple[int, int] + +INTERPRETER_SHORT_NAMES: dict[str, str] = { + "python": "py", # Generic. + "cpython": "cp", + "pypy": "pp", + "ironpython": "ip", + "jython": "jy", +} + + +_32_BIT_INTERPRETER = struct.calcsize("P") == 4 + + +class Tag: + """ + A representation of the tag triple for a wheel. + + Instances are considered immutable and thus are hashable. Equality checking + is also supported. + """ + + __slots__ = ["_interpreter", "_abi", "_platform", "_hash"] + + def __init__(self, interpreter: str, abi: str, platform: str) -> None: + self._interpreter = interpreter.lower() + self._abi = abi.lower() + self._platform = platform.lower() + # The __hash__ of every single element in a Set[Tag] will be evaluated each time + # that a set calls its `.disjoint()` method, which may be called hundreds of + # times when scanning a page of links for packages with tags matching that + # Set[Tag]. Pre-computing the value here produces significant speedups for + # downstream consumers. + self._hash = hash((self._interpreter, self._abi, self._platform)) + + @property + def interpreter(self) -> str: + return self._interpreter + + @property + def abi(self) -> str: + return self._abi + + @property + def platform(self) -> str: + return self._platform + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Tag): + return NotImplemented + + return ( + (self._hash == other._hash) # Short-circuit ASAP for perf reasons. + and (self._platform == other._platform) + and (self._abi == other._abi) + and (self._interpreter == other._interpreter) + ) + + def __hash__(self) -> int: + return self._hash + + def __str__(self) -> str: + return f"{self._interpreter}-{self._abi}-{self._platform}" + + def __repr__(self) -> str: + return f"<{self} @ {id(self)}>" + + +def parse_tag(tag: str) -> frozenset[Tag]: + """ + Parses the provided tag (e.g. `py3-none-any`) into a frozenset of Tag instances. + + Returning a set is required due to the possibility that the tag is a + compressed tag set. + """ + tags = set() + interpreters, abis, platforms = tag.split("-") + for interpreter in interpreters.split("."): + for abi in abis.split("."): + for platform_ in platforms.split("."): + tags.add(Tag(interpreter, abi, platform_)) + return frozenset(tags) + + +def _get_config_var(name: str, warn: bool = False) -> int | str | None: + value: int | str | None = sysconfig.get_config_var(name) + if value is None and warn: + logger.debug( + "Config variable '%s' is unset, Python ABI tag may be incorrect", name + ) + return value + + +def _normalize_string(string: str) -> str: + return string.replace(".", "_").replace("-", "_").replace(" ", "_") + + +def _is_threaded_cpython(abis: list[str]) -> bool: + """ + Determine if the ABI corresponds to a threaded (`--disable-gil`) build. + + The threaded builds are indicated by a "t" in the abiflags. + """ + if len(abis) == 0: + return False + # expect e.g., cp313 + m = re.match(r"cp\d+(.*)", abis[0]) + if not m: + return False + abiflags = m.group(1) + return "t" in abiflags + + +def _abi3_applies(python_version: PythonVersion, threading: bool) -> bool: + """ + Determine if the Python version supports abi3. + + PEP 384 was first implemented in Python 3.2. The threaded (`--disable-gil`) + builds do not support abi3. + """ + return len(python_version) > 1 and tuple(python_version) >= (3, 2) and not threading + + +def _cpython_abis(py_version: PythonVersion, warn: bool = False) -> list[str]: + py_version = tuple(py_version) # To allow for version comparison. + abis = [] + version = _version_nodot(py_version[:2]) + threading = debug = pymalloc = ucs4 = "" + with_debug = _get_config_var("Py_DEBUG", warn) + has_refcount = hasattr(sys, "gettotalrefcount") + # Windows doesn't set Py_DEBUG, so checking for support of debug-compiled + # extension modules is the best option. + # https://github.com/pypa/pip/issues/3383#issuecomment-173267692 + has_ext = "_d.pyd" in EXTENSION_SUFFIXES + if with_debug or (with_debug is None and (has_refcount or has_ext)): + debug = "d" + if py_version >= (3, 13) and _get_config_var("Py_GIL_DISABLED", warn): + threading = "t" + if py_version < (3, 8): + with_pymalloc = _get_config_var("WITH_PYMALLOC", warn) + if with_pymalloc or with_pymalloc is None: + pymalloc = "m" + if py_version < (3, 3): + unicode_size = _get_config_var("Py_UNICODE_SIZE", warn) + if unicode_size == 4 or ( + unicode_size is None and sys.maxunicode == 0x10FFFF + ): + ucs4 = "u" + elif debug: + # Debug builds can also load "normal" extension modules. + # We can also assume no UCS-4 or pymalloc requirement. + abis.append(f"cp{version}{threading}") + abis.insert(0, f"cp{version}{threading}{debug}{pymalloc}{ucs4}") + return abis + + +def cpython_tags( + python_version: PythonVersion | None = None, + abis: Iterable[str] | None = None, + platforms: Iterable[str] | None = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a CPython interpreter. + + The tags consist of: + - cp-- + - cp-abi3- + - cp-none- + - cp-abi3- # Older Python versions down to 3.2. + + If python_version only specifies a major version then user-provided ABIs and + the 'none' ABItag will be used. + + If 'abi3' or 'none' are specified in 'abis' then they will be yielded at + their normal position and not at the beginning. + """ + if not python_version: + python_version = sys.version_info[:2] + + interpreter = f"cp{_version_nodot(python_version[:2])}" + + if abis is None: + if len(python_version) > 1: + abis = _cpython_abis(python_version, warn) + else: + abis = [] + abis = list(abis) + # 'abi3' and 'none' are explicitly handled later. + for explicit_abi in ("abi3", "none"): + try: + abis.remove(explicit_abi) + except ValueError: + pass + + platforms = list(platforms or platform_tags()) + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + threading = _is_threaded_cpython(abis) + use_abi3 = _abi3_applies(python_version, threading) + if use_abi3: + yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) + yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) + + if use_abi3: + for minor_version in range(python_version[1] - 1, 1, -1): + for platform_ in platforms: + interpreter = "cp{version}".format( + version=_version_nodot((python_version[0], minor_version)) + ) + yield Tag(interpreter, "abi3", platform_) + + +def _generic_abi() -> list[str]: + """ + Return the ABI tag based on EXT_SUFFIX. + """ + # The following are examples of `EXT_SUFFIX`. + # We want to keep the parts which are related to the ABI and remove the + # parts which are related to the platform: + # - linux: '.cpython-310-x86_64-linux-gnu.so' => cp310 + # - mac: '.cpython-310-darwin.so' => cp310 + # - win: '.cp310-win_amd64.pyd' => cp310 + # - win: '.pyd' => cp37 (uses _cpython_abis()) + # - pypy: '.pypy38-pp73-x86_64-linux-gnu.so' => pypy38_pp73 + # - graalpy: '.graalpy-38-native-x86_64-darwin.dylib' + # => graalpy_38_native + + ext_suffix = _get_config_var("EXT_SUFFIX", warn=True) + if not isinstance(ext_suffix, str) or ext_suffix[0] != ".": + raise SystemError("invalid sysconfig.get_config_var('EXT_SUFFIX')") + parts = ext_suffix.split(".") + if len(parts) < 3: + # CPython3.7 and earlier uses ".pyd" on Windows. + return _cpython_abis(sys.version_info[:2]) + soabi = parts[1] + if soabi.startswith("cpython"): + # non-windows + abi = "cp" + soabi.split("-")[1] + elif soabi.startswith("cp"): + # windows + abi = soabi.split("-")[0] + elif soabi.startswith("pypy"): + abi = "-".join(soabi.split("-")[:2]) + elif soabi.startswith("graalpy"): + abi = "-".join(soabi.split("-")[:3]) + elif soabi: + # pyston, ironpython, others? + abi = soabi + else: + return [] + return [_normalize_string(abi)] + + +def generic_tags( + interpreter: str | None = None, + abis: Iterable[str] | None = None, + platforms: Iterable[str] | None = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a generic interpreter. + + The tags consist of: + - -- + + The "none" ABI will be added if it was not explicitly provided. + """ + if not interpreter: + interp_name = interpreter_name() + interp_version = interpreter_version(warn=warn) + interpreter = "".join([interp_name, interp_version]) + if abis is None: + abis = _generic_abi() + else: + abis = list(abis) + platforms = list(platforms or platform_tags()) + if "none" not in abis: + abis.append("none") + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + +def _py_interpreter_range(py_version: PythonVersion) -> Iterator[str]: + """ + Yields Python versions in descending order. + + After the latest version, the major-only version will be yielded, and then + all previous versions of that major version. + """ + if len(py_version) > 1: + yield f"py{_version_nodot(py_version[:2])}" + yield f"py{py_version[0]}" + if len(py_version) > 1: + for minor in range(py_version[1] - 1, -1, -1): + yield f"py{_version_nodot((py_version[0], minor))}" + + +def compatible_tags( + python_version: PythonVersion | None = None, + interpreter: str | None = None, + platforms: Iterable[str] | None = None, +) -> Iterator[Tag]: + """ + Yields the sequence of tags that are compatible with a specific version of Python. + + The tags consist of: + - py*-none- + - -none-any # ... if `interpreter` is provided. + - py*-none-any + """ + if not python_version: + python_version = sys.version_info[:2] + platforms = list(platforms or platform_tags()) + for version in _py_interpreter_range(python_version): + for platform_ in platforms: + yield Tag(version, "none", platform_) + if interpreter: + yield Tag(interpreter, "none", "any") + for version in _py_interpreter_range(python_version): + yield Tag(version, "none", "any") + + +def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str: + if not is_32bit: + return arch + + if arch.startswith("ppc"): + return "ppc" + + return "i386" + + +def _mac_binary_formats(version: MacVersion, cpu_arch: str) -> list[str]: + formats = [cpu_arch] + if cpu_arch == "x86_64": + if version < (10, 4): + return [] + formats.extend(["intel", "fat64", "fat32"]) + + elif cpu_arch == "i386": + if version < (10, 4): + return [] + formats.extend(["intel", "fat32", "fat"]) + + elif cpu_arch == "ppc64": + # TODO: Need to care about 32-bit PPC for ppc64 through 10.2? + if version > (10, 5) or version < (10, 4): + return [] + formats.append("fat64") + + elif cpu_arch == "ppc": + if version > (10, 6): + return [] + formats.extend(["fat32", "fat"]) + + if cpu_arch in {"arm64", "x86_64"}: + formats.append("universal2") + + if cpu_arch in {"x86_64", "i386", "ppc64", "ppc", "intel"}: + formats.append("universal") + + return formats + + +def mac_platforms( + version: MacVersion | None = None, arch: str | None = None +) -> Iterator[str]: + """ + Yields the platform tags for a macOS system. + + The `version` parameter is a two-item tuple specifying the macOS version to + generate platform tags for. The `arch` parameter is the CPU architecture to + generate platform tags for. Both parameters default to the appropriate value + for the current system. + """ + version_str, _, cpu_arch = platform.mac_ver() + if version is None: + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + if version == (10, 16): + # When built against an older macOS SDK, Python will report macOS 10.16 + # instead of the real version. + version_str = subprocess.run( + [ + sys.executable, + "-sS", + "-c", + "import platform; print(platform.mac_ver()[0])", + ], + check=True, + env={"SYSTEM_VERSION_COMPAT": "0"}, + stdout=subprocess.PIPE, + text=True, + ).stdout + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + else: + version = version + if arch is None: + arch = _mac_arch(cpu_arch) + else: + arch = arch + + if (10, 0) <= version and version < (11, 0): + # Prior to Mac OS 11, each yearly release of Mac OS bumped the + # "minor" version number. The major version was always 10. + for minor_version in range(version[1], -1, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=10, minor=minor_version, binary_format=binary_format + ) + + if version >= (11, 0): + # Starting with Mac OS 11, each yearly release bumps the major version + # number. The minor versions are now the midyear updates. + for major_version in range(version[0], 10, -1): + compat_version = major_version, 0 + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=major_version, minor=0, binary_format=binary_format + ) + + if version >= (11, 0): + # Mac OS 11 on x86_64 is compatible with binaries from previous releases. + # Arm64 support was introduced in 11.0, so no Arm binaries from previous + # releases exist. + # + # However, the "universal2" binary format can have a + # macOS version earlier than 11.0 when the x86_64 part of the binary supports + # that version of macOS. + if arch == "x86_64": + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + else: + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_format = "universal2" + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + + +def _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: + linux = _normalize_string(sysconfig.get_platform()) + if not linux.startswith("linux_"): + # we should never be here, just yield the sysconfig one and return + yield linux + return + if is_32bit: + if linux == "linux_x86_64": + linux = "linux_i686" + elif linux == "linux_aarch64": + linux = "linux_armv8l" + _, arch = linux.split("_", 1) + archs = {"armv8l": ["armv8l", "armv7l"]}.get(arch, [arch]) + yield from _manylinux.platform_tags(archs) + yield from _musllinux.platform_tags(archs) + for arch in archs: + yield f"linux_{arch}" + + +def _generic_platforms() -> Iterator[str]: + yield _normalize_string(sysconfig.get_platform()) + + +def platform_tags() -> Iterator[str]: + """ + Provides the platform tags for this installation. + """ + if platform.system() == "Darwin": + return mac_platforms() + elif platform.system() == "Linux": + return _linux_platforms() + else: + return _generic_platforms() + + +def interpreter_name() -> str: + """ + Returns the name of the running interpreter. + + Some implementations have a reserved, two-letter abbreviation which will + be returned when appropriate. + """ + name = sys.implementation.name + return INTERPRETER_SHORT_NAMES.get(name) or name + + +def interpreter_version(*, warn: bool = False) -> str: + """ + Returns the version of the running interpreter. + """ + version = _get_config_var("py_version_nodot", warn=warn) + if version: + version = str(version) + else: + version = _version_nodot(sys.version_info[:2]) + return version + + +def _version_nodot(version: PythonVersion) -> str: + return "".join(map(str, version)) + + +def sys_tags(*, warn: bool = False) -> Iterator[Tag]: + """ + Returns the sequence of tag triples for the running interpreter. + + The order of the sequence corresponds to priority order for the + interpreter, from most to least important. + """ + + interp_name = interpreter_name() + if interp_name == "cp": + yield from cpython_tags(warn=warn) + else: + yield from generic_tags() + + if interp_name == "pp": + interp = "pp3" + elif interp_name == "cp": + interp = "cp" + interpreter_version(warn=warn) + else: + interp = None + yield from compatible_tags(interpreter=interp) diff --git a/env/Lib/site-packages/pip/_vendor/packaging/utils.py b/env/Lib/site-packages/pip/_vendor/packaging/utils.py new file mode 100644 index 00000000..d33da5bb --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/utils.py @@ -0,0 +1,174 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import re +from typing import NewType, Tuple, Union, cast + +from .tags import Tag, parse_tag +from .version import InvalidVersion, Version + +BuildTag = Union[Tuple[()], Tuple[int, str]] +NormalizedName = NewType("NormalizedName", str) + + +class InvalidName(ValueError): + """ + An invalid distribution name; users should refer to the packaging user guide. + """ + + +class InvalidWheelFilename(ValueError): + """ + An invalid wheel filename was found, users should refer to PEP 427. + """ + + +class InvalidSdistFilename(ValueError): + """ + An invalid sdist filename was found, users should refer to the packaging user guide. + """ + + +# Core metadata spec for `Name` +_validate_regex = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE +) +_canonicalize_regex = re.compile(r"[-_.]+") +_normalized_regex = re.compile(r"^([a-z0-9]|[a-z0-9]([a-z0-9-](?!--))*[a-z0-9])$") +# PEP 427: The build number must start with a digit. +_build_tag_regex = re.compile(r"(\d+)(.*)") + + +def canonicalize_name(name: str, *, validate: bool = False) -> NormalizedName: + if validate and not _validate_regex.match(name): + raise InvalidName(f"name is invalid: {name!r}") + # This is taken from PEP 503. + value = _canonicalize_regex.sub("-", name).lower() + return cast(NormalizedName, value) + + +def is_normalized_name(name: str) -> bool: + return _normalized_regex.match(name) is not None + + +def canonicalize_version( + version: Version | str, *, strip_trailing_zero: bool = True +) -> str: + """ + This is very similar to Version.__str__, but has one subtle difference + with the way it handles the release segment. + """ + if isinstance(version, str): + try: + parsed = Version(version) + except InvalidVersion: + # Legacy versions cannot be normalized + return version + else: + parsed = version + + parts = [] + + # Epoch + if parsed.epoch != 0: + parts.append(f"{parsed.epoch}!") + + # Release segment + release_segment = ".".join(str(x) for x in parsed.release) + if strip_trailing_zero: + # NB: This strips trailing '.0's to normalize + release_segment = re.sub(r"(\.0)+$", "", release_segment) + parts.append(release_segment) + + # Pre-release + if parsed.pre is not None: + parts.append("".join(str(x) for x in parsed.pre)) + + # Post-release + if parsed.post is not None: + parts.append(f".post{parsed.post}") + + # Development release + if parsed.dev is not None: + parts.append(f".dev{parsed.dev}") + + # Local version segment + if parsed.local is not None: + parts.append(f"+{parsed.local}") + + return "".join(parts) + + +def parse_wheel_filename( + filename: str, +) -> tuple[NormalizedName, Version, BuildTag, frozenset[Tag]]: + if not filename.endswith(".whl"): + raise InvalidWheelFilename( + f"Invalid wheel filename (extension must be '.whl'): {filename}" + ) + + filename = filename[:-4] + dashes = filename.count("-") + if dashes not in (4, 5): + raise InvalidWheelFilename( + f"Invalid wheel filename (wrong number of parts): {filename}" + ) + + parts = filename.split("-", dashes - 2) + name_part = parts[0] + # See PEP 427 for the rules on escaping the project name. + if "__" in name_part or re.match(r"^[\w\d._]*$", name_part, re.UNICODE) is None: + raise InvalidWheelFilename(f"Invalid project name: {filename}") + name = canonicalize_name(name_part) + + try: + version = Version(parts[1]) + except InvalidVersion as e: + raise InvalidWheelFilename( + f"Invalid wheel filename (invalid version): {filename}" + ) from e + + if dashes == 5: + build_part = parts[2] + build_match = _build_tag_regex.match(build_part) + if build_match is None: + raise InvalidWheelFilename( + f"Invalid build number: {build_part} in '{filename}'" + ) + build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2))) + else: + build = () + tags = parse_tag(parts[-1]) + return (name, version, build, tags) + + +def parse_sdist_filename(filename: str) -> tuple[NormalizedName, Version]: + if filename.endswith(".tar.gz"): + file_stem = filename[: -len(".tar.gz")] + elif filename.endswith(".zip"): + file_stem = filename[: -len(".zip")] + else: + raise InvalidSdistFilename( + f"Invalid sdist filename (extension must be '.tar.gz' or '.zip'):" + f" {filename}" + ) + + # We are requiring a PEP 440 version, which cannot contain dashes, + # so we split on the last dash. + name_part, sep, version_part = file_stem.rpartition("-") + if not sep: + raise InvalidSdistFilename(f"Invalid sdist filename: {filename}") + + name = canonicalize_name(name_part) + + try: + version = Version(version_part) + except InvalidVersion as e: + raise InvalidSdistFilename( + f"Invalid sdist filename (invalid version): {filename}" + ) from e + + return (name, version) diff --git a/env/Lib/site-packages/pip/_vendor/packaging/version.py b/env/Lib/site-packages/pip/_vendor/packaging/version.py new file mode 100644 index 00000000..8b0a0408 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/packaging/version.py @@ -0,0 +1,563 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from pip._vendor.packaging.version import parse, Version +""" + +from __future__ import annotations + +import itertools +import re +from typing import Any, Callable, NamedTuple, SupportsInt, Tuple, Union + +from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType + +__all__ = ["VERSION_PATTERN", "parse", "Version", "InvalidVersion"] + +LocalType = Tuple[Union[int, str], ...] + +CmpPrePostDevType = Union[InfinityType, NegativeInfinityType, Tuple[str, int]] +CmpLocalType = Union[ + NegativeInfinityType, + Tuple[Union[Tuple[int, str], Tuple[NegativeInfinityType, Union[int, str]]], ...], +] +CmpKey = Tuple[ + int, + Tuple[int, ...], + CmpPrePostDevType, + CmpPrePostDevType, + CmpPrePostDevType, + CmpLocalType, +] +VersionComparisonMethod = Callable[[CmpKey, CmpKey], bool] + + +class _Version(NamedTuple): + epoch: int + release: tuple[int, ...] + dev: tuple[str, int] | None + pre: tuple[str, int] | None + post: tuple[str, int] | None + local: LocalType | None + + +def parse(version: str) -> Version: + """Parse the given version string. + + >>> parse('1.0.dev1') + + + :param version: The version string to parse. + :raises InvalidVersion: When the version string is not a valid version. + """ + return Version(version) + + +class InvalidVersion(ValueError): + """Raised when a version string is not a valid version. + + >>> Version("invalid") + Traceback (most recent call last): + ... + packaging.version.InvalidVersion: Invalid version: 'invalid' + """ + + +class _BaseVersion: + _key: tuple[Any, ...] + + def __hash__(self) -> int: + return hash(self._key) + + # Please keep the duplicated `isinstance` check + # in the six comparisons hereunder + # unless you find a way to avoid adding overhead function calls. + def __lt__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key < other._key + + def __le__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key <= other._key + + def __eq__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key == other._key + + def __ge__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key >= other._key + + def __gt__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key > other._key + + def __ne__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key != other._key + + +# Deliberately not anchored to the start and end of the string, to make it +# easier for 3rd party code to reuse +_VERSION_PATTERN = r""" + v? + (?: + (?:(?P[0-9]+)!)? # epoch + (?P[0-9]+(?:\.[0-9]+)*) # release segment + (?P

                                          # pre-release
+            [-_\.]?
+            (?Palpha|a|beta|b|preview|pre|c|rc)
+            [-_\.]?
+            (?P[0-9]+)?
+        )?
+        (?P                                         # post release
+            (?:-(?P[0-9]+))
+            |
+            (?:
+                [-_\.]?
+                (?Ppost|rev|r)
+                [-_\.]?
+                (?P[0-9]+)?
+            )
+        )?
+        (?P                                          # dev release
+            [-_\.]?
+            (?Pdev)
+            [-_\.]?
+            (?P[0-9]+)?
+        )?
+    )
+    (?:\+(?P[a-z0-9]+(?:[-_\.][a-z0-9]+)*))?       # local version
+"""
+
+VERSION_PATTERN = _VERSION_PATTERN
+"""
+A string containing the regular expression used to match a valid version.
+
+The pattern is not anchored at either end, and is intended for embedding in larger
+expressions (for example, matching a version number as part of a file name). The
+regular expression should be compiled with the ``re.VERBOSE`` and ``re.IGNORECASE``
+flags set.
+
+:meta hide-value:
+"""
+
+
+class Version(_BaseVersion):
+    """This class abstracts handling of a project's versions.
+
+    A :class:`Version` instance is comparison aware and can be compared and
+    sorted using the standard Python interfaces.
+
+    >>> v1 = Version("1.0a5")
+    >>> v2 = Version("1.0")
+    >>> v1
+    
+    >>> v2
+    
+    >>> v1 < v2
+    True
+    >>> v1 == v2
+    False
+    >>> v1 > v2
+    False
+    >>> v1 >= v2
+    False
+    >>> v1 <= v2
+    True
+    """
+
+    _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE)
+    _key: CmpKey
+
+    def __init__(self, version: str) -> None:
+        """Initialize a Version object.
+
+        :param version:
+            The string representation of a version which will be parsed and normalized
+            before use.
+        :raises InvalidVersion:
+            If the ``version`` does not conform to PEP 440 in any way then this
+            exception will be raised.
+        """
+
+        # Validate the version and parse it into pieces
+        match = self._regex.search(version)
+        if not match:
+            raise InvalidVersion(f"Invalid version: '{version}'")
+
+        # Store the parsed out pieces of the version
+        self._version = _Version(
+            epoch=int(match.group("epoch")) if match.group("epoch") else 0,
+            release=tuple(int(i) for i in match.group("release").split(".")),
+            pre=_parse_letter_version(match.group("pre_l"), match.group("pre_n")),
+            post=_parse_letter_version(
+                match.group("post_l"), match.group("post_n1") or match.group("post_n2")
+            ),
+            dev=_parse_letter_version(match.group("dev_l"), match.group("dev_n")),
+            local=_parse_local_version(match.group("local")),
+        )
+
+        # Generate a key which will be used for sorting
+        self._key = _cmpkey(
+            self._version.epoch,
+            self._version.release,
+            self._version.pre,
+            self._version.post,
+            self._version.dev,
+            self._version.local,
+        )
+
+    def __repr__(self) -> str:
+        """A representation of the Version that shows all internal state.
+
+        >>> Version('1.0.0')
+        
+        """
+        return f""
+
+    def __str__(self) -> str:
+        """A string representation of the version that can be rounded-tripped.
+
+        >>> str(Version("1.0a5"))
+        '1.0a5'
+        """
+        parts = []
+
+        # Epoch
+        if self.epoch != 0:
+            parts.append(f"{self.epoch}!")
+
+        # Release segment
+        parts.append(".".join(str(x) for x in self.release))
+
+        # Pre-release
+        if self.pre is not None:
+            parts.append("".join(str(x) for x in self.pre))
+
+        # Post-release
+        if self.post is not None:
+            parts.append(f".post{self.post}")
+
+        # Development release
+        if self.dev is not None:
+            parts.append(f".dev{self.dev}")
+
+        # Local version segment
+        if self.local is not None:
+            parts.append(f"+{self.local}")
+
+        return "".join(parts)
+
+    @property
+    def epoch(self) -> int:
+        """The epoch of the version.
+
+        >>> Version("2.0.0").epoch
+        0
+        >>> Version("1!2.0.0").epoch
+        1
+        """
+        return self._version.epoch
+
+    @property
+    def release(self) -> tuple[int, ...]:
+        """The components of the "release" segment of the version.
+
+        >>> Version("1.2.3").release
+        (1, 2, 3)
+        >>> Version("2.0.0").release
+        (2, 0, 0)
+        >>> Version("1!2.0.0.post0").release
+        (2, 0, 0)
+
+        Includes trailing zeroes but not the epoch or any pre-release / development /
+        post-release suffixes.
+        """
+        return self._version.release
+
+    @property
+    def pre(self) -> tuple[str, int] | None:
+        """The pre-release segment of the version.
+
+        >>> print(Version("1.2.3").pre)
+        None
+        >>> Version("1.2.3a1").pre
+        ('a', 1)
+        >>> Version("1.2.3b1").pre
+        ('b', 1)
+        >>> Version("1.2.3rc1").pre
+        ('rc', 1)
+        """
+        return self._version.pre
+
+    @property
+    def post(self) -> int | None:
+        """The post-release number of the version.
+
+        >>> print(Version("1.2.3").post)
+        None
+        >>> Version("1.2.3.post1").post
+        1
+        """
+        return self._version.post[1] if self._version.post else None
+
+    @property
+    def dev(self) -> int | None:
+        """The development number of the version.
+
+        >>> print(Version("1.2.3").dev)
+        None
+        >>> Version("1.2.3.dev1").dev
+        1
+        """
+        return self._version.dev[1] if self._version.dev else None
+
+    @property
+    def local(self) -> str | None:
+        """The local version segment of the version.
+
+        >>> print(Version("1.2.3").local)
+        None
+        >>> Version("1.2.3+abc").local
+        'abc'
+        """
+        if self._version.local:
+            return ".".join(str(x) for x in self._version.local)
+        else:
+            return None
+
+    @property
+    def public(self) -> str:
+        """The public portion of the version.
+
+        >>> Version("1.2.3").public
+        '1.2.3'
+        >>> Version("1.2.3+abc").public
+        '1.2.3'
+        >>> Version("1.2.3+abc.dev1").public
+        '1.2.3'
+        """
+        return str(self).split("+", 1)[0]
+
+    @property
+    def base_version(self) -> str:
+        """The "base version" of the version.
+
+        >>> Version("1.2.3").base_version
+        '1.2.3'
+        >>> Version("1.2.3+abc").base_version
+        '1.2.3'
+        >>> Version("1!1.2.3+abc.dev1").base_version
+        '1!1.2.3'
+
+        The "base version" is the public version of the project without any pre or post
+        release markers.
+        """
+        parts = []
+
+        # Epoch
+        if self.epoch != 0:
+            parts.append(f"{self.epoch}!")
+
+        # Release segment
+        parts.append(".".join(str(x) for x in self.release))
+
+        return "".join(parts)
+
+    @property
+    def is_prerelease(self) -> bool:
+        """Whether this version is a pre-release.
+
+        >>> Version("1.2.3").is_prerelease
+        False
+        >>> Version("1.2.3a1").is_prerelease
+        True
+        >>> Version("1.2.3b1").is_prerelease
+        True
+        >>> Version("1.2.3rc1").is_prerelease
+        True
+        >>> Version("1.2.3dev1").is_prerelease
+        True
+        """
+        return self.dev is not None or self.pre is not None
+
+    @property
+    def is_postrelease(self) -> bool:
+        """Whether this version is a post-release.
+
+        >>> Version("1.2.3").is_postrelease
+        False
+        >>> Version("1.2.3.post1").is_postrelease
+        True
+        """
+        return self.post is not None
+
+    @property
+    def is_devrelease(self) -> bool:
+        """Whether this version is a development release.
+
+        >>> Version("1.2.3").is_devrelease
+        False
+        >>> Version("1.2.3.dev1").is_devrelease
+        True
+        """
+        return self.dev is not None
+
+    @property
+    def major(self) -> int:
+        """The first item of :attr:`release` or ``0`` if unavailable.
+
+        >>> Version("1.2.3").major
+        1
+        """
+        return self.release[0] if len(self.release) >= 1 else 0
+
+    @property
+    def minor(self) -> int:
+        """The second item of :attr:`release` or ``0`` if unavailable.
+
+        >>> Version("1.2.3").minor
+        2
+        >>> Version("1").minor
+        0
+        """
+        return self.release[1] if len(self.release) >= 2 else 0
+
+    @property
+    def micro(self) -> int:
+        """The third item of :attr:`release` or ``0`` if unavailable.
+
+        >>> Version("1.2.3").micro
+        3
+        >>> Version("1").micro
+        0
+        """
+        return self.release[2] if len(self.release) >= 3 else 0
+
+
+def _parse_letter_version(
+    letter: str | None, number: str | bytes | SupportsInt | None
+) -> tuple[str, int] | None:
+    if letter:
+        # We consider there to be an implicit 0 in a pre-release if there is
+        # not a numeral associated with it.
+        if number is None:
+            number = 0
+
+        # We normalize any letters to their lower case form
+        letter = letter.lower()
+
+        # We consider some words to be alternate spellings of other words and
+        # in those cases we want to normalize the spellings to our preferred
+        # spelling.
+        if letter == "alpha":
+            letter = "a"
+        elif letter == "beta":
+            letter = "b"
+        elif letter in ["c", "pre", "preview"]:
+            letter = "rc"
+        elif letter in ["rev", "r"]:
+            letter = "post"
+
+        return letter, int(number)
+    if not letter and number:
+        # We assume if we are given a number, but we are not given a letter
+        # then this is using the implicit post release syntax (e.g. 1.0-1)
+        letter = "post"
+
+        return letter, int(number)
+
+    return None
+
+
+_local_version_separators = re.compile(r"[\._-]")
+
+
+def _parse_local_version(local: str | None) -> LocalType | None:
+    """
+    Takes a string like abc.1.twelve and turns it into ("abc", 1, "twelve").
+    """
+    if local is not None:
+        return tuple(
+            part.lower() if not part.isdigit() else int(part)
+            for part in _local_version_separators.split(local)
+        )
+    return None
+
+
+def _cmpkey(
+    epoch: int,
+    release: tuple[int, ...],
+    pre: tuple[str, int] | None,
+    post: tuple[str, int] | None,
+    dev: tuple[str, int] | None,
+    local: LocalType | None,
+) -> CmpKey:
+    # When we compare a release version, we want to compare it with all of the
+    # trailing zeros removed. So we'll use a reverse the list, drop all the now
+    # leading zeros until we come to something non zero, then take the rest
+    # re-reverse it back into the correct order and make it a tuple and use
+    # that for our sorting key.
+    _release = tuple(
+        reversed(list(itertools.dropwhile(lambda x: x == 0, reversed(release))))
+    )
+
+    # We need to "trick" the sorting algorithm to put 1.0.dev0 before 1.0a0.
+    # We'll do this by abusing the pre segment, but we _only_ want to do this
+    # if there is not a pre or a post segment. If we have one of those then
+    # the normal sorting rules will handle this case correctly.
+    if pre is None and post is None and dev is not None:
+        _pre: CmpPrePostDevType = NegativeInfinity
+    # Versions without a pre-release (except as noted above) should sort after
+    # those with one.
+    elif pre is None:
+        _pre = Infinity
+    else:
+        _pre = pre
+
+    # Versions without a post segment should sort before those with one.
+    if post is None:
+        _post: CmpPrePostDevType = NegativeInfinity
+
+    else:
+        _post = post
+
+    # Versions without a development segment should sort after those with one.
+    if dev is None:
+        _dev: CmpPrePostDevType = Infinity
+
+    else:
+        _dev = dev
+
+    if local is None:
+        # Versions without a local segment should sort before those with one.
+        _local: CmpLocalType = NegativeInfinity
+    else:
+        # Versions with a local segment need that segment parsed to implement
+        # the sorting rules in PEP440.
+        # - Alpha numeric segments sort before numeric segments
+        # - Alpha numeric segments sort lexicographically
+        # - Numeric segments sort numerically
+        # - Shorter versions sort before longer versions when the prefixes
+        #   match exactly
+        _local = tuple(
+            (i, "") if isinstance(i, int) else (NegativeInfinity, i) for i in local
+        )
+
+    return epoch, _release, _pre, _post, _dev, _local
diff --git a/env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py b/env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py
new file mode 100644
index 00000000..57ce7f10
--- /dev/null
+++ b/env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py
@@ -0,0 +1,3676 @@
+# TODO: Add Generic type annotations to initialized collections.
+# For now we'd simply use implicit Any/Unknown which would add redundant annotations
+# mypy: disable-error-code="var-annotated"
+"""
+Package resource API
+--------------------
+
+A resource is a logical file contained within a package, or a logical
+subdirectory thereof.  The package resource API expects resource names
+to have their path parts separated with ``/``, *not* whatever the local
+path separator is.  Do not use os.path operations to manipulate resource
+names being passed into the API.
+
+The package resource API is designed to work with normal filesystem packages,
+.egg files, and unpacked .egg files.  It can also work in a limited way with
+.zip files and with custom PEP 302 loaders that support the ``get_data()``
+method.
+
+This module is deprecated. Users are directed to :mod:`importlib.resources`,
+:mod:`importlib.metadata` and :pypi:`packaging` instead.
+"""
+
+from __future__ import annotations
+
+import sys
+
+if sys.version_info < (3, 8):  # noqa: UP036 # Check for unsupported versions
+    raise RuntimeError("Python 3.8 or later is required")
+
+import os
+import io
+import time
+import re
+import types
+from typing import (
+    Any,
+    Literal,
+    Dict,
+    Iterator,
+    Mapping,
+    MutableSequence,
+    NamedTuple,
+    NoReturn,
+    Tuple,
+    Union,
+    TYPE_CHECKING,
+    Protocol,
+    Callable,
+    Iterable,
+    TypeVar,
+    overload,
+)
+import zipfile
+import zipimport
+import warnings
+import stat
+import functools
+import pkgutil
+import operator
+import platform
+import collections
+import plistlib
+import email.parser
+import errno
+import tempfile
+import textwrap
+import inspect
+import ntpath
+import posixpath
+import importlib
+import importlib.abc
+import importlib.machinery
+from pkgutil import get_importer
+
+import _imp
+
+# capture these to bypass sandboxing
+from os import utime
+from os import open as os_open
+from os.path import isdir, split
+
+try:
+    from os import mkdir, rename, unlink
+
+    WRITE_SUPPORT = True
+except ImportError:
+    # no write support, probably under GAE
+    WRITE_SUPPORT = False
+
+from pip._internal.utils._jaraco_text import (
+    yield_lines,
+    drop_comment,
+    join_continuation,
+)
+from pip._vendor.packaging import markers as _packaging_markers
+from pip._vendor.packaging import requirements as _packaging_requirements
+from pip._vendor.packaging import utils as _packaging_utils
+from pip._vendor.packaging import version as _packaging_version
+from pip._vendor.platformdirs import user_cache_dir as _user_cache_dir
+
+if TYPE_CHECKING:
+    from _typeshed import BytesPath, StrPath, StrOrBytesPath
+    from pip._vendor.typing_extensions import Self
+
+
+# Patch: Remove deprecation warning from vendored pkg_resources.
+# Setting PYTHONWARNINGS=error to verify builds produce no warnings
+# causes immediate exceptions.
+# See https://github.com/pypa/pip/issues/12243
+
+
+_T = TypeVar("_T")
+_DistributionT = TypeVar("_DistributionT", bound="Distribution")
+# Type aliases
+_NestedStr = Union[str, Iterable[Union[str, Iterable["_NestedStr"]]]]
+_InstallerTypeT = Callable[["Requirement"], "_DistributionT"]
+_InstallerType = Callable[["Requirement"], Union["Distribution", None]]
+_PkgReqType = Union[str, "Requirement"]
+_EPDistType = Union["Distribution", _PkgReqType]
+_MetadataType = Union["IResourceProvider", None]
+_ResolvedEntryPoint = Any  # Can be any attribute in the module
+_ResourceStream = Any  # TODO / Incomplete: A readable file-like object
+# Any object works, but let's indicate we expect something like a module (optionally has __loader__ or __file__)
+_ModuleLike = Union[object, types.ModuleType]
+# Any: Should be _ModuleLike but we end up with issues where _ModuleLike doesn't have _ZipLoaderModule's __loader__
+_ProviderFactoryType = Callable[[Any], "IResourceProvider"]
+_DistFinderType = Callable[[_T, str, bool], Iterable["Distribution"]]
+_NSHandlerType = Callable[[_T, str, str, types.ModuleType], Union[str, None]]
+_AdapterT = TypeVar(
+    "_AdapterT", _DistFinderType[Any], _ProviderFactoryType, _NSHandlerType[Any]
+)
+
+
+# Use _typeshed.importlib.LoaderProtocol once available https://github.com/python/typeshed/pull/11890
+class _LoaderProtocol(Protocol):
+    def load_module(self, fullname: str, /) -> types.ModuleType: ...
+
+
+class _ZipLoaderModule(Protocol):
+    __loader__: zipimport.zipimporter
+
+
+_PEP440_FALLBACK = re.compile(r"^v?(?P(?:[0-9]+!)?[0-9]+(?:\.[0-9]+)*)", re.I)
+
+
+class PEP440Warning(RuntimeWarning):
+    """
+    Used when there is an issue with a version or specifier not complying with
+    PEP 440.
+    """
+
+
+parse_version = _packaging_version.Version
+
+
+_state_vars: dict[str, str] = {}
+
+
+def _declare_state(vartype: str, varname: str, initial_value: _T) -> _T:
+    _state_vars[varname] = vartype
+    return initial_value
+
+
+def __getstate__() -> dict[str, Any]:
+    state = {}
+    g = globals()
+    for k, v in _state_vars.items():
+        state[k] = g['_sget_' + v](g[k])
+    return state
+
+
+def __setstate__(state: dict[str, Any]) -> dict[str, Any]:
+    g = globals()
+    for k, v in state.items():
+        g['_sset_' + _state_vars[k]](k, g[k], v)
+    return state
+
+
+def _sget_dict(val):
+    return val.copy()
+
+
+def _sset_dict(key, ob, state):
+    ob.clear()
+    ob.update(state)
+
+
+def _sget_object(val):
+    return val.__getstate__()
+
+
+def _sset_object(key, ob, state):
+    ob.__setstate__(state)
+
+
+_sget_none = _sset_none = lambda *args: None
+
+
+def get_supported_platform():
+    """Return this platform's maximum compatible version.
+
+    distutils.util.get_platform() normally reports the minimum version
+    of macOS that would be required to *use* extensions produced by
+    distutils.  But what we want when checking compatibility is to know the
+    version of macOS that we are *running*.  To allow usage of packages that
+    explicitly require a newer version of macOS, we must also know the
+    current version of the OS.
+
+    If this condition occurs for any other platform with a version in its
+    platform strings, this function should be extended accordingly.
+    """
+    plat = get_build_platform()
+    m = macosVersionString.match(plat)
+    if m is not None and sys.platform == "darwin":
+        try:
+            plat = 'macosx-%s-%s' % ('.'.join(_macos_vers()[:2]), m.group(3))
+        except ValueError:
+            # not macOS
+            pass
+    return plat
+
+
+__all__ = [
+    # Basic resource access and distribution/entry point discovery
+    'require',
+    'run_script',
+    'get_provider',
+    'get_distribution',
+    'load_entry_point',
+    'get_entry_map',
+    'get_entry_info',
+    'iter_entry_points',
+    'resource_string',
+    'resource_stream',
+    'resource_filename',
+    'resource_listdir',
+    'resource_exists',
+    'resource_isdir',
+    # Environmental control
+    'declare_namespace',
+    'working_set',
+    'add_activation_listener',
+    'find_distributions',
+    'set_extraction_path',
+    'cleanup_resources',
+    'get_default_cache',
+    # Primary implementation classes
+    'Environment',
+    'WorkingSet',
+    'ResourceManager',
+    'Distribution',
+    'Requirement',
+    'EntryPoint',
+    # Exceptions
+    'ResolutionError',
+    'VersionConflict',
+    'DistributionNotFound',
+    'UnknownExtra',
+    'ExtractionError',
+    # Warnings
+    'PEP440Warning',
+    # Parsing functions and string utilities
+    'parse_requirements',
+    'parse_version',
+    'safe_name',
+    'safe_version',
+    'get_platform',
+    'compatible_platforms',
+    'yield_lines',
+    'split_sections',
+    'safe_extra',
+    'to_filename',
+    'invalid_marker',
+    'evaluate_marker',
+    # filesystem utilities
+    'ensure_directory',
+    'normalize_path',
+    # Distribution "precedence" constants
+    'EGG_DIST',
+    'BINARY_DIST',
+    'SOURCE_DIST',
+    'CHECKOUT_DIST',
+    'DEVELOP_DIST',
+    # "Provider" interfaces, implementations, and registration/lookup APIs
+    'IMetadataProvider',
+    'IResourceProvider',
+    'FileMetadata',
+    'PathMetadata',
+    'EggMetadata',
+    'EmptyProvider',
+    'empty_provider',
+    'NullProvider',
+    'EggProvider',
+    'DefaultProvider',
+    'ZipProvider',
+    'register_finder',
+    'register_namespace_handler',
+    'register_loader_type',
+    'fixup_namespace_packages',
+    'get_importer',
+    # Warnings
+    'PkgResourcesDeprecationWarning',
+    # Deprecated/backward compatibility only
+    'run_main',
+    'AvailableDistributions',
+]
+
+
+class ResolutionError(Exception):
+    """Abstract base for dependency resolution errors"""
+
+    def __repr__(self):
+        return self.__class__.__name__ + repr(self.args)
+
+
+class VersionConflict(ResolutionError):
+    """
+    An already-installed version conflicts with the requested version.
+
+    Should be initialized with the installed Distribution and the requested
+    Requirement.
+    """
+
+    _template = "{self.dist} is installed but {self.req} is required"
+
+    @property
+    def dist(self) -> Distribution:
+        return self.args[0]
+
+    @property
+    def req(self) -> Requirement:
+        return self.args[1]
+
+    def report(self):
+        return self._template.format(**locals())
+
+    def with_context(self, required_by: set[Distribution | str]):
+        """
+        If required_by is non-empty, return a version of self that is a
+        ContextualVersionConflict.
+        """
+        if not required_by:
+            return self
+        args = self.args + (required_by,)
+        return ContextualVersionConflict(*args)
+
+
+class ContextualVersionConflict(VersionConflict):
+    """
+    A VersionConflict that accepts a third parameter, the set of the
+    requirements that required the installed Distribution.
+    """
+
+    _template = VersionConflict._template + ' by {self.required_by}'
+
+    @property
+    def required_by(self) -> set[str]:
+        return self.args[2]
+
+
+class DistributionNotFound(ResolutionError):
+    """A requested distribution was not found"""
+
+    _template = (
+        "The '{self.req}' distribution was not found "
+        "and is required by {self.requirers_str}"
+    )
+
+    @property
+    def req(self) -> Requirement:
+        return self.args[0]
+
+    @property
+    def requirers(self) -> set[str] | None:
+        return self.args[1]
+
+    @property
+    def requirers_str(self):
+        if not self.requirers:
+            return 'the application'
+        return ', '.join(self.requirers)
+
+    def report(self):
+        return self._template.format(**locals())
+
+    def __str__(self):
+        return self.report()
+
+
+class UnknownExtra(ResolutionError):
+    """Distribution doesn't have an "extra feature" of the given name"""
+
+
+_provider_factories: dict[type[_ModuleLike], _ProviderFactoryType] = {}
+
+PY_MAJOR = '{}.{}'.format(*sys.version_info)
+EGG_DIST = 3
+BINARY_DIST = 2
+SOURCE_DIST = 1
+CHECKOUT_DIST = 0
+DEVELOP_DIST = -1
+
+
+def register_loader_type(
+    loader_type: type[_ModuleLike], provider_factory: _ProviderFactoryType
+):
+    """Register `provider_factory` to make providers for `loader_type`
+
+    `loader_type` is the type or class of a PEP 302 ``module.__loader__``,
+    and `provider_factory` is a function that, passed a *module* object,
+    returns an ``IResourceProvider`` for that module.
+    """
+    _provider_factories[loader_type] = provider_factory
+
+
+@overload
+def get_provider(moduleOrReq: str) -> IResourceProvider: ...
+@overload
+def get_provider(moduleOrReq: Requirement) -> Distribution: ...
+def get_provider(moduleOrReq: str | Requirement) -> IResourceProvider | Distribution:
+    """Return an IResourceProvider for the named module or requirement"""
+    if isinstance(moduleOrReq, Requirement):
+        return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
+    try:
+        module = sys.modules[moduleOrReq]
+    except KeyError:
+        __import__(moduleOrReq)
+        module = sys.modules[moduleOrReq]
+    loader = getattr(module, '__loader__', None)
+    return _find_adapter(_provider_factories, loader)(module)
+
+
+@functools.lru_cache(maxsize=None)
+def _macos_vers():
+    version = platform.mac_ver()[0]
+    # fallback for MacPorts
+    if version == '':
+        plist = '/System/Library/CoreServices/SystemVersion.plist'
+        if os.path.exists(plist):
+            with open(plist, 'rb') as fh:
+                plist_content = plistlib.load(fh)
+            if 'ProductVersion' in plist_content:
+                version = plist_content['ProductVersion']
+    return version.split('.')
+
+
+def _macos_arch(machine):
+    return {'PowerPC': 'ppc', 'Power_Macintosh': 'ppc'}.get(machine, machine)
+
+
+def get_build_platform():
+    """Return this platform's string for platform-specific distributions
+
+    XXX Currently this is the same as ``distutils.util.get_platform()``, but it
+    needs some hacks for Linux and macOS.
+    """
+    from sysconfig import get_platform
+
+    plat = get_platform()
+    if sys.platform == "darwin" and not plat.startswith('macosx-'):
+        try:
+            version = _macos_vers()
+            machine = os.uname()[4].replace(" ", "_")
+            return "macosx-%d.%d-%s" % (
+                int(version[0]),
+                int(version[1]),
+                _macos_arch(machine),
+            )
+        except ValueError:
+            # if someone is running a non-Mac darwin system, this will fall
+            # through to the default implementation
+            pass
+    return plat
+
+
+macosVersionString = re.compile(r"macosx-(\d+)\.(\d+)-(.*)")
+darwinVersionString = re.compile(r"darwin-(\d+)\.(\d+)\.(\d+)-(.*)")
+# XXX backward compat
+get_platform = get_build_platform
+
+
+def compatible_platforms(provided: str | None, required: str | None):
+    """Can code for the `provided` platform run on the `required` platform?
+
+    Returns true if either platform is ``None``, or the platforms are equal.
+
+    XXX Needs compatibility checks for Linux and other unixy OSes.
+    """
+    if provided is None or required is None or provided == required:
+        # easy case
+        return True
+
+    # macOS special cases
+    reqMac = macosVersionString.match(required)
+    if reqMac:
+        provMac = macosVersionString.match(provided)
+
+        # is this a Mac package?
+        if not provMac:
+            # this is backwards compatibility for packages built before
+            # setuptools 0.6. All packages built after this point will
+            # use the new macOS designation.
+            provDarwin = darwinVersionString.match(provided)
+            if provDarwin:
+                dversion = int(provDarwin.group(1))
+                macosversion = "%s.%s" % (reqMac.group(1), reqMac.group(2))
+                if (
+                    dversion == 7
+                    and macosversion >= "10.3"
+                    or dversion == 8
+                    and macosversion >= "10.4"
+                ):
+                    return True
+            # egg isn't macOS or legacy darwin
+            return False
+
+        # are they the same major version and machine type?
+        if provMac.group(1) != reqMac.group(1) or provMac.group(3) != reqMac.group(3):
+            return False
+
+        # is the required OS major update >= the provided one?
+        if int(provMac.group(2)) > int(reqMac.group(2)):
+            return False
+
+        return True
+
+    # XXX Linux and other platforms' special cases should go here
+    return False
+
+
+@overload
+def get_distribution(dist: _DistributionT) -> _DistributionT: ...
+@overload
+def get_distribution(dist: _PkgReqType) -> Distribution: ...
+def get_distribution(dist: Distribution | _PkgReqType) -> Distribution:
+    """Return a current distribution object for a Requirement or string"""
+    if isinstance(dist, str):
+        dist = Requirement.parse(dist)
+    if isinstance(dist, Requirement):
+        # Bad type narrowing, dist has to be a Requirement here, so get_provider has to return Distribution
+        dist = get_provider(dist)  # type: ignore[assignment]
+    if not isinstance(dist, Distribution):
+        raise TypeError("Expected str, Requirement, or Distribution", dist)
+    return dist
+
+
+def load_entry_point(dist: _EPDistType, group: str, name: str) -> _ResolvedEntryPoint:
+    """Return `name` entry point of `group` for `dist` or raise ImportError"""
+    return get_distribution(dist).load_entry_point(group, name)
+
+
+@overload
+def get_entry_map(
+    dist: _EPDistType, group: None = None
+) -> dict[str, dict[str, EntryPoint]]: ...
+@overload
+def get_entry_map(dist: _EPDistType, group: str) -> dict[str, EntryPoint]: ...
+def get_entry_map(dist: _EPDistType, group: str | None = None):
+    """Return the entry point map for `group`, or the full entry map"""
+    return get_distribution(dist).get_entry_map(group)
+
+
+def get_entry_info(dist: _EPDistType, group: str, name: str):
+    """Return the EntryPoint object for `group`+`name`, or ``None``"""
+    return get_distribution(dist).get_entry_info(group, name)
+
+
+class IMetadataProvider(Protocol):
+    def has_metadata(self, name: str) -> bool:
+        """Does the package's distribution contain the named metadata?"""
+
+    def get_metadata(self, name: str) -> str:
+        """The named metadata resource as a string"""
+
+    def get_metadata_lines(self, name: str) -> Iterator[str]:
+        """Yield named metadata resource as list of non-blank non-comment lines
+
+        Leading and trailing whitespace is stripped from each line, and lines
+        with ``#`` as the first non-blank character are omitted."""
+
+    def metadata_isdir(self, name: str) -> bool:
+        """Is the named metadata a directory?  (like ``os.path.isdir()``)"""
+
+    def metadata_listdir(self, name: str) -> list[str]:
+        """List of metadata names in the directory (like ``os.listdir()``)"""
+
+    def run_script(self, script_name: str, namespace: dict[str, Any]) -> None:
+        """Execute the named script in the supplied namespace dictionary"""
+
+
+class IResourceProvider(IMetadataProvider, Protocol):
+    """An object that provides access to package resources"""
+
+    def get_resource_filename(
+        self, manager: ResourceManager, resource_name: str
+    ) -> str:
+        """Return a true filesystem path for `resource_name`
+
+        `manager` must be a ``ResourceManager``"""
+
+    def get_resource_stream(
+        self, manager: ResourceManager, resource_name: str
+    ) -> _ResourceStream:
+        """Return a readable file-like object for `resource_name`
+
+        `manager` must be a ``ResourceManager``"""
+
+    def get_resource_string(
+        self, manager: ResourceManager, resource_name: str
+    ) -> bytes:
+        """Return the contents of `resource_name` as :obj:`bytes`
+
+        `manager` must be a ``ResourceManager``"""
+
+    def has_resource(self, resource_name: str) -> bool:
+        """Does the package contain the named resource?"""
+
+    def resource_isdir(self, resource_name: str) -> bool:
+        """Is the named resource a directory?  (like ``os.path.isdir()``)"""
+
+    def resource_listdir(self, resource_name: str) -> list[str]:
+        """List of resource names in the directory (like ``os.listdir()``)"""
+
+
+class WorkingSet:
+    """A collection of active distributions on sys.path (or a similar list)"""
+
+    def __init__(self, entries: Iterable[str] | None = None):
+        """Create working set from list of path entries (default=sys.path)"""
+        self.entries: list[str] = []
+        self.entry_keys = {}
+        self.by_key = {}
+        self.normalized_to_canonical_keys = {}
+        self.callbacks = []
+
+        if entries is None:
+            entries = sys.path
+
+        for entry in entries:
+            self.add_entry(entry)
+
+    @classmethod
+    def _build_master(cls):
+        """
+        Prepare the master working set.
+        """
+        ws = cls()
+        try:
+            from __main__ import __requires__
+        except ImportError:
+            # The main program does not list any requirements
+            return ws
+
+        # ensure the requirements are met
+        try:
+            ws.require(__requires__)
+        except VersionConflict:
+            return cls._build_from_requirements(__requires__)
+
+        return ws
+
+    @classmethod
+    def _build_from_requirements(cls, req_spec):
+        """
+        Build a working set from a requirement spec. Rewrites sys.path.
+        """
+        # try it without defaults already on sys.path
+        # by starting with an empty path
+        ws = cls([])
+        reqs = parse_requirements(req_spec)
+        dists = ws.resolve(reqs, Environment())
+        for dist in dists:
+            ws.add(dist)
+
+        # add any missing entries from sys.path
+        for entry in sys.path:
+            if entry not in ws.entries:
+                ws.add_entry(entry)
+
+        # then copy back to sys.path
+        sys.path[:] = ws.entries
+        return ws
+
+    def add_entry(self, entry: str):
+        """Add a path item to ``.entries``, finding any distributions on it
+
+        ``find_distributions(entry, True)`` is used to find distributions
+        corresponding to the path entry, and they are added.  `entry` is
+        always appended to ``.entries``, even if it is already present.
+        (This is because ``sys.path`` can contain the same value more than
+        once, and the ``.entries`` of the ``sys.path`` WorkingSet should always
+        equal ``sys.path``.)
+        """
+        self.entry_keys.setdefault(entry, [])
+        self.entries.append(entry)
+        for dist in find_distributions(entry, True):
+            self.add(dist, entry, False)
+
+    def __contains__(self, dist: Distribution) -> bool:
+        """True if `dist` is the active distribution for its project"""
+        return self.by_key.get(dist.key) == dist
+
+    def find(self, req: Requirement) -> Distribution | None:
+        """Find a distribution matching requirement `req`
+
+        If there is an active distribution for the requested project, this
+        returns it as long as it meets the version requirement specified by
+        `req`.  But, if there is an active distribution for the project and it
+        does *not* meet the `req` requirement, ``VersionConflict`` is raised.
+        If there is no active distribution for the requested project, ``None``
+        is returned.
+        """
+        dist = self.by_key.get(req.key)
+
+        if dist is None:
+            canonical_key = self.normalized_to_canonical_keys.get(req.key)
+
+            if canonical_key is not None:
+                req.key = canonical_key
+                dist = self.by_key.get(canonical_key)
+
+        if dist is not None and dist not in req:
+            # XXX add more info
+            raise VersionConflict(dist, req)
+        return dist
+
+    def iter_entry_points(self, group: str, name: str | None = None):
+        """Yield entry point objects from `group` matching `name`
+
+        If `name` is None, yields all entry points in `group` from all
+        distributions in the working set, otherwise only ones matching
+        both `group` and `name` are yielded (in distribution order).
+        """
+        return (
+            entry
+            for dist in self
+            for entry in dist.get_entry_map(group).values()
+            if name is None or name == entry.name
+        )
+
+    def run_script(self, requires: str, script_name: str):
+        """Locate distribution for `requires` and run `script_name` script"""
+        ns = sys._getframe(1).f_globals
+        name = ns['__name__']
+        ns.clear()
+        ns['__name__'] = name
+        self.require(requires)[0].run_script(script_name, ns)
+
+    def __iter__(self) -> Iterator[Distribution]:
+        """Yield distributions for non-duplicate projects in the working set
+
+        The yield order is the order in which the items' path entries were
+        added to the working set.
+        """
+        seen = set()
+        for item in self.entries:
+            if item not in self.entry_keys:
+                # workaround a cache issue
+                continue
+
+            for key in self.entry_keys[item]:
+                if key not in seen:
+                    seen.add(key)
+                    yield self.by_key[key]
+
+    def add(
+        self,
+        dist: Distribution,
+        entry: str | None = None,
+        insert: bool = True,
+        replace: bool = False,
+    ):
+        """Add `dist` to working set, associated with `entry`
+
+        If `entry` is unspecified, it defaults to the ``.location`` of `dist`.
+        On exit from this routine, `entry` is added to the end of the working
+        set's ``.entries`` (if it wasn't already present).
+
+        `dist` is only added to the working set if it's for a project that
+        doesn't already have a distribution in the set, unless `replace=True`.
+        If it's added, any callbacks registered with the ``subscribe()`` method
+        will be called.
+        """
+        if insert:
+            dist.insert_on(self.entries, entry, replace=replace)
+
+        if entry is None:
+            entry = dist.location
+        keys = self.entry_keys.setdefault(entry, [])
+        keys2 = self.entry_keys.setdefault(dist.location, [])
+        if not replace and dist.key in self.by_key:
+            # ignore hidden distros
+            return
+
+        self.by_key[dist.key] = dist
+        normalized_name = _packaging_utils.canonicalize_name(dist.key)
+        self.normalized_to_canonical_keys[normalized_name] = dist.key
+        if dist.key not in keys:
+            keys.append(dist.key)
+        if dist.key not in keys2:
+            keys2.append(dist.key)
+        self._added_new(dist)
+
+    @overload
+    def resolve(
+        self,
+        requirements: Iterable[Requirement],
+        env: Environment | None,
+        installer: _InstallerTypeT[_DistributionT],
+        replace_conflicting: bool = False,
+        extras: tuple[str, ...] | None = None,
+    ) -> list[_DistributionT]: ...
+    @overload
+    def resolve(
+        self,
+        requirements: Iterable[Requirement],
+        env: Environment | None = None,
+        *,
+        installer: _InstallerTypeT[_DistributionT],
+        replace_conflicting: bool = False,
+        extras: tuple[str, ...] | None = None,
+    ) -> list[_DistributionT]: ...
+    @overload
+    def resolve(
+        self,
+        requirements: Iterable[Requirement],
+        env: Environment | None = None,
+        installer: _InstallerType | None = None,
+        replace_conflicting: bool = False,
+        extras: tuple[str, ...] | None = None,
+    ) -> list[Distribution]: ...
+    def resolve(
+        self,
+        requirements: Iterable[Requirement],
+        env: Environment | None = None,
+        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
+        replace_conflicting: bool = False,
+        extras: tuple[str, ...] | None = None,
+    ) -> list[Distribution] | list[_DistributionT]:
+        """List all distributions needed to (recursively) meet `requirements`
+
+        `requirements` must be a sequence of ``Requirement`` objects.  `env`,
+        if supplied, should be an ``Environment`` instance.  If
+        not supplied, it defaults to all distributions available within any
+        entry or distribution in the working set.  `installer`, if supplied,
+        will be invoked with each requirement that cannot be met by an
+        already-installed distribution; it should return a ``Distribution`` or
+        ``None``.
+
+        Unless `replace_conflicting=True`, raises a VersionConflict exception
+        if
+        any requirements are found on the path that have the correct name but
+        the wrong version.  Otherwise, if an `installer` is supplied it will be
+        invoked to obtain the correct version of the requirement and activate
+        it.
+
+        `extras` is a list of the extras to be used with these requirements.
+        This is important because extra requirements may look like `my_req;
+        extra = "my_extra"`, which would otherwise be interpreted as a purely
+        optional requirement.  Instead, we want to be able to assert that these
+        requirements are truly required.
+        """
+
+        # set up the stack
+        requirements = list(requirements)[::-1]
+        # set of processed requirements
+        processed = set()
+        # key -> dist
+        best = {}
+        to_activate = []
+
+        req_extras = _ReqExtras()
+
+        # Mapping of requirement to set of distributions that required it;
+        # useful for reporting info about conflicts.
+        required_by = collections.defaultdict(set)
+
+        while requirements:
+            # process dependencies breadth-first
+            req = requirements.pop(0)
+            if req in processed:
+                # Ignore cyclic or redundant dependencies
+                continue
+
+            if not req_extras.markers_pass(req, extras):
+                continue
+
+            dist = self._resolve_dist(
+                req, best, replace_conflicting, env, installer, required_by, to_activate
+            )
+
+            # push the new requirements onto the stack
+            new_requirements = dist.requires(req.extras)[::-1]
+            requirements.extend(new_requirements)
+
+            # Register the new requirements needed by req
+            for new_requirement in new_requirements:
+                required_by[new_requirement].add(req.project_name)
+                req_extras[new_requirement] = req.extras
+
+            processed.add(req)
+
+        # return list of distros to activate
+        return to_activate
+
+    def _resolve_dist(
+        self, req, best, replace_conflicting, env, installer, required_by, to_activate
+    ) -> Distribution:
+        dist = best.get(req.key)
+        if dist is None:
+            # Find the best distribution and add it to the map
+            dist = self.by_key.get(req.key)
+            if dist is None or (dist not in req and replace_conflicting):
+                ws = self
+                if env is None:
+                    if dist is None:
+                        env = Environment(self.entries)
+                    else:
+                        # Use an empty environment and workingset to avoid
+                        # any further conflicts with the conflicting
+                        # distribution
+                        env = Environment([])
+                        ws = WorkingSet([])
+                dist = best[req.key] = env.best_match(
+                    req, ws, installer, replace_conflicting=replace_conflicting
+                )
+                if dist is None:
+                    requirers = required_by.get(req, None)
+                    raise DistributionNotFound(req, requirers)
+            to_activate.append(dist)
+        if dist not in req:
+            # Oops, the "best" so far conflicts with a dependency
+            dependent_req = required_by[req]
+            raise VersionConflict(dist, req).with_context(dependent_req)
+        return dist
+
+    @overload
+    def find_plugins(
+        self,
+        plugin_env: Environment,
+        full_env: Environment | None,
+        installer: _InstallerTypeT[_DistributionT],
+        fallback: bool = True,
+    ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
+    @overload
+    def find_plugins(
+        self,
+        plugin_env: Environment,
+        full_env: Environment | None = None,
+        *,
+        installer: _InstallerTypeT[_DistributionT],
+        fallback: bool = True,
+    ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
+    @overload
+    def find_plugins(
+        self,
+        plugin_env: Environment,
+        full_env: Environment | None = None,
+        installer: _InstallerType | None = None,
+        fallback: bool = True,
+    ) -> tuple[list[Distribution], dict[Distribution, Exception]]: ...
+    def find_plugins(
+        self,
+        plugin_env: Environment,
+        full_env: Environment | None = None,
+        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
+        fallback: bool = True,
+    ) -> tuple[
+        list[Distribution] | list[_DistributionT],
+        dict[Distribution, Exception],
+    ]:
+        """Find all activatable distributions in `plugin_env`
+
+        Example usage::
+
+            distributions, errors = working_set.find_plugins(
+                Environment(plugin_dirlist)
+            )
+            # add plugins+libs to sys.path
+            map(working_set.add, distributions)
+            # display errors
+            print('Could not load', errors)
+
+        The `plugin_env` should be an ``Environment`` instance that contains
+        only distributions that are in the project's "plugin directory" or
+        directories. The `full_env`, if supplied, should be an ``Environment``
+        contains all currently-available distributions.  If `full_env` is not
+        supplied, one is created automatically from the ``WorkingSet`` this
+        method is called on, which will typically mean that every directory on
+        ``sys.path`` will be scanned for distributions.
+
+        `installer` is a standard installer callback as used by the
+        ``resolve()`` method. The `fallback` flag indicates whether we should
+        attempt to resolve older versions of a plugin if the newest version
+        cannot be resolved.
+
+        This method returns a 2-tuple: (`distributions`, `error_info`), where
+        `distributions` is a list of the distributions found in `plugin_env`
+        that were loadable, along with any other distributions that are needed
+        to resolve their dependencies.  `error_info` is a dictionary mapping
+        unloadable plugin distributions to an exception instance describing the
+        error that occurred. Usually this will be a ``DistributionNotFound`` or
+        ``VersionConflict`` instance.
+        """
+
+        plugin_projects = list(plugin_env)
+        # scan project names in alphabetic order
+        plugin_projects.sort()
+
+        error_info: dict[Distribution, Exception] = {}
+        distributions: dict[Distribution, Exception | None] = {}
+
+        if full_env is None:
+            env = Environment(self.entries)
+            env += plugin_env
+        else:
+            env = full_env + plugin_env
+
+        shadow_set = self.__class__([])
+        # put all our entries in shadow_set
+        list(map(shadow_set.add, self))
+
+        for project_name in plugin_projects:
+            for dist in plugin_env[project_name]:
+                req = [dist.as_requirement()]
+
+                try:
+                    resolvees = shadow_set.resolve(req, env, installer)
+
+                except ResolutionError as v:
+                    # save error info
+                    error_info[dist] = v
+                    if fallback:
+                        # try the next older version of project
+                        continue
+                    else:
+                        # give up on this project, keep going
+                        break
+
+                else:
+                    list(map(shadow_set.add, resolvees))
+                    distributions.update(dict.fromkeys(resolvees))
+
+                    # success, no need to try any more versions of this project
+                    break
+
+        sorted_distributions = list(distributions)
+        sorted_distributions.sort()
+
+        return sorted_distributions, error_info
+
+    def require(self, *requirements: _NestedStr):
+        """Ensure that distributions matching `requirements` are activated
+
+        `requirements` must be a string or a (possibly-nested) sequence
+        thereof, specifying the distributions and versions required.  The
+        return value is a sequence of the distributions that needed to be
+        activated to fulfill the requirements; all relevant distributions are
+        included, even if they were already activated in this working set.
+        """
+        needed = self.resolve(parse_requirements(requirements))
+
+        for dist in needed:
+            self.add(dist)
+
+        return needed
+
+    def subscribe(
+        self, callback: Callable[[Distribution], object], existing: bool = True
+    ):
+        """Invoke `callback` for all distributions
+
+        If `existing=True` (default),
+        call on all existing ones, as well.
+        """
+        if callback in self.callbacks:
+            return
+        self.callbacks.append(callback)
+        if not existing:
+            return
+        for dist in self:
+            callback(dist)
+
+    def _added_new(self, dist):
+        for callback in self.callbacks:
+            callback(dist)
+
+    def __getstate__(self):
+        return (
+            self.entries[:],
+            self.entry_keys.copy(),
+            self.by_key.copy(),
+            self.normalized_to_canonical_keys.copy(),
+            self.callbacks[:],
+        )
+
+    def __setstate__(self, e_k_b_n_c):
+        entries, keys, by_key, normalized_to_canonical_keys, callbacks = e_k_b_n_c
+        self.entries = entries[:]
+        self.entry_keys = keys.copy()
+        self.by_key = by_key.copy()
+        self.normalized_to_canonical_keys = normalized_to_canonical_keys.copy()
+        self.callbacks = callbacks[:]
+
+
+class _ReqExtras(Dict["Requirement", Tuple[str, ...]]):
+    """
+    Map each requirement to the extras that demanded it.
+    """
+
+    def markers_pass(self, req: Requirement, extras: tuple[str, ...] | None = None):
+        """
+        Evaluate markers for req against each extra that
+        demanded it.
+
+        Return False if the req has a marker and fails
+        evaluation. Otherwise, return True.
+        """
+        extra_evals = (
+            req.marker.evaluate({'extra': extra})
+            for extra in self.get(req, ()) + (extras or (None,))
+        )
+        return not req.marker or any(extra_evals)
+
+
+class Environment:
+    """Searchable snapshot of distributions on a search path"""
+
+    def __init__(
+        self,
+        search_path: Iterable[str] | None = None,
+        platform: str | None = get_supported_platform(),
+        python: str | None = PY_MAJOR,
+    ):
+        """Snapshot distributions available on a search path
+
+        Any distributions found on `search_path` are added to the environment.
+        `search_path` should be a sequence of ``sys.path`` items.  If not
+        supplied, ``sys.path`` is used.
+
+        `platform` is an optional string specifying the name of the platform
+        that platform-specific distributions must be compatible with.  If
+        unspecified, it defaults to the current platform.  `python` is an
+        optional string naming the desired version of Python (e.g. ``'3.6'``);
+        it defaults to the current version.
+
+        You may explicitly set `platform` (and/or `python`) to ``None`` if you
+        wish to map *all* distributions, not just those compatible with the
+        running platform or Python version.
+        """
+        self._distmap = {}
+        self.platform = platform
+        self.python = python
+        self.scan(search_path)
+
+    def can_add(self, dist: Distribution):
+        """Is distribution `dist` acceptable for this environment?
+
+        The distribution must match the platform and python version
+        requirements specified when this environment was created, or False
+        is returned.
+        """
+        py_compat = (
+            self.python is None
+            or dist.py_version is None
+            or dist.py_version == self.python
+        )
+        return py_compat and compatible_platforms(dist.platform, self.platform)
+
+    def remove(self, dist: Distribution):
+        """Remove `dist` from the environment"""
+        self._distmap[dist.key].remove(dist)
+
+    def scan(self, search_path: Iterable[str] | None = None):
+        """Scan `search_path` for distributions usable in this environment
+
+        Any distributions found are added to the environment.
+        `search_path` should be a sequence of ``sys.path`` items.  If not
+        supplied, ``sys.path`` is used.  Only distributions conforming to
+        the platform/python version defined at initialization are added.
+        """
+        if search_path is None:
+            search_path = sys.path
+
+        for item in search_path:
+            for dist in find_distributions(item):
+                self.add(dist)
+
+    def __getitem__(self, project_name: str) -> list[Distribution]:
+        """Return a newest-to-oldest list of distributions for `project_name`
+
+        Uses case-insensitive `project_name` comparison, assuming all the
+        project's distributions use their project's name converted to all
+        lowercase as their key.
+
+        """
+        distribution_key = project_name.lower()
+        return self._distmap.get(distribution_key, [])
+
+    def add(self, dist: Distribution):
+        """Add `dist` if we ``can_add()`` it and it has not already been added"""
+        if self.can_add(dist) and dist.has_version():
+            dists = self._distmap.setdefault(dist.key, [])
+            if dist not in dists:
+                dists.append(dist)
+                dists.sort(key=operator.attrgetter('hashcmp'), reverse=True)
+
+    @overload
+    def best_match(
+        self,
+        req: Requirement,
+        working_set: WorkingSet,
+        installer: _InstallerTypeT[_DistributionT],
+        replace_conflicting: bool = False,
+    ) -> _DistributionT: ...
+    @overload
+    def best_match(
+        self,
+        req: Requirement,
+        working_set: WorkingSet,
+        installer: _InstallerType | None = None,
+        replace_conflicting: bool = False,
+    ) -> Distribution | None: ...
+    def best_match(
+        self,
+        req: Requirement,
+        working_set: WorkingSet,
+        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
+        replace_conflicting: bool = False,
+    ) -> Distribution | None:
+        """Find distribution best matching `req` and usable on `working_set`
+
+        This calls the ``find(req)`` method of the `working_set` to see if a
+        suitable distribution is already active.  (This may raise
+        ``VersionConflict`` if an unsuitable version of the project is already
+        active in the specified `working_set`.)  If a suitable distribution
+        isn't active, this method returns the newest distribution in the
+        environment that meets the ``Requirement`` in `req`.  If no suitable
+        distribution is found, and `installer` is supplied, then the result of
+        calling the environment's ``obtain(req, installer)`` method will be
+        returned.
+        """
+        try:
+            dist = working_set.find(req)
+        except VersionConflict:
+            if not replace_conflicting:
+                raise
+            dist = None
+        if dist is not None:
+            return dist
+        for dist in self[req.key]:
+            if dist in req:
+                return dist
+        # try to download/install
+        return self.obtain(req, installer)
+
+    @overload
+    def obtain(
+        self,
+        requirement: Requirement,
+        installer: _InstallerTypeT[_DistributionT],
+    ) -> _DistributionT: ...
+    @overload
+    def obtain(
+        self,
+        requirement: Requirement,
+        installer: Callable[[Requirement], None] | None = None,
+    ) -> None: ...
+    @overload
+    def obtain(
+        self,
+        requirement: Requirement,
+        installer: _InstallerType | None = None,
+    ) -> Distribution | None: ...
+    def obtain(
+        self,
+        requirement: Requirement,
+        installer: Callable[[Requirement], None]
+        | _InstallerType
+        | None
+        | _InstallerTypeT[_DistributionT] = None,
+    ) -> Distribution | None:
+        """Obtain a distribution matching `requirement` (e.g. via download)
+
+        Obtain a distro that matches requirement (e.g. via download).  In the
+        base ``Environment`` class, this routine just returns
+        ``installer(requirement)``, unless `installer` is None, in which case
+        None is returned instead.  This method is a hook that allows subclasses
+        to attempt other ways of obtaining a distribution before falling back
+        to the `installer` argument."""
+        return installer(requirement) if installer else None
+
+    def __iter__(self) -> Iterator[str]:
+        """Yield the unique project names of the available distributions"""
+        for key in self._distmap.keys():
+            if self[key]:
+                yield key
+
+    def __iadd__(self, other: Distribution | Environment):
+        """In-place addition of a distribution or environment"""
+        if isinstance(other, Distribution):
+            self.add(other)
+        elif isinstance(other, Environment):
+            for project in other:
+                for dist in other[project]:
+                    self.add(dist)
+        else:
+            raise TypeError("Can't add %r to environment" % (other,))
+        return self
+
+    def __add__(self, other: Distribution | Environment):
+        """Add an environment or distribution to an environment"""
+        new = self.__class__([], platform=None, python=None)
+        for env in self, other:
+            new += env
+        return new
+
+
+# XXX backward compatibility
+AvailableDistributions = Environment
+
+
+class ExtractionError(RuntimeError):
+    """An error occurred extracting a resource
+
+    The following attributes are available from instances of this exception:
+
+    manager
+        The resource manager that raised this exception
+
+    cache_path
+        The base directory for resource extraction
+
+    original_error
+        The exception instance that caused extraction to fail
+    """
+
+    manager: ResourceManager
+    cache_path: str
+    original_error: BaseException | None
+
+
+class ResourceManager:
+    """Manage resource extraction and packages"""
+
+    extraction_path: str | None = None
+
+    def __init__(self):
+        self.cached_files = {}
+
+    def resource_exists(self, package_or_requirement: _PkgReqType, resource_name: str):
+        """Does the named resource exist?"""
+        return get_provider(package_or_requirement).has_resource(resource_name)
+
+    def resource_isdir(self, package_or_requirement: _PkgReqType, resource_name: str):
+        """Is the named resource an existing directory?"""
+        return get_provider(package_or_requirement).resource_isdir(resource_name)
+
+    def resource_filename(
+        self, package_or_requirement: _PkgReqType, resource_name: str
+    ):
+        """Return a true filesystem path for specified resource"""
+        return get_provider(package_or_requirement).get_resource_filename(
+            self, resource_name
+        )
+
+    def resource_stream(self, package_or_requirement: _PkgReqType, resource_name: str):
+        """Return a readable file-like object for specified resource"""
+        return get_provider(package_or_requirement).get_resource_stream(
+            self, resource_name
+        )
+
+    def resource_string(
+        self, package_or_requirement: _PkgReqType, resource_name: str
+    ) -> bytes:
+        """Return specified resource as :obj:`bytes`"""
+        return get_provider(package_or_requirement).get_resource_string(
+            self, resource_name
+        )
+
+    def resource_listdir(self, package_or_requirement: _PkgReqType, resource_name: str):
+        """List the contents of the named resource directory"""
+        return get_provider(package_or_requirement).resource_listdir(resource_name)
+
+    def extraction_error(self) -> NoReturn:
+        """Give an error message for problems extracting file(s)"""
+
+        old_exc = sys.exc_info()[1]
+        cache_path = self.extraction_path or get_default_cache()
+
+        tmpl = textwrap.dedent(
+            """
+            Can't extract file(s) to egg cache
+
+            The following error occurred while trying to extract file(s)
+            to the Python egg cache:
+
+              {old_exc}
+
+            The Python egg cache directory is currently set to:
+
+              {cache_path}
+
+            Perhaps your account does not have write access to this directory?
+            You can change the cache directory by setting the PYTHON_EGG_CACHE
+            environment variable to point to an accessible directory.
+            """
+        ).lstrip()
+        err = ExtractionError(tmpl.format(**locals()))
+        err.manager = self
+        err.cache_path = cache_path
+        err.original_error = old_exc
+        raise err
+
+    def get_cache_path(self, archive_name: str, names: Iterable[StrPath] = ()):
+        """Return absolute location in cache for `archive_name` and `names`
+
+        The parent directory of the resulting path will be created if it does
+        not already exist.  `archive_name` should be the base filename of the
+        enclosing egg (which may not be the name of the enclosing zipfile!),
+        including its ".egg" extension.  `names`, if provided, should be a
+        sequence of path name parts "under" the egg's extraction location.
+
+        This method should only be called by resource providers that need to
+        obtain an extraction location, and only for names they intend to
+        extract, as it tracks the generated names for possible cleanup later.
+        """
+        extract_path = self.extraction_path or get_default_cache()
+        target_path = os.path.join(extract_path, archive_name + '-tmp', *names)
+        try:
+            _bypass_ensure_directory(target_path)
+        except Exception:
+            self.extraction_error()
+
+        self._warn_unsafe_extraction_path(extract_path)
+
+        self.cached_files[target_path] = True
+        return target_path
+
+    @staticmethod
+    def _warn_unsafe_extraction_path(path):
+        """
+        If the default extraction path is overridden and set to an insecure
+        location, such as /tmp, it opens up an opportunity for an attacker to
+        replace an extracted file with an unauthorized payload. Warn the user
+        if a known insecure location is used.
+
+        See Distribute #375 for more details.
+        """
+        if os.name == 'nt' and not path.startswith(os.environ['windir']):
+            # On Windows, permissions are generally restrictive by default
+            #  and temp directories are not writable by other users, so
+            #  bypass the warning.
+            return
+        mode = os.stat(path).st_mode
+        if mode & stat.S_IWOTH or mode & stat.S_IWGRP:
+            msg = (
+                "Extraction path is writable by group/others "
+                "and vulnerable to attack when "
+                "used with get_resource_filename ({path}). "
+                "Consider a more secure "
+                "location (set with .set_extraction_path or the "
+                "PYTHON_EGG_CACHE environment variable)."
+            ).format(**locals())
+            warnings.warn(msg, UserWarning)
+
+    def postprocess(self, tempname: StrOrBytesPath, filename: StrOrBytesPath):
+        """Perform any platform-specific postprocessing of `tempname`
+
+        This is where Mac header rewrites should be done; other platforms don't
+        have anything special they should do.
+
+        Resource providers should call this method ONLY after successfully
+        extracting a compressed resource.  They must NOT call it on resources
+        that are already in the filesystem.
+
+        `tempname` is the current (temporary) name of the file, and `filename`
+        is the name it will be renamed to by the caller after this routine
+        returns.
+        """
+
+        if os.name == 'posix':
+            # Make the resource executable
+            mode = ((os.stat(tempname).st_mode) | 0o555) & 0o7777
+            os.chmod(tempname, mode)
+
+    def set_extraction_path(self, path: str):
+        """Set the base path where resources will be extracted to, if needed.
+
+        If you do not call this routine before any extractions take place, the
+        path defaults to the return value of ``get_default_cache()``.  (Which
+        is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
+        platform-specific fallbacks.  See that routine's documentation for more
+        details.)
+
+        Resources are extracted to subdirectories of this path based upon
+        information given by the ``IResourceProvider``.  You may set this to a
+        temporary directory, but then you must call ``cleanup_resources()`` to
+        delete the extracted files when done.  There is no guarantee that
+        ``cleanup_resources()`` will be able to remove all extracted files.
+
+        (Note: you may not change the extraction path for a given resource
+        manager once resources have been extracted, unless you first call
+        ``cleanup_resources()``.)
+        """
+        if self.cached_files:
+            raise ValueError("Can't change extraction path, files already extracted")
+
+        self.extraction_path = path
+
+    def cleanup_resources(self, force: bool = False) -> list[str]:
+        """
+        Delete all extracted resource files and directories, returning a list
+        of the file and directory names that could not be successfully removed.
+        This function does not have any concurrency protection, so it should
+        generally only be called when the extraction path is a temporary
+        directory exclusive to a single process.  This method is not
+        automatically called; you must call it explicitly or register it as an
+        ``atexit`` function if you wish to ensure cleanup of a temporary
+        directory used for extractions.
+        """
+        # XXX
+        return []
+
+
+def get_default_cache() -> str:
+    """
+    Return the ``PYTHON_EGG_CACHE`` environment variable
+    or a platform-relevant user cache dir for an app
+    named "Python-Eggs".
+    """
+    return os.environ.get('PYTHON_EGG_CACHE') or _user_cache_dir(appname='Python-Eggs')
+
+
+def safe_name(name: str):
+    """Convert an arbitrary string to a standard distribution name
+
+    Any runs of non-alphanumeric/. characters are replaced with a single '-'.
+    """
+    return re.sub('[^A-Za-z0-9.]+', '-', name)
+
+
+def safe_version(version: str):
+    """
+    Convert an arbitrary string to a standard version string
+    """
+    try:
+        # normalize the version
+        return str(_packaging_version.Version(version))
+    except _packaging_version.InvalidVersion:
+        version = version.replace(' ', '.')
+        return re.sub('[^A-Za-z0-9.]+', '-', version)
+
+
+def _forgiving_version(version):
+    """Fallback when ``safe_version`` is not safe enough
+    >>> parse_version(_forgiving_version('0.23ubuntu1'))
+    
+    >>> parse_version(_forgiving_version('0.23-'))
+    
+    >>> parse_version(_forgiving_version('0.-_'))
+    
+    >>> parse_version(_forgiving_version('42.+?1'))
+    
+    >>> parse_version(_forgiving_version('hello world'))
+    
+    """
+    version = version.replace(' ', '.')
+    match = _PEP440_FALLBACK.search(version)
+    if match:
+        safe = match["safe"]
+        rest = version[len(safe) :]
+    else:
+        safe = "0"
+        rest = version
+    local = f"sanitized.{_safe_segment(rest)}".strip(".")
+    return f"{safe}.dev0+{local}"
+
+
+def _safe_segment(segment):
+    """Convert an arbitrary string into a safe segment"""
+    segment = re.sub('[^A-Za-z0-9.]+', '-', segment)
+    segment = re.sub('-[^A-Za-z0-9]+', '-', segment)
+    return re.sub(r'\.[^A-Za-z0-9]+', '.', segment).strip(".-")
+
+
+def safe_extra(extra: str):
+    """Convert an arbitrary string to a standard 'extra' name
+
+    Any runs of non-alphanumeric characters are replaced with a single '_',
+    and the result is always lowercased.
+    """
+    return re.sub('[^A-Za-z0-9.-]+', '_', extra).lower()
+
+
+def to_filename(name: str):
+    """Convert a project or version name to its filename-escaped form
+
+    Any '-' characters are currently replaced with '_'.
+    """
+    return name.replace('-', '_')
+
+
+def invalid_marker(text: str):
+    """
+    Validate text as a PEP 508 environment marker; return an exception
+    if invalid or False otherwise.
+    """
+    try:
+        evaluate_marker(text)
+    except SyntaxError as e:
+        e.filename = None
+        e.lineno = None
+        return e
+    return False
+
+
+def evaluate_marker(text: str, extra: str | None = None) -> bool:
+    """
+    Evaluate a PEP 508 environment marker.
+    Return a boolean indicating the marker result in this environment.
+    Raise SyntaxError if marker is invalid.
+
+    This implementation uses the 'pyparsing' module.
+    """
+    try:
+        marker = _packaging_markers.Marker(text)
+        return marker.evaluate()
+    except _packaging_markers.InvalidMarker as e:
+        raise SyntaxError(e) from e
+
+
+class NullProvider:
+    """Try to implement resources and metadata for arbitrary PEP 302 loaders"""
+
+    egg_name: str | None = None
+    egg_info: str | None = None
+    loader: _LoaderProtocol | None = None
+
+    def __init__(self, module: _ModuleLike):
+        self.loader = getattr(module, '__loader__', None)
+        self.module_path = os.path.dirname(getattr(module, '__file__', ''))
+
+    def get_resource_filename(self, manager: ResourceManager, resource_name: str):
+        return self._fn(self.module_path, resource_name)
+
+    def get_resource_stream(self, manager: ResourceManager, resource_name: str):
+        return io.BytesIO(self.get_resource_string(manager, resource_name))
+
+    def get_resource_string(
+        self, manager: ResourceManager, resource_name: str
+    ) -> bytes:
+        return self._get(self._fn(self.module_path, resource_name))
+
+    def has_resource(self, resource_name: str):
+        return self._has(self._fn(self.module_path, resource_name))
+
+    def _get_metadata_path(self, name):
+        return self._fn(self.egg_info, name)
+
+    def has_metadata(self, name: str) -> bool:
+        if not self.egg_info:
+            return False
+
+        path = self._get_metadata_path(name)
+        return self._has(path)
+
+    def get_metadata(self, name: str):
+        if not self.egg_info:
+            return ""
+        path = self._get_metadata_path(name)
+        value = self._get(path)
+        try:
+            return value.decode('utf-8')
+        except UnicodeDecodeError as exc:
+            # Include the path in the error message to simplify
+            # troubleshooting, and without changing the exception type.
+            exc.reason += ' in {} file at path: {}'.format(name, path)
+            raise
+
+    def get_metadata_lines(self, name: str) -> Iterator[str]:
+        return yield_lines(self.get_metadata(name))
+
+    def resource_isdir(self, resource_name: str):
+        return self._isdir(self._fn(self.module_path, resource_name))
+
+    def metadata_isdir(self, name: str) -> bool:
+        return bool(self.egg_info and self._isdir(self._fn(self.egg_info, name)))
+
+    def resource_listdir(self, resource_name: str):
+        return self._listdir(self._fn(self.module_path, resource_name))
+
+    def metadata_listdir(self, name: str) -> list[str]:
+        if self.egg_info:
+            return self._listdir(self._fn(self.egg_info, name))
+        return []
+
+    def run_script(self, script_name: str, namespace: dict[str, Any]):
+        script = 'scripts/' + script_name
+        if not self.has_metadata(script):
+            raise ResolutionError(
+                "Script {script!r} not found in metadata at {self.egg_info!r}".format(
+                    **locals()
+                ),
+            )
+
+        script_text = self.get_metadata(script).replace('\r\n', '\n')
+        script_text = script_text.replace('\r', '\n')
+        script_filename = self._fn(self.egg_info, script)
+        namespace['__file__'] = script_filename
+        if os.path.exists(script_filename):
+            source = _read_utf8_with_fallback(script_filename)
+            code = compile(source, script_filename, 'exec')
+            exec(code, namespace, namespace)
+        else:
+            from linecache import cache
+
+            cache[script_filename] = (
+                len(script_text),
+                0,
+                script_text.split('\n'),
+                script_filename,
+            )
+            script_code = compile(script_text, script_filename, 'exec')
+            exec(script_code, namespace, namespace)
+
+    def _has(self, path) -> bool:
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _isdir(self, path) -> bool:
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _listdir(self, path) -> list[str]:
+        raise NotImplementedError(
+            "Can't perform this operation for unregistered loader type"
+        )
+
+    def _fn(self, base: str | None, resource_name: str):
+        if base is None:
+            raise TypeError(
+                "`base` parameter in `_fn` is `None`. Either override this method or check the parameter first."
+            )
+        self._validate_resource_path(resource_name)
+        if resource_name:
+            return os.path.join(base, *resource_name.split('/'))
+        return base
+
+    @staticmethod
+    def _validate_resource_path(path):
+        """
+        Validate the resource paths according to the docs.
+        https://setuptools.pypa.io/en/latest/pkg_resources.html#basic-resource-access
+
+        >>> warned = getfixture('recwarn')
+        >>> warnings.simplefilter('always')
+        >>> vrp = NullProvider._validate_resource_path
+        >>> vrp('foo/bar.txt')
+        >>> bool(warned)
+        False
+        >>> vrp('../foo/bar.txt')
+        >>> bool(warned)
+        True
+        >>> warned.clear()
+        >>> vrp('/foo/bar.txt')
+        >>> bool(warned)
+        True
+        >>> vrp('foo/../../bar.txt')
+        >>> bool(warned)
+        True
+        >>> warned.clear()
+        >>> vrp('foo/f../bar.txt')
+        >>> bool(warned)
+        False
+
+        Windows path separators are straight-up disallowed.
+        >>> vrp(r'\\foo/bar.txt')
+        Traceback (most recent call last):
+        ...
+        ValueError: Use of .. or absolute path in a resource path \
+is not allowed.
+
+        >>> vrp(r'C:\\foo/bar.txt')
+        Traceback (most recent call last):
+        ...
+        ValueError: Use of .. or absolute path in a resource path \
+is not allowed.
+
+        Blank values are allowed
+
+        >>> vrp('')
+        >>> bool(warned)
+        False
+
+        Non-string values are not.
+
+        >>> vrp(None)
+        Traceback (most recent call last):
+        ...
+        AttributeError: ...
+        """
+        invalid = (
+            os.path.pardir in path.split(posixpath.sep)
+            or posixpath.isabs(path)
+            or ntpath.isabs(path)
+            or path.startswith("\\")
+        )
+        if not invalid:
+            return
+
+        msg = "Use of .. or absolute path in a resource path is not allowed."
+
+        # Aggressively disallow Windows absolute paths
+        if (path.startswith("\\") or ntpath.isabs(path)) and not posixpath.isabs(path):
+            raise ValueError(msg)
+
+        # for compatibility, warn; in future
+        # raise ValueError(msg)
+        issue_warning(
+            msg[:-1] + " and will raise exceptions in a future release.",
+            DeprecationWarning,
+        )
+
+    def _get(self, path) -> bytes:
+        if hasattr(self.loader, 'get_data') and self.loader:
+            # Already checked get_data exists
+            return self.loader.get_data(path)  # type: ignore[attr-defined]
+        raise NotImplementedError(
+            "Can't perform this operation for loaders without 'get_data()'"
+        )
+
+
+register_loader_type(object, NullProvider)
+
+
+def _parents(path):
+    """
+    yield all parents of path including path
+    """
+    last = None
+    while path != last:
+        yield path
+        last = path
+        path, _ = os.path.split(path)
+
+
+class EggProvider(NullProvider):
+    """Provider based on a virtual filesystem"""
+
+    def __init__(self, module: _ModuleLike):
+        super().__init__(module)
+        self._setup_prefix()
+
+    def _setup_prefix(self):
+        # Assume that metadata may be nested inside a "basket"
+        # of multiple eggs and use module_path instead of .archive.
+        eggs = filter(_is_egg_path, _parents(self.module_path))
+        egg = next(eggs, None)
+        egg and self._set_egg(egg)
+
+    def _set_egg(self, path: str):
+        self.egg_name = os.path.basename(path)
+        self.egg_info = os.path.join(path, 'EGG-INFO')
+        self.egg_root = path
+
+
+class DefaultProvider(EggProvider):
+    """Provides access to package resources in the filesystem"""
+
+    def _has(self, path) -> bool:
+        return os.path.exists(path)
+
+    def _isdir(self, path) -> bool:
+        return os.path.isdir(path)
+
+    def _listdir(self, path):
+        return os.listdir(path)
+
+    def get_resource_stream(self, manager: object, resource_name: str):
+        return open(self._fn(self.module_path, resource_name), 'rb')
+
+    def _get(self, path) -> bytes:
+        with open(path, 'rb') as stream:
+            return stream.read()
+
+    @classmethod
+    def _register(cls):
+        loader_names = (
+            'SourceFileLoader',
+            'SourcelessFileLoader',
+        )
+        for name in loader_names:
+            loader_cls = getattr(importlib.machinery, name, type(None))
+            register_loader_type(loader_cls, cls)
+
+
+DefaultProvider._register()
+
+
+class EmptyProvider(NullProvider):
+    """Provider that returns nothing for all requests"""
+
+    # A special case, we don't want all Providers inheriting from NullProvider to have a potentially None module_path
+    module_path: str | None = None  # type: ignore[assignment]
+
+    _isdir = _has = lambda self, path: False
+
+    def _get(self, path) -> bytes:
+        return b''
+
+    def _listdir(self, path):
+        return []
+
+    def __init__(self):
+        pass
+
+
+empty_provider = EmptyProvider()
+
+
+class ZipManifests(Dict[str, "MemoizedZipManifests.manifest_mod"]):
+    """
+    zip manifest builder
+    """
+
+    # `path` could be `StrPath | IO[bytes]` but that violates the LSP for `MemoizedZipManifests.load`
+    @classmethod
+    def build(cls, path: str):
+        """
+        Build a dictionary similar to the zipimport directory
+        caches, except instead of tuples, store ZipInfo objects.
+
+        Use a platform-specific path separator (os.sep) for the path keys
+        for compatibility with pypy on Windows.
+        """
+        with zipfile.ZipFile(path) as zfile:
+            items = (
+                (
+                    name.replace('/', os.sep),
+                    zfile.getinfo(name),
+                )
+                for name in zfile.namelist()
+            )
+            return dict(items)
+
+    load = build
+
+
+class MemoizedZipManifests(ZipManifests):
+    """
+    Memoized zipfile manifests.
+    """
+
+    class manifest_mod(NamedTuple):
+        manifest: dict[str, zipfile.ZipInfo]
+        mtime: float
+
+    def load(self, path: str) -> dict[str, zipfile.ZipInfo]:  # type: ignore[override] # ZipManifests.load is a classmethod
+        """
+        Load a manifest at path or return a suitable manifest already loaded.
+        """
+        path = os.path.normpath(path)
+        mtime = os.stat(path).st_mtime
+
+        if path not in self or self[path].mtime != mtime:
+            manifest = self.build(path)
+            self[path] = self.manifest_mod(manifest, mtime)
+
+        return self[path].manifest
+
+
+class ZipProvider(EggProvider):
+    """Resource support for zips and eggs"""
+
+    eagers: list[str] | None = None
+    _zip_manifests = MemoizedZipManifests()
+    # ZipProvider's loader should always be a zipimporter or equivalent
+    loader: zipimport.zipimporter
+
+    def __init__(self, module: _ZipLoaderModule):
+        super().__init__(module)
+        self.zip_pre = self.loader.archive + os.sep
+
+    def _zipinfo_name(self, fspath):
+        # Convert a virtual filename (full path to file) into a zipfile subpath
+        # usable with the zipimport directory cache for our target archive
+        fspath = fspath.rstrip(os.sep)
+        if fspath == self.loader.archive:
+            return ''
+        if fspath.startswith(self.zip_pre):
+            return fspath[len(self.zip_pre) :]
+        raise AssertionError("%s is not a subpath of %s" % (fspath, self.zip_pre))
+
+    def _parts(self, zip_path):
+        # Convert a zipfile subpath into an egg-relative path part list.
+        # pseudo-fs path
+        fspath = self.zip_pre + zip_path
+        if fspath.startswith(self.egg_root + os.sep):
+            return fspath[len(self.egg_root) + 1 :].split(os.sep)
+        raise AssertionError("%s is not a subpath of %s" % (fspath, self.egg_root))
+
+    @property
+    def zipinfo(self):
+        return self._zip_manifests.load(self.loader.archive)
+
+    def get_resource_filename(self, manager: ResourceManager, resource_name: str):
+        if not self.egg_name:
+            raise NotImplementedError(
+                "resource_filename() only supported for .egg, not .zip"
+            )
+        # no need to lock for extraction, since we use temp names
+        zip_path = self._resource_to_zip(resource_name)
+        eagers = self._get_eager_resources()
+        if '/'.join(self._parts(zip_path)) in eagers:
+            for name in eagers:
+                self._extract_resource(manager, self._eager_to_zip(name))
+        return self._extract_resource(manager, zip_path)
+
+    @staticmethod
+    def _get_date_and_size(zip_stat):
+        size = zip_stat.file_size
+        # ymdhms+wday, yday, dst
+        date_time = zip_stat.date_time + (0, 0, -1)
+        # 1980 offset already done
+        timestamp = time.mktime(date_time)
+        return timestamp, size
+
+    # FIXME: 'ZipProvider._extract_resource' is too complex (12)
+    def _extract_resource(self, manager: ResourceManager, zip_path) -> str:  # noqa: C901
+        if zip_path in self._index():
+            for name in self._index()[zip_path]:
+                last = self._extract_resource(manager, os.path.join(zip_path, name))
+            # return the extracted directory name
+            return os.path.dirname(last)
+
+        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
+
+        if not WRITE_SUPPORT:
+            raise OSError(
+                '"os.rename" and "os.unlink" are not supported on this platform'
+            )
+        try:
+            if not self.egg_name:
+                raise OSError(
+                    '"egg_name" is empty. This likely means no egg could be found from the "module_path".'
+                )
+            real_path = manager.get_cache_path(self.egg_name, self._parts(zip_path))
+
+            if self._is_current(real_path, zip_path):
+                return real_path
+
+            outf, tmpnam = _mkstemp(
+                ".$extract",
+                dir=os.path.dirname(real_path),
+            )
+            os.write(outf, self.loader.get_data(zip_path))
+            os.close(outf)
+            utime(tmpnam, (timestamp, timestamp))
+            manager.postprocess(tmpnam, real_path)
+
+            try:
+                rename(tmpnam, real_path)
+
+            except OSError:
+                if os.path.isfile(real_path):
+                    if self._is_current(real_path, zip_path):
+                        # the file became current since it was checked above,
+                        #  so proceed.
+                        return real_path
+                    # Windows, del old file and retry
+                    elif os.name == 'nt':
+                        unlink(real_path)
+                        rename(tmpnam, real_path)
+                        return real_path
+                raise
+
+        except OSError:
+            # report a user-friendly error
+            manager.extraction_error()
+
+        return real_path
+
+    def _is_current(self, file_path, zip_path):
+        """
+        Return True if the file_path is current for this zip_path
+        """
+        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
+        if not os.path.isfile(file_path):
+            return False
+        stat = os.stat(file_path)
+        if stat.st_size != size or stat.st_mtime != timestamp:
+            return False
+        # check that the contents match
+        zip_contents = self.loader.get_data(zip_path)
+        with open(file_path, 'rb') as f:
+            file_contents = f.read()
+        return zip_contents == file_contents
+
+    def _get_eager_resources(self):
+        if self.eagers is None:
+            eagers = []
+            for name in ('native_libs.txt', 'eager_resources.txt'):
+                if self.has_metadata(name):
+                    eagers.extend(self.get_metadata_lines(name))
+            self.eagers = eagers
+        return self.eagers
+
+    def _index(self):
+        try:
+            return self._dirindex
+        except AttributeError:
+            ind = {}
+            for path in self.zipinfo:
+                parts = path.split(os.sep)
+                while parts:
+                    parent = os.sep.join(parts[:-1])
+                    if parent in ind:
+                        ind[parent].append(parts[-1])
+                        break
+                    else:
+                        ind[parent] = [parts.pop()]
+            self._dirindex = ind
+            return ind
+
+    def _has(self, fspath) -> bool:
+        zip_path = self._zipinfo_name(fspath)
+        return zip_path in self.zipinfo or zip_path in self._index()
+
+    def _isdir(self, fspath) -> bool:
+        return self._zipinfo_name(fspath) in self._index()
+
+    def _listdir(self, fspath):
+        return list(self._index().get(self._zipinfo_name(fspath), ()))
+
+    def _eager_to_zip(self, resource_name: str):
+        return self._zipinfo_name(self._fn(self.egg_root, resource_name))
+
+    def _resource_to_zip(self, resource_name: str):
+        return self._zipinfo_name(self._fn(self.module_path, resource_name))
+
+
+register_loader_type(zipimport.zipimporter, ZipProvider)
+
+
+class FileMetadata(EmptyProvider):
+    """Metadata handler for standalone PKG-INFO files
+
+    Usage::
+
+        metadata = FileMetadata("/path/to/PKG-INFO")
+
+    This provider rejects all data and metadata requests except for PKG-INFO,
+    which is treated as existing, and will be the contents of the file at
+    the provided location.
+    """
+
+    def __init__(self, path: StrPath):
+        self.path = path
+
+    def _get_metadata_path(self, name):
+        return self.path
+
+    def has_metadata(self, name: str) -> bool:
+        return name == 'PKG-INFO' and os.path.isfile(self.path)
+
+    def get_metadata(self, name: str):
+        if name != 'PKG-INFO':
+            raise KeyError("No metadata except PKG-INFO is available")
+
+        with open(self.path, encoding='utf-8', errors="replace") as f:
+            metadata = f.read()
+        self._warn_on_replacement(metadata)
+        return metadata
+
+    def _warn_on_replacement(self, metadata):
+        replacement_char = '�'
+        if replacement_char in metadata:
+            tmpl = "{self.path} could not be properly decoded in UTF-8"
+            msg = tmpl.format(**locals())
+            warnings.warn(msg)
+
+    def get_metadata_lines(self, name: str) -> Iterator[str]:
+        return yield_lines(self.get_metadata(name))
+
+
+class PathMetadata(DefaultProvider):
+    """Metadata provider for egg directories
+
+    Usage::
+
+        # Development eggs:
+
+        egg_info = "/path/to/PackageName.egg-info"
+        base_dir = os.path.dirname(egg_info)
+        metadata = PathMetadata(base_dir, egg_info)
+        dist_name = os.path.splitext(os.path.basename(egg_info))[0]
+        dist = Distribution(basedir, project_name=dist_name, metadata=metadata)
+
+        # Unpacked egg directories:
+
+        egg_path = "/path/to/PackageName-ver-pyver-etc.egg"
+        metadata = PathMetadata(egg_path, os.path.join(egg_path,'EGG-INFO'))
+        dist = Distribution.from_filename(egg_path, metadata=metadata)
+    """
+
+    def __init__(self, path: str, egg_info: str):
+        self.module_path = path
+        self.egg_info = egg_info
+
+
+class EggMetadata(ZipProvider):
+    """Metadata provider for .egg files"""
+
+    def __init__(self, importer: zipimport.zipimporter):
+        """Create a metadata provider from a zipimporter"""
+
+        self.zip_pre = importer.archive + os.sep
+        self.loader = importer
+        if importer.prefix:
+            self.module_path = os.path.join(importer.archive, importer.prefix)
+        else:
+            self.module_path = importer.archive
+        self._setup_prefix()
+
+
+_distribution_finders: dict[type, _DistFinderType[Any]] = _declare_state(
+    'dict', '_distribution_finders', {}
+)
+
+
+def register_finder(importer_type: type[_T], distribution_finder: _DistFinderType[_T]):
+    """Register `distribution_finder` to find distributions in sys.path items
+
+    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
+    handler), and `distribution_finder` is a callable that, passed a path
+    item and the importer instance, yields ``Distribution`` instances found on
+    that path item.  See ``pkg_resources.find_on_path`` for an example."""
+    _distribution_finders[importer_type] = distribution_finder
+
+
+def find_distributions(path_item: str, only: bool = False):
+    """Yield distributions accessible via `path_item`"""
+    importer = get_importer(path_item)
+    finder = _find_adapter(_distribution_finders, importer)
+    return finder(importer, path_item, only)
+
+
+def find_eggs_in_zip(
+    importer: zipimport.zipimporter, path_item: str, only: bool = False
+) -> Iterator[Distribution]:
+    """
+    Find eggs in zip files; possibly multiple nested eggs.
+    """
+    if importer.archive.endswith('.whl'):
+        # wheels are not supported with this finder
+        # they don't have PKG-INFO metadata, and won't ever contain eggs
+        return
+    metadata = EggMetadata(importer)
+    if metadata.has_metadata('PKG-INFO'):
+        yield Distribution.from_filename(path_item, metadata=metadata)
+    if only:
+        # don't yield nested distros
+        return
+    for subitem in metadata.resource_listdir(''):
+        if _is_egg_path(subitem):
+            subpath = os.path.join(path_item, subitem)
+            dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath)
+            yield from dists
+        elif subitem.lower().endswith(('.dist-info', '.egg-info')):
+            subpath = os.path.join(path_item, subitem)
+            submeta = EggMetadata(zipimport.zipimporter(subpath))
+            submeta.egg_info = subpath
+            yield Distribution.from_location(path_item, subitem, submeta)
+
+
+register_finder(zipimport.zipimporter, find_eggs_in_zip)
+
+
+def find_nothing(
+    importer: object | None, path_item: str | None, only: bool | None = False
+):
+    return ()
+
+
+register_finder(object, find_nothing)
+
+
+def find_on_path(importer: object | None, path_item, only=False):
+    """Yield distributions accessible on a sys.path directory"""
+    path_item = _normalize_cached(path_item)
+
+    if _is_unpacked_egg(path_item):
+        yield Distribution.from_filename(
+            path_item,
+            metadata=PathMetadata(path_item, os.path.join(path_item, 'EGG-INFO')),
+        )
+        return
+
+    entries = (os.path.join(path_item, child) for child in safe_listdir(path_item))
+
+    # scan for .egg and .egg-info in directory
+    for entry in sorted(entries):
+        fullpath = os.path.join(path_item, entry)
+        factory = dist_factory(path_item, entry, only)
+        yield from factory(fullpath)
+
+
+def dist_factory(path_item, entry, only):
+    """Return a dist_factory for the given entry."""
+    lower = entry.lower()
+    is_egg_info = lower.endswith('.egg-info')
+    is_dist_info = lower.endswith('.dist-info') and os.path.isdir(
+        os.path.join(path_item, entry)
+    )
+    is_meta = is_egg_info or is_dist_info
+    return (
+        distributions_from_metadata
+        if is_meta
+        else find_distributions
+        if not only and _is_egg_path(entry)
+        else resolve_egg_link
+        if not only and lower.endswith('.egg-link')
+        else NoDists()
+    )
+
+
+class NoDists:
+    """
+    >>> bool(NoDists())
+    False
+
+    >>> list(NoDists()('anything'))
+    []
+    """
+
+    def __bool__(self):
+        return False
+
+    def __call__(self, fullpath):
+        return iter(())
+
+
+def safe_listdir(path: StrOrBytesPath):
+    """
+    Attempt to list contents of path, but suppress some exceptions.
+    """
+    try:
+        return os.listdir(path)
+    except (PermissionError, NotADirectoryError):
+        pass
+    except OSError as e:
+        # Ignore the directory if does not exist, not a directory or
+        # permission denied
+        if e.errno not in (errno.ENOTDIR, errno.EACCES, errno.ENOENT):
+            raise
+    return ()
+
+
+def distributions_from_metadata(path: str):
+    root = os.path.dirname(path)
+    if os.path.isdir(path):
+        if len(os.listdir(path)) == 0:
+            # empty metadata dir; skip
+            return
+        metadata: _MetadataType = PathMetadata(root, path)
+    else:
+        metadata = FileMetadata(path)
+    entry = os.path.basename(path)
+    yield Distribution.from_location(
+        root,
+        entry,
+        metadata,
+        precedence=DEVELOP_DIST,
+    )
+
+
+def non_empty_lines(path):
+    """
+    Yield non-empty lines from file at path
+    """
+    for line in _read_utf8_with_fallback(path).splitlines():
+        line = line.strip()
+        if line:
+            yield line
+
+
+def resolve_egg_link(path):
+    """
+    Given a path to an .egg-link, resolve distributions
+    present in the referenced path.
+    """
+    referenced_paths = non_empty_lines(path)
+    resolved_paths = (
+        os.path.join(os.path.dirname(path), ref) for ref in referenced_paths
+    )
+    dist_groups = map(find_distributions, resolved_paths)
+    return next(dist_groups, ())
+
+
+if hasattr(pkgutil, 'ImpImporter'):
+    register_finder(pkgutil.ImpImporter, find_on_path)
+
+register_finder(importlib.machinery.FileFinder, find_on_path)
+
+_namespace_handlers: dict[type, _NSHandlerType[Any]] = _declare_state(
+    'dict', '_namespace_handlers', {}
+)
+_namespace_packages: dict[str | None, list[str]] = _declare_state(
+    'dict', '_namespace_packages', {}
+)
+
+
+def register_namespace_handler(
+    importer_type: type[_T], namespace_handler: _NSHandlerType[_T]
+):
+    """Register `namespace_handler` to declare namespace packages
+
+    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
+    handler), and `namespace_handler` is a callable like this::
+
+        def namespace_handler(importer, path_entry, moduleName, module):
+            # return a path_entry to use for child packages
+
+    Namespace handlers are only called if the importer object has already
+    agreed that it can handle the relevant path item, and they should only
+    return a subpath if the module __path__ does not already contain an
+    equivalent subpath.  For an example namespace handler, see
+    ``pkg_resources.file_ns_handler``.
+    """
+    _namespace_handlers[importer_type] = namespace_handler
+
+
+def _handle_ns(packageName, path_item):
+    """Ensure that named package includes a subpath of path_item (if needed)"""
+
+    importer = get_importer(path_item)
+    if importer is None:
+        return None
+
+    # use find_spec (PEP 451) and fall-back to find_module (PEP 302)
+    try:
+        spec = importer.find_spec(packageName)
+    except AttributeError:
+        # capture warnings due to #1111
+        with warnings.catch_warnings():
+            warnings.simplefilter("ignore")
+            loader = importer.find_module(packageName)
+    else:
+        loader = spec.loader if spec else None
+
+    if loader is None:
+        return None
+    module = sys.modules.get(packageName)
+    if module is None:
+        module = sys.modules[packageName] = types.ModuleType(packageName)
+        module.__path__ = []
+        _set_parent_ns(packageName)
+    elif not hasattr(module, '__path__'):
+        raise TypeError("Not a package:", packageName)
+    handler = _find_adapter(_namespace_handlers, importer)
+    subpath = handler(importer, path_item, packageName, module)
+    if subpath is not None:
+        path = module.__path__
+        path.append(subpath)
+        importlib.import_module(packageName)
+        _rebuild_mod_path(path, packageName, module)
+    return subpath
+
+
+def _rebuild_mod_path(orig_path, package_name, module: types.ModuleType):
+    """
+    Rebuild module.__path__ ensuring that all entries are ordered
+    corresponding to their sys.path order
+    """
+    sys_path = [_normalize_cached(p) for p in sys.path]
+
+    def safe_sys_path_index(entry):
+        """
+        Workaround for #520 and #513.
+        """
+        try:
+            return sys_path.index(entry)
+        except ValueError:
+            return float('inf')
+
+    def position_in_sys_path(path):
+        """
+        Return the ordinal of the path based on its position in sys.path
+        """
+        path_parts = path.split(os.sep)
+        module_parts = package_name.count('.') + 1
+        parts = path_parts[:-module_parts]
+        return safe_sys_path_index(_normalize_cached(os.sep.join(parts)))
+
+    new_path = sorted(orig_path, key=position_in_sys_path)
+    new_path = [_normalize_cached(p) for p in new_path]
+
+    if isinstance(module.__path__, list):
+        module.__path__[:] = new_path
+    else:
+        module.__path__ = new_path
+
+
+def declare_namespace(packageName: str):
+    """Declare that package 'packageName' is a namespace package"""
+
+    msg = (
+        f"Deprecated call to `pkg_resources.declare_namespace({packageName!r})`.\n"
+        "Implementing implicit namespace packages (as specified in PEP 420) "
+        "is preferred to `pkg_resources.declare_namespace`. "
+        "See https://setuptools.pypa.io/en/latest/references/"
+        "keywords.html#keyword-namespace-packages"
+    )
+    warnings.warn(msg, DeprecationWarning, stacklevel=2)
+
+    _imp.acquire_lock()
+    try:
+        if packageName in _namespace_packages:
+            return
+
+        path: MutableSequence[str] = sys.path
+        parent, _, _ = packageName.rpartition('.')
+
+        if parent:
+            declare_namespace(parent)
+            if parent not in _namespace_packages:
+                __import__(parent)
+            try:
+                path = sys.modules[parent].__path__
+            except AttributeError as e:
+                raise TypeError("Not a package:", parent) from e
+
+        # Track what packages are namespaces, so when new path items are added,
+        # they can be updated
+        _namespace_packages.setdefault(parent or None, []).append(packageName)
+        _namespace_packages.setdefault(packageName, [])
+
+        for path_item in path:
+            # Ensure all the parent's path items are reflected in the child,
+            # if they apply
+            _handle_ns(packageName, path_item)
+
+    finally:
+        _imp.release_lock()
+
+
+def fixup_namespace_packages(path_item: str, parent: str | None = None):
+    """Ensure that previously-declared namespace packages include path_item"""
+    _imp.acquire_lock()
+    try:
+        for package in _namespace_packages.get(parent, ()):
+            subpath = _handle_ns(package, path_item)
+            if subpath:
+                fixup_namespace_packages(subpath, package)
+    finally:
+        _imp.release_lock()
+
+
+def file_ns_handler(
+    importer: object,
+    path_item: StrPath,
+    packageName: str,
+    module: types.ModuleType,
+):
+    """Compute an ns-package subpath for a filesystem or zipfile importer"""
+
+    subpath = os.path.join(path_item, packageName.split('.')[-1])
+    normalized = _normalize_cached(subpath)
+    for item in module.__path__:
+        if _normalize_cached(item) == normalized:
+            break
+    else:
+        # Only return the path if it's not already there
+        return subpath
+
+
+if hasattr(pkgutil, 'ImpImporter'):
+    register_namespace_handler(pkgutil.ImpImporter, file_ns_handler)
+
+register_namespace_handler(zipimport.zipimporter, file_ns_handler)
+register_namespace_handler(importlib.machinery.FileFinder, file_ns_handler)
+
+
+def null_ns_handler(
+    importer: object,
+    path_item: str | None,
+    packageName: str | None,
+    module: _ModuleLike | None,
+):
+    return None
+
+
+register_namespace_handler(object, null_ns_handler)
+
+
+@overload
+def normalize_path(filename: StrPath) -> str: ...
+@overload
+def normalize_path(filename: BytesPath) -> bytes: ...
+def normalize_path(filename: StrOrBytesPath):
+    """Normalize a file/dir name for comparison purposes"""
+    return os.path.normcase(os.path.realpath(os.path.normpath(_cygwin_patch(filename))))
+
+
+def _cygwin_patch(filename: StrOrBytesPath):  # pragma: nocover
+    """
+    Contrary to POSIX 2008, on Cygwin, getcwd (3) contains
+    symlink components. Using
+    os.path.abspath() works around this limitation. A fix in os.getcwd()
+    would probably better, in Cygwin even more so, except
+    that this seems to be by design...
+    """
+    return os.path.abspath(filename) if sys.platform == 'cygwin' else filename
+
+
+if TYPE_CHECKING:
+    # https://github.com/python/mypy/issues/16261
+    # https://github.com/python/typeshed/issues/6347
+    @overload
+    def _normalize_cached(filename: StrPath) -> str: ...
+    @overload
+    def _normalize_cached(filename: BytesPath) -> bytes: ...
+    def _normalize_cached(filename: StrOrBytesPath) -> str | bytes: ...
+else:
+
+    @functools.lru_cache(maxsize=None)
+    def _normalize_cached(filename):
+        return normalize_path(filename)
+
+
+def _is_egg_path(path):
+    """
+    Determine if given path appears to be an egg.
+    """
+    return _is_zip_egg(path) or _is_unpacked_egg(path)
+
+
+def _is_zip_egg(path):
+    return (
+        path.lower().endswith('.egg')
+        and os.path.isfile(path)
+        and zipfile.is_zipfile(path)
+    )
+
+
+def _is_unpacked_egg(path):
+    """
+    Determine if given path appears to be an unpacked egg.
+    """
+    return path.lower().endswith('.egg') and os.path.isfile(
+        os.path.join(path, 'EGG-INFO', 'PKG-INFO')
+    )
+
+
+def _set_parent_ns(packageName):
+    parts = packageName.split('.')
+    name = parts.pop()
+    if parts:
+        parent = '.'.join(parts)
+        setattr(sys.modules[parent], name, sys.modules[packageName])
+
+
+MODULE = re.compile(r"\w+(\.\w+)*$").match
+EGG_NAME = re.compile(
+    r"""
+    (?P[^-]+) (
+        -(?P[^-]+) (
+            -py(?P[^-]+) (
+                -(?P.+)
+            )?
+        )?
+    )?
+    """,
+    re.VERBOSE | re.IGNORECASE,
+).match
+
+
+class EntryPoint:
+    """Object representing an advertised importable object"""
+
+    def __init__(
+        self,
+        name: str,
+        module_name: str,
+        attrs: Iterable[str] = (),
+        extras: Iterable[str] = (),
+        dist: Distribution | None = None,
+    ):
+        if not MODULE(module_name):
+            raise ValueError("Invalid module name", module_name)
+        self.name = name
+        self.module_name = module_name
+        self.attrs = tuple(attrs)
+        self.extras = tuple(extras)
+        self.dist = dist
+
+    def __str__(self):
+        s = "%s = %s" % (self.name, self.module_name)
+        if self.attrs:
+            s += ':' + '.'.join(self.attrs)
+        if self.extras:
+            s += ' [%s]' % ','.join(self.extras)
+        return s
+
+    def __repr__(self):
+        return "EntryPoint.parse(%r)" % str(self)
+
+    @overload
+    def load(
+        self,
+        require: Literal[True] = True,
+        env: Environment | None = None,
+        installer: _InstallerType | None = None,
+    ) -> _ResolvedEntryPoint: ...
+    @overload
+    def load(
+        self,
+        require: Literal[False],
+        *args: Any,
+        **kwargs: Any,
+    ) -> _ResolvedEntryPoint: ...
+    def load(
+        self,
+        require: bool = True,
+        *args: Environment | _InstallerType | None,
+        **kwargs: Environment | _InstallerType | None,
+    ) -> _ResolvedEntryPoint:
+        """
+        Require packages for this EntryPoint, then resolve it.
+        """
+        if not require or args or kwargs:
+            warnings.warn(
+                "Parameters to load are deprecated.  Call .resolve and "
+                ".require separately.",
+                PkgResourcesDeprecationWarning,
+                stacklevel=2,
+            )
+        if require:
+            # We could pass `env` and `installer` directly,
+            # but keeping `*args` and `**kwargs` for backwards compatibility
+            self.require(*args, **kwargs)  # type: ignore
+        return self.resolve()
+
+    def resolve(self) -> _ResolvedEntryPoint:
+        """
+        Resolve the entry point from its module and attrs.
+        """
+        module = __import__(self.module_name, fromlist=['__name__'], level=0)
+        try:
+            return functools.reduce(getattr, self.attrs, module)
+        except AttributeError as exc:
+            raise ImportError(str(exc)) from exc
+
+    def require(
+        self,
+        env: Environment | None = None,
+        installer: _InstallerType | None = None,
+    ):
+        if not self.dist:
+            error_cls = UnknownExtra if self.extras else AttributeError
+            raise error_cls("Can't require() without a distribution", self)
+
+        # Get the requirements for this entry point with all its extras and
+        # then resolve them. We have to pass `extras` along when resolving so
+        # that the working set knows what extras we want. Otherwise, for
+        # dist-info distributions, the working set will assume that the
+        # requirements for that extra are purely optional and skip over them.
+        reqs = self.dist.requires(self.extras)
+        items = working_set.resolve(reqs, env, installer, extras=self.extras)
+        list(map(working_set.add, items))
+
+    pattern = re.compile(
+        r'\s*'
+        r'(?P.+?)\s*'
+        r'=\s*'
+        r'(?P[\w.]+)\s*'
+        r'(:\s*(?P[\w.]+))?\s*'
+        r'(?P\[.*\])?\s*$'
+    )
+
+    @classmethod
+    def parse(cls, src: str, dist: Distribution | None = None):
+        """Parse a single entry point from string `src`
+
+        Entry point syntax follows the form::
+
+            name = some.module:some.attr [extra1, extra2]
+
+        The entry name and module name are required, but the ``:attrs`` and
+        ``[extras]`` parts are optional
+        """
+        m = cls.pattern.match(src)
+        if not m:
+            msg = "EntryPoint must be in 'name=module:attrs [extras]' format"
+            raise ValueError(msg, src)
+        res = m.groupdict()
+        extras = cls._parse_extras(res['extras'])
+        attrs = res['attr'].split('.') if res['attr'] else ()
+        return cls(res['name'], res['module'], attrs, extras, dist)
+
+    @classmethod
+    def _parse_extras(cls, extras_spec):
+        if not extras_spec:
+            return ()
+        req = Requirement.parse('x' + extras_spec)
+        if req.specs:
+            raise ValueError
+        return req.extras
+
+    @classmethod
+    def parse_group(
+        cls,
+        group: str,
+        lines: _NestedStr,
+        dist: Distribution | None = None,
+    ):
+        """Parse an entry point group"""
+        if not MODULE(group):
+            raise ValueError("Invalid group name", group)
+        this: dict[str, Self] = {}
+        for line in yield_lines(lines):
+            ep = cls.parse(line, dist)
+            if ep.name in this:
+                raise ValueError("Duplicate entry point", group, ep.name)
+            this[ep.name] = ep
+        return this
+
+    @classmethod
+    def parse_map(
+        cls,
+        data: str | Iterable[str] | dict[str, str | Iterable[str]],
+        dist: Distribution | None = None,
+    ):
+        """Parse a map of entry point groups"""
+        _data: Iterable[tuple[str | None, str | Iterable[str]]]
+        if isinstance(data, dict):
+            _data = data.items()
+        else:
+            _data = split_sections(data)
+        maps: dict[str, dict[str, Self]] = {}
+        for group, lines in _data:
+            if group is None:
+                if not lines:
+                    continue
+                raise ValueError("Entry points must be listed in groups")
+            group = group.strip()
+            if group in maps:
+                raise ValueError("Duplicate group name", group)
+            maps[group] = cls.parse_group(group, lines, dist)
+        return maps
+
+
+def _version_from_file(lines):
+    """
+    Given an iterable of lines from a Metadata file, return
+    the value of the Version field, if present, or None otherwise.
+    """
+
+    def is_version_line(line):
+        return line.lower().startswith('version:')
+
+    version_lines = filter(is_version_line, lines)
+    line = next(iter(version_lines), '')
+    _, _, value = line.partition(':')
+    return safe_version(value.strip()) or None
+
+
+class Distribution:
+    """Wrap an actual or potential sys.path entry w/metadata"""
+
+    PKG_INFO = 'PKG-INFO'
+
+    def __init__(
+        self,
+        location: str | None = None,
+        metadata: _MetadataType = None,
+        project_name: str | None = None,
+        version: str | None = None,
+        py_version: str | None = PY_MAJOR,
+        platform: str | None = None,
+        precedence: int = EGG_DIST,
+    ):
+        self.project_name = safe_name(project_name or 'Unknown')
+        if version is not None:
+            self._version = safe_version(version)
+        self.py_version = py_version
+        self.platform = platform
+        self.location = location
+        self.precedence = precedence
+        self._provider = metadata or empty_provider
+
+    @classmethod
+    def from_location(
+        cls,
+        location: str,
+        basename: StrPath,
+        metadata: _MetadataType = None,
+        **kw: int,  # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
+    ) -> Distribution:
+        project_name, version, py_version, platform = [None] * 4
+        basename, ext = os.path.splitext(basename)
+        if ext.lower() in _distributionImpl:
+            cls = _distributionImpl[ext.lower()]
+
+            match = EGG_NAME(basename)
+            if match:
+                project_name, version, py_version, platform = match.group(
+                    'name', 'ver', 'pyver', 'plat'
+                )
+        return cls(
+            location,
+            metadata,
+            project_name=project_name,
+            version=version,
+            py_version=py_version,
+            platform=platform,
+            **kw,
+        )._reload_version()
+
+    def _reload_version(self):
+        return self
+
+    @property
+    def hashcmp(self):
+        return (
+            self._forgiving_parsed_version,
+            self.precedence,
+            self.key,
+            self.location,
+            self.py_version or '',
+            self.platform or '',
+        )
+
+    def __hash__(self):
+        return hash(self.hashcmp)
+
+    def __lt__(self, other: Distribution):
+        return self.hashcmp < other.hashcmp
+
+    def __le__(self, other: Distribution):
+        return self.hashcmp <= other.hashcmp
+
+    def __gt__(self, other: Distribution):
+        return self.hashcmp > other.hashcmp
+
+    def __ge__(self, other: Distribution):
+        return self.hashcmp >= other.hashcmp
+
+    def __eq__(self, other: object):
+        if not isinstance(other, self.__class__):
+            # It's not a Distribution, so they are not equal
+            return False
+        return self.hashcmp == other.hashcmp
+
+    def __ne__(self, other: object):
+        return not self == other
+
+    # These properties have to be lazy so that we don't have to load any
+    # metadata until/unless it's actually needed.  (i.e., some distributions
+    # may not know their name or version without loading PKG-INFO)
+
+    @property
+    def key(self):
+        try:
+            return self._key
+        except AttributeError:
+            self._key = key = self.project_name.lower()
+            return key
+
+    @property
+    def parsed_version(self):
+        if not hasattr(self, "_parsed_version"):
+            try:
+                self._parsed_version = parse_version(self.version)
+            except _packaging_version.InvalidVersion as ex:
+                info = f"(package: {self.project_name})"
+                if hasattr(ex, "add_note"):
+                    ex.add_note(info)  # PEP 678
+                    raise
+                raise _packaging_version.InvalidVersion(f"{str(ex)} {info}") from None
+
+        return self._parsed_version
+
+    @property
+    def _forgiving_parsed_version(self):
+        try:
+            return self.parsed_version
+        except _packaging_version.InvalidVersion as ex:
+            self._parsed_version = parse_version(_forgiving_version(self.version))
+
+            notes = "\n".join(getattr(ex, "__notes__", []))  # PEP 678
+            msg = f"""!!\n\n
+            *************************************************************************
+            {str(ex)}\n{notes}
+
+            This is a long overdue deprecation.
+            For the time being, `pkg_resources` will use `{self._parsed_version}`
+            as a replacement to avoid breaking existing environments,
+            but no future compatibility is guaranteed.
+
+            If you maintain package {self.project_name} you should implement
+            the relevant changes to adequate the project to PEP 440 immediately.
+            *************************************************************************
+            \n\n!!
+            """
+            warnings.warn(msg, DeprecationWarning)
+
+            return self._parsed_version
+
+    @property
+    def version(self):
+        try:
+            return self._version
+        except AttributeError as e:
+            version = self._get_version()
+            if version is None:
+                path = self._get_metadata_path_for_display(self.PKG_INFO)
+                msg = ("Missing 'Version:' header and/or {} file at path: {}").format(
+                    self.PKG_INFO, path
+                )
+                raise ValueError(msg, self) from e
+
+            return version
+
+    @property
+    def _dep_map(self):
+        """
+        A map of extra to its list of (direct) requirements
+        for this distribution, including the null extra.
+        """
+        try:
+            return self.__dep_map
+        except AttributeError:
+            self.__dep_map = self._filter_extras(self._build_dep_map())
+        return self.__dep_map
+
+    @staticmethod
+    def _filter_extras(dm: dict[str | None, list[Requirement]]):
+        """
+        Given a mapping of extras to dependencies, strip off
+        environment markers and filter out any dependencies
+        not matching the markers.
+        """
+        for extra in list(filter(None, dm)):
+            new_extra: str | None = extra
+            reqs = dm.pop(extra)
+            new_extra, _, marker = extra.partition(':')
+            fails_marker = marker and (
+                invalid_marker(marker) or not evaluate_marker(marker)
+            )
+            if fails_marker:
+                reqs = []
+            new_extra = safe_extra(new_extra) or None
+
+            dm.setdefault(new_extra, []).extend(reqs)
+        return dm
+
+    def _build_dep_map(self):
+        dm = {}
+        for name in 'requires.txt', 'depends.txt':
+            for extra, reqs in split_sections(self._get_metadata(name)):
+                dm.setdefault(extra, []).extend(parse_requirements(reqs))
+        return dm
+
+    def requires(self, extras: Iterable[str] = ()):
+        """List of Requirements needed for this distro if `extras` are used"""
+        dm = self._dep_map
+        deps: list[Requirement] = []
+        deps.extend(dm.get(None, ()))
+        for ext in extras:
+            try:
+                deps.extend(dm[safe_extra(ext)])
+            except KeyError as e:
+                raise UnknownExtra(
+                    "%s has no such extra feature %r" % (self, ext)
+                ) from e
+        return deps
+
+    def _get_metadata_path_for_display(self, name):
+        """
+        Return the path to the given metadata file, if available.
+        """
+        try:
+            # We need to access _get_metadata_path() on the provider object
+            # directly rather than through this class's __getattr__()
+            # since _get_metadata_path() is marked private.
+            path = self._provider._get_metadata_path(name)
+
+        # Handle exceptions e.g. in case the distribution's metadata
+        # provider doesn't support _get_metadata_path().
+        except Exception:
+            return '[could not detect]'
+
+        return path
+
+    def _get_metadata(self, name):
+        if self.has_metadata(name):
+            yield from self.get_metadata_lines(name)
+
+    def _get_version(self):
+        lines = self._get_metadata(self.PKG_INFO)
+        return _version_from_file(lines)
+
+    def activate(self, path: list[str] | None = None, replace: bool = False):
+        """Ensure distribution is importable on `path` (default=sys.path)"""
+        if path is None:
+            path = sys.path
+        self.insert_on(path, replace=replace)
+        if path is sys.path and self.location is not None:
+            fixup_namespace_packages(self.location)
+            for pkg in self._get_metadata('namespace_packages.txt'):
+                if pkg in sys.modules:
+                    declare_namespace(pkg)
+
+    def egg_name(self):
+        """Return what this distribution's standard .egg filename should be"""
+        filename = "%s-%s-py%s" % (
+            to_filename(self.project_name),
+            to_filename(self.version),
+            self.py_version or PY_MAJOR,
+        )
+
+        if self.platform:
+            filename += '-' + self.platform
+        return filename
+
+    def __repr__(self):
+        if self.location:
+            return "%s (%s)" % (self, self.location)
+        else:
+            return str(self)
+
+    def __str__(self):
+        try:
+            version = getattr(self, 'version', None)
+        except ValueError:
+            version = None
+        version = version or "[unknown version]"
+        return "%s %s" % (self.project_name, version)
+
+    def __getattr__(self, attr):
+        """Delegate all unrecognized public attributes to .metadata provider"""
+        if attr.startswith('_'):
+            raise AttributeError(attr)
+        return getattr(self._provider, attr)
+
+    def __dir__(self):
+        return list(
+            set(super().__dir__())
+            | set(attr for attr in self._provider.__dir__() if not attr.startswith('_'))
+        )
+
+    @classmethod
+    def from_filename(
+        cls,
+        filename: StrPath,
+        metadata: _MetadataType = None,
+        **kw: int,  # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
+    ):
+        return cls.from_location(
+            _normalize_cached(filename), os.path.basename(filename), metadata, **kw
+        )
+
+    def as_requirement(self):
+        """Return a ``Requirement`` that matches this distribution exactly"""
+        if isinstance(self.parsed_version, _packaging_version.Version):
+            spec = "%s==%s" % (self.project_name, self.parsed_version)
+        else:
+            spec = "%s===%s" % (self.project_name, self.parsed_version)
+
+        return Requirement.parse(spec)
+
+    def load_entry_point(self, group: str, name: str) -> _ResolvedEntryPoint:
+        """Return the `name` entry point of `group` or raise ImportError"""
+        ep = self.get_entry_info(group, name)
+        if ep is None:
+            raise ImportError("Entry point %r not found" % ((group, name),))
+        return ep.load()
+
+    @overload
+    def get_entry_map(self, group: None = None) -> dict[str, dict[str, EntryPoint]]: ...
+    @overload
+    def get_entry_map(self, group: str) -> dict[str, EntryPoint]: ...
+    def get_entry_map(self, group: str | None = None):
+        """Return the entry point map for `group`, or the full entry map"""
+        if not hasattr(self, "_ep_map"):
+            self._ep_map = EntryPoint.parse_map(
+                self._get_metadata('entry_points.txt'), self
+            )
+        if group is not None:
+            return self._ep_map.get(group, {})
+        return self._ep_map
+
+    def get_entry_info(self, group: str, name: str):
+        """Return the EntryPoint object for `group`+`name`, or ``None``"""
+        return self.get_entry_map(group).get(name)
+
+    # FIXME: 'Distribution.insert_on' is too complex (13)
+    def insert_on(  # noqa: C901
+        self,
+        path: list[str],
+        loc=None,
+        replace: bool = False,
+    ):
+        """Ensure self.location is on path
+
+        If replace=False (default):
+            - If location is already in path anywhere, do nothing.
+            - Else:
+              - If it's an egg and its parent directory is on path,
+                insert just ahead of the parent.
+              - Else: add to the end of path.
+        If replace=True:
+            - If location is already on path anywhere (not eggs)
+              or higher priority than its parent (eggs)
+              do nothing.
+            - Else:
+              - If it's an egg and its parent directory is on path,
+                insert just ahead of the parent,
+                removing any lower-priority entries.
+              - Else: add it to the front of path.
+        """
+
+        loc = loc or self.location
+        if not loc:
+            return
+
+        nloc = _normalize_cached(loc)
+        bdir = os.path.dirname(nloc)
+        npath = [(p and _normalize_cached(p) or p) for p in path]
+
+        for p, item in enumerate(npath):
+            if item == nloc:
+                if replace:
+                    break
+                else:
+                    # don't modify path (even removing duplicates) if
+                    # found and not replace
+                    return
+            elif item == bdir and self.precedence == EGG_DIST:
+                # if it's an .egg, give it precedence over its directory
+                # UNLESS it's already been added to sys.path and replace=False
+                if (not replace) and nloc in npath[p:]:
+                    return
+                if path is sys.path:
+                    self.check_version_conflict()
+                path.insert(p, loc)
+                npath.insert(p, nloc)
+                break
+        else:
+            if path is sys.path:
+                self.check_version_conflict()
+            if replace:
+                path.insert(0, loc)
+            else:
+                path.append(loc)
+            return
+
+        # p is the spot where we found or inserted loc; now remove duplicates
+        while True:
+            try:
+                np = npath.index(nloc, p + 1)
+            except ValueError:
+                break
+            else:
+                del npath[np], path[np]
+                # ha!
+                p = np
+
+        return
+
+    def check_version_conflict(self):
+        if self.key == 'setuptools':
+            # ignore the inevitable setuptools self-conflicts  :(
+            return
+
+        nsp = dict.fromkeys(self._get_metadata('namespace_packages.txt'))
+        loc = normalize_path(self.location)
+        for modname in self._get_metadata('top_level.txt'):
+            if (
+                modname not in sys.modules
+                or modname in nsp
+                or modname in _namespace_packages
+            ):
+                continue
+            if modname in ('pkg_resources', 'setuptools', 'site'):
+                continue
+            fn = getattr(sys.modules[modname], '__file__', None)
+            if fn and (
+                normalize_path(fn).startswith(loc) or fn.startswith(self.location)
+            ):
+                continue
+            issue_warning(
+                "Module %s was already imported from %s, but %s is being added"
+                " to sys.path" % (modname, fn, self.location),
+            )
+
+    def has_version(self):
+        try:
+            self.version
+        except ValueError:
+            issue_warning("Unbuilt egg for " + repr(self))
+            return False
+        except SystemError:
+            # TODO: remove this except clause when python/cpython#103632 is fixed.
+            return False
+        return True
+
+    def clone(self, **kw: str | int | IResourceProvider | None):
+        """Copy this distribution, substituting in any changed keyword args"""
+        names = 'project_name version py_version platform location precedence'
+        for attr in names.split():
+            kw.setdefault(attr, getattr(self, attr, None))
+        kw.setdefault('metadata', self._provider)
+        # Unsafely unpacking. But keeping **kw for backwards and subclassing compatibility
+        return self.__class__(**kw)  # type:ignore[arg-type]
+
+    @property
+    def extras(self):
+        return [dep for dep in self._dep_map if dep]
+
+
+class EggInfoDistribution(Distribution):
+    def _reload_version(self):
+        """
+        Packages installed by distutils (e.g. numpy or scipy),
+        which uses an old safe_version, and so
+        their version numbers can get mangled when
+        converted to filenames (e.g., 1.11.0.dev0+2329eae to
+        1.11.0.dev0_2329eae). These distributions will not be
+        parsed properly
+        downstream by Distribution and safe_version, so
+        take an extra step and try to get the version number from
+        the metadata file itself instead of the filename.
+        """
+        md_version = self._get_version()
+        if md_version:
+            self._version = md_version
+        return self
+
+
+class DistInfoDistribution(Distribution):
+    """
+    Wrap an actual or potential sys.path entry
+    w/metadata, .dist-info style.
+    """
+
+    PKG_INFO = 'METADATA'
+    EQEQ = re.compile(r"([\(,])\s*(\d.*?)\s*([,\)])")
+
+    @property
+    def _parsed_pkg_info(self):
+        """Parse and cache metadata"""
+        try:
+            return self._pkg_info
+        except AttributeError:
+            metadata = self.get_metadata(self.PKG_INFO)
+            self._pkg_info = email.parser.Parser().parsestr(metadata)
+            return self._pkg_info
+
+    @property
+    def _dep_map(self):
+        try:
+            return self.__dep_map
+        except AttributeError:
+            self.__dep_map = self._compute_dependencies()
+            return self.__dep_map
+
+    def _compute_dependencies(self) -> dict[str | None, list[Requirement]]:
+        """Recompute this distribution's dependencies."""
+        self.__dep_map: dict[str | None, list[Requirement]] = {None: []}
+
+        reqs: list[Requirement] = []
+        # Including any condition expressions
+        for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
+            reqs.extend(parse_requirements(req))
+
+        def reqs_for_extra(extra):
+            for req in reqs:
+                if not req.marker or req.marker.evaluate({'extra': extra}):
+                    yield req
+
+        common = types.MappingProxyType(dict.fromkeys(reqs_for_extra(None)))
+        self.__dep_map[None].extend(common)
+
+        for extra in self._parsed_pkg_info.get_all('Provides-Extra') or []:
+            s_extra = safe_extra(extra.strip())
+            self.__dep_map[s_extra] = [
+                r for r in reqs_for_extra(extra) if r not in common
+            ]
+
+        return self.__dep_map
+
+
+_distributionImpl = {
+    '.egg': Distribution,
+    '.egg-info': EggInfoDistribution,
+    '.dist-info': DistInfoDistribution,
+}
+
+
+def issue_warning(*args, **kw):
+    level = 1
+    g = globals()
+    try:
+        # find the first stack frame that is *not* code in
+        # the pkg_resources module, to use for the warning
+        while sys._getframe(level).f_globals is g:
+            level += 1
+    except ValueError:
+        pass
+    warnings.warn(stacklevel=level + 1, *args, **kw)
+
+
+def parse_requirements(strs: _NestedStr):
+    """
+    Yield ``Requirement`` objects for each specification in `strs`.
+
+    `strs` must be a string, or a (possibly-nested) iterable thereof.
+    """
+    return map(Requirement, join_continuation(map(drop_comment, yield_lines(strs))))
+
+
+class RequirementParseError(_packaging_requirements.InvalidRequirement):
+    "Compatibility wrapper for InvalidRequirement"
+
+
+class Requirement(_packaging_requirements.Requirement):
+    def __init__(self, requirement_string: str):
+        """DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!"""
+        super().__init__(requirement_string)
+        self.unsafe_name = self.name
+        project_name = safe_name(self.name)
+        self.project_name, self.key = project_name, project_name.lower()
+        self.specs = [(spec.operator, spec.version) for spec in self.specifier]
+        # packaging.requirements.Requirement uses a set for its extras. We use a variable-length tuple
+        self.extras: tuple[str] = tuple(map(safe_extra, self.extras))
+        self.hashCmp = (
+            self.key,
+            self.url,
+            self.specifier,
+            frozenset(self.extras),
+            str(self.marker) if self.marker else None,
+        )
+        self.__hash = hash(self.hashCmp)
+
+    def __eq__(self, other: object):
+        return isinstance(other, Requirement) and self.hashCmp == other.hashCmp
+
+    def __ne__(self, other):
+        return not self == other
+
+    def __contains__(self, item: Distribution | str | tuple[str, ...]) -> bool:
+        if isinstance(item, Distribution):
+            if item.key != self.key:
+                return False
+
+            item = item.version
+
+        # Allow prereleases always in order to match the previous behavior of
+        # this method. In the future this should be smarter and follow PEP 440
+        # more accurately.
+        return self.specifier.contains(item, prereleases=True)
+
+    def __hash__(self):
+        return self.__hash
+
+    def __repr__(self):
+        return "Requirement.parse(%r)" % str(self)
+
+    @staticmethod
+    def parse(s: str | Iterable[str]):
+        (req,) = parse_requirements(s)
+        return req
+
+
+def _always_object(classes):
+    """
+    Ensure object appears in the mro even
+    for old-style classes.
+    """
+    if object not in classes:
+        return classes + (object,)
+    return classes
+
+
+def _find_adapter(registry: Mapping[type, _AdapterT], ob: object) -> _AdapterT:
+    """Return an adapter factory for `ob` from `registry`"""
+    types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
+    for t in types:
+        if t in registry:
+            return registry[t]
+    # _find_adapter would previously return None, and immediately be called.
+    # So we're raising a TypeError to keep backward compatibility if anyone depended on that behaviour.
+    raise TypeError(f"Could not find adapter for {registry} and {ob}")
+
+
+def ensure_directory(path: StrOrBytesPath):
+    """Ensure that the parent directory of `path` exists"""
+    dirname = os.path.dirname(path)
+    os.makedirs(dirname, exist_ok=True)
+
+
+def _bypass_ensure_directory(path):
+    """Sandbox-bypassing version of ensure_directory()"""
+    if not WRITE_SUPPORT:
+        raise OSError('"os.mkdir" not supported on this platform.')
+    dirname, filename = split(path)
+    if dirname and filename and not isdir(dirname):
+        _bypass_ensure_directory(dirname)
+        try:
+            mkdir(dirname, 0o755)
+        except FileExistsError:
+            pass
+
+
+def split_sections(s: _NestedStr) -> Iterator[tuple[str | None, list[str]]]:
+    """Split a string or iterable thereof into (section, content) pairs
+
+    Each ``section`` is a stripped version of the section header ("[section]")
+    and each ``content`` is a list of stripped lines excluding blank lines and
+    comment-only lines.  If there are any such lines before the first section
+    header, they're returned in a first ``section`` of ``None``.
+    """
+    section = None
+    content = []
+    for line in yield_lines(s):
+        if line.startswith("["):
+            if line.endswith("]"):
+                if section or content:
+                    yield section, content
+                section = line[1:-1].strip()
+                content = []
+            else:
+                raise ValueError("Invalid section heading", line)
+        else:
+            content.append(line)
+
+    # wrap up last segment
+    yield section, content
+
+
+def _mkstemp(*args, **kw):
+    old_open = os.open
+    try:
+        # temporarily bypass sandboxing
+        os.open = os_open
+        return tempfile.mkstemp(*args, **kw)
+    finally:
+        # and then put it back
+        os.open = old_open
+
+
+# Silence the PEP440Warning by default, so that end users don't get hit by it
+# randomly just because they use pkg_resources. We want to append the rule
+# because we want earlier uses of filterwarnings to take precedence over this
+# one.
+warnings.filterwarnings("ignore", category=PEP440Warning, append=True)
+
+
+class PkgResourcesDeprecationWarning(Warning):
+    """
+    Base class for warning about deprecations in ``pkg_resources``
+
+    This class is not derived from ``DeprecationWarning``, and as such is
+    visible by default.
+    """
+
+
+# Ported from ``setuptools`` to avoid introducing an import inter-dependency:
+_LOCALE_ENCODING = "locale" if sys.version_info >= (3, 10) else None
+
+
+def _read_utf8_with_fallback(file: str, fallback_encoding=_LOCALE_ENCODING) -> str:
+    """See setuptools.unicode_utils._read_utf8_with_fallback"""
+    try:
+        with open(file, "r", encoding="utf-8") as f:
+            return f.read()
+    except UnicodeDecodeError:  # pragma: no cover
+        msg = f"""\
+        ********************************************************************************
+        `encoding="utf-8"` fails with {file!r}, trying `encoding={fallback_encoding!r}`.
+
+        This fallback behaviour is considered **deprecated** and future versions of
+        `setuptools/pkg_resources` may not implement it.
+
+        Please encode {file!r} with "utf-8" to ensure future builds will succeed.
+
+        If this file was produced by `setuptools` itself, cleaning up the cached files
+        and re-building/re-installing the package with a newer version of `setuptools`
+        (e.g. by updating `build-system.requires` in its `pyproject.toml`)
+        might solve the problem.
+        ********************************************************************************
+        """
+        # TODO: Add a deadline?
+        #       See comment in setuptools.unicode_utils._Utf8EncodingNeeded
+        warnings.warn(msg, PkgResourcesDeprecationWarning, stacklevel=2)
+        with open(file, "r", encoding=fallback_encoding) as f:
+            return f.read()
+
+
+# from jaraco.functools 1.3
+def _call_aside(f, *args, **kwargs):
+    f(*args, **kwargs)
+    return f
+
+
+@_call_aside
+def _initialize(g=globals()):
+    "Set up global resource manager (deliberately not state-saved)"
+    manager = ResourceManager()
+    g['_manager'] = manager
+    g.update(
+        (name, getattr(manager, name))
+        for name in dir(manager)
+        if not name.startswith('_')
+    )
+
+
+@_call_aside
+def _initialize_master_working_set():
+    """
+    Prepare the master working set and make the ``require()``
+    API available.
+
+    This function has explicit effects on the global state
+    of pkg_resources. It is intended to be invoked once at
+    the initialization of this module.
+
+    Invocation by other packages is unsupported and done
+    at their own risk.
+    """
+    working_set = _declare_state('object', 'working_set', WorkingSet._build_master())
+
+    require = working_set.require
+    iter_entry_points = working_set.iter_entry_points
+    add_activation_listener = working_set.subscribe
+    run_script = working_set.run_script
+    # backward compatibility
+    run_main = run_script
+    # Activate all distributions already on sys.path with replace=False and
+    # ensure that all distributions added to the working set in the future
+    # (e.g. by calling ``require()``) will get activated as well,
+    # with higher priority (replace=True).
+    tuple(dist.activate(replace=False) for dist in working_set)
+    add_activation_listener(
+        lambda dist: dist.activate(replace=True),
+        existing=False,
+    )
+    working_set.entries = []
+    # match order
+    list(map(working_set.add_entry, sys.path))
+    globals().update(locals())
+
+
+if TYPE_CHECKING:
+    # All of these are set by the @_call_aside methods above
+    __resource_manager = ResourceManager()  # Won't exist at runtime
+    resource_exists = __resource_manager.resource_exists
+    resource_isdir = __resource_manager.resource_isdir
+    resource_filename = __resource_manager.resource_filename
+    resource_stream = __resource_manager.resource_stream
+    resource_string = __resource_manager.resource_string
+    resource_listdir = __resource_manager.resource_listdir
+    set_extraction_path = __resource_manager.set_extraction_path
+    cleanup_resources = __resource_manager.cleanup_resources
+
+    working_set = WorkingSet()
+    require = working_set.require
+    iter_entry_points = working_set.iter_entry_points
+    add_activation_listener = working_set.subscribe
+    run_script = working_set.run_script
+    run_main = run_script
diff --git a/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..9e7ff0f58c5e2377f8cac1579886aeddc57869a0
GIT binary patch
literal 161268
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%0DLU?7!8l!xC4O+i|^nOb`
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
z
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 for details and usage.
+
+"""
+
+from __future__ import annotations
+
+import os
+import sys
+from typing import TYPE_CHECKING
+
+from .api import PlatformDirsABC
+from .version import __version__
+from .version import __version_tuple__ as __version_info__
+
+if TYPE_CHECKING:
+    from pathlib import Path
+    from typing import Literal
+
+
+def _set_platform_dir_class() -> type[PlatformDirsABC]:
+    if sys.platform == "win32":
+        from pip._vendor.platformdirs.windows import Windows as Result  # noqa: PLC0415
+    elif sys.platform == "darwin":
+        from pip._vendor.platformdirs.macos import MacOS as Result  # noqa: PLC0415
+    else:
+        from pip._vendor.platformdirs.unix import Unix as Result  # noqa: PLC0415
+
+    if os.getenv("ANDROID_DATA") == "/data" and os.getenv("ANDROID_ROOT") == "/system":
+        if os.getenv("SHELL") or os.getenv("PREFIX"):
+            return Result
+
+        from pip._vendor.platformdirs.android import _android_folder  # noqa: PLC0415
+
+        if _android_folder() is not None:
+            from pip._vendor.platformdirs.android import Android  # noqa: PLC0415
+
+            return Android  # return to avoid redefinition of a result
+
+    return Result
+
+
+PlatformDirs = _set_platform_dir_class()  #: Currently active platform
+AppDirs = PlatformDirs  #: Backwards compatibility with appdirs
+
+
+def user_data_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: data directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_data_dir
+
+
+def site_data_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    multipath: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param multipath: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: data directory shared by users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        multipath=multipath,
+        ensure_exists=ensure_exists,
+    ).site_data_dir
+
+
+def user_config_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: config directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_config_dir
+
+
+def site_config_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    multipath: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param multipath: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: config directory shared by the users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        multipath=multipath,
+        ensure_exists=ensure_exists,
+    ).site_config_dir
+
+
+def user_cache_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: cache directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_cache_dir
+
+
+def site_cache_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: cache directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).site_cache_dir
+
+
+def user_state_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: state directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_state_dir
+
+
+def user_log_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: log directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_log_dir
+
+
+def user_documents_dir() -> str:
+    """:returns: documents directory tied to the user"""
+    return PlatformDirs().user_documents_dir
+
+
+def user_downloads_dir() -> str:
+    """:returns: downloads directory tied to the user"""
+    return PlatformDirs().user_downloads_dir
+
+
+def user_pictures_dir() -> str:
+    """:returns: pictures directory tied to the user"""
+    return PlatformDirs().user_pictures_dir
+
+
+def user_videos_dir() -> str:
+    """:returns: videos directory tied to the user"""
+    return PlatformDirs().user_videos_dir
+
+
+def user_music_dir() -> str:
+    """:returns: music directory tied to the user"""
+    return PlatformDirs().user_music_dir
+
+
+def user_desktop_dir() -> str:
+    """:returns: desktop directory tied to the user"""
+    return PlatformDirs().user_desktop_dir
+
+
+def user_runtime_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: runtime directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_runtime_dir
+
+
+def site_runtime_dir(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> str:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: runtime directory shared by users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).site_runtime_dir
+
+
+def user_data_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: data path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_data_path
+
+
+def site_data_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    multipath: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param multipath: See `multipath `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: data path shared by users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        multipath=multipath,
+        ensure_exists=ensure_exists,
+    ).site_data_path
+
+
+def user_config_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: config path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_config_path
+
+
+def site_config_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    multipath: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param multipath: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: config path shared by the users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        multipath=multipath,
+        ensure_exists=ensure_exists,
+    ).site_config_path
+
+
+def site_cache_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: cache directory tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).site_cache_path
+
+
+def user_cache_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: cache path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_cache_path
+
+
+def user_state_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    roaming: bool = False,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param roaming: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: state path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        roaming=roaming,
+        ensure_exists=ensure_exists,
+    ).user_state_path
+
+
+def user_log_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `roaming `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: log path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_log_path
+
+
+def user_documents_path() -> Path:
+    """:returns: documents a path tied to the user"""
+    return PlatformDirs().user_documents_path
+
+
+def user_downloads_path() -> Path:
+    """:returns: downloads path tied to the user"""
+    return PlatformDirs().user_downloads_path
+
+
+def user_pictures_path() -> Path:
+    """:returns: pictures path tied to the user"""
+    return PlatformDirs().user_pictures_path
+
+
+def user_videos_path() -> Path:
+    """:returns: videos path tied to the user"""
+    return PlatformDirs().user_videos_path
+
+
+def user_music_path() -> Path:
+    """:returns: music path tied to the user"""
+    return PlatformDirs().user_music_path
+
+
+def user_desktop_path() -> Path:
+    """:returns: desktop path tied to the user"""
+    return PlatformDirs().user_desktop_path
+
+
+def user_runtime_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: runtime path tied to the user
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).user_runtime_path
+
+
+def site_runtime_path(
+    appname: str | None = None,
+    appauthor: str | None | Literal[False] = None,
+    version: str | None = None,
+    opinion: bool = True,  # noqa: FBT001, FBT002
+    ensure_exists: bool = False,  # noqa: FBT001, FBT002
+) -> Path:
+    """
+    :param appname: See `appname `.
+    :param appauthor: See `appauthor `.
+    :param version: See `version `.
+    :param opinion: See `opinion `.
+    :param ensure_exists: See `ensure_exists `.
+    :returns: runtime path shared by users
+    """
+    return PlatformDirs(
+        appname=appname,
+        appauthor=appauthor,
+        version=version,
+        opinion=opinion,
+        ensure_exists=ensure_exists,
+    ).site_runtime_path
+
+
+__all__ = [
+    "AppDirs",
+    "PlatformDirs",
+    "PlatformDirsABC",
+    "__version__",
+    "__version_info__",
+    "site_cache_dir",
+    "site_cache_path",
+    "site_config_dir",
+    "site_config_path",
+    "site_data_dir",
+    "site_data_path",
+    "site_runtime_dir",
+    "site_runtime_path",
+    "user_cache_dir",
+    "user_cache_path",
+    "user_config_dir",
+    "user_config_path",
+    "user_data_dir",
+    "user_data_path",
+    "user_desktop_dir",
+    "user_desktop_path",
+    "user_documents_dir",
+    "user_documents_path",
+    "user_downloads_dir",
+    "user_downloads_path",
+    "user_log_dir",
+    "user_log_path",
+    "user_music_dir",
+    "user_music_path",
+    "user_pictures_dir",
+    "user_pictures_path",
+    "user_runtime_dir",
+    "user_runtime_path",
+    "user_state_dir",
+    "user_state_path",
+    "user_videos_dir",
+    "user_videos_path",
+]
diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py b/env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py
new file mode 100644
index 00000000..fa8a677a
--- /dev/null
+++ b/env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py
@@ -0,0 +1,55 @@
+"""Main entry point."""
+
+from __future__ import annotations
+
+from pip._vendor.platformdirs import PlatformDirs, __version__
+
+PROPS = (
+    "user_data_dir",
+    "user_config_dir",
+    "user_cache_dir",
+    "user_state_dir",
+    "user_log_dir",
+    "user_documents_dir",
+    "user_downloads_dir",
+    "user_pictures_dir",
+    "user_videos_dir",
+    "user_music_dir",
+    "user_runtime_dir",
+    "site_data_dir",
+    "site_config_dir",
+    "site_cache_dir",
+    "site_runtime_dir",
+)
+
+
+def main() -> None:
+    """Run the main entry point."""
+    app_name = "MyApp"
+    app_author = "MyCompany"
+
+    print(f"-- platformdirs {__version__} --")  # noqa: T201
+
+    print("-- app dirs (with optional 'version')")  # noqa: T201
+    dirs = PlatformDirs(app_name, app_author, version="1.0")
+    for prop in PROPS:
+        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
+
+    print("\n-- app dirs (without optional 'version')")  # noqa: T201
+    dirs = PlatformDirs(app_name, app_author)
+    for prop in PROPS:
+        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
+
+    print("\n-- app dirs (without optional 'appauthor')")  # noqa: T201
+    dirs = PlatformDirs(app_name)
+    for prop in PROPS:
+        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
+
+    print("\n-- app dirs (with disabled 'appauthor')")  # noqa: T201
+    dirs = PlatformDirs(app_name, appauthor=False)
+    for prop in PROPS:
+        print(f"{prop}: {getattr(dirs, prop)}")  # noqa: T201
+
+
+if __name__ == "__main__":
+    main()
diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e39503887350623d5c08f876c30c7616855ae2fb
GIT binary patch
literal 19816
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

literal 0
HcmV?d00001

diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..9398a8b7b86aca8f072f5c89a3d31c4a4dc53a98
GIT binary patch
literal 10684
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

literal 0
HcmV?d00001

diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..703d2922a7a88bd90258fd8574eaca7ad9e93199
GIT binary patch
literal 12898
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

literal 0
HcmV?d00001

diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..33f678e34fa06ba53b48ac6ff30f4b5461072d51
GIT binary patch
literal 7994
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
B$k+e?

literal 0
HcmV?d00001

diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..fa85b27b826a9b98231c13498f4b6b2390107212
GIT binary patch
literal 15024
zcmeG@TW}OtcHKQs^lC{Xka#x;AqFFj%}Wl(@`5Bl#z+JSKeRYAEp?CRVP3i2LTFZC
zcFX0JA614pHf*-GjI*vsyFV!sNbQENoO8RU
zyJw~avJI(Jl2++<_v!mQ_q^^oXa2svzJ`IT^TT&1KL|6-m-te;e8vNN?{j###7N8-
zBe4>fWK-N2$Ktam=^69TyLZeBcW=^{@{jrHH(xT43XTQovp=~kRWnwTsvWC^_ka{k
z)}`vl>RCqiCf1aOv+vTfQ(G8@_@qXu=1uPypY}uFwMkEkALChuV-7M>-J6V5FW1j|
zj89{g^R3xfQ;N5#v)J}#uJvgYzMAR}w4-RFH$=Vc2|CTkn;EyInEuJB%eub#}_V?+&
zX(hd5`-CwUqr{29KYI_?2gqa3G8#6g*DNz{K7Wr5b3?h+>dDMhQW7%h+r+92CttlyafRGGM(UVdqRqQ}`aBN`DiI-%Nq?PpKiIE*opEye7zRVP?rEB{M
zIeq%XOUn2ORng?GtT=H>oRrlQStT2Zo|e;6hD5UFLL^v7WD3!gozeZ1uv$eTJdA+<
zYBLn)nOhA{&3SG&th&6T*swkyTz?OsfKXbkYU%Kaz4zxZ$4iXNjIlsFoWzcKWUsVZ
z;@bk-0ujWH-8VU(IAhi^-%mJyR5TG$@
zKJ^q*>wq*+NSy=1Q%Jo7(nujde^x(D6atiJL7FL~(E$ljNRtE7LLto#$Z`q^IUp+l
zvQ}zwKw2qexdYNhAuAk^mC`z?75HM6v|eh1`)atag!`JARbfH*BB6T}*-IB46-ZH5weFKzD%l&0cGpngD2#~p1raBp3YpU~
zA&LalF2MNm1n{RKtHQLRofLrF6_QD(pEpbGvK5d=J
zD(R(-Y1X8zz-w2*+jtk)p#zksk+|Lf3Uh%TZqNZMY@xj2{9Q_PXZA~Hkp(X
z*<@~hEGA@#)jc%W1ne5^-#5B1dT98_fLjBrwq9RWS7&k!<-=VI=v+qC112Nr9#9mz
zPt}N$)xAh;dX0Q0E2br!vc4t?lLIw_wS6uyAsq2zpx)4i&kjFZ)XEfqIM5J&^u
z^m=R@MSMho!*k74d6&U9VUvSUoM-OWF^$dd=ibh}f9~ybmoryMk>5V&y~T$R_TKF6
z(DF+?7kd^$9feRwe)H~PsAsMpzAo@j7x<^Iw-ou^`QUES2z`~2oF4#`AH~L!`qe!ub+9Jo8Tsy3GVd}!<^+7AylqZ|04I^axc_A
z%Z)(E(x+)A>>F}WN&n!n5waX`m1~SlsU+f{%v=qHP$~@vNGnt#ZCI?tVigp604YY5
zvp_-Fq@t0v0KDcQ>#+h-h0bPG*aRR9lQQ@y8Zs7XsJRwO8x_z9G*QtWInVqH-?TVw
z+*;o8>G)3)pCqoFxV|bM+6#oyyZ>(zf0g(}^FOTmyHz)PM~nRNLhtD3O&7cijn5Ps
zpSix_9~*b(dq)fW@qF<3f8OAat4Jt6+uXLF^_I~OPMgwC4jwKsfNQu{UQ}4P(39$$
zWhEBzG{R^o{OFayp(?J#vI+pamWdip90LNj7~Eajp#G%$Bnjg)sI-VGY*FGu%+d)<
z&^=b&-k6{m!XNfc0G*6lSQ3EsK^R%`1t|wal>#Hn8vQ5=vl}K9IfK%*)+h{*7=4&Ez+kq7XC;xkNkb5yFj1R$-Rf9_5!}A8k95LK
zUuNOJAoq3zdJ`EXeT}13t$WeTE*ExX6m1H-GT3hDMcod?dFE~-)7Y}Ww-@+!L&lwZ
z=iIGO>t*(0&)m>$lh)sO`;E(5k>8XLZmO1RNKKS3e-01-D^%%+)?Qe|JweZNOH`&t
zWw%Xs)1!UELk9*AENa>E+hLl_e>eLvJtbh$5>!2tj2cGIVqYBl2hJ>qt_F*#@
z{g+=Cx!zplcP^#?ube7|wtqGK_nZF?I^iTkx4B3&hi;>O3Yd=Lnm5g^$E4f5L%MU{
zZ0#0|$l65Yj5O)4$;c*{6G3*TI*fF{Q@Q49GIW%^v1)FGLw7mgL)i8eD9W^#%g){k
zt^N8MtEFvU90lOLr+sa%NnX?Y|=BWsS4PMV_
z{VX{r9)6UYz`AbxTA_T-Md&fEZ(rY`fhB042C99m%7*d@qVmD<7STNohL*t^RP}`H
zgBNXvz;UDoSIyIXoh$M?7S%k7V(6JAX&$gn3=0KiDz%(V84s`4B{`4NTyA(#+*g>j
zwjl`ap~#}hhqH_I9sHa0T*6Wd&TzUK=hOy+Q!4OP4otz6RXiYp@#d$-8$EZfDe}Gf
zVDJA0`|NTxgQ(zqUn+x`CrWIw1U8{eGBUbvbjeI&S2mc$;qbsQAId6p9hIzN0SRvX
zA-eTtPKx}xhqKC8@KSi8cWTXFhKH|u$|TQxowFryo_S)Wr&kwmgnj;G;VcS5lFLn6
z{F%(yZd*6WsG_%3RD~FoMHVjMpcoe*Xd{^3Mtbg(lW;bS#h^<(NTvlv(>?GK_LE*f
zhaNEN8hQ}@2~-b)S1Oam*bn%VXQC5ChQ4qQsV8}++9I!`Gl72TMmO0q(FC1^j@9R(
zusD2Uf!_#nu$F&+?>l=<2h^p#7x!NAUXhETZ6F2f8W-xi3UysqrJHp-z#BDJ`w&Th
zt`az@SyIsH%mnOua(xzdrOd<>I=|JWX`lX5^;k@Aq9^m=zT-y*hDJxCVCdv(&qb^n
z*H}Fi1!rHBVj~5vf9jkgdvNtQHPb`WOut+6pg3!_aaQ)>Eo^HVS?$10Amny)?Y9-^PYnfgFITFS>TKQuW#$AKtB6`>yL}
zi~K-7IPgu@zRx0stTF)sOK|L1r2R0L@=>#PY2`-;`$mr+8!+gg=3J!o-F@Lrbkj>C
z(sdh$n=1GPmu1fu`Tl&c|C=oPd289HA#9Ub;-X)sbz#ZWT6%e~e_+^HFc?b4H}~Zl
zXLMsEx>&~<-G+WxwbUKg$BO*7^1*L?lchdqEj2ZzDicfF-XmBQ7E0awM~;sS_EC}!
zoQu#e?#ndHK{^UurNbPwfPaRIY=QzD@yNngUbsH^NYmz#0__EBjb`w0X{+ovB8{+4
zdWi2I7&$yTe3Y&f{4VBK_q8?}V$0}&u6DUYXxZS8t2TA#^;1QDe?GYXA)DF{0`iIb
z+G3g&H%Pd6O5B1{cG!ySl)M^7`sp=q-hasah&#(_xWDwWHG2Xg2$ffU&y!0oy?+-UBkNP+KUXrLx!+=8AMZY=JP3xEUIBtSc6?y9YN28eHI=@3w#jV>ud7
zoB5hY4`8H!T$Rx1lGFI$PsxBf>Z&XkpBs
zhDG5Nq-G`*deSlT07wQH5(k6Rj;hHbWQfHDQ6Tc<}75D#2Iog=yd~&G@VjEj%d_q6O7>q9ie#@HnSI&S-u2k9El<>*FjnBQEdAK^rm7o3X+Mz
zKi2zB@13>{AM-!pKjVH{bFHS>w&VJ~Lfh`S!P|W3!r;4aS5Mko_G%=||ip?k%4WdYNH+nD=~t;hBbn?A*>hGm4y)_F&ejp-wS>
z1$SI9xMK=(PcT8Ugc68Hb`Jrfo`yLQ8iT8JjWt4J5;b`XnyIF0s04qBINAWkZ23!!i!6kZ61Zv?{+?$tr9@2%UyUST(TKk;v2Cro(_U}`Qh
zPZ~{6EsiFtBr35Zz`SU#Ott8yXrNM>;>Hl&9ZUfgDBH9TmX2Wl1SsG$iJLFmCIeOO=wfgHvHGXuyUVu6HDFh_vKN{tP~09O4>7
z*@(ui2)bNpfjN2VFM(#>Wd4n-@dfX;G5&^s=YqbTdmebYi%)l3D9r17nKgm55z>v}qHQ&PleYqW#K)Dfx-ziA&0|6xMigZ(&
zQcCd0IAL&DKn8OZ{4RP3PhNQNifRh9q?RTm@|6M{DqxI(^P|Bz82Bbw{44ycN1!;*
z+-~f+GFfcwK0kOX(3lUj-ELWN>BWmLUK+YMbfxF&{$fjHp=DR0WmmDKXKvZA__o_^
zt3D3=Ah6K3wa~UT|5R_W?S;9)JGCu&Z%ehR^TQBy&x{|^*g+r-=S8m)Zr%3Ewg7Uq
zkn;P8%y;sEZ6TC;1$?t^8SkaSL*Goch>9Xpaj=rOR0VW)9)&-1a@6U^uYMd#|4HyvBgx5X^n22B<|iMw9w2<6uUJlT3=*5nV{7
z-B_501laaT**p`E$g)uSDNW^XXQq`?N@OGx*QPP;A5zh}@SH%qikgpiP$o^
zYZhmK#qZ%?{Yxm|aNNMG-SBD4k5?>g=qYUIDXw`o|J>oin!|bT%3Fao3xW1Rp#5f`
z<95^957y23@6>NxsP8P)ciyZIUw!#bUGqZSxo{B-rT)$?nw^7-}8-mLqB
z-}#t^t)L9*_zUsN$1kP|we4U++~JpBkl#Lgd8EK^Sl~MgeCJh9k>57wy#qfd0B_&r
zgP$Jz$t$0{ve3~}=;-;}Q|#DVsA!b^thT++=lNToudg9c
zGBQwZLTno2#fFh_&U!+#gu=iGnJYaT#tQg5i7+b+WzurEg`9zpXmG@*Ft`_u5)=c*
zPM~{2uQSX`1KGxI(j@z&GHyCbwHf$j&m=*?LU2a92Y!A;@MK{4HjrZts-VISw*&1M
z5Rx!j4nHrG~z2Dt?q34EY)qOAL6aJ%y@vXY=AN83N5He4%wB|lN2u@YB7nyB!bJrvh7U6YBIabPKxmq
z@gjK9gQ$4PQU4Y%kzCff81R%^p|_r#iK#w@?|tvRZ+P=D-%T?MMBM!Fw)aH=;I}L;
zBef#uOpuSD3lMMs26PiCNbM^F)lmn~feOGXhB$?_6Lm`{5&WASov1kN=vc!BN*##F
zl4(n(i=O_Er6ohg3&qJeS(Fhu=j2D(QtsYD3_wZcT4xybG1s~z2#Lkhr)_!+*3Kee9ZWo=lO($%xB_dvFA};-qj?eB^Uy}
zfpdZ2qFcM;*0E2C*x|PKZ@DdstKpEwxLk2DId$v7ksAjLmm~l9x!=RF8wHUq%n}q*
zJL>!FB%}ir(AZvCw4%|4aWDwcu#fN3O|eCMD2QDFXHZd;GaV>b-f3g=CoKF*T}z5v
zpKeUxq&+b{+h6ym+t!bw{i-o9ZjT%DO#XE~F$*(LNH+FnU@uwQnSq`8)!ixB9p~Qk
RlI!Iu5NG{;gKmfge*l=8qf-C?

literal 0
HcmV?d00001

diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..95ca883916c0a155ec501ac0107ece9845f714a8
GIT binary patch
literal 13661
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.
+
+    Makes use of the `appname `, `version
+    `, `ensure_exists `.
+
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """:return: data directory tied to the user, e.g. ``/data/user///files/``"""
+        return self._append_app_name_and_version(cast(str, _android_folder()), "files")
+
+    @property
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_config_dir(self) -> str:
+        """
+        :return: config directory tied to the user, e.g. \
+        ``/data/user///shared_prefs/``
+        """
+        return self._append_app_name_and_version(cast(str, _android_folder()), "shared_prefs")
+
+    @property
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users, same as `user_config_dir`"""
+        return self.user_config_dir
+
+    @property
+    def user_cache_dir(self) -> str:
+        """:return: cache directory tied to the user, e.g.,``/data/user///cache/``"""
+        return self._append_app_name_and_version(cast(str, _android_folder()), "cache")
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, same as `user_cache_dir`"""
+        return self.user_cache_dir
+
+    @property
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_log_dir(self) -> str:
+        """
+        :return: log directory tied to the user, same as `user_cache_dir` if not opinionated else ``log`` in it,
+          e.g. ``/data/user///cache//log``
+        """
+        path = self.user_cache_dir
+        if self.opinion:
+            path = os.path.join(path, "log")  # noqa: PTH118
+        return path
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user e.g. ``/storage/emulated/0/Documents``"""
+        return _android_documents_folder()
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user e.g. ``/storage/emulated/0/Downloads``"""
+        return _android_downloads_folder()
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user e.g. ``/storage/emulated/0/Pictures``"""
+        return _android_pictures_folder()
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user e.g. ``/storage/emulated/0/DCIM/Camera``"""
+        return _android_videos_folder()
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user e.g. ``/storage/emulated/0/Music``"""
+        return _android_music_folder()
+
+    @property
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user e.g. ``/storage/emulated/0/Desktop``"""
+        return "/storage/emulated/0/Desktop"
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """
+        :return: runtime directory tied to the user, same as `user_cache_dir` if not opinionated else ``tmp`` in it,
+          e.g. ``/data/user///cache//tmp``
+        """
+        path = self.user_cache_dir
+        if self.opinion:
+            path = os.path.join(path, "tmp")  # noqa: PTH118
+        return path
+
+    @property
+    def site_runtime_dir(self) -> str:
+        """:return: runtime directory shared by users, same as `user_runtime_dir`"""
+        return self.user_runtime_dir
+
+
+@lru_cache(maxsize=1)
+def _android_folder() -> str | None:  # noqa: C901, PLR0912
+    """:return: base folder for the Android OS or None if it cannot be found"""
+    result: str | None = None
+    # type checker isn't happy with our "import android", just don't do this when type checking see
+    # https://stackoverflow.com/a/61394121
+    if not TYPE_CHECKING:
+        try:
+            # First try to get a path to android app using python4android (if available)...
+            from android import mActivity  # noqa: PLC0415
+
+            context = cast("android.content.Context", mActivity.getApplicationContext())  # noqa: F821
+            result = context.getFilesDir().getParentFile().getAbsolutePath()
+        except Exception:  # noqa: BLE001
+            result = None
+    if result is None:
+        try:
+            # ...and fall back to using plain pyjnius, if python4android isn't available or doesn't deliver any useful
+            # result...
+            from jnius import autoclass  # noqa: PLC0415
+
+            context = autoclass("android.content.Context")
+            result = context.getFilesDir().getParentFile().getAbsolutePath()
+        except Exception:  # noqa: BLE001
+            result = None
+    if result is None:
+        # and if that fails, too, find an android folder looking at path on the sys.path
+        # warning: only works for apps installed under /data, not adopted storage etc.
+        pattern = re.compile(r"/data/(data|user/\d+)/(.+)/files")
+        for path in sys.path:
+            if pattern.match(path):
+                result = path.split("/files")[0]
+                break
+        else:
+            result = None
+    if result is None:
+        # one last try: find an android folder looking at path on the sys.path taking adopted storage paths into
+        # account
+        pattern = re.compile(r"/mnt/expand/[a-fA-F0-9-]{36}/(data|user/\d+)/(.+)/files")
+        for path in sys.path:
+            if pattern.match(path):
+                result = path.split("/files")[0]
+                break
+        else:
+            result = None
+    return result
+
+
+@lru_cache(maxsize=1)
+def _android_documents_folder() -> str:
+    """:return: documents folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        documents_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOCUMENTS).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        documents_dir = "/storage/emulated/0/Documents"
+
+    return documents_dir
+
+
+@lru_cache(maxsize=1)
+def _android_downloads_folder() -> str:
+    """:return: downloads folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        downloads_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOWNLOADS).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        downloads_dir = "/storage/emulated/0/Downloads"
+
+    return downloads_dir
+
+
+@lru_cache(maxsize=1)
+def _android_pictures_folder() -> str:
+    """:return: pictures folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        pictures_dir: str = context.getExternalFilesDir(environment.DIRECTORY_PICTURES).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        pictures_dir = "/storage/emulated/0/Pictures"
+
+    return pictures_dir
+
+
+@lru_cache(maxsize=1)
+def _android_videos_folder() -> str:
+    """:return: videos folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        videos_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DCIM).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        videos_dir = "/storage/emulated/0/DCIM/Camera"
+
+    return videos_dir
+
+
+@lru_cache(maxsize=1)
+def _android_music_folder() -> str:
+    """:return: music folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass  # noqa: PLC0415
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        music_dir: str = context.getExternalFilesDir(environment.DIRECTORY_MUSIC).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        music_dir = "/storage/emulated/0/Music"
+
+    return music_dir
+
+
+__all__ = [
+    "Android",
+]
diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/api.py b/env/Lib/site-packages/pip/_vendor/platformdirs/api.py
new file mode 100644
index 00000000..c50caa64
--- /dev/null
+++ b/env/Lib/site-packages/pip/_vendor/platformdirs/api.py
@@ -0,0 +1,292 @@
+"""Base API."""
+
+from __future__ import annotations
+
+import os
+from abc import ABC, abstractmethod
+from pathlib import Path
+from typing import TYPE_CHECKING
+
+if TYPE_CHECKING:
+    from typing import Iterator, Literal
+
+
+class PlatformDirsABC(ABC):  # noqa: PLR0904
+    """Abstract base class for platform directories."""
+
+    def __init__(  # noqa: PLR0913, PLR0917
+        self,
+        appname: str | None = None,
+        appauthor: str | None | Literal[False] = None,
+        version: str | None = None,
+        roaming: bool = False,  # noqa: FBT001, FBT002
+        multipath: bool = False,  # noqa: FBT001, FBT002
+        opinion: bool = True,  # noqa: FBT001, FBT002
+        ensure_exists: bool = False,  # noqa: FBT001, FBT002
+    ) -> None:
+        """
+        Create a new platform directory.
+
+        :param appname: See `appname`.
+        :param appauthor: See `appauthor`.
+        :param version: See `version`.
+        :param roaming: See `roaming`.
+        :param multipath: See `multipath`.
+        :param opinion: See `opinion`.
+        :param ensure_exists: See `ensure_exists`.
+
+        """
+        self.appname = appname  #: The name of application.
+        self.appauthor = appauthor
+        """
+        The name of the app author or distributing body for this application.
+
+        Typically, it is the owning company name. Defaults to `appname`. You may pass ``False`` to disable it.
+
+        """
+        self.version = version
+        """
+        An optional version path element to append to the path.
+
+        You might want to use this if you want multiple versions of your app to be able to run independently. If used,
+        this would typically be ``.``.
+
+        """
+        self.roaming = roaming
+        """
+        Whether to use the roaming appdata directory on Windows.
+
+        That means that for users on a Windows network setup for roaming profiles, this user data will be synced on
+        login (see
+        `here `_).
+
+        """
+        self.multipath = multipath
+        """
+        An optional parameter which indicates that the entire list of data dirs should be returned.
+
+        By default, the first item would only be returned.
+
+        """
+        self.opinion = opinion  #: A flag to indicating to use opinionated values.
+        self.ensure_exists = ensure_exists
+        """
+        Optionally create the directory (and any missing parents) upon access if it does not exist.
+
+        By default, no directories are created.
+
+        """
+
+    def _append_app_name_and_version(self, *base: str) -> str:
+        params = list(base[1:])
+        if self.appname:
+            params.append(self.appname)
+            if self.version:
+                params.append(self.version)
+        path = os.path.join(base[0], *params)  # noqa: PTH118
+        self._optionally_create_directory(path)
+        return path
+
+    def _optionally_create_directory(self, path: str) -> None:
+        if self.ensure_exists:
+            Path(path).mkdir(parents=True, exist_ok=True)
+
+    @property
+    @abstractmethod
+    def user_data_dir(self) -> str:
+        """:return: data directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users"""
+
+    @property
+    @abstractmethod
+    def user_config_dir(self) -> str:
+        """:return: config directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users"""
+
+    @property
+    @abstractmethod
+    def user_cache_dir(self) -> str:
+        """:return: cache directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users"""
+
+    @property
+    @abstractmethod
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_runtime_dir(self) -> str:
+        """:return: runtime directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_runtime_dir(self) -> str:
+        """:return: runtime directory shared by users"""
+
+    @property
+    def user_data_path(self) -> Path:
+        """:return: data path tied to the user"""
+        return Path(self.user_data_dir)
+
+    @property
+    def site_data_path(self) -> Path:
+        """:return: data path shared by users"""
+        return Path(self.site_data_dir)
+
+    @property
+    def user_config_path(self) -> Path:
+        """:return: config path tied to the user"""
+        return Path(self.user_config_dir)
+
+    @property
+    def site_config_path(self) -> Path:
+        """:return: config path shared by the users"""
+        return Path(self.site_config_dir)
+
+    @property
+    def user_cache_path(self) -> Path:
+        """:return: cache path tied to the user"""
+        return Path(self.user_cache_dir)
+
+    @property
+    def site_cache_path(self) -> Path:
+        """:return: cache path shared by users"""
+        return Path(self.site_cache_dir)
+
+    @property
+    def user_state_path(self) -> Path:
+        """:return: state path tied to the user"""
+        return Path(self.user_state_dir)
+
+    @property
+    def user_log_path(self) -> Path:
+        """:return: log path tied to the user"""
+        return Path(self.user_log_dir)
+
+    @property
+    def user_documents_path(self) -> Path:
+        """:return: documents a path tied to the user"""
+        return Path(self.user_documents_dir)
+
+    @property
+    def user_downloads_path(self) -> Path:
+        """:return: downloads path tied to the user"""
+        return Path(self.user_downloads_dir)
+
+    @property
+    def user_pictures_path(self) -> Path:
+        """:return: pictures path tied to the user"""
+        return Path(self.user_pictures_dir)
+
+    @property
+    def user_videos_path(self) -> Path:
+        """:return: videos path tied to the user"""
+        return Path(self.user_videos_dir)
+
+    @property
+    def user_music_path(self) -> Path:
+        """:return: music path tied to the user"""
+        return Path(self.user_music_dir)
+
+    @property
+    def user_desktop_path(self) -> Path:
+        """:return: desktop path tied to the user"""
+        return Path(self.user_desktop_dir)
+
+    @property
+    def user_runtime_path(self) -> Path:
+        """:return: runtime path tied to the user"""
+        return Path(self.user_runtime_dir)
+
+    @property
+    def site_runtime_path(self) -> Path:
+        """:return: runtime path shared by users"""
+        return Path(self.site_runtime_dir)
+
+    def iter_config_dirs(self) -> Iterator[str]:
+        """:yield: all user and site configuration directories."""
+        yield self.user_config_dir
+        yield self.site_config_dir
+
+    def iter_data_dirs(self) -> Iterator[str]:
+        """:yield: all user and site data directories."""
+        yield self.user_data_dir
+        yield self.site_data_dir
+
+    def iter_cache_dirs(self) -> Iterator[str]:
+        """:yield: all user and site cache directories."""
+        yield self.user_cache_dir
+        yield self.site_cache_dir
+
+    def iter_runtime_dirs(self) -> Iterator[str]:
+        """:yield: all user and site runtime directories."""
+        yield self.user_runtime_dir
+        yield self.site_runtime_dir
+
+    def iter_config_paths(self) -> Iterator[Path]:
+        """:yield: all user and site configuration paths."""
+        for path in self.iter_config_dirs():
+            yield Path(path)
+
+    def iter_data_paths(self) -> Iterator[Path]:
+        """:yield: all user and site data paths."""
+        for path in self.iter_data_dirs():
+            yield Path(path)
+
+    def iter_cache_paths(self) -> Iterator[Path]:
+        """:yield: all user and site cache paths."""
+        for path in self.iter_cache_dirs():
+            yield Path(path)
+
+    def iter_runtime_paths(self) -> Iterator[Path]:
+        """:yield: all user and site runtime paths."""
+        for path in self.iter_runtime_dirs():
+            yield Path(path)
diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/macos.py b/env/Lib/site-packages/pip/_vendor/platformdirs/macos.py
new file mode 100644
index 00000000..eb1ba5df
--- /dev/null
+++ b/env/Lib/site-packages/pip/_vendor/platformdirs/macos.py
@@ -0,0 +1,130 @@
+"""macOS."""
+
+from __future__ import annotations
+
+import os.path
+import sys
+
+from .api import PlatformDirsABC
+
+
+class MacOS(PlatformDirsABC):
+    """
+    Platform directories for the macOS operating system.
+
+    Follows the guidance from
+    `Apple documentation `_.
+    Makes use of the `appname `,
+    `version `,
+    `ensure_exists `.
+
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """:return: data directory tied to the user, e.g. ``~/Library/Application Support/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Application Support"))  # noqa: PTH111
+
+    @property
+    def site_data_dir(self) -> str:
+        """
+        :return: data directory shared by users, e.g. ``/Library/Application Support/$appname/$version``.
+          If we're using a Python binary managed by `Homebrew `_, the directory
+          will be under the Homebrew prefix, e.g. ``/opt/homebrew/share/$appname/$version``.
+          If `multipath ` is enabled, and we're in Homebrew,
+          the response is a multi-path string separated by ":", e.g.
+          ``/opt/homebrew/share/$appname/$version:/Library/Application Support/$appname/$version``
+        """
+        is_homebrew = sys.prefix.startswith("/opt/homebrew")
+        path_list = [self._append_app_name_and_version("/opt/homebrew/share")] if is_homebrew else []
+        path_list.append(self._append_app_name_and_version("/Library/Application Support"))
+        if self.multipath:
+            return os.pathsep.join(path_list)
+        return path_list[0]
+
+    @property
+    def user_config_dir(self) -> str:
+        """:return: config directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users, same as `site_data_dir`"""
+        return self.site_data_dir
+
+    @property
+    def user_cache_dir(self) -> str:
+        """:return: cache directory tied to the user, e.g. ``~/Library/Caches/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches"))  # noqa: PTH111
+
+    @property
+    def site_cache_dir(self) -> str:
+        """
+        :return: cache directory shared by users, e.g. ``/Library/Caches/$appname/$version``.
+          If we're using a Python binary managed by `Homebrew `_, the directory
+          will be under the Homebrew prefix, e.g. ``/opt/homebrew/var/cache/$appname/$version``.
+          If `multipath ` is enabled, and we're in Homebrew,
+          the response is a multi-path string separated by ":", e.g.
+          ``/opt/homebrew/var/cache/$appname/$version:/Library/Caches/$appname/$version``
+        """
+        is_homebrew = sys.prefix.startswith("/opt/homebrew")
+        path_list = [self._append_app_name_and_version("/opt/homebrew/var/cache")] if is_homebrew else []
+        path_list.append(self._append_app_name_and_version("/Library/Caches"))
+        if self.multipath:
+            return os.pathsep.join(path_list)
+        return path_list[0]
+
+    @property
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user, e.g. ``~/Library/Logs/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Logs"))  # noqa: PTH111
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user, e.g. ``~/Documents``"""
+        return os.path.expanduser("~/Documents")  # noqa: PTH111
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user, e.g. ``~/Downloads``"""
+        return os.path.expanduser("~/Downloads")  # noqa: PTH111
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user, e.g. ``~/Pictures``"""
+        return os.path.expanduser("~/Pictures")  # noqa: PTH111
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user, e.g. ``~/Movies``"""
+        return os.path.expanduser("~/Movies")  # noqa: PTH111
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user, e.g. ``~/Music``"""
+        return os.path.expanduser("~/Music")  # noqa: PTH111
+
+    @property
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user, e.g. ``~/Desktop``"""
+        return os.path.expanduser("~/Desktop")  # noqa: PTH111
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """:return: runtime directory tied to the user, e.g. ``~/Library/Caches/TemporaryItems/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches/TemporaryItems"))  # noqa: PTH111
+
+    @property
+    def site_runtime_dir(self) -> str:
+        """:return: runtime directory shared by users, same as `user_runtime_dir`"""
+        return self.user_runtime_dir
+
+
+__all__ = [
+    "MacOS",
+]
diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/py.typed b/env/Lib/site-packages/pip/_vendor/platformdirs/py.typed
new file mode 100644
index 00000000..e69de29b
diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/unix.py b/env/Lib/site-packages/pip/_vendor/platformdirs/unix.py
new file mode 100644
index 00000000..9500ade6
--- /dev/null
+++ b/env/Lib/site-packages/pip/_vendor/platformdirs/unix.py
@@ -0,0 +1,275 @@
+"""Unix."""
+
+from __future__ import annotations
+
+import os
+import sys
+from configparser import ConfigParser
+from pathlib import Path
+from typing import Iterator, NoReturn
+
+from .api import PlatformDirsABC
+
+if sys.platform == "win32":
+
+    def getuid() -> NoReturn:
+        msg = "should only be used on Unix"
+        raise RuntimeError(msg)
+
+else:
+    from os import getuid
+
+
+class Unix(PlatformDirsABC):  # noqa: PLR0904
+    """
+    On Unix/Linux, we follow the `XDG Basedir Spec `_.
+
+    The spec allows overriding directories with environment variables. The examples shown are the default values,
+    alongside the name of the environment variable that overrides them. Makes use of the `appname
+    `, `version `, `multipath
+    `, `opinion `, `ensure_exists
+    `.
+
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """
+        :return: data directory tied to the user, e.g. ``~/.local/share/$appname/$version`` or
+         ``$XDG_DATA_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_DATA_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.local/share")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def _site_data_dirs(self) -> list[str]:
+        path = os.environ.get("XDG_DATA_DIRS", "")
+        if not path.strip():
+            path = f"/usr/local/share{os.pathsep}/usr/share"
+        return [self._append_app_name_and_version(p) for p in path.split(os.pathsep)]
+
+    @property
+    def site_data_dir(self) -> str:
+        """
+        :return: data directories shared by users (if `multipath ` is
+         enabled and ``XDG_DATA_DIRS`` is set and a multi path the response is also a multi path separated by the
+         OS path separator), e.g. ``/usr/local/share/$appname/$version`` or ``/usr/share/$appname/$version``
+        """
+        # XDG default for $XDG_DATA_DIRS; only first, if multipath is False
+        dirs = self._site_data_dirs
+        if not self.multipath:
+            return dirs[0]
+        return os.pathsep.join(dirs)
+
+    @property
+    def user_config_dir(self) -> str:
+        """
+        :return: config directory tied to the user, e.g. ``~/.config/$appname/$version`` or
+         ``$XDG_CONFIG_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_CONFIG_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.config")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def _site_config_dirs(self) -> list[str]:
+        path = os.environ.get("XDG_CONFIG_DIRS", "")
+        if not path.strip():
+            path = "/etc/xdg"
+        return [self._append_app_name_and_version(p) for p in path.split(os.pathsep)]
+
+    @property
+    def site_config_dir(self) -> str:
+        """
+        :return: config directories shared by users (if `multipath `
+         is enabled and ``XDG_CONFIG_DIRS`` is set and a multi path the response is also a multi path separated by
+         the OS path separator), e.g. ``/etc/xdg/$appname/$version``
+        """
+        # XDG default for $XDG_CONFIG_DIRS only first, if multipath is False
+        dirs = self._site_config_dirs
+        if not self.multipath:
+            return dirs[0]
+        return os.pathsep.join(dirs)
+
+    @property
+    def user_cache_dir(self) -> str:
+        """
+        :return: cache directory tied to the user, e.g. ``~/.cache/$appname/$version`` or
+         ``~/$XDG_CACHE_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_CACHE_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.cache")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, e.g. ``/var/cache/$appname/$version``"""
+        return self._append_app_name_and_version("/var/cache")
+
+    @property
+    def user_state_dir(self) -> str:
+        """
+        :return: state directory tied to the user, e.g. ``~/.local/state/$appname/$version`` or
+         ``$XDG_STATE_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_STATE_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.local/state")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user, same as `user_state_dir` if not opinionated else ``log`` in it"""
+        path = self.user_state_dir
+        if self.opinion:
+            path = os.path.join(path, "log")  # noqa: PTH118
+            self._optionally_create_directory(path)
+        return path
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user, e.g. ``~/Documents``"""
+        return _get_user_media_dir("XDG_DOCUMENTS_DIR", "~/Documents")
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user, e.g. ``~/Downloads``"""
+        return _get_user_media_dir("XDG_DOWNLOAD_DIR", "~/Downloads")
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user, e.g. ``~/Pictures``"""
+        return _get_user_media_dir("XDG_PICTURES_DIR", "~/Pictures")
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user, e.g. ``~/Videos``"""
+        return _get_user_media_dir("XDG_VIDEOS_DIR", "~/Videos")
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user, e.g. ``~/Music``"""
+        return _get_user_media_dir("XDG_MUSIC_DIR", "~/Music")
+
+    @property
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user, e.g. ``~/Desktop``"""
+        return _get_user_media_dir("XDG_DESKTOP_DIR", "~/Desktop")
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """
+        :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or
+         ``$XDG_RUNTIME_DIR/$appname/$version``.
+
+         For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/user/$(id -u)/$appname/$version`` if
+         exists, otherwise ``/tmp/runtime-$(id -u)/$appname/$version``, if``$XDG_RUNTIME_DIR``
+         is not set.
+        """
+        path = os.environ.get("XDG_RUNTIME_DIR", "")
+        if not path.strip():
+            if sys.platform.startswith(("freebsd", "openbsd", "netbsd")):
+                path = f"/var/run/user/{getuid()}"
+                if not Path(path).exists():
+                    path = f"/tmp/runtime-{getuid()}"  # noqa: S108
+            else:
+                path = f"/run/user/{getuid()}"
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_runtime_dir(self) -> str:
+        """
+        :return: runtime directory shared by users, e.g. ``/run/$appname/$version`` or \
+        ``$XDG_RUNTIME_DIR/$appname/$version``.
+
+        Note that this behaves almost exactly like `user_runtime_dir` if ``$XDG_RUNTIME_DIR`` is set, but will
+        fall back to paths associated to the root user instead of a regular logged-in user if it's not set.
+
+        If you wish to ensure that a logged-in root user path is returned e.g. ``/run/user/0``, use `user_runtime_dir`
+        instead.
+
+        For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/$appname/$version`` if ``$XDG_RUNTIME_DIR`` is not set.
+        """
+        path = os.environ.get("XDG_RUNTIME_DIR", "")
+        if not path.strip():
+            if sys.platform.startswith(("freebsd", "openbsd", "netbsd")):
+                path = "/var/run"
+            else:
+                path = "/run"
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_data_path(self) -> Path:
+        """:return: data path shared by users. Only return the first item, even if ``multipath`` is set to ``True``"""
+        return self._first_item_as_path_if_multipath(self.site_data_dir)
+
+    @property
+    def site_config_path(self) -> Path:
+        """:return: config path shared by the users, returns the first item, even if ``multipath`` is set to ``True``"""
+        return self._first_item_as_path_if_multipath(self.site_config_dir)
+
+    @property
+    def site_cache_path(self) -> Path:
+        """:return: cache path shared by users. Only return the first item, even if ``multipath`` is set to ``True``"""
+        return self._first_item_as_path_if_multipath(self.site_cache_dir)
+
+    def _first_item_as_path_if_multipath(self, directory: str) -> Path:
+        if self.multipath:
+            # If multipath is True, the first path is returned.
+            directory = directory.split(os.pathsep)[0]
+        return Path(directory)
+
+    def iter_config_dirs(self) -> Iterator[str]:
+        """:yield: all user and site configuration directories."""
+        yield self.user_config_dir
+        yield from self._site_config_dirs
+
+    def iter_data_dirs(self) -> Iterator[str]:
+        """:yield: all user and site data directories."""
+        yield self.user_data_dir
+        yield from self._site_data_dirs
+
+
+def _get_user_media_dir(env_var: str, fallback_tilde_path: str) -> str:
+    media_dir = _get_user_dirs_folder(env_var)
+    if media_dir is None:
+        media_dir = os.environ.get(env_var, "").strip()
+        if not media_dir:
+            media_dir = os.path.expanduser(fallback_tilde_path)  # noqa: PTH111
+
+    return media_dir
+
+
+def _get_user_dirs_folder(key: str) -> str | None:
+    """
+    Return directory from user-dirs.dirs config file.
+
+    See https://freedesktop.org/wiki/Software/xdg-user-dirs/.
+
+    """
+    user_dirs_config_path = Path(Unix().user_config_dir) / "user-dirs.dirs"
+    if user_dirs_config_path.exists():
+        parser = ConfigParser()
+
+        with user_dirs_config_path.open() as stream:
+            # Add fake section header, so ConfigParser doesn't complain
+            parser.read_string(f"[top]\n{stream.read()}")
+
+        if key not in parser["top"]:
+            return None
+
+        path = parser["top"][key].strip('"')
+        # Handle relative home paths
+        return path.replace("$HOME", os.path.expanduser("~"))  # noqa: PTH111
+
+    return None
+
+
+__all__ = [
+    "Unix",
+]
diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/version.py b/env/Lib/site-packages/pip/_vendor/platformdirs/version.py
new file mode 100644
index 00000000..6483ddce
--- /dev/null
+++ b/env/Lib/site-packages/pip/_vendor/platformdirs/version.py
@@ -0,0 +1,16 @@
+# file generated by setuptools_scm
+# don't change, don't track in version control
+TYPE_CHECKING = False
+if TYPE_CHECKING:
+    from typing import Tuple, Union
+    VERSION_TUPLE = Tuple[Union[int, str], ...]
+else:
+    VERSION_TUPLE = object
+
+version: str
+__version__: str
+__version_tuple__: VERSION_TUPLE
+version_tuple: VERSION_TUPLE
+
+__version__ = version = '4.2.2'
+__version_tuple__ = version_tuple = (4, 2, 2)
diff --git a/env/Lib/site-packages/pip/_vendor/platformdirs/windows.py b/env/Lib/site-packages/pip/_vendor/platformdirs/windows.py
new file mode 100644
index 00000000..d7bc9609
--- /dev/null
+++ b/env/Lib/site-packages/pip/_vendor/platformdirs/windows.py
@@ -0,0 +1,272 @@
+"""Windows."""
+
+from __future__ import annotations
+
+import os
+import sys
+from functools import lru_cache
+from typing import TYPE_CHECKING
+
+from .api import PlatformDirsABC
+
+if TYPE_CHECKING:
+    from collections.abc import Callable
+
+
+class Windows(PlatformDirsABC):
+    """
+    `MSDN on where to store app data files `_.
+
+    Makes use of the `appname `, `appauthor
+    `, `version `, `roaming
+    `, `opinion `, `ensure_exists
+    `.
+
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """
+        :return: data directory tied to the user, e.g.
+         ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname`` (not roaming) or
+         ``%USERPROFILE%\\AppData\\Roaming\\$appauthor\\$appname`` (roaming)
+        """
+        const = "CSIDL_APPDATA" if self.roaming else "CSIDL_LOCAL_APPDATA"
+        path = os.path.normpath(get_win_folder(const))
+        return self._append_parts(path)
+
+    def _append_parts(self, path: str, *, opinion_value: str | None = None) -> str:
+        params = []
+        if self.appname:
+            if self.appauthor is not False:
+                author = self.appauthor or self.appname
+                params.append(author)
+            params.append(self.appname)
+            if opinion_value is not None and self.opinion:
+                params.append(opinion_value)
+            if self.version:
+                params.append(self.version)
+        path = os.path.join(path, *params)  # noqa: PTH118
+        self._optionally_create_directory(path)
+        return path
+
+    @property
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname``"""
+        path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA"))
+        return self._append_parts(path)
+
+    @property
+    def user_config_dir(self) -> str:
+        """:return: config directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users, same as `site_data_dir`"""
+        return self.site_data_dir
+
+    @property
+    def user_cache_dir(self) -> str:
+        """
+        :return: cache directory tied to the user (if opinionated with ``Cache`` folder within ``$appname``) e.g.
+         ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname\\Cache\\$version``
+        """
+        path = os.path.normpath(get_win_folder("CSIDL_LOCAL_APPDATA"))
+        return self._append_parts(path, opinion_value="Cache")
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname\\Cache\\$version``"""
+        path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA"))
+        return self._append_parts(path, opinion_value="Cache")
+
+    @property
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user, same as `user_data_dir` if not opinionated else ``Logs`` in it"""
+        path = self.user_data_dir
+        if self.opinion:
+            path = os.path.join(path, "Logs")  # noqa: PTH118
+            self._optionally_create_directory(path)
+        return path
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user e.g. ``%USERPROFILE%\\Documents``"""
+        return os.path.normpath(get_win_folder("CSIDL_PERSONAL"))
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user e.g. ``%USERPROFILE%\\Downloads``"""
+        return os.path.normpath(get_win_folder("CSIDL_DOWNLOADS"))
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user e.g. ``%USERPROFILE%\\Pictures``"""
+        return os.path.normpath(get_win_folder("CSIDL_MYPICTURES"))
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user e.g. ``%USERPROFILE%\\Videos``"""
+        return os.path.normpath(get_win_folder("CSIDL_MYVIDEO"))
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user e.g. ``%USERPROFILE%\\Music``"""
+        return os.path.normpath(get_win_folder("CSIDL_MYMUSIC"))
+
+    @property
+    def user_desktop_dir(self) -> str:
+        """:return: desktop directory tied to the user, e.g. ``%USERPROFILE%\\Desktop``"""
+        return os.path.normpath(get_win_folder("CSIDL_DESKTOPDIRECTORY"))
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """
+        :return: runtime directory tied to the user, e.g.
+         ``%USERPROFILE%\\AppData\\Local\\Temp\\$appauthor\\$appname``
+        """
+        path = os.path.normpath(os.path.join(get_win_folder("CSIDL_LOCAL_APPDATA"), "Temp"))  # noqa: PTH118
+        return self._append_parts(path)
+
+    @property
+    def site_runtime_dir(self) -> str:
+        """:return: runtime directory shared by users, same as `user_runtime_dir`"""
+        return self.user_runtime_dir
+
+
+def get_win_folder_from_env_vars(csidl_name: str) -> str:
+    """Get folder from environment variables."""
+    result = get_win_folder_if_csidl_name_not_env_var(csidl_name)
+    if result is not None:
+        return result
+
+    env_var_name = {
+        "CSIDL_APPDATA": "APPDATA",
+        "CSIDL_COMMON_APPDATA": "ALLUSERSPROFILE",
+        "CSIDL_LOCAL_APPDATA": "LOCALAPPDATA",
+    }.get(csidl_name)
+    if env_var_name is None:
+        msg = f"Unknown CSIDL name: {csidl_name}"
+        raise ValueError(msg)
+    result = os.environ.get(env_var_name)
+    if result is None:
+        msg = f"Unset environment variable: {env_var_name}"
+        raise ValueError(msg)
+    return result
+
+
+def get_win_folder_if_csidl_name_not_env_var(csidl_name: str) -> str | None:
+    """Get a folder for a CSIDL name that does not exist as an environment variable."""
+    if csidl_name == "CSIDL_PERSONAL":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Documents")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_DOWNLOADS":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Downloads")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_MYPICTURES":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Pictures")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_MYVIDEO":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Videos")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_MYMUSIC":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Music")  # noqa: PTH118
+    return None
+
+
+def get_win_folder_from_registry(csidl_name: str) -> str:
+    """
+    Get folder from the registry.
+
+    This is a fallback technique at best. I'm not sure if using the registry for these guarantees us the correct answer
+    for all CSIDL_* names.
+
+    """
+    shell_folder_name = {
+        "CSIDL_APPDATA": "AppData",
+        "CSIDL_COMMON_APPDATA": "Common AppData",
+        "CSIDL_LOCAL_APPDATA": "Local AppData",
+        "CSIDL_PERSONAL": "Personal",
+        "CSIDL_DOWNLOADS": "{374DE290-123F-4565-9164-39C4925E467B}",
+        "CSIDL_MYPICTURES": "My Pictures",
+        "CSIDL_MYVIDEO": "My Video",
+        "CSIDL_MYMUSIC": "My Music",
+    }.get(csidl_name)
+    if shell_folder_name is None:
+        msg = f"Unknown CSIDL name: {csidl_name}"
+        raise ValueError(msg)
+    if sys.platform != "win32":  # only needed for mypy type checker to know that this code runs only on Windows
+        raise NotImplementedError
+    import winreg  # noqa: PLC0415
+
+    key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders")
+    directory, _ = winreg.QueryValueEx(key, shell_folder_name)
+    return str(directory)
+
+
+def get_win_folder_via_ctypes(csidl_name: str) -> str:
+    """Get folder with ctypes."""
+    # There is no 'CSIDL_DOWNLOADS'.
+    # Use 'CSIDL_PROFILE' (40) and append the default folder 'Downloads' instead.
+    # https://learn.microsoft.com/en-us/windows/win32/shell/knownfolderid
+
+    import ctypes  # noqa: PLC0415
+
+    csidl_const = {
+        "CSIDL_APPDATA": 26,
+        "CSIDL_COMMON_APPDATA": 35,
+        "CSIDL_LOCAL_APPDATA": 28,
+        "CSIDL_PERSONAL": 5,
+        "CSIDL_MYPICTURES": 39,
+        "CSIDL_MYVIDEO": 14,
+        "CSIDL_MYMUSIC": 13,
+        "CSIDL_DOWNLOADS": 40,
+        "CSIDL_DESKTOPDIRECTORY": 16,
+    }.get(csidl_name)
+    if csidl_const is None:
+        msg = f"Unknown CSIDL name: {csidl_name}"
+        raise ValueError(msg)
+
+    buf = ctypes.create_unicode_buffer(1024)
+    windll = getattr(ctypes, "windll")  # noqa: B009 # using getattr to avoid false positive with mypy type checker
+    windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf)
+
+    # Downgrade to short path name if it has high-bit chars.
+    if any(ord(c) > 255 for c in buf):  # noqa: PLR2004
+        buf2 = ctypes.create_unicode_buffer(1024)
+        if windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024):
+            buf = buf2
+
+    if csidl_name == "CSIDL_DOWNLOADS":
+        return os.path.join(buf.value, "Downloads")  # noqa: PTH118
+
+    return buf.value
+
+
+def _pick_get_win_folder() -> Callable[[str], str]:
+    try:
+        import ctypes  # noqa: PLC0415
+    except ImportError:
+        pass
+    else:
+        if hasattr(ctypes, "windll"):
+            return get_win_folder_via_ctypes
+    try:
+        import winreg  # noqa: PLC0415, F401
+    except ImportError:
+        return get_win_folder_from_env_vars
+    else:
+        return get_win_folder_from_registry
+
+
+get_win_folder = lru_cache(maxsize=None)(_pick_get_win_folder())
+
+__all__ = [
+    "Windows",
+]
diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__init__.py b/env/Lib/site-packages/pip/_vendor/pygments/__init__.py
new file mode 100644
index 00000000..60ae9bb8
--- /dev/null
+++ b/env/Lib/site-packages/pip/_vendor/pygments/__init__.py
@@ -0,0 +1,82 @@
+"""
+    Pygments
+    ~~~~~~~~
+
+    Pygments is a syntax highlighting package written in Python.
+
+    It is a generic syntax highlighter for general use in all kinds of software
+    such as forum systems, wikis or other applications that need to prettify
+    source code. Highlights are:
+
+    * a wide range of common languages and markup formats is supported
+    * special attention is paid to details, increasing quality by a fair amount
+    * support for new languages and formats are added easily
+    * a number of output formats, presently HTML, LaTeX, RTF, SVG, all image
+      formats that PIL supports, and ANSI sequences
+    * it is usable as a command-line tool and as a library
+    * ... and it highlights even Brainfuck!
+
+    The `Pygments master branch`_ is installable with ``easy_install Pygments==dev``.
+
+    .. _Pygments master branch:
+       https://github.com/pygments/pygments/archive/master.zip#egg=Pygments-dev
+
+    :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS.
+    :license: BSD, see LICENSE for details.
+"""
+from io import StringIO, BytesIO
+
+__version__ = '2.18.0'
+__docformat__ = 'restructuredtext'
+
+__all__ = ['lex', 'format', 'highlight']
+
+
+def lex(code, lexer):
+    """
+    Lex `code` with the `lexer` (must be a `Lexer` instance)
+    and return an iterable of tokens. Currently, this only calls
+    `lexer.get_tokens()`.
+    """
+    try:
+        return lexer.get_tokens(code)
+    except TypeError:
+        # Heuristic to catch a common mistake.
+        from pip._vendor.pygments.lexer import RegexLexer
+        if isinstance(lexer, type) and issubclass(lexer, RegexLexer):
+            raise TypeError('lex() argument must be a lexer instance, '
+                            'not a class')
+        raise
+
+
+def format(tokens, formatter, outfile=None):  # pylint: disable=redefined-builtin
+    """
+    Format ``tokens`` (an iterable of tokens) with the formatter ``formatter``
+    (a `Formatter` instance).
+
+    If ``outfile`` is given and a valid file object (an object with a
+    ``write`` method), the result will be written to it, otherwise it
+    is returned as a string.
+    """
+    try:
+        if not outfile:
+            realoutfile = getattr(formatter, 'encoding', None) and BytesIO() or StringIO()
+            formatter.format(tokens, realoutfile)
+            return realoutfile.getvalue()
+        else:
+            formatter.format(tokens, outfile)
+    except TypeError:
+        # Heuristic to catch a common mistake.
+        from pip._vendor.pygments.formatter import Formatter
+        if isinstance(formatter, type) and issubclass(formatter, Formatter):
+            raise TypeError('format() argument must be a formatter instance, '
+                            'not a class')
+        raise
+
+
+def highlight(code, lexer, formatter, outfile=None):
+    """
+    This is the most high-level highlighting function. It combines `lex` and
+    `format` in one function.
+    """
+    return format(lex(code, lexer), formatter, outfile)
diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__main__.py b/env/Lib/site-packages/pip/_vendor/pygments/__main__.py
new file mode 100644
index 00000000..dcc6e5ad
--- /dev/null
+++ b/env/Lib/site-packages/pip/_vendor/pygments/__main__.py
@@ -0,0 +1,17 @@
+"""
+    pygments.__main__
+    ~~~~~~~~~~~~~~~~~
+
+    Main entry point for ``python -m pygments``.
+
+    :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS.
+    :license: BSD, see LICENSE for details.
+"""
+
+import sys
+from pip._vendor.pygments.cmdline import main
+
+try:
+    sys.exit(main(sys.argv))
+except KeyboardInterrupt:
+    sys.exit(1)
diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..da1ebe065a1a72918b7b322e8bec6b77247e6a17
GIT binary patch
literal 3476
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
KR=#Ah^nU@JOTZTZ

literal 0
HcmV?d00001

diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..30eee3cbe8982bd541ece5e0d4395ad145e4afcd
GIT binary patch
literal 26572
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
Oe2Y3Jqs_!f{(k|yoFLEu

literal 0
HcmV?d00001

diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..293dfffab4a014b25765ca7acfd57e841927ceb7
GIT binary patch
literal 2616
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

literal 0
HcmV?d00001

diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..0cc898764c03efde7599da001f52f615c4286c3a
GIT binary patch
literal 38349
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%0Ad(U^

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 VLwx^WGxATA$73&|{kU_}{{W}hfiD06 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..11255a9b3df1d7c8b39bf1d23e7e16e8d01d235d GIT binary patch literal 2596 zcmd5;&rcgi6rQn-ZOm^cI7F?=wpB$;!MHR^6+==HFe<8R5O$^DI<*$>V76WFS~Cm5 z7Bo@S11Oc!OPlo6ToLWR(0`y8OO6m)KDqibKPBN6LYb;!HUeSIVWdrP>sC z%B^_5K`D>o1?g4VLAEPCkUpgYWJj?x*d_l8E`1V=LNS*oy2(NXZ7rwjV(zQv;S-Y! zHABfZlvLd$bVbgRkiD*v4MJ;+EE2INd4$gzA%qFLBi!+oqOnHpZ8wCTH4#ZvEyl}L$YajoU}%LR`Up6WV? zN62if?ZG!6TiE35Vr*gs@6{TX`Zw_xZS|Ft_a^$;u~+kwKwtw6-#Ru?4%Pi6P|z8- z+>B@>YeLR#IclsGf-cIVTAo#zL4#1rBU#QIF@p}vCrmQBoF|rB=#24GNz#jjXe1pY zGSz{0>BRft^a3T*&~uE8j;D#fo{p)@X{MTFv><1{lyiio3u<93vrcrypksBY#_WqA zR47_~U`#Wo3qd;}*1Pbq>mcrjo9bcKa7U<)?hLwf5$c0B z(OGq<*Y5}X2xIhZz=ewF7w28Pi{nA3NWtohMQ=wJGtqc*aVfJfKNnA0F3pgYU2OS8 z!Zz`EF(ujo((*(5D;XP{jD6)%I0O0s9>$OUC;A5f2@E~Ga(zD#+4dcD4?Hw>j7s-l z#XI=ii7rhXGfug$uMFd+-1(%)y#UJp%3Z4E&Udy9K;#V8)e%{7)G&FgjtT7n2S7Pq zSgU__e({s3WU>_*PB+>I7Ss=dokAsW8kLh)qyu0#$!$kKoFH>!KX9{w%;VBe_kO%r z84Q=Z!xe9sL-gTsRX}w0+N%mtUn02_i=HM9y#y(qjZPD1>^q6R4%SmIBh$p0Gmx1$ zrk7#YD@q*y>|CscHRr%`p@}s1%}fU&yV;jm z3~FlXawreKD~fE&;!35x;GYJ#c#VrUxZuPWjVw4T$|KIQi)a^L;?4iUJ8A!kxk-7W za{e=3!$T*=__^av?D~5KBRul^#dpf6?_glGjQS63y?>~T{73F~JbX0Zz|xV=f!`CN I$~6(Wx!?Kzf6nar)s1tKAlgyo?q zCl3W=E+oVR5|9OngRS9ccwFE)l@hEBiiC>>e>! zSeyuh;Zb-uhKM*49~gtF1w@X91Q`S$w_WvJ_5H%<^VRzL`-2$|sD3a4q<-J*0{}k9 zvbs#ca5f%tD+uw-ZN%$_^?6H~X#zdU(0#;cOXKk1SqgiQTi>;XuNH8o)Jx#Mc@O~Q zoIu0*lEEq+kF*EM&|!d%546*(ioyg(CAy2->h?DKI)wmEYhz{_9Q{z?9 zz%{`i90~wExvnK51_Kf46il@5d9ro0r{9n^bxQZQ*{mPBFLk z_`N-?o-1BOCyfj!?64S)QKv;zFG-prq=;^@ej7WX&q|QNb|rMfG{WB)+jtm# zu{XiK73VmM^0?^oxU_*4jwM*Kr$9%RX9~14QSD@Ee|02s6!NtO3U9%XtvL$0Y@0A7 z45T?vIzv{v31hx@61jC%mOOv7p?mru6M|Uj2U|_(6Z(Xadgwm$g_(ub34NijvYw?L z$nAu#LU;1?XZ}o$9N2GT(S!*+v@N$OC!INACZ0UG&Dk$^togQ-X*#H5(mIHtE0`$X zY*onaDU@(KCKKj-iL%&*R_9H_G*#Xhy!AGco!P|%nzR6S+ig?Uum3AUKGh)P61Ch- zfZ3V5Xx!T^$Rh+Alh${%wxqTlXhDJ4Sf;;l;h5SuB$3F_qi83BMwDwlTi8t;AQ_>_ z{eos^*SPNB>EgHbIDvUI#aK}#`X!#h zkPqOqG4wm#P3*>9zeP~Cn7VoeOA0GRph?ke=eVR=q_)g0w55*5$*J*bwQTyKvHHU? zXtQ}GGK+H_wn~)%e*72uF^QJ;oq1whXqbC{?#6uSy#C>bPmHf6D(Wpq2`-SIX0R%M zCronEzeA7 zgIJ=JI8IfcRKxuLQT!6!NV}Y>_d3GPPW-Iu;`9fvbjY>mVd4={BhkE#4qa6F?=T9TpFGF@t5kSbUL**SP9`oS=P*IUg&^XU+naMW{m+gBHl7l;Y6Jn2Z#_;tigyV37HqO7!$P4sIWu; zbWWwEopls84qO#$hKipEH-OE^ARL1TZIWaU00~aG;H~U9b4K$Ul~NUz8d9nNqr6U{ zHP<`Ku6=VQ%dVPvCfV^1t82~fT(Ol*d!{ZXy{kscWaF*G^z~)q&NX|*H|=xBzrK{R zyXQMn_QoYs<1?#+E?=HMx8PYgJKwRmBmK_ll>PKdv2#O*9j=wq-So+U^Ud53K$MI`4e6;;8uE!KEDBobzvvy=#ur8S8!P ztmi@Tx*54DURjXMJ~?*x)U0ROy6c&}WUYM9!^;b8i`D6U@1@G$d#X#7x2~2|&o!mX zYJv04x|RBq^w~nguVvkUN~<2)=08kxjj58x#Y3qQ?~={CT2wK6AYD|QY=34fqOzR0 z`_Uu|$c{?T_{7&;DSORo@vg_^>8hs3<@27|>vN@ZJAOU7P@bx4T0EXE_E06y;Io7A5Oate|v8B`gFtn-f1%3`(@+Yxn#$Z>oDbbC|&f^LXKccVDrsj znwAIv>8dkN_os``Q|cG+55=X^Kl@eN?7(c>eP6n`nzGuvw!fY}8z{?$b+As^iphG< zG-cXQ(`~hC|6C}2zxyE;U?q1X{>|0C)xWn8RF5l(ToB zI*xe+Edo%CAL{BQjFFxY1eey6{FwJi$T9%VThm>F2yKH zb@6~aq}3}kwUR7~5lO99iU~>-TpUG03_w6JW;{e_SyYPJFLd|x`n{drOWv+tt?H>2 zhKi~dVO0dJW13o`B0mxlPLWgam9}ol3t(M`G2URznB6Qx*zz3hc#gQ|XxDSJd(Boh sdG_ALsf*K}q-_V1=4Xz|*@iERl0`2K828|prsKHmRUDh~NtMli0gs)>&;S4c literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e3d190965d3f400b3ff269c26001de231f2a033d GIT binary patch literal 4744 zcmdT|-ES1v6`$FivG)rv1@je?<|ce@Fl$Q4mqn2bxSGwn&d#j8m_FpK zSNQDxIQPuC_nh-P=koV0TQU-~Lx1>Pr9UT0|H47k)OKfW7&=RmDNRbIY$j}ZQcg%8 zNM`c7WGXcAAQ|#aCdI4@vpo+I?K!29DD>(I3^N3p*QnH}1MpOFW%%O3HPgRQ1c0aNIdd8&_Ora^hEYU+gxiM;(*64op#ExQnZtINDIge4;1M-2NGB_$| z3!f5OOBeBs=W(G_4DaI{>Z%jlb!Q34MWsq-sqIy*kPW|Fp+37xuNX5z-w3JP9;|JJ&XPo> zNf{h1Vak(9aGhk39(Bx*rYGR;o0H;O7j+A+-AGY1aQoo_#tKT1(lke}QB4annpShox{dvurv0L>+wGNJ zO*36X)9y=asQ2@qj}A|rr#f@MxKrbA9hD6m>37owv$U-16yBPd8@K zGp9Vu8`3U=@-7>S!eJ<~3K&BHxq|dVhxY=xF0Ce#YKmc`ij@r)i2T^r%0M<=pqVif z*X2nCBXv?uNVJElRGsM&{2NFdud1m4Z?6eaJee|kfTqn}pcyj-G}}lQvO({77`#nS z7-U=oXXIF+UyZ;`*Qj50O^7z%r_A9Z1R-?0y`O`9oC+t09XAX-!>xIi4JPY^2!FjG zK4m1=X^nmSTl)==C23xsm$Z1P+mX9S*Tm z6abw$>_u>}x!igAB=Ed!Z4a!?Y(Xg-8}RpSoWT*yBJg*$==;J{w`2bv@jSahN^L|b z#ksl87!(x*JlaA?7b$>Izs{U^D;hKeez!bB4M^mN&$^U5hai)>bqGh;Tqu%{A+?CK z4rwdiiz!#HQr!%51-L&cq}i*Wa|qUG=ODpo(A$PC5h`paGUSn<>)cNWuL*i1JVfJ1 zfuusT8MDnTkq3$4JHWt8Kp=#2Qf}*w_kR1{lWhaHk37u1+RAQQ-ha1vr?`?m{N&)_ zKhOMW=Br&_@BjAAZ{B=#aCG79jj_eC<#$(d`&!_AR~N4?S61=|ALj>G@`Lv#zPxn* z($~tjsc%w`@*@vZBQH85I-+pK!_X1VxIX@14qFFUO}Q?EsS-^yw2&Tw{{OU)IAnau z5Qr9-5OXu-Me>4iI(I)-kl8-?K6@PqUw@5&Q`~RnqFcn#Y2?9hg-c9HTl;S`7n{q6 z9_8P-xBp?j_%Ky`@$hjZ{`LPS5}|bOZjhPc*#91}x=B=mlx^K#>0rgL67z{`azma^ z%e%Eov`5AMt{skB=b}aM;f$<{uVmXRf zP_du{i`^7!#<~ZYk|GWa3807t;3A_oEShB6qP7X{IRPRgfQ2%0U(4UYKFqZC*cE;wD{}XcNxsLpCOh58Qd}8A;3wgBsP^w zgW^P(!(X~xup>vQRD_Lj8Bl@@h;JTo?hri1!zO$%p!%L`!OMq1odQ=U9w_mxT>+_W zy$3-k+*~X!Rv(jSgv*@}{>en4uM0rgYhYMLkYJ$^q9;012SNi?=*`dxgCs}})CzO! zULh%|~mlTC6{A83VUew^Efc@+ld7SF-YfVGp_^e0DZom1~a`JBWPWDk||Ftu#N=7{`ukKdVq1D_DwSTpkPrEePW4|~L^7)Y literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..82a1412a02d377e71381f4da358fc5858b2d502c GIT binary patch literal 12086 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..32cb0829f494114b766228ea598b8cbb3f1bcc59 GIT binary patch literal 8177 zcmai2-BVjfmcLiJlCD0G0AXws8*6MQHjcp#*hvN_B<91$HUfj;3TkGIq9L|C#Ui?i*0B?H{h50vtokMl-DB$gN@EG8UI(Q@CN9*8C7(AME zeXS@s0$j~s7)DPvh+fEhPnm8;8q{%9!CvJ1Ld6=ZeaH{A9|fQeARTHQ1)&b25UsN( zg$>!FFq52;h@en}Nlpu1wy1$gx+Eef6lIdLf|o6dF-f;X1ce$w5<*S1&YlyfY*90l zye<(zq4-{sY`wX)e4&EBLfJP(f7zma%u+r7v@%Jr)D;xk&m?aNUbg4}lk`bMQ0O3& zyeoLwqPD#x*?y@dDD)E39u&N6(IF=q-@M(A%`mIs%m~>H|p> zy+iBlyu<~C-UUe`x=8EnfoZ>B9V9=+#ej$eS8@8EFFr9?6Si*L~D4>KhhZD8~lwkow4cJ{=zc*bhEm~$~ z&go4I2r|)q_U!AO-DkVcB~pv5^SC>D!of!Vbi&3saq-5~@Yuv;7aO)WXQsg@?oISh z4s!X(m4Ttr$)Ut-(Mllf7-kN}Op6uLR&|-@^yYi0U}ai`r=bU_(_Z9(r-#O#AwKpD z@gpA~0py2TM**mVNQXMKsCEQNC^Jhp5MBF)CRS>jEVXNguQB5c#iLbQJv8|s}I!G={Z3z?b8p0hLK79J>;p;u@3 z3@*&ijF_nz+jMYe$w=QaGT5FenWZzyc^If@oe|k`h6TH;v`Bn*DQ7x&8l|VY7!rd4 z?RTK6DAj1=inkhzuV~e1^P^~cH4=Mpb@l3+^Eh&-8sGo$!tXAu3~u?9SbQ_uzU5bf zkq6<`@co8rta&B$oUVVD@2T$sP@W%!>Y?J)ye)jRq$F$DqGC~Rc6f-_#tzZ#a*CyI zhsT0%28C#bm9cGVGLf+8%|rBL(kz%xGI=MyV@(324{tjRRYm!q126s2x1#-~!J;Qc zdS^)KkSsk?Ks;2IAZTS}LA6h*JEps&ij-JV>Lmp2VKvc!BgLtu#F8R@ z9Lr3V9h^*BbaWDc6s4fmL^-d4kVP$acv-GmH1~+NfNzW4%o8?TGX`O7-4#Z6kYw^G zbhVRERg{0kn%9r58(+Qhr>?KM9=Dx(8b9zP-mw|)_{;IXdcTdIdlWhMG+@A`kW{6};% z*7r#7`|*PXa8CSF*~oDT zOGu0E1uIS~x@9ezT~-IJPSffvt>^@qU6!OQzgb1kSet&b-&3j$O_fXATEG|IZua=v zw{^`I+Kw<*^}Vz0_xM_#>rins)Z@DjS-R0#7(zhsLw26#hO}bOD-hg%7fMU~d zRFtiV5@}i+TIqYF9pss@b6?f282Y^2c?&Kn@{kmVq2-}Tx}?~ChwexAg9EZg)7MM3 zc6bR5*p;;_YEbzF%xc%MNe@l;u)V9^Z`9xzrH7tz7pBPqFiE*9g2*EF;&oORJ_+ z*Wm7sqvd=GTYK8&;-5D7VrRY}HjE8VTmzPG;e?U1uz}#s%ihQgvRHazlqeU{b4DS9 z(f{KNzRI8W0h_D!GDNV$M?$6zcRM`K)0pqS0#h^ zfpzb{MOL(@vDP(bed^oT(N%5Bt27<{E*z^|MA|f?`2&hze}MfRZAf6u<>gD-@xCYQcnpq0AD`Y@T@FmFg+vpwK=GP#h@p#4`_l z<}*-0e?CuCP{|?d0-cG+2HQ5+hS_)!2yC!xcS8ZY_8b)GV}mUlrenVb#U?5Ym4_~Q z7&Z?oc~CK-YraTSm|5{QQDLGb7zk{pK_Lwt(k0?em!L-)jHJN`%qIh5Wni2P*v^1n z1`K7uLI%2LY$#>og@-v1&S=L72_%!Kn1(mRVVJoLG|{H;fq(MI9$Cjoa?5kF5j;^*6dgvTLMoiZGP#RAdCAQcP; ztON#%dHMxO0+(?CTV|S_V=PUG4o3h@K!=0}F+5742kjiB1G!Tgw{aO2i9UgCY|Ues z#T0wQUKEcb66i0RImavz-vE8qk|3BW^0ECx1qY5}5*%7c;}W0PB|1wwitoCSG1EjJ zw~8=V(DIEKDV!tTDI-Jl_YKQ5;7}p{%ei98$PxXDyH|)dXgJ`ci?g%l0@3^73UJKy zEusy~85SKqXXfd_L%f5VMcP#A??E@MS|8>K<1p^tbryq0jm|?814+VZNZ`pl!N+V`y|)t0q=-z(5OdtX(8@y{a_AAI}i4WHdvzEjcQZSWwunyiGX z!RUiStA{H7s@_093oE|w1Oe*d#s{6Nos~c}5OMp3VlEPFe9*qy4*hCGH2x%dWHWlC z60SnOzSX{pUKQ#)Y;EaEtfk_+7p}(kK@)MCZNFb_+iu>kHg5HPtTub9T5zL#%S%b< z?4wM8F}mW5ZS-sf852@`;f?cKVa7xhUkI26#zZO8vlU}Zv*L>Y6K6~dFi*6WO|50) z+}1t@wK8b`rnVoT{R}$5pnaR#K7bA~s12acMwdqcc!>drc3L{jpmwS=vOEGhM;LIF z&b?>r7-NnD<63x`0k2SitDj)NNf&sc@!34dY zk2y3$p<1T>f`gwhJ?^|Dhi)>6JHp^lY6q0&5MmH_GUm`MgZMNu9GYVg&nS~a@a0#V z|1A#X7{o`+bEvQbDssr8&_>U;%~|*-2<-5gmpL@gAU@h{4lV4^TIA3j2JxByl0!=Z zss;Kk7ks*-`#*E2-=p{%ARGf8mNtWwbyI(cL&E?yg2oljUZw04t#wmth4@_K;3$AB z?3^8^Y%MnLad3iz?xvsQ;1mTv<4(T8q4&8S%d7KSA8_zPrpH(L5r?K_*JmGd=o1QU s^i;JlH%STRKT5EG>=cO!QjA%yONga{&?V0^lCR@gnT@<0WiP@11Gi`#E&u=k literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f332f6470d020d1349cbf81fa49aa8fb0ed6e13a GIT binary patch literal 32960 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1dad6f166dd4ae19e97085ff79756789b78c2c5a GIT binary patch literal 14057 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 B1>pby literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/cmdline.py b/env/Lib/site-packages/pip/_vendor/pygments/cmdline.py new file mode 100644 index 00000000..0a7072ef --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/cmdline.py @@ -0,0 +1,668 @@ +""" + pygments.cmdline + ~~~~~~~~~~~~~~~~ + + Command line interface. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import os +import sys +import shutil +import argparse +from textwrap import dedent + +from pip._vendor.pygments import __version__, highlight +from pip._vendor.pygments.util import ClassNotFound, OptionError, docstring_headline, \ + guess_decode, guess_decode_from_terminal, terminal_encoding, \ + UnclosingTextIOWrapper +from pip._vendor.pygments.lexers import get_all_lexers, get_lexer_by_name, guess_lexer, \ + load_lexer_from_file, get_lexer_for_filename, find_lexer_class_for_filename +from pip._vendor.pygments.lexers.special import TextLexer +from pip._vendor.pygments.formatters.latex import LatexEmbeddedLexer, LatexFormatter +from pip._vendor.pygments.formatters import get_all_formatters, get_formatter_by_name, \ + load_formatter_from_file, get_formatter_for_filename, find_formatter_class +from pip._vendor.pygments.formatters.terminal import TerminalFormatter +from pip._vendor.pygments.formatters.terminal256 import Terminal256Formatter, TerminalTrueColorFormatter +from pip._vendor.pygments.filters import get_all_filters, find_filter_class +from pip._vendor.pygments.styles import get_all_styles, get_style_by_name + + +def _parse_options(o_strs): + opts = {} + if not o_strs: + return opts + for o_str in o_strs: + if not o_str.strip(): + continue + o_args = o_str.split(',') + for o_arg in o_args: + o_arg = o_arg.strip() + try: + o_key, o_val = o_arg.split('=', 1) + o_key = o_key.strip() + o_val = o_val.strip() + except ValueError: + opts[o_arg] = True + else: + opts[o_key] = o_val + return opts + + +def _parse_filters(f_strs): + filters = [] + if not f_strs: + return filters + for f_str in f_strs: + if ':' in f_str: + fname, fopts = f_str.split(':', 1) + filters.append((fname, _parse_options([fopts]))) + else: + filters.append((f_str, {})) + return filters + + +def _print_help(what, name): + try: + if what == 'lexer': + cls = get_lexer_by_name(name) + print(f"Help on the {cls.name} lexer:") + print(dedent(cls.__doc__)) + elif what == 'formatter': + cls = find_formatter_class(name) + print(f"Help on the {cls.name} formatter:") + print(dedent(cls.__doc__)) + elif what == 'filter': + cls = find_filter_class(name) + print(f"Help on the {name} filter:") + print(dedent(cls.__doc__)) + return 0 + except (AttributeError, ValueError): + print(f"{what} not found!", file=sys.stderr) + return 1 + + +def _print_list(what): + if what == 'lexer': + print() + print("Lexers:") + print("~~~~~~~") + + info = [] + for fullname, names, exts, _ in get_all_lexers(): + tup = (', '.join(names)+':', fullname, + exts and '(filenames ' + ', '.join(exts) + ')' or '') + info.append(tup) + info.sort() + for i in info: + print(('* {}\n {} {}').format(*i)) + + elif what == 'formatter': + print() + print("Formatters:") + print("~~~~~~~~~~~") + + info = [] + for cls in get_all_formatters(): + doc = docstring_headline(cls) + tup = (', '.join(cls.aliases) + ':', doc, cls.filenames and + '(filenames ' + ', '.join(cls.filenames) + ')' or '') + info.append(tup) + info.sort() + for i in info: + print(('* {}\n {} {}').format(*i)) + + elif what == 'filter': + print() + print("Filters:") + print("~~~~~~~~") + + for name in get_all_filters(): + cls = find_filter_class(name) + print("* " + name + ':') + print(f" {docstring_headline(cls)}") + + elif what == 'style': + print() + print("Styles:") + print("~~~~~~~") + + for name in get_all_styles(): + cls = get_style_by_name(name) + print("* " + name + ':') + print(f" {docstring_headline(cls)}") + + +def _print_list_as_json(requested_items): + import json + result = {} + if 'lexer' in requested_items: + info = {} + for fullname, names, filenames, mimetypes in get_all_lexers(): + info[fullname] = { + 'aliases': names, + 'filenames': filenames, + 'mimetypes': mimetypes + } + result['lexers'] = info + + if 'formatter' in requested_items: + info = {} + for cls in get_all_formatters(): + doc = docstring_headline(cls) + info[cls.name] = { + 'aliases': cls.aliases, + 'filenames': cls.filenames, + 'doc': doc + } + result['formatters'] = info + + if 'filter' in requested_items: + info = {} + for name in get_all_filters(): + cls = find_filter_class(name) + info[name] = { + 'doc': docstring_headline(cls) + } + result['filters'] = info + + if 'style' in requested_items: + info = {} + for name in get_all_styles(): + cls = get_style_by_name(name) + info[name] = { + 'doc': docstring_headline(cls) + } + result['styles'] = info + + json.dump(result, sys.stdout) + +def main_inner(parser, argns): + if argns.help: + parser.print_help() + return 0 + + if argns.V: + print(f'Pygments version {__version__}, (c) 2006-2024 by Georg Brandl, Matthäus ' + 'Chajdas and contributors.') + return 0 + + def is_only_option(opt): + return not any(v for (k, v) in vars(argns).items() if k != opt) + + # handle ``pygmentize -L`` + if argns.L is not None: + arg_set = set() + for k, v in vars(argns).items(): + if v: + arg_set.add(k) + + arg_set.discard('L') + arg_set.discard('json') + + if arg_set: + parser.print_help(sys.stderr) + return 2 + + # print version + if not argns.json: + main(['', '-V']) + allowed_types = {'lexer', 'formatter', 'filter', 'style'} + largs = [arg.rstrip('s') for arg in argns.L] + if any(arg not in allowed_types for arg in largs): + parser.print_help(sys.stderr) + return 0 + if not largs: + largs = allowed_types + if not argns.json: + for arg in largs: + _print_list(arg) + else: + _print_list_as_json(largs) + return 0 + + # handle ``pygmentize -H`` + if argns.H: + if not is_only_option('H'): + parser.print_help(sys.stderr) + return 2 + what, name = argns.H + if what not in ('lexer', 'formatter', 'filter'): + parser.print_help(sys.stderr) + return 2 + return _print_help(what, name) + + # parse -O options + parsed_opts = _parse_options(argns.O or []) + + # parse -P options + for p_opt in argns.P or []: + try: + name, value = p_opt.split('=', 1) + except ValueError: + parsed_opts[p_opt] = True + else: + parsed_opts[name] = value + + # encodings + inencoding = parsed_opts.get('inencoding', parsed_opts.get('encoding')) + outencoding = parsed_opts.get('outencoding', parsed_opts.get('encoding')) + + # handle ``pygmentize -N`` + if argns.N: + lexer = find_lexer_class_for_filename(argns.N) + if lexer is None: + lexer = TextLexer + + print(lexer.aliases[0]) + return 0 + + # handle ``pygmentize -C`` + if argns.C: + inp = sys.stdin.buffer.read() + try: + lexer = guess_lexer(inp, inencoding=inencoding) + except ClassNotFound: + lexer = TextLexer + + print(lexer.aliases[0]) + return 0 + + # handle ``pygmentize -S`` + S_opt = argns.S + a_opt = argns.a + if S_opt is not None: + f_opt = argns.f + if not f_opt: + parser.print_help(sys.stderr) + return 2 + if argns.l or argns.INPUTFILE: + parser.print_help(sys.stderr) + return 2 + + try: + parsed_opts['style'] = S_opt + fmter = get_formatter_by_name(f_opt, **parsed_opts) + except ClassNotFound as err: + print(err, file=sys.stderr) + return 1 + + print(fmter.get_style_defs(a_opt or '')) + return 0 + + # if no -S is given, -a is not allowed + if argns.a is not None: + parser.print_help(sys.stderr) + return 2 + + # parse -F options + F_opts = _parse_filters(argns.F or []) + + # -x: allow custom (eXternal) lexers and formatters + allow_custom_lexer_formatter = bool(argns.x) + + # select lexer + lexer = None + + # given by name? + lexername = argns.l + if lexername: + # custom lexer, located relative to user's cwd + if allow_custom_lexer_formatter and '.py' in lexername: + try: + filename = None + name = None + if ':' in lexername: + filename, name = lexername.rsplit(':', 1) + + if '.py' in name: + # This can happen on Windows: If the lexername is + # C:\lexer.py -- return to normal load path in that case + name = None + + if filename and name: + lexer = load_lexer_from_file(filename, name, + **parsed_opts) + else: + lexer = load_lexer_from_file(lexername, **parsed_opts) + except ClassNotFound as err: + print('Error:', err, file=sys.stderr) + return 1 + else: + try: + lexer = get_lexer_by_name(lexername, **parsed_opts) + except (OptionError, ClassNotFound) as err: + print('Error:', err, file=sys.stderr) + return 1 + + # read input code + code = None + + if argns.INPUTFILE: + if argns.s: + print('Error: -s option not usable when input file specified', + file=sys.stderr) + return 2 + + infn = argns.INPUTFILE + try: + with open(infn, 'rb') as infp: + code = infp.read() + except Exception as err: + print('Error: cannot read infile:', err, file=sys.stderr) + return 1 + if not inencoding: + code, inencoding = guess_decode(code) + + # do we have to guess the lexer? + if not lexer: + try: + lexer = get_lexer_for_filename(infn, code, **parsed_opts) + except ClassNotFound as err: + if argns.g: + try: + lexer = guess_lexer(code, **parsed_opts) + except ClassNotFound: + lexer = TextLexer(**parsed_opts) + else: + print('Error:', err, file=sys.stderr) + return 1 + except OptionError as err: + print('Error:', err, file=sys.stderr) + return 1 + + elif not argns.s: # treat stdin as full file (-s support is later) + # read code from terminal, always in binary mode since we want to + # decode ourselves and be tolerant with it + code = sys.stdin.buffer.read() # use .buffer to get a binary stream + if not inencoding: + code, inencoding = guess_decode_from_terminal(code, sys.stdin) + # else the lexer will do the decoding + if not lexer: + try: + lexer = guess_lexer(code, **parsed_opts) + except ClassNotFound: + lexer = TextLexer(**parsed_opts) + + else: # -s option needs a lexer with -l + if not lexer: + print('Error: when using -s a lexer has to be selected with -l', + file=sys.stderr) + return 2 + + # process filters + for fname, fopts in F_opts: + try: + lexer.add_filter(fname, **fopts) + except ClassNotFound as err: + print('Error:', err, file=sys.stderr) + return 1 + + # select formatter + outfn = argns.o + fmter = argns.f + if fmter: + # custom formatter, located relative to user's cwd + if allow_custom_lexer_formatter and '.py' in fmter: + try: + filename = None + name = None + if ':' in fmter: + # Same logic as above for custom lexer + filename, name = fmter.rsplit(':', 1) + + if '.py' in name: + name = None + + if filename and name: + fmter = load_formatter_from_file(filename, name, + **parsed_opts) + else: + fmter = load_formatter_from_file(fmter, **parsed_opts) + except ClassNotFound as err: + print('Error:', err, file=sys.stderr) + return 1 + else: + try: + fmter = get_formatter_by_name(fmter, **parsed_opts) + except (OptionError, ClassNotFound) as err: + print('Error:', err, file=sys.stderr) + return 1 + + if outfn: + if not fmter: + try: + fmter = get_formatter_for_filename(outfn, **parsed_opts) + except (OptionError, ClassNotFound) as err: + print('Error:', err, file=sys.stderr) + return 1 + try: + outfile = open(outfn, 'wb') + except Exception as err: + print('Error: cannot open outfile:', err, file=sys.stderr) + return 1 + else: + if not fmter: + if os.environ.get('COLORTERM','') in ('truecolor', '24bit'): + fmter = TerminalTrueColorFormatter(**parsed_opts) + elif '256' in os.environ.get('TERM', ''): + fmter = Terminal256Formatter(**parsed_opts) + else: + fmter = TerminalFormatter(**parsed_opts) + outfile = sys.stdout.buffer + + # determine output encoding if not explicitly selected + if not outencoding: + if outfn: + # output file? use lexer encoding for now (can still be None) + fmter.encoding = inencoding + else: + # else use terminal encoding + fmter.encoding = terminal_encoding(sys.stdout) + + # provide coloring under Windows, if possible + if not outfn and sys.platform in ('win32', 'cygwin') and \ + fmter.name in ('Terminal', 'Terminal256'): # pragma: no cover + # unfortunately colorama doesn't support binary streams on Py3 + outfile = UnclosingTextIOWrapper(outfile, encoding=fmter.encoding) + fmter.encoding = None + try: + import colorama.initialise + except ImportError: + pass + else: + outfile = colorama.initialise.wrap_stream( + outfile, convert=None, strip=None, autoreset=False, wrap=True) + + # When using the LaTeX formatter and the option `escapeinside` is + # specified, we need a special lexer which collects escaped text + # before running the chosen language lexer. + escapeinside = parsed_opts.get('escapeinside', '') + if len(escapeinside) == 2 and isinstance(fmter, LatexFormatter): + left = escapeinside[0] + right = escapeinside[1] + lexer = LatexEmbeddedLexer(left, right, lexer) + + # ... and do it! + if not argns.s: + # process whole input as per normal... + try: + highlight(code, lexer, fmter, outfile) + finally: + if outfn: + outfile.close() + return 0 + else: + # line by line processing of stdin (eg: for 'tail -f')... + try: + while 1: + line = sys.stdin.buffer.readline() + if not line: + break + if not inencoding: + line = guess_decode_from_terminal(line, sys.stdin)[0] + highlight(line, lexer, fmter, outfile) + if hasattr(outfile, 'flush'): + outfile.flush() + return 0 + except KeyboardInterrupt: # pragma: no cover + return 0 + finally: + if outfn: + outfile.close() + + +class HelpFormatter(argparse.HelpFormatter): + def __init__(self, prog, indent_increment=2, max_help_position=16, width=None): + if width is None: + try: + width = shutil.get_terminal_size().columns - 2 + except Exception: + pass + argparse.HelpFormatter.__init__(self, prog, indent_increment, + max_help_position, width) + + +def main(args=sys.argv): + """ + Main command line entry point. + """ + desc = "Highlight an input file and write the result to an output file." + parser = argparse.ArgumentParser(description=desc, add_help=False, + formatter_class=HelpFormatter) + + operation = parser.add_argument_group('Main operation') + lexersel = operation.add_mutually_exclusive_group() + lexersel.add_argument( + '-l', metavar='LEXER', + help='Specify the lexer to use. (Query names with -L.) If not ' + 'given and -g is not present, the lexer is guessed from the filename.') + lexersel.add_argument( + '-g', action='store_true', + help='Guess the lexer from the file contents, or pass through ' + 'as plain text if nothing can be guessed.') + operation.add_argument( + '-F', metavar='FILTER[:options]', action='append', + help='Add a filter to the token stream. (Query names with -L.) ' + 'Filter options are given after a colon if necessary.') + operation.add_argument( + '-f', metavar='FORMATTER', + help='Specify the formatter to use. (Query names with -L.) ' + 'If not given, the formatter is guessed from the output filename, ' + 'and defaults to the terminal formatter if the output is to the ' + 'terminal or an unknown file extension.') + operation.add_argument( + '-O', metavar='OPTION=value[,OPTION=value,...]', action='append', + help='Give options to the lexer and formatter as a comma-separated ' + 'list of key-value pairs. ' + 'Example: `-O bg=light,python=cool`.') + operation.add_argument( + '-P', metavar='OPTION=value', action='append', + help='Give a single option to the lexer and formatter - with this ' + 'you can pass options whose value contains commas and equal signs. ' + 'Example: `-P "heading=Pygments, the Python highlighter"`.') + operation.add_argument( + '-o', metavar='OUTPUTFILE', + help='Where to write the output. Defaults to standard output.') + + operation.add_argument( + 'INPUTFILE', nargs='?', + help='Where to read the input. Defaults to standard input.') + + flags = parser.add_argument_group('Operation flags') + flags.add_argument( + '-v', action='store_true', + help='Print a detailed traceback on unhandled exceptions, which ' + 'is useful for debugging and bug reports.') + flags.add_argument( + '-s', action='store_true', + help='Process lines one at a time until EOF, rather than waiting to ' + 'process the entire file. This only works for stdin, only for lexers ' + 'with no line-spanning constructs, and is intended for streaming ' + 'input such as you get from `tail -f`. ' + 'Example usage: `tail -f sql.log | pygmentize -s -l sql`.') + flags.add_argument( + '-x', action='store_true', + help='Allow custom lexers and formatters to be loaded from a .py file ' + 'relative to the current working directory. For example, ' + '`-l ./customlexer.py -x`. By default, this option expects a file ' + 'with a class named CustomLexer or CustomFormatter; you can also ' + 'specify your own class name with a colon (`-l ./lexer.py:MyLexer`). ' + 'Users should be very careful not to use this option with untrusted ' + 'files, because it will import and run them.') + flags.add_argument('--json', help='Output as JSON. This can ' + 'be only used in conjunction with -L.', + default=False, + action='store_true') + + special_modes_group = parser.add_argument_group( + 'Special modes - do not do any highlighting') + special_modes = special_modes_group.add_mutually_exclusive_group() + special_modes.add_argument( + '-S', metavar='STYLE -f formatter', + help='Print style definitions for STYLE for a formatter ' + 'given with -f. The argument given by -a is formatter ' + 'dependent.') + special_modes.add_argument( + '-L', nargs='*', metavar='WHAT', + help='List lexers, formatters, styles or filters -- ' + 'give additional arguments for the thing(s) you want to list ' + '(e.g. "styles"), or omit them to list everything.') + special_modes.add_argument( + '-N', metavar='FILENAME', + help='Guess and print out a lexer name based solely on the given ' + 'filename. Does not take input or highlight anything. If no specific ' + 'lexer can be determined, "text" is printed.') + special_modes.add_argument( + '-C', action='store_true', + help='Like -N, but print out a lexer name based solely on ' + 'a given content from standard input.') + special_modes.add_argument( + '-H', action='store', nargs=2, metavar=('NAME', 'TYPE'), + help='Print detailed help for the object of type , ' + 'where is one of "lexer", "formatter" or "filter".') + special_modes.add_argument( + '-V', action='store_true', + help='Print the package version.') + special_modes.add_argument( + '-h', '--help', action='store_true', + help='Print this help.') + special_modes_group.add_argument( + '-a', metavar='ARG', + help='Formatter-specific additional argument for the -S (print ' + 'style sheet) mode.') + + argns = parser.parse_args(args[1:]) + + try: + return main_inner(parser, argns) + except BrokenPipeError: + # someone closed our stdout, e.g. by quitting a pager. + return 0 + except Exception: + if argns.v: + print(file=sys.stderr) + print('*' * 65, file=sys.stderr) + print('An unhandled exception occurred while highlighting.', + file=sys.stderr) + print('Please report the whole traceback to the issue tracker at', + file=sys.stderr) + print('.', + file=sys.stderr) + print('*' * 65, file=sys.stderr) + print(file=sys.stderr) + raise + import traceback + info = traceback.format_exception(*sys.exc_info()) + msg = info[-1].strip() + if len(info) >= 3: + # extract relevant file and position info + msg += '\n (f{})'.format(info[-2].split('\n')[0].strip()[1:]) + print(file=sys.stderr) + print('*** Error while highlighting:', file=sys.stderr) + print(msg, file=sys.stderr) + print('*** If this is a bug you want to report, please rerun with -v.', + file=sys.stderr) + return 1 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/console.py b/env/Lib/site-packages/pip/_vendor/pygments/console.py new file mode 100644 index 00000000..4c1a0621 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/console.py @@ -0,0 +1,70 @@ +""" + pygments.console + ~~~~~~~~~~~~~~~~ + + Format colored console output. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +esc = "\x1b[" + +codes = {} +codes[""] = "" +codes["reset"] = esc + "39;49;00m" + +codes["bold"] = esc + "01m" +codes["faint"] = esc + "02m" +codes["standout"] = esc + "03m" +codes["underline"] = esc + "04m" +codes["blink"] = esc + "05m" +codes["overline"] = esc + "06m" + +dark_colors = ["black", "red", "green", "yellow", "blue", + "magenta", "cyan", "gray"] +light_colors = ["brightblack", "brightred", "brightgreen", "brightyellow", "brightblue", + "brightmagenta", "brightcyan", "white"] + +x = 30 +for dark, light in zip(dark_colors, light_colors): + codes[dark] = esc + "%im" % x + codes[light] = esc + "%im" % (60 + x) + x += 1 + +del dark, light, x + +codes["white"] = codes["bold"] + + +def reset_color(): + return codes["reset"] + + +def colorize(color_key, text): + return codes[color_key] + text + codes["reset"] + + +def ansiformat(attr, text): + """ + Format ``text`` with a color and/or some attributes:: + + color normal color + *color* bold color + _color_ underlined color + +color+ blinking color + """ + result = [] + if attr[:1] == attr[-1:] == '+': + result.append(codes['blink']) + attr = attr[1:-1] + if attr[:1] == attr[-1:] == '*': + result.append(codes['bold']) + attr = attr[1:-1] + if attr[:1] == attr[-1:] == '_': + result.append(codes['underline']) + attr = attr[1:-1] + result.append(codes[attr]) + result.append(text) + result.append(codes['reset']) + return ''.join(result) diff --git a/env/Lib/site-packages/pip/_vendor/pygments/filter.py b/env/Lib/site-packages/pip/_vendor/pygments/filter.py new file mode 100644 index 00000000..aa6f7604 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/filter.py @@ -0,0 +1,70 @@ +""" + pygments.filter + ~~~~~~~~~~~~~~~ + + Module that implements the default filter. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + + +def apply_filters(stream, filters, lexer=None): + """ + Use this method to apply an iterable of filters to + a stream. If lexer is given it's forwarded to the + filter, otherwise the filter receives `None`. + """ + def _apply(filter_, stream): + yield from filter_.filter(lexer, stream) + for filter_ in filters: + stream = _apply(filter_, stream) + return stream + + +def simplefilter(f): + """ + Decorator that converts a function into a filter:: + + @simplefilter + def lowercase(self, lexer, stream, options): + for ttype, value in stream: + yield ttype, value.lower() + """ + return type(f.__name__, (FunctionFilter,), { + '__module__': getattr(f, '__module__'), + '__doc__': f.__doc__, + 'function': f, + }) + + +class Filter: + """ + Default filter. Subclass this class or use the `simplefilter` + decorator to create own filters. + """ + + def __init__(self, **options): + self.options = options + + def filter(self, lexer, stream): + raise NotImplementedError() + + +class FunctionFilter(Filter): + """ + Abstract class used by `simplefilter` to create simple + function filters on the fly. The `simplefilter` decorator + automatically creates subclasses of this class for + functions passed to it. + """ + function = None + + def __init__(self, **options): + if not hasattr(self, 'function'): + raise TypeError(f'{self.__class__.__name__!r} used without bound function') + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + # pylint: disable=not-callable + yield from self.function(lexer, stream, self.options) diff --git a/env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py b/env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py new file mode 100644 index 00000000..9255ca22 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py @@ -0,0 +1,940 @@ +""" + pygments.filters + ~~~~~~~~~~~~~~~~ + + Module containing filter lookup functions and default + filters. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re + +from pip._vendor.pygments.token import String, Comment, Keyword, Name, Error, Whitespace, \ + string_to_tokentype +from pip._vendor.pygments.filter import Filter +from pip._vendor.pygments.util import get_list_opt, get_int_opt, get_bool_opt, \ + get_choice_opt, ClassNotFound, OptionError +from pip._vendor.pygments.plugin import find_plugin_filters + + +def find_filter_class(filtername): + """Lookup a filter by name. Return None if not found.""" + if filtername in FILTERS: + return FILTERS[filtername] + for name, cls in find_plugin_filters(): + if name == filtername: + return cls + return None + + +def get_filter_by_name(filtername, **options): + """Return an instantiated filter. + + Options are passed to the filter initializer if wanted. + Raise a ClassNotFound if not found. + """ + cls = find_filter_class(filtername) + if cls: + return cls(**options) + else: + raise ClassNotFound(f'filter {filtername!r} not found') + + +def get_all_filters(): + """Return a generator of all filter names.""" + yield from FILTERS + for name, _ in find_plugin_filters(): + yield name + + +def _replace_special(ttype, value, regex, specialttype, + replacefunc=lambda x: x): + last = 0 + for match in regex.finditer(value): + start, end = match.start(), match.end() + if start != last: + yield ttype, value[last:start] + yield specialttype, replacefunc(value[start:end]) + last = end + if last != len(value): + yield ttype, value[last:] + + +class CodeTagFilter(Filter): + """Highlight special code tags in comments and docstrings. + + Options accepted: + + `codetags` : list of strings + A list of strings that are flagged as code tags. The default is to + highlight ``XXX``, ``TODO``, ``FIXME``, ``BUG`` and ``NOTE``. + + .. versionchanged:: 2.13 + Now recognizes ``FIXME`` by default. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + tags = get_list_opt(options, 'codetags', + ['XXX', 'TODO', 'FIXME', 'BUG', 'NOTE']) + self.tag_re = re.compile(r'\b({})\b'.format('|'.join([ + re.escape(tag) for tag in tags if tag + ]))) + + def filter(self, lexer, stream): + regex = self.tag_re + for ttype, value in stream: + if ttype in String.Doc or \ + ttype in Comment and \ + ttype not in Comment.Preproc: + yield from _replace_special(ttype, value, regex, Comment.Special) + else: + yield ttype, value + + +class SymbolFilter(Filter): + """Convert mathematical symbols such as \\ in Isabelle + or \\longrightarrow in LaTeX into Unicode characters. + + This is mostly useful for HTML or console output when you want to + approximate the source rendering you'd see in an IDE. + + Options accepted: + + `lang` : string + The symbol language. Must be one of ``'isabelle'`` or + ``'latex'``. The default is ``'isabelle'``. + """ + + latex_symbols = { + '\\alpha' : '\U000003b1', + '\\beta' : '\U000003b2', + '\\gamma' : '\U000003b3', + '\\delta' : '\U000003b4', + '\\varepsilon' : '\U000003b5', + '\\zeta' : '\U000003b6', + '\\eta' : '\U000003b7', + '\\vartheta' : '\U000003b8', + '\\iota' : '\U000003b9', + '\\kappa' : '\U000003ba', + '\\lambda' : '\U000003bb', + '\\mu' : '\U000003bc', + '\\nu' : '\U000003bd', + '\\xi' : '\U000003be', + '\\pi' : '\U000003c0', + '\\varrho' : '\U000003c1', + '\\sigma' : '\U000003c3', + '\\tau' : '\U000003c4', + '\\upsilon' : '\U000003c5', + '\\varphi' : '\U000003c6', + '\\chi' : '\U000003c7', + '\\psi' : '\U000003c8', + '\\omega' : '\U000003c9', + '\\Gamma' : '\U00000393', + '\\Delta' : '\U00000394', + '\\Theta' : '\U00000398', + '\\Lambda' : '\U0000039b', + '\\Xi' : '\U0000039e', + '\\Pi' : '\U000003a0', + '\\Sigma' : '\U000003a3', + '\\Upsilon' : '\U000003a5', + '\\Phi' : '\U000003a6', + '\\Psi' : '\U000003a8', + '\\Omega' : '\U000003a9', + '\\leftarrow' : '\U00002190', + '\\longleftarrow' : '\U000027f5', + '\\rightarrow' : '\U00002192', + '\\longrightarrow' : '\U000027f6', + '\\Leftarrow' : '\U000021d0', + '\\Longleftarrow' : '\U000027f8', + '\\Rightarrow' : '\U000021d2', + '\\Longrightarrow' : '\U000027f9', + '\\leftrightarrow' : '\U00002194', + '\\longleftrightarrow' : '\U000027f7', + '\\Leftrightarrow' : '\U000021d4', + '\\Longleftrightarrow' : '\U000027fa', + '\\mapsto' : '\U000021a6', + '\\longmapsto' : '\U000027fc', + '\\relbar' : '\U00002500', + '\\Relbar' : '\U00002550', + '\\hookleftarrow' : '\U000021a9', + '\\hookrightarrow' : '\U000021aa', + '\\leftharpoondown' : '\U000021bd', + '\\rightharpoondown' : '\U000021c1', + '\\leftharpoonup' : '\U000021bc', + '\\rightharpoonup' : '\U000021c0', + '\\rightleftharpoons' : '\U000021cc', + '\\leadsto' : '\U0000219d', + '\\downharpoonleft' : '\U000021c3', + '\\downharpoonright' : '\U000021c2', + '\\upharpoonleft' : '\U000021bf', + '\\upharpoonright' : '\U000021be', + '\\restriction' : '\U000021be', + '\\uparrow' : '\U00002191', + '\\Uparrow' : '\U000021d1', + '\\downarrow' : '\U00002193', + '\\Downarrow' : '\U000021d3', + '\\updownarrow' : '\U00002195', + '\\Updownarrow' : '\U000021d5', + '\\langle' : '\U000027e8', + '\\rangle' : '\U000027e9', + '\\lceil' : '\U00002308', + '\\rceil' : '\U00002309', + '\\lfloor' : '\U0000230a', + '\\rfloor' : '\U0000230b', + '\\flqq' : '\U000000ab', + '\\frqq' : '\U000000bb', + '\\bot' : '\U000022a5', + '\\top' : '\U000022a4', + '\\wedge' : '\U00002227', + '\\bigwedge' : '\U000022c0', + '\\vee' : '\U00002228', + '\\bigvee' : '\U000022c1', + '\\forall' : '\U00002200', + '\\exists' : '\U00002203', + '\\nexists' : '\U00002204', + '\\neg' : '\U000000ac', + '\\Box' : '\U000025a1', + '\\Diamond' : '\U000025c7', + '\\vdash' : '\U000022a2', + '\\models' : '\U000022a8', + '\\dashv' : '\U000022a3', + '\\surd' : '\U0000221a', + '\\le' : '\U00002264', + '\\ge' : '\U00002265', + '\\ll' : '\U0000226a', + '\\gg' : '\U0000226b', + '\\lesssim' : '\U00002272', + '\\gtrsim' : '\U00002273', + '\\lessapprox' : '\U00002a85', + '\\gtrapprox' : '\U00002a86', + '\\in' : '\U00002208', + '\\notin' : '\U00002209', + '\\subset' : '\U00002282', + '\\supset' : '\U00002283', + '\\subseteq' : '\U00002286', + '\\supseteq' : '\U00002287', + '\\sqsubset' : '\U0000228f', + '\\sqsupset' : '\U00002290', + '\\sqsubseteq' : '\U00002291', + '\\sqsupseteq' : '\U00002292', + '\\cap' : '\U00002229', + '\\bigcap' : '\U000022c2', + '\\cup' : '\U0000222a', + '\\bigcup' : '\U000022c3', + '\\sqcup' : '\U00002294', + '\\bigsqcup' : '\U00002a06', + '\\sqcap' : '\U00002293', + '\\Bigsqcap' : '\U00002a05', + '\\setminus' : '\U00002216', + '\\propto' : '\U0000221d', + '\\uplus' : '\U0000228e', + '\\bigplus' : '\U00002a04', + '\\sim' : '\U0000223c', + '\\doteq' : '\U00002250', + '\\simeq' : '\U00002243', + '\\approx' : '\U00002248', + '\\asymp' : '\U0000224d', + '\\cong' : '\U00002245', + '\\equiv' : '\U00002261', + '\\Join' : '\U000022c8', + '\\bowtie' : '\U00002a1d', + '\\prec' : '\U0000227a', + '\\succ' : '\U0000227b', + '\\preceq' : '\U0000227c', + '\\succeq' : '\U0000227d', + '\\parallel' : '\U00002225', + '\\mid' : '\U000000a6', + '\\pm' : '\U000000b1', + '\\mp' : '\U00002213', + '\\times' : '\U000000d7', + '\\div' : '\U000000f7', + '\\cdot' : '\U000022c5', + '\\star' : '\U000022c6', + '\\circ' : '\U00002218', + '\\dagger' : '\U00002020', + '\\ddagger' : '\U00002021', + '\\lhd' : '\U000022b2', + '\\rhd' : '\U000022b3', + '\\unlhd' : '\U000022b4', + '\\unrhd' : '\U000022b5', + '\\triangleleft' : '\U000025c3', + '\\triangleright' : '\U000025b9', + '\\triangle' : '\U000025b3', + '\\triangleq' : '\U0000225c', + '\\oplus' : '\U00002295', + '\\bigoplus' : '\U00002a01', + '\\otimes' : '\U00002297', + '\\bigotimes' : '\U00002a02', + '\\odot' : '\U00002299', + '\\bigodot' : '\U00002a00', + '\\ominus' : '\U00002296', + '\\oslash' : '\U00002298', + '\\dots' : '\U00002026', + '\\cdots' : '\U000022ef', + '\\sum' : '\U00002211', + '\\prod' : '\U0000220f', + '\\coprod' : '\U00002210', + '\\infty' : '\U0000221e', + '\\int' : '\U0000222b', + '\\oint' : '\U0000222e', + '\\clubsuit' : '\U00002663', + '\\diamondsuit' : '\U00002662', + '\\heartsuit' : '\U00002661', + '\\spadesuit' : '\U00002660', + '\\aleph' : '\U00002135', + '\\emptyset' : '\U00002205', + '\\nabla' : '\U00002207', + '\\partial' : '\U00002202', + '\\flat' : '\U0000266d', + '\\natural' : '\U0000266e', + '\\sharp' : '\U0000266f', + '\\angle' : '\U00002220', + '\\copyright' : '\U000000a9', + '\\textregistered' : '\U000000ae', + '\\textonequarter' : '\U000000bc', + '\\textonehalf' : '\U000000bd', + '\\textthreequarters' : '\U000000be', + '\\textordfeminine' : '\U000000aa', + '\\textordmasculine' : '\U000000ba', + '\\euro' : '\U000020ac', + '\\pounds' : '\U000000a3', + '\\yen' : '\U000000a5', + '\\textcent' : '\U000000a2', + '\\textcurrency' : '\U000000a4', + '\\textdegree' : '\U000000b0', + } + + isabelle_symbols = { + '\\' : '\U0001d7ec', + '\\' : '\U0001d7ed', + '\\' : '\U0001d7ee', + '\\' : '\U0001d7ef', + '\\' : '\U0001d7f0', + '\\' : '\U0001d7f1', + '\\' : '\U0001d7f2', + '\\' : '\U0001d7f3', + '\\' : '\U0001d7f4', + '\\' : '\U0001d7f5', + '\\' : '\U0001d49c', + '\\' : '\U0000212c', + '\\' : '\U0001d49e', + '\\' : '\U0001d49f', + '\\' : '\U00002130', + '\\' : '\U00002131', + '\\' : '\U0001d4a2', + '\\' : '\U0000210b', + '\\' : '\U00002110', + '\\' : '\U0001d4a5', + '\\' : '\U0001d4a6', + '\\' : '\U00002112', + '\\' : '\U00002133', + '\\' : '\U0001d4a9', + '\\' : '\U0001d4aa', + '\\

' : '\U0001d4ab', + '\\' : '\U0001d4ac', + '\\' : '\U0000211b', + '\\' : '\U0001d4ae', + '\\' : '\U0001d4af', + '\\' : '\U0001d4b0', + '\\' : '\U0001d4b1', + '\\' : '\U0001d4b2', + '\\' : '\U0001d4b3', + '\\' : '\U0001d4b4', + '\\' : '\U0001d4b5', + '\\' : '\U0001d5ba', + '\\' : '\U0001d5bb', + '\\' : '\U0001d5bc', + '\\' : '\U0001d5bd', + '\\' : '\U0001d5be', + '\\' : '\U0001d5bf', + '\\' : '\U0001d5c0', + '\\' : '\U0001d5c1', + '\\' : '\U0001d5c2', + '\\' : '\U0001d5c3', + '\\' : '\U0001d5c4', + '\\' : '\U0001d5c5', + '\\' : '\U0001d5c6', + '\\' : '\U0001d5c7', + '\\' : '\U0001d5c8', + '\\

' : '\U0001d5c9', + '\\' : '\U0001d5ca', + '\\' : '\U0001d5cb', + '\\' : '\U0001d5cc', + '\\' : '\U0001d5cd', + '\\' : '\U0001d5ce', + '\\' : '\U0001d5cf', + '\\' : '\U0001d5d0', + '\\' : '\U0001d5d1', + '\\' : '\U0001d5d2', + '\\' : '\U0001d5d3', + '\\' : '\U0001d504', + '\\' : '\U0001d505', + '\\' : '\U0000212d', + '\\

' : '\U0001d507', + '\\' : '\U0001d508', + '\\' : '\U0001d509', + '\\' : '\U0001d50a', + '\\' : '\U0000210c', + '\\' : '\U00002111', + '\\' : '\U0001d50d', + '\\' : '\U0001d50e', + '\\' : '\U0001d50f', + '\\' : '\U0001d510', + '\\' : '\U0001d511', + '\\' : '\U0001d512', + '\\' : '\U0001d513', + '\\' : '\U0001d514', + '\\' : '\U0000211c', + '\\' : '\U0001d516', + '\\' : '\U0001d517', + '\\' : '\U0001d518', + '\\' : '\U0001d519', + '\\' : '\U0001d51a', + '\\' : '\U0001d51b', + '\\' : '\U0001d51c', + '\\' : '\U00002128', + '\\' : '\U0001d51e', + '\\' : '\U0001d51f', + '\\' : '\U0001d520', + '\\
' : '\U0001d521', + '\\' : '\U0001d522', + '\\' : '\U0001d523', + '\\' : '\U0001d524', + '\\' : '\U0001d525', + '\\' : '\U0001d526', + '\\' : '\U0001d527', + '\\' : '\U0001d528', + '\\' : '\U0001d529', + '\\' : '\U0001d52a', + '\\' : '\U0001d52b', + '\\' : '\U0001d52c', + '\\' : '\U0001d52d', + '\\' : '\U0001d52e', + '\\' : '\U0001d52f', + '\\' : '\U0001d530', + '\\' : '\U0001d531', + '\\' : '\U0001d532', + '\\' : '\U0001d533', + '\\' : '\U0001d534', + '\\' : '\U0001d535', + '\\' : '\U0001d536', + '\\' : '\U0001d537', + '\\' : '\U000003b1', + '\\' : '\U000003b2', + '\\' : '\U000003b3', + '\\' : '\U000003b4', + '\\' : '\U000003b5', + '\\' : '\U000003b6', + '\\' : '\U000003b7', + '\\' : '\U000003b8', + '\\' : '\U000003b9', + '\\' : '\U000003ba', + '\\' : '\U000003bb', + '\\' : '\U000003bc', + '\\' : '\U000003bd', + '\\' : '\U000003be', + '\\' : '\U000003c0', + '\\' : '\U000003c1', + '\\' : '\U000003c3', + '\\' : '\U000003c4', + '\\' : '\U000003c5', + '\\' : '\U000003c6', + '\\' : '\U000003c7', + '\\' : '\U000003c8', + '\\' : '\U000003c9', + '\\' : '\U00000393', + '\\' : '\U00000394', + '\\' : '\U00000398', + '\\' : '\U0000039b', + '\\' : '\U0000039e', + '\\' : '\U000003a0', + '\\' : '\U000003a3', + '\\' : '\U000003a5', + '\\' : '\U000003a6', + '\\' : '\U000003a8', + '\\' : '\U000003a9', + '\\' : '\U0001d539', + '\\' : '\U00002102', + '\\' : '\U00002115', + '\\' : '\U0000211a', + '\\' : '\U0000211d', + '\\' : '\U00002124', + '\\' : '\U00002190', + '\\' : '\U000027f5', + '\\' : '\U00002192', + '\\' : '\U000027f6', + '\\' : '\U000021d0', + '\\' : '\U000027f8', + '\\' : '\U000021d2', + '\\' : '\U000027f9', + '\\' : '\U00002194', + '\\' : '\U000027f7', + '\\' : '\U000021d4', + '\\' : '\U000027fa', + '\\' : '\U000021a6', + '\\' : '\U000027fc', + '\\' : '\U00002500', + '\\' : '\U00002550', + '\\' : '\U000021a9', + '\\' : '\U000021aa', + '\\' : '\U000021bd', + '\\' : '\U000021c1', + '\\' : '\U000021bc', + '\\' : '\U000021c0', + '\\' : '\U000021cc', + '\\' : '\U0000219d', + '\\' : '\U000021c3', + '\\' : '\U000021c2', + '\\' : '\U000021bf', + '\\' : '\U000021be', + '\\' : '\U000021be', + '\\' : '\U00002237', + '\\' : '\U00002191', + '\\' : '\U000021d1', + '\\' : '\U00002193', + '\\' : '\U000021d3', + '\\' : '\U00002195', + '\\' : '\U000021d5', + '\\' : '\U000027e8', + '\\' : '\U000027e9', + '\\' : '\U00002308', + '\\' : '\U00002309', + '\\' : '\U0000230a', + '\\' : '\U0000230b', + '\\' : '\U00002987', + '\\' : '\U00002988', + '\\' : '\U000027e6', + '\\' : '\U000027e7', + '\\' : '\U00002983', + '\\' : '\U00002984', + '\\' : '\U000000ab', + '\\' : '\U000000bb', + '\\' : '\U000022a5', + '\\' : '\U000022a4', + '\\' : '\U00002227', + '\\' : '\U000022c0', + '\\' : '\U00002228', + '\\' : '\U000022c1', + '\\' : '\U00002200', + '\\' : '\U00002203', + '\\' : '\U00002204', + '\\' : '\U000000ac', + '\\' : '\U000025a1', + '\\' : '\U000025c7', + '\\' : '\U000022a2', + '\\' : '\U000022a8', + '\\' : '\U000022a9', + '\\' : '\U000022ab', + '\\' : '\U000022a3', + '\\' : '\U0000221a', + '\\' : '\U00002264', + '\\' : '\U00002265', + '\\' : '\U0000226a', + '\\' : '\U0000226b', + '\\' : '\U00002272', + '\\' : '\U00002273', + '\\' : '\U00002a85', + '\\' : '\U00002a86', + '\\' : '\U00002208', + '\\' : '\U00002209', + '\\' : '\U00002282', + '\\' : '\U00002283', + '\\' : '\U00002286', + '\\' : '\U00002287', + '\\' : '\U0000228f', + '\\' : '\U00002290', + '\\' : '\U00002291', + '\\' : '\U00002292', + '\\' : '\U00002229', + '\\' : '\U000022c2', + '\\' : '\U0000222a', + '\\' : '\U000022c3', + '\\' : '\U00002294', + '\\' : '\U00002a06', + '\\' : '\U00002293', + '\\' : '\U00002a05', + '\\' : '\U00002216', + '\\' : '\U0000221d', + '\\' : '\U0000228e', + '\\' : '\U00002a04', + '\\' : '\U00002260', + '\\' : '\U0000223c', + '\\' : '\U00002250', + '\\' : '\U00002243', + '\\' : '\U00002248', + '\\' : '\U0000224d', + '\\' : '\U00002245', + '\\' : '\U00002323', + '\\' : '\U00002261', + '\\' : '\U00002322', + '\\' : '\U000022c8', + '\\' : '\U00002a1d', + '\\' : '\U0000227a', + '\\' : '\U0000227b', + '\\' : '\U0000227c', + '\\' : '\U0000227d', + '\\' : '\U00002225', + '\\' : '\U000000a6', + '\\' : '\U000000b1', + '\\' : '\U00002213', + '\\' : '\U000000d7', + '\\
' : '\U000000f7', + '\\' : '\U000022c5', + '\\' : '\U000022c6', + '\\' : '\U00002219', + '\\' : '\U00002218', + '\\' : '\U00002020', + '\\' : '\U00002021', + '\\' : '\U000022b2', + '\\' : '\U000022b3', + '\\' : '\U000022b4', + '\\' : '\U000022b5', + '\\' : '\U000025c3', + '\\' : '\U000025b9', + '\\' : '\U000025b3', + '\\' : '\U0000225c', + '\\' : '\U00002295', + '\\' : '\U00002a01', + '\\' : '\U00002297', + '\\' : '\U00002a02', + '\\' : '\U00002299', + '\\' : '\U00002a00', + '\\' : '\U00002296', + '\\' : '\U00002298', + '\\' : '\U00002026', + '\\' : '\U000022ef', + '\\' : '\U00002211', + '\\' : '\U0000220f', + '\\' : '\U00002210', + '\\' : '\U0000221e', + '\\' : '\U0000222b', + '\\' : '\U0000222e', + '\\' : '\U00002663', + '\\' : '\U00002662', + '\\' : '\U00002661', + '\\' : '\U00002660', + '\\' : '\U00002135', + '\\' : '\U00002205', + '\\' : '\U00002207', + '\\' : '\U00002202', + '\\' : '\U0000266d', + '\\' : '\U0000266e', + '\\' : '\U0000266f', + '\\' : '\U00002220', + '\\' : '\U000000a9', + '\\' : '\U000000ae', + '\\' : '\U000000ad', + '\\' : '\U000000af', + '\\' : '\U000000bc', + '\\' : '\U000000bd', + '\\' : '\U000000be', + '\\' : '\U000000aa', + '\\' : '\U000000ba', + '\\
' : '\U000000a7', + '\\' : '\U000000b6', + '\\' : '\U000000a1', + '\\' : '\U000000bf', + '\\' : '\U000020ac', + '\\' : '\U000000a3', + '\\' : '\U000000a5', + '\\' : '\U000000a2', + '\\' : '\U000000a4', + '\\' : '\U000000b0', + '\\' : '\U00002a3f', + '\\' : '\U00002127', + '\\' : '\U000025ca', + '\\' : '\U00002118', + '\\' : '\U00002240', + '\\' : '\U000022c4', + '\\' : '\U000000b4', + '\\' : '\U00000131', + '\\' : '\U000000a8', + '\\' : '\U000000b8', + '\\' : '\U000002dd', + '\\' : '\U000003f5', + '\\' : '\U000023ce', + '\\' : '\U00002039', + '\\' : '\U0000203a', + '\\' : '\U00002302', + '\\<^sub>' : '\U000021e9', + '\\<^sup>' : '\U000021e7', + '\\<^bold>' : '\U00002759', + '\\<^bsub>' : '\U000021d8', + '\\<^esub>' : '\U000021d9', + '\\<^bsup>' : '\U000021d7', + '\\<^esup>' : '\U000021d6', + } + + lang_map = {'isabelle' : isabelle_symbols, 'latex' : latex_symbols} + + def __init__(self, **options): + Filter.__init__(self, **options) + lang = get_choice_opt(options, 'lang', + ['isabelle', 'latex'], 'isabelle') + self.symbols = self.lang_map[lang] + + def filter(self, lexer, stream): + for ttype, value in stream: + if value in self.symbols: + yield ttype, self.symbols[value] + else: + yield ttype, value + + +class KeywordCaseFilter(Filter): + """Convert keywords to lowercase or uppercase or capitalize them, which + means first letter uppercase, rest lowercase. + + This can be useful e.g. if you highlight Pascal code and want to adapt the + code to your styleguide. + + Options accepted: + + `case` : string + The casing to convert keywords to. Must be one of ``'lower'``, + ``'upper'`` or ``'capitalize'``. The default is ``'lower'``. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + case = get_choice_opt(options, 'case', + ['lower', 'upper', 'capitalize'], 'lower') + self.convert = getattr(str, case) + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Keyword: + yield ttype, self.convert(value) + else: + yield ttype, value + + +class NameHighlightFilter(Filter): + """Highlight a normal Name (and Name.*) token with a different token type. + + Example:: + + filter = NameHighlightFilter( + names=['foo', 'bar', 'baz'], + tokentype=Name.Function, + ) + + This would highlight the names "foo", "bar" and "baz" + as functions. `Name.Function` is the default token type. + + Options accepted: + + `names` : list of strings + A list of names that should be given the different token type. + There is no default. + `tokentype` : TokenType or string + A token type or a string containing a token type name that is + used for highlighting the strings in `names`. The default is + `Name.Function`. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.names = set(get_list_opt(options, 'names', [])) + tokentype = options.get('tokentype') + if tokentype: + self.tokentype = string_to_tokentype(tokentype) + else: + self.tokentype = Name.Function + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Name and value in self.names: + yield self.tokentype, value + else: + yield ttype, value + + +class ErrorToken(Exception): + pass + + +class RaiseOnErrorTokenFilter(Filter): + """Raise an exception when the lexer generates an error token. + + Options accepted: + + `excclass` : Exception class + The exception class to raise. + The default is `pygments.filters.ErrorToken`. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.exception = options.get('excclass', ErrorToken) + try: + # issubclass() will raise TypeError if first argument is not a class + if not issubclass(self.exception, Exception): + raise TypeError + except TypeError: + raise OptionError('excclass option is not an exception class') + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype is Error: + raise self.exception(value) + yield ttype, value + + +class VisibleWhitespaceFilter(Filter): + """Convert tabs, newlines and/or spaces to visible characters. + + Options accepted: + + `spaces` : string or bool + If this is a one-character string, spaces will be replaces by this string. + If it is another true value, spaces will be replaced by ``·`` (unicode + MIDDLE DOT). If it is a false value, spaces will not be replaced. The + default is ``False``. + `tabs` : string or bool + The same as for `spaces`, but the default replacement character is ``»`` + (unicode RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK). The default value + is ``False``. Note: this will not work if the `tabsize` option for the + lexer is nonzero, as tabs will already have been expanded then. + `tabsize` : int + If tabs are to be replaced by this filter (see the `tabs` option), this + is the total number of characters that a tab should be expanded to. + The default is ``8``. + `newlines` : string or bool + The same as for `spaces`, but the default replacement character is ``¶`` + (unicode PILCROW SIGN). The default value is ``False``. + `wstokentype` : bool + If true, give whitespace the special `Whitespace` token type. This allows + styling the visible whitespace differently (e.g. greyed out), but it can + disrupt background colors. The default is ``True``. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + for name, default in [('spaces', '·'), + ('tabs', '»'), + ('newlines', '¶')]: + opt = options.get(name, False) + if isinstance(opt, str) and len(opt) == 1: + setattr(self, name, opt) + else: + setattr(self, name, (opt and default or '')) + tabsize = get_int_opt(options, 'tabsize', 8) + if self.tabs: + self.tabs += ' ' * (tabsize - 1) + if self.newlines: + self.newlines += '\n' + self.wstt = get_bool_opt(options, 'wstokentype', True) + + def filter(self, lexer, stream): + if self.wstt: + spaces = self.spaces or ' ' + tabs = self.tabs or '\t' + newlines = self.newlines or '\n' + regex = re.compile(r'\s') + + def replacefunc(wschar): + if wschar == ' ': + return spaces + elif wschar == '\t': + return tabs + elif wschar == '\n': + return newlines + return wschar + + for ttype, value in stream: + yield from _replace_special(ttype, value, regex, Whitespace, + replacefunc) + else: + spaces, tabs, newlines = self.spaces, self.tabs, self.newlines + # simpler processing + for ttype, value in stream: + if spaces: + value = value.replace(' ', spaces) + if tabs: + value = value.replace('\t', tabs) + if newlines: + value = value.replace('\n', newlines) + yield ttype, value + + +class GobbleFilter(Filter): + """Gobbles source code lines (eats initial characters). + + This filter drops the first ``n`` characters off every line of code. This + may be useful when the source code fed to the lexer is indented by a fixed + amount of space that isn't desired in the output. + + Options accepted: + + `n` : int + The number of characters to gobble. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + self.n = get_int_opt(options, 'n', 0) + + def gobble(self, value, left): + if left < len(value): + return value[left:], 0 + else: + return '', left - len(value) + + def filter(self, lexer, stream): + n = self.n + left = n # How many characters left to gobble. + for ttype, value in stream: + # Remove ``left`` tokens from first line, ``n`` from all others. + parts = value.split('\n') + (parts[0], left) = self.gobble(parts[0], left) + for i in range(1, len(parts)): + (parts[i], left) = self.gobble(parts[i], n) + value = '\n'.join(parts) + + if value != '': + yield ttype, value + + +class TokenMergeFilter(Filter): + """Merges consecutive tokens with the same token type in the output + stream of a lexer. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + current_type = None + current_value = None + for ttype, value in stream: + if ttype is current_type: + current_value += value + else: + if current_type is not None: + yield current_type, current_value + current_type = ttype + current_value = value + if current_type is not None: + yield current_type, current_value + + +FILTERS = { + 'codetagify': CodeTagFilter, + 'keywordcase': KeywordCaseFilter, + 'highlight': NameHighlightFilter, + 'raiseonerror': RaiseOnErrorTokenFilter, + 'whitespace': VisibleWhitespaceFilter, + 'gobble': GobbleFilter, + 'tokenmerge': TokenMergeFilter, + 'symbols': SymbolFilter, +} diff --git a/env/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..caa34670d30469ef89993c3825cddf1f5772a0d7 GIT binary patch literal 37899 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 X{5Nwb@5Z6LnU}_;rrYjM=KTMErXQnb literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatter.py b/env/Lib/site-packages/pip/_vendor/pygments/formatter.py new file mode 100644 index 00000000..d2666037 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/formatter.py @@ -0,0 +1,129 @@ +""" + pygments.formatter + ~~~~~~~~~~~~~~~~~~ + + Base formatter class. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import codecs + +from pip._vendor.pygments.util import get_bool_opt +from pip._vendor.pygments.styles import get_style_by_name + +__all__ = ['Formatter'] + + +def _lookup_style(style): + if isinstance(style, str): + return get_style_by_name(style) + return style + + +class Formatter: + """ + Converts a token stream to text. + + Formatters should have attributes to help selecting them. These + are similar to the corresponding :class:`~pygments.lexer.Lexer` + attributes. + + .. autoattribute:: name + :no-value: + + .. autoattribute:: aliases + :no-value: + + .. autoattribute:: filenames + :no-value: + + You can pass options as keyword arguments to the constructor. + All formatters accept these basic options: + + ``style`` + The style to use, can be a string or a Style subclass + (default: "default"). Not used by e.g. the + TerminalFormatter. + ``full`` + Tells the formatter to output a "full" document, i.e. + a complete self-contained document. This doesn't have + any effect for some formatters (default: false). + ``title`` + If ``full`` is true, the title that should be used to + caption the document (default: ''). + ``encoding`` + If given, must be an encoding name. This will be used to + convert the Unicode token strings to byte strings in the + output. If it is "" or None, Unicode strings will be written + to the output file, which most file-like objects do not + support (default: None). + ``outencoding`` + Overrides ``encoding`` if given. + + """ + + #: Full name for the formatter, in human-readable form. + name = None + + #: A list of short, unique identifiers that can be used to lookup + #: the formatter from a list, e.g. using :func:`.get_formatter_by_name()`. + aliases = [] + + #: A list of fnmatch patterns that match filenames for which this + #: formatter can produce output. The patterns in this list should be unique + #: among all formatters. + filenames = [] + + #: If True, this formatter outputs Unicode strings when no encoding + #: option is given. + unicodeoutput = True + + def __init__(self, **options): + """ + As with lexers, this constructor takes arbitrary optional arguments, + and if you override it, you should first process your own options, then + call the base class implementation. + """ + self.style = _lookup_style(options.get('style', 'default')) + self.full = get_bool_opt(options, 'full', False) + self.title = options.get('title', '') + self.encoding = options.get('encoding', None) or None + if self.encoding in ('guess', 'chardet'): + # can happen for e.g. pygmentize -O encoding=guess + self.encoding = 'utf-8' + self.encoding = options.get('outencoding') or self.encoding + self.options = options + + def get_style_defs(self, arg=''): + """ + This method must return statements or declarations suitable to define + the current style for subsequent highlighted text (e.g. CSS classes + in the `HTMLFormatter`). + + The optional argument `arg` can be used to modify the generation and + is formatter dependent (it is standardized because it can be given on + the command line). + + This method is called by the ``-S`` :doc:`command-line option `, + the `arg` is then given by the ``-a`` option. + """ + return '' + + def format(self, tokensource, outfile): + """ + This method must format the tokens from the `tokensource` iterable and + write the formatted version to the file object `outfile`. + + Formatter options can control how exactly the tokens are converted. + """ + if self.encoding: + # wrap the outfile in a StreamWriter + outfile = codecs.lookup(self.encoding)[3](outfile) + return self.format_unencoded(tokensource, outfile) + + # Allow writing Formatter[str] or Formatter[bytes]. That's equivalent to + # Formatter. This helps when using third-party type stubs from typeshed. + def __class_getitem__(cls, name): + return cls diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py new file mode 100644 index 00000000..f19e9931 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py @@ -0,0 +1,157 @@ +""" + pygments.formatters + ~~~~~~~~~~~~~~~~~~~ + + Pygments formatters. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re +import sys +import types +import fnmatch +from os.path import basename + +from pip._vendor.pygments.formatters._mapping import FORMATTERS +from pip._vendor.pygments.plugin import find_plugin_formatters +from pip._vendor.pygments.util import ClassNotFound + +__all__ = ['get_formatter_by_name', 'get_formatter_for_filename', + 'get_all_formatters', 'load_formatter_from_file'] + list(FORMATTERS) + +_formatter_cache = {} # classes by name +_pattern_cache = {} + + +def _fn_matches(fn, glob): + """Return whether the supplied file name fn matches pattern filename.""" + if glob not in _pattern_cache: + pattern = _pattern_cache[glob] = re.compile(fnmatch.translate(glob)) + return pattern.match(fn) + return _pattern_cache[glob].match(fn) + + +def _load_formatters(module_name): + """Load a formatter (and all others in the module too).""" + mod = __import__(module_name, None, None, ['__all__']) + for formatter_name in mod.__all__: + cls = getattr(mod, formatter_name) + _formatter_cache[cls.name] = cls + + +def get_all_formatters(): + """Return a generator for all formatter classes.""" + # NB: this returns formatter classes, not info like get_all_lexers(). + for info in FORMATTERS.values(): + if info[1] not in _formatter_cache: + _load_formatters(info[0]) + yield _formatter_cache[info[1]] + for _, formatter in find_plugin_formatters(): + yield formatter + + +def find_formatter_class(alias): + """Lookup a formatter by alias. + + Returns None if not found. + """ + for module_name, name, aliases, _, _ in FORMATTERS.values(): + if alias in aliases: + if name not in _formatter_cache: + _load_formatters(module_name) + return _formatter_cache[name] + for _, cls in find_plugin_formatters(): + if alias in cls.aliases: + return cls + + +def get_formatter_by_name(_alias, **options): + """ + Return an instance of a :class:`.Formatter` subclass that has `alias` in its + aliases list. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter with that + alias is found. + """ + cls = find_formatter_class(_alias) + if cls is None: + raise ClassNotFound(f"no formatter found for name {_alias!r}") + return cls(**options) + + +def load_formatter_from_file(filename, formattername="CustomFormatter", **options): + """ + Return a `Formatter` subclass instance loaded from the provided file, relative + to the current directory. + + The file is expected to contain a Formatter class named ``formattername`` + (by default, CustomFormatter). Users should be very careful with the input, because + this method is equivalent to running ``eval()`` on the input file. The formatter is + given the `options` at its instantiation. + + :exc:`pygments.util.ClassNotFound` is raised if there are any errors loading + the formatter. + + .. versionadded:: 2.2 + """ + try: + # This empty dict will contain the namespace for the exec'd file + custom_namespace = {} + with open(filename, 'rb') as f: + exec(f.read(), custom_namespace) + # Retrieve the class `formattername` from that namespace + if formattername not in custom_namespace: + raise ClassNotFound(f'no valid {formattername} class found in {filename}') + formatter_class = custom_namespace[formattername] + # And finally instantiate it with the options + return formatter_class(**options) + except OSError as err: + raise ClassNotFound(f'cannot read {filename}: {err}') + except ClassNotFound: + raise + except Exception as err: + raise ClassNotFound(f'error when loading custom formatter: {err}') + + +def get_formatter_for_filename(fn, **options): + """ + Return a :class:`.Formatter` subclass instance that has a filename pattern + matching `fn`. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter for that filename + is found. + """ + fn = basename(fn) + for modname, name, _, filenames, _ in FORMATTERS.values(): + for filename in filenames: + if _fn_matches(fn, filename): + if name not in _formatter_cache: + _load_formatters(modname) + return _formatter_cache[name](**options) + for _name, cls in find_plugin_formatters(): + for filename in cls.filenames: + if _fn_matches(fn, filename): + return cls(**options) + raise ClassNotFound(f"no formatter found for file name {fn!r}") + + +class _automodule(types.ModuleType): + """Automatically import formatters.""" + + def __getattr__(self, name): + info = FORMATTERS.get(name) + if info: + _load_formatters(info[0]) + cls = _formatter_cache[info[1]] + setattr(self, name, cls) + return cls + raise AttributeError(name) + + +oldmod = sys.modules[__name__] +newmod = _automodule(__name__) +newmod.__dict__.update(oldmod.__dict__) +sys.modules[__name__] = newmod +del newmod.newmod, newmod.oldmod, newmod.sys, newmod.types diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae96821235c86390a0cec3c5800931c0fc5d2701 GIT binary patch literal 6890 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 Io&&D`0^E75v;Y7A literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d750f0985cc8dcd931f467a0bf64119d50cf2530 GIT binary patch literal 4210 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..035aaa1b32646500b85a73ed8bfabdadbefc85ee GIT binary patch literal 41014 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

)mvkU0S{$O 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 K{85n};r|bZj@MTJ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..afcee2430e59fe42367f05859eed49ed8725b847 GIT binary patch literal 28536 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 GO8vjUwnnl5 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e08ccf33f166b085272078707ffd0b51e69dc66c GIT binary patch literal 6043 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

SV|f~9fG?yxTcb>* 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

@b74K6d zC0$6um_QVEVJee!yciHzpsg-#9PR-$h_T~ez$(|=~@5jE*Mn5&P85g89g2M=B3{VRzN= z{Atlq2!tX$+Pyk_g7EU`@pT7TJSK~uMA$2k!mo!jITV8H(1;lXTD^1NXQU%)c${Lw z88O;L1E`1lk=&3Js@EeR`bZCtrf@{bKg%MHjBsp3DMC3woFKJgScrOjPld2)qC)dS zW=P4VUXiqK+q;E}=K}t7m^DdY0h=bCGZe$uqv;j`#dq}x2LmAlfFneV9Gona4+CY< z;7kKSw7S_DL*tvo@U(A(*u3UUfadY^XB!H3unKYGlVQd)xI^Sf;nE)5BWB$!!*I;H zRnEBJ^4%XtI2Ms)(;|}QxKH_$UVD}TWuujmsdKhrP)C}720;FVUXLMB2#Dzx+WsMH zV!r-aUNwUf?vnOE3Ku?bt*piEdSR-n4nHpa?SZrS!;&i{F*V`rT)LQac0TKyC)8RnHRxwb!)_y4^PAnuTjB->34^XI|ysjCO7=w_M2H=TK0TP zoX@KoF)25!LU{fy+V!*7k**zuLth+Kd=t{Bwx>t6jl~pcO&6!RXRDvCCI`1x59JYY z!?+!QMvcoi#w!8<)6Vf(#5uy54`ajphZEApW_}d)n$pXwY5s!ZL?gybNHl)>_b8e7 z=HaLOz5fMq*MC48xY-?CW%Z(ybOKkZwr;UFRa3uKvprF>edWxTHT_o(EexnjN>&AeLmj)t#6+)yFldM=L`td#o8{zXYWh4<=7bH&k5cV=u2Bv{9WkFvjsl| z$o%HtVOaNR5H!F4gZpRLh)_nqb?sXzx97tnSB|W?yA$s2{y2-d6J5cBxjHMi}YbbBw69G_A;{haF#e&2j3H1`#0O|huVE@1`#Ow*q9Fq5GajZOGf&Y;`QKu2`buL} z;bNfHX)DAmqHn}Y>lQxGV*eNj^sCGqU9%^{X#YsdI}JE(c}qMn|4T|2t$$s!!C1=s z2ss$Idhvcmb*iorcHrryo_m#Dsk(;PfmC(PQrXf#Z1TIse_Kbze1(>L=F`lL*EGu>O;5BpBi7s!n5F9z@>hQ{mO0{MN= zswt%hDM!9POH0`our9@<&wg$CP}JlIutmlJdIhp=lm}hJyKx z&lP()!u6kMOZ+(+Xj=ke%znS5JcTfwlQ&K-Z>LLn#I#&F0hL3Iow;A?fooyuOuRQ1 zy60)fSLin@mQHfRfuK%j)OzpUx+R{%gfCKDK?S@_t24s;(JMA@K*^ zMBU~ezV-RYrz3ZISL^oPtK6Ha+;H=Byz-;7Kde|j^;vbIaqExUR>c44O*HOFRPMPp z^bjqpKB>Q5zbvlS_1&xNGaDo-H^O67-w+%8x}Gbo__aa{{p|zA2g>OlAz2!-($KI&5rZy+NRjfBivoP~5r-6aVwhsOUo%R19nHITS zmluecnVMNcdorCLipgM&k4PU)Z^(-ahG$R<3#Sd4hUWo>AUqFr#>k75geloV33Dp2 zX(0KWnHs1Knj>Ss{NGSP(n=XY^2o~b{9}ugxBaRTk%<4uZT|(g=NH`GUvRJB$a6QW zx*9GQeB~(T`yXv8_1G@EABFhVa@*ySua5GC{D!Y-=C JqhHqh{{ceP^i}`> literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99b6b02ab188a8c55a451b526e3d97081f8a1d79 GIT binary patch literal 6865 zcmbtZU2Gi3k?#51o&DpVX#PsnNTN)xM6F25ieu_05yh1(OQIZ!4v-Cf%i+#&xzuo$ znVA*M#WJ7+0VaLUi9%qILSl%?9dPvNAw-_?m;`yt3n@wvJ(dCG?kV>~oASY@r>p9j zS+1nz`GRYJy*=I4)!o%qUsW~#5{U!}l(vumG5v452>B2E@QUCzwmyW$0#QhUD2&2t z%s8818EkVJH_j(`+U7N3+?VjtwxIdP#e~R^G*NuNVG;qBoF|I^CQ(F{y~jCx6G7S= zfZkw9Z%7Fx!b&(1p`#HPttc6-n5v9c<^MA%L7A9JkE^<6#zwNnxNKRfVaBr7sA|yB zpYBwGbodGqO4~Dgr2d?yo%1+#NLS^_f$VivFLuS8i9M<8#FUXqk6Jy_S+6N|cXoc~ zNOx!VYtrzP1gxdE-OWjsDvx(arm9M3-WhoF%GGNzx_*zANvXQ2_DH?g`ke7g7tY4} zuf=gwlA>C2Ml)l3O$dsRW)eQd zcatRiQ~s!E_<=ls!jW^%n#fsHB$oP~CFS(gsH~?|MVic5qgfb|^(pTjGJ4vPPChVz z#93XNvU!|m^EzBlUN{u9-m_A!2GQO5pvLd5MW_}?fsE1a=c{S1!1R%K-ymcV&NR(W z3kA;DS766VIk{5`!kDM|B}@w3J;wR;ei`ynbSDlaG$(j6MLuQv;XXuFPh}N2q%BMu z8B4W&v_p;hY~ED05j$j|#+liiky33x2xlatsWt~xwqRLP6RIuTkhPp@;-S$5B%B zH&!cJX3lR^H_QiSE^P5W;h@6+=ax5!ZW#G?gGl%h z^b(>XLLHb2M1zJ16Xj`8LTVk3*-6f|OR_1+k|9q@hB{%WCSaRvWwJU21k(bm*3%BD zWLgHm3cv&9G5~nv+?13trJ*6p4%Ox4z?t6D$gJI2!9o_%L49Z_CgCK|Ff`7TtV@~< z_({19t5Pbf-%t$;jMU1)mgr=6O=`B(oQFI(xum|Q8bcj`S!T+}48yF9juezz4_sK! zkcK3ZmN6~qByF3ghuqCy0UMXB$*crG28RU^7^)drnJW`aktffKF*66q- zkAOrZ&t#=`MIDiI8lXNb0xLuvq#9BUBWoln>XzG`3>yJJmQXu8q*3r28u|{2PIDw{ zN;#8W?WhcQfz&ZPUvYbQ&SAJFx_dnJ=7Vr~?&>xNDrfr~4MBv3&vPjk>_A%yL9_|M-_`*1E)c6YHs(19q;gAv zj4&BeVE%>qCkBIo0!bFBEHo%u3J^#@aKQbBQTThj+eeaai@^LbT=9jX2nxC9as$4& zFIoWf!(My)SMlY*@)iHLQ@-C2AXcR}a|dp`w=x5OK1B`?tIC_v3V_293lWAEMJ&(b zm#h-_r07U~#!Qm;xF3;8CK~Lw1=&nxGU&e@y^ZoV0i4U~s?DbJHV1lbM1i{MXka-pZ^6?rZvGCc8S+@H zek3-niA{^It%--1UcWCM-V{lrG|PV!dED^o(&S3eZu|Zp_HS`a<2eRfsMVbvwaW3yNkW6p|(wyi(F+MS2ZlwK5C4v zHAa`aA6CUS1rl!m=Bba=?*57}NKhv&onC2u)ZM$*-MiWq|3hMR-`neTKUl5$!6t_U z&rH;+KX%mh^5jqaf!;PQg|hStDl>j>4S+a4U_S^hkN}xu$BO3R5fU(idu}g-5lT_b zODMSOa2-aM!Yf4MAYS3d0^6fr3k<-g_~%&9WIkkJJ#Vn&cbbQO8rhe0LUUTsFYK_s zNY~#_*Y{2P3cj(TL2UC-{N6b}49*5;*%46ao8mO@wu8_X^oIXsPeqg2<_WPF8AJ7Y zp%@ov%y!m|+5FR@5-Ru$;s~1uO`Q%D{8p_uWvtF?ZU2Jt?_o)Sw=g82rTjXDfM?j= z*&wnzi8EoOcxxZUd7{_T9l>5{6bU;*s?uGR(AV+=MumIs+6Wo|8AT`r$Or>u6!l4A zy}2c@5bmdONd6c)Yk+0XUpUSl-IK1W3PugX8C^D}Jco|qkZ~ARHgG)$HrUDGzoAAM z9Z)?7?-=bObZwo3>SK0c2OXYc%0|n?+qd_NCp9X7Rg^XGx+%;=IRo+B4tnsGH4MBx z69pj6%s5bjPRBU!8wfz%uyX8COV?UU*GlVp%j*xT zzDuQ-0+M1u%cEyiph3^dl(W}4QtqtYU2dPWyi7d07bRf}BU;WJ1-U>XLY(vC1$oCm z0qy_G@hO*KAU5|w_5AT;Yb~+$md*!NU9L<%uB1|+DZ@b{aL@=wBlKSEzyO4Z6yF_B zz^C(>30pi5^*PKtgp`&wRjMy`q&Lxh*7Zzqb+}WgLiIDyT#b6DY+lRgDwT(c3L;5El2g9#s012szF{YoxB{c*UNF-Co*|noA2_@b z-gWEp+~vgs55g_rTEbPgPR*TK?7JV5J`dM#)HN-P-yUD;UFMhNmHPF%H)hX2scl}k zeEafje8XwX#Wy0=x89w5cTv3`Iq-S7ZliJcqsBvPjfa-I)*Fw^zV$WFMBex>9~+T? z|0}znn>-tTLY>q7Q1j=~;oISPVLrD}zkf+xerM?)*6NSV^BcPweigra@y^AyU2UJ$ zHvX!8>9t1(j;$Rywlc8Z)bp_R#9wP07h6BR_+^Of>)5J*%Hi@^)hqMYm)=>9FZHk0 zfj2w0$-&rP#mLY7-#k6bkgCS72pc&3xTblNFnbPd5oXt6XhjZha?t&Z%Jyb;Uk&+l z%`1IvTt9>bn7Rt@A>uaa;B=2*4!qpKBri#gVl+Qym7U-6Z~Rc32{t5D_eLN@vHc>NID!o!Ja z^&`CXL+IR2vxaC-(A5rU#E|Lhk90}`mG*j_AQt+59L)E5o$nThWfSz-qIrnJFoq8) z&ZKsaV>BwAI^`m5@Hy~sodMZ;6*gKf`-5i?LE$0S^C<#-4Dm(%27+$>9l8f6IPy>& z)4hoaBRgSaAo-$Mo(zBvDDOVXxWW9(fqZwYlk&4g@BPLWy-6=YJDSzjPw9^Tp2)p? znDBmc`F@4D{yOMDXgk6$b!ZqbN4frI0=#G(`ELFY&H4Hvw1vkXMWUTf+NWvRNys0) zq|1y&c^bYts)qrI(T&wHsLBMPo-|$#LO;X_--D`b5DLK~;>2pGb-DJpdp_Os`?mYh zGmmR_ukN|9Uh~#!_${!uL%j@)J01m{mRIn4@q3E}D2G>4W|~XG3lsbaG+O9%qXplz zzrdICHHBhK1+k$}mV)~wQP_eHYOdgiB!d6Mch6Nuh*i4zlDI-C|9ZuH^dk(7p2QvK z1dnbyU?H5-G983VN8@~<%rwCJ7pm6_r63jpdFU$yvGzDJL?7CTek}3=3;0xuXWZtn z!~DSibAIsen2$>MLMiq4QGb6v>>&^SK4aSRY=@NRq8&jRi5YLgba?Rcf$_r|oLxB( zzcz68%(Zy3H-7HQ)ws=%Wiz^6QS3f*ZXkZuN!w^VRSom02Y$)d+M$fDc+W<*4WXz%N^t6O-M7y_hys5QEjV%!W3q zcg^}}ReTEE2-i@TeDFb7^4dRMyu4h!e0;fWrDi3*^2YD`R-4W|4EI8cwx|86NNV;i z_5SPmU!Pw-_s>^W4;){sK2Dh~)ZeaOtoy~@S>NNTmRX@_wZPW#`mZj1=g!gP_*zrf z!*KT#uk-GaJ4crN>rI^x!d*qma-9e7cHHS$np|%>`XJo7Ay(ds%te0ggir87`7I6; zySH0(!~+|iU}a5%X9W7L zN*(_t=r{VYqDOr`Hh3nUbRKh08wnsm)H1I^1sOKOe94Lo|8*^4j(7&-6`uVgR}^W<5-sc3p2&%0S~h9Ou@XxR(L|OVE0$|SZBnpm*%fz4ueBoC z-KA{OOIJXBkQ||w4uu$?fK?zso%#^>mSgX|n6lHbiyTx0J@h73&Bdp_nI#!PV0-HT zJ3IT{oA=(l_q{j!mq5UWU=08Elk^{DgubO8^&!<3`#*=pCQ?xxshrB|+#(<6Iiw0{ zE-vthh^qLMb7fVDeR~?;UX71SL`re0{D6ylcytx1Ee~KX;hzfbp18N*3$+&i;lnU; zh4doHSY|ktH5L`iB8C~xDVcP3Q85DbdK@+}7RbW>K&gQLL-U_>N zBUU}))E);ON5FY)O4^JC{m&yT)|=L^`nMexmxVlF*QDSohU{|%cSRKFPxvdX^_cm z-Z06z(K(V?n!B#e&zYJ<&gGQkf|4fYTu#eH5=$hbW{pTazY)kvEx(Zi`3>g^PLMD+ z6K0MiHAPP(Zz+ap_`&>fc+8_PEu)>*wnwqmSow_?t@yc!_koC#bgGYfu=dXaWfKt; z=K#RG3XoO#xTp%Mm& zDhcCj7EUS|3X=?;C)j|K5`(C)2?C90Ke}3jS~!fC0MA-Bqo^uT$H(z#_!6^H^t%9c z)jAT3h|_u?Fv)}I^?-k^@a&%j>L#)pyxa9t1G7GCl;SjGbDwd);Wz{GKBl`DzxNH)Z+2PBPt8=`l+<___ISW7mdEBJSUSFA7zgP`+txQ!rf-95Nw&4255ARpok3H{+eBCov=^1;L z|MKHM-G9+@rP6+7U8;7S+&Z<9T^Fe2M-NLNSw6OLgfjZe=7#Pve)8~F%^5%4ZhNf> zXK?sQ=T`s9%05OePsH;b4i8K0asTr04!~cB`w+6dxap5#%sLd8EZ(XC^xDFX^ zg|$grFhb33+ak?A^Uzz8o1e+{+5)X8Tc-2(=WAxMB-m0(T(d=}&i{wa<{qlT_g+EO zi8qW6@D%FEvSLLk8i7|xbfh~5+!IDOupCcLfxc<6HXmv+`Y5f{?YeNeBncEr-b!gY zEOf=RmK5EQ>B1`H2-J=H0&1Q(K2~M(B&}r}nXPFJ(SF5Bs8L2vyIY5ee1>FbCs&Ja zG_9$_V()+|^RF;1BU&%sYUlA4c}H%06j%+cr(Vhf-}VpJYO3RS*?N5M(|eVUGu7^a z$No?K>(Z`(I=fx+cE_2WwqRM_Zo}2~<1hOn&!iW9W0m%?4e#GOd#fXnFD5>pcy_lk z@`Fn7^!oIcTn+YZ&TPzVoq2MnGC1~ScV+P1m%;bG=?y>0zv#WV?ydIW4SDw%8aTbz zjr^U}Q^S9l`2EC_yOmRKSNwQox-3`yosVW#XUb=`?o@ii&$=tUmtOkE>)xlol25RT zyAf)k4J@N95@=w)L}D?k=5@OEClbHRD|(INO(fK8638MYI9}+GiV3Z*h31NqOxCT8 z5eV1kh^cma812;TqV1>Ar0wbf+T%q@-t{AY@ABnpTUR;o{K(Mq)oOdk^0j}7K`Fd{ zwo5u$b5AxRu*W$8KNsQJ&jtKE9R7K9J25z^=sGwlWDV5`Bx*kx?7xN~jyYmnpf1sN z!#sQ?N8K~WjJJVC?^tshrd@&KxIJFx#P5QLySVE?{=w(I!Da8Bj3jwQ`1SiM>A#6y iwn*(t!cl%X0B0Jyu#b4|wSW8G;!c(?eTU%1Z2bp-fA6&b literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f94052473ca0defc80bbac00874d8e38de171193 GIT binary patch literal 13761 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 V`M|$VvZq*9yyf|Z!O^(Q{{mUdicSCk literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5cc46a30ccb43347fc663c01d7652fe025abb6af GIT binary patch literal 15106 zcmeHOdvH|OdB1nxyIQfU7kVJXMGs)XdLY08@dyt|7#l=t5eKWJ(rWLOSh3m__pSiR zE1RTFD+no)>zGyI4(mK7qMlC3#4}B1GLtlQADK+2S_Gr@tuw<++CTJ9Mi$Pr^>mv4 zzH|5PixrmL=N~-`N9TO!eeQR@$M2l|MPZ?XL)iMYuM90Ua@?;dqX%;`@hFVMEl%Wm zIgu9)0e-~LYv3tu3>ZgDy(X461?x{ayujo1{)Fc^hk!6TJ~Sc)!%EX&NFMQq!;-8tAsX=qy@A#} zPqR8NKRGy9r7pd_fSv?2ZS;i#Na>vkp|SAjSXj9151$u~boZPP6zSra6!b|-lh(uY z$B#CKLyc$8bUuGd&>H(f!AqEtKNJ*XwD$)kMevH=(Xb>6gK}s@xI*1)g9R_Kd4xlu zfUxa+I6T_k+&m~tSFSXPQZuX9NEL&ju%tAL-mq6A>Wy2Q!d|&)V4~H-x)~T3J|7AU z4taw^LYM4UeCLz1Os`X)+0JB1yDv04F8hbhhuei?dQxa@X?eP_wWW2pfG)%5CE>Hl z9mmdiN1nniNWziNoq6W;^F2*$3y*yafAX-Jkt9-9fG``C9nnV*~vuH+a5iN+V7Ck2p{!#wx2sG zdF7x#ICQROSIfE2%Gj|nS&4sJRQ(A$X zJyBVUKkE|ftEWs~EqH{AoG-Ow$j}b4-F^m%TU zL?gvL+_=eO?w&Ag_}!2A{VG4Aavp#^uvITl|D|ozg>xmy zlLpZkF`zfANUWRgksmHdx6)G)1Bv=7PX8=C7u+1-hlxjX0?wdKwCA7K1o(H*nC=6$ zh{1Eh7q8~0XYIkMtUbun%i8t;Ysj4ZHWMhL)Z9zZ?H|c?va&NJfgx8dzm% zG~o3~Og^d>@8~F`8jdhjYEWd7Q#C4KSvC5D;k5XaH=+ZNk%<7gng%lBbSrc)AyG9k z;AHx#4~-#LCpP2=gUrHaG*jwu$|3yR#Z%@)f$L`5wYK?!nuM$5=H+Xb-`pN|)xW=f zL$u@e@!8|IPtTs7>$=;zQ2lg#ecQA#QBoQ0nK_sc>ZdziKk?9AcFQ^AjP}HeVmqT} zAGo*Z6ft&euJo?y&#m9L-l>`2xc9z$-zOX?+0&an-!6&u%oWY;jGg_~#yL5@dFR5$ z)(7rgA2ZUv>-!SUqMIkLos5>=ch=D0hpr#WCGEeyKZ}GdcU&GWX+k4r@Q z&P*Z>evCwv&w}goh<}o2Vcl%y^2;01NQ|j->c`eLeWKdt%-VxyeH5PNl4(+41{79Z zhb3nndD=c<9rz{BF^ms&DnZrXfT zX!{RB?<#-0`|sO+-ZtNJ=I8By`O19d=kGhuGGXzb@8Z8l3edS`QUJc>lkFnXeR-uo z76*`W$O&Iut)(HWWuB9vRNy4%IRT0jbdp~=fpKZRIc8ftd2FUEE;V&SAMS$=#Q&BS zk5yws#&UUF0;ba*XFjJaDN=YfHI`ZUd8|V5BFbbrO^xM9{iJfsp@K1@rrYbjzHYAm zdprJght8@@Rpe0uu+F=?y1L+p!MzB2N2I&@T^#cUv=W)DFKvaS zZRK4Q?L~BlV;Y62Y?+K}7SZ8W=p4SvJu;Zh8&}pD&BZH@3UlqsZl}5SQMJuntF@yh zKKxGwk_QwXeHKxMLrKo0q1QA7|Kgi`uX%`ENfWt}%&oLBx6)3?N3TP)AubSsc=S3& zARN7gVgcfH<4)Kw#9rQi0DC%MX$YEAD}+NA;8bUz4@_93F^H#_bDhK}{6WE+hA>z+ zy1ym>(f}%%}WeIv_$2hBqt(rOV`&Dsc2e zfCoSs^$x)tVo-q&nS|sE3i^{}$rlccC*g)Oz!Fjpr4aUB05-xFrD)KIS5U&^0Z9<0 zK@1@3@IybN_6woWFklsJRzZ>01Uw_G(6}SmEldoPRl*unqk$v@=V&fkdf%Faqj0bV zZ%|}irTlEH4QAcI7{C^7Is|=a6QWHRrDGvq!nC%bsUZ3l*qGyz=t(ZFsYyt}D_&8Q z#P)WfrD>lA6QzrM=Yh_!!q%o%Hax!fi9xn?V+#7t+yG1?Buhhpk=San7KOeXO^bF> z=#IJ4WiU`pV{1Cnig4b0NfHJm zDJYDM0`S7L82F|YGG3!kA$b+Q1e`9U_r<=U5~lCM{s;U+L9He0Tx%X06hc_Kj4v4) z23rD`Lw)^}0G`5HDWumMKJN#2c?ZCf2f+1>wA&g+*vPs(wCeg%$4O5!z?RCjk>YCHTBSYyu9n=4a3W_6lsn1!Zi&7w{^IunmXAI~EAHr~2vd z-Fr@USs`W@=`u6?(1fuo#Q=08MRTP3_BLhG$1uzD-Dz!N}66%FG zk^+HLU#Ur;yDo1)q5cknt%S_ZFcsQXwLoVbu%*YS7U(;Vtm;S#C`uaq$w7+y2FCmWF=@@R1EUu9!NM3DMJJFGifSB^!g3eJR;_*7 zlsrkW&8ms@EVzwLaAIQy!=&U`3SIm|bf$a>5imDf(W0#?ZmWv!j@x#`+V0tQJglyn zGTpaTCaM4~-f$(7*@xwuVwdO3n?Q3Wsy%nh=d1T>^(yP;+U6@;36Okfb1vF8#ciAJ z+cqaCOe*BwXT9s)hZkRTk8z7vA?yp%EtZH+RF8**5yvO5{oAJG=3u%>m?oB7Y-4Y zjf)zCSTX^1A(j%FO4!UKggL0CIaE`Us@K9*&F~u6fh!+V#GHv>-#BdIGUin#uGhsn zW(F7mD0?~PP%#0eLwNBd1pJyuvqbPOYqaeq4oac28z3fW#&qN{F8y5&K`ZRhsc6E| znS@jyOTR`ny#}LFHGPy+JB;#A)Zgdy2!vNC{em8W@LNi!de-|OH&UM_V<^WW~exX17I-OWwek#7HXdS9w|Ghg5z*!+1B zs-})4+*Q#dvEtd|v5T_@<8F^mDVptyd1nvA-P<(E&gjM2J#qJDUl*No#y4L>k*#Wk8W0lOg; zD9x;icaXsI3x3ih8YazYLs-OZU4~@oNJ4aY+lI?)-1MdL zcE~b-7^%D?VvE>FN=57uyDqIFj)+4~PZmT9BBl!%QQ>bKiC8Ahk%CFnjV==|yK%!~ z>Gm5fM(v0%{X0fwXG|85f*m+O1Ugr@)a5^eS(Sc_o|G>m0`^r>J!Qj3 zoH7%`T#VMeu@T>~ta7nzOT27L>|(skGu8F5sCfE?=#iNhXEsh9O{|`A7f-j&n4^Yh z>#TXEFlLCgzGaTP8>Wstbh)SZekGEqsGK$@HdN2pmdm)}P0Q;!ciB|Z$jtnt_#7Hr zv@pNu6Q~Y6htS!Dlwnzx;FzopUQnRP#O76)k-F8YkoH!-kBDH{(p#<>*P^>F z?yie<&h1`sx6t*X`}Jqz1vL*#E2laW4cn(WZl1n&I@%d`)}mY)$~Wtx z(l@rp1{T(Prj3w+#buC6l~FP7t_4FEl}7oQis%_lzPU@LMJBIGD;7()#!I)(@pC)p zybGl*j}74}opS!mhecdz%?igCRwUM!zh+!EBK46%I`T(lN3Gn?tOZBQj6W;o5oh`L zq;r{g+YRns%~|T;rui>G9iKy;NpNVGTCkvd(=g}^B2OYqt^yy?$IA(Nxo#dtjOjNy z!5Wk@fhbq5+M1Q;YmK(-GVuu`XI(a8WRpHQHZl{vPZ&At(k`<#=9=Pky+`bT6EkAs z8xJ@vs84&$0_x|xLZkXtws%^6GJN#<^Z+I&u>Nfs^;2_*7>CPqDkH0ZBa~93oS>Hu zlGLfnDMU6*H}fo{5hE2EI|D^reb5otuyWcOXTPSOQ!f};M zKX=b1B&vnQ>c)6=&tJs58~vQT|gZ|i?;Q)cPDJE4W@L&>%`BiAD_Q|yIrIukXupcSCMMVEld#Lmp^ zxYzJ>qHgQ7<-S{>*A6dVe>qkkyYkH@dd^^Zy)ed` zRd4!Y4c{1EaC$zd-D2P(y9$atui|E_Qql_&BS+Bozr z(?eI|6<(pgcoUUxtU&{Lm%4!9$s03wGgD{6)}S=B>=xUFk9Y@r=K{NjZj)5=Wf{-# z(rDONc+d~Tj8>|@Iw|a9b&|l@YMhf<=Qn7r97F_tVRPPeUUx=$_zqunCTy;oh1UwF zhhrVzJ^9wjyGP>nd+yaA`eFUO`i`I0{#5*%z+VLB>w4nrdmh-%XnUR#wCFBvav+oW zBriV{OTM(OwtG0a0FAIv>QJ?4*9Gvam=jf?-FD%HBA)Gh85OeL-N;j*Ol-(|Vzhq# zm70*?0UGG4SafZQyEcJ8FWhZgaP6PB?SFhJDXnw#30eo%P+sT^%fhjw01%9aGyiT< zGZ|r;^Dusm@^>R<`8#%k{^;=MgtYAxNr7-A7@2mnOj;wR;gn64Zi***$x&gj+eENq z6^F4QrzT;R%YYK{Jy!!vU?*@PV$FP#wi?42UI}tM+i+A#m8_9qqZ~QgJ&3ibpvb?j%ob@=4ENn;eAy|Oz=)z7J z^XW`xPySAZJ$Xj{eKcD7Edp+^8QLxX0Vrt&0c|rH@Q3ABK~-(fN#o3zR4t>p)e43^ z4$b?yMs4T}$XBVJnfW=Y9nZk~1_|U>4WXcF3=IzA729Y)H4&b!I8YS|CK)uR$E}@> zzA;<@(JO0lqTvZgC|&K}(3eu7=^ec1I&l2}^L1Bw%nicr9kV-P;zHGq>0=3@ zE_N*T{I_gT(|a4BW9n|7nmsjFI~Ts=x$C>re80M#)ZKxvA7JXIDPG+)clkke+rwnV z`Ulm`%Z1!#&$64V*br@f?Q)`G)9u39!q~vvt~vQm+gpLVJ@GAj?^o=5C^Sr;_+Tqn zQt|Z@D^GLo%7nZ8R^d!xRC?g9Up~lf+_rp}=bUbBjU_ivT{{)6f8gA-Y~-93WYAU! zE1Urn{LWn|5kWt!L;vck$(2+;`bQ&mYKJ(JD(m& z-NI7Zh$zcTBZeT&{fN}rEyzix&KXyFcqX_MQcjsbXX9fdY9Ak;uIceB!!|Tm$iQGW zi^hmL^MRVSJ+2~i3y>~&wX;g5%7wF|`!Q^x=uuPd59 zdhNw1P|BJqK2hkNK634Bv=qoCa!%KD{k3P207AKQ+B-EqZ-d|~;M`U4@gqtvlURe=SZl!(-X6ER21rIs8vL(KmjQ^RX_4s`cM!+_6?%c7 zAh-C<9JiQU+vC?KGkw==zxTxTS27F#iyhm}cw^^6aGt{eVOC;bFro240Bn`;eo*A9h(9`3`=5^Pb;ulwj-s4@LNq!~g&Q literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py b/env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py new file mode 100644 index 00000000..72ca8404 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py @@ -0,0 +1,23 @@ +# Automatically generated by scripts/gen_mapfiles.py. +# DO NOT EDIT BY HAND; run `tox -e mapfiles` instead. + +FORMATTERS = { + 'BBCodeFormatter': ('pygments.formatters.bbcode', 'BBCode', ('bbcode', 'bb'), (), 'Format tokens with BBcodes. These formatting codes are used by many bulletin boards, so you can highlight your sourcecode with pygments before posting it there.'), + 'BmpImageFormatter': ('pygments.formatters.img', 'img_bmp', ('bmp', 'bitmap'), ('*.bmp',), 'Create a bitmap image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'GifImageFormatter': ('pygments.formatters.img', 'img_gif', ('gif',), ('*.gif',), 'Create a GIF image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'GroffFormatter': ('pygments.formatters.groff', 'groff', ('groff', 'troff', 'roff'), (), 'Format tokens with groff escapes to change their color and font style.'), + 'HtmlFormatter': ('pygments.formatters.html', 'HTML', ('html',), ('*.html', '*.htm'), "Format tokens as HTML 4 ```` tags. By default, the content is enclosed in a ``

`` tag, itself wrapped in a ``
`` tag (but see the `nowrap` option). The ``
``'s CSS class can be set by the `cssclass` option."), + 'IRCFormatter': ('pygments.formatters.irc', 'IRC', ('irc', 'IRC'), (), 'Format tokens with IRC color sequences'), + 'ImageFormatter': ('pygments.formatters.img', 'img', ('img', 'IMG', 'png'), ('*.png',), 'Create a PNG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'JpgImageFormatter': ('pygments.formatters.img', 'img_jpg', ('jpg', 'jpeg'), ('*.jpg',), 'Create a JPEG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'LatexFormatter': ('pygments.formatters.latex', 'LaTeX', ('latex', 'tex'), ('*.tex',), 'Format tokens as LaTeX code. This needs the `fancyvrb` and `color` standard packages.'), + 'NullFormatter': ('pygments.formatters.other', 'Text only', ('text', 'null'), ('*.txt',), 'Output the text unchanged without any formatting.'), + 'PangoMarkupFormatter': ('pygments.formatters.pangomarkup', 'Pango Markup', ('pango', 'pangomarkup'), (), 'Format tokens as Pango Markup code. It can then be rendered to an SVG.'), + 'RawTokenFormatter': ('pygments.formatters.other', 'Raw tokens', ('raw', 'tokens'), ('*.raw',), 'Format tokens as a raw representation for storing token streams.'), + 'RtfFormatter': ('pygments.formatters.rtf', 'RTF', ('rtf',), ('*.rtf',), 'Format tokens as RTF markup. This formatter automatically outputs full RTF documents with color information and other useful stuff. Perfect for Copy and Paste into Microsoft(R) Word(R) documents.'), + 'SvgFormatter': ('pygments.formatters.svg', 'SVG', ('svg',), ('*.svg',), 'Format tokens as an SVG graphics file. This formatter is still experimental. Each line of code is a ```` element with explicit ``x`` and ``y`` coordinates containing ```` elements with the individual token styles.'), + 'Terminal256Formatter': ('pygments.formatters.terminal256', 'Terminal256', ('terminal256', 'console256', '256'), (), 'Format tokens with ANSI color sequences, for output in a 256-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalFormatter': ('pygments.formatters.terminal', 'Terminal', ('terminal', 'console'), (), 'Format tokens with ANSI color sequences, for output in a text console. Color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalTrueColorFormatter': ('pygments.formatters.terminal256', 'TerminalTrueColor', ('terminal16m', 'console16m', '16m'), (), 'Format tokens with ANSI color sequences, for output in a true-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TestcaseFormatter': ('pygments.formatters.other', 'Testcase', ('testcase',), (), 'Format tokens as appropriate for a new testcase.'), +} diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py b/env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py new file mode 100644 index 00000000..5a05bd96 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py @@ -0,0 +1,108 @@ +""" + pygments.formatters.bbcode + ~~~~~~~~~~~~~~~~~~~~~~~~~~ + + BBcode formatter. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + + +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.util import get_bool_opt + +__all__ = ['BBCodeFormatter'] + + +class BBCodeFormatter(Formatter): + """ + Format tokens with BBcodes. These formatting codes are used by many + bulletin boards, so you can highlight your sourcecode with pygments before + posting it there. + + This formatter has no support for background colors and borders, as there + are no common BBcode tags for that. + + Some board systems (e.g. phpBB) don't support colors in their [code] tag, + so you can't use the highlighting together with that tag. + Text in a [code] tag usually is shown with a monospace font (which this + formatter can do with the ``monofont`` option) and no spaces (which you + need for indentation) are removed. + + Additional options accepted: + + `style` + The style to use, can be a string or a Style subclass (default: + ``'default'``). + + `codetag` + If set to true, put the output into ``[code]`` tags (default: + ``false``) + + `monofont` + If set to true, add a tag to show the code with a monospace font + (default: ``false``). + """ + name = 'BBCode' + aliases = ['bbcode', 'bb'] + filenames = [] + + def __init__(self, **options): + Formatter.__init__(self, **options) + self._code = get_bool_opt(options, 'codetag', False) + self._mono = get_bool_opt(options, 'monofont', False) + + self.styles = {} + self._make_styles() + + def _make_styles(self): + for ttype, ndef in self.style: + start = end = '' + if ndef['color']: + start += '[color=#{}]'.format(ndef['color']) + end = '[/color]' + end + if ndef['bold']: + start += '[b]' + end = '[/b]' + end + if ndef['italic']: + start += '[i]' + end = '[/i]' + end + if ndef['underline']: + start += '[u]' + end = '[/u]' + end + # there are no common BBcodes for background-color and border + + self.styles[ttype] = start, end + + def format_unencoded(self, tokensource, outfile): + if self._code: + outfile.write('[code]') + if self._mono: + outfile.write('[font=monospace]') + + lastval = '' + lasttype = None + + for ttype, value in tokensource: + while ttype not in self.styles: + ttype = ttype.parent + if ttype == lasttype: + lastval += value + else: + if lastval: + start, end = self.styles[lasttype] + outfile.write(''.join((start, lastval, end))) + lastval = value + lasttype = ttype + + if lastval: + start, end = self.styles[lasttype] + outfile.write(''.join((start, lastval, end))) + + if self._mono: + outfile.write('[/font]') + if self._code: + outfile.write('[/code]') + if self._code or self._mono: + outfile.write('\n') diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py b/env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py new file mode 100644 index 00000000..5c8a958f --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py @@ -0,0 +1,170 @@ +""" + pygments.formatters.groff + ~~~~~~~~~~~~~~~~~~~~~~~~~ + + Formatter for groff output. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import math +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.util import get_bool_opt, get_int_opt + +__all__ = ['GroffFormatter'] + + +class GroffFormatter(Formatter): + """ + Format tokens with groff escapes to change their color and font style. + + .. versionadded:: 2.11 + + Additional options accepted: + + `style` + The style to use, can be a string or a Style subclass (default: + ``'default'``). + + `monospaced` + If set to true, monospace font will be used (default: ``true``). + + `linenos` + If set to true, print the line numbers (default: ``false``). + + `wrap` + Wrap lines to the specified number of characters. Disabled if set to 0 + (default: ``0``). + """ + + name = 'groff' + aliases = ['groff','troff','roff'] + filenames = [] + + def __init__(self, **options): + Formatter.__init__(self, **options) + + self.monospaced = get_bool_opt(options, 'monospaced', True) + self.linenos = get_bool_opt(options, 'linenos', False) + self._lineno = 0 + self.wrap = get_int_opt(options, 'wrap', 0) + self._linelen = 0 + + self.styles = {} + self._make_styles() + + + def _make_styles(self): + regular = '\\f[CR]' if self.monospaced else '\\f[R]' + bold = '\\f[CB]' if self.monospaced else '\\f[B]' + italic = '\\f[CI]' if self.monospaced else '\\f[I]' + + for ttype, ndef in self.style: + start = end = '' + if ndef['color']: + start += '\\m[{}]'.format(ndef['color']) + end = '\\m[]' + end + if ndef['bold']: + start += bold + end = regular + end + if ndef['italic']: + start += italic + end = regular + end + if ndef['bgcolor']: + start += '\\M[{}]'.format(ndef['bgcolor']) + end = '\\M[]' + end + + self.styles[ttype] = start, end + + + def _define_colors(self, outfile): + colors = set() + for _, ndef in self.style: + if ndef['color'] is not None: + colors.add(ndef['color']) + + for color in sorted(colors): + outfile.write('.defcolor ' + color + ' rgb #' + color + '\n') + + + def _write_lineno(self, outfile): + self._lineno += 1 + outfile.write("%s% 4d " % (self._lineno != 1 and '\n' or '', self._lineno)) + + + def _wrap_line(self, line): + length = len(line.rstrip('\n')) + space = ' ' if self.linenos else '' + newline = '' + + if length > self.wrap: + for i in range(0, math.floor(length / self.wrap)): + chunk = line[i*self.wrap:i*self.wrap+self.wrap] + newline += (chunk + '\n' + space) + remainder = length % self.wrap + if remainder > 0: + newline += line[-remainder-1:] + self._linelen = remainder + elif self._linelen + length > self.wrap: + newline = ('\n' + space) + line + self._linelen = length + else: + newline = line + self._linelen += length + + return newline + + + def _escape_chars(self, text): + text = text.replace('\\', '\\[u005C]'). \ + replace('.', '\\[char46]'). \ + replace('\'', '\\[u0027]'). \ + replace('`', '\\[u0060]'). \ + replace('~', '\\[u007E]') + copy = text + + for char in copy: + if len(char) != len(char.encode()): + uni = char.encode('unicode_escape') \ + .decode()[1:] \ + .replace('x', 'u00') \ + .upper() + text = text.replace(char, '\\[u' + uni[1:] + ']') + + return text + + + def format_unencoded(self, tokensource, outfile): + self._define_colors(outfile) + + outfile.write('.nf\n\\f[CR]\n') + + if self.linenos: + self._write_lineno(outfile) + + for ttype, value in tokensource: + while ttype not in self.styles: + ttype = ttype.parent + start, end = self.styles[ttype] + + for line in value.splitlines(True): + if self.wrap > 0: + line = self._wrap_line(line) + + if start and end: + text = self._escape_chars(line.rstrip('\n')) + if text != '': + outfile.write(''.join((start, text, end))) + else: + outfile.write(self._escape_chars(line.rstrip('\n'))) + + if line.endswith('\n'): + if self.linenos: + self._write_lineno(outfile) + self._linelen = 0 + else: + outfile.write('\n') + self._linelen = 0 + + outfile.write('\n.fi') diff --git a/env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py b/env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py new file mode 100644 index 00000000..7aa938f5 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py @@ -0,0 +1,987 @@ +""" + pygments.formatters.html + ~~~~~~~~~~~~~~~~~~~~~~~~ + + Formatter for HTML output. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import functools +import os +import sys +import os.path +from io import StringIO + +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.token import Token, Text, STANDARD_TYPES +from pip._vendor.pygments.util import get_bool_opt, get_int_opt, get_list_opt + +try: + import ctags +except ImportError: + ctags = None + +__all__ = ['HtmlFormatter'] + + +_escape_html_table = { + ord('&'): '&', + ord('<'): '<', + ord('>'): '>', + ord('"'): '"', + ord("'"): ''', +} + + +def escape_html(text, table=_escape_html_table): + """Escape &, <, > as well as single and double quotes for HTML.""" + return text.translate(table) + + +def webify(color): + if color.startswith('calc') or color.startswith('var'): + return color + else: + return '#' + color + + +def _get_ttype_class(ttype): + fname = STANDARD_TYPES.get(ttype) + if fname: + return fname + aname = '' + while fname is None: + aname = '-' + ttype[-1] + aname + ttype = ttype.parent + fname = STANDARD_TYPES.get(ttype) + return fname + aname + + +CSSFILE_TEMPLATE = '''\ +/* +generated by Pygments +Copyright 2006-2024 by the Pygments team. +Licensed under the BSD license, see LICENSE for details. +*/ +%(styledefs)s +''' + +DOC_HEADER = '''\ + + + + + %(title)s + + + + +

%(title)s

+ +''' + +DOC_HEADER_EXTERNALCSS = '''\ + + + + + %(title)s + + + + +

%(title)s

+ +''' + +DOC_FOOTER = '''\ + + +''' + + +class HtmlFormatter(Formatter): + r""" + Format tokens as HTML 4 ```` tags. By default, the content is enclosed + in a ``
`` tag, itself wrapped in a ``
`` tag (but see the `nowrap` option). + The ``
``'s CSS class can be set by the `cssclass` option. + + If the `linenos` option is set to ``"table"``, the ``
`` is
+    additionally wrapped inside a ```` which has one row and two
+    cells: one containing the line numbers and one containing the code.
+    Example:
+
+    .. sourcecode:: html
+
+        
+
+ + +
+
1
+            2
+
+
def foo(bar):
+              pass
+            
+
+ + (whitespace added to improve clarity). + + A list of lines can be specified using the `hl_lines` option to make these + lines highlighted (as of Pygments 0.11). + + With the `full` option, a complete HTML 4 document is output, including + the style definitions inside a `` + + +
{code}
+ + +""" + +CONSOLE_SVG_FORMAT = """\ + + + + + + + + + {lines} + + + {chrome} + + {backgrounds} + + {matrix} + + + +""" + +_SVG_FONT_FAMILY = "Rich Fira Code" +_SVG_CLASSES_PREFIX = "rich-svg" diff --git a/env/Lib/site-packages/pip/_vendor/rich/_extension.py b/env/Lib/site-packages/pip/_vendor/rich/_extension.py new file mode 100644 index 00000000..cbd6da9b --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_extension.py @@ -0,0 +1,10 @@ +from typing import Any + + +def load_ipython_extension(ip: Any) -> None: # pragma: no cover + # prevent circular import + from pip._vendor.rich.pretty import install + from pip._vendor.rich.traceback import install as tr_install + + install() + tr_install() diff --git a/env/Lib/site-packages/pip/_vendor/rich/_fileno.py b/env/Lib/site-packages/pip/_vendor/rich/_fileno.py new file mode 100644 index 00000000..b17ee651 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_fileno.py @@ -0,0 +1,24 @@ +from __future__ import annotations + +from typing import IO, Callable + + +def get_fileno(file_like: IO[str]) -> int | None: + """Get fileno() from a file, accounting for poorly implemented file-like objects. + + Args: + file_like (IO): A file-like object. + + Returns: + int | None: The result of fileno if available, or None if operation failed. + """ + fileno: Callable[[], int] | None = getattr(file_like, "fileno", None) + if fileno is not None: + try: + return fileno() + except Exception: + # `fileno` is documented as potentially raising a OSError + # Alas, from the issues, there are so many poorly implemented file-like objects, + # that `fileno()` can raise just about anything. + return None + return None diff --git a/env/Lib/site-packages/pip/_vendor/rich/_inspect.py b/env/Lib/site-packages/pip/_vendor/rich/_inspect.py new file mode 100644 index 00000000..30446ceb --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_inspect.py @@ -0,0 +1,270 @@ +from __future__ import absolute_import + +import inspect +from inspect import cleandoc, getdoc, getfile, isclass, ismodule, signature +from typing import Any, Collection, Iterable, Optional, Tuple, Type, Union + +from .console import Group, RenderableType +from .control import escape_control_codes +from .highlighter import ReprHighlighter +from .jupyter import JupyterMixin +from .panel import Panel +from .pretty import Pretty +from .table import Table +from .text import Text, TextType + + +def _first_paragraph(doc: str) -> str: + """Get the first paragraph from a docstring.""" + paragraph, _, _ = doc.partition("\n\n") + return paragraph + + +class Inspect(JupyterMixin): + """A renderable to inspect any Python Object. + + Args: + obj (Any): An object to inspect. + title (str, optional): Title to display over inspect result, or None use type. Defaults to None. + help (bool, optional): Show full help text rather than just first paragraph. Defaults to False. + methods (bool, optional): Enable inspection of callables. Defaults to False. + docs (bool, optional): Also render doc strings. Defaults to True. + private (bool, optional): Show private attributes (beginning with underscore). Defaults to False. + dunder (bool, optional): Show attributes starting with double underscore. Defaults to False. + sort (bool, optional): Sort attributes alphabetically. Defaults to True. + all (bool, optional): Show all attributes. Defaults to False. + value (bool, optional): Pretty print value of object. Defaults to True. + """ + + def __init__( + self, + obj: Any, + *, + title: Optional[TextType] = None, + help: bool = False, + methods: bool = False, + docs: bool = True, + private: bool = False, + dunder: bool = False, + sort: bool = True, + all: bool = True, + value: bool = True, + ) -> None: + self.highlighter = ReprHighlighter() + self.obj = obj + self.title = title or self._make_title(obj) + if all: + methods = private = dunder = True + self.help = help + self.methods = methods + self.docs = docs or help + self.private = private or dunder + self.dunder = dunder + self.sort = sort + self.value = value + + def _make_title(self, obj: Any) -> Text: + """Make a default title.""" + title_str = ( + str(obj) + if (isclass(obj) or callable(obj) or ismodule(obj)) + else str(type(obj)) + ) + title_text = self.highlighter(title_str) + return title_text + + def __rich__(self) -> Panel: + return Panel.fit( + Group(*self._render()), + title=self.title, + border_style="scope.border", + padding=(0, 1), + ) + + def _get_signature(self, name: str, obj: Any) -> Optional[Text]: + """Get a signature for a callable.""" + try: + _signature = str(signature(obj)) + ":" + except ValueError: + _signature = "(...)" + except TypeError: + return None + + source_filename: Optional[str] = None + try: + source_filename = getfile(obj) + except (OSError, TypeError): + # OSError is raised if obj has no source file, e.g. when defined in REPL. + pass + + callable_name = Text(name, style="inspect.callable") + if source_filename: + callable_name.stylize(f"link file://{source_filename}") + signature_text = self.highlighter(_signature) + + qualname = name or getattr(obj, "__qualname__", name) + + # If obj is a module, there may be classes (which are callable) to display + if inspect.isclass(obj): + prefix = "class" + elif inspect.iscoroutinefunction(obj): + prefix = "async def" + else: + prefix = "def" + + qual_signature = Text.assemble( + (f"{prefix} ", f"inspect.{prefix.replace(' ', '_')}"), + (qualname, "inspect.callable"), + signature_text, + ) + + return qual_signature + + def _render(self) -> Iterable[RenderableType]: + """Render object.""" + + def sort_items(item: Tuple[str, Any]) -> Tuple[bool, str]: + key, (_error, value) = item + return (callable(value), key.strip("_").lower()) + + def safe_getattr(attr_name: str) -> Tuple[Any, Any]: + """Get attribute or any exception.""" + try: + return (None, getattr(obj, attr_name)) + except Exception as error: + return (error, None) + + obj = self.obj + keys = dir(obj) + total_items = len(keys) + if not self.dunder: + keys = [key for key in keys if not key.startswith("__")] + if not self.private: + keys = [key for key in keys if not key.startswith("_")] + not_shown_count = total_items - len(keys) + items = [(key, safe_getattr(key)) for key in keys] + if self.sort: + items.sort(key=sort_items) + + items_table = Table.grid(padding=(0, 1), expand=False) + items_table.add_column(justify="right") + add_row = items_table.add_row + highlighter = self.highlighter + + if callable(obj): + signature = self._get_signature("", obj) + if signature is not None: + yield signature + yield "" + + if self.docs: + _doc = self._get_formatted_doc(obj) + if _doc is not None: + doc_text = Text(_doc, style="inspect.help") + doc_text = highlighter(doc_text) + yield doc_text + yield "" + + if self.value and not (isclass(obj) or callable(obj) or ismodule(obj)): + yield Panel( + Pretty(obj, indent_guides=True, max_length=10, max_string=60), + border_style="inspect.value.border", + ) + yield "" + + for key, (error, value) in items: + key_text = Text.assemble( + ( + key, + "inspect.attr.dunder" if key.startswith("__") else "inspect.attr", + ), + (" =", "inspect.equals"), + ) + if error is not None: + warning = key_text.copy() + warning.stylize("inspect.error") + add_row(warning, highlighter(repr(error))) + continue + + if callable(value): + if not self.methods: + continue + + _signature_text = self._get_signature(key, value) + if _signature_text is None: + add_row(key_text, Pretty(value, highlighter=highlighter)) + else: + if self.docs: + docs = self._get_formatted_doc(value) + if docs is not None: + _signature_text.append("\n" if "\n" in docs else " ") + doc = highlighter(docs) + doc.stylize("inspect.doc") + _signature_text.append(doc) + + add_row(key_text, _signature_text) + else: + add_row(key_text, Pretty(value, highlighter=highlighter)) + if items_table.row_count: + yield items_table + elif not_shown_count: + yield Text.from_markup( + f"[b cyan]{not_shown_count}[/][i] attribute(s) not shown.[/i] " + f"Run [b][magenta]inspect[/]([not b]inspect[/])[/b] for options." + ) + + def _get_formatted_doc(self, object_: Any) -> Optional[str]: + """ + Extract the docstring of an object, process it and returns it. + The processing consists in cleaning up the doctring's indentation, + taking only its 1st paragraph if `self.help` is not True, + and escape its control codes. + + Args: + object_ (Any): the object to get the docstring from. + + Returns: + Optional[str]: the processed docstring, or None if no docstring was found. + """ + docs = getdoc(object_) + if docs is None: + return None + docs = cleandoc(docs).strip() + if not self.help: + docs = _first_paragraph(docs) + return escape_control_codes(docs) + + +def get_object_types_mro(obj: Union[object, Type[Any]]) -> Tuple[type, ...]: + """Returns the MRO of an object's class, or of the object itself if it's a class.""" + if not hasattr(obj, "__mro__"): + # N.B. we cannot use `if type(obj) is type` here because it doesn't work with + # some types of classes, such as the ones that use abc.ABCMeta. + obj = type(obj) + return getattr(obj, "__mro__", ()) + + +def get_object_types_mro_as_strings(obj: object) -> Collection[str]: + """ + Returns the MRO of an object's class as full qualified names, or of the object itself if it's a class. + + Examples: + `object_types_mro_as_strings(JSONDecoder)` will return `['json.decoder.JSONDecoder', 'builtins.object']` + """ + return [ + f'{getattr(type_, "__module__", "")}.{getattr(type_, "__qualname__", "")}' + for type_ in get_object_types_mro(obj) + ] + + +def is_object_one_of_types( + obj: object, fully_qualified_types_names: Collection[str] +) -> bool: + """ + Returns `True` if the given object's class (or the object itself, if it's a class) has one of the + fully qualified names in its MRO. + """ + for type_name in get_object_types_mro_as_strings(obj): + if type_name in fully_qualified_types_names: + return True + return False diff --git a/env/Lib/site-packages/pip/_vendor/rich/_log_render.py b/env/Lib/site-packages/pip/_vendor/rich/_log_render.py new file mode 100644 index 00000000..fc16c844 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_log_render.py @@ -0,0 +1,94 @@ +from datetime import datetime +from typing import Iterable, List, Optional, TYPE_CHECKING, Union, Callable + + +from .text import Text, TextType + +if TYPE_CHECKING: + from .console import Console, ConsoleRenderable, RenderableType + from .table import Table + +FormatTimeCallable = Callable[[datetime], Text] + + +class LogRender: + def __init__( + self, + show_time: bool = True, + show_level: bool = False, + show_path: bool = True, + time_format: Union[str, FormatTimeCallable] = "[%x %X]", + omit_repeated_times: bool = True, + level_width: Optional[int] = 8, + ) -> None: + self.show_time = show_time + self.show_level = show_level + self.show_path = show_path + self.time_format = time_format + self.omit_repeated_times = omit_repeated_times + self.level_width = level_width + self._last_time: Optional[Text] = None + + def __call__( + self, + console: "Console", + renderables: Iterable["ConsoleRenderable"], + log_time: Optional[datetime] = None, + time_format: Optional[Union[str, FormatTimeCallable]] = None, + level: TextType = "", + path: Optional[str] = None, + line_no: Optional[int] = None, + link_path: Optional[str] = None, + ) -> "Table": + from .containers import Renderables + from .table import Table + + output = Table.grid(padding=(0, 1)) + output.expand = True + if self.show_time: + output.add_column(style="log.time") + if self.show_level: + output.add_column(style="log.level", width=self.level_width) + output.add_column(ratio=1, style="log.message", overflow="fold") + if self.show_path and path: + output.add_column(style="log.path") + row: List["RenderableType"] = [] + if self.show_time: + log_time = log_time or console.get_datetime() + time_format = time_format or self.time_format + if callable(time_format): + log_time_display = time_format(log_time) + else: + log_time_display = Text(log_time.strftime(time_format)) + if log_time_display == self._last_time and self.omit_repeated_times: + row.append(Text(" " * len(log_time_display))) + else: + row.append(log_time_display) + self._last_time = log_time_display + if self.show_level: + row.append(level) + + row.append(Renderables(renderables)) + if self.show_path and path: + path_text = Text() + path_text.append( + path, style=f"link file://{link_path}" if link_path else "" + ) + if line_no: + path_text.append(":") + path_text.append( + f"{line_no}", + style=f"link file://{link_path}#{line_no}" if link_path else "", + ) + row.append(path_text) + + output.add_row(*row) + return output + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + c = Console() + c.print("[on blue]Hello", justify="right") + c.log("[on blue]hello", justify="right") diff --git a/env/Lib/site-packages/pip/_vendor/rich/_loop.py b/env/Lib/site-packages/pip/_vendor/rich/_loop.py new file mode 100644 index 00000000..01c6cafb --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_loop.py @@ -0,0 +1,43 @@ +from typing import Iterable, Tuple, TypeVar + +T = TypeVar("T") + + +def loop_first(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for first value.""" + iter_values = iter(values) + try: + value = next(iter_values) + except StopIteration: + return + yield True, value + for value in iter_values: + yield False, value + + +def loop_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + for value in iter_values: + yield False, previous_value + previous_value = value + yield True, previous_value + + +def loop_first_last(values: Iterable[T]) -> Iterable[Tuple[bool, bool, T]]: + """Iterate and generate a tuple with a flag for first and last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + first = True + for value in iter_values: + yield first, False, previous_value + first = False + previous_value = value + yield first, True, previous_value diff --git a/env/Lib/site-packages/pip/_vendor/rich/_null_file.py b/env/Lib/site-packages/pip/_vendor/rich/_null_file.py new file mode 100644 index 00000000..b659673e --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_null_file.py @@ -0,0 +1,69 @@ +from types import TracebackType +from typing import IO, Iterable, Iterator, List, Optional, Type + + +class NullFile(IO[str]): + def close(self) -> None: + pass + + def isatty(self) -> bool: + return False + + def read(self, __n: int = 1) -> str: + return "" + + def readable(self) -> bool: + return False + + def readline(self, __limit: int = 1) -> str: + return "" + + def readlines(self, __hint: int = 1) -> List[str]: + return [] + + def seek(self, __offset: int, __whence: int = 1) -> int: + return 0 + + def seekable(self) -> bool: + return False + + def tell(self) -> int: + return 0 + + def truncate(self, __size: Optional[int] = 1) -> int: + return 0 + + def writable(self) -> bool: + return False + + def writelines(self, __lines: Iterable[str]) -> None: + pass + + def __next__(self) -> str: + return "" + + def __iter__(self) -> Iterator[str]: + return iter([""]) + + def __enter__(self) -> IO[str]: + pass + + def __exit__( + self, + __t: Optional[Type[BaseException]], + __value: Optional[BaseException], + __traceback: Optional[TracebackType], + ) -> None: + pass + + def write(self, text: str) -> int: + return 0 + + def flush(self) -> None: + pass + + def fileno(self) -> int: + return -1 + + +NULL_FILE = NullFile() diff --git a/env/Lib/site-packages/pip/_vendor/rich/_palettes.py b/env/Lib/site-packages/pip/_vendor/rich/_palettes.py new file mode 100644 index 00000000..3c748d33 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_palettes.py @@ -0,0 +1,309 @@ +from .palette import Palette + + +# Taken from https://en.wikipedia.org/wiki/ANSI_escape_code (Windows 10 column) +WINDOWS_PALETTE = Palette( + [ + (12, 12, 12), + (197, 15, 31), + (19, 161, 14), + (193, 156, 0), + (0, 55, 218), + (136, 23, 152), + (58, 150, 221), + (204, 204, 204), + (118, 118, 118), + (231, 72, 86), + (22, 198, 12), + (249, 241, 165), + (59, 120, 255), + (180, 0, 158), + (97, 214, 214), + (242, 242, 242), + ] +) + +# # The standard ansi colors (including bright variants) +STANDARD_PALETTE = Palette( + [ + (0, 0, 0), + (170, 0, 0), + (0, 170, 0), + (170, 85, 0), + (0, 0, 170), + (170, 0, 170), + (0, 170, 170), + (170, 170, 170), + (85, 85, 85), + (255, 85, 85), + (85, 255, 85), + (255, 255, 85), + (85, 85, 255), + (255, 85, 255), + (85, 255, 255), + (255, 255, 255), + ] +) + + +# The 256 color palette +EIGHT_BIT_PALETTE = Palette( + [ + (0, 0, 0), + (128, 0, 0), + (0, 128, 0), + (128, 128, 0), + (0, 0, 128), + (128, 0, 128), + (0, 128, 128), + (192, 192, 192), + (128, 128, 128), + (255, 0, 0), + (0, 255, 0), + (255, 255, 0), + (0, 0, 255), + (255, 0, 255), + (0, 255, 255), + (255, 255, 255), + (0, 0, 0), + (0, 0, 95), + (0, 0, 135), + (0, 0, 175), + (0, 0, 215), + (0, 0, 255), + (0, 95, 0), + (0, 95, 95), + (0, 95, 135), + (0, 95, 175), + (0, 95, 215), + (0, 95, 255), + (0, 135, 0), + (0, 135, 95), + (0, 135, 135), + (0, 135, 175), + (0, 135, 215), + (0, 135, 255), + (0, 175, 0), + (0, 175, 95), + (0, 175, 135), + (0, 175, 175), + (0, 175, 215), + (0, 175, 255), + (0, 215, 0), + (0, 215, 95), + (0, 215, 135), + (0, 215, 175), + (0, 215, 215), + (0, 215, 255), + (0, 255, 0), + (0, 255, 95), + (0, 255, 135), + (0, 255, 175), + (0, 255, 215), + (0, 255, 255), + (95, 0, 0), + (95, 0, 95), + (95, 0, 135), + (95, 0, 175), + (95, 0, 215), + (95, 0, 255), + (95, 95, 0), + (95, 95, 95), + (95, 95, 135), + (95, 95, 175), + (95, 95, 215), + (95, 95, 255), + (95, 135, 0), + (95, 135, 95), + (95, 135, 135), + (95, 135, 175), + (95, 135, 215), + (95, 135, 255), + (95, 175, 0), + (95, 175, 95), + (95, 175, 135), + (95, 175, 175), + (95, 175, 215), + (95, 175, 255), + (95, 215, 0), + (95, 215, 95), + (95, 215, 135), + (95, 215, 175), + (95, 215, 215), + (95, 215, 255), + (95, 255, 0), + (95, 255, 95), + (95, 255, 135), + (95, 255, 175), + (95, 255, 215), + (95, 255, 255), + (135, 0, 0), + (135, 0, 95), + (135, 0, 135), + (135, 0, 175), + (135, 0, 215), + (135, 0, 255), + (135, 95, 0), + (135, 95, 95), + (135, 95, 135), + (135, 95, 175), + (135, 95, 215), + (135, 95, 255), + (135, 135, 0), + (135, 135, 95), + (135, 135, 135), + (135, 135, 175), + (135, 135, 215), + (135, 135, 255), + (135, 175, 0), + (135, 175, 95), + (135, 175, 135), + (135, 175, 175), + (135, 175, 215), + (135, 175, 255), + (135, 215, 0), + (135, 215, 95), + (135, 215, 135), + (135, 215, 175), + (135, 215, 215), + (135, 215, 255), + (135, 255, 0), + (135, 255, 95), + (135, 255, 135), + (135, 255, 175), + (135, 255, 215), + (135, 255, 255), + (175, 0, 0), + (175, 0, 95), + (175, 0, 135), + (175, 0, 175), + (175, 0, 215), + (175, 0, 255), + (175, 95, 0), + (175, 95, 95), + (175, 95, 135), + (175, 95, 175), + (175, 95, 215), + (175, 95, 255), + (175, 135, 0), + (175, 135, 95), + (175, 135, 135), + (175, 135, 175), + (175, 135, 215), + (175, 135, 255), + (175, 175, 0), + (175, 175, 95), + (175, 175, 135), + (175, 175, 175), + (175, 175, 215), + (175, 175, 255), + (175, 215, 0), + (175, 215, 95), + (175, 215, 135), + (175, 215, 175), + (175, 215, 215), + (175, 215, 255), + (175, 255, 0), + (175, 255, 95), + (175, 255, 135), + (175, 255, 175), + (175, 255, 215), + (175, 255, 255), + (215, 0, 0), + (215, 0, 95), + (215, 0, 135), + (215, 0, 175), + (215, 0, 215), + (215, 0, 255), + (215, 95, 0), + (215, 95, 95), + (215, 95, 135), + (215, 95, 175), + (215, 95, 215), + (215, 95, 255), + (215, 135, 0), + (215, 135, 95), + (215, 135, 135), + (215, 135, 175), + (215, 135, 215), + (215, 135, 255), + (215, 175, 0), + (215, 175, 95), + (215, 175, 135), + (215, 175, 175), + (215, 175, 215), + (215, 175, 255), + (215, 215, 0), + (215, 215, 95), + (215, 215, 135), + (215, 215, 175), + (215, 215, 215), + (215, 215, 255), + (215, 255, 0), + (215, 255, 95), + (215, 255, 135), + (215, 255, 175), + (215, 255, 215), + (215, 255, 255), + (255, 0, 0), + (255, 0, 95), + (255, 0, 135), + (255, 0, 175), + (255, 0, 215), + (255, 0, 255), + (255, 95, 0), + (255, 95, 95), + (255, 95, 135), + (255, 95, 175), + (255, 95, 215), + (255, 95, 255), + (255, 135, 0), + (255, 135, 95), + (255, 135, 135), + (255, 135, 175), + (255, 135, 215), + (255, 135, 255), + (255, 175, 0), + (255, 175, 95), + (255, 175, 135), + (255, 175, 175), + (255, 175, 215), + (255, 175, 255), + (255, 215, 0), + (255, 215, 95), + (255, 215, 135), + (255, 215, 175), + (255, 215, 215), + (255, 215, 255), + (255, 255, 0), + (255, 255, 95), + (255, 255, 135), + (255, 255, 175), + (255, 255, 215), + (255, 255, 255), + (8, 8, 8), + (18, 18, 18), + (28, 28, 28), + (38, 38, 38), + (48, 48, 48), + (58, 58, 58), + (68, 68, 68), + (78, 78, 78), + (88, 88, 88), + (98, 98, 98), + (108, 108, 108), + (118, 118, 118), + (128, 128, 128), + (138, 138, 138), + (148, 148, 148), + (158, 158, 158), + (168, 168, 168), + (178, 178, 178), + (188, 188, 188), + (198, 198, 198), + (208, 208, 208), + (218, 218, 218), + (228, 228, 228), + (238, 238, 238), + ] +) diff --git a/env/Lib/site-packages/pip/_vendor/rich/_pick.py b/env/Lib/site-packages/pip/_vendor/rich/_pick.py new file mode 100644 index 00000000..4f6d8b2d --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_pick.py @@ -0,0 +1,17 @@ +from typing import Optional + + +def pick_bool(*values: Optional[bool]) -> bool: + """Pick the first non-none bool or return the last value. + + Args: + *values (bool): Any number of boolean or None values. + + Returns: + bool: First non-none boolean. + """ + assert values, "1 or more values required" + for value in values: + if value is not None: + return value + return bool(value) diff --git a/env/Lib/site-packages/pip/_vendor/rich/_ratio.py b/env/Lib/site-packages/pip/_vendor/rich/_ratio.py new file mode 100644 index 00000000..95267b0c --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_ratio.py @@ -0,0 +1,159 @@ +import sys +from fractions import Fraction +from math import ceil +from typing import cast, List, Optional, Sequence + +if sys.version_info >= (3, 8): + from typing import Protocol +else: + from pip._vendor.typing_extensions import Protocol # pragma: no cover + + +class Edge(Protocol): + """Any object that defines an edge (such as Layout).""" + + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + +def ratio_resolve(total: int, edges: Sequence[Edge]) -> List[int]: + """Divide total space to satisfy size, ratio, and minimum_size, constraints. + + The returned list of integers should add up to total in most cases, unless it is + impossible to satisfy all the constraints. For instance, if there are two edges + with a minimum size of 20 each and `total` is 30 then the returned list will be + greater than total. In practice, this would mean that a Layout object would + clip the rows that would overflow the screen height. + + Args: + total (int): Total number of characters. + edges (List[Edge]): Edges within total space. + + Returns: + List[int]: Number of characters for each edge. + """ + # Size of edge or None for yet to be determined + sizes = [(edge.size or None) for edge in edges] + + _Fraction = Fraction + + # While any edges haven't been calculated + while None in sizes: + # Get flexible edges and index to map these back on to sizes list + flexible_edges = [ + (index, edge) + for index, (size, edge) in enumerate(zip(sizes, edges)) + if size is None + ] + # Remaining space in total + remaining = total - sum(size or 0 for size in sizes) + if remaining <= 0: + # No room for flexible edges + return [ + ((edge.minimum_size or 1) if size is None else size) + for size, edge in zip(sizes, edges) + ] + # Calculate number of characters in a ratio portion + portion = _Fraction( + remaining, sum((edge.ratio or 1) for _, edge in flexible_edges) + ) + + # If any edges will be less than their minimum, replace size with the minimum + for index, edge in flexible_edges: + if portion * edge.ratio <= edge.minimum_size: + sizes[index] = edge.minimum_size + # New fixed size will invalidate calculations, so we need to repeat the process + break + else: + # Distribute flexible space and compensate for rounding error + # Since edge sizes can only be integers we need to add the remainder + # to the following line + remainder = _Fraction(0) + for index, edge in flexible_edges: + size, remainder = divmod(portion * edge.ratio + remainder, 1) + sizes[index] = size + break + # Sizes now contains integers only + return cast(List[int], sizes) + + +def ratio_reduce( + total: int, ratios: List[int], maximums: List[int], values: List[int] +) -> List[int]: + """Divide an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + maximums (List[int]): List of maximums values for each slot. + values (List[int]): List of values + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + ratios = [ratio if _max else 0 for ratio, _max in zip(ratios, maximums)] + total_ratio = sum(ratios) + if not total_ratio: + return values[:] + total_remaining = total + result: List[int] = [] + append = result.append + for ratio, maximum, value in zip(ratios, maximums, values): + if ratio and total_ratio > 0: + distributed = min(maximum, round(ratio * total_remaining / total_ratio)) + append(value - distributed) + total_remaining -= distributed + total_ratio -= ratio + else: + append(value) + return result + + +def ratio_distribute( + total: int, ratios: List[int], minimums: Optional[List[int]] = None +) -> List[int]: + """Distribute an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + minimums (List[int]): List of minimum values for each slot. + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + if minimums: + ratios = [ratio if _min else 0 for ratio, _min in zip(ratios, minimums)] + total_ratio = sum(ratios) + assert total_ratio > 0, "Sum of ratios must be > 0" + + total_remaining = total + distributed_total: List[int] = [] + append = distributed_total.append + if minimums is None: + _minimums = [0] * len(ratios) + else: + _minimums = minimums + for ratio, minimum in zip(ratios, _minimums): + if total_ratio > 0: + distributed = max(minimum, ceil(ratio * total_remaining / total_ratio)) + else: + distributed = total_remaining + append(distributed) + total_ratio -= ratio + total_remaining -= distributed + return distributed_total + + +if __name__ == "__main__": + from dataclasses import dataclass + + @dataclass + class E: + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + resolved = ratio_resolve(110, [E(None, 1, 1), E(None, 1, 1), E(None, 1, 1)]) + print(sum(resolved)) diff --git a/env/Lib/site-packages/pip/_vendor/rich/_spinners.py b/env/Lib/site-packages/pip/_vendor/rich/_spinners.py new file mode 100644 index 00000000..d0bb1fe7 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_spinners.py @@ -0,0 +1,482 @@ +""" +Spinners are from: +* cli-spinners: + MIT License + Copyright (c) Sindre Sorhus (sindresorhus.com) + 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. +""" + +SPINNERS = { + "dots": { + "interval": 80, + "frames": "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", + }, + "dots2": {"interval": 80, "frames": "⣾⣽⣻⢿⡿⣟⣯⣷"}, + "dots3": { + "interval": 80, + "frames": "⠋⠙⠚⠞⠖⠦⠴⠲⠳⠓", + }, + "dots4": { + "interval": 80, + "frames": "⠄⠆⠇⠋⠙⠸⠰⠠⠰⠸⠙⠋⠇⠆", + }, + "dots5": { + "interval": 80, + "frames": "⠋⠙⠚⠒⠂⠂⠒⠲⠴⠦⠖⠒⠐⠐⠒⠓⠋", + }, + "dots6": { + "interval": 80, + "frames": "⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠴⠲⠒⠂⠂⠒⠚⠙⠉⠁", + }, + "dots7": { + "interval": 80, + "frames": "⠈⠉⠋⠓⠒⠐⠐⠒⠖⠦⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈", + }, + "dots8": { + "interval": 80, + "frames": "⠁⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈⠈", + }, + "dots9": {"interval": 80, "frames": "⢹⢺⢼⣸⣇⡧⡗⡏"}, + "dots10": {"interval": 80, "frames": "⢄⢂⢁⡁⡈⡐⡠"}, + "dots11": {"interval": 100, "frames": "⠁⠂⠄⡀⢀⠠⠐⠈"}, + "dots12": { + "interval": 80, + "frames": [ + "⢀⠀", + "⡀⠀", + "⠄⠀", + "⢂⠀", + "⡂⠀", + "⠅⠀", + "⢃⠀", + "⡃⠀", + "⠍⠀", + "⢋⠀", + "⡋⠀", + "⠍⠁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⢈⠩", + "⡀⢙", + "⠄⡙", + "⢂⠩", + "⡂⢘", + "⠅⡘", + "⢃⠨", + "⡃⢐", + "⠍⡐", + "⢋⠠", + "⡋⢀", + "⠍⡁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⠈⠩", + "⠀⢙", + "⠀⡙", + "⠀⠩", + "⠀⢘", + "⠀⡘", + "⠀⠨", + "⠀⢐", + "⠀⡐", + "⠀⠠", + "⠀⢀", + "⠀⡀", + ], + }, + "dots8Bit": { + "interval": 80, + "frames": "⠀⠁⠂⠃⠄⠅⠆⠇⡀⡁⡂⡃⡄⡅⡆⡇⠈⠉⠊⠋⠌⠍⠎⠏⡈⡉⡊⡋⡌⡍⡎⡏⠐⠑⠒⠓⠔⠕⠖⠗⡐⡑⡒⡓⡔⡕⡖⡗⠘⠙⠚⠛⠜⠝⠞⠟⡘⡙" + "⡚⡛⡜⡝⡞⡟⠠⠡⠢⠣⠤⠥⠦⠧⡠⡡⡢⡣⡤⡥⡦⡧⠨⠩⠪⠫⠬⠭⠮⠯⡨⡩⡪⡫⡬⡭⡮⡯⠰⠱⠲⠳⠴⠵⠶⠷⡰⡱⡲⡳⡴⡵⡶⡷⠸⠹⠺⠻" + "⠼⠽⠾⠿⡸⡹⡺⡻⡼⡽⡾⡿⢀⢁⢂⢃⢄⢅⢆⢇⣀⣁⣂⣃⣄⣅⣆⣇⢈⢉⢊⢋⢌⢍⢎⢏⣈⣉⣊⣋⣌⣍⣎⣏⢐⢑⢒⢓⢔⢕⢖⢗⣐⣑⣒⣓⣔⣕" + "⣖⣗⢘⢙⢚⢛⢜⢝⢞⢟⣘⣙⣚⣛⣜⣝⣞⣟⢠⢡⢢⢣⢤⢥⢦⢧⣠⣡⣢⣣⣤⣥⣦⣧⢨⢩⢪⢫⢬⢭⢮⢯⣨⣩⣪⣫⣬⣭⣮⣯⢰⢱⢲⢳⢴⢵⢶⢷" + "⣰⣱⣲⣳⣴⣵⣶⣷⢸⢹⢺⢻⢼⢽⢾⢿⣸⣹⣺⣻⣼⣽⣾⣿", + }, + "line": {"interval": 130, "frames": ["-", "\\", "|", "/"]}, + "line2": {"interval": 100, "frames": "⠂-–—–-"}, + "pipe": {"interval": 100, "frames": "┤┘┴└├┌┬┐"}, + "simpleDots": {"interval": 400, "frames": [". ", ".. ", "...", " "]}, + "simpleDotsScrolling": { + "interval": 200, + "frames": [". ", ".. ", "...", " ..", " .", " "], + }, + "star": {"interval": 70, "frames": "✶✸✹✺✹✷"}, + "star2": {"interval": 80, "frames": "+x*"}, + "flip": { + "interval": 70, + "frames": "___-``'´-___", + }, + "hamburger": {"interval": 100, "frames": "☱☲☴"}, + "growVertical": { + "interval": 120, + "frames": "▁▃▄▅▆▇▆▅▄▃", + }, + "growHorizontal": { + "interval": 120, + "frames": "▏▎▍▌▋▊▉▊▋▌▍▎", + }, + "balloon": {"interval": 140, "frames": " .oO@* "}, + "balloon2": {"interval": 120, "frames": ".oO°Oo."}, + "noise": {"interval": 100, "frames": "▓▒░"}, + "bounce": {"interval": 120, "frames": "⠁⠂⠄⠂"}, + "boxBounce": {"interval": 120, "frames": "▖▘▝▗"}, + "boxBounce2": {"interval": 100, "frames": "▌▀▐▄"}, + "triangle": {"interval": 50, "frames": "◢◣◤◥"}, + "arc": {"interval": 100, "frames": "◜◠◝◞◡◟"}, + "circle": {"interval": 120, "frames": "◡⊙◠"}, + "squareCorners": {"interval": 180, "frames": "◰◳◲◱"}, + "circleQuarters": {"interval": 120, "frames": "◴◷◶◵"}, + "circleHalves": {"interval": 50, "frames": "◐◓◑◒"}, + "squish": {"interval": 100, "frames": "╫╪"}, + "toggle": {"interval": 250, "frames": "⊶⊷"}, + "toggle2": {"interval": 80, "frames": "▫▪"}, + "toggle3": {"interval": 120, "frames": "□■"}, + "toggle4": {"interval": 100, "frames": "■□▪▫"}, + "toggle5": {"interval": 100, "frames": "▮▯"}, + "toggle6": {"interval": 300, "frames": "ဝ၀"}, + "toggle7": {"interval": 80, "frames": "⦾⦿"}, + "toggle8": {"interval": 100, "frames": "◍◌"}, + "toggle9": {"interval": 100, "frames": "◉◎"}, + "toggle10": {"interval": 100, "frames": "㊂㊀㊁"}, + "toggle11": {"interval": 50, "frames": "⧇⧆"}, + "toggle12": {"interval": 120, "frames": "☗☖"}, + "toggle13": {"interval": 80, "frames": "=*-"}, + "arrow": {"interval": 100, "frames": "←↖↑↗→↘↓↙"}, + "arrow2": { + "interval": 80, + "frames": ["⬆️ ", "↗️ ", "➡️ ", "↘️ ", "⬇️ ", "↙️ ", "⬅️ ", "↖️ "], + }, + "arrow3": { + "interval": 120, + "frames": ["▹▹▹▹▹", "▸▹▹▹▹", "▹▸▹▹▹", "▹▹▸▹▹", "▹▹▹▸▹", "▹▹▹▹▸"], + }, + "bouncingBar": { + "interval": 80, + "frames": [ + "[ ]", + "[= ]", + "[== ]", + "[=== ]", + "[ ===]", + "[ ==]", + "[ =]", + "[ ]", + "[ =]", + "[ ==]", + "[ ===]", + "[====]", + "[=== ]", + "[== ]", + "[= ]", + ], + }, + "bouncingBall": { + "interval": 80, + "frames": [ + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "( ●)", + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "(● )", + ], + }, + "smiley": {"interval": 200, "frames": ["😄 ", "😝 "]}, + "monkey": {"interval": 300, "frames": ["🙈 ", "🙈 ", "🙉 ", "🙊 "]}, + "hearts": {"interval": 100, "frames": ["💛 ", "💙 ", "💜 ", "💚 ", "❤️ "]}, + "clock": { + "interval": 100, + "frames": [ + "🕛 ", + "🕐 ", + "🕑 ", + "🕒 ", + "🕓 ", + "🕔 ", + "🕕 ", + "🕖 ", + "🕗 ", + "🕘 ", + "🕙 ", + "🕚 ", + ], + }, + "earth": {"interval": 180, "frames": ["🌍 ", "🌎 ", "🌏 "]}, + "material": { + "interval": 17, + "frames": [ + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███████▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "██████████▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "█████████████▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁██████████████▁▁▁▁", + "▁▁▁██████████████▁▁▁", + "▁▁▁▁█████████████▁▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁▁▁████████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁▁█████████████▁▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁▁███████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁▁█████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + ], + }, + "moon": { + "interval": 80, + "frames": ["🌑 ", "🌒 ", "🌓 ", "🌔 ", "🌕 ", "🌖 ", "🌗 ", "🌘 "], + }, + "runner": {"interval": 140, "frames": ["🚶 ", "🏃 "]}, + "pong": { + "interval": 80, + "frames": [ + "▐⠂ ▌", + "▐⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂▌", + "▐ ⠠▌", + "▐ ⡀▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐⠠ ▌", + ], + }, + "shark": { + "interval": 120, + "frames": [ + "▐|\\____________▌", + "▐_|\\___________▌", + "▐__|\\__________▌", + "▐___|\\_________▌", + "▐____|\\________▌", + "▐_____|\\_______▌", + "▐______|\\______▌", + "▐_______|\\_____▌", + "▐________|\\____▌", + "▐_________|\\___▌", + "▐__________|\\__▌", + "▐___________|\\_▌", + "▐____________|\\▌", + "▐____________/|▌", + "▐___________/|_▌", + "▐__________/|__▌", + "▐_________/|___▌", + "▐________/|____▌", + "▐_______/|_____▌", + "▐______/|______▌", + "▐_____/|_______▌", + "▐____/|________▌", + "▐___/|_________▌", + "▐__/|__________▌", + "▐_/|___________▌", + "▐/|____________▌", + ], + }, + "dqpb": {"interval": 100, "frames": "dqpb"}, + "weather": { + "interval": 100, + "frames": [ + "☀️ ", + "☀️ ", + "☀️ ", + "🌤 ", + "⛅️ ", + "🌥 ", + "☁️ ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "⛈ ", + "🌨 ", + "🌧 ", + "🌨 ", + "☁️ ", + "🌥 ", + "⛅️ ", + "🌤 ", + "☀️ ", + "☀️ ", + ], + }, + "christmas": {"interval": 400, "frames": "🌲🎄"}, + "grenade": { + "interval": 80, + "frames": [ + "، ", + "′ ", + " ´ ", + " ‾ ", + " ⸌", + " ⸊", + " |", + " ⁎", + " ⁕", + " ෴ ", + " ⁓", + " ", + " ", + " ", + ], + }, + "point": {"interval": 125, "frames": ["∙∙∙", "●∙∙", "∙●∙", "∙∙●", "∙∙∙"]}, + "layer": {"interval": 150, "frames": "-=≡"}, + "betaWave": { + "interval": 80, + "frames": [ + "ρββββββ", + "βρβββββ", + "ββρββββ", + "βββρβββ", + "ββββρββ", + "βββββρβ", + "ββββββρ", + ], + }, + "aesthetic": { + "interval": 80, + "frames": [ + "▰▱▱▱▱▱▱", + "▰▰▱▱▱▱▱", + "▰▰▰▱▱▱▱", + "▰▰▰▰▱▱▱", + "▰▰▰▰▰▱▱", + "▰▰▰▰▰▰▱", + "▰▰▰▰▰▰▰", + "▰▱▱▱▱▱▱", + ], + }, +} diff --git a/env/Lib/site-packages/pip/_vendor/rich/_stack.py b/env/Lib/site-packages/pip/_vendor/rich/_stack.py new file mode 100644 index 00000000..194564e7 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_stack.py @@ -0,0 +1,16 @@ +from typing import List, TypeVar + +T = TypeVar("T") + + +class Stack(List[T]): + """A small shim over builtin list.""" + + @property + def top(self) -> T: + """Get top of stack.""" + return self[-1] + + def push(self, item: T) -> None: + """Push an item on to the stack (append in stack nomenclature).""" + self.append(item) diff --git a/env/Lib/site-packages/pip/_vendor/rich/_timer.py b/env/Lib/site-packages/pip/_vendor/rich/_timer.py new file mode 100644 index 00000000..a2ca6be0 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_timer.py @@ -0,0 +1,19 @@ +""" +Timer context manager, only used in debug. + +""" + +from time import time + +import contextlib +from typing import Generator + + +@contextlib.contextmanager +def timer(subject: str = "time") -> Generator[None, None, None]: + """print the elapsed time. (only used in debugging)""" + start = time() + yield + elapsed = time() - start + elapsed_ms = elapsed * 1000 + print(f"{subject} elapsed {elapsed_ms:.1f}ms") diff --git a/env/Lib/site-packages/pip/_vendor/rich/_win32_console.py b/env/Lib/site-packages/pip/_vendor/rich/_win32_console.py new file mode 100644 index 00000000..81b10829 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_win32_console.py @@ -0,0 +1,662 @@ +"""Light wrapper around the Win32 Console API - this module should only be imported on Windows + +The API that this module wraps is documented at https://docs.microsoft.com/en-us/windows/console/console-functions +""" +import ctypes +import sys +from typing import Any + +windll: Any = None +if sys.platform == "win32": + windll = ctypes.LibraryLoader(ctypes.WinDLL) +else: + raise ImportError(f"{__name__} can only be imported on Windows") + +import time +from ctypes import Structure, byref, wintypes +from typing import IO, NamedTuple, Type, cast + +from pip._vendor.rich.color import ColorSystem +from pip._vendor.rich.style import Style + +STDOUT = -11 +ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4 + +COORD = wintypes._COORD + + +class LegacyWindowsError(Exception): + pass + + +class WindowsCoordinates(NamedTuple): + """Coordinates in the Windows Console API are (y, x), not (x, y). + This class is intended to prevent that confusion. + Rows and columns are indexed from 0. + This class can be used in place of wintypes._COORD in arguments and argtypes. + """ + + row: int + col: int + + @classmethod + def from_param(cls, value: "WindowsCoordinates") -> COORD: + """Converts a WindowsCoordinates into a wintypes _COORD structure. + This classmethod is internally called by ctypes to perform the conversion. + + Args: + value (WindowsCoordinates): The input coordinates to convert. + + Returns: + wintypes._COORD: The converted coordinates struct. + """ + return COORD(value.col, value.row) + + +class CONSOLE_SCREEN_BUFFER_INFO(Structure): + _fields_ = [ + ("dwSize", COORD), + ("dwCursorPosition", COORD), + ("wAttributes", wintypes.WORD), + ("srWindow", wintypes.SMALL_RECT), + ("dwMaximumWindowSize", COORD), + ] + + +class CONSOLE_CURSOR_INFO(ctypes.Structure): + _fields_ = [("dwSize", wintypes.DWORD), ("bVisible", wintypes.BOOL)] + + +_GetStdHandle = windll.kernel32.GetStdHandle +_GetStdHandle.argtypes = [ + wintypes.DWORD, +] +_GetStdHandle.restype = wintypes.HANDLE + + +def GetStdHandle(handle: int = STDOUT) -> wintypes.HANDLE: + """Retrieves a handle to the specified standard device (standard input, standard output, or standard error). + + Args: + handle (int): Integer identifier for the handle. Defaults to -11 (stdout). + + Returns: + wintypes.HANDLE: The handle + """ + return cast(wintypes.HANDLE, _GetStdHandle(handle)) + + +_GetConsoleMode = windll.kernel32.GetConsoleMode +_GetConsoleMode.argtypes = [wintypes.HANDLE, wintypes.LPDWORD] +_GetConsoleMode.restype = wintypes.BOOL + + +def GetConsoleMode(std_handle: wintypes.HANDLE) -> int: + """Retrieves the current input mode of a console's input buffer + or the current output mode of a console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Raises: + LegacyWindowsError: If any error occurs while calling the Windows console API. + + Returns: + int: Value representing the current console mode as documented at + https://docs.microsoft.com/en-us/windows/console/getconsolemode#parameters + """ + + console_mode = wintypes.DWORD() + success = bool(_GetConsoleMode(std_handle, console_mode)) + if not success: + raise LegacyWindowsError("Unable to get legacy Windows Console Mode") + return console_mode.value + + +_FillConsoleOutputCharacterW = windll.kernel32.FillConsoleOutputCharacterW +_FillConsoleOutputCharacterW.argtypes = [ + wintypes.HANDLE, + ctypes.c_char, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputCharacterW.restype = wintypes.BOOL + + +def FillConsoleOutputCharacter( + std_handle: wintypes.HANDLE, + char: str, + length: int, + start: WindowsCoordinates, +) -> int: + """Writes a character to the console screen buffer a specified number of times, beginning at the specified coordinates. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + char (str): The character to write. Must be a string of length 1. + length (int): The number of times to write the character. + start (WindowsCoordinates): The coordinates to start writing at. + + Returns: + int: The number of characters written. + """ + character = ctypes.c_char(char.encode()) + num_characters = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + _FillConsoleOutputCharacterW( + std_handle, + character, + num_characters, + start, + byref(num_written), + ) + return num_written.value + + +_FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute +_FillConsoleOutputAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputAttribute.restype = wintypes.BOOL + + +def FillConsoleOutputAttribute( + std_handle: wintypes.HANDLE, + attributes: int, + length: int, + start: WindowsCoordinates, +) -> int: + """Sets the character attributes for a specified number of character cells, + beginning at the specified coordinates in a screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours of the cells. + length (int): The number of cells to set the output attribute of. + start (WindowsCoordinates): The coordinates of the first cell whose attributes are to be set. + + Returns: + int: The number of cells whose attributes were actually set. + """ + num_cells = wintypes.DWORD(length) + style_attrs = wintypes.WORD(attributes) + num_written = wintypes.DWORD(0) + _FillConsoleOutputAttribute( + std_handle, style_attrs, num_cells, start, byref(num_written) + ) + return num_written.value + + +_SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute +_SetConsoleTextAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, +] +_SetConsoleTextAttribute.restype = wintypes.BOOL + + +def SetConsoleTextAttribute( + std_handle: wintypes.HANDLE, attributes: wintypes.WORD +) -> bool: + """Set the colour attributes for all text written after this function is called. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours. + + + Returns: + bool: True if the attribute was set successfully, otherwise False. + """ + return bool(_SetConsoleTextAttribute(std_handle, attributes)) + + +_GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo +_GetConsoleScreenBufferInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_SCREEN_BUFFER_INFO), +] +_GetConsoleScreenBufferInfo.restype = wintypes.BOOL + + +def GetConsoleScreenBufferInfo( + std_handle: wintypes.HANDLE, +) -> CONSOLE_SCREEN_BUFFER_INFO: + """Retrieves information about the specified console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Returns: + CONSOLE_SCREEN_BUFFER_INFO: A CONSOLE_SCREEN_BUFFER_INFO ctype struct contain information about + screen size, cursor position, colour attributes, and more.""" + console_screen_buffer_info = CONSOLE_SCREEN_BUFFER_INFO() + _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info)) + return console_screen_buffer_info + + +_SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition +_SetConsoleCursorPosition.argtypes = [ + wintypes.HANDLE, + cast(Type[COORD], WindowsCoordinates), +] +_SetConsoleCursorPosition.restype = wintypes.BOOL + + +def SetConsoleCursorPosition( + std_handle: wintypes.HANDLE, coords: WindowsCoordinates +) -> bool: + """Set the position of the cursor in the console screen + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + coords (WindowsCoordinates): The coordinates to move the cursor to. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorPosition(std_handle, coords)) + + +_GetConsoleCursorInfo = windll.kernel32.GetConsoleCursorInfo +_GetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_GetConsoleCursorInfo.restype = wintypes.BOOL + + +def GetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Get the cursor info - used to get cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct that receives information + about the console's cursor. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_GetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleCursorInfo = windll.kernel32.SetConsoleCursorInfo +_SetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_SetConsoleCursorInfo.restype = wintypes.BOOL + + +def SetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Set the cursor info - used for adjusting cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct containing the new cursor info. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleTitle = windll.kernel32.SetConsoleTitleW +_SetConsoleTitle.argtypes = [wintypes.LPCWSTR] +_SetConsoleTitle.restype = wintypes.BOOL + + +def SetConsoleTitle(title: str) -> bool: + """Sets the title of the current console window + + Args: + title (str): The new title of the console window. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleTitle(title)) + + +class LegacyWindowsTerm: + """This class allows interaction with the legacy Windows Console API. It should only be used in the context + of environments where virtual terminal processing is not available. However, if it is used in a Windows environment, + the entire API should work. + + Args: + file (IO[str]): The file which the Windows Console API HANDLE is retrieved from, defaults to sys.stdout. + """ + + BRIGHT_BIT = 8 + + # Indices are ANSI color numbers, values are the corresponding Windows Console API color numbers + ANSI_TO_WINDOWS = [ + 0, # black The Windows colours are defined in wincon.h as follows: + 4, # red define FOREGROUND_BLUE 0x0001 -- 0000 0001 + 2, # green define FOREGROUND_GREEN 0x0002 -- 0000 0010 + 6, # yellow define FOREGROUND_RED 0x0004 -- 0000 0100 + 1, # blue define FOREGROUND_INTENSITY 0x0008 -- 0000 1000 + 5, # magenta define BACKGROUND_BLUE 0x0010 -- 0001 0000 + 3, # cyan define BACKGROUND_GREEN 0x0020 -- 0010 0000 + 7, # white define BACKGROUND_RED 0x0040 -- 0100 0000 + 8, # bright black (grey) define BACKGROUND_INTENSITY 0x0080 -- 1000 0000 + 12, # bright red + 10, # bright green + 14, # bright yellow + 9, # bright blue + 13, # bright magenta + 11, # bright cyan + 15, # bright white + ] + + def __init__(self, file: "IO[str]") -> None: + handle = GetStdHandle(STDOUT) + self._handle = handle + default_text = GetConsoleScreenBufferInfo(handle).wAttributes + self._default_text = default_text + + self._default_fore = default_text & 7 + self._default_back = (default_text >> 4) & 7 + self._default_attrs = self._default_fore | (self._default_back << 4) + + self._file = file + self.write = file.write + self.flush = file.flush + + @property + def cursor_position(self) -> WindowsCoordinates: + """Returns the current position of the cursor (0-based) + + Returns: + WindowsCoordinates: The current cursor position. + """ + coord: COORD = GetConsoleScreenBufferInfo(self._handle).dwCursorPosition + return WindowsCoordinates(row=cast(int, coord.Y), col=cast(int, coord.X)) + + @property + def screen_size(self) -> WindowsCoordinates: + """Returns the current size of the console screen buffer, in character columns and rows + + Returns: + WindowsCoordinates: The width and height of the screen as WindowsCoordinates. + """ + screen_size: COORD = GetConsoleScreenBufferInfo(self._handle).dwSize + return WindowsCoordinates( + row=cast(int, screen_size.Y), col=cast(int, screen_size.X) + ) + + def write_text(self, text: str) -> None: + """Write text directly to the terminal without any modification of styles + + Args: + text (str): The text to write to the console + """ + self.write(text) + self.flush() + + def write_styled(self, text: str, style: Style) -> None: + """Write styled text to the terminal. + + Args: + text (str): The text to write + style (Style): The style of the text + """ + color = style.color + bgcolor = style.bgcolor + if style.reverse: + color, bgcolor = bgcolor, color + + if color: + fore = color.downgrade(ColorSystem.WINDOWS).number + fore = fore if fore is not None else 7 # Default to ANSI 7: White + if style.bold: + fore = fore | self.BRIGHT_BIT + if style.dim: + fore = fore & ~self.BRIGHT_BIT + fore = self.ANSI_TO_WINDOWS[fore] + else: + fore = self._default_fore + + if bgcolor: + back = bgcolor.downgrade(ColorSystem.WINDOWS).number + back = back if back is not None else 0 # Default to ANSI 0: Black + back = self.ANSI_TO_WINDOWS[back] + else: + back = self._default_back + + assert fore is not None + assert back is not None + + SetConsoleTextAttribute( + self._handle, attributes=ctypes.c_ushort(fore | (back << 4)) + ) + self.write_text(text) + SetConsoleTextAttribute(self._handle, attributes=self._default_text) + + def move_cursor_to(self, new_position: WindowsCoordinates) -> None: + """Set the position of the cursor + + Args: + new_position (WindowsCoordinates): The WindowsCoordinates representing the new position of the cursor. + """ + if new_position.col < 0 or new_position.row < 0: + return + SetConsoleCursorPosition(self._handle, coords=new_position) + + def erase_line(self) -> None: + """Erase all content on the line the cursor is currently located at""" + screen_size = self.screen_size + cursor_position = self.cursor_position + cells_to_erase = screen_size.col + start_coordinates = WindowsCoordinates(row=cursor_position.row, col=0) + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=start_coordinates + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=start_coordinates, + ) + + def erase_end_of_line(self) -> None: + """Erase all content from the cursor position to the end of that line""" + cursor_position = self.cursor_position + cells_to_erase = self.screen_size.col - cursor_position.col + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=cursor_position + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=cursor_position, + ) + + def erase_start_of_line(self) -> None: + """Erase all content from the cursor position to the start of that line""" + row, col = self.cursor_position + start = WindowsCoordinates(row, 0) + FillConsoleOutputCharacter(self._handle, " ", length=col, start=start) + FillConsoleOutputAttribute( + self._handle, self._default_attrs, length=col, start=start + ) + + def move_cursor_up(self) -> None: + """Move the cursor up a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row - 1, col=cursor_position.col + ), + ) + + def move_cursor_down(self) -> None: + """Move the cursor down a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row + 1, + col=cursor_position.col, + ), + ) + + def move_cursor_forward(self) -> None: + """Move the cursor forward a single cell. Wrap to the next line if required.""" + row, col = self.cursor_position + if col == self.screen_size.col - 1: + row += 1 + col = 0 + else: + col += 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def move_cursor_to_column(self, column: int) -> None: + """Move cursor to the column specified by the zero-based column index, staying on the same row + + Args: + column (int): The zero-based column index to move the cursor to. + """ + row, _ = self.cursor_position + SetConsoleCursorPosition(self._handle, coords=WindowsCoordinates(row, column)) + + def move_cursor_backward(self) -> None: + """Move the cursor backward a single cell. Wrap to the previous line if required.""" + row, col = self.cursor_position + if col == 0: + row -= 1 + col = self.screen_size.col - 1 + else: + col -= 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def hide_cursor(self) -> None: + """Hide the cursor""" + current_cursor_size = self._get_cursor_size() + invisible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=0) + SetConsoleCursorInfo(self._handle, cursor_info=invisible_cursor) + + def show_cursor(self) -> None: + """Show the cursor""" + current_cursor_size = self._get_cursor_size() + visible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=1) + SetConsoleCursorInfo(self._handle, cursor_info=visible_cursor) + + def set_title(self, title: str) -> None: + """Set the title of the terminal window + + Args: + title (str): The new title of the console window + """ + assert len(title) < 255, "Console title must be less than 255 characters" + SetConsoleTitle(title) + + def _get_cursor_size(self) -> int: + """Get the percentage of the character cell that is filled by the cursor""" + cursor_info = CONSOLE_CURSOR_INFO() + GetConsoleCursorInfo(self._handle, cursor_info=cursor_info) + return int(cursor_info.dwSize) + + +if __name__ == "__main__": + handle = GetStdHandle() + + from pip._vendor.rich.console import Console + + console = Console() + + term = LegacyWindowsTerm(sys.stdout) + term.set_title("Win32 Console Examples") + + style = Style(color="black", bgcolor="red") + + heading = Style.parse("black on green") + + # Check colour output + console.rule("Checking colour output") + console.print("[on red]on red!") + console.print("[blue]blue!") + console.print("[yellow]yellow!") + console.print("[bold yellow]bold yellow!") + console.print("[bright_yellow]bright_yellow!") + console.print("[dim bright_yellow]dim bright_yellow!") + console.print("[italic cyan]italic cyan!") + console.print("[bold white on blue]bold white on blue!") + console.print("[reverse bold white on blue]reverse bold white on blue!") + console.print("[bold black on cyan]bold black on cyan!") + console.print("[black on green]black on green!") + console.print("[blue on green]blue on green!") + console.print("[white on black]white on black!") + console.print("[black on white]black on white!") + console.print("[#1BB152 on #DA812D]#1BB152 on #DA812D!") + + # Check cursor movement + console.rule("Checking cursor movement") + console.print() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("went back and wrapped to prev line") + time.sleep(1) + term.move_cursor_up() + term.write_text("we go up") + time.sleep(1) + term.move_cursor_down() + term.write_text("and down") + time.sleep(1) + term.move_cursor_up() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went up and back 2") + time.sleep(1) + term.move_cursor_down() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went down and back 2") + time.sleep(1) + + # Check erasing of lines + term.hide_cursor() + console.print() + console.rule("Checking line erasing") + console.print("\n...Deleting to the start of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + term.move_cursor_to_column(16) + term.write_styled("<", Style.parse("black on red")) + term.move_cursor_backward() + time.sleep(1) + term.erase_start_of_line() + time.sleep(1) + + console.print("\n\n...And to the end of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + + term.move_cursor_to_column(16) + term.write_styled(">", Style.parse("black on red")) + time.sleep(1) + term.erase_end_of_line() + time.sleep(1) + + console.print("\n\n...Now the whole line will be erased...") + term.write_styled("I'm going to disappear!", style=Style.parse("black on cyan")) + time.sleep(1) + term.erase_line() + + term.show_cursor() + print("\n") diff --git a/env/Lib/site-packages/pip/_vendor/rich/_windows.py b/env/Lib/site-packages/pip/_vendor/rich/_windows.py new file mode 100644 index 00000000..7520a9f9 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_windows.py @@ -0,0 +1,71 @@ +import sys +from dataclasses import dataclass + + +@dataclass +class WindowsConsoleFeatures: + """Windows features available.""" + + vt: bool = False + """The console supports VT codes.""" + truecolor: bool = False + """The console supports truecolor.""" + + +try: + import ctypes + from ctypes import LibraryLoader + + if sys.platform == "win32": + windll = LibraryLoader(ctypes.WinDLL) + else: + windll = None + raise ImportError("Not windows") + + from pip._vendor.rich._win32_console import ( + ENABLE_VIRTUAL_TERMINAL_PROCESSING, + GetConsoleMode, + GetStdHandle, + LegacyWindowsError, + ) + +except (AttributeError, ImportError, ValueError): + # Fallback if we can't load the Windows DLL + def get_windows_console_features() -> WindowsConsoleFeatures: + features = WindowsConsoleFeatures() + return features + +else: + + def get_windows_console_features() -> WindowsConsoleFeatures: + """Get windows console features. + + Returns: + WindowsConsoleFeatures: An instance of WindowsConsoleFeatures. + """ + handle = GetStdHandle() + try: + console_mode = GetConsoleMode(handle) + success = True + except LegacyWindowsError: + console_mode = 0 + success = False + vt = bool(success and console_mode & ENABLE_VIRTUAL_TERMINAL_PROCESSING) + truecolor = False + if vt: + win_version = sys.getwindowsversion() + truecolor = win_version.major > 10 or ( + win_version.major == 10 and win_version.build >= 15063 + ) + features = WindowsConsoleFeatures(vt=vt, truecolor=truecolor) + return features + + +if __name__ == "__main__": + import platform + + features = get_windows_console_features() + from pip._vendor.rich import print + + print(f'platform="{platform.system()}"') + print(repr(features)) diff --git a/env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py b/env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py new file mode 100644 index 00000000..5ece0564 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py @@ -0,0 +1,56 @@ +from typing import Iterable, Sequence, Tuple, cast + +from pip._vendor.rich._win32_console import LegacyWindowsTerm, WindowsCoordinates +from pip._vendor.rich.segment import ControlCode, ControlType, Segment + + +def legacy_windows_render(buffer: Iterable[Segment], term: LegacyWindowsTerm) -> None: + """Makes appropriate Windows Console API calls based on the segments in the buffer. + + Args: + buffer (Iterable[Segment]): Iterable of Segments to convert to Win32 API calls. + term (LegacyWindowsTerm): Used to call the Windows Console API. + """ + for text, style, control in buffer: + if not control: + if style: + term.write_styled(text, style) + else: + term.write_text(text) + else: + control_codes: Sequence[ControlCode] = control + for control_code in control_codes: + control_type = control_code[0] + if control_type == ControlType.CURSOR_MOVE_TO: + _, x, y = cast(Tuple[ControlType, int, int], control_code) + term.move_cursor_to(WindowsCoordinates(row=y - 1, col=x - 1)) + elif control_type == ControlType.CARRIAGE_RETURN: + term.write_text("\r") + elif control_type == ControlType.HOME: + term.move_cursor_to(WindowsCoordinates(0, 0)) + elif control_type == ControlType.CURSOR_UP: + term.move_cursor_up() + elif control_type == ControlType.CURSOR_DOWN: + term.move_cursor_down() + elif control_type == ControlType.CURSOR_FORWARD: + term.move_cursor_forward() + elif control_type == ControlType.CURSOR_BACKWARD: + term.move_cursor_backward() + elif control_type == ControlType.CURSOR_MOVE_TO_COLUMN: + _, column = cast(Tuple[ControlType, int], control_code) + term.move_cursor_to_column(column - 1) + elif control_type == ControlType.HIDE_CURSOR: + term.hide_cursor() + elif control_type == ControlType.SHOW_CURSOR: + term.show_cursor() + elif control_type == ControlType.ERASE_IN_LINE: + _, mode = cast(Tuple[ControlType, int], control_code) + if mode == 0: + term.erase_end_of_line() + elif mode == 1: + term.erase_start_of_line() + elif mode == 2: + term.erase_line() + elif control_type == ControlType.SET_WINDOW_TITLE: + _, title = cast(Tuple[ControlType, str], control_code) + term.set_title(title) diff --git a/env/Lib/site-packages/pip/_vendor/rich/_wrap.py b/env/Lib/site-packages/pip/_vendor/rich/_wrap.py new file mode 100644 index 00000000..2e94ff6f --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/_wrap.py @@ -0,0 +1,93 @@ +from __future__ import annotations + +import re +from typing import Iterable + +from ._loop import loop_last +from .cells import cell_len, chop_cells + +re_word = re.compile(r"\s*\S+\s*") + + +def words(text: str) -> Iterable[tuple[int, int, str]]: + """Yields each word from the text as a tuple + containing (start_index, end_index, word). A "word" in this context may + include the actual word and any whitespace to the right. + """ + position = 0 + word_match = re_word.match(text, position) + while word_match is not None: + start, end = word_match.span() + word = word_match.group(0) + yield start, end, word + word_match = re_word.match(text, end) + + +def divide_line(text: str, width: int, fold: bool = True) -> list[int]: + """Given a string of text, and a width (measured in cells), return a list + of cell offsets which the string should be split at in order for it to fit + within the given width. + + Args: + text: The text to examine. + width: The available cell width. + fold: If True, words longer than `width` will be folded onto a new line. + + Returns: + A list of indices to break the line at. + """ + break_positions: list[int] = [] # offsets to insert the breaks at + append = break_positions.append + cell_offset = 0 + _cell_len = cell_len + + for start, _end, word in words(text): + word_length = _cell_len(word.rstrip()) + remaining_space = width - cell_offset + word_fits_remaining_space = remaining_space >= word_length + + if word_fits_remaining_space: + # Simplest case - the word fits within the remaining width for this line. + cell_offset += _cell_len(word) + else: + # Not enough space remaining for this word on the current line. + if word_length > width: + # The word doesn't fit on any line, so we can't simply + # place it on the next line... + if fold: + # Fold the word across multiple lines. + folded_word = chop_cells(word, width=width) + for last, line in loop_last(folded_word): + if start: + append(start) + if last: + cell_offset = _cell_len(line) + else: + start += len(line) + else: + # Folding isn't allowed, so crop the word. + if start: + append(start) + cell_offset = _cell_len(word) + elif cell_offset and start: + # The word doesn't fit within the remaining space on the current + # line, but it *can* fit on to the next (empty) line. + append(start) + cell_offset = _cell_len(word) + + return break_positions + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + + console = Console(width=10) + console.print("12345 abcdefghijklmnopqrstuvwyxzABCDEFGHIJKLMNOPQRSTUVWXYZ 12345") + print(chop_cells("abcdefghijklmnopqrstuvwxyz", 10)) + + console = Console(width=20) + console.rule() + console.print("TextualはPythonの高速アプリケーション開発フレームワークです") + + console.rule() + console.print("アプリケーションは1670万色を使用でき") diff --git a/env/Lib/site-packages/pip/_vendor/rich/abc.py b/env/Lib/site-packages/pip/_vendor/rich/abc.py new file mode 100644 index 00000000..e6e498ef --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/abc.py @@ -0,0 +1,33 @@ +from abc import ABC + + +class RichRenderable(ABC): + """An abstract base class for Rich renderables. + + Note that there is no need to extend this class, the intended use is to check if an + object supports the Rich renderable protocol. For example:: + + if isinstance(my_object, RichRenderable): + console.print(my_object) + + """ + + @classmethod + def __subclasshook__(cls, other: type) -> bool: + """Check if this class supports the rich render protocol.""" + return hasattr(other, "__rich_console__") or hasattr(other, "__rich__") + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.text import Text + + t = Text() + print(isinstance(Text, RichRenderable)) + print(isinstance(t, RichRenderable)) + + class Foo: + pass + + f = Foo() + print(isinstance(f, RichRenderable)) + print(isinstance("", RichRenderable)) diff --git a/env/Lib/site-packages/pip/_vendor/rich/align.py b/env/Lib/site-packages/pip/_vendor/rich/align.py new file mode 100644 index 00000000..f7b734fd --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/align.py @@ -0,0 +1,311 @@ +import sys +from itertools import chain +from typing import TYPE_CHECKING, Iterable, Optional + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + +from .constrain import Constrain +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import StyleType + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + +AlignMethod = Literal["left", "center", "right"] +VerticalAlignMethod = Literal["top", "middle", "bottom"] + + +class Align(JupyterMixin): + """Align a renderable by adding spaces if necessary. + + Args: + renderable (RenderableType): A console renderable. + align (AlignMethod): One of "left", "center", or "right"" + style (StyleType, optional): An optional style to apply to the background. + vertical (Optional[VerticalAlignMethod], optional): Optional vertical align, one of "top", "middle", or "bottom". Defaults to None. + pad (bool, optional): Pad the right with spaces. Defaults to True. + width (int, optional): Restrict contents to given width, or None to use default width. Defaults to None. + height (int, optional): Set height of align renderable, or None to fit to contents. Defaults to None. + + Raises: + ValueError: if ``align`` is not one of the expected values. + """ + + def __init__( + self, + renderable: "RenderableType", + align: AlignMethod = "left", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> None: + if align not in ("left", "center", "right"): + raise ValueError( + f'invalid value for align, expected "left", "center", or "right" (not {align!r})' + ) + if vertical is not None and vertical not in ("top", "middle", "bottom"): + raise ValueError( + f'invalid value for vertical, expected "top", "middle", or "bottom" (not {vertical!r})' + ) + self.renderable = renderable + self.align = align + self.style = style + self.vertical = vertical + self.pad = pad + self.width = width + self.height = height + + def __repr__(self) -> str: + return f"Align({self.renderable!r}, {self.align!r})" + + @classmethod + def left( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the left.""" + return cls( + renderable, + "left", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def center( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the center.""" + return cls( + renderable, + "center", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def right( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the right.""" + return cls( + renderable, + "right", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + align = self.align + width = console.measure(self.renderable, options=options).maximum + rendered = console.render( + Constrain( + self.renderable, width if self.width is None else min(width, self.width) + ), + options.update(height=None), + ) + lines = list(Segment.split_lines(rendered)) + width, height = Segment.get_shape(lines) + lines = Segment.set_shape(lines, width, height) + new_line = Segment.line() + excess_space = options.max_width - width + style = console.get_style(self.style) if self.style is not None else None + + def generate_segments() -> Iterable[Segment]: + if excess_space <= 0: + # Exact fit + for line in lines: + yield from line + yield new_line + + elif align == "left": + # Pad on the right + pad = Segment(" " * excess_space, style) if self.pad else None + for line in lines: + yield from line + if pad: + yield pad + yield new_line + + elif align == "center": + # Pad left and right + left = excess_space // 2 + pad = Segment(" " * left, style) + pad_right = ( + Segment(" " * (excess_space - left), style) if self.pad else None + ) + for line in lines: + if left: + yield pad + yield from line + if pad_right: + yield pad_right + yield new_line + + elif align == "right": + # Padding on left + pad = Segment(" " * excess_space, style) + for line in lines: + yield pad + yield from line + yield new_line + + blank_line = ( + Segment(f"{' ' * (self.width or options.max_width)}\n", style) + if self.pad + else Segment("\n") + ) + + def blank_lines(count: int) -> Iterable[Segment]: + if count > 0: + for _ in range(count): + yield blank_line + + vertical_height = self.height or options.height + iter_segments: Iterable[Segment] + if self.vertical and vertical_height is not None: + if self.vertical == "top": + bottom_space = vertical_height - height + iter_segments = chain(generate_segments(), blank_lines(bottom_space)) + elif self.vertical == "middle": + top_space = (vertical_height - height) // 2 + bottom_space = vertical_height - top_space - height + iter_segments = chain( + blank_lines(top_space), + generate_segments(), + blank_lines(bottom_space), + ) + else: # self.vertical == "bottom": + top_space = vertical_height - height + iter_segments = chain(blank_lines(top_space), generate_segments()) + else: + iter_segments = generate_segments() + if self.style: + style = console.get_style(self.style) + iter_segments = Segment.apply_style(iter_segments, style) + yield from iter_segments + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +class VerticalCenter(JupyterMixin): + """Vertically aligns a renderable. + + Warn: + This class is deprecated and may be removed in a future version. Use Align class with + `vertical="middle"`. + + Args: + renderable (RenderableType): A renderable object. + """ + + def __init__( + self, + renderable: "RenderableType", + style: Optional[StyleType] = None, + ) -> None: + self.renderable = renderable + self.style = style + + def __repr__(self) -> str: + return f"VerticalCenter({self.renderable!r})" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + style = console.get_style(self.style) if self.style is not None else None + lines = console.render_lines( + self.renderable, options.update(height=None), pad=False + ) + width, _height = Segment.get_shape(lines) + new_line = Segment.line() + height = options.height or options.size.height + top_space = (height - len(lines)) // 2 + bottom_space = height - top_space - len(lines) + blank_line = Segment(f"{' ' * width}", style) + + def blank_lines(count: int) -> Iterable[Segment]: + for _ in range(count): + yield blank_line + yield new_line + + if top_space > 0: + yield from blank_lines(top_space) + for line in lines: + yield from line + yield new_line + if bottom_space > 0: + yield from blank_lines(bottom_space) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console, Group + from pip._vendor.rich.highlighter import ReprHighlighter + from pip._vendor.rich.panel import Panel + + highlighter = ReprHighlighter() + console = Console() + + panel = Panel( + Group( + Align.left(highlighter("align='left'")), + Align.center(highlighter("align='center'")), + Align.right(highlighter("align='right'")), + ), + width=60, + style="on dark_blue", + title="Align", + ) + + console.print( + Align.center(panel, vertical="middle", style="on red", height=console.height) + ) diff --git a/env/Lib/site-packages/pip/_vendor/rich/ansi.py b/env/Lib/site-packages/pip/_vendor/rich/ansi.py new file mode 100644 index 00000000..66365e65 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/ansi.py @@ -0,0 +1,240 @@ +import re +import sys +from contextlib import suppress +from typing import Iterable, NamedTuple, Optional + +from .color import Color +from .style import Style +from .text import Text + +re_ansi = re.compile( + r""" +(?:\x1b\](.*?)\x1b\\)| +(?:\x1b([(@-Z\\-_]|\[[0-?]*[ -/]*[@-~])) +""", + re.VERBOSE, +) + + +class _AnsiToken(NamedTuple): + """Result of ansi tokenized string.""" + + plain: str = "" + sgr: Optional[str] = "" + osc: Optional[str] = "" + + +def _ansi_tokenize(ansi_text: str) -> Iterable[_AnsiToken]: + """Tokenize a string in to plain text and ANSI codes. + + Args: + ansi_text (str): A String containing ANSI codes. + + Yields: + AnsiToken: A named tuple of (plain, sgr, osc) + """ + + position = 0 + sgr: Optional[str] + osc: Optional[str] + for match in re_ansi.finditer(ansi_text): + start, end = match.span(0) + osc, sgr = match.groups() + if start > position: + yield _AnsiToken(ansi_text[position:start]) + if sgr: + if sgr == "(": + position = end + 1 + continue + if sgr.endswith("m"): + yield _AnsiToken("", sgr[1:-1], osc) + else: + yield _AnsiToken("", sgr, osc) + position = end + if position < len(ansi_text): + yield _AnsiToken(ansi_text[position:]) + + +SGR_STYLE_MAP = { + 1: "bold", + 2: "dim", + 3: "italic", + 4: "underline", + 5: "blink", + 6: "blink2", + 7: "reverse", + 8: "conceal", + 9: "strike", + 21: "underline2", + 22: "not dim not bold", + 23: "not italic", + 24: "not underline", + 25: "not blink", + 26: "not blink2", + 27: "not reverse", + 28: "not conceal", + 29: "not strike", + 30: "color(0)", + 31: "color(1)", + 32: "color(2)", + 33: "color(3)", + 34: "color(4)", + 35: "color(5)", + 36: "color(6)", + 37: "color(7)", + 39: "default", + 40: "on color(0)", + 41: "on color(1)", + 42: "on color(2)", + 43: "on color(3)", + 44: "on color(4)", + 45: "on color(5)", + 46: "on color(6)", + 47: "on color(7)", + 49: "on default", + 51: "frame", + 52: "encircle", + 53: "overline", + 54: "not frame not encircle", + 55: "not overline", + 90: "color(8)", + 91: "color(9)", + 92: "color(10)", + 93: "color(11)", + 94: "color(12)", + 95: "color(13)", + 96: "color(14)", + 97: "color(15)", + 100: "on color(8)", + 101: "on color(9)", + 102: "on color(10)", + 103: "on color(11)", + 104: "on color(12)", + 105: "on color(13)", + 106: "on color(14)", + 107: "on color(15)", +} + + +class AnsiDecoder: + """Translate ANSI code in to styled Text.""" + + def __init__(self) -> None: + self.style = Style.null() + + def decode(self, terminal_text: str) -> Iterable[Text]: + """Decode ANSI codes in an iterable of lines. + + Args: + lines (Iterable[str]): An iterable of lines of terminal output. + + Yields: + Text: Marked up Text. + """ + for line in terminal_text.splitlines(): + yield self.decode_line(line) + + def decode_line(self, line: str) -> Text: + """Decode a line containing ansi codes. + + Args: + line (str): A line of terminal output. + + Returns: + Text: A Text instance marked up according to ansi codes. + """ + from_ansi = Color.from_ansi + from_rgb = Color.from_rgb + _Style = Style + text = Text() + append = text.append + line = line.rsplit("\r", 1)[-1] + for plain_text, sgr, osc in _ansi_tokenize(line): + if plain_text: + append(plain_text, self.style or None) + elif osc is not None: + if osc.startswith("8;"): + _params, semicolon, link = osc[2:].partition(";") + if semicolon: + self.style = self.style.update_link(link or None) + elif sgr is not None: + # Translate in to semi-colon separated codes + # Ignore invalid codes, because we want to be lenient + codes = [ + min(255, int(_code) if _code else 0) + for _code in sgr.split(";") + if _code.isdigit() or _code == "" + ] + iter_codes = iter(codes) + for code in iter_codes: + if code == 0: + # reset + self.style = _Style.null() + elif code in SGR_STYLE_MAP: + # styles + self.style += _Style.parse(SGR_STYLE_MAP[code]) + elif code == 38: + #  Foreground + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ) + ) + elif code == 48: + # Background + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + None, from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + None, + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ), + ) + + return text + + +if sys.platform != "win32" and __name__ == "__main__": # pragma: no cover + import io + import os + import pty + import sys + + decoder = AnsiDecoder() + + stdout = io.BytesIO() + + def read(fd: int) -> bytes: + data = os.read(fd, 1024) + stdout.write(data) + return data + + pty.spawn(sys.argv[1:], read) + + from .console import Console + + console = Console(record=True) + + stdout_result = stdout.getvalue().decode("utf-8") + print(stdout_result) + + for line in decoder.decode(stdout_result): + console.print(line) + + console.save_html("stdout.html") diff --git a/env/Lib/site-packages/pip/_vendor/rich/bar.py b/env/Lib/site-packages/pip/_vendor/rich/bar.py new file mode 100644 index 00000000..022284b5 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/bar.py @@ -0,0 +1,93 @@ +from typing import Optional, Union + +from .color import Color +from .console import Console, ConsoleOptions, RenderResult +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import Style + +# There are left-aligned characters for 1/8 to 7/8, but +# the right-aligned characters exist only for 1/8 and 4/8. +BEGIN_BLOCK_ELEMENTS = ["█", "█", "█", "▐", "▐", "▐", "▕", "▕"] +END_BLOCK_ELEMENTS = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉"] +FULL_BLOCK = "█" + + +class Bar(JupyterMixin): + """Renders a solid block bar. + + Args: + size (float): Value for the end of the bar. + begin (float): Begin point (between 0 and size, inclusive). + end (float): End point (between 0 and size, inclusive). + width (int, optional): Width of the bar, or ``None`` for maximum width. Defaults to None. + color (Union[Color, str], optional): Color of the bar. Defaults to "default". + bgcolor (Union[Color, str], optional): Color of bar background. Defaults to "default". + """ + + def __init__( + self, + size: float, + begin: float, + end: float, + *, + width: Optional[int] = None, + color: Union[Color, str] = "default", + bgcolor: Union[Color, str] = "default", + ): + self.size = size + self.begin = max(begin, 0) + self.end = min(end, size) + self.width = width + self.style = Style(color=color, bgcolor=bgcolor) + + def __repr__(self) -> str: + return f"Bar({self.size}, {self.begin}, {self.end})" + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + width = min( + self.width if self.width is not None else options.max_width, + options.max_width, + ) + + if self.begin >= self.end: + yield Segment(" " * width, self.style) + yield Segment.line() + return + + prefix_complete_eights = int(width * 8 * self.begin / self.size) + prefix_bar_count = prefix_complete_eights // 8 + prefix_eights_count = prefix_complete_eights % 8 + + body_complete_eights = int(width * 8 * self.end / self.size) + body_bar_count = body_complete_eights // 8 + body_eights_count = body_complete_eights % 8 + + # When start and end fall into the same cell, we ideally should render + # a symbol that's "center-aligned", but there is no good symbol in Unicode. + # In this case, we fall back to right-aligned block symbol for simplicity. + + prefix = " " * prefix_bar_count + if prefix_eights_count: + prefix += BEGIN_BLOCK_ELEMENTS[prefix_eights_count] + + body = FULL_BLOCK * body_bar_count + if body_eights_count: + body += END_BLOCK_ELEMENTS[body_eights_count] + + suffix = " " * (width - len(body)) + + yield Segment(prefix + body[len(prefix) :] + suffix, self.style) + yield Segment.line() + + def __rich_measure__( + self, console: Console, options: ConsoleOptions + ) -> Measurement: + return ( + Measurement(self.width, self.width) + if self.width is not None + else Measurement(4, options.max_width) + ) diff --git a/env/Lib/site-packages/pip/_vendor/rich/box.py b/env/Lib/site-packages/pip/_vendor/rich/box.py new file mode 100644 index 00000000..0511a9e4 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/box.py @@ -0,0 +1,480 @@ +import sys +from typing import TYPE_CHECKING, Iterable, List + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + + +from ._loop import loop_last + +if TYPE_CHECKING: + from pip._vendor.rich.console import ConsoleOptions + + +class Box: + """Defines characters to render boxes. + + ┌─┬┐ top + │ ││ head + ├─┼┤ head_row + │ ││ mid + ├─┼┤ row + ├─┼┤ foot_row + │ ││ foot + └─┴┘ bottom + + Args: + box (str): Characters making up box. + ascii (bool, optional): True if this box uses ascii characters only. Default is False. + """ + + def __init__(self, box: str, *, ascii: bool = False) -> None: + self._box = box + self.ascii = ascii + line1, line2, line3, line4, line5, line6, line7, line8 = box.splitlines() + # top + self.top_left, self.top, self.top_divider, self.top_right = iter(line1) + # head + self.head_left, _, self.head_vertical, self.head_right = iter(line2) + # head_row + ( + self.head_row_left, + self.head_row_horizontal, + self.head_row_cross, + self.head_row_right, + ) = iter(line3) + + # mid + self.mid_left, _, self.mid_vertical, self.mid_right = iter(line4) + # row + self.row_left, self.row_horizontal, self.row_cross, self.row_right = iter(line5) + # foot_row + ( + self.foot_row_left, + self.foot_row_horizontal, + self.foot_row_cross, + self.foot_row_right, + ) = iter(line6) + # foot + self.foot_left, _, self.foot_vertical, self.foot_right = iter(line7) + # bottom + self.bottom_left, self.bottom, self.bottom_divider, self.bottom_right = iter( + line8 + ) + + def __repr__(self) -> str: + return "Box(...)" + + def __str__(self) -> str: + return self._box + + def substitute(self, options: "ConsoleOptions", safe: bool = True) -> "Box": + """Substitute this box for another if it won't render due to platform issues. + + Args: + options (ConsoleOptions): Console options used in rendering. + safe (bool, optional): Substitute this for another Box if there are known problems + displaying on the platform (currently only relevant on Windows). Default is True. + + Returns: + Box: A different Box or the same Box. + """ + box = self + if options.legacy_windows and safe: + box = LEGACY_WINDOWS_SUBSTITUTIONS.get(box, box) + if options.ascii_only and not box.ascii: + box = ASCII + return box + + def get_plain_headed_box(self) -> "Box": + """If this box uses special characters for the borders of the header, then + return the equivalent box that does not. + + Returns: + Box: The most similar Box that doesn't use header-specific box characters. + If the current Box already satisfies this criterion, then it's returned. + """ + return PLAIN_HEADED_SUBSTITUTIONS.get(self, self) + + def get_top(self, widths: Iterable[int]) -> str: + """Get the top of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.top_left) + for last, width in loop_last(widths): + append(self.top * width) + if not last: + append(self.top_divider) + append(self.top_right) + return "".join(parts) + + def get_row( + self, + widths: Iterable[int], + level: Literal["head", "row", "foot", "mid"] = "row", + edge: bool = True, + ) -> str: + """Get the top of a simple box. + + Args: + width (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + if level == "head": + left = self.head_row_left + horizontal = self.head_row_horizontal + cross = self.head_row_cross + right = self.head_row_right + elif level == "row": + left = self.row_left + horizontal = self.row_horizontal + cross = self.row_cross + right = self.row_right + elif level == "mid": + left = self.mid_left + horizontal = " " + cross = self.mid_vertical + right = self.mid_right + elif level == "foot": + left = self.foot_row_left + horizontal = self.foot_row_horizontal + cross = self.foot_row_cross + right = self.foot_row_right + else: + raise ValueError("level must be 'head', 'row' or 'foot'") + + parts: List[str] = [] + append = parts.append + if edge: + append(left) + for last, width in loop_last(widths): + append(horizontal * width) + if not last: + append(cross) + if edge: + append(right) + return "".join(parts) + + def get_bottom(self, widths: Iterable[int]) -> str: + """Get the bottom of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.bottom_left) + for last, width in loop_last(widths): + append(self.bottom * width) + if not last: + append(self.bottom_divider) + append(self.bottom_right) + return "".join(parts) + + +# fmt: off +ASCII: Box = Box( + "+--+\n" + "| ||\n" + "|-+|\n" + "| ||\n" + "|-+|\n" + "|-+|\n" + "| ||\n" + "+--+\n", + ascii=True, +) + +ASCII2: Box = Box( + "+-++\n" + "| ||\n" + "+-++\n" + "| ||\n" + "+-++\n" + "+-++\n" + "| ||\n" + "+-++\n", + ascii=True, +) + +ASCII_DOUBLE_HEAD: Box = Box( + "+-++\n" + "| ||\n" + "+=++\n" + "| ||\n" + "+-++\n" + "+-++\n" + "| ||\n" + "+-++\n", + ascii=True, +) + +SQUARE: Box = Box( + "┌─┬┐\n" + "│ ││\n" + "├─┼┤\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +SQUARE_DOUBLE_HEAD: Box = Box( + "┌─┬┐\n" + "│ ││\n" + "╞═╪╡\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +MINIMAL: Box = Box( + " ╷ \n" + " │ \n" + "╶─┼╴\n" + " │ \n" + "╶─┼╴\n" + "╶─┼╴\n" + " │ \n" + " ╵ \n" +) + + +MINIMAL_HEAVY_HEAD: Box = Box( + " ╷ \n" + " │ \n" + "╺━┿╸\n" + " │ \n" + "╶─┼╴\n" + "╶─┼╴\n" + " │ \n" + " ╵ \n" +) + +MINIMAL_DOUBLE_HEAD: Box = Box( + " ╷ \n" + " │ \n" + " ═╪ \n" + " │ \n" + " ─┼ \n" + " ─┼ \n" + " │ \n" + " ╵ \n" +) + + +SIMPLE: Box = Box( + " \n" + " \n" + " ── \n" + " \n" + " \n" + " ── \n" + " \n" + " \n" +) + +SIMPLE_HEAD: Box = Box( + " \n" + " \n" + " ── \n" + " \n" + " \n" + " \n" + " \n" + " \n" +) + + +SIMPLE_HEAVY: Box = Box( + " \n" + " \n" + " ━━ \n" + " \n" + " \n" + " ━━ \n" + " \n" + " \n" +) + + +HORIZONTALS: Box = Box( + " ── \n" + " \n" + " ── \n" + " \n" + " ── \n" + " ── \n" + " \n" + " ── \n" +) + +ROUNDED: Box = Box( + "╭─┬╮\n" + "│ ││\n" + "├─┼┤\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "╰─┴╯\n" +) + +HEAVY: Box = Box( + "┏━┳┓\n" + "┃ ┃┃\n" + "┣━╋┫\n" + "┃ ┃┃\n" + "┣━╋┫\n" + "┣━╋┫\n" + "┃ ┃┃\n" + "┗━┻┛\n" +) + +HEAVY_EDGE: Box = Box( + "┏━┯┓\n" + "┃ │┃\n" + "┠─┼┨\n" + "┃ │┃\n" + "┠─┼┨\n" + "┠─┼┨\n" + "┃ │┃\n" + "┗━┷┛\n" +) + +HEAVY_HEAD: Box = Box( + "┏━┳┓\n" + "┃ ┃┃\n" + "┡━╇┩\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +DOUBLE: Box = Box( + "╔═╦╗\n" + "║ ║║\n" + "╠═╬╣\n" + "║ ║║\n" + "╠═╬╣\n" + "╠═╬╣\n" + "║ ║║\n" + "╚═╩╝\n" +) + +DOUBLE_EDGE: Box = Box( + "╔═╤╗\n" + "║ │║\n" + "╟─┼╢\n" + "║ │║\n" + "╟─┼╢\n" + "╟─┼╢\n" + "║ │║\n" + "╚═╧╝\n" +) + +MARKDOWN: Box = Box( + " \n" + "| ||\n" + "|-||\n" + "| ||\n" + "|-||\n" + "|-||\n" + "| ||\n" + " \n", + ascii=True, +) +# fmt: on + +# Map Boxes that don't render with raster fonts on to equivalent that do +LEGACY_WINDOWS_SUBSTITUTIONS = { + ROUNDED: SQUARE, + MINIMAL_HEAVY_HEAD: MINIMAL, + SIMPLE_HEAVY: SIMPLE, + HEAVY: SQUARE, + HEAVY_EDGE: SQUARE, + HEAVY_HEAD: SQUARE, +} + +# Map headed boxes to their headerless equivalents +PLAIN_HEADED_SUBSTITUTIONS = { + HEAVY_HEAD: SQUARE, + SQUARE_DOUBLE_HEAD: SQUARE, + MINIMAL_DOUBLE_HEAD: MINIMAL, + MINIMAL_HEAVY_HEAD: MINIMAL, + ASCII_DOUBLE_HEAD: ASCII2, +} + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.panel import Panel + + from . import box as box + from .console import Console + from .table import Table + from .text import Text + + console = Console(record=True) + + BOXES = [ + "ASCII", + "ASCII2", + "ASCII_DOUBLE_HEAD", + "SQUARE", + "SQUARE_DOUBLE_HEAD", + "MINIMAL", + "MINIMAL_HEAVY_HEAD", + "MINIMAL_DOUBLE_HEAD", + "SIMPLE", + "SIMPLE_HEAD", + "SIMPLE_HEAVY", + "HORIZONTALS", + "ROUNDED", + "HEAVY", + "HEAVY_EDGE", + "HEAVY_HEAD", + "DOUBLE", + "DOUBLE_EDGE", + "MARKDOWN", + ] + + console.print(Panel("[bold green]Box Constants", style="green"), justify="center") + console.print() + + columns = Columns(expand=True, padding=2) + for box_name in sorted(BOXES): + table = Table( + show_footer=True, style="dim", border_style="not dim", expand=True + ) + table.add_column("Header 1", "Footer 1") + table.add_column("Header 2", "Footer 2") + table.add_row("Cell", "Cell") + table.add_row("Cell", "Cell") + table.box = getattr(box, box_name) + table.title = Text(f"box.{box_name}", style="magenta") + columns.add_renderable(table) + console.print(columns) + + # console.save_svg("box.svg") diff --git a/env/Lib/site-packages/pip/_vendor/rich/cells.py b/env/Lib/site-packages/pip/_vendor/rich/cells.py new file mode 100644 index 00000000..f85f928f --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/cells.py @@ -0,0 +1,167 @@ +from __future__ import annotations + +import re +from functools import lru_cache +from typing import Callable + +from ._cell_widths import CELL_WIDTHS + +# Regex to match sequence of the most common character ranges +_is_single_cell_widths = re.compile("^[\u0020-\u006f\u00a0\u02ff\u0370-\u0482]*$").match + + +@lru_cache(4096) +def cached_cell_len(text: str) -> int: + """Get the number of cells required to display text. + + This method always caches, which may use up a lot of memory. It is recommended to use + `cell_len` over this method. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + _get_size = get_character_cell_size + total_size = sum(_get_size(character) for character in text) + return total_size + + +def cell_len(text: str, _cell_len: Callable[[str], int] = cached_cell_len) -> int: + """Get the number of cells required to display text. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + if len(text) < 512: + return _cell_len(text) + _get_size = get_character_cell_size + total_size = sum(_get_size(character) for character in text) + return total_size + + +@lru_cache(maxsize=4096) +def get_character_cell_size(character: str) -> int: + """Get the cell size of a character. + + Args: + character (str): A single character. + + Returns: + int: Number of cells (0, 1 or 2) occupied by that character. + """ + return _get_codepoint_cell_size(ord(character)) + + +@lru_cache(maxsize=4096) +def _get_codepoint_cell_size(codepoint: int) -> int: + """Get the cell size of a character. + + Args: + codepoint (int): Codepoint of a character. + + Returns: + int: Number of cells (0, 1 or 2) occupied by that character. + """ + + _table = CELL_WIDTHS + lower_bound = 0 + upper_bound = len(_table) - 1 + index = (lower_bound + upper_bound) // 2 + while True: + start, end, width = _table[index] + if codepoint < start: + upper_bound = index - 1 + elif codepoint > end: + lower_bound = index + 1 + else: + return 0 if width == -1 else width + if upper_bound < lower_bound: + break + index = (lower_bound + upper_bound) // 2 + return 1 + + +def set_cell_size(text: str, total: int) -> str: + """Set the length of a string to fit within given number of cells.""" + + if _is_single_cell_widths(text): + size = len(text) + if size < total: + return text + " " * (total - size) + return text[:total] + + if total <= 0: + return "" + cell_size = cell_len(text) + if cell_size == total: + return text + if cell_size < total: + return text + " " * (total - cell_size) + + start = 0 + end = len(text) + + # Binary search until we find the right size + while True: + pos = (start + end) // 2 + before = text[: pos + 1] + before_len = cell_len(before) + if before_len == total + 1 and cell_len(before[-1]) == 2: + return before[:-1] + " " + if before_len == total: + return before + if before_len > total: + end = pos + else: + start = pos + + +def chop_cells( + text: str, + width: int, +) -> list[str]: + """Split text into lines such that each line fits within the available (cell) width. + + Args: + text: The text to fold such that it fits in the given width. + width: The width available (number of cells). + + Returns: + A list of strings such that each string in the list has cell width + less than or equal to the available width. + """ + _get_character_cell_size = get_character_cell_size + lines: list[list[str]] = [[]] + + append_new_line = lines.append + append_to_last_line = lines[-1].append + + total_width = 0 + + for character in text: + cell_width = _get_character_cell_size(character) + char_doesnt_fit = total_width + cell_width > width + + if char_doesnt_fit: + append_new_line([character]) + append_to_last_line = lines[-1].append + total_width = cell_width + else: + append_to_last_line(character) + total_width += cell_width + + return ["".join(line) for line in lines] + + +if __name__ == "__main__": # pragma: no cover + print(get_character_cell_size("😽")) + for line in chop_cells("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", 8): + print(line) + for n in range(80, 1, -1): + print(set_cell_size("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", n) + "|") + print("x" * n) diff --git a/env/Lib/site-packages/pip/_vendor/rich/color.py b/env/Lib/site-packages/pip/_vendor/rich/color.py new file mode 100644 index 00000000..4270a278 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/color.py @@ -0,0 +1,621 @@ +import platform +import re +from colorsys import rgb_to_hls +from enum import IntEnum +from functools import lru_cache +from typing import TYPE_CHECKING, NamedTuple, Optional, Tuple + +from ._palettes import EIGHT_BIT_PALETTE, STANDARD_PALETTE, WINDOWS_PALETTE +from .color_triplet import ColorTriplet +from .repr import Result, rich_repr +from .terminal_theme import DEFAULT_TERMINAL_THEME + +if TYPE_CHECKING: # pragma: no cover + from .terminal_theme import TerminalTheme + from .text import Text + + +WINDOWS = platform.system() == "Windows" + + +class ColorSystem(IntEnum): + """One of the 3 color system supported by terminals.""" + + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorSystem.{self.name}" + + def __str__(self) -> str: + return repr(self) + + +class ColorType(IntEnum): + """Type of color stored in Color class.""" + + DEFAULT = 0 + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorType.{self.name}" + + +ANSI_COLOR_NAMES = { + "black": 0, + "red": 1, + "green": 2, + "yellow": 3, + "blue": 4, + "magenta": 5, + "cyan": 6, + "white": 7, + "bright_black": 8, + "bright_red": 9, + "bright_green": 10, + "bright_yellow": 11, + "bright_blue": 12, + "bright_magenta": 13, + "bright_cyan": 14, + "bright_white": 15, + "grey0": 16, + "gray0": 16, + "navy_blue": 17, + "dark_blue": 18, + "blue3": 20, + "blue1": 21, + "dark_green": 22, + "deep_sky_blue4": 25, + "dodger_blue3": 26, + "dodger_blue2": 27, + "green4": 28, + "spring_green4": 29, + "turquoise4": 30, + "deep_sky_blue3": 32, + "dodger_blue1": 33, + "green3": 40, + "spring_green3": 41, + "dark_cyan": 36, + "light_sea_green": 37, + "deep_sky_blue2": 38, + "deep_sky_blue1": 39, + "spring_green2": 47, + "cyan3": 43, + "dark_turquoise": 44, + "turquoise2": 45, + "green1": 46, + "spring_green1": 48, + "medium_spring_green": 49, + "cyan2": 50, + "cyan1": 51, + "dark_red": 88, + "deep_pink4": 125, + "purple4": 55, + "purple3": 56, + "blue_violet": 57, + "orange4": 94, + "grey37": 59, + "gray37": 59, + "medium_purple4": 60, + "slate_blue3": 62, + "royal_blue1": 63, + "chartreuse4": 64, + "dark_sea_green4": 71, + "pale_turquoise4": 66, + "steel_blue": 67, + "steel_blue3": 68, + "cornflower_blue": 69, + "chartreuse3": 76, + "cadet_blue": 73, + "sky_blue3": 74, + "steel_blue1": 81, + "pale_green3": 114, + "sea_green3": 78, + "aquamarine3": 79, + "medium_turquoise": 80, + "chartreuse2": 112, + "sea_green2": 83, + "sea_green1": 85, + "aquamarine1": 122, + "dark_slate_gray2": 87, + "dark_magenta": 91, + "dark_violet": 128, + "purple": 129, + "light_pink4": 95, + "plum4": 96, + "medium_purple3": 98, + "slate_blue1": 99, + "yellow4": 106, + "wheat4": 101, + "grey53": 102, + "gray53": 102, + "light_slate_grey": 103, + "light_slate_gray": 103, + "medium_purple": 104, + "light_slate_blue": 105, + "dark_olive_green3": 149, + "dark_sea_green": 108, + "light_sky_blue3": 110, + "sky_blue2": 111, + "dark_sea_green3": 150, + "dark_slate_gray3": 116, + "sky_blue1": 117, + "chartreuse1": 118, + "light_green": 120, + "pale_green1": 156, + "dark_slate_gray1": 123, + "red3": 160, + "medium_violet_red": 126, + "magenta3": 164, + "dark_orange3": 166, + "indian_red": 167, + "hot_pink3": 168, + "medium_orchid3": 133, + "medium_orchid": 134, + "medium_purple2": 140, + "dark_goldenrod": 136, + "light_salmon3": 173, + "rosy_brown": 138, + "grey63": 139, + "gray63": 139, + "medium_purple1": 141, + "gold3": 178, + "dark_khaki": 143, + "navajo_white3": 144, + "grey69": 145, + "gray69": 145, + "light_steel_blue3": 146, + "light_steel_blue": 147, + "yellow3": 184, + "dark_sea_green2": 157, + "light_cyan3": 152, + "light_sky_blue1": 153, + "green_yellow": 154, + "dark_olive_green2": 155, + "dark_sea_green1": 193, + "pale_turquoise1": 159, + "deep_pink3": 162, + "magenta2": 200, + "hot_pink2": 169, + "orchid": 170, + "medium_orchid1": 207, + "orange3": 172, + "light_pink3": 174, + "pink3": 175, + "plum3": 176, + "violet": 177, + "light_goldenrod3": 179, + "tan": 180, + "misty_rose3": 181, + "thistle3": 182, + "plum2": 183, + "khaki3": 185, + "light_goldenrod2": 222, + "light_yellow3": 187, + "grey84": 188, + "gray84": 188, + "light_steel_blue1": 189, + "yellow2": 190, + "dark_olive_green1": 192, + "honeydew2": 194, + "light_cyan1": 195, + "red1": 196, + "deep_pink2": 197, + "deep_pink1": 199, + "magenta1": 201, + "orange_red1": 202, + "indian_red1": 204, + "hot_pink": 206, + "dark_orange": 208, + "salmon1": 209, + "light_coral": 210, + "pale_violet_red1": 211, + "orchid2": 212, + "orchid1": 213, + "orange1": 214, + "sandy_brown": 215, + "light_salmon1": 216, + "light_pink1": 217, + "pink1": 218, + "plum1": 219, + "gold1": 220, + "navajo_white1": 223, + "misty_rose1": 224, + "thistle1": 225, + "yellow1": 226, + "light_goldenrod1": 227, + "khaki1": 228, + "wheat1": 229, + "cornsilk1": 230, + "grey100": 231, + "gray100": 231, + "grey3": 232, + "gray3": 232, + "grey7": 233, + "gray7": 233, + "grey11": 234, + "gray11": 234, + "grey15": 235, + "gray15": 235, + "grey19": 236, + "gray19": 236, + "grey23": 237, + "gray23": 237, + "grey27": 238, + "gray27": 238, + "grey30": 239, + "gray30": 239, + "grey35": 240, + "gray35": 240, + "grey39": 241, + "gray39": 241, + "grey42": 242, + "gray42": 242, + "grey46": 243, + "gray46": 243, + "grey50": 244, + "gray50": 244, + "grey54": 245, + "gray54": 245, + "grey58": 246, + "gray58": 246, + "grey62": 247, + "gray62": 247, + "grey66": 248, + "gray66": 248, + "grey70": 249, + "gray70": 249, + "grey74": 250, + "gray74": 250, + "grey78": 251, + "gray78": 251, + "grey82": 252, + "gray82": 252, + "grey85": 253, + "gray85": 253, + "grey89": 254, + "gray89": 254, + "grey93": 255, + "gray93": 255, +} + + +class ColorParseError(Exception): + """The color could not be parsed.""" + + +RE_COLOR = re.compile( + r"""^ +\#([0-9a-f]{6})$| +color\(([0-9]{1,3})\)$| +rgb\(([\d\s,]+)\)$ +""", + re.VERBOSE, +) + + +@rich_repr +class Color(NamedTuple): + """Terminal color definition.""" + + name: str + """The name of the color (typically the input to Color.parse).""" + type: ColorType + """The type of the color.""" + number: Optional[int] = None + """The color number, if a standard color, or None.""" + triplet: Optional[ColorTriplet] = None + """A triplet of color components, if an RGB color.""" + + def __rich__(self) -> "Text": + """Displays the actual color if Rich printed.""" + from .style import Style + from .text import Text + + return Text.assemble( + f"", + ) + + def __rich_repr__(self) -> Result: + yield self.name + yield self.type + yield "number", self.number, None + yield "triplet", self.triplet, None + + @property + def system(self) -> ColorSystem: + """Get the native color system for this color.""" + if self.type == ColorType.DEFAULT: + return ColorSystem.STANDARD + return ColorSystem(int(self.type)) + + @property + def is_system_defined(self) -> bool: + """Check if the color is ultimately defined by the system.""" + return self.system not in (ColorSystem.EIGHT_BIT, ColorSystem.TRUECOLOR) + + @property + def is_default(self) -> bool: + """Check if the color is a default color.""" + return self.type == ColorType.DEFAULT + + def get_truecolor( + self, theme: Optional["TerminalTheme"] = None, foreground: bool = True + ) -> ColorTriplet: + """Get an equivalent color triplet for this color. + + Args: + theme (TerminalTheme, optional): Optional terminal theme, or None to use default. Defaults to None. + foreground (bool, optional): True for a foreground color, or False for background. Defaults to True. + + Returns: + ColorTriplet: A color triplet containing RGB components. + """ + + if theme is None: + theme = DEFAULT_TERMINAL_THEME + if self.type == ColorType.TRUECOLOR: + assert self.triplet is not None + return self.triplet + elif self.type == ColorType.EIGHT_BIT: + assert self.number is not None + return EIGHT_BIT_PALETTE[self.number] + elif self.type == ColorType.STANDARD: + assert self.number is not None + return theme.ansi_colors[self.number] + elif self.type == ColorType.WINDOWS: + assert self.number is not None + return WINDOWS_PALETTE[self.number] + else: # self.type == ColorType.DEFAULT: + assert self.number is None + return theme.foreground_color if foreground else theme.background_color + + @classmethod + def from_ansi(cls, number: int) -> "Color": + """Create a Color number from it's 8-bit ansi number. + + Args: + number (int): A number between 0-255 inclusive. + + Returns: + Color: A new Color instance. + """ + return cls( + name=f"color({number})", + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + @classmethod + def from_triplet(cls, triplet: "ColorTriplet") -> "Color": + """Create a truecolor RGB color from a triplet of values. + + Args: + triplet (ColorTriplet): A color triplet containing red, green and blue components. + + Returns: + Color: A new color object. + """ + return cls(name=triplet.hex, type=ColorType.TRUECOLOR, triplet=triplet) + + @classmethod + def from_rgb(cls, red: float, green: float, blue: float) -> "Color": + """Create a truecolor from three color components in the range(0->255). + + Args: + red (float): Red component in range 0-255. + green (float): Green component in range 0-255. + blue (float): Blue component in range 0-255. + + Returns: + Color: A new color object. + """ + return cls.from_triplet(ColorTriplet(int(red), int(green), int(blue))) + + @classmethod + def default(cls) -> "Color": + """Get a Color instance representing the default color. + + Returns: + Color: Default color. + """ + return cls(name="default", type=ColorType.DEFAULT) + + @classmethod + @lru_cache(maxsize=1024) + def parse(cls, color: str) -> "Color": + """Parse a color definition.""" + original_color = color + color = color.lower().strip() + + if color == "default": + return cls(color, type=ColorType.DEFAULT) + + color_number = ANSI_COLOR_NAMES.get(color) + if color_number is not None: + return cls( + color, + type=(ColorType.STANDARD if color_number < 16 else ColorType.EIGHT_BIT), + number=color_number, + ) + + color_match = RE_COLOR.match(color) + if color_match is None: + raise ColorParseError(f"{original_color!r} is not a valid color") + + color_24, color_8, color_rgb = color_match.groups() + if color_24: + triplet = ColorTriplet( + int(color_24[0:2], 16), int(color_24[2:4], 16), int(color_24[4:6], 16) + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + elif color_8: + number = int(color_8) + if number > 255: + raise ColorParseError(f"color number must be <= 255 in {color!r}") + return cls( + color, + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + else: # color_rgb: + components = color_rgb.split(",") + if len(components) != 3: + raise ColorParseError( + f"expected three components in {original_color!r}" + ) + red, green, blue = components + triplet = ColorTriplet(int(red), int(green), int(blue)) + if not all(component <= 255 for component in triplet): + raise ColorParseError( + f"color components must be <= 255 in {original_color!r}" + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + @lru_cache(maxsize=1024) + def get_ansi_codes(self, foreground: bool = True) -> Tuple[str, ...]: + """Get the ANSI escape codes for this color.""" + _type = self.type + if _type == ColorType.DEFAULT: + return ("39" if foreground else "49",) + + elif _type == ColorType.WINDOWS: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.STANDARD: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.EIGHT_BIT: + assert self.number is not None + return ("38" if foreground else "48", "5", str(self.number)) + + else: # self.standard == ColorStandard.TRUECOLOR: + assert self.triplet is not None + red, green, blue = self.triplet + return ("38" if foreground else "48", "2", str(red), str(green), str(blue)) + + @lru_cache(maxsize=1024) + def downgrade(self, system: ColorSystem) -> "Color": + """Downgrade a color system to a system with fewer colors.""" + + if self.type in (ColorType.DEFAULT, system): + return self + # Convert to 8-bit color from truecolor color + if system == ColorSystem.EIGHT_BIT and self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + _h, l, s = rgb_to_hls(*self.triplet.normalized) + # If saturation is under 15% assume it is grayscale + if s < 0.15: + gray = round(l * 25.0) + if gray == 0: + color_number = 16 + elif gray == 25: + color_number = 231 + else: + color_number = 231 + gray + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + red, green, blue = self.triplet + six_red = red / 95 if red < 95 else 1 + (red - 95) / 40 + six_green = green / 95 if green < 95 else 1 + (green - 95) / 40 + six_blue = blue / 95 if blue < 95 else 1 + (blue - 95) / 40 + + color_number = ( + 16 + 36 * round(six_red) + 6 * round(six_green) + round(six_blue) + ) + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + # Convert to standard from truecolor or 8-bit + elif system == ColorSystem.STANDARD: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = STANDARD_PALETTE.match(triplet) + return Color(self.name, ColorType.STANDARD, number=color_number) + + elif system == ColorSystem.WINDOWS: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + if self.number < 16: + return Color(self.name, ColorType.WINDOWS, number=self.number) + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = WINDOWS_PALETTE.match(triplet) + return Color(self.name, ColorType.WINDOWS, number=color_number) + + return self + + +def parse_rgb_hex(hex_color: str) -> ColorTriplet: + """Parse six hex characters in to RGB triplet.""" + assert len(hex_color) == 6, "must be 6 characters" + color = ColorTriplet( + int(hex_color[0:2], 16), int(hex_color[2:4], 16), int(hex_color[4:6], 16) + ) + return color + + +def blend_rgb( + color1: ColorTriplet, color2: ColorTriplet, cross_fade: float = 0.5 +) -> ColorTriplet: + """Blend one RGB color in to another.""" + r1, g1, b1 = color1 + r2, g2, b2 = color2 + new_color = ColorTriplet( + int(r1 + (r2 - r1) * cross_fade), + int(g1 + (g2 - g1) * cross_fade), + int(b1 + (b2 - b1) * cross_fade), + ) + return new_color + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + from .table import Table + from .text import Text + + console = Console() + + table = Table(show_footer=False, show_edge=True) + table.add_column("Color", width=10, overflow="ellipsis") + table.add_column("Number", justify="right", style="yellow") + table.add_column("Name", style="green") + table.add_column("Hex", style="blue") + table.add_column("RGB", style="magenta") + + colors = sorted((v, k) for k, v in ANSI_COLOR_NAMES.items()) + for color_number, name in colors: + if "grey" in name: + continue + color_cell = Text(" " * 10, style=f"on {name}") + if color_number < 16: + table.add_row(color_cell, f"{color_number}", Text(f'"{name}"')) + else: + color = EIGHT_BIT_PALETTE[color_number] # type: ignore[has-type] + table.add_row( + color_cell, str(color_number), Text(f'"{name}"'), color.hex, color.rgb + ) + + console.print(table) diff --git a/env/Lib/site-packages/pip/_vendor/rich/color_triplet.py b/env/Lib/site-packages/pip/_vendor/rich/color_triplet.py new file mode 100644 index 00000000..02cab328 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/color_triplet.py @@ -0,0 +1,38 @@ +from typing import NamedTuple, Tuple + + +class ColorTriplet(NamedTuple): + """The red, green, and blue components of a color.""" + + red: int + """Red component in 0 to 255 range.""" + green: int + """Green component in 0 to 255 range.""" + blue: int + """Blue component in 0 to 255 range.""" + + @property + def hex(self) -> str: + """get the color triplet in CSS style.""" + red, green, blue = self + return f"#{red:02x}{green:02x}{blue:02x}" + + @property + def rgb(self) -> str: + """The color in RGB format. + + Returns: + str: An rgb color, e.g. ``"rgb(100,23,255)"``. + """ + red, green, blue = self + return f"rgb({red},{green},{blue})" + + @property + def normalized(self) -> Tuple[float, float, float]: + """Convert components into floats between 0 and 1. + + Returns: + Tuple[float, float, float]: A tuple of three normalized colour components. + """ + red, green, blue = self + return red / 255.0, green / 255.0, blue / 255.0 diff --git a/env/Lib/site-packages/pip/_vendor/rich/columns.py b/env/Lib/site-packages/pip/_vendor/rich/columns.py new file mode 100644 index 00000000..669a3a70 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/columns.py @@ -0,0 +1,187 @@ +from collections import defaultdict +from itertools import chain +from operator import itemgetter +from typing import Dict, Iterable, List, Optional, Tuple + +from .align import Align, AlignMethod +from .console import Console, ConsoleOptions, RenderableType, RenderResult +from .constrain import Constrain +from .measure import Measurement +from .padding import Padding, PaddingDimensions +from .table import Table +from .text import TextType +from .jupyter import JupyterMixin + + +class Columns(JupyterMixin): + """Display renderables in neat columns. + + Args: + renderables (Iterable[RenderableType]): Any number of Rich renderables (including str). + width (int, optional): The desired width of the columns, or None to auto detect. Defaults to None. + padding (PaddingDimensions, optional): Optional padding around cells. Defaults to (0, 1). + expand (bool, optional): Expand columns to full width. Defaults to False. + equal (bool, optional): Arrange in to equal sized columns. Defaults to False. + column_first (bool, optional): Align items from top to bottom (rather than left to right). Defaults to False. + right_to_left (bool, optional): Start column from right hand side. Defaults to False. + align (str, optional): Align value ("left", "right", or "center") or None for default. Defaults to None. + title (TextType, optional): Optional title for Columns. + """ + + def __init__( + self, + renderables: Optional[Iterable[RenderableType]] = None, + padding: PaddingDimensions = (0, 1), + *, + width: Optional[int] = None, + expand: bool = False, + equal: bool = False, + column_first: bool = False, + right_to_left: bool = False, + align: Optional[AlignMethod] = None, + title: Optional[TextType] = None, + ) -> None: + self.renderables = list(renderables or []) + self.width = width + self.padding = padding + self.expand = expand + self.equal = equal + self.column_first = column_first + self.right_to_left = right_to_left + self.align: Optional[AlignMethod] = align + self.title = title + + def add_renderable(self, renderable: RenderableType) -> None: + """Add a renderable to the columns. + + Args: + renderable (RenderableType): Any renderable object. + """ + self.renderables.append(renderable) + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + render_str = console.render_str + renderables = [ + render_str(renderable) if isinstance(renderable, str) else renderable + for renderable in self.renderables + ] + if not renderables: + return + _top, right, _bottom, left = Padding.unpack(self.padding) + width_padding = max(left, right) + max_width = options.max_width + widths: Dict[int, int] = defaultdict(int) + column_count = len(renderables) + + get_measurement = Measurement.get + renderable_widths = [ + get_measurement(console, options, renderable).maximum + for renderable in renderables + ] + if self.equal: + renderable_widths = [max(renderable_widths)] * len(renderable_widths) + + def iter_renderables( + column_count: int, + ) -> Iterable[Tuple[int, Optional[RenderableType]]]: + item_count = len(renderables) + if self.column_first: + width_renderables = list(zip(renderable_widths, renderables)) + + column_lengths: List[int] = [item_count // column_count] * column_count + for col_no in range(item_count % column_count): + column_lengths[col_no] += 1 + + row_count = (item_count + column_count - 1) // column_count + cells = [[-1] * column_count for _ in range(row_count)] + row = col = 0 + for index in range(item_count): + cells[row][col] = index + column_lengths[col] -= 1 + if column_lengths[col]: + row += 1 + else: + col += 1 + row = 0 + for index in chain.from_iterable(cells): + if index == -1: + break + yield width_renderables[index] + else: + yield from zip(renderable_widths, renderables) + # Pad odd elements with spaces + if item_count % column_count: + for _ in range(column_count - (item_count % column_count)): + yield 0, None + + table = Table.grid(padding=self.padding, collapse_padding=True, pad_edge=False) + table.expand = self.expand + table.title = self.title + + if self.width is not None: + column_count = (max_width) // (self.width + width_padding) + for _ in range(column_count): + table.add_column(width=self.width) + else: + while column_count > 1: + widths.clear() + column_no = 0 + for renderable_width, _ in iter_renderables(column_count): + widths[column_no] = max(widths[column_no], renderable_width) + total_width = sum(widths.values()) + width_padding * ( + len(widths) - 1 + ) + if total_width > max_width: + column_count = len(widths) - 1 + break + else: + column_no = (column_no + 1) % column_count + else: + break + + get_renderable = itemgetter(1) + _renderables = [ + get_renderable(_renderable) + for _renderable in iter_renderables(column_count) + ] + if self.equal: + _renderables = [ + None + if renderable is None + else Constrain(renderable, renderable_widths[0]) + for renderable in _renderables + ] + if self.align: + align = self.align + _Align = Align + _renderables = [ + None if renderable is None else _Align(renderable, align) + for renderable in _renderables + ] + + right_to_left = self.right_to_left + add_row = table.add_row + for start in range(0, len(_renderables), column_count): + row = _renderables[start : start + column_count] + if right_to_left: + row = row[::-1] + add_row(*row) + yield table + + +if __name__ == "__main__": # pragma: no cover + import os + + console = Console() + + files = [f"{i} {s}" for i, s in enumerate(sorted(os.listdir()))] + columns = Columns(files, padding=(0, 1), expand=False, equal=False) + console.print(columns) + console.rule() + columns.column_first = True + console.print(columns) + columns.right_to_left = True + console.rule() + console.print(columns) diff --git a/env/Lib/site-packages/pip/_vendor/rich/console.py b/env/Lib/site-packages/pip/_vendor/rich/console.py new file mode 100644 index 00000000..a11c7c13 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/console.py @@ -0,0 +1,2633 @@ +import inspect +import os +import platform +import sys +import threading +import zlib +from abc import ABC, abstractmethod +from dataclasses import dataclass, field +from datetime import datetime +from functools import wraps +from getpass import getpass +from html import escape +from inspect import isclass +from itertools import islice +from math import ceil +from time import monotonic +from types import FrameType, ModuleType, TracebackType +from typing import ( + IO, + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterable, + List, + Mapping, + NamedTuple, + Optional, + TextIO, + Tuple, + Type, + Union, + cast, +) + +from pip._vendor.rich._null_file import NULL_FILE + +if sys.version_info >= (3, 8): + from typing import Literal, Protocol, runtime_checkable +else: + from pip._vendor.typing_extensions import ( + Literal, + Protocol, + runtime_checkable, + ) # pragma: no cover + +from . import errors, themes +from ._emoji_replace import _emoji_replace +from ._export_format import CONSOLE_HTML_FORMAT, CONSOLE_SVG_FORMAT +from ._fileno import get_fileno +from ._log_render import FormatTimeCallable, LogRender +from .align import Align, AlignMethod +from .color import ColorSystem, blend_rgb +from .control import Control +from .emoji import EmojiVariant +from .highlighter import NullHighlighter, ReprHighlighter +from .markup import render as render_markup +from .measure import Measurement, measure_renderables +from .pager import Pager, SystemPager +from .pretty import Pretty, is_expandable +from .protocol import rich_cast +from .region import Region +from .scope import render_scope +from .screen import Screen +from .segment import Segment +from .style import Style, StyleType +from .styled import Styled +from .terminal_theme import DEFAULT_TERMINAL_THEME, SVG_EXPORT_THEME, TerminalTheme +from .text import Text, TextType +from .theme import Theme, ThemeStack + +if TYPE_CHECKING: + from ._windows import WindowsConsoleFeatures + from .live import Live + from .status import Status + +JUPYTER_DEFAULT_COLUMNS = 115 +JUPYTER_DEFAULT_LINES = 100 +WINDOWS = platform.system() == "Windows" + +HighlighterType = Callable[[Union[str, "Text"]], "Text"] +JustifyMethod = Literal["default", "left", "center", "right", "full"] +OverflowMethod = Literal["fold", "crop", "ellipsis", "ignore"] + + +class NoChange: + pass + + +NO_CHANGE = NoChange() + +try: + _STDIN_FILENO = sys.__stdin__.fileno() +except Exception: + _STDIN_FILENO = 0 +try: + _STDOUT_FILENO = sys.__stdout__.fileno() +except Exception: + _STDOUT_FILENO = 1 +try: + _STDERR_FILENO = sys.__stderr__.fileno() +except Exception: + _STDERR_FILENO = 2 + +_STD_STREAMS = (_STDIN_FILENO, _STDOUT_FILENO, _STDERR_FILENO) +_STD_STREAMS_OUTPUT = (_STDOUT_FILENO, _STDERR_FILENO) + + +_TERM_COLORS = { + "kitty": ColorSystem.EIGHT_BIT, + "256color": ColorSystem.EIGHT_BIT, + "16color": ColorSystem.STANDARD, +} + + +class ConsoleDimensions(NamedTuple): + """Size of the terminal.""" + + width: int + """The width of the console in 'cells'.""" + height: int + """The height of the console in lines.""" + + +@dataclass +class ConsoleOptions: + """Options for __rich_console__ method.""" + + size: ConsoleDimensions + """Size of console.""" + legacy_windows: bool + """legacy_windows: flag for legacy windows.""" + min_width: int + """Minimum width of renderable.""" + max_width: int + """Maximum width of renderable.""" + is_terminal: bool + """True if the target is a terminal, otherwise False.""" + encoding: str + """Encoding of terminal.""" + max_height: int + """Height of container (starts as terminal)""" + justify: Optional[JustifyMethod] = None + """Justify value override for renderable.""" + overflow: Optional[OverflowMethod] = None + """Overflow value override for renderable.""" + no_wrap: Optional[bool] = False + """Disable wrapping for text.""" + highlight: Optional[bool] = None + """Highlight override for render_str.""" + markup: Optional[bool] = None + """Enable markup when rendering strings.""" + height: Optional[int] = None + + @property + def ascii_only(self) -> bool: + """Check if renderables should use ascii only.""" + return not self.encoding.startswith("utf") + + def copy(self) -> "ConsoleOptions": + """Return a copy of the options. + + Returns: + ConsoleOptions: a copy of self. + """ + options: ConsoleOptions = ConsoleOptions.__new__(ConsoleOptions) + options.__dict__ = self.__dict__.copy() + return options + + def update( + self, + *, + width: Union[int, NoChange] = NO_CHANGE, + min_width: Union[int, NoChange] = NO_CHANGE, + max_width: Union[int, NoChange] = NO_CHANGE, + justify: Union[Optional[JustifyMethod], NoChange] = NO_CHANGE, + overflow: Union[Optional[OverflowMethod], NoChange] = NO_CHANGE, + no_wrap: Union[Optional[bool], NoChange] = NO_CHANGE, + highlight: Union[Optional[bool], NoChange] = NO_CHANGE, + markup: Union[Optional[bool], NoChange] = NO_CHANGE, + height: Union[Optional[int], NoChange] = NO_CHANGE, + ) -> "ConsoleOptions": + """Update values, return a copy.""" + options = self.copy() + if not isinstance(width, NoChange): + options.min_width = options.max_width = max(0, width) + if not isinstance(min_width, NoChange): + options.min_width = min_width + if not isinstance(max_width, NoChange): + options.max_width = max_width + if not isinstance(justify, NoChange): + options.justify = justify + if not isinstance(overflow, NoChange): + options.overflow = overflow + if not isinstance(no_wrap, NoChange): + options.no_wrap = no_wrap + if not isinstance(highlight, NoChange): + options.highlight = highlight + if not isinstance(markup, NoChange): + options.markup = markup + if not isinstance(height, NoChange): + if height is not None: + options.max_height = height + options.height = None if height is None else max(0, height) + return options + + def update_width(self, width: int) -> "ConsoleOptions": + """Update just the width, return a copy. + + Args: + width (int): New width (sets both min_width and max_width) + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + return options + + def update_height(self, height: int) -> "ConsoleOptions": + """Update the height, and return a copy. + + Args: + height (int): New height + + Returns: + ~ConsoleOptions: New Console options instance. + """ + options = self.copy() + options.max_height = options.height = height + return options + + def reset_height(self) -> "ConsoleOptions": + """Return a copy of the options with height set to ``None``. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.height = None + return options + + def update_dimensions(self, width: int, height: int) -> "ConsoleOptions": + """Update the width and height, and return a copy. + + Args: + width (int): New width (sets both min_width and max_width). + height (int): New height. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + options.height = options.max_height = height + return options + + +@runtime_checkable +class RichCast(Protocol): + """An object that may be 'cast' to a console renderable.""" + + def __rich__( + self, + ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover + ... + + +@runtime_checkable +class ConsoleRenderable(Protocol): + """An object that supports the console protocol.""" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": # pragma: no cover + ... + + +# A type that may be rendered by Console. +RenderableType = Union[ConsoleRenderable, RichCast, str] +"""A string or any object that may be rendered by Rich.""" + +# The result of calling a __rich_console__ method. +RenderResult = Iterable[Union[RenderableType, Segment]] + +_null_highlighter = NullHighlighter() + + +class CaptureError(Exception): + """An error in the Capture context manager.""" + + +class NewLine: + """A renderable to generate new line(s)""" + + def __init__(self, count: int = 1) -> None: + self.count = count + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> Iterable[Segment]: + yield Segment("\n" * self.count) + + +class ScreenUpdate: + """Render a list of lines at a given offset.""" + + def __init__(self, lines: List[List[Segment]], x: int, y: int) -> None: + self._lines = lines + self.x = x + self.y = y + + def __rich_console__( + self, console: "Console", options: ConsoleOptions + ) -> RenderResult: + x = self.x + move_to = Control.move_to + for offset, line in enumerate(self._lines, self.y): + yield move_to(x, offset) + yield from line + + +class Capture: + """Context manager to capture the result of printing to the console. + See :meth:`~rich.console.Console.capture` for how to use. + + Args: + console (Console): A console instance to capture output. + """ + + def __init__(self, console: "Console") -> None: + self._console = console + self._result: Optional[str] = None + + def __enter__(self) -> "Capture": + self._console.begin_capture() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self._result = self._console.end_capture() + + def get(self) -> str: + """Get the result of the capture.""" + if self._result is None: + raise CaptureError( + "Capture result is not available until context manager exits." + ) + return self._result + + +class ThemeContext: + """A context manager to use a temporary theme. See :meth:`~rich.console.Console.use_theme` for usage.""" + + def __init__(self, console: "Console", theme: Theme, inherit: bool = True) -> None: + self.console = console + self.theme = theme + self.inherit = inherit + + def __enter__(self) -> "ThemeContext": + self.console.push_theme(self.theme) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.console.pop_theme() + + +class PagerContext: + """A context manager that 'pages' content. See :meth:`~rich.console.Console.pager` for usage.""" + + def __init__( + self, + console: "Console", + pager: Optional[Pager] = None, + styles: bool = False, + links: bool = False, + ) -> None: + self._console = console + self.pager = SystemPager() if pager is None else pager + self.styles = styles + self.links = links + + def __enter__(self) -> "PagerContext": + self._console._enter_buffer() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if exc_type is None: + with self._console._lock: + buffer: List[Segment] = self._console._buffer[:] + del self._console._buffer[:] + segments: Iterable[Segment] = buffer + if not self.styles: + segments = Segment.strip_styles(segments) + elif not self.links: + segments = Segment.strip_links(segments) + content = self._console._render_buffer(segments) + self.pager.show(content) + self._console._exit_buffer() + + +class ScreenContext: + """A context manager that enables an alternative screen. See :meth:`~rich.console.Console.screen` for usage.""" + + def __init__( + self, console: "Console", hide_cursor: bool, style: StyleType = "" + ) -> None: + self.console = console + self.hide_cursor = hide_cursor + self.screen = Screen(style=style) + self._changed = False + + def update( + self, *renderables: RenderableType, style: Optional[StyleType] = None + ) -> None: + """Update the screen. + + Args: + renderable (RenderableType, optional): Optional renderable to replace current renderable, + or None for no change. Defaults to None. + style: (Style, optional): Replacement style, or None for no change. Defaults to None. + """ + if renderables: + self.screen.renderable = ( + Group(*renderables) if len(renderables) > 1 else renderables[0] + ) + if style is not None: + self.screen.style = style + self.console.print(self.screen, end="") + + def __enter__(self) -> "ScreenContext": + self._changed = self.console.set_alt_screen(True) + if self._changed and self.hide_cursor: + self.console.show_cursor(False) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if self._changed: + self.console.set_alt_screen(False) + if self.hide_cursor: + self.console.show_cursor(True) + + +class Group: + """Takes a group of renderables and returns a renderable object that renders the group. + + Args: + renderables (Iterable[RenderableType]): An iterable of renderable objects. + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def __init__(self, *renderables: "RenderableType", fit: bool = True) -> None: + self._renderables = renderables + self.fit = fit + self._render: Optional[List[RenderableType]] = None + + @property + def renderables(self) -> List["RenderableType"]: + if self._render is None: + self._render = list(self._renderables) + return self._render + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.fit: + return measure_renderables(console, options, self.renderables) + else: + return Measurement(options.max_width, options.max_width) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> RenderResult: + yield from self.renderables + + +def group(fit: bool = True) -> Callable[..., Callable[..., Group]]: + """A decorator that turns an iterable of renderables in to a group. + + Args: + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def decorator( + method: Callable[..., Iterable[RenderableType]] + ) -> Callable[..., Group]: + """Convert a method that returns an iterable of renderables in to a Group.""" + + @wraps(method) + def _replace(*args: Any, **kwargs: Any) -> Group: + renderables = method(*args, **kwargs) + return Group(*renderables, fit=fit) + + return _replace + + return decorator + + +def _is_jupyter() -> bool: # pragma: no cover + """Check if we're running in a Jupyter notebook.""" + try: + get_ipython # type: ignore[name-defined] + except NameError: + return False + ipython = get_ipython() # type: ignore[name-defined] + shell = ipython.__class__.__name__ + if ( + "google.colab" in str(ipython.__class__) + or os.getenv("DATABRICKS_RUNTIME_VERSION") + or shell == "ZMQInteractiveShell" + ): + return True # Jupyter notebook or qtconsole + elif shell == "TerminalInteractiveShell": + return False # Terminal running IPython + else: + return False # Other type (?) + + +COLOR_SYSTEMS = { + "standard": ColorSystem.STANDARD, + "256": ColorSystem.EIGHT_BIT, + "truecolor": ColorSystem.TRUECOLOR, + "windows": ColorSystem.WINDOWS, +} + +_COLOR_SYSTEMS_NAMES = {system: name for name, system in COLOR_SYSTEMS.items()} + + +@dataclass +class ConsoleThreadLocals(threading.local): + """Thread local values for Console context.""" + + theme_stack: ThemeStack + buffer: List[Segment] = field(default_factory=list) + buffer_index: int = 0 + + +class RenderHook(ABC): + """Provides hooks in to the render process.""" + + @abstractmethod + def process_renderables( + self, renderables: List[ConsoleRenderable] + ) -> List[ConsoleRenderable]: + """Called with a list of objects to render. + + This method can return a new list of renderables, or modify and return the same list. + + Args: + renderables (List[ConsoleRenderable]): A number of renderable objects. + + Returns: + List[ConsoleRenderable]: A replacement list of renderables. + """ + + +_windows_console_features: Optional["WindowsConsoleFeatures"] = None + + +def get_windows_console_features() -> "WindowsConsoleFeatures": # pragma: no cover + global _windows_console_features + if _windows_console_features is not None: + return _windows_console_features + from ._windows import get_windows_console_features + + _windows_console_features = get_windows_console_features() + return _windows_console_features + + +def detect_legacy_windows() -> bool: + """Detect legacy Windows.""" + return WINDOWS and not get_windows_console_features().vt + + +class Console: + """A high level console interface. + + Args: + color_system (str, optional): The color system supported by your terminal, + either ``"standard"``, ``"256"`` or ``"truecolor"``. Leave as ``"auto"`` to autodetect. + force_terminal (Optional[bool], optional): Enable/disable terminal control codes, or None to auto-detect terminal. Defaults to None. + force_jupyter (Optional[bool], optional): Enable/disable Jupyter rendering, or None to auto-detect Jupyter. Defaults to None. + force_interactive (Optional[bool], optional): Enable/disable interactive mode, or None to auto detect. Defaults to None. + soft_wrap (Optional[bool], optional): Set soft wrap default on print method. Defaults to False. + theme (Theme, optional): An optional style theme object, or ``None`` for default theme. + stderr (bool, optional): Use stderr rather than stdout if ``file`` is not specified. Defaults to False. + file (IO, optional): A file object where the console should write to. Defaults to stdout. + quiet (bool, Optional): Boolean to suppress all output. Defaults to False. + width (int, optional): The width of the terminal. Leave as default to auto-detect width. + height (int, optional): The height of the terminal. Leave as default to auto-detect height. + style (StyleType, optional): Style to apply to all output, or None for no style. Defaults to None. + no_color (Optional[bool], optional): Enabled no color mode, or None to auto detect. Defaults to None. + tab_size (int, optional): Number of spaces used to replace a tab character. Defaults to 8. + record (bool, optional): Boolean to enable recording of terminal output, + required to call :meth:`export_html`, :meth:`export_svg`, and :meth:`export_text`. Defaults to False. + markup (bool, optional): Boolean to enable :ref:`console_markup`. Defaults to True. + emoji (bool, optional): Enable emoji code. Defaults to True. + emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None. + highlight (bool, optional): Enable automatic highlighting. Defaults to True. + log_time (bool, optional): Boolean to enable logging of time by :meth:`log` methods. Defaults to True. + log_path (bool, optional): Boolean to enable the logging of the caller by :meth:`log`. Defaults to True. + log_time_format (Union[str, TimeFormatterCallable], optional): If ``log_time`` is enabled, either string for strftime or callable that formats the time. Defaults to "[%X] ". + highlighter (HighlighterType, optional): Default highlighter. + legacy_windows (bool, optional): Enable legacy Windows mode, or ``None`` to auto detect. Defaults to ``None``. + safe_box (bool, optional): Restrict box options that don't render on legacy Windows. + get_datetime (Callable[[], datetime], optional): Callable that gets the current time as a datetime.datetime object (used by Console.log), + or None for datetime.now. + get_time (Callable[[], time], optional): Callable that gets the current time in seconds, default uses time.monotonic. + """ + + _environ: Mapping[str, str] = os.environ + + def __init__( + self, + *, + color_system: Optional[ + Literal["auto", "standard", "256", "truecolor", "windows"] + ] = "auto", + force_terminal: Optional[bool] = None, + force_jupyter: Optional[bool] = None, + force_interactive: Optional[bool] = None, + soft_wrap: bool = False, + theme: Optional[Theme] = None, + stderr: bool = False, + file: Optional[IO[str]] = None, + quiet: bool = False, + width: Optional[int] = None, + height: Optional[int] = None, + style: Optional[StyleType] = None, + no_color: Optional[bool] = None, + tab_size: int = 8, + record: bool = False, + markup: bool = True, + emoji: bool = True, + emoji_variant: Optional[EmojiVariant] = None, + highlight: bool = True, + log_time: bool = True, + log_path: bool = True, + log_time_format: Union[str, FormatTimeCallable] = "[%X]", + highlighter: Optional["HighlighterType"] = ReprHighlighter(), + legacy_windows: Optional[bool] = None, + safe_box: bool = True, + get_datetime: Optional[Callable[[], datetime]] = None, + get_time: Optional[Callable[[], float]] = None, + _environ: Optional[Mapping[str, str]] = None, + ): + # Copy of os.environ allows us to replace it for testing + if _environ is not None: + self._environ = _environ + + self.is_jupyter = _is_jupyter() if force_jupyter is None else force_jupyter + if self.is_jupyter: + if width is None: + jupyter_columns = self._environ.get("JUPYTER_COLUMNS") + if jupyter_columns is not None and jupyter_columns.isdigit(): + width = int(jupyter_columns) + else: + width = JUPYTER_DEFAULT_COLUMNS + if height is None: + jupyter_lines = self._environ.get("JUPYTER_LINES") + if jupyter_lines is not None and jupyter_lines.isdigit(): + height = int(jupyter_lines) + else: + height = JUPYTER_DEFAULT_LINES + + self.tab_size = tab_size + self.record = record + self._markup = markup + self._emoji = emoji + self._emoji_variant: Optional[EmojiVariant] = emoji_variant + self._highlight = highlight + self.legacy_windows: bool = ( + (detect_legacy_windows() and not self.is_jupyter) + if legacy_windows is None + else legacy_windows + ) + + if width is None: + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) - self.legacy_windows + if height is None: + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + self.soft_wrap = soft_wrap + self._width = width + self._height = height + + self._color_system: Optional[ColorSystem] + + self._force_terminal = None + if force_terminal is not None: + self._force_terminal = force_terminal + + self._file = file + self.quiet = quiet + self.stderr = stderr + + if color_system is None: + self._color_system = None + elif color_system == "auto": + self._color_system = self._detect_color_system() + else: + self._color_system = COLOR_SYSTEMS[color_system] + + self._lock = threading.RLock() + self._log_render = LogRender( + show_time=log_time, + show_path=log_path, + time_format=log_time_format, + ) + self.highlighter: HighlighterType = highlighter or _null_highlighter + self.safe_box = safe_box + self.get_datetime = get_datetime or datetime.now + self.get_time = get_time or monotonic + self.style = style + self.no_color = ( + no_color if no_color is not None else "NO_COLOR" in self._environ + ) + self.is_interactive = ( + (self.is_terminal and not self.is_dumb_terminal) + if force_interactive is None + else force_interactive + ) + + self._record_buffer_lock = threading.RLock() + self._thread_locals = ConsoleThreadLocals( + theme_stack=ThemeStack(themes.DEFAULT if theme is None else theme) + ) + self._record_buffer: List[Segment] = [] + self._render_hooks: List[RenderHook] = [] + self._live: Optional["Live"] = None + self._is_alt_screen = False + + def __repr__(self) -> str: + return f"" + + @property + def file(self) -> IO[str]: + """Get the file object to write to.""" + file = self._file or (sys.stderr if self.stderr else sys.stdout) + file = getattr(file, "rich_proxied_file", file) + if file is None: + file = NULL_FILE + return file + + @file.setter + def file(self, new_file: IO[str]) -> None: + """Set a new file object.""" + self._file = new_file + + @property + def _buffer(self) -> List[Segment]: + """Get a thread local buffer.""" + return self._thread_locals.buffer + + @property + def _buffer_index(self) -> int: + """Get a thread local buffer.""" + return self._thread_locals.buffer_index + + @_buffer_index.setter + def _buffer_index(self, value: int) -> None: + self._thread_locals.buffer_index = value + + @property + def _theme_stack(self) -> ThemeStack: + """Get the thread local theme stack.""" + return self._thread_locals.theme_stack + + def _detect_color_system(self) -> Optional[ColorSystem]: + """Detect color system from env vars.""" + if self.is_jupyter: + return ColorSystem.TRUECOLOR + if not self.is_terminal or self.is_dumb_terminal: + return None + if WINDOWS: # pragma: no cover + if self.legacy_windows: # pragma: no cover + return ColorSystem.WINDOWS + windows_console_features = get_windows_console_features() + return ( + ColorSystem.TRUECOLOR + if windows_console_features.truecolor + else ColorSystem.EIGHT_BIT + ) + else: + color_term = self._environ.get("COLORTERM", "").strip().lower() + if color_term in ("truecolor", "24bit"): + return ColorSystem.TRUECOLOR + term = self._environ.get("TERM", "").strip().lower() + _term_name, _hyphen, colors = term.rpartition("-") + color_system = _TERM_COLORS.get(colors, ColorSystem.STANDARD) + return color_system + + def _enter_buffer(self) -> None: + """Enter in to a buffer context, and buffer all output.""" + self._buffer_index += 1 + + def _exit_buffer(self) -> None: + """Leave buffer context, and render content if required.""" + self._buffer_index -= 1 + self._check_buffer() + + def set_live(self, live: "Live") -> None: + """Set Live instance. Used by Live context manager. + + Args: + live (Live): Live instance using this Console. + + Raises: + errors.LiveError: If this Console has a Live context currently active. + """ + with self._lock: + if self._live is not None: + raise errors.LiveError("Only one live display may be active at once") + self._live = live + + def clear_live(self) -> None: + """Clear the Live instance.""" + with self._lock: + self._live = None + + def push_render_hook(self, hook: RenderHook) -> None: + """Add a new render hook to the stack. + + Args: + hook (RenderHook): Render hook instance. + """ + with self._lock: + self._render_hooks.append(hook) + + def pop_render_hook(self) -> None: + """Pop the last renderhook from the stack.""" + with self._lock: + self._render_hooks.pop() + + def __enter__(self) -> "Console": + """Own context manager to enter buffer context.""" + self._enter_buffer() + return self + + def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None: + """Exit buffer context.""" + self._exit_buffer() + + def begin_capture(self) -> None: + """Begin capturing console output. Call :meth:`end_capture` to exit capture mode and return output.""" + self._enter_buffer() + + def end_capture(self) -> str: + """End capture mode and return captured string. + + Returns: + str: Console output. + """ + render_result = self._render_buffer(self._buffer) + del self._buffer[:] + self._exit_buffer() + return render_result + + def push_theme(self, theme: Theme, *, inherit: bool = True) -> None: + """Push a new theme on to the top of the stack, replacing the styles from the previous theme. + Generally speaking, you should call :meth:`~rich.console.Console.use_theme` to get a context manager, rather + than calling this method directly. + + Args: + theme (Theme): A theme instance. + inherit (bool, optional): Inherit existing styles. Defaults to True. + """ + self._theme_stack.push_theme(theme, inherit=inherit) + + def pop_theme(self) -> None: + """Remove theme from top of stack, restoring previous theme.""" + self._theme_stack.pop_theme() + + def use_theme(self, theme: Theme, *, inherit: bool = True) -> ThemeContext: + """Use a different theme for the duration of the context manager. + + Args: + theme (Theme): Theme instance to user. + inherit (bool, optional): Inherit existing console styles. Defaults to True. + + Returns: + ThemeContext: [description] + """ + return ThemeContext(self, theme, inherit) + + @property + def color_system(self) -> Optional[str]: + """Get color system string. + + Returns: + Optional[str]: "standard", "256" or "truecolor". + """ + + if self._color_system is not None: + return _COLOR_SYSTEMS_NAMES[self._color_system] + else: + return None + + @property + def encoding(self) -> str: + """Get the encoding of the console file, e.g. ``"utf-8"``. + + Returns: + str: A standard encoding string. + """ + return (getattr(self.file, "encoding", "utf-8") or "utf-8").lower() + + @property + def is_terminal(self) -> bool: + """Check if the console is writing to a terminal. + + Returns: + bool: True if the console writing to a device capable of + understanding terminal codes, otherwise False. + """ + if self._force_terminal is not None: + return self._force_terminal + + if hasattr(sys.stdin, "__module__") and sys.stdin.__module__.startswith( + "idlelib" + ): + # Return False for Idle which claims to be a tty but can't handle ansi codes + return False + + if self.is_jupyter: + # return False for Jupyter, which may have FORCE_COLOR set + return False + + # If FORCE_COLOR env var has any value at all, we assume a terminal. + force_color = self._environ.get("FORCE_COLOR") + if force_color is not None: + self._force_terminal = True + return True + + isatty: Optional[Callable[[], bool]] = getattr(self.file, "isatty", None) + try: + return False if isatty is None else isatty() + except ValueError: + # in some situation (at the end of a pytest run for example) isatty() can raise + # ValueError: I/O operation on closed file + # return False because we aren't in a terminal anymore + return False + + @property + def is_dumb_terminal(self) -> bool: + """Detect dumb terminal. + + Returns: + bool: True if writing to a dumb terminal, otherwise False. + + """ + _term = self._environ.get("TERM", "") + is_dumb = _term.lower() in ("dumb", "unknown") + return self.is_terminal and is_dumb + + @property + def options(self) -> ConsoleOptions: + """Get default console options.""" + return ConsoleOptions( + max_height=self.size.height, + size=self.size, + legacy_windows=self.legacy_windows, + min_width=1, + max_width=self.width, + encoding=self.encoding, + is_terminal=self.is_terminal, + ) + + @property + def size(self) -> ConsoleDimensions: + """Get the size of the console. + + Returns: + ConsoleDimensions: A named tuple containing the dimensions. + """ + + if self._width is not None and self._height is not None: + return ConsoleDimensions(self._width - self.legacy_windows, self._height) + + if self.is_dumb_terminal: + return ConsoleDimensions(80, 25) + + width: Optional[int] = None + height: Optional[int] = None + + if WINDOWS: # pragma: no cover + try: + width, height = os.get_terminal_size() + except (AttributeError, ValueError, OSError): # Probably not a terminal + pass + else: + for file_descriptor in _STD_STREAMS: + try: + width, height = os.get_terminal_size(file_descriptor) + except (AttributeError, ValueError, OSError): + pass + else: + break + + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + # get_terminal_size can report 0, 0 if run from pseudo-terminal + width = width or 80 + height = height or 25 + return ConsoleDimensions( + width - self.legacy_windows if self._width is None else self._width, + height if self._height is None else self._height, + ) + + @size.setter + def size(self, new_size: Tuple[int, int]) -> None: + """Set a new size for the terminal. + + Args: + new_size (Tuple[int, int]): New width and height. + """ + width, height = new_size + self._width = width + self._height = height + + @property + def width(self) -> int: + """Get the width of the console. + + Returns: + int: The width (in characters) of the console. + """ + return self.size.width + + @width.setter + def width(self, width: int) -> None: + """Set width. + + Args: + width (int): New width. + """ + self._width = width + + @property + def height(self) -> int: + """Get the height of the console. + + Returns: + int: The height (in lines) of the console. + """ + return self.size.height + + @height.setter + def height(self, height: int) -> None: + """Set height. + + Args: + height (int): new height. + """ + self._height = height + + def bell(self) -> None: + """Play a 'bell' sound (if supported by the terminal).""" + self.control(Control.bell()) + + def capture(self) -> Capture: + """A context manager to *capture* the result of print() or log() in a string, + rather than writing it to the console. + + Example: + >>> from rich.console import Console + >>> console = Console() + >>> with console.capture() as capture: + ... console.print("[bold magenta]Hello World[/]") + >>> print(capture.get()) + + Returns: + Capture: Context manager with disables writing to the terminal. + """ + capture = Capture(self) + return capture + + def pager( + self, pager: Optional[Pager] = None, styles: bool = False, links: bool = False + ) -> PagerContext: + """A context manager to display anything printed within a "pager". The pager application + is defined by the system and will typically support at least pressing a key to scroll. + + Args: + pager (Pager, optional): A pager object, or None to use :class:`~rich.pager.SystemPager`. Defaults to None. + styles (bool, optional): Show styles in pager. Defaults to False. + links (bool, optional): Show links in pager. Defaults to False. + + Example: + >>> from rich.console import Console + >>> from rich.__main__ import make_test_card + >>> console = Console() + >>> with console.pager(): + console.print(make_test_card()) + + Returns: + PagerContext: A context manager. + """ + return PagerContext(self, pager=pager, styles=styles, links=links) + + def line(self, count: int = 1) -> None: + """Write new line(s). + + Args: + count (int, optional): Number of new lines. Defaults to 1. + """ + + assert count >= 0, "count must be >= 0" + self.print(NewLine(count)) + + def clear(self, home: bool = True) -> None: + """Clear the screen. + + Args: + home (bool, optional): Also move the cursor to 'home' position. Defaults to True. + """ + if home: + self.control(Control.clear(), Control.home()) + else: + self.control(Control.clear()) + + def status( + self, + status: RenderableType, + *, + spinner: str = "dots", + spinner_style: StyleType = "status.spinner", + speed: float = 1.0, + refresh_per_second: float = 12.5, + ) -> "Status": + """Display a status and spinner. + + Args: + status (RenderableType): A status renderable (str or Text typically). + spinner (str, optional): Name of spinner animation (see python -m rich.spinner). Defaults to "dots". + spinner_style (StyleType, optional): Style of spinner. Defaults to "status.spinner". + speed (float, optional): Speed factor for spinner animation. Defaults to 1.0. + refresh_per_second (float, optional): Number of refreshes per second. Defaults to 12.5. + + Returns: + Status: A Status object that may be used as a context manager. + """ + from .status import Status + + status_renderable = Status( + status, + console=self, + spinner=spinner, + spinner_style=spinner_style, + speed=speed, + refresh_per_second=refresh_per_second, + ) + return status_renderable + + def show_cursor(self, show: bool = True) -> bool: + """Show or hide the cursor. + + Args: + show (bool, optional): Set visibility of the cursor. + """ + if self.is_terminal: + self.control(Control.show_cursor(show)) + return True + return False + + def set_alt_screen(self, enable: bool = True) -> bool: + """Enables alternative screen mode. + + Note, if you enable this mode, you should ensure that is disabled before + the application exits. See :meth:`~rich.Console.screen` for a context manager + that handles this for you. + + Args: + enable (bool, optional): Enable (True) or disable (False) alternate screen. Defaults to True. + + Returns: + bool: True if the control codes were written. + + """ + changed = False + if self.is_terminal and not self.legacy_windows: + self.control(Control.alt_screen(enable)) + changed = True + self._is_alt_screen = enable + return changed + + @property + def is_alt_screen(self) -> bool: + """Check if the alt screen was enabled. + + Returns: + bool: True if the alt screen was enabled, otherwise False. + """ + return self._is_alt_screen + + def set_window_title(self, title: str) -> bool: + """Set the title of the console terminal window. + + Warning: There is no means within Rich of "resetting" the window title to its + previous value, meaning the title you set will persist even after your application + exits. + + ``fish`` shell resets the window title before and after each command by default, + negating this issue. Windows Terminal and command prompt will also reset the title for you. + Most other shells and terminals, however, do not do this. + + Some terminals may require configuration changes before you can set the title. + Some terminals may not support setting the title at all. + + Other software (including the terminal itself, the shell, custom prompts, plugins, etc.) + may also set the terminal window title. This could result in whatever value you write + using this method being overwritten. + + Args: + title (str): The new title of the terminal window. + + Returns: + bool: True if the control code to change the terminal title was + written, otherwise False. Note that a return value of True + does not guarantee that the window title has actually changed, + since the feature may be unsupported/disabled in some terminals. + """ + if self.is_terminal: + self.control(Control.title(title)) + return True + return False + + def screen( + self, hide_cursor: bool = True, style: Optional[StyleType] = None + ) -> "ScreenContext": + """Context manager to enable and disable 'alternative screen' mode. + + Args: + hide_cursor (bool, optional): Also hide the cursor. Defaults to False. + style (Style, optional): Optional style for screen. Defaults to None. + + Returns: + ~ScreenContext: Context which enables alternate screen on enter, and disables it on exit. + """ + return ScreenContext(self, hide_cursor=hide_cursor, style=style or "") + + def measure( + self, renderable: RenderableType, *, options: Optional[ConsoleOptions] = None + ) -> Measurement: + """Measure a renderable. Returns a :class:`~rich.measure.Measurement` object which contains + information regarding the number of characters required to print the renderable. + + Args: + renderable (RenderableType): Any renderable or string. + options (Optional[ConsoleOptions], optional): Options to use when measuring, or None + to use default options. Defaults to None. + + Returns: + Measurement: A measurement of the renderable. + """ + measurement = Measurement.get(self, options or self.options, renderable) + return measurement + + def render( + self, renderable: RenderableType, options: Optional[ConsoleOptions] = None + ) -> Iterable[Segment]: + """Render an object in to an iterable of `Segment` instances. + + This method contains the logic for rendering objects with the console protocol. + You are unlikely to need to use it directly, unless you are extending the library. + + Args: + renderable (RenderableType): An object supporting the console protocol, or + an object that may be converted to a string. + options (ConsoleOptions, optional): An options object, or None to use self.options. Defaults to None. + + Returns: + Iterable[Segment]: An iterable of segments that may be rendered. + """ + + _options = options or self.options + if _options.max_width < 1: + # No space to render anything. This prevents potential recursion errors. + return + render_iterable: RenderResult + + renderable = rich_cast(renderable) + if hasattr(renderable, "__rich_console__") and not isclass(renderable): + render_iterable = renderable.__rich_console__(self, _options) # type: ignore[union-attr] + elif isinstance(renderable, str): + text_renderable = self.render_str( + renderable, highlight=_options.highlight, markup=_options.markup + ) + render_iterable = text_renderable.__rich_console__(self, _options) + else: + raise errors.NotRenderableError( + f"Unable to render {renderable!r}; " + "A str, Segment or object with __rich_console__ method is required" + ) + + try: + iter_render = iter(render_iterable) + except TypeError: + raise errors.NotRenderableError( + f"object {render_iterable!r} is not renderable" + ) + _Segment = Segment + _options = _options.reset_height() + for render_output in iter_render: + if isinstance(render_output, _Segment): + yield render_output + else: + yield from self.render(render_output, _options) + + def render_lines( + self, + renderable: RenderableType, + options: Optional[ConsoleOptions] = None, + *, + style: Optional[Style] = None, + pad: bool = True, + new_lines: bool = False, + ) -> List[List[Segment]]: + """Render objects in to a list of lines. + + The output of render_lines is useful when further formatting of rendered console text + is required, such as the Panel class which draws a border around any renderable object. + + Args: + renderable (RenderableType): Any object renderable in the console. + options (Optional[ConsoleOptions], optional): Console options, or None to use self.options. Default to ``None``. + style (Style, optional): Optional style to apply to renderables. Defaults to ``None``. + pad (bool, optional): Pad lines shorter than render width. Defaults to ``True``. + new_lines (bool, optional): Include "\n" characters at end of lines. + + Returns: + List[List[Segment]]: A list of lines, where a line is a list of Segment objects. + """ + with self._lock: + render_options = options or self.options + _rendered = self.render(renderable, render_options) + if style: + _rendered = Segment.apply_style(_rendered, style) + + render_height = render_options.height + if render_height is not None: + render_height = max(0, render_height) + + lines = list( + islice( + Segment.split_and_crop_lines( + _rendered, + render_options.max_width, + include_new_lines=new_lines, + pad=pad, + style=style, + ), + None, + render_height, + ) + ) + if render_options.height is not None: + extra_lines = render_options.height - len(lines) + if extra_lines > 0: + pad_line = [ + [Segment(" " * render_options.max_width, style), Segment("\n")] + if new_lines + else [Segment(" " * render_options.max_width, style)] + ] + lines.extend(pad_line * extra_lines) + + return lines + + def render_str( + self, + text: str, + *, + style: Union[str, Style] = "", + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + highlighter: Optional[HighlighterType] = None, + ) -> "Text": + """Convert a string to a Text instance. This is called automatically if + you print or log a string. + + Args: + text (str): Text to render. + style (Union[str, Style], optional): Style to apply to rendered text. + justify (str, optional): Justify method: "default", "left", "center", "full", or "right". Defaults to ``None``. + overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji, or ``None`` to use Console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use Console default. + highlight (Optional[bool], optional): Enable highlighting, or ``None`` to use Console default. + highlighter (HighlighterType, optional): Optional highlighter to apply. + Returns: + ConsoleRenderable: Renderable object. + + """ + emoji_enabled = emoji or (emoji is None and self._emoji) + markup_enabled = markup or (markup is None and self._markup) + highlight_enabled = highlight or (highlight is None and self._highlight) + + if markup_enabled: + rich_text = render_markup( + text, + style=style, + emoji=emoji_enabled, + emoji_variant=self._emoji_variant, + ) + rich_text.justify = justify + rich_text.overflow = overflow + else: + rich_text = Text( + _emoji_replace(text, default_variant=self._emoji_variant) + if emoji_enabled + else text, + justify=justify, + overflow=overflow, + style=style, + ) + + _highlighter = (highlighter or self.highlighter) if highlight_enabled else None + if _highlighter is not None: + highlight_text = _highlighter(str(rich_text)) + highlight_text.copy_styles(rich_text) + return highlight_text + + return rich_text + + def get_style( + self, name: Union[str, Style], *, default: Optional[Union[Style, str]] = None + ) -> Style: + """Get a Style instance by its theme name or parse a definition. + + Args: + name (str): The name of a style or a style definition. + + Returns: + Style: A Style object. + + Raises: + MissingStyle: If no style could be parsed from name. + + """ + if isinstance(name, Style): + return name + + try: + style = self._theme_stack.get(name) + if style is None: + style = Style.parse(name) + return style.copy() if style.link else style + except errors.StyleSyntaxError as error: + if default is not None: + return self.get_style(default) + raise errors.MissingStyle( + f"Failed to get style {name!r}; {error}" + ) from None + + def _collect_renderables( + self, + objects: Iterable[Any], + sep: str, + end: str, + *, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + ) -> List[ConsoleRenderable]: + """Combine a number of renderables and text into one renderable. + + Args: + objects (Iterable[Any]): Anything that Rich can render. + sep (str): String to write between print data. + end (str): String to write at end of print data. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. + + Returns: + List[ConsoleRenderable]: A list of things to render. + """ + renderables: List[ConsoleRenderable] = [] + _append = renderables.append + text: List[Text] = [] + append_text = text.append + + append = _append + if justify in ("left", "center", "right"): + + def align_append(renderable: RenderableType) -> None: + _append(Align(renderable, cast(AlignMethod, justify))) + + append = align_append + + _highlighter: HighlighterType = _null_highlighter + if highlight or (highlight is None and self._highlight): + _highlighter = self.highlighter + + def check_text() -> None: + if text: + sep_text = Text(sep, justify=justify, end=end) + append(sep_text.join(text)) + text.clear() + + for renderable in objects: + renderable = rich_cast(renderable) + if isinstance(renderable, str): + append_text( + self.render_str( + renderable, emoji=emoji, markup=markup, highlighter=_highlighter + ) + ) + elif isinstance(renderable, Text): + append_text(renderable) + elif isinstance(renderable, ConsoleRenderable): + check_text() + append(renderable) + elif is_expandable(renderable): + check_text() + append(Pretty(renderable, highlighter=_highlighter)) + else: + append_text(_highlighter(str(renderable))) + + check_text() + + if self.style is not None: + style = self.get_style(self.style) + renderables = [Styled(renderable, style) for renderable in renderables] + + return renderables + + def rule( + self, + title: TextType = "", + *, + characters: str = "─", + style: Union[str, Style] = "rule.line", + align: AlignMethod = "center", + ) -> None: + """Draw a line with optional centered title. + + Args: + title (str, optional): Text to render over the rule. Defaults to "". + characters (str, optional): Character(s) to form the line. Defaults to "─". + style (str, optional): Style of line. Defaults to "rule.line". + align (str, optional): How to align the title, one of "left", "center", or "right". Defaults to "center". + """ + from .rule import Rule + + rule = Rule(title=title, characters=characters, style=style, align=align) + self.print(rule) + + def control(self, *control: Control) -> None: + """Insert non-printing control codes. + + Args: + control_codes (str): Control codes, such as those that may move the cursor. + """ + if not self.is_dumb_terminal: + with self: + self._buffer.extend(_control.segment for _control in control) + + def out( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + highlight: Optional[bool] = None, + ) -> None: + """Output to the terminal. This is a low-level way of writing to the terminal which unlike + :meth:`~rich.console.Console.print` won't pretty print, wrap text, or apply markup, but will + optionally apply highlighting and a basic style. + + Args: + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use + console default. Defaults to ``None``. + """ + raw_output: str = sep.join(str(_object) for _object in objects) + self.print( + raw_output, + style=style, + highlight=highlight, + emoji=False, + markup=False, + no_wrap=True, + overflow="ignore", + crop=False, + end=end, + ) + + def print( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + no_wrap: Optional[bool] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + width: Optional[int] = None, + height: Optional[int] = None, + crop: bool = True, + soft_wrap: Optional[bool] = None, + new_line_start: bool = False, + ) -> None: + """Print to the console. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): Justify method: "default", "left", "right", "center", or "full". Defaults to ``None``. + overflow (str, optional): Overflow method: "ignore", "crop", "fold", or "ellipsis". Defaults to None. + no_wrap (Optional[bool], optional): Disable word wrapping. Defaults to None. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to ``None``. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to ``None``. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to ``None``. + width (Optional[int], optional): Width of output, or ``None`` to auto-detect. Defaults to ``None``. + crop (Optional[bool], optional): Crop output to width of terminal. Defaults to True. + soft_wrap (bool, optional): Enable soft wrap mode which disables word wrapping and cropping of text or ``None`` for + Console default. Defaults to ``None``. + new_line_start (bool, False): Insert a new line at the start if the output contains more than one line. Defaults to ``False``. + """ + if not objects: + objects = (NewLine(),) + + if soft_wrap is None: + soft_wrap = self.soft_wrap + if soft_wrap: + if no_wrap is None: + no_wrap = True + if overflow is None: + overflow = "ignore" + crop = False + render_hooks = self._render_hooks[:] + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + render_options = self.options.update( + justify=justify, + overflow=overflow, + width=min(width, self.width) if width is not None else NO_CHANGE, + height=height, + no_wrap=no_wrap, + markup=markup, + highlight=highlight, + ) + + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + if style is None: + for renderable in renderables: + extend(render(renderable, render_options)) + else: + for renderable in renderables: + extend( + Segment.apply_style( + render(renderable, render_options), self.get_style(style) + ) + ) + if new_line_start: + if ( + len("".join(segment.text for segment in new_segments).splitlines()) + > 1 + ): + new_segments.insert(0, Segment.line()) + if crop: + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + else: + self._buffer.extend(new_segments) + + def print_json( + self, + json: Optional[str] = None, + *, + data: Any = None, + indent: Union[None, int, str] = 2, + highlight: bool = True, + skip_keys: bool = False, + ensure_ascii: bool = False, + check_circular: bool = True, + allow_nan: bool = True, + default: Optional[Callable[[Any], Any]] = None, + sort_keys: bool = False, + ) -> None: + """Pretty prints JSON. Output will be valid JSON. + + Args: + json (Optional[str]): A string containing JSON. + data (Any): If json is not supplied, then encode this data. + indent (Union[None, int, str], optional): Number of spaces to indent. Defaults to 2. + highlight (bool, optional): Enable highlighting of output: Defaults to True. + skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False. + ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False. + check_circular (bool, optional): Check for circular references. Defaults to True. + allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True. + default (Callable, optional): A callable that converts values that can not be encoded + in to something that can be JSON encoded. Defaults to None. + sort_keys (bool, optional): Sort dictionary keys. Defaults to False. + """ + from pip._vendor.rich.json import JSON + + if json is None: + json_renderable = JSON.from_data( + data, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + else: + if not isinstance(json, str): + raise TypeError( + f"json must be str. Did you mean print_json(data={json!r}) ?" + ) + json_renderable = JSON( + json, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + self.print(json_renderable, soft_wrap=True) + + def update_screen( + self, + renderable: RenderableType, + *, + region: Optional[Region] = None, + options: Optional[ConsoleOptions] = None, + ) -> None: + """Update the screen at a given offset. + + Args: + renderable (RenderableType): A Rich renderable. + region (Region, optional): Region of screen to update, or None for entire screen. Defaults to None. + x (int, optional): x offset. Defaults to 0. + y (int, optional): y offset. Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + render_options = options or self.options + if region is None: + x = y = 0 + render_options = render_options.update_dimensions( + render_options.max_width, render_options.height or self.height + ) + else: + x, y, width, height = region + render_options = render_options.update_dimensions(width, height) + + lines = self.render_lines(renderable, options=render_options) + self.update_screen_lines(lines, x, y) + + def update_screen_lines( + self, lines: List[List[Segment]], x: int = 0, y: int = 0 + ) -> None: + """Update lines of the screen at a given offset. + + Args: + lines (List[List[Segment]]): Rendered lines (as produced by :meth:`~rich.Console.render_lines`). + x (int, optional): x offset (column no). Defaults to 0. + y (int, optional): y offset (column no). Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + screen_update = ScreenUpdate(lines, x, y) + segments = self.render(screen_update) + self._buffer.extend(segments) + self._check_buffer() + + def print_exception( + self, + *, + width: Optional[int] = 100, + extra_lines: int = 3, + theme: Optional[str] = None, + word_wrap: bool = False, + show_locals: bool = False, + suppress: Iterable[Union[str, ModuleType]] = (), + max_frames: int = 100, + ) -> None: + """Prints a rich render of the last exception and traceback. + + Args: + width (Optional[int], optional): Number of characters used to render code. Defaults to 100. + extra_lines (int, optional): Additional lines of code to render. Defaults to 3. + theme (str, optional): Override pygments theme used in traceback + word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False. + show_locals (bool, optional): Enable display of local variables. Defaults to False. + suppress (Iterable[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback. + max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100. + """ + from .traceback import Traceback + + traceback = Traceback( + width=width, + extra_lines=extra_lines, + theme=theme, + word_wrap=word_wrap, + show_locals=show_locals, + suppress=suppress, + max_frames=max_frames, + ) + self.print(traceback) + + @staticmethod + def _caller_frame_info( + offset: int, + currentframe: Callable[[], Optional[FrameType]] = inspect.currentframe, + ) -> Tuple[str, int, Dict[str, Any]]: + """Get caller frame information. + + Args: + offset (int): the caller offset within the current frame stack. + currentframe (Callable[[], Optional[FrameType]], optional): the callable to use to + retrieve the current frame. Defaults to ``inspect.currentframe``. + + Returns: + Tuple[str, int, Dict[str, Any]]: A tuple containing the filename, the line number and + the dictionary of local variables associated with the caller frame. + + Raises: + RuntimeError: If the stack offset is invalid. + """ + # Ignore the frame of this local helper + offset += 1 + + frame = currentframe() + if frame is not None: + # Use the faster currentframe where implemented + while offset and frame is not None: + frame = frame.f_back + offset -= 1 + assert frame is not None + return frame.f_code.co_filename, frame.f_lineno, frame.f_locals + else: + # Fallback to the slower stack + frame_info = inspect.stack()[offset] + return frame_info.filename, frame_info.lineno, frame_info.frame.f_locals + + def log( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + log_locals: bool = False, + _stack_offset: int = 1, + ) -> None: + """Log rich content to the terminal. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to None. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to None. + log_locals (bool, optional): Boolean to enable logging of locals where ``log()`` + was called. Defaults to False. + _stack_offset (int, optional): Offset of caller from end of call stack. Defaults to 1. + """ + if not objects: + objects = (NewLine(),) + + render_hooks = self._render_hooks[:] + + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + if style is not None: + renderables = [Styled(renderable, style) for renderable in renderables] + + filename, line_no, locals = self._caller_frame_info(_stack_offset) + link_path = None if filename.startswith("<") else os.path.abspath(filename) + path = filename.rpartition(os.sep)[-1] + if log_locals: + locals_map = { + key: value + for key, value in locals.items() + if not key.startswith("__") + } + renderables.append(render_scope(locals_map, title="[i]locals")) + + renderables = [ + self._log_render( + self, + renderables, + log_time=self.get_datetime(), + path=path, + line_no=line_no, + link_path=link_path, + ) + ] + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + render_options = self.options + for renderable in renderables: + extend(render(renderable, render_options)) + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + + def _check_buffer(self) -> None: + """Check if the buffer may be rendered. Render it if it can (e.g. Console.quiet is False) + Rendering is supported on Windows, Unix and Jupyter environments. For + legacy Windows consoles, the win32 API is called directly. + This method will also record what it renders if recording is enabled via Console.record. + """ + if self.quiet: + del self._buffer[:] + return + with self._lock: + if self.record: + with self._record_buffer_lock: + self._record_buffer.extend(self._buffer[:]) + + if self._buffer_index == 0: + if self.is_jupyter: # pragma: no cover + from .jupyter import display + + display(self._buffer, self._render_buffer(self._buffer[:])) + del self._buffer[:] + else: + if WINDOWS: + use_legacy_windows_render = False + if self.legacy_windows: + fileno = get_fileno(self.file) + if fileno is not None: + use_legacy_windows_render = ( + fileno in _STD_STREAMS_OUTPUT + ) + + if use_legacy_windows_render: + from pip._vendor.rich._win32_console import LegacyWindowsTerm + from pip._vendor.rich._windows_renderer import legacy_windows_render + + buffer = self._buffer[:] + if self.no_color and self._color_system: + buffer = list(Segment.remove_color(buffer)) + + legacy_windows_render(buffer, LegacyWindowsTerm(self.file)) + else: + # Either a non-std stream on legacy Windows, or modern Windows. + text = self._render_buffer(self._buffer[:]) + # https://bugs.python.org/issue37871 + # https://github.com/python/cpython/issues/82052 + # We need to avoid writing more than 32Kb in a single write, due to the above bug + write = self.file.write + # Worse case scenario, every character is 4 bytes of utf-8 + MAX_WRITE = 32 * 1024 // 4 + try: + if len(text) <= MAX_WRITE: + write(text) + else: + batch: List[str] = [] + batch_append = batch.append + size = 0 + for line in text.splitlines(True): + if size + len(line) > MAX_WRITE and batch: + write("".join(batch)) + batch.clear() + size = 0 + batch_append(line) + size += len(line) + if batch: + write("".join(batch)) + batch.clear() + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + else: + text = self._render_buffer(self._buffer[:]) + try: + self.file.write(text) + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + + self.file.flush() + del self._buffer[:] + + def _render_buffer(self, buffer: Iterable[Segment]) -> str: + """Render buffered output, and clear buffer.""" + output: List[str] = [] + append = output.append + color_system = self._color_system + legacy_windows = self.legacy_windows + not_terminal = not self.is_terminal + if self.no_color and color_system: + buffer = Segment.remove_color(buffer) + for text, style, control in buffer: + if style: + append( + style.render( + text, + color_system=color_system, + legacy_windows=legacy_windows, + ) + ) + elif not (not_terminal and control): + append(text) + + rendered = "".join(output) + return rendered + + def input( + self, + prompt: TextType = "", + *, + markup: bool = True, + emoji: bool = True, + password: bool = False, + stream: Optional[TextIO] = None, + ) -> str: + """Displays a prompt and waits for input from the user. The prompt may contain color / style. + + It works in the same way as Python's builtin :func:`input` function and provides elaborate line editing and history features if Python's builtin :mod:`readline` module is previously loaded. + + Args: + prompt (Union[str, Text]): Text to render in the prompt. + markup (bool, optional): Enable console markup (requires a str prompt). Defaults to True. + emoji (bool, optional): Enable emoji (requires a str prompt). Defaults to True. + password: (bool, optional): Hide typed text. Defaults to False. + stream: (TextIO, optional): Optional file to read input from (rather than stdin). Defaults to None. + + Returns: + str: Text read from stdin. + """ + if prompt: + self.print(prompt, markup=markup, emoji=emoji, end="") + if password: + result = getpass("", stream=stream) + else: + if stream: + result = stream.readline() + else: + result = input() + return result + + def export_text(self, *, clear: bool = True, styles: bool = False) -> str: + """Generate text from console contents (requires record=True argument in constructor). + + Args: + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi escape codes will be included. ``False`` for plain text. + Defaults to ``False``. + + Returns: + str: String containing console contents. + + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + + with self._record_buffer_lock: + if styles: + text = "".join( + (style.render(text) if style else text) + for text, style, _ in self._record_buffer + ) + else: + text = "".join( + segment.text + for segment in self._record_buffer + if not segment.control + ) + if clear: + del self._record_buffer[:] + return text + + def save_text(self, path: str, *, clear: bool = True, styles: bool = False) -> None: + """Generate text from console and save to a given location (requires record=True argument in constructor). + + Args: + path (str): Path to write text files. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi style codes will be included. ``False`` for plain text. + Defaults to ``False``. + + """ + text = self.export_text(clear=clear, styles=styles) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(text) + + def export_html( + self, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: Optional[str] = None, + inline_styles: bool = False, + ) -> str: + """Generate HTML from console contents (requires record=True argument in constructor). + + Args: + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + Returns: + str: String containing console contents as HTML. + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + fragments: List[str] = [] + append = fragments.append + _theme = theme or DEFAULT_TERMINAL_THEME + stylesheet = "" + + render_code_format = CONSOLE_HTML_FORMAT if code_format is None else code_format + + with self._record_buffer_lock: + if inline_styles: + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + if style.link: + text = f'
{text}' + text = f'{text}' if rule else text + append(text) + else: + styles: Dict[str, int] = {} + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + style_number = styles.setdefault(rule, len(styles) + 1) + if style.link: + text = f'{text}' + else: + text = f'{text}' + append(text) + stylesheet_rules: List[str] = [] + stylesheet_append = stylesheet_rules.append + for style_rule, style_number in styles.items(): + if style_rule: + stylesheet_append(f".r{style_number} {{{style_rule}}}") + stylesheet = "\n".join(stylesheet_rules) + + rendered_code = render_code_format.format( + code="".join(fragments), + stylesheet=stylesheet, + foreground=_theme.foreground_color.hex, + background=_theme.background_color.hex, + ) + if clear: + del self._record_buffer[:] + return rendered_code + + def save_html( + self, + path: str, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_HTML_FORMAT, + inline_styles: bool = False, + ) -> None: + """Generate HTML from console contents and write to a file (requires record=True argument in constructor). + + Args: + path (str): Path to write html file. + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + """ + html = self.export_html( + theme=theme, + clear=clear, + code_format=code_format, + inline_styles=inline_styles, + ) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(html) + + def export_svg( + self, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> str: + """ + Generate an SVG from the console contents (requires record=True in Console constructor). + + Args: + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + + from pip._vendor.rich.cells import cell_len + + style_cache: Dict[Style, str] = {} + + def get_svg_style(style: Style) -> str: + """Convert a Style to CSS rules for SVG.""" + if style in style_cache: + return style_cache[style] + css_rules = [] + color = ( + _theme.foreground_color + if (style.color is None or style.color.is_default) + else style.color.get_truecolor(_theme) + ) + bgcolor = ( + _theme.background_color + if (style.bgcolor is None or style.bgcolor.is_default) + else style.bgcolor.get_truecolor(_theme) + ) + if style.reverse: + color, bgcolor = bgcolor, color + if style.dim: + color = blend_rgb(color, bgcolor, 0.4) + css_rules.append(f"fill: {color.hex}") + if style.bold: + css_rules.append("font-weight: bold") + if style.italic: + css_rules.append("font-style: italic;") + if style.underline: + css_rules.append("text-decoration: underline;") + if style.strike: + css_rules.append("text-decoration: line-through;") + + css = ";".join(css_rules) + style_cache[style] = css + return css + + _theme = theme or SVG_EXPORT_THEME + + width = self.width + char_height = 20 + char_width = char_height * font_aspect_ratio + line_height = char_height * 1.22 + + margin_top = 1 + margin_right = 1 + margin_bottom = 1 + margin_left = 1 + + padding_top = 40 + padding_right = 8 + padding_bottom = 8 + padding_left = 8 + + padding_width = padding_left + padding_right + padding_height = padding_top + padding_bottom + margin_width = margin_left + margin_right + margin_height = margin_top + margin_bottom + + text_backgrounds: List[str] = [] + text_group: List[str] = [] + classes: Dict[str, int] = {} + style_no = 1 + + def escape_text(text: str) -> str: + """HTML escape text and replace spaces with nbsp.""" + return escape(text).replace(" ", " ") + + def make_tag( + name: str, content: Optional[str] = None, **attribs: object + ) -> str: + """Make a tag from name, content, and attributes.""" + + def stringify(value: object) -> str: + if isinstance(value, (float)): + return format(value, "g") + return str(value) + + tag_attribs = " ".join( + f'{k.lstrip("_").replace("_", "-")}="{stringify(v)}"' + for k, v in attribs.items() + ) + return ( + f"<{name} {tag_attribs}>{content}" + if content + else f"<{name} {tag_attribs}/>" + ) + + with self._record_buffer_lock: + segments = list(Segment.filter_control(self._record_buffer)) + if clear: + self._record_buffer.clear() + + if unique_id is None: + unique_id = "terminal-" + str( + zlib.adler32( + ("".join(repr(segment) for segment in segments)).encode( + "utf-8", + "ignore", + ) + + title.encode("utf-8", "ignore") + ) + ) + y = 0 + for y, line in enumerate(Segment.split_and_crop_lines(segments, length=width)): + x = 0 + for text, style, _control in line: + style = style or Style() + rules = get_svg_style(style) + if rules not in classes: + classes[rules] = style_no + style_no += 1 + class_name = f"r{classes[rules]}" + + if style.reverse: + has_background = True + background = ( + _theme.foreground_color.hex + if style.color is None + else style.color.get_truecolor(_theme).hex + ) + else: + bgcolor = style.bgcolor + has_background = bgcolor is not None and not bgcolor.is_default + background = ( + _theme.background_color.hex + if style.bgcolor is None + else style.bgcolor.get_truecolor(_theme).hex + ) + + text_length = cell_len(text) + if has_background: + text_backgrounds.append( + make_tag( + "rect", + fill=background, + x=x * char_width, + y=y * line_height + 1.5, + width=char_width * text_length, + height=line_height + 0.25, + shape_rendering="crispEdges", + ) + ) + + if text != " " * len(text): + text_group.append( + make_tag( + "text", + escape_text(text), + _class=f"{unique_id}-{class_name}", + x=x * char_width, + y=y * line_height + char_height, + textLength=char_width * len(text), + clip_path=f"url(#{unique_id}-line-{y})", + ) + ) + x += cell_len(text) + + line_offsets = [line_no * line_height + 1.5 for line_no in range(y)] + lines = "\n".join( + f""" + {make_tag("rect", x=0, y=offset, width=char_width * width, height=line_height + 0.25)} + """ + for line_no, offset in enumerate(line_offsets) + ) + + styles = "\n".join( + f".{unique_id}-r{rule_no} {{ {css} }}" for css, rule_no in classes.items() + ) + backgrounds = "".join(text_backgrounds) + matrix = "".join(text_group) + + terminal_width = ceil(width * char_width + padding_width) + terminal_height = (y + 1) * line_height + padding_height + chrome = make_tag( + "rect", + fill=_theme.background_color.hex, + stroke="rgba(255,255,255,0.35)", + stroke_width="1", + x=margin_left, + y=margin_top, + width=terminal_width, + height=terminal_height, + rx=8, + ) + + title_color = _theme.foreground_color.hex + if title: + chrome += make_tag( + "text", + escape_text(title), + _class=f"{unique_id}-title", + fill=title_color, + text_anchor="middle", + x=terminal_width // 2, + y=margin_top + char_height + 6, + ) + chrome += f""" + + + + + + """ + + svg = code_format.format( + unique_id=unique_id, + char_width=char_width, + char_height=char_height, + line_height=line_height, + terminal_width=char_width * width - 1, + terminal_height=(y + 1) * line_height - 1, + width=terminal_width + margin_width, + height=terminal_height + margin_height, + terminal_x=margin_left + padding_left, + terminal_y=margin_top + padding_top, + styles=styles, + chrome=chrome, + backgrounds=backgrounds, + matrix=matrix, + lines=lines, + ) + return svg + + def save_svg( + self, + path: str, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> None: + """Generate an SVG file from the console contents (requires record=True in Console constructor). + + Args: + path (str): The path to write the SVG to. + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + svg = self.export_svg( + title=title, + theme=theme, + clear=clear, + code_format=code_format, + font_aspect_ratio=font_aspect_ratio, + unique_id=unique_id, + ) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(svg) + + +def _svg_hash(svg_main_code: str) -> str: + """Returns a unique hash for the given SVG main code. + + Args: + svg_main_code (str): The content we're going to inject in the SVG envelope. + + Returns: + str: a hash of the given content + """ + return str(zlib.adler32(svg_main_code.encode())) + + +if __name__ == "__main__": # pragma: no cover + console = Console(record=True) + + console.log( + "JSONRPC [i]request[/i]", + 5, + 1.3, + True, + False, + None, + { + "jsonrpc": "2.0", + "method": "subtract", + "params": {"minuend": 42, "subtrahend": 23}, + "id": 3, + }, + ) + + console.log("Hello, World!", "{'a': 1}", repr(console)) + + console.print( + { + "name": None, + "empty": [], + "quiz": { + "sport": { + "answered": True, + "q1": { + "question": "Which one is correct team name in NBA?", + "options": [ + "New York Bulls", + "Los Angeles Kings", + "Golden State Warriors", + "Huston Rocket", + ], + "answer": "Huston Rocket", + }, + }, + "maths": { + "answered": False, + "q1": { + "question": "5 + 7 = ?", + "options": [10, 11, 12, 13], + "answer": 12, + }, + "q2": { + "question": "12 - 8 = ?", + "options": [1, 2, 3, 4], + "answer": 4, + }, + }, + }, + } + ) diff --git a/env/Lib/site-packages/pip/_vendor/rich/constrain.py b/env/Lib/site-packages/pip/_vendor/rich/constrain.py new file mode 100644 index 00000000..65fdf563 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/constrain.py @@ -0,0 +1,37 @@ +from typing import Optional, TYPE_CHECKING + +from .jupyter import JupyterMixin +from .measure import Measurement + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + + +class Constrain(JupyterMixin): + """Constrain the width of a renderable to a given number of characters. + + Args: + renderable (RenderableType): A renderable object. + width (int, optional): The maximum width (in characters) to render. Defaults to 80. + """ + + def __init__(self, renderable: "RenderableType", width: Optional[int] = 80) -> None: + self.renderable = renderable + self.width = width + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.width is None: + yield self.renderable + else: + child_options = options.update_width(min(self.width, options.max_width)) + yield from console.render(self.renderable, child_options) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.width is not None: + options = options.update_width(self.width) + measurement = Measurement.get(console, options, self.renderable) + return measurement diff --git a/env/Lib/site-packages/pip/_vendor/rich/containers.py b/env/Lib/site-packages/pip/_vendor/rich/containers.py new file mode 100644 index 00000000..901ff8ba --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/containers.py @@ -0,0 +1,167 @@ +from itertools import zip_longest +from typing import ( + TYPE_CHECKING, + Iterable, + Iterator, + List, + Optional, + TypeVar, + Union, + overload, +) + +if TYPE_CHECKING: + from .console import ( + Console, + ConsoleOptions, + JustifyMethod, + OverflowMethod, + RenderResult, + RenderableType, + ) + from .text import Text + +from .cells import cell_len +from .measure import Measurement + +T = TypeVar("T") + + +class Renderables: + """A list subclass which renders its contents to the console.""" + + def __init__( + self, renderables: Optional[Iterable["RenderableType"]] = None + ) -> None: + self._renderables: List["RenderableType"] = ( + list(renderables) if renderables is not None else [] + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._renderables + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + dimensions = [ + Measurement.get(console, options, renderable) + for renderable in self._renderables + ] + if not dimensions: + return Measurement(1, 1) + _min = max(dimension.minimum for dimension in dimensions) + _max = max(dimension.maximum for dimension in dimensions) + return Measurement(_min, _max) + + def append(self, renderable: "RenderableType") -> None: + self._renderables.append(renderable) + + def __iter__(self) -> Iterable["RenderableType"]: + return iter(self._renderables) + + +class Lines: + """A list subclass which can render to the console.""" + + def __init__(self, lines: Iterable["Text"] = ()) -> None: + self._lines: List["Text"] = list(lines) + + def __repr__(self) -> str: + return f"Lines({self._lines!r})" + + def __iter__(self) -> Iterator["Text"]: + return iter(self._lines) + + @overload + def __getitem__(self, index: int) -> "Text": + ... + + @overload + def __getitem__(self, index: slice) -> List["Text"]: + ... + + def __getitem__(self, index: Union[slice, int]) -> Union["Text", List["Text"]]: + return self._lines[index] + + def __setitem__(self, index: int, value: "Text") -> "Lines": + self._lines[index] = value + return self + + def __len__(self) -> int: + return self._lines.__len__() + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._lines + + def append(self, line: "Text") -> None: + self._lines.append(line) + + def extend(self, lines: Iterable["Text"]) -> None: + self._lines.extend(lines) + + def pop(self, index: int = -1) -> "Text": + return self._lines.pop(index) + + def justify( + self, + console: "Console", + width: int, + justify: "JustifyMethod" = "left", + overflow: "OverflowMethod" = "fold", + ) -> None: + """Justify and overflow text to a given width. + + Args: + console (Console): Console instance. + width (int): Number of cells available per line. + justify (str, optional): Default justify method for text: "left", "center", "full" or "right". Defaults to "left". + overflow (str, optional): Default overflow for text: "crop", "fold", or "ellipsis". Defaults to "fold". + + """ + from .text import Text + + if justify == "left": + for line in self._lines: + line.truncate(width, overflow=overflow, pad=True) + elif justify == "center": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left((width - cell_len(line.plain)) // 2) + line.pad_right(width - cell_len(line.plain)) + elif justify == "right": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left(width - cell_len(line.plain)) + elif justify == "full": + for line_index, line in enumerate(self._lines): + if line_index == len(self._lines) - 1: + break + words = line.split(" ") + words_size = sum(cell_len(word.plain) for word in words) + num_spaces = len(words) - 1 + spaces = [1 for _ in range(num_spaces)] + index = 0 + if spaces: + while words_size + num_spaces < width: + spaces[len(spaces) - index - 1] += 1 + num_spaces += 1 + index = (index + 1) % len(spaces) + tokens: List[Text] = [] + for index, (word, next_word) in enumerate( + zip_longest(words, words[1:]) + ): + tokens.append(word) + if index < len(spaces): + style = word.get_style_at_offset(console, -1) + next_style = next_word.get_style_at_offset(console, 0) + space_style = style if style == next_style else line.style + tokens.append(Text(" " * spaces[index], style=space_style)) + self[line_index] = Text("").join(tokens) diff --git a/env/Lib/site-packages/pip/_vendor/rich/control.py b/env/Lib/site-packages/pip/_vendor/rich/control.py new file mode 100644 index 00000000..88fcb929 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/control.py @@ -0,0 +1,225 @@ +import sys +import time +from typing import TYPE_CHECKING, Callable, Dict, Iterable, List, Union + +if sys.version_info >= (3, 8): + from typing import Final +else: + from pip._vendor.typing_extensions import Final # pragma: no cover + +from .segment import ControlCode, ControlType, Segment + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + +STRIP_CONTROL_CODES: Final = [ + 7, # Bell + 8, # Backspace + 11, # Vertical tab + 12, # Form feed + 13, # Carriage return +] +_CONTROL_STRIP_TRANSLATE: Final = { + _codepoint: None for _codepoint in STRIP_CONTROL_CODES +} + +CONTROL_ESCAPE: Final = { + 7: "\\a", + 8: "\\b", + 11: "\\v", + 12: "\\f", + 13: "\\r", +} + +CONTROL_CODES_FORMAT: Dict[int, Callable[..., str]] = { + ControlType.BELL: lambda: "\x07", + ControlType.CARRIAGE_RETURN: lambda: "\r", + ControlType.HOME: lambda: "\x1b[H", + ControlType.CLEAR: lambda: "\x1b[2J", + ControlType.ENABLE_ALT_SCREEN: lambda: "\x1b[?1049h", + ControlType.DISABLE_ALT_SCREEN: lambda: "\x1b[?1049l", + ControlType.SHOW_CURSOR: lambda: "\x1b[?25h", + ControlType.HIDE_CURSOR: lambda: "\x1b[?25l", + ControlType.CURSOR_UP: lambda param: f"\x1b[{param}A", + ControlType.CURSOR_DOWN: lambda param: f"\x1b[{param}B", + ControlType.CURSOR_FORWARD: lambda param: f"\x1b[{param}C", + ControlType.CURSOR_BACKWARD: lambda param: f"\x1b[{param}D", + ControlType.CURSOR_MOVE_TO_COLUMN: lambda param: f"\x1b[{param+1}G", + ControlType.ERASE_IN_LINE: lambda param: f"\x1b[{param}K", + ControlType.CURSOR_MOVE_TO: lambda x, y: f"\x1b[{y+1};{x+1}H", + ControlType.SET_WINDOW_TITLE: lambda title: f"\x1b]0;{title}\x07", +} + + +class Control: + """A renderable that inserts a control code (non printable but may move cursor). + + Args: + *codes (str): Positional arguments are either a :class:`~rich.segment.ControlType` enum or a + tuple of ControlType and an integer parameter + """ + + __slots__ = ["segment"] + + def __init__(self, *codes: Union[ControlType, ControlCode]) -> None: + control_codes: List[ControlCode] = [ + (code,) if isinstance(code, ControlType) else code for code in codes + ] + _format_map = CONTROL_CODES_FORMAT + rendered_codes = "".join( + _format_map[code](*parameters) for code, *parameters in control_codes + ) + self.segment = Segment(rendered_codes, None, control_codes) + + @classmethod + def bell(cls) -> "Control": + """Ring the 'bell'.""" + return cls(ControlType.BELL) + + @classmethod + def home(cls) -> "Control": + """Move cursor to 'home' position.""" + return cls(ControlType.HOME) + + @classmethod + def move(cls, x: int = 0, y: int = 0) -> "Control": + """Move cursor relative to current position. + + Args: + x (int): X offset. + y (int): Y offset. + + Returns: + ~Control: Control object. + + """ + + def get_codes() -> Iterable[ControlCode]: + control = ControlType + if x: + yield ( + control.CURSOR_FORWARD if x > 0 else control.CURSOR_BACKWARD, + abs(x), + ) + if y: + yield ( + control.CURSOR_DOWN if y > 0 else control.CURSOR_UP, + abs(y), + ) + + control = cls(*get_codes()) + return control + + @classmethod + def move_to_column(cls, x: int, y: int = 0) -> "Control": + """Move to the given column, optionally add offset to row. + + Returns: + x (int): absolute x (column) + y (int): optional y offset (row) + + Returns: + ~Control: Control object. + """ + + return ( + cls( + (ControlType.CURSOR_MOVE_TO_COLUMN, x), + ( + ControlType.CURSOR_DOWN if y > 0 else ControlType.CURSOR_UP, + abs(y), + ), + ) + if y + else cls((ControlType.CURSOR_MOVE_TO_COLUMN, x)) + ) + + @classmethod + def move_to(cls, x: int, y: int) -> "Control": + """Move cursor to absolute position. + + Args: + x (int): x offset (column) + y (int): y offset (row) + + Returns: + ~Control: Control object. + """ + return cls((ControlType.CURSOR_MOVE_TO, x, y)) + + @classmethod + def clear(cls) -> "Control": + """Clear the screen.""" + return cls(ControlType.CLEAR) + + @classmethod + def show_cursor(cls, show: bool) -> "Control": + """Show or hide the cursor.""" + return cls(ControlType.SHOW_CURSOR if show else ControlType.HIDE_CURSOR) + + @classmethod + def alt_screen(cls, enable: bool) -> "Control": + """Enable or disable alt screen.""" + if enable: + return cls(ControlType.ENABLE_ALT_SCREEN, ControlType.HOME) + else: + return cls(ControlType.DISABLE_ALT_SCREEN) + + @classmethod + def title(cls, title: str) -> "Control": + """Set the terminal window title + + Args: + title (str): The new terminal window title + """ + return cls((ControlType.SET_WINDOW_TITLE, title)) + + def __str__(self) -> str: + return self.segment.text + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.segment.text: + yield self.segment + + +def strip_control_codes( + text: str, _translate_table: Dict[int, None] = _CONTROL_STRIP_TRANSLATE +) -> str: + """Remove control codes from text. + + Args: + text (str): A string possibly contain control codes. + + Returns: + str: String with control codes removed. + """ + return text.translate(_translate_table) + + +def escape_control_codes( + text: str, + _translate_table: Dict[int, str] = CONTROL_ESCAPE, +) -> str: + """Replace control codes with their "escaped" equivalent in the given text. + (e.g. "\b" becomes "\\b") + + Args: + text (str): A string possibly containing control codes. + + Returns: + str: String with control codes replaced with their escaped version. + """ + return text.translate(_translate_table) + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + console = Console() + console.print("Look at the title of your terminal window ^") + # console.print(Control((ControlType.SET_WINDOW_TITLE, "Hello, world!"))) + for i in range(10): + console.set_window_title("🚀 Loading" + "." * i) + time.sleep(0.5) diff --git a/env/Lib/site-packages/pip/_vendor/rich/default_styles.py b/env/Lib/site-packages/pip/_vendor/rich/default_styles.py new file mode 100644 index 00000000..dca37193 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/default_styles.py @@ -0,0 +1,190 @@ +from typing import Dict + +from .style import Style + +DEFAULT_STYLES: Dict[str, Style] = { + "none": Style.null(), + "reset": Style( + color="default", + bgcolor="default", + dim=False, + bold=False, + italic=False, + underline=False, + blink=False, + blink2=False, + reverse=False, + conceal=False, + strike=False, + ), + "dim": Style(dim=True), + "bright": Style(dim=False), + "bold": Style(bold=True), + "strong": Style(bold=True), + "code": Style(reverse=True, bold=True), + "italic": Style(italic=True), + "emphasize": Style(italic=True), + "underline": Style(underline=True), + "blink": Style(blink=True), + "blink2": Style(blink2=True), + "reverse": Style(reverse=True), + "strike": Style(strike=True), + "black": Style(color="black"), + "red": Style(color="red"), + "green": Style(color="green"), + "yellow": Style(color="yellow"), + "magenta": Style(color="magenta"), + "cyan": Style(color="cyan"), + "white": Style(color="white"), + "inspect.attr": Style(color="yellow", italic=True), + "inspect.attr.dunder": Style(color="yellow", italic=True, dim=True), + "inspect.callable": Style(bold=True, color="red"), + "inspect.async_def": Style(italic=True, color="bright_cyan"), + "inspect.def": Style(italic=True, color="bright_cyan"), + "inspect.class": Style(italic=True, color="bright_cyan"), + "inspect.error": Style(bold=True, color="red"), + "inspect.equals": Style(), + "inspect.help": Style(color="cyan"), + "inspect.doc": Style(dim=True), + "inspect.value.border": Style(color="green"), + "live.ellipsis": Style(bold=True, color="red"), + "layout.tree.row": Style(dim=False, color="red"), + "layout.tree.column": Style(dim=False, color="blue"), + "logging.keyword": Style(bold=True, color="yellow"), + "logging.level.notset": Style(dim=True), + "logging.level.debug": Style(color="green"), + "logging.level.info": Style(color="blue"), + "logging.level.warning": Style(color="red"), + "logging.level.error": Style(color="red", bold=True), + "logging.level.critical": Style(color="red", bold=True, reverse=True), + "log.level": Style.null(), + "log.time": Style(color="cyan", dim=True), + "log.message": Style.null(), + "log.path": Style(dim=True), + "repr.ellipsis": Style(color="yellow"), + "repr.indent": Style(color="green", dim=True), + "repr.error": Style(color="red", bold=True), + "repr.str": Style(color="green", italic=False, bold=False), + "repr.brace": Style(bold=True), + "repr.comma": Style(bold=True), + "repr.ipv4": Style(bold=True, color="bright_green"), + "repr.ipv6": Style(bold=True, color="bright_green"), + "repr.eui48": Style(bold=True, color="bright_green"), + "repr.eui64": Style(bold=True, color="bright_green"), + "repr.tag_start": Style(bold=True), + "repr.tag_name": Style(color="bright_magenta", bold=True), + "repr.tag_contents": Style(color="default"), + "repr.tag_end": Style(bold=True), + "repr.attrib_name": Style(color="yellow", italic=False), + "repr.attrib_equal": Style(bold=True), + "repr.attrib_value": Style(color="magenta", italic=False), + "repr.number": Style(color="cyan", bold=True, italic=False), + "repr.number_complex": Style(color="cyan", bold=True, italic=False), # same + "repr.bool_true": Style(color="bright_green", italic=True), + "repr.bool_false": Style(color="bright_red", italic=True), + "repr.none": Style(color="magenta", italic=True), + "repr.url": Style(underline=True, color="bright_blue", italic=False, bold=False), + "repr.uuid": Style(color="bright_yellow", bold=False), + "repr.call": Style(color="magenta", bold=True), + "repr.path": Style(color="magenta"), + "repr.filename": Style(color="bright_magenta"), + "rule.line": Style(color="bright_green"), + "rule.text": Style.null(), + "json.brace": Style(bold=True), + "json.bool_true": Style(color="bright_green", italic=True), + "json.bool_false": Style(color="bright_red", italic=True), + "json.null": Style(color="magenta", italic=True), + "json.number": Style(color="cyan", bold=True, italic=False), + "json.str": Style(color="green", italic=False, bold=False), + "json.key": Style(color="blue", bold=True), + "prompt": Style.null(), + "prompt.choices": Style(color="magenta", bold=True), + "prompt.default": Style(color="cyan", bold=True), + "prompt.invalid": Style(color="red"), + "prompt.invalid.choice": Style(color="red"), + "pretty": Style.null(), + "scope.border": Style(color="blue"), + "scope.key": Style(color="yellow", italic=True), + "scope.key.special": Style(color="yellow", italic=True, dim=True), + "scope.equals": Style(color="red"), + "table.header": Style(bold=True), + "table.footer": Style(bold=True), + "table.cell": Style.null(), + "table.title": Style(italic=True), + "table.caption": Style(italic=True, dim=True), + "traceback.error": Style(color="red", italic=True), + "traceback.border.syntax_error": Style(color="bright_red"), + "traceback.border": Style(color="red"), + "traceback.text": Style.null(), + "traceback.title": Style(color="red", bold=True), + "traceback.exc_type": Style(color="bright_red", bold=True), + "traceback.exc_value": Style.null(), + "traceback.offset": Style(color="bright_red", bold=True), + "bar.back": Style(color="grey23"), + "bar.complete": Style(color="rgb(249,38,114)"), + "bar.finished": Style(color="rgb(114,156,31)"), + "bar.pulse": Style(color="rgb(249,38,114)"), + "progress.description": Style.null(), + "progress.filesize": Style(color="green"), + "progress.filesize.total": Style(color="green"), + "progress.download": Style(color="green"), + "progress.elapsed": Style(color="yellow"), + "progress.percentage": Style(color="magenta"), + "progress.remaining": Style(color="cyan"), + "progress.data.speed": Style(color="red"), + "progress.spinner": Style(color="green"), + "status.spinner": Style(color="green"), + "tree": Style(), + "tree.line": Style(), + "markdown.paragraph": Style(), + "markdown.text": Style(), + "markdown.em": Style(italic=True), + "markdown.emph": Style(italic=True), # For commonmark backwards compatibility + "markdown.strong": Style(bold=True), + "markdown.code": Style(bold=True, color="cyan", bgcolor="black"), + "markdown.code_block": Style(color="cyan", bgcolor="black"), + "markdown.block_quote": Style(color="magenta"), + "markdown.list": Style(color="cyan"), + "markdown.item": Style(), + "markdown.item.bullet": Style(color="yellow", bold=True), + "markdown.item.number": Style(color="yellow", bold=True), + "markdown.hr": Style(color="yellow"), + "markdown.h1.border": Style(), + "markdown.h1": Style(bold=True), + "markdown.h2": Style(bold=True, underline=True), + "markdown.h3": Style(bold=True), + "markdown.h4": Style(bold=True, dim=True), + "markdown.h5": Style(underline=True), + "markdown.h6": Style(italic=True), + "markdown.h7": Style(italic=True, dim=True), + "markdown.link": Style(color="bright_blue"), + "markdown.link_url": Style(color="blue", underline=True), + "markdown.s": Style(strike=True), + "iso8601.date": Style(color="blue"), + "iso8601.time": Style(color="magenta"), + "iso8601.timezone": Style(color="yellow"), +} + + +if __name__ == "__main__": # pragma: no cover + import argparse + import io + + from pip._vendor.rich.console import Console + from pip._vendor.rich.table import Table + from pip._vendor.rich.text import Text + + parser = argparse.ArgumentParser() + parser.add_argument("--html", action="store_true", help="Export as HTML table") + args = parser.parse_args() + html: bool = args.html + console = Console(record=True, width=70, file=io.StringIO()) if html else Console() + + table = Table("Name", "Styling") + + for style_name, style in DEFAULT_STYLES.items(): + table.add_row(Text(style_name, style=style), str(style)) + + console.print(table) + if html: + print(console.export_html(inline_styles=True)) diff --git a/env/Lib/site-packages/pip/_vendor/rich/diagnose.py b/env/Lib/site-packages/pip/_vendor/rich/diagnose.py new file mode 100644 index 00000000..ad361838 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/diagnose.py @@ -0,0 +1,37 @@ +import os +import platform + +from pip._vendor.rich import inspect +from pip._vendor.rich.console import Console, get_windows_console_features +from pip._vendor.rich.panel import Panel +from pip._vendor.rich.pretty import Pretty + + +def report() -> None: # pragma: no cover + """Print a report to the terminal with debugging information""" + console = Console() + inspect(console) + features = get_windows_console_features() + inspect(features) + + env_names = ( + "TERM", + "COLORTERM", + "CLICOLOR", + "NO_COLOR", + "TERM_PROGRAM", + "COLUMNS", + "LINES", + "JUPYTER_COLUMNS", + "JUPYTER_LINES", + "JPY_PARENT_PID", + "VSCODE_VERBOSE_LOGGING", + ) + env = {name: os.getenv(name) for name in env_names} + console.print(Panel.fit((Pretty(env)), title="[b]Environment Variables")) + + console.print(f'platform="{platform.system()}"') + + +if __name__ == "__main__": # pragma: no cover + report() diff --git a/env/Lib/site-packages/pip/_vendor/rich/emoji.py b/env/Lib/site-packages/pip/_vendor/rich/emoji.py new file mode 100644 index 00000000..791f0465 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/emoji.py @@ -0,0 +1,96 @@ +import sys +from typing import TYPE_CHECKING, Optional, Union + +from .jupyter import JupyterMixin +from .segment import Segment +from .style import Style +from ._emoji_codes import EMOJI +from ._emoji_replace import _emoji_replace + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + + +EmojiVariant = Literal["emoji", "text"] + + +class NoEmoji(Exception): + """No emoji by that name.""" + + +class Emoji(JupyterMixin): + __slots__ = ["name", "style", "_char", "variant"] + + VARIANTS = {"text": "\uFE0E", "emoji": "\uFE0F"} + + def __init__( + self, + name: str, + style: Union[str, Style] = "none", + variant: Optional[EmojiVariant] = None, + ) -> None: + """A single emoji character. + + Args: + name (str): Name of emoji. + style (Union[str, Style], optional): Optional style. Defaults to None. + + Raises: + NoEmoji: If the emoji doesn't exist. + """ + self.name = name + self.style = style + self.variant = variant + try: + self._char = EMOJI[name] + except KeyError: + raise NoEmoji(f"No emoji called {name!r}") + if variant is not None: + self._char += self.VARIANTS.get(variant, "") + + @classmethod + def replace(cls, text: str) -> str: + """Replace emoji markup with corresponding unicode characters. + + Args: + text (str): A string with emojis codes, e.g. "Hello :smiley:!" + + Returns: + str: A string with emoji codes replaces with actual emoji. + """ + return _emoji_replace(text) + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self._char + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + yield Segment(self._char, console.get_style(self.style)) + + +if __name__ == "__main__": # pragma: no cover + import sys + + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.console import Console + + console = Console(record=True) + + columns = Columns( + (f":{name}: {name}" for name in sorted(EMOJI.keys()) if "\u200D" not in name), + column_first=True, + ) + + console.print(columns) + if len(sys.argv) > 1: + console.save_html(sys.argv[1]) diff --git a/env/Lib/site-packages/pip/_vendor/rich/errors.py b/env/Lib/site-packages/pip/_vendor/rich/errors.py new file mode 100644 index 00000000..0bcbe53e --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/errors.py @@ -0,0 +1,34 @@ +class ConsoleError(Exception): + """An error in console operation.""" + + +class StyleError(Exception): + """An error in styles.""" + + +class StyleSyntaxError(ConsoleError): + """Style was badly formatted.""" + + +class MissingStyle(StyleError): + """No such style.""" + + +class StyleStackError(ConsoleError): + """Style stack is invalid.""" + + +class NotRenderableError(ConsoleError): + """Object is not renderable.""" + + +class MarkupError(ConsoleError): + """Markup was badly formatted.""" + + +class LiveError(ConsoleError): + """Error related to Live display.""" + + +class NoAltScreen(ConsoleError): + """Alt screen mode was required.""" diff --git a/env/Lib/site-packages/pip/_vendor/rich/file_proxy.py b/env/Lib/site-packages/pip/_vendor/rich/file_proxy.py new file mode 100644 index 00000000..4b0b0da6 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/file_proxy.py @@ -0,0 +1,57 @@ +import io +from typing import IO, TYPE_CHECKING, Any, List + +from .ansi import AnsiDecoder +from .text import Text + +if TYPE_CHECKING: + from .console import Console + + +class FileProxy(io.TextIOBase): + """Wraps a file (e.g. sys.stdout) and redirects writes to a console.""" + + def __init__(self, console: "Console", file: IO[str]) -> None: + self.__console = console + self.__file = file + self.__buffer: List[str] = [] + self.__ansi_decoder = AnsiDecoder() + + @property + def rich_proxied_file(self) -> IO[str]: + """Get proxied file.""" + return self.__file + + def __getattr__(self, name: str) -> Any: + return getattr(self.__file, name) + + def write(self, text: str) -> int: + if not isinstance(text, str): + raise TypeError(f"write() argument must be str, not {type(text).__name__}") + buffer = self.__buffer + lines: List[str] = [] + while text: + line, new_line, text = text.partition("\n") + if new_line: + lines.append("".join(buffer) + line) + buffer.clear() + else: + buffer.append(line) + break + if lines: + console = self.__console + with console: + output = Text("\n").join( + self.__ansi_decoder.decode_line(line) for line in lines + ) + console.print(output) + return len(text) + + def flush(self) -> None: + output = "".join(self.__buffer) + if output: + self.__console.print(output) + del self.__buffer[:] + + def fileno(self) -> int: + return self.__file.fileno() diff --git a/env/Lib/site-packages/pip/_vendor/rich/filesize.py b/env/Lib/site-packages/pip/_vendor/rich/filesize.py new file mode 100644 index 00000000..99f118e2 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/filesize.py @@ -0,0 +1,89 @@ +# coding: utf-8 +"""Functions for reporting filesizes. Borrowed from https://github.com/PyFilesystem/pyfilesystem2 + +The functions declared in this module should cover the different +use cases needed to generate a string representation of a file size +using several different units. Since there are many standards regarding +file size units, three different functions have been implemented. + +See Also: + * `Wikipedia: Binary prefix `_ + +""" + +__all__ = ["decimal"] + +from typing import Iterable, List, Optional, Tuple + + +def _to_str( + size: int, + suffixes: Iterable[str], + base: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + if size == 1: + return "1 byte" + elif size < base: + return "{:,} bytes".format(size) + + for i, suffix in enumerate(suffixes, 2): # noqa: B007 + unit = base**i + if size < unit: + break + return "{:,.{precision}f}{separator}{}".format( + (base * size / unit), + suffix, + precision=precision, + separator=separator, + ) + + +def pick_unit_and_suffix(size: int, suffixes: List[str], base: int) -> Tuple[int, str]: + """Pick a suffix and base for the given size.""" + for i, suffix in enumerate(suffixes): + unit = base**i + if size < unit * base: + break + return unit, suffix + + +def decimal( + size: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + """Convert a filesize in to a string (powers of 1000, SI prefixes). + + In this convention, ``1000 B = 1 kB``. + + This is typically the format used to advertise the storage + capacity of USB flash drives and the like (*256 MB* meaning + actually a storage capacity of more than *256 000 000 B*), + or used by **Mac OS X** since v10.6 to report file sizes. + + Arguments: + int (size): A file size. + int (precision): The number of decimal places to include (default = 1). + str (separator): The string to separate the value from the units (default = " "). + + Returns: + `str`: A string containing a abbreviated file size and units. + + Example: + >>> filesize.decimal(30000) + '30.0 kB' + >>> filesize.decimal(30000, precision=2, separator="") + '30.00kB' + + """ + return _to_str( + size, + ("kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"), + 1000, + precision=precision, + separator=separator, + ) diff --git a/env/Lib/site-packages/pip/_vendor/rich/highlighter.py b/env/Lib/site-packages/pip/_vendor/rich/highlighter.py new file mode 100644 index 00000000..27714b25 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/rich/highlighter.py @@ -0,0 +1,232 @@ +import re +from abc import ABC, abstractmethod +from typing import List, Union + +from .text import Span, Text + + +def _combine_regex(*regexes: str) -> str: + """Combine a number of regexes in to a single regex. + + Returns: + str: New regex with all regexes ORed together. + """ + return "|".join(regexes) + + +class Highlighter(ABC): + """Abstract base class for highlighters.""" + + def __call__(self, text: Union[str, Text]) -> Text: + """Highlight a str or Text instance. + + Args: + text (Union[str, ~Text]): Text to highlight. + + Raises: + TypeError: If not called with text or str. + + Returns: + Text: A test instance with highlighting applied. + """ + if isinstance(text, str): + highlight_text = Text(text) + elif isinstance(text, Text): + highlight_text = text.copy() + else: + raise TypeError(f"str or Text instance required, not {text!r}") + self.highlight(highlight_text) + return highlight_text + + @abstractmethod + def highlight(self, text: Text) -> None: + """Apply highlighting in place to text. + + Args: + text (~Text): A text object highlight. + """ + + +class NullHighlighter(Highlighter): + """A highlighter object that doesn't highlight. + + May be used to disable highlighting entirely. + + """ + + def highlight(self, text: Text) -> None: + """Nothing to do""" + + +class RegexHighlighter(Highlighter): + """Applies highlighting from a list of regular expressions.""" + + highlights: List[str] = [] + base_style: str = "" + + def highlight(self, text: Text) -> None: + """Highlight :class:`rich.text.Text` using regular expressions. + + Args: + text (~Text): Text to highlighted. + + """ + + highlight_regex = text.highlight_regex + for re_highlight in self.highlights: + highlight_regex(re_highlight, style_prefix=self.base_style) + + +class ReprHighlighter(RegexHighlighter): + """Highlights the text typically produced from ``__repr__`` methods.""" + + base_style = "repr." + highlights = [ + r"(?P<)(?P[-\w.:|]*)(?P[\w\W]*)(?P>)", + r'(?P[\w_]{1,50})=(?P"?[\w_]+"?)?', + r"(?P[][{}()])", + _combine_regex( + r"(?P[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})", + r"(?P([A-Fa-f0-9]{1,4}::?){1,7}[A-Fa-f0-9]{1,4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){3}[0-9A-Fa-f]{4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){2}[0-9A-Fa-f]{4})", + r"(?P[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})", + r"(?P[\w.]*?)\(", + r"\b(?PTrue)\b|\b(?PFalse)\b|\b(?PNone)\b", + r"(?P\.\.\.)", + r"(?P(?(?\B(/[-\w._+]+)*\/)(?P[-\w._+]*)?", + r"(?b?'''.*?(?(file|https|http|ws|wss)://[-0-9a-zA-Z$_+!`(),.?/;:&=%#~]*)", + ), + ] + + +class JSONHighlighter(RegexHighlighter): + """Highlights JSON""" + + # Captures the start and end of JSON strings, handling escaped quotes + JSON_STR = r"(?b?\".*?(?[\{\[\(\)\]\}])", + r"\b(?Ptrue)\b|\b(?Pfalse)\b|\b(?Pnull)\b", + r"(?P(? None: + super().highlight(text) + + # Additional work to handle highlighting JSON keys + plain = text.plain + append = text.spans.append + whitespace = self.JSON_WHITESPACE + for match in re.finditer(self.JSON_STR, plain): + start, end = match.span() + cursor = end + while cursor < len(plain): + char = plain[cursor] + cursor += 1 + if char == ":": + append(Span(start, end, "json.key")) + elif char in whitespace: + continue + break + + +class ISO8601Highlighter(RegexHighlighter): + """Highlights the ISO8601 date time strings. + Regex reference: https://www.oreilly.com/library/view/regular-expressions-cookbook/9781449327453/ch04s07.html + """ + + base_style = "iso8601." + highlights = [ + # + # Dates + # + # Calendar month (e.g. 2008-08). The hyphen is required + r"^(?P[0-9]{4})-(?P1[0-2]|0[1-9])$", + # Calendar date w/o hyphens (e.g. 20080830) + r"^(?P(?P[0-9]{4})(?P1[0-2]|0[1-9])(?P3[01]|0[1-9]|[12][0-9]))$", + # Ordinal date (e.g. 2008-243). The hyphen is optional + r"^(?P(?P[0-9]{4})-?(?P36[0-6]|3[0-5][0-9]|[12][0-9]{2}|0[1-9][0-9]|00[1-9]))$", + # + # Weeks + # + # Week of the year (e.g., 2008-W35). The hyphen is optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9]))$", + # Week date (e.g., 2008-W35-6). The hyphens are optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9])-?(?P[1-7]))$", + # + # Times + # + # Hours and minutes (e.g., 17:21). The colon is optional + r"^(?P

!I7S{BS4i1|@R7s@ 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/t64.exe b/env/Lib/site-packages/pip/_vendor/distlib/t64.exe new file mode 100644 index 0000000000000000000000000000000000000000..e8bebdba6d8f242244bf397ab067965d47c5093e GIT binary patch literal 108032 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%0AHbpwE%ZM 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 H#ex3;_fXA_ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/util.py b/env/Lib/site-packages/pip/_vendor/distlib/util.py new file mode 100644 index 00000000..ba58858d --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/util.py @@ -0,0 +1,2025 @@ +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import codecs +from collections import deque +import contextlib +import csv +from glob import iglob as std_iglob +import io +import json +import logging +import os +import py_compile +import re +import socket +try: + import ssl +except ImportError: # pragma: no cover + ssl = None +import subprocess +import sys +import tarfile +import tempfile +import textwrap + +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import time + +from . import DistlibException +from .compat import (string_types, text_type, shutil, raw_input, StringIO, + cache_from_source, urlopen, urljoin, httplib, xmlrpclib, + HTTPHandler, BaseConfigurator, valid_ident, + Container, configparser, URLError, ZipFile, fsdecode, + unquote, urlparse) + +logger = logging.getLogger(__name__) + +# +# Requirement parsing code as per PEP 508 +# + +IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') +VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') +COMPARE_OP = re.compile(r'^(<=?|>=?|={2,3}|[~!]=)\s*') +MARKER_OP = re.compile(r'^((<=?)|(>=?)|={2,3}|[~!]=|in|not\s+in)\s*') +OR = re.compile(r'^or\b\s*') +AND = re.compile(r'^and\b\s*') +NON_SPACE = re.compile(r'(\S+)\s*') +STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') + + +def parse_marker(marker_string): + """ + Parse a marker string and return a dictionary containing a marker expression. + + The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in + the expression grammar, or strings. A string contained in quotes is to be + interpreted as a literal string, and a string not contained in quotes is a + variable (such as os_name). + """ + + def marker_var(remaining): + # either identifier, or literal string + m = IDENTIFIER.match(remaining) + if m: + result = m.groups()[0] + remaining = remaining[m.end():] + elif not remaining: + raise SyntaxError('unexpected end of input') + else: + q = remaining[0] + if q not in '\'"': + raise SyntaxError('invalid expression: %s' % remaining) + oq = '\'"'.replace(q, '') + remaining = remaining[1:] + parts = [q] + while remaining: + # either a string chunk, or oq, or q to terminate + if remaining[0] == q: + break + elif remaining[0] == oq: + parts.append(oq) + remaining = remaining[1:] + else: + m = STRING_CHUNK.match(remaining) + if not m: + raise SyntaxError('error in string literal: %s' % + remaining) + parts.append(m.groups()[0]) + remaining = remaining[m.end():] + else: + s = ''.join(parts) + raise SyntaxError('unterminated string: %s' % s) + parts.append(q) + result = ''.join(parts) + remaining = remaining[1:].lstrip() # skip past closing quote + return result, remaining + + def marker_expr(remaining): + if remaining and remaining[0] == '(': + result, remaining = marker(remaining[1:].lstrip()) + if remaining[0] != ')': + raise SyntaxError('unterminated parenthesis: %s' % remaining) + remaining = remaining[1:].lstrip() + else: + lhs, remaining = marker_var(remaining) + while remaining: + m = MARKER_OP.match(remaining) + if not m: + break + op = m.groups()[0] + remaining = remaining[m.end():] + rhs, remaining = marker_var(remaining) + lhs = {'op': op, 'lhs': lhs, 'rhs': rhs} + result = lhs + return result, remaining + + def marker_and(remaining): + lhs, remaining = marker_expr(remaining) + while remaining: + m = AND.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_expr(remaining) + lhs = {'op': 'and', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + def marker(remaining): + lhs, remaining = marker_and(remaining) + while remaining: + m = OR.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_and(remaining) + lhs = {'op': 'or', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + return marker(marker_string) + + +def parse_requirement(req): + """ + Parse a requirement passed in as a string. Return a Container + whose attributes contain the various parts of the requirement. + """ + remaining = req.strip() + if not remaining or remaining.startswith('#'): + return None + m = IDENTIFIER.match(remaining) + if not m: + raise SyntaxError('name expected: %s' % remaining) + distname = m.groups()[0] + remaining = remaining[m.end():] + extras = mark_expr = versions = uri = None + if remaining and remaining[0] == '[': + i = remaining.find(']', 1) + if i < 0: + raise SyntaxError('unterminated extra: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + extras = [] + while s: + m = IDENTIFIER.match(s) + if not m: + raise SyntaxError('malformed extra: %s' % s) + extras.append(m.groups()[0]) + s = s[m.end():] + if not s: + break + if s[0] != ',': + raise SyntaxError('comma expected in extras: %s' % s) + s = s[1:].lstrip() + if not extras: + extras = None + if remaining: + if remaining[0] == '@': + # it's a URI + remaining = remaining[1:].lstrip() + m = NON_SPACE.match(remaining) + if not m: + raise SyntaxError('invalid URI: %s' % remaining) + uri = m.groups()[0] + t = urlparse(uri) + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not (t.scheme and t.netloc): + raise SyntaxError('Invalid URL: %s' % uri) + remaining = remaining[m.end():].lstrip() + else: + + def get_versions(ver_remaining): + """ + Return a list of operator, version tuples if any are + specified, else None. + """ + m = COMPARE_OP.match(ver_remaining) + versions = None + if m: + versions = [] + while True: + op = m.groups()[0] + ver_remaining = ver_remaining[m.end():] + m = VERSION_IDENTIFIER.match(ver_remaining) + if not m: + raise SyntaxError('invalid version: %s' % + ver_remaining) + v = m.groups()[0] + versions.append((op, v)) + ver_remaining = ver_remaining[m.end():] + if not ver_remaining or ver_remaining[0] != ',': + break + ver_remaining = ver_remaining[1:].lstrip() + # Some packages have a trailing comma which would break things + # See issue #148 + if not ver_remaining: + break + m = COMPARE_OP.match(ver_remaining) + if not m: + raise SyntaxError('invalid constraint: %s' % + ver_remaining) + if not versions: + versions = None + return versions, ver_remaining + + if remaining[0] != '(': + versions, remaining = get_versions(remaining) + else: + i = remaining.find(')', 1) + if i < 0: + raise SyntaxError('unterminated parenthesis: %s' % + remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + # As a special diversion from PEP 508, allow a version number + # a.b.c in parentheses as a synonym for ~= a.b.c (because this + # is allowed in earlier PEPs) + if COMPARE_OP.match(s): + versions, _ = get_versions(s) + else: + m = VERSION_IDENTIFIER.match(s) + if not m: + raise SyntaxError('invalid constraint: %s' % s) + v = m.groups()[0] + s = s[m.end():].lstrip() + if s: + raise SyntaxError('invalid constraint: %s' % s) + versions = [('~=', v)] + + if remaining: + if remaining[0] != ';': + raise SyntaxError('invalid requirement: %s' % remaining) + remaining = remaining[1:].lstrip() + + mark_expr, remaining = parse_marker(remaining) + + if remaining and remaining[0] != '#': + raise SyntaxError('unexpected trailing data: %s' % remaining) + + if not versions: + rs = distname + else: + rs = '%s %s' % (distname, ', '.join( + ['%s %s' % con for con in versions])) + return Container(name=distname, + extras=extras, + constraints=versions, + marker=mark_expr, + url=uri, + requirement=rs) + + +def get_resources_dests(resources_root, rules): + """Find destinations for resources files""" + + def get_rel_path(root, path): + # normalizes and returns a lstripped-/-separated path + root = root.replace(os.path.sep, '/') + path = path.replace(os.path.sep, '/') + assert path.startswith(root) + return path[len(root):].lstrip('/') + + destinations = {} + for base, suffix, dest in rules: + prefix = os.path.join(resources_root, base) + for abs_base in iglob(prefix): + abs_glob = os.path.join(abs_base, suffix) + for abs_path in iglob(abs_glob): + resource_file = get_rel_path(resources_root, abs_path) + if dest is None: # remove the entry if it was here + destinations.pop(resource_file, None) + else: + rel_path = get_rel_path(abs_base, abs_path) + rel_dest = dest.replace(os.path.sep, '/').rstrip('/') + destinations[resource_file] = rel_dest + '/' + rel_path + return destinations + + +def in_venv(): + if hasattr(sys, 'real_prefix'): + # virtualenv venvs + result = True + else: + # PEP 405 venvs + result = sys.prefix != getattr(sys, 'base_prefix', sys.prefix) + return result + + +def get_executable(): + # The __PYVENV_LAUNCHER__ dance is apparently no longer needed, as + # changes to the stub launcher mean that sys.executable always points + # to the stub on OS X + # if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' + # in os.environ): + # result = os.environ['__PYVENV_LAUNCHER__'] + # else: + # result = sys.executable + # return result + # Avoid normcasing: see issue #143 + # result = os.path.normcase(sys.executable) + result = sys.executable + if not isinstance(result, text_type): + result = fsdecode(result) + return result + + +def proceed(prompt, allowed_chars, error_prompt=None, default=None): + p = prompt + while True: + s = raw_input(p) + p = prompt + if not s and default: + s = default + if s: + c = s[0].lower() + if c in allowed_chars: + break + if error_prompt: + p = '%c: %s\n%s' % (c, error_prompt, prompt) + return c + + +def extract_by_key(d, keys): + if isinstance(keys, string_types): + keys = keys.split() + result = {} + for key in keys: + if key in d: + result[key] = d[key] + return result + + +def read_exports(stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + # Try to load as JSON, falling back on legacy format + data = stream.read() + stream = StringIO(data) + try: + jdata = json.load(stream) + result = jdata['extensions']['python.exports']['exports'] + for group, entries in result.items(): + for k, v in entries.items(): + s = '%s = %s' % (k, v) + entry = get_export_entry(s) + assert entry is not None + entries[k] = entry + return result + except Exception: + stream.seek(0, 0) + + def read_stream(cp, stream): + if hasattr(cp, 'read_file'): + cp.read_file(stream) + else: + cp.readfp(stream) + + cp = configparser.ConfigParser() + try: + read_stream(cp, stream) + except configparser.MissingSectionHeaderError: + stream.close() + data = textwrap.dedent(data) + stream = StringIO(data) + read_stream(cp, stream) + + result = {} + for key in cp.sections(): + result[key] = entries = {} + for name, value in cp.items(key): + s = '%s = %s' % (name, value) + entry = get_export_entry(s) + assert entry is not None + # entry.dist = self + entries[name] = entry + return result + + +def write_exports(exports, stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getwriter('utf-8')(stream) + cp = configparser.ConfigParser() + for k, v in exports.items(): + # TODO check k, v for valid values + cp.add_section(k) + for entry in v.values(): + if entry.suffix is None: + s = entry.prefix + else: + s = '%s:%s' % (entry.prefix, entry.suffix) + if entry.flags: + s = '%s [%s]' % (s, ', '.join(entry.flags)) + cp.set(k, entry.name, s) + cp.write(stream) + + +@contextlib.contextmanager +def tempdir(): + td = tempfile.mkdtemp() + try: + yield td + finally: + shutil.rmtree(td) + + +@contextlib.contextmanager +def chdir(d): + cwd = os.getcwd() + try: + os.chdir(d) + yield + finally: + os.chdir(cwd) + + +@contextlib.contextmanager +def socket_timeout(seconds=15): + cto = socket.getdefaulttimeout() + try: + socket.setdefaulttimeout(seconds) + yield + finally: + socket.setdefaulttimeout(cto) + + +class cached_property(object): + + def __init__(self, func): + self.func = func + # for attr in ('__name__', '__module__', '__doc__'): + # setattr(self, attr, getattr(func, attr, None)) + + def __get__(self, obj, cls=None): + if obj is None: + return self + value = self.func(obj) + object.__setattr__(obj, self.func.__name__, value) + # obj.__dict__[self.func.__name__] = value = self.func(obj) + return value + + +def convert_path(pathname): + """Return 'pathname' as a name that will work on the native filesystem. + + The path is split on '/' and put back together again using the current + directory separator. Needed because filenames in the setup script are + always supplied in Unix style, and have to be converted to the local + convention before we can actually use them in the filesystem. Raises + ValueError on non-Unix-ish systems if 'pathname' either starts or + ends with a slash. + """ + if os.sep == '/': + return pathname + if not pathname: + return pathname + if pathname[0] == '/': + raise ValueError("path '%s' cannot be absolute" % pathname) + if pathname[-1] == '/': + raise ValueError("path '%s' cannot end with '/'" % pathname) + + paths = pathname.split('/') + while os.curdir in paths: + paths.remove(os.curdir) + if not paths: + return os.curdir + return os.path.join(*paths) + + +class FileOperator(object): + + def __init__(self, dry_run=False): + self.dry_run = dry_run + self.ensured = set() + self._init_record() + + def _init_record(self): + self.record = False + self.files_written = set() + self.dirs_created = set() + + def record_as_written(self, path): + if self.record: + self.files_written.add(path) + + def newer(self, source, target): + """Tell if the target is newer than the source. + + Returns true if 'source' exists and is more recently modified than + 'target', or if 'source' exists and 'target' doesn't. + + Returns false if both exist and 'target' is the same age or younger + than 'source'. Raise PackagingFileError if 'source' does not exist. + + Note that this test is not very accurate: files created in the same + second will have the same "age". + """ + if not os.path.exists(source): + raise DistlibException("file '%r' does not exist" % + os.path.abspath(source)) + if not os.path.exists(target): + return True + + return os.stat(source).st_mtime > os.stat(target).st_mtime + + def copy_file(self, infile, outfile, check=True): + """Copy a file respecting dry-run and force flags. + """ + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying %s to %s', infile, outfile) + if not self.dry_run: + msg = None + if check: + if os.path.islink(outfile): + msg = '%s is a symlink' % outfile + elif os.path.exists(outfile) and not os.path.isfile(outfile): + msg = '%s is a non-regular file' % outfile + if msg: + raise ValueError(msg + ' which would be overwritten') + shutil.copyfile(infile, outfile) + self.record_as_written(outfile) + + def copy_stream(self, instream, outfile, encoding=None): + assert not os.path.isdir(outfile) + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying stream %s to %s', instream, outfile) + if not self.dry_run: + if encoding is None: + outstream = open(outfile, 'wb') + else: + outstream = codecs.open(outfile, 'w', encoding=encoding) + try: + shutil.copyfileobj(instream, outstream) + finally: + outstream.close() + self.record_as_written(outfile) + + def write_binary_file(self, path, data): + self.ensure_dir(os.path.dirname(path)) + if not self.dry_run: + if os.path.exists(path): + os.remove(path) + with open(path, 'wb') as f: + f.write(data) + self.record_as_written(path) + + def write_text_file(self, path, data, encoding): + self.write_binary_file(path, data.encode(encoding)) + + def set_mode(self, bits, mask, files): + if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'): + # Set the executable bits (owner, group, and world) on + # all the files specified. + for f in files: + if self.dry_run: + logger.info("changing mode of %s", f) + else: + mode = (os.stat(f).st_mode | bits) & mask + logger.info("changing mode of %s to %o", f, mode) + os.chmod(f, mode) + + set_executable_mode = lambda s, f: s.set_mode(0o555, 0o7777, f) + + def ensure_dir(self, path): + path = os.path.abspath(path) + if path not in self.ensured and not os.path.exists(path): + self.ensured.add(path) + d, f = os.path.split(path) + self.ensure_dir(d) + logger.info('Creating %s' % path) + if not self.dry_run: + os.mkdir(path) + if self.record: + self.dirs_created.add(path) + + def byte_compile(self, + path, + optimize=False, + force=False, + prefix=None, + hashed_invalidation=False): + dpath = cache_from_source(path, not optimize) + logger.info('Byte-compiling %s to %s', path, dpath) + if not self.dry_run: + if force or self.newer(path, dpath): + if not prefix: + diagpath = None + else: + assert path.startswith(prefix) + diagpath = path[len(prefix):] + compile_kwargs = {} + if hashed_invalidation and hasattr(py_compile, + 'PycInvalidationMode'): + compile_kwargs[ + 'invalidation_mode'] = py_compile.PycInvalidationMode.CHECKED_HASH + py_compile.compile(path, dpath, diagpath, True, + **compile_kwargs) # raise error + self.record_as_written(dpath) + return dpath + + def ensure_removed(self, path): + if os.path.exists(path): + if os.path.isdir(path) and not os.path.islink(path): + logger.debug('Removing directory tree at %s', path) + if not self.dry_run: + shutil.rmtree(path) + if self.record: + if path in self.dirs_created: + self.dirs_created.remove(path) + else: + if os.path.islink(path): + s = 'link' + else: + s = 'file' + logger.debug('Removing %s %s', s, path) + if not self.dry_run: + os.remove(path) + if self.record: + if path in self.files_written: + self.files_written.remove(path) + + def is_writable(self, path): + result = False + while not result: + if os.path.exists(path): + result = os.access(path, os.W_OK) + break + parent = os.path.dirname(path) + if parent == path: + break + path = parent + return result + + def commit(self): + """ + Commit recorded changes, turn off recording, return + changes. + """ + assert self.record + result = self.files_written, self.dirs_created + self._init_record() + return result + + def rollback(self): + if not self.dry_run: + for f in list(self.files_written): + if os.path.exists(f): + os.remove(f) + # dirs should all be empty now, except perhaps for + # __pycache__ subdirs + # reverse so that subdirs appear before their parents + dirs = sorted(self.dirs_created, reverse=True) + for d in dirs: + flist = os.listdir(d) + if flist: + assert flist == ['__pycache__'] + sd = os.path.join(d, flist[0]) + os.rmdir(sd) + os.rmdir(d) # should fail if non-empty + self._init_record() + + +def resolve(module_name, dotted_path): + if module_name in sys.modules: + mod = sys.modules[module_name] + else: + mod = __import__(module_name) + if dotted_path is None: + result = mod + else: + parts = dotted_path.split('.') + result = getattr(mod, parts.pop(0)) + for p in parts: + result = getattr(result, p) + return result + + +class ExportEntry(object): + + def __init__(self, name, prefix, suffix, flags): + self.name = name + self.prefix = prefix + self.suffix = suffix + self.flags = flags + + @cached_property + def value(self): + return resolve(self.prefix, self.suffix) + + def __repr__(self): # pragma: no cover + return '' % (self.name, self.prefix, + self.suffix, self.flags) + + def __eq__(self, other): + if not isinstance(other, ExportEntry): + result = False + else: + result = (self.name == other.name and self.prefix == other.prefix + and self.suffix == other.suffix + and self.flags == other.flags) + return result + + __hash__ = object.__hash__ + + +ENTRY_RE = re.compile( + r'''(?P([^\[]\S*)) + \s*=\s*(?P(\w+)([:\.]\w+)*) + \s*(\[\s*(?P[\w-]+(=\w+)?(,\s*\w+(=\w+)?)*)\s*\])? + ''', re.VERBOSE) + + +def get_export_entry(specification): + m = ENTRY_RE.search(specification) + if not m: + result = None + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + else: + d = m.groupdict() + name = d['name'] + path = d['callable'] + colons = path.count(':') + if colons == 0: + prefix, suffix = path, None + else: + if colons != 1: + raise DistlibException("Invalid specification " + "'%s'" % specification) + prefix, suffix = path.split(':') + flags = d['flags'] + if flags is None: + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + flags = [] + else: + flags = [f.strip() for f in flags.split(',')] + result = ExportEntry(name, prefix, suffix, flags) + return result + + +def get_cache_base(suffix=None): + """ + Return the default base location for distlib caches. If the directory does + not exist, it is created. Use the suffix provided for the base directory, + and default to '.distlib' if it isn't provided. + + On Windows, if LOCALAPPDATA is defined in the environment, then it is + assumed to be a directory, and will be the parent directory of the result. + On POSIX, and on Windows if LOCALAPPDATA is not defined, the user's home + directory - using os.expanduser('~') - will be the parent directory of + the result. + + The result is just the directory '.distlib' in the parent directory as + determined above, or with the name specified with ``suffix``. + """ + if suffix is None: + suffix = '.distlib' + if os.name == 'nt' and 'LOCALAPPDATA' in os.environ: + result = os.path.expandvars('$localappdata') + else: + # Assume posix, or old Windows + result = os.path.expanduser('~') + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if os.path.isdir(result): + usable = os.access(result, os.W_OK) + if not usable: + logger.warning('Directory exists but is not writable: %s', result) + else: + try: + os.makedirs(result) + usable = True + except OSError: + logger.warning('Unable to create %s', result, exc_info=True) + usable = False + if not usable: + result = tempfile.mkdtemp() + logger.warning('Default location unusable, using %s', result) + return os.path.join(result, suffix) + + +def path_to_cache_dir(path): + """ + Convert an absolute path to a directory name for use in a cache. + + The algorithm used is: + + #. On Windows, any ``':'`` in the drive is replaced with ``'---'``. + #. Any occurrence of ``os.sep`` is replaced with ``'--'``. + #. ``'.cache'`` is appended. + """ + d, p = os.path.splitdrive(os.path.abspath(path)) + if d: + d = d.replace(':', '---') + p = p.replace(os.sep, '--') + return d + p + '.cache' + + +def ensure_slash(s): + if not s.endswith('/'): + return s + '/' + return s + + +def parse_credentials(netloc): + username = password = None + if '@' in netloc: + prefix, netloc = netloc.rsplit('@', 1) + if ':' not in prefix: + username = prefix + else: + username, password = prefix.split(':', 1) + if username: + username = unquote(username) + if password: + password = unquote(password) + return username, password, netloc + + +def get_process_umask(): + result = os.umask(0o22) + os.umask(result) + return result + + +def is_string_sequence(seq): + result = True + i = None + for i, s in enumerate(seq): + if not isinstance(s, string_types): + result = False + break + assert i is not None + return result + + +PROJECT_NAME_AND_VERSION = re.compile( + '([a-z0-9_]+([.-][a-z_][a-z0-9_]*)*)-' + '([a-z0-9_.+-]+)', re.I) +PYTHON_VERSION = re.compile(r'-py(\d\.?\d?)') + + +def split_filename(filename, project_name=None): + """ + Extract name, version, python version from a filename (no extension) + + Return name, version, pyver or None + """ + result = None + pyver = None + filename = unquote(filename).replace(' ', '-') + m = PYTHON_VERSION.search(filename) + if m: + pyver = m.group(1) + filename = filename[:m.start()] + if project_name and len(filename) > len(project_name) + 1: + m = re.match(re.escape(project_name) + r'\b', filename) + if m: + n = m.end() + result = filename[:n], filename[n + 1:], pyver + if result is None: + m = PROJECT_NAME_AND_VERSION.match(filename) + if m: + result = m.group(1), m.group(3), pyver + return result + + +# Allow spaces in name because of legacy dists like "Twisted Core" +NAME_VERSION_RE = re.compile(r'(?P[\w .-]+)\s*' + r'\(\s*(?P[^\s)]+)\)$') + + +def parse_name_and_version(p): + """ + A utility method used to get name and version from a string. + + From e.g. a Provides-Dist value. + + :param p: A value in a form 'foo (1.0)' + :return: The name and version as a tuple. + """ + m = NAME_VERSION_RE.match(p) + if not m: + raise DistlibException('Ill-formed name/version string: \'%s\'' % p) + d = m.groupdict() + return d['name'].strip().lower(), d['ver'] + + +def get_extras(requested, available): + result = set() + requested = set(requested or []) + available = set(available or []) + if '*' in requested: + requested.remove('*') + result |= available + for r in requested: + if r == '-': + result.add(r) + elif r.startswith('-'): + unwanted = r[1:] + if unwanted not in available: + logger.warning('undeclared extra: %s' % unwanted) + if unwanted in result: + result.remove(unwanted) + else: + if r not in available: + logger.warning('undeclared extra: %s' % r) + result.add(r) + return result + + +# +# Extended metadata functionality +# + + +def _get_external_data(url): + result = {} + try: + # urlopen might fail if it runs into redirections, + # because of Python issue #13696. Fixed in locators + # using a custom redirect handler. + resp = urlopen(url) + headers = resp.info() + ct = headers.get('Content-Type') + if not ct.startswith('application/json'): + logger.debug('Unexpected response for JSON request: %s', ct) + else: + reader = codecs.getreader('utf-8')(resp) + # data = reader.read().decode('utf-8') + # result = json.loads(data) + result = json.load(reader) + except Exception as e: + logger.exception('Failed to get external data for %s: %s', url, e) + return result + + +_external_data_base_url = 'https://www.red-dove.com/pypi/projects/' + + +def get_project_data(name): + url = '%s/%s/project.json' % (name[0].upper(), name) + url = urljoin(_external_data_base_url, url) + result = _get_external_data(url) + return result + + +def get_package_data(name, version): + url = '%s/%s/package-%s.json' % (name[0].upper(), name, version) + url = urljoin(_external_data_base_url, url) + return _get_external_data(url) + + +class Cache(object): + """ + A class implementing a cache for resources that need to live in the file system + e.g. shared libraries. This class was moved from resources to here because it + could be used by other modules, e.g. the wheel module. + """ + + def __init__(self, base): + """ + Initialise an instance. + + :param base: The base directory where the cache should be located. + """ + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if not os.path.isdir(base): # pragma: no cover + os.makedirs(base) + if (os.stat(base).st_mode & 0o77) != 0: + logger.warning('Directory \'%s\' is not private', base) + self.base = os.path.abspath(os.path.normpath(base)) + + def prefix_to_dir(self, prefix): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix) + + def clear(self): + """ + Clear the cache. + """ + not_removed = [] + for fn in os.listdir(self.base): + fn = os.path.join(self.base, fn) + try: + if os.path.islink(fn) or os.path.isfile(fn): + os.remove(fn) + elif os.path.isdir(fn): + shutil.rmtree(fn) + except Exception: + not_removed.append(fn) + return not_removed + + +class EventMixin(object): + """ + A very simple publish/subscribe system. + """ + + def __init__(self): + self._subscribers = {} + + def add(self, event, subscriber, append=True): + """ + Add a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be added (and called when the + event is published). + :param append: Whether to append or prepend the subscriber to an + existing subscriber list for the event. + """ + subs = self._subscribers + if event not in subs: + subs[event] = deque([subscriber]) + else: + sq = subs[event] + if append: + sq.append(subscriber) + else: + sq.appendleft(subscriber) + + def remove(self, event, subscriber): + """ + Remove a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be removed. + """ + subs = self._subscribers + if event not in subs: + raise ValueError('No subscribers: %r' % event) + subs[event].remove(subscriber) + + def get_subscribers(self, event): + """ + Return an iterator for the subscribers for an event. + :param event: The event to return subscribers for. + """ + return iter(self._subscribers.get(event, ())) + + def publish(self, event, *args, **kwargs): + """ + Publish a event and return a list of values returned by its + subscribers. + + :param event: The event to publish. + :param args: The positional arguments to pass to the event's + subscribers. + :param kwargs: The keyword arguments to pass to the event's + subscribers. + """ + result = [] + for subscriber in self.get_subscribers(event): + try: + value = subscriber(event, *args, **kwargs) + except Exception: + logger.exception('Exception during event publication') + value = None + result.append(value) + logger.debug('publish %s: args = %s, kwargs = %s, result = %s', event, + args, kwargs, result) + return result + + +# +# Simple sequencing +# +class Sequencer(object): + + def __init__(self): + self._preds = {} + self._succs = {} + self._nodes = set() # nodes with no preds/succs + + def add_node(self, node): + self._nodes.add(node) + + def remove_node(self, node, edges=False): + if node in self._nodes: + self._nodes.remove(node) + if edges: + for p in set(self._preds.get(node, ())): + self.remove(p, node) + for s in set(self._succs.get(node, ())): + self.remove(node, s) + # Remove empties + for k, v in list(self._preds.items()): + if not v: + del self._preds[k] + for k, v in list(self._succs.items()): + if not v: + del self._succs[k] + + def add(self, pred, succ): + assert pred != succ + self._preds.setdefault(succ, set()).add(pred) + self._succs.setdefault(pred, set()).add(succ) + + def remove(self, pred, succ): + assert pred != succ + try: + preds = self._preds[succ] + succs = self._succs[pred] + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of anything' % succ) + try: + preds.remove(pred) + succs.remove(succ) + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of %r' % (succ, pred)) + + def is_step(self, step): + return (step in self._preds or step in self._succs + or step in self._nodes) + + def get_steps(self, final): + if not self.is_step(final): + raise ValueError('Unknown: %r' % final) + result = [] + todo = [] + seen = set() + todo.append(final) + while todo: + step = todo.pop(0) + if step in seen: + # if a step was already seen, + # move it to the end (so it will appear earlier + # when reversed on return) ... but not for the + # final step, as that would be confusing for + # users + if step != final: + result.remove(step) + result.append(step) + else: + seen.add(step) + result.append(step) + preds = self._preds.get(step, ()) + todo.extend(preds) + return reversed(result) + + @property + def strong_connections(self): + # http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm + index_counter = [0] + stack = [] + lowlinks = {} + index = {} + result = [] + + graph = self._succs + + def strongconnect(node): + # set the depth index for this node to the smallest unused index + index[node] = index_counter[0] + lowlinks[node] = index_counter[0] + index_counter[0] += 1 + stack.append(node) + + # Consider successors + try: + successors = graph[node] + except Exception: + successors = [] + for successor in successors: + if successor not in lowlinks: + # Successor has not yet been visited + strongconnect(successor) + lowlinks[node] = min(lowlinks[node], lowlinks[successor]) + elif successor in stack: + # the successor is in the stack and hence in the current + # strongly connected component (SCC) + lowlinks[node] = min(lowlinks[node], index[successor]) + + # If `node` is a root node, pop the stack and generate an SCC + if lowlinks[node] == index[node]: + connected_component = [] + + while True: + successor = stack.pop() + connected_component.append(successor) + if successor == node: + break + component = tuple(connected_component) + # storing the result + result.append(component) + + for node in graph: + if node not in lowlinks: + strongconnect(node) + + return result + + @property + def dot(self): + result = ['digraph G {'] + for succ in self._preds: + preds = self._preds[succ] + for pred in preds: + result.append(' %s -> %s;' % (pred, succ)) + for node in self._nodes: + result.append(' %s;' % node) + result.append('}') + return '\n'.join(result) + + +# +# Unarchiving functionality for zip, tar, tgz, tbz, whl +# + +ARCHIVE_EXTENSIONS = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz', + '.whl') + + +def unarchive(archive_filename, dest_dir, format=None, check=True): + + def check_path(path): + if not isinstance(path, text_type): + path = path.decode('utf-8') + p = os.path.abspath(os.path.join(dest_dir, path)) + if not p.startswith(dest_dir) or p[plen] != os.sep: + raise ValueError('path outside destination: %r' % p) + + dest_dir = os.path.abspath(dest_dir) + plen = len(dest_dir) + archive = None + if format is None: + if archive_filename.endswith(('.zip', '.whl')): + format = 'zip' + elif archive_filename.endswith(('.tar.gz', '.tgz')): + format = 'tgz' + mode = 'r:gz' + elif archive_filename.endswith(('.tar.bz2', '.tbz')): + format = 'tbz' + mode = 'r:bz2' + elif archive_filename.endswith('.tar'): + format = 'tar' + mode = 'r' + else: # pragma: no cover + raise ValueError('Unknown format for %r' % archive_filename) + try: + if format == 'zip': + archive = ZipFile(archive_filename, 'r') + if check: + names = archive.namelist() + for name in names: + check_path(name) + else: + archive = tarfile.open(archive_filename, mode) + if check: + names = archive.getnames() + for name in names: + check_path(name) + if format != 'zip' and sys.version_info[0] < 3: + # See Python issue 17153. If the dest path contains Unicode, + # tarfile extraction fails on Python 2.x if a member path name + # contains non-ASCII characters - it leads to an implicit + # bytes -> unicode conversion using ASCII to decode. + for tarinfo in archive.getmembers(): + if not isinstance(tarinfo.name, text_type): + tarinfo.name = tarinfo.name.decode('utf-8') + + # Limit extraction of dangerous items, if this Python + # allows it easily. If not, just trust the input. + # See: https://docs.python.org/3/library/tarfile.html#extraction-filters + def extraction_filter(member, path): + """Run tarfile.tar_filter, but raise the expected ValueError""" + # This is only called if the current Python has tarfile filters + try: + return tarfile.tar_filter(member, path) + except tarfile.FilterError as exc: + raise ValueError(str(exc)) + + archive.extraction_filter = extraction_filter + + archive.extractall(dest_dir) + + finally: + if archive: + archive.close() + + +def zip_dir(directory): + """zip a directory tree into a BytesIO object""" + result = io.BytesIO() + dlen = len(directory) + with ZipFile(result, "w") as zf: + for root, dirs, files in os.walk(directory): + for name in files: + full = os.path.join(root, name) + rel = root[dlen:] + dest = os.path.join(rel, name) + zf.write(full, dest) + return result + + +# +# Simple progress bar +# + +UNITS = ('', 'K', 'M', 'G', 'T', 'P') + + +class Progress(object): + unknown = 'UNKNOWN' + + def __init__(self, minval=0, maxval=100): + assert maxval is None or maxval >= minval + self.min = self.cur = minval + self.max = maxval + self.started = None + self.elapsed = 0 + self.done = False + + def update(self, curval): + assert self.min <= curval + assert self.max is None or curval <= self.max + self.cur = curval + now = time.time() + if self.started is None: + self.started = now + else: + self.elapsed = now - self.started + + def increment(self, incr): + assert incr >= 0 + self.update(self.cur + incr) + + def start(self): + self.update(self.min) + return self + + def stop(self): + if self.max is not None: + self.update(self.max) + self.done = True + + @property + def maximum(self): + return self.unknown if self.max is None else self.max + + @property + def percentage(self): + if self.done: + result = '100 %' + elif self.max is None: + result = ' ?? %' + else: + v = 100.0 * (self.cur - self.min) / (self.max - self.min) + result = '%3d %%' % v + return result + + def format_duration(self, duration): + if (duration <= 0) and self.max is None or self.cur == self.min: + result = '??:??:??' + # elif duration < 1: + # result = '--:--:--' + else: + result = time.strftime('%H:%M:%S', time.gmtime(duration)) + return result + + @property + def ETA(self): + if self.done: + prefix = 'Done' + t = self.elapsed + # import pdb; pdb.set_trace() + else: + prefix = 'ETA ' + if self.max is None: + t = -1 + elif self.elapsed == 0 or (self.cur == self.min): + t = 0 + else: + # import pdb; pdb.set_trace() + t = float(self.max - self.min) + t /= self.cur - self.min + t = (t - 1) * self.elapsed + return '%s: %s' % (prefix, self.format_duration(t)) + + @property + def speed(self): + if self.elapsed == 0: + result = 0.0 + else: + result = (self.cur - self.min) / self.elapsed + for unit in UNITS: + if result < 1000: + break + result /= 1000.0 + return '%d %sB/s' % (result, unit) + + +# +# Glob functionality +# + +RICH_GLOB = re.compile(r'\{([^}]*)\}') +_CHECK_RECURSIVE_GLOB = re.compile(r'[^/\\,{]\*\*|\*\*[^/\\,}]') +_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + + +def iglob(path_glob): + """Extended globbing function that supports ** and {opt1,opt2,opt3}.""" + if _CHECK_RECURSIVE_GLOB.search(path_glob): + msg = """invalid glob %r: recursive glob "**" must be used alone""" + raise ValueError(msg % path_glob) + if _CHECK_MISMATCH_SET.search(path_glob): + msg = """invalid glob %r: mismatching set marker '{' or '}'""" + raise ValueError(msg % path_glob) + return _iglob(path_glob) + + +def _iglob(path_glob): + rich_path_glob = RICH_GLOB.split(path_glob, 1) + if len(rich_path_glob) > 1: + assert len(rich_path_glob) == 3, rich_path_glob + prefix, set, suffix = rich_path_glob + for item in set.split(','): + for path in _iglob(''.join((prefix, item, suffix))): + yield path + else: + if '**' not in path_glob: + for item in std_iglob(path_glob): + yield item + else: + prefix, radical = path_glob.split('**', 1) + if prefix == '': + prefix = '.' + if radical == '': + radical = '*' + else: + # we support both + radical = radical.lstrip('/') + radical = radical.lstrip('\\') + for path, dir, files in os.walk(prefix): + path = os.path.normpath(path) + for fn in _iglob(os.path.join(path, radical)): + yield fn + + +if ssl: + from .compat import (HTTPSHandler as BaseHTTPSHandler, match_hostname, + CertificateError) + + # + # HTTPSConnection which verifies certificates/matches domains + # + + class HTTPSConnection(httplib.HTTPSConnection): + ca_certs = None # set this to the path to the certs file (.pem) + check_domain = True # only used if ca_certs is not None + + # noinspection PyPropertyAccess + def connect(self): + sock = socket.create_connection((self.host, self.port), + self.timeout) + if getattr(self, '_tunnel_host', False): + self.sock = sock + self._tunnel() + + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if getattr(self, 'cert_file', None): + context.load_cert_chain(self.cert_file, self.key_file) + kwargs = {} + if self.ca_certs: + context.verify_mode = ssl.CERT_REQUIRED + context.load_verify_locations(cafile=self.ca_certs) + if getattr(ssl, 'HAS_SNI', False): + kwargs['server_hostname'] = self.host + + self.sock = context.wrap_socket(sock, **kwargs) + if self.ca_certs and self.check_domain: + try: + match_hostname(self.sock.getpeercert(), self.host) + logger.debug('Host verified: %s', self.host) + except CertificateError: # pragma: no cover + self.sock.shutdown(socket.SHUT_RDWR) + self.sock.close() + raise + + class HTTPSHandler(BaseHTTPSHandler): + + def __init__(self, ca_certs, check_domain=True): + BaseHTTPSHandler.__init__(self) + self.ca_certs = ca_certs + self.check_domain = check_domain + + def _conn_maker(self, *args, **kwargs): + """ + This is called to create a connection instance. Normally you'd + pass a connection class to do_open, but it doesn't actually check for + a class, and just expects a callable. As long as we behave just as a + constructor would have, we should be OK. If it ever changes so that + we *must* pass a class, we'll create an UnsafeHTTPSConnection class + which just sets check_domain to False in the class definition, and + choose which one to pass to do_open. + """ + result = HTTPSConnection(*args, **kwargs) + if self.ca_certs: + result.ca_certs = self.ca_certs + result.check_domain = self.check_domain + return result + + def https_open(self, req): + try: + return self.do_open(self._conn_maker, req) + except URLError as e: + if 'certificate verify failed' in str(e.reason): + raise CertificateError( + 'Unable to verify server certificate ' + 'for %s' % req.host) + else: + raise + + # + # To prevent against mixing HTTP traffic with HTTPS (examples: A Man-In-The- + # Middle proxy using HTTP listens on port 443, or an index mistakenly serves + # HTML containing a http://xyz link when it should be https://xyz), + # you can use the following handler class, which does not allow HTTP traffic. + # + # It works by inheriting from HTTPHandler - so build_opener won't add a + # handler for HTTP itself. + # + class HTTPSOnlyHandler(HTTPSHandler, HTTPHandler): + + def http_open(self, req): + raise URLError( + 'Unexpected HTTP request on what should be a secure ' + 'connection: %s' % req) + + +# +# XML-RPC with timeouts +# +class Transport(xmlrpclib.Transport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.Transport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, x509 = self.get_host_info(host) + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + return self._connection[1] + + +if ssl: + + class SafeTransport(xmlrpclib.SafeTransport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.SafeTransport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, kwargs = self.get_host_info(host) + if not kwargs: + kwargs = {} + kwargs['timeout'] = self.timeout + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection( + h, None, **kwargs) + return self._connection[1] + + +class ServerProxy(xmlrpclib.ServerProxy): + + def __init__(self, uri, **kwargs): + self.timeout = timeout = kwargs.pop('timeout', None) + # The above classes only come into play if a timeout + # is specified + if timeout is not None: + # scheme = splittype(uri) # deprecated as of Python 3.8 + scheme = urlparse(uri)[0] + use_datetime = kwargs.get('use_datetime', 0) + if scheme == 'https': + tcls = SafeTransport + else: + tcls = Transport + kwargs['transport'] = t = tcls(timeout, use_datetime=use_datetime) + self.transport = t + xmlrpclib.ServerProxy.__init__(self, uri, **kwargs) + + +# +# CSV functionality. This is provided because on 2.x, the csv module can't +# handle Unicode. However, we need to deal with Unicode in e.g. RECORD files. +# + + +def _csv_open(fn, mode, **kwargs): + if sys.version_info[0] < 3: + mode += 'b' + else: + kwargs['newline'] = '' + # Python 3 determines encoding from locale. Force 'utf-8' + # file encoding to match other forced utf-8 encoding + kwargs['encoding'] = 'utf-8' + return open(fn, mode, **kwargs) + + +class CSVBase(object): + defaults = { + 'delimiter': str(','), # The strs are used because we need native + 'quotechar': str('"'), # str in the csv API (2.x won't take + 'lineterminator': str('\n') # Unicode) + } + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.stream.close() + + +class CSVReader(CSVBase): + + def __init__(self, **kwargs): + if 'stream' in kwargs: + stream = kwargs['stream'] + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + self.stream = stream + else: + self.stream = _csv_open(kwargs['path'], 'r') + self.reader = csv.reader(self.stream, **self.defaults) + + def __iter__(self): + return self + + def next(self): + result = next(self.reader) + if sys.version_info[0] < 3: + for i, item in enumerate(result): + if not isinstance(item, text_type): + result[i] = item.decode('utf-8') + return result + + __next__ = next + + +class CSVWriter(CSVBase): + + def __init__(self, fn, **kwargs): + self.stream = _csv_open(fn, 'w') + self.writer = csv.writer(self.stream, **self.defaults) + + def writerow(self, row): + if sys.version_info[0] < 3: + r = [] + for item in row: + if isinstance(item, text_type): + item = item.encode('utf-8') + r.append(item) + row = r + self.writer.writerow(row) + + +# +# Configurator functionality +# + + +class Configurator(BaseConfigurator): + + value_converters = dict(BaseConfigurator.value_converters) + value_converters['inc'] = 'inc_convert' + + def __init__(self, config, base=None): + super(Configurator, self).__init__(config) + self.base = base or os.getcwd() + + def configure_custom(self, config): + + def convert(o): + if isinstance(o, (list, tuple)): + result = type(o)([convert(i) for i in o]) + elif isinstance(o, dict): + if '()' in o: + result = self.configure_custom(o) + else: + result = {} + for k in o: + result[k] = convert(o[k]) + else: + result = self.convert(o) + return result + + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + args = config.pop('[]', ()) + if args: + args = tuple([convert(o) for o in args]) + items = [(k, convert(config[k])) for k in config if valid_ident(k)] + kwargs = dict(items) + result = c(*args, **kwargs) + if props: + for n, v in props.items(): + setattr(result, n, convert(v)) + return result + + def __getitem__(self, key): + result = self.config[key] + if isinstance(result, dict) and '()' in result: + self.config[key] = result = self.configure_custom(result) + return result + + def inc_convert(self, value): + """Default converter for the inc:// protocol.""" + if not os.path.isabs(value): + value = os.path.join(self.base, value) + with codecs.open(value, 'r', encoding='utf-8') as f: + result = json.load(f) + return result + + +class SubprocessMixin(object): + """ + Mixin for running subprocesses and capturing their output + """ + + def __init__(self, verbose=False, progress=None): + self.verbose = verbose + self.progress = progress + + def reader(self, stream, context): + """ + Read lines from a subprocess' output stream and either pass to a progress + callable (if specified) or write progress information to sys.stderr. + """ + progress = self.progress + verbose = self.verbose + while True: + s = stream.readline() + if not s: + break + if progress is not None: + progress(s, context) + else: + if not verbose: + sys.stderr.write('.') + else: + sys.stderr.write(s.decode('utf-8')) + sys.stderr.flush() + stream.close() + + def run_command(self, cmd, **kwargs): + p = subprocess.Popen(cmd, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + **kwargs) + t1 = threading.Thread(target=self.reader, args=(p.stdout, 'stdout')) + t1.start() + t2 = threading.Thread(target=self.reader, args=(p.stderr, 'stderr')) + t2.start() + p.wait() + t1.join() + t2.join() + if self.progress is not None: + self.progress('done.', 'main') + elif self.verbose: + sys.stderr.write('done.\n') + return p + + +def normalize_name(name): + """Normalize a python package name a la PEP 503""" + # https://www.python.org/dev/peps/pep-0503/#normalized-names + return re.sub('[-_.]+', '-', name).lower() + + +# def _get_pypirc_command(): +# """ +# Get the distutils command for interacting with PyPI configurations. +# :return: the command. +# """ +# from distutils.core import Distribution +# from distutils.config import PyPIRCCommand +# d = Distribution() +# return PyPIRCCommand(d) + + +class PyPIRCFile(object): + + DEFAULT_REPOSITORY = 'https://upload.pypi.org/legacy/' + DEFAULT_REALM = 'pypi' + + def __init__(self, fn=None, url=None): + if fn is None: + fn = os.path.join(os.path.expanduser('~'), '.pypirc') + self.filename = fn + self.url = url + + def read(self): + result = {} + + if os.path.exists(self.filename): + repository = self.url or self.DEFAULT_REPOSITORY + + config = configparser.RawConfigParser() + config.read(self.filename) + sections = config.sections() + if 'distutils' in sections: + # let's get the list of servers + index_servers = config.get('distutils', 'index-servers') + _servers = [ + server.strip() for server in index_servers.split('\n') + if server.strip() != '' + ] + if _servers == []: + # nothing set, let's try to get the default pypi + if 'pypi' in sections: + _servers = ['pypi'] + else: + for server in _servers: + result = {'server': server} + result['username'] = config.get(server, 'username') + + # optional params + for key, default in (('repository', + self.DEFAULT_REPOSITORY), + ('realm', self.DEFAULT_REALM), + ('password', None)): + if config.has_option(server, key): + result[key] = config.get(server, key) + else: + result[key] = default + + # work around people having "repository" for the "pypi" + # section of their config set to the HTTP (rather than + # HTTPS) URL + if (server == 'pypi' and repository + in (self.DEFAULT_REPOSITORY, 'pypi')): + result['repository'] = self.DEFAULT_REPOSITORY + elif (result['server'] != repository + and result['repository'] != repository): + result = {} + elif 'server-login' in sections: + # old format + server = 'server-login' + if config.has_option(server, 'repository'): + repository = config.get(server, 'repository') + else: + repository = self.DEFAULT_REPOSITORY + result = { + 'username': config.get(server, 'username'), + 'password': config.get(server, 'password'), + 'repository': repository, + 'server': server, + 'realm': self.DEFAULT_REALM + } + return result + + def update(self, username, password): + # import pdb; pdb.set_trace() + config = configparser.RawConfigParser() + fn = self.filename + config.read(fn) + if not config.has_section('pypi'): + config.add_section('pypi') + config.set('pypi', 'username', username) + config.set('pypi', 'password', password) + with open(fn, 'w') as f: + config.write(f) + + +def _load_pypirc(index): + """ + Read the PyPI access configuration as supported by distutils. + """ + return PyPIRCFile(url=index.url).read() + + +def _store_pypirc(index): + PyPIRCFile().update(index.username, index.password) + + +# +# get_platform()/get_host_platform() copied from Python 3.10.a0 source, with some minor +# tweaks +# + + +def get_host_platform(): + """Return a string that identifies the current platform. This is used mainly to + distinguish platform-specific build directories and platform-specific built + distributions. Typically includes the OS name and version and the + architecture (as supplied by 'os.uname()'), although the exact information + included depends on the OS; eg. on Linux, the kernel version isn't + particularly important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + + """ + if os.name == 'nt': + if 'amd64' in sys.version.lower(): + return 'win-amd64' + if '(arm)' in sys.version.lower(): + return 'win-arm32' + if '(arm64)' in sys.version.lower(): + return 'win-arm64' + return sys.platform + + # Set for cross builds explicitly + if "_PYTHON_HOST_PLATFORM" in os.environ: + return os.environ["_PYTHON_HOST_PLATFORM"] + + if os.name != 'posix' or not hasattr(os, 'uname'): + # XXX what about the architecture? NT is Intel or Alpha, + # Mac OS is M68k or PPC, etc. + return sys.platform + + # Try to distinguish various flavours of Unix + + (osname, host, release, version, machine) = os.uname() + + # Convert the OS name to lowercase, remove '/' characters, and translate + # spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_').replace('/', '-') + + if osname[:5] == 'linux': + # At least on Linux/Intel, 'machine' is the processor -- + # i386, etc. + # XXX what about Alpha, SPARC, etc? + return "%s-%s" % (osname, machine) + + elif osname[:5] == 'sunos': + if release[0] >= '5': # SunOS 5 == Solaris 2 + osname = 'solaris' + release = '%d.%s' % (int(release[0]) - 3, release[2:]) + # We can't use 'platform.architecture()[0]' because a + # bootstrap problem. We use a dict to get an error + # if some suspicious happens. + bitness = {2147483647: '32bit', 9223372036854775807: '64bit'} + machine += '.%s' % bitness[sys.maxsize] + # fall through to standard osname-release-machine representation + elif osname[:3] == 'aix': + from _aix_support import aix_platform + return aix_platform() + elif osname[:6] == 'cygwin': + osname = 'cygwin' + rel_re = re.compile(r'[\d.]+', re.ASCII) + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == 'darwin': + import _osx_support + try: + from distutils import sysconfig + except ImportError: + import sysconfig + osname, release, machine = _osx_support.get_platform_osx( + sysconfig.get_config_vars(), osname, release, machine) + + return '%s-%s-%s' % (osname, release, machine) + + +_TARGET_TO_PLAT = { + 'x86': 'win32', + 'x64': 'win-amd64', + 'arm': 'win-arm32', +} + + +def get_platform(): + if os.name != 'nt': + return get_host_platform() + cross_compilation_target = os.environ.get('VSCMD_ARG_TGT_ARCH') + if cross_compilation_target not in _TARGET_TO_PLAT: + return get_host_platform() + return _TARGET_TO_PLAT[cross_compilation_target] diff --git a/env/Lib/site-packages/pip/_vendor/distlib/version.py b/env/Lib/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 00000000..14171ac9 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,751 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Implementation of a flexible versioning scheme providing support for PEP-440, +setuptools-compatible and semantic versioning. +""" + +import logging +import re + +from .compat import string_types +from .util import parse_requirement + +__all__ = ['NormalizedVersion', 'NormalizedMatcher', + 'LegacyVersion', 'LegacyMatcher', + 'SemanticVersion', 'SemanticMatcher', + 'UnsupportedVersionError', 'get_scheme'] + +logger = logging.getLogger(__name__) + + +class UnsupportedVersionError(ValueError): + """This is an unsupported version.""" + pass + + +class Version(object): + def __init__(self, s): + self._string = s = s.strip() + self._parts = parts = self.parse(s) + assert isinstance(parts, tuple) + assert len(parts) > 0 + + def parse(self, s): + raise NotImplementedError('please implement in a subclass') + + def _check_compatible(self, other): + if type(self) != type(other): + raise TypeError('cannot compare %r and %r' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + def __lt__(self, other): + self._check_compatible(other) + return self._parts < other._parts + + def __gt__(self, other): + return not (self.__lt__(other) or self.__eq__(other)) + + def __le__(self, other): + return self.__lt__(other) or self.__eq__(other) + + def __ge__(self, other): + return self.__gt__(other) or self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self._parts) + + def __repr__(self): + return "%s('%s')" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + @property + def is_prerelease(self): + raise NotImplementedError('Please implement in subclasses.') + + +class Matcher(object): + version_class = None + + # value is either a callable or the name of a method + _operators = { + '<': lambda v, c, p: v < c, + '>': lambda v, c, p: v > c, + '<=': lambda v, c, p: v == c or v < c, + '>=': lambda v, c, p: v == c or v > c, + '==': lambda v, c, p: v == c, + '===': lambda v, c, p: v == c, + # by default, compatible => >=. + '~=': lambda v, c, p: v == c or v > c, + '!=': lambda v, c, p: v != c, + } + + # this is a method only to support alternative implementations + # via overriding + def parse_requirement(self, s): + return parse_requirement(s) + + def __init__(self, s): + if self.version_class is None: + raise ValueError('Please specify a version class') + self._string = s = s.strip() + r = self.parse_requirement(s) + if not r: + raise ValueError('Not valid: %r' % s) + self.name = r.name + self.key = self.name.lower() # for case-insensitive comparisons + clist = [] + if r.constraints: + # import pdb; pdb.set_trace() + for op, s in r.constraints: + if s.endswith('.*'): + if op not in ('==', '!='): + raise ValueError('\'.*\' not allowed for ' + '%r constraints' % op) + # Could be a partial version (e.g. for '2.*') which + # won't parse as a version, so keep it as a string + vn, prefix = s[:-2], True + # Just to check that vn is a valid version + self.version_class(vn) + else: + # Should parse as a version, so we can create an + # instance for the comparison + vn, prefix = self.version_class(s), False + clist.append((op, vn, prefix)) + self._parts = tuple(clist) + + def match(self, version): + """ + Check if the provided version matches the constraints. + + :param version: The version to match against this instance. + :type version: String or :class:`Version` instance. + """ + if isinstance(version, string_types): + version = self.version_class(version) + for operator, constraint, prefix in self._parts: + f = self._operators.get(operator) + if isinstance(f, string_types): + f = getattr(self, f) + if not f: + msg = ('%r not implemented ' + 'for %s' % (operator, self.__class__.__name__)) + raise NotImplementedError(msg) + if not f(version, constraint, prefix): + return False + return True + + @property + def exact_version(self): + result = None + if len(self._parts) == 1 and self._parts[0][0] in ('==', '==='): + result = self._parts[0][1] + return result + + def _check_compatible(self, other): + if type(self) != type(other) or self.name != other.name: + raise TypeError('cannot compare %s and %s' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self.key == other.key and self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self.key) + hash(self._parts) + + def __repr__(self): + return "%s(%r)" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + +PEP440_VERSION_RE = re.compile(r'^v?(\d+!)?(\d+(\.\d+)*)((a|alpha|b|beta|c|rc|pre|preview)(\d+)?)?' + r'(\.(post|r|rev)(\d+)?)?([._-]?(dev)(\d+)?)?' + r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$', re.I) + + +def _pep_440_key(s): + s = s.strip() + m = PEP440_VERSION_RE.match(s) + if not m: + raise UnsupportedVersionError('Not a valid version: %s' % s) + groups = m.groups() + nums = tuple(int(v) for v in groups[1].split('.')) + while len(nums) > 1 and nums[-1] == 0: + nums = nums[:-1] + + if not groups[0]: + epoch = 0 + else: + epoch = int(groups[0][:-1]) + pre = groups[4:6] + post = groups[7:9] + dev = groups[10:12] + local = groups[13] + if pre == (None, None): + pre = () + else: + if pre[1] is None: + pre = pre[0], 0 + else: + pre = pre[0], int(pre[1]) + if post == (None, None): + post = () + else: + if post[1] is None: + post = post[0], 0 + else: + post = post[0], int(post[1]) + if dev == (None, None): + dev = () + else: + if dev[1] is None: + dev = dev[0], 0 + else: + dev = dev[0], int(dev[1]) + if local is None: + local = () + else: + parts = [] + for part in local.split('.'): + # to ensure that numeric compares as > lexicographic, avoid + # comparing them directly, but encode a tuple which ensures + # correct sorting + if part.isdigit(): + part = (1, int(part)) + else: + part = (0, part) + parts.append(part) + local = tuple(parts) + if not pre: + # either before pre-release, or final release and after + if not post and dev: + # before pre-release + pre = ('a', -1) # to sort before a0 + else: + pre = ('z',) # to sort after all pre-releases + # now look at the state of post and dev. + if not post: + post = ('_',) # sort before 'a' + if not dev: + dev = ('final',) + + return epoch, nums, pre, post, dev, local + + +_normalized_key = _pep_440_key + + +class NormalizedVersion(Version): + """A rational version. + + Good: + 1.2 # equivalent to "1.2.0" + 1.2.0 + 1.2a1 + 1.2.3a2 + 1.2.3b1 + 1.2.3c1 + 1.2.3.4 + TODO: fill this out + + Bad: + 1 # minimum two numbers + 1.2a # release level must have a release serial + 1.2.3b + """ + def parse(self, s): + result = _normalized_key(s) + # _normalized_key loses trailing zeroes in the release + # clause, since that's needed to ensure that X.Y == X.Y.0 == X.Y.0.0 + # However, PEP 440 prefix matching needs it: for example, + # (~= 1.4.5.0) matches differently to (~= 1.4.5.0.0). + m = PEP440_VERSION_RE.match(s) # must succeed + groups = m.groups() + self._release_clause = tuple(int(v) for v in groups[1].split('.')) + return result + + PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev']) + + @property + def is_prerelease(self): + return any(t[0] in self.PREREL_TAGS for t in self._parts if t) + + +def _match_prefix(x, y): + x = str(x) + y = str(y) + if x == y: + return True + if not x.startswith(y): + return False + n = len(y) + return x[n] == '.' + + +class NormalizedMatcher(Matcher): + version_class = NormalizedVersion + + # value is either a callable or the name of a method + _operators = { + '~=': '_match_compatible', + '<': '_match_lt', + '>': '_match_gt', + '<=': '_match_le', + '>=': '_match_ge', + '==': '_match_eq', + '===': '_match_arbitrary', + '!=': '_match_ne', + } + + def _adjust_local(self, version, constraint, prefix): + if prefix: + strip_local = '+' not in constraint and version._parts[-1] + else: + # both constraint and version are + # NormalizedVersion instances. + # If constraint does not have a local component, + # ensure the version doesn't, either. + strip_local = not constraint._parts[-1] and version._parts[-1] + if strip_local: + s = version._string.split('+', 1)[0] + version = self.version_class(s) + return version, constraint + + def _match_lt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version >= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_gt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version <= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_le(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version <= constraint + + def _match_ge(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version >= constraint + + def _match_eq(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version == constraint) + else: + result = _match_prefix(version, constraint) + return result + + def _match_arbitrary(self, version, constraint, prefix): + return str(version) == str(constraint) + + def _match_ne(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version != constraint) + else: + result = not _match_prefix(version, constraint) + return result + + def _match_compatible(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version == constraint: + return True + if version < constraint: + return False +# if not prefix: +# return True + release_clause = constraint._release_clause + if len(release_clause) > 1: + release_clause = release_clause[:-1] + pfx = '.'.join([str(i) for i in release_clause]) + return _match_prefix(version, pfx) + + +_REPLACEMENTS = ( + (re.compile('[.+-]$'), ''), # remove trailing puncts + (re.compile(r'^[.](\d)'), r'0.\1'), # .N -> 0.N at start + (re.compile('^[.-]'), ''), # remove leading puncts + (re.compile(r'^\((.*)\)$'), r'\1'), # remove parentheses + (re.compile(r'^v(ersion)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile(r'^r(ev)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\b(alfa|apha)\b'), 'alpha'), # misspelt alpha + (re.compile(r'\b(pre-alpha|prealpha)\b'), + 'pre.alpha'), # standardise + (re.compile(r'\(beta\)$'), 'beta'), # remove parentheses +) + +_SUFFIX_REPLACEMENTS = ( + (re.compile('^[:~._+-]+'), ''), # remove leading puncts + (re.compile('[,*")([\\]]'), ''), # remove unwanted chars + (re.compile('[~:+_ -]'), '.'), # replace illegal chars + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\.$'), ''), # trailing '.' +) + +_NUMERIC_PREFIX = re.compile(r'(\d+(\.\d+)*)') + + +def _suggest_semantic_version(s): + """ + Try to suggest a semantic form for a version for which + _suggest_normalized_version couldn't come up with anything. + """ + result = s.strip().lower() + for pat, repl in _REPLACEMENTS: + result = pat.sub(repl, result) + if not result: + result = '0.0.0' + + # Now look for numeric prefix, and separate it out from + # the rest. + # import pdb; pdb.set_trace() + m = _NUMERIC_PREFIX.match(result) + if not m: + prefix = '0.0.0' + suffix = result + else: + prefix = m.groups()[0].split('.') + prefix = [int(i) for i in prefix] + while len(prefix) < 3: + prefix.append(0) + if len(prefix) == 3: + suffix = result[m.end():] + else: + suffix = '.'.join([str(i) for i in prefix[3:]]) + result[m.end():] + prefix = prefix[:3] + prefix = '.'.join([str(i) for i in prefix]) + suffix = suffix.strip() + if suffix: + # import pdb; pdb.set_trace() + # massage the suffix. + for pat, repl in _SUFFIX_REPLACEMENTS: + suffix = pat.sub(repl, suffix) + + if not suffix: + result = prefix + else: + sep = '-' if 'dev' in suffix else '+' + result = prefix + sep + suffix + if not is_semver(result): + result = None + return result + + +def _suggest_normalized_version(s): + """Suggest a normalized version close to the given version string. + + If you have a version string that isn't rational (i.e. NormalizedVersion + doesn't like it) then you might be able to get an equivalent (or close) + rational version from this function. + + This does a number of simple normalizations to the given string, based + on observation of versions currently in use on PyPI. Given a dump of + those version during PyCon 2009, 4287 of them: + - 2312 (53.93%) match NormalizedVersion without change + with the automatic suggestion + - 3474 (81.04%) match when using this suggestion method + + @param s {str} An irrational version string. + @returns A rational version string, or None, if couldn't determine one. + """ + try: + _normalized_key(s) + return s # already rational + except UnsupportedVersionError: + pass + + rs = s.lower() + + # part of this could use maketrans + for orig, repl in (('-alpha', 'a'), ('-beta', 'b'), ('alpha', 'a'), + ('beta', 'b'), ('rc', 'c'), ('-final', ''), + ('-pre', 'c'), + ('-release', ''), ('.release', ''), ('-stable', ''), + ('+', '.'), ('_', '.'), (' ', ''), ('.final', ''), + ('final', '')): + rs = rs.replace(orig, repl) + + # if something ends with dev or pre, we add a 0 + rs = re.sub(r"pre$", r"pre0", rs) + rs = re.sub(r"dev$", r"dev0", rs) + + # if we have something like "b-2" or "a.2" at the end of the + # version, that is probably beta, alpha, etc + # let's remove the dash or dot + rs = re.sub(r"([abc]|rc)[\-\.](\d+)$", r"\1\2", rs) + + # 1.0-dev-r371 -> 1.0.dev371 + # 0.1-dev-r79 -> 0.1.dev79 + rs = re.sub(r"[\-\.](dev)[\-\.]?r?(\d+)$", r".\1\2", rs) + + # Clean: 2.0.a.3, 2.0.b1, 0.9.0~c1 + rs = re.sub(r"[.~]?([abc])\.?", r"\1", rs) + + # Clean: v0.3, v1.0 + if rs.startswith('v'): + rs = rs[1:] + + # Clean leading '0's on numbers. + # TODO: unintended side-effect on, e.g., "2003.05.09" + # PyPI stats: 77 (~2%) better + rs = re.sub(r"\b0+(\d+)(?!\d)", r"\1", rs) + + # Clean a/b/c with no version. E.g. "1.0a" -> "1.0a0". Setuptools infers + # zero. + # PyPI stats: 245 (7.56%) better + rs = re.sub(r"(\d+[abc])$", r"\g<1>0", rs) + + # the 'dev-rNNN' tag is a dev tag + rs = re.sub(r"\.?(dev-r|dev\.r)\.?(\d+)$", r".dev\2", rs) + + # clean the - when used as a pre delimiter + rs = re.sub(r"-(a|b|c)(\d+)$", r"\1\2", rs) + + # a terminal "dev" or "devel" can be changed into ".dev0" + rs = re.sub(r"[\.\-](dev|devel)$", r".dev0", rs) + + # a terminal "dev" can be changed into ".dev0" + rs = re.sub(r"(?![\.\-])dev$", r".dev0", rs) + + # a terminal "final" or "stable" can be removed + rs = re.sub(r"(final|stable)$", "", rs) + + # The 'r' and the '-' tags are post release tags + # 0.4a1.r10 -> 0.4a1.post10 + # 0.9.33-17222 -> 0.9.33.post17222 + # 0.9.33-r17222 -> 0.9.33.post17222 + rs = re.sub(r"\.?(r|-|-r)\.?(\d+)$", r".post\2", rs) + + # Clean 'r' instead of 'dev' usage: + # 0.9.33+r17222 -> 0.9.33.dev17222 + # 1.0dev123 -> 1.0.dev123 + # 1.0.git123 -> 1.0.dev123 + # 1.0.bzr123 -> 1.0.dev123 + # 0.1a0dev.123 -> 0.1a0.dev123 + # PyPI stats: ~150 (~4%) better + rs = re.sub(r"\.?(dev|git|bzr)\.?(\d+)$", r".dev\2", rs) + + # Clean '.pre' (normalized from '-pre' above) instead of 'c' usage: + # 0.2.pre1 -> 0.2c1 + # 0.2-c1 -> 0.2c1 + # 1.0preview123 -> 1.0c123 + # PyPI stats: ~21 (0.62%) better + rs = re.sub(r"\.?(pre|preview|-c)(\d+)$", r"c\g<2>", rs) + + # Tcl/Tk uses "px" for their post release markers + rs = re.sub(r"p(\d+)$", r".post\1", rs) + + try: + _normalized_key(rs) + except UnsupportedVersionError: + rs = None + return rs + +# +# Legacy version processing (distribute-compatible) +# + + +_VERSION_PART = re.compile(r'([a-z]+|\d+|[\.-])', re.I) +_VERSION_REPLACE = { + 'pre': 'c', + 'preview': 'c', + '-': 'final-', + 'rc': 'c', + 'dev': '@', + '': None, + '.': None, +} + + +def _legacy_key(s): + def get_parts(s): + result = [] + for p in _VERSION_PART.split(s.lower()): + p = _VERSION_REPLACE.get(p, p) + if p: + if '0' <= p[:1] <= '9': + p = p.zfill(8) + else: + p = '*' + p + result.append(p) + result.append('*final') + return result + + result = [] + for p in get_parts(s): + if p.startswith('*'): + if p < '*final': + while result and result[-1] == '*final-': + result.pop() + while result and result[-1] == '00000000': + result.pop() + result.append(p) + return tuple(result) + + +class LegacyVersion(Version): + def parse(self, s): + return _legacy_key(s) + + @property + def is_prerelease(self): + result = False + for x in self._parts: + if (isinstance(x, string_types) and x.startswith('*') and + x < '*final'): + result = True + break + return result + + +class LegacyMatcher(Matcher): + version_class = LegacyVersion + + _operators = dict(Matcher._operators) + _operators['~='] = '_match_compatible' + + numeric_re = re.compile(r'^(\d+(\.\d+)*)') + + def _match_compatible(self, version, constraint, prefix): + if version < constraint: + return False + m = self.numeric_re.match(str(constraint)) + if not m: + logger.warning('Cannot compute compatible match for version %s ' + ' and constraint %s', version, constraint) + return True + s = m.groups()[0] + if '.' in s: + s = s.rsplit('.', 1)[0] + return _match_prefix(version, s) + +# +# Semantic versioning +# + + +_SEMVER_RE = re.compile(r'^(\d+)\.(\d+)\.(\d+)' + r'(-[a-z0-9]+(\.[a-z0-9-]+)*)?' + r'(\+[a-z0-9]+(\.[a-z0-9-]+)*)?$', re.I) + + +def is_semver(s): + return _SEMVER_RE.match(s) + + +def _semantic_key(s): + def make_tuple(s, absent): + if s is None: + result = (absent,) + else: + parts = s[1:].split('.') + # We can't compare ints and strings on Python 3, so fudge it + # by zero-filling numeric values so simulate a numeric comparison + result = tuple([p.zfill(8) if p.isdigit() else p for p in parts]) + return result + + m = is_semver(s) + if not m: + raise UnsupportedVersionError(s) + groups = m.groups() + major, minor, patch = [int(i) for i in groups[:3]] + # choose the '|' and '*' so that versions sort correctly + pre, build = make_tuple(groups[3], '|'), make_tuple(groups[5], '*') + return (major, minor, patch), pre, build + + +class SemanticVersion(Version): + def parse(self, s): + return _semantic_key(s) + + @property + def is_prerelease(self): + return self._parts[1][0] != '|' + + +class SemanticMatcher(Matcher): + version_class = SemanticVersion + + +class VersionScheme(object): + def __init__(self, key, matcher, suggester=None): + self.key = key + self.matcher = matcher + self.suggester = suggester + + def is_valid_version(self, s): + try: + self.matcher.version_class(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_matcher(self, s): + try: + self.matcher(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_constraint_list(self, s): + """ + Used for processing some metadata fields + """ + # See issue #140. Be tolerant of a single trailing comma. + if s.endswith(','): + s = s[:-1] + return self.is_valid_matcher('dummy_name (%s)' % s) + + def suggest(self, s): + if self.suggester is None: + result = None + else: + result = self.suggester(s) + return result + + +_SCHEMES = { + 'normalized': VersionScheme(_normalized_key, NormalizedMatcher, + _suggest_normalized_version), + 'legacy': VersionScheme(_legacy_key, LegacyMatcher, lambda self, s: s), + 'semantic': VersionScheme(_semantic_key, SemanticMatcher, + _suggest_semantic_version), +} + +_SCHEMES['default'] = _SCHEMES['normalized'] + + +def get_scheme(name): + if name not in _SCHEMES: + raise ValueError('unknown scheme name: %r' % name) + return _SCHEMES[name] diff --git a/env/Lib/site-packages/pip/_vendor/distlib/w32.exe b/env/Lib/site-packages/pip/_vendor/distlib/w32.exe new file mode 100644 index 0000000000000000000000000000000000000000..4ee2d3a31b59e8b50f433ecdf0be9e496e8cc3b8 GIT binary patch literal 91648 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe b/env/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe new file mode 100644 index 0000000000000000000000000000000000000000..951d5817c9e6d81c94a173a0d9fead7f1f143331 GIT binary patch literal 168448 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/w64.exe b/env/Lib/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..5763076d2878093971a0ef9870e1cde7f556b18b GIT binary patch literal 101888 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

6={45a2G7_U}WO0N_ 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 TBhc+ljnm2P(su+p>BPSQ`Gp-C literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b07e7ce2afde9486dae9224c756b99eb594549e9 GIT binary patch literal 16211 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 bZtBib4Nr|`&4}jzct=c{=5HtriD3U9NHvHN literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..79b04ced925ee4af787ec82bde196257124a93ef GIT binary patch literal 4334 zcmc&%TTC3+89sB_Wv?tZV=fLJgA=?qhPZK~y0v2=46$RISOK;2hG;yybCw;Lo!Oq5 zHC}`jtFkJ{MHs2olDq^}sub6K$Wx#C5~)w^i>av~BS&?WzT}MtSFQZi|39<47_?TU zzH|`h_W$QQ|Ly$$*+0eO5dvTTFF&0ALlYt2;H3J={y^B7fEkw7gBi#j*JLx052k|ohEzj7lnM!i23Zhz0%kZLNks%Ak~fJSyi4?k2cnOjik8G= z=v$m51uv>umhEb;VO!2P%v;8_Jk=*@zF;$rmBtK{CM7REdHvd`I&yJz7cadPt7JJcxv3eEWE_^sr3!p=Ah%7l`Xpc7C-NJ(L``=^I>@h&K( zM|27LfF9Ll=!1Gp4?y3b$Mr_N;cg%m(i3_JR>GxVvdL>j8PZy27Uld2(+UO3v<5gc zqQEzi2dXmXFDn|eia?w+uJ{!~qNi)S%2Pp`2U-Uz^JI$s89* za~!4U!2UeVrzvxM2{c8wi{LUJ!pYbGeoR%9iV6B6UV+i9aZ7PPZ-+|*!GXtWnT(-> z%%D$6adMh&&w(v=<*Xe}6RG>YQ_IvNq|;8x?w7r1D-hKc3^Hgu78Q!{ud4Jyj8 zqnNfe%@5ZcuJ7L6j-ne3yl1l#?$-@x_GDT^`yX@cJavscXl=Ot0L?+b0Kf_?nOUlz zym7>kc%w3m8)0noV`_@Kq#mJ%&0fWPVg&d~{c7wBX#&ixu z9!z*VSym|b8l>|B6BnYcogq6@nC zTdA5K7KmD-EC?{GPkl=D58=nto^P>op-$5Rupy*hP`(Gk1I9D4G5 zQ`EXSb;U?eIfhG5f_-MSY3fWBjKYw5lUlmXhPaLKW-{9xLKjr>#$W+bovIp^;i~HV zp*m^}R;foo5=VjN4tW|R?Z-Y3e4%d~_|c;LQDm#F9lG#VSMQ?yabgE}NTz02nACi8 z7A9q~KxS$_KwkgTg$I?@+oD_Z19(NK`fh?G#c|dM>`BpUQq^e+slAd)RMl&!%##v> z(nCDif@IH{VOX^yYsK|wZ6~OFxW392C{;a%+k2t8L$+H;W6Nf|cRk+wu3f@D!DjryO3_=_Y%+2OC4p+@P%9zc(pkE4-A~!I5 z2^bxeT~U0?HbSg8YPO*IeDl5ajr%;$X~e(>0oYfR!_8Z*2g_$x&XmutoLxKpu(khT ztpDGCPrURU5yH)1#hSJy=$~x|1HjpR__H&goZ0L?vEF@Racrx#bMb18bqiQSr0KwR z6!{&L^k)aV$fw~~q+biKNWVEaERrw9@NlE_Wn6%EkJ}o6o2QbWgEM)!!ovQK{Q{g> z$8j@({hWk6s4VHiEW{I&bn&)eWnQo!Pv7@J3aecLfw@Z)>A zaJDO-Tf>>bFxdA&8m(N++Es-VTJJK$rL9~9e8@p!ts%WYD!iuqzN%CL;mMexvH2at zgbXDcDpfMf61a*wd9q7Q6O$;N^&);vyJ^rlPtNDHf)~WBXW3qKcw}UBVnTgqbohc7 z;DK6+XDYmqIzrH@7Y*-R- z?^nu$q~%>t#`oNw^1udwXTGDJyYWa3sLm)f;OzFUvaw>6trcr+;!%5YQT{5L@ICa_ z(p#IcL+i0atCJhCUWkg#XwQ1IXCtaWVp_huboryJPZF(*QNLt7pG9h3`Xik2KYI!C z1i97xO*!yt4~s;;tVVj*l=pz(#mUySd*n=Zj`oA(BkaoeKrDGR*E?BW)g<;l1T zWwsMGd6MHY_I<>_nhl8v$DW+FZL>0AuOsyYQf2lkbn_AT_eWx zO%Z(G;Y$c!ND)=d+j`N&aZFWz3h(y{r9oA7JEN+s4NvRBX4eaNBe>!3`}x=R1Xc=$ z4HgRL95i>yKg6a$X!~d&(6`mnvn^qN{37q4gyTB_nC~=30!MZ_ngR!Qj&=sRpS~Ur zv^{N)2HN;l;CRUx3Ysl~wLnmY?q^4#@k01h3Dda$3Jue-=9HTjC9N0oJfqIr!9r_k|$*Gem^GZ%FiO(*IX7v`&Wp UCN+I6ANyC(5QMhx2(}#QKhCl7u>b%7 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d783e30939d3228719d798077dc9bb4417803879 GIT binary patch literal 6681 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 J2QRjc{|60}`fmUL literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3251e01b333ed9047f8735346e2ddb2e6cfdd772 GIT binary patch literal 5248 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 T=equB>@zTZ%r}U3^ep}Z!uElB literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0be4ace9ca465ea4ecd1ea7f4ff9b5a6fad0a650 GIT binary patch literal 1661 zcmaJ>TW=dh6rS;3yk2|bOH7(3p>>l$SfF-A1B8eoiivtju_~oJurabW_K+C%VrJHb zSR2VmNPy@oO2jV!rBD0~-cTNvl`OTYD#Y7LDKB|qX6cBGkJ{Q4>SV8*x+8 zBnS|PFHo*vBurV8L!U@}Ni7-TxREjyO$o7NOqgjc9pZ$MF|%40g2dRbks8dZ^IlV!cW zgUYt$VB5If&|40|)SP&~S$9GgRV0i)ZzJLm=6FvhC~~AnCmZ2Jh52uyHf|E9S*H`^ z4TPJz(d-~xsZ0G7hmv8Ma(MhB1^d8-UD<(=|8M{-=)yhdieExPQ|-he|DG5FuINHH z=5j9Y3U2%%JQVxhJ;?>1(&GMeG-9rFIEVnj860k$vjJ4Tq6&Vp&eBvvj=oKNnGBEQ zCw8K<`k8t^i!>3nx}g)|XTw?gmVs&}a(3(n>BM&&r?pxtbtDD|MJk8mbgP){-WN=} zZ8>Vf=Lw<#gfIY}VE!}{878ufsp$P;^_RjqW{VGOBtf-8G)_KTTdm$fI<}hDc6Hj|w^|4n zTf2U$JkmP&JY6zR|74SjE(r2q?$W`v2e%%q|Ae}0UjEW=`IVy=R=OYjJ~8V_ikH9W zO+N4CX1(*OH}lFfC7u?$H-Zch65rhZ>h`z02TMo%yvIwS);W0dh+lY=On29hX?UQ< zEB7jFs5#6QJ;_8ZTHK&{qpgjfqvlR#*sTS(P_Zo(rqbuPY}*JE+R2`_XGCE+?&Qb% zIC8Pfcjlbk7TO#=JgxZ05oL-|3jd-EuGWyo>eZP#y^5Q}8OHEMjGQ*M@GK>%lfGQ5 zebS}|RI6e3NckcSPiu*Js$kaXet{OOI4D?gv|zA~;!}R5$CrEj^&WpMkio?TZ+gyKe93$9W$*R3 zyf;?8E6YLl9L#v~Ou*6aqvUKL&~G4u+*A-}NCMgUAi None: + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session() -> requests.Session: + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller # type: ignore[attr-defined] + return sess + + +def get_args() -> Namespace: + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main() -> None: + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + cache_controller: CacheController = ( + sess.cache_controller # type: ignore[attr-defined] + ) + cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 00000000..fbb4ecc8 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,161 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import functools +import types +import zlib +from typing import TYPE_CHECKING, Any, Collection, Mapping + +from pip._vendor.requests.adapters import HTTPAdapter + +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import PERMANENT_REDIRECT_STATUSES, CacheController +from pip._vendor.cachecontrol.filewrapper import CallbackFileWrapper + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest, Response + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "PATCH", "DELETE"} + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + controller_class: type[CacheController] | None = None, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + cacheable_methods: Collection[str] | None = None, + *args: Any, + **kw: Any, + ) -> None: + super().__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: None | float | tuple[float, float] | tuple[float, None] = None, + verify: bool | str = True, + cert: (None | bytes | str | tuple[bytes | str, bytes | str]) = None, + proxies: Mapping[str, str] | None = None, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super().send(request, stream, timeout, verify, cert, proxies) + + return resp + + def build_response( + self, + request: PreparedRequest, + response: HTTPResponse, + from_cache: bool = False, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( # type: ignore[assignment] + response._fp, # type: ignore[arg-type] + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length + + def _update_chunk_length(self: HTTPResponse) -> None: + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() # type: ignore[union-attr] + + response._update_chunk_length = types.MethodType( # type: ignore[method-assign] + _update_chunk_length, response + ) + + resp: Response = super().build_response(request, response) # type: ignore[no-untyped-call] + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + assert request.url is not None + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache # type: ignore[attr-defined] + + return resp + + def close(self) -> None: + self.cache.close() + super().close() # type: ignore[no-untyped-call] diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 00000000..3293b005 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,74 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from __future__ import annotations + +from threading import Lock +from typing import IO, TYPE_CHECKING, MutableMapping + +if TYPE_CHECKING: + from datetime import datetime + + +class BaseCache: + def get(self, key: str) -> bytes | None: + raise NotImplementedError() + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + raise NotImplementedError() + + def delete(self, key: str) -> None: + raise NotImplementedError() + + def close(self) -> None: + pass + + +class DictCache(BaseCache): + def __init__(self, init_dict: MutableMapping[str, bytes] | None = None) -> None: + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key: str) -> bytes | None: + return self.data.get(key, None) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + with self.lock: + self.data.update({key: value}) + + def delete(self, key: str) -> None: + with self.lock: + if key in self.data: + self.data.pop(key) + + +class SeparateBodyBaseCache(BaseCache): + """ + In this variant, the body is not stored mixed in with the metadata, but is + passed in (as a bytes-like object) in a separate call to ``set_body()``. + + That is, the expected interaction pattern is:: + + cache.set(key, serialized_metadata) + cache.set_body(key) + + Similarly, the body should be loaded separately via ``get_body()``. + """ + + def set_body(self, key: str, body: bytes) -> None: + raise NotImplementedError() + + def get_body(self, key: str) -> IO[bytes] | None: + """ + Return the body as file-like object. + """ + raise NotImplementedError() diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 00000000..24ff469f --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,8 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from pip._vendor.cachecontrol.caches.file_cache import FileCache, SeparateBodyFileCache +from pip._vendor.cachecontrol.caches.redis_cache import RedisCache + +__all__ = ["FileCache", "SeparateBodyFileCache", "RedisCache"] diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64f51163dd10e88d81b01e17dc8e134ffbdc0987 GIT binary patch literal 422 zcmaixKT88K7{>G7U9BE=5@4nXeipyM zfs0OVLI+cXb|AqEm<5JTp~ z4p{FPuQ2ytWV1&wzb3!HlGL`dGF$qlbJ2fU<;R=iuV@y~JqwSUf;(DOrq zt6URQo|T4?(_p3EDMcBQ5zkqn!o=Q{6nUizxiC7sHViV~_)XWl|D}|rE@Ku|HwmFq z67qzm#-iEf@geSWs&bL1cyO?X&lK+!L#26pAM<>K`{D{~QSo+3lUtf{jSVweP8$84 xbYXNvh{#1nNLY?%t4CSEhLU&Gx}lkOM|#7^hYJ9oK7tE)LETrsGifUOJzr98dT0Ou literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f330a818c926a54cf2b78f871d9f5b66b0b7faf3 GIT binary patch literal 7755 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 t9-rbyIIitWf^=Quya{eM9+X^sE@ literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f7a5d8983f66ec6c4e21406a73b7bbec41e44eb GIT binary patch literal 2720 zcmbVO&2JM|5P$pWby$-?LK40=fCZ+I&=0kNA}TdRAu1TultbOn?c#k2HtSvY?HaJ_ zpd4}_YO9n=Roqjlgw&$+&}09HUWn3^Xay2g)kAMV236wJnYT9ifF9_qH1BKPo0;F6 znYX_t5-kL1|2LnH=M_T!#6go_j3m@Q20lw{Vhau_2pK`ZzUYVrF(VeFjKs&1BNvp6 z!uztL7Gjy0K&Zl0kX0P55YNN~B9b9ut5d{|(b$~Ck0+UyvX+Yfjf0dBZm?X}3#=gL zxqeCvHQNekkSowoLtgP*3POnwK0G&Q4xAbscyBm81QYRhEuRip*-N;pyie_%pN&qB zcte#?Ps4bYP?8aBk`Zmq7N+EkWXEk0S~*VamN;4c*&A$m3f!`FTLB5xPJsDxCI)Q` zTCFUlHij)+Ay=OjSEO^QK>+x#_H05(hh z&X=*fD$X@7Ss-N+G_r)iIf2?#(Uf4H1*nZvUTgMN+JI*tj`N7YI%*;`Ay=h50bUO*_7f-FNb!x*DQ$I8-B zfi3h}DCOKBOaxF<9Mi{qu>F+E!;7Jdp>oA?N;HhoYsDO+ei(x@O*k!7Z0ZD-k9TTt zibAj(#%n?l)SzO22G}Hdq>{F-CB1ECczSr|%=DSs-dbr-)nd21e@h&^-??kn zx#`^Q|Ka%e#}_(}+!$JF?VPzjef@50a%o%7cYWXX{oGOOTiEvISFxpz?X~gwj^vHO z=80#g&(;QRx8FK{FWEnz>|aP8Tj+WFm-CDIz{7@4E^({t$K;}Zga`kN^Ys{5`~UJ4 z?{`hcssI!~&3Gb4wJU-uiBN4?m93E=PWvbf39IQd@#*+It$SYUuC*^}J0p`Dr2%9J z!JFpkdJQ@+V{$V@Pm&8eA^f5GzOXnwOJGzM(MoX=$QQe1QWjETW%v|zij)~+9y78I z)MY5khUGX$aETgNsEnLzSOz>;)Z3G_p?}2mZ_=;d} z`VKtcJhObfKZ6GW`T?@*{D7HW5b+WFN%BzBxrHg2!&1??As<~V2h_h1s*DCD=7w?_ zAAdQ@TFDO>I|REcIu|pl1};Z&sc{*G8khkrRJaW5LHR9E4?w#4U(wu%XR*V;8XBVA zE3+ck7D>eM;dHG6HO;WaGz*?xaZ+{ld8~^{BGQ2;r&Aly+OZO#3Dz%D!V`@Md;d|1aNq$k{vvPuA+ IO[bytes]: + # We only want to write to this file, so open it in write only mode + flags = os.O_WRONLY + + # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only + # will open *new* files. + # We specify this because we want to ensure that the mode we pass is the + # mode of the file. + flags |= os.O_CREAT | os.O_EXCL + + # Do not follow symlinks to prevent someone from making a symlink that + # we follow and insecurely open a cache file. + if hasattr(os, "O_NOFOLLOW"): + flags |= os.O_NOFOLLOW + + # On Windows we'll mark this file as binary + if hasattr(os, "O_BINARY"): + flags |= os.O_BINARY + + # Before we open our file, we want to delete any existing file that is + # there + try: + os.remove(filename) + except OSError: + # The file must not exist already, so we can just skip ahead to opening + pass + + # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a + # race condition happens between the os.remove and this line, that an + # error will be raised. Because we utilize a lockfile this should only + # happen if someone is attempting to attack us. + fd = os.open(filename, flags, fmode) + try: + return os.fdopen(fd, "wb") + + except: + # An error occurred wrapping our FD in a file object + os.close(fd) + raise + + +class _FileCacheMixin: + """Shared implementation for both FileCache variants.""" + + def __init__( + self, + directory: str | Path, + forever: bool = False, + filemode: int = 0o0600, + dirmode: int = 0o0700, + lock_class: type[BaseFileLock] | None = None, + ) -> None: + try: + if lock_class is None: + from filelock import FileLock + + lock_class = FileLock + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + filelock installed. You can install it via pip: + pip install cachecontrol[filecache] + """ + ) + raise ImportError(notice) + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x: str) -> str: + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name: str) -> str: + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> bytes | None: + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + name = self._fn(key) + self._write(name, value) + + def _write(self, path: str, data: bytes) -> None: + """ + Safely write the data to the given path. + """ + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(path), self.dirmode) + except OSError: + pass + + with self.lock_class(path + ".lock"): + # Write our actual file + with _secure_open_write(path, self.filemode) as fh: + fh.write(data) + + def _delete(self, key: str, suffix: str) -> None: + name = self._fn(key) + suffix + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +class FileCache(_FileCacheMixin, BaseCache): + """ + Traditional FileCache: body is stored in memory, so not suitable for large + downloads. + """ + + def delete(self, key: str) -> None: + self._delete(key, "") + + +class SeparateBodyFileCache(_FileCacheMixin, SeparateBodyBaseCache): + """ + Memory-efficient FileCache: body is stored in a separate file, reducing + peak memory usage. + """ + + def get_body(self, key: str) -> IO[bytes] | None: + name = self._fn(key) + ".body" + try: + return open(name, "rb") + except FileNotFoundError: + return None + + def set_body(self, key: str, body: bytes) -> None: + name = self._fn(key) + ".body" + self._write(name, body) + + def delete(self, key: str) -> None: + self._delete(key, "") + self._delete(key, ".body") + + +def url_to_file_path(url: str, filecache: FileCache) -> str: + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 00000000..f4f68c47 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,48 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + + +from datetime import datetime, timezone +from typing import TYPE_CHECKING + +from pip._vendor.cachecontrol.cache import BaseCache + +if TYPE_CHECKING: + from redis import Redis + + +class RedisCache(BaseCache): + def __init__(self, conn: Redis[bytes]) -> None: + self.conn = conn + + def get(self, key: str) -> bytes | None: + return self.conn.get(key) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + if not expires: + self.conn.set(key, value) + elif isinstance(expires, datetime): + now_utc = datetime.now(timezone.utc) + if expires.tzinfo is None: + now_utc = now_utc.replace(tzinfo=None) + delta = expires - now_utc + self.conn.setex(key, int(delta.total_seconds()), value) + else: + self.conn.setex(key, expires, value) + + def delete(self, key: str) -> None: + self.conn.delete(key) + + def clear(self) -> None: + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self) -> None: + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 00000000..d7dd86e5 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,499 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The httplib2 algorithms ported for use with requests. +""" +from __future__ import annotations + +import calendar +import logging +import re +import time +from email.utils import parsedate_tz +from typing import TYPE_CHECKING, Collection, Mapping + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from pip._vendor.cachecontrol.cache import DictCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.serialize import Serializer + +if TYPE_CHECKING: + from typing import Literal + + from pip._vendor.requests import PreparedRequest + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + +PERMANENT_REDIRECT_STATUSES = (301, 308) + + +def parse_uri(uri: str) -> tuple[str, str, str, str, str]: + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + match = URI.match(uri) + assert match is not None + groups = match.groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController: + """An interface to see if request should cached or not.""" + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + status_codes: Collection[int] | None = None, + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) + + @classmethod + def _urlnorm(cls, uri: str) -> str: + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri: str) -> str: + return cls._urlnorm(uri) + + def parse_cache_control(self, headers: Mapping[str, str]) -> dict[str, int | None]: + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval: dict[str, int | None] = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def _load_from_cache(self, request: PreparedRequest) -> HTTPResponse | None: + """ + Load a cached response, or return None if it's not available. + """ + # We do not support caching of partial content: so if the request contains a + # Range header then we don't want to load anything from the cache. + if "Range" in request.headers: + return None + + cache_url = request.url + assert cache_url is not None + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return None + + if isinstance(self.cache, SeparateBodyBaseCache): + body_file = self.cache.get_body(cache_url) + else: + body_file = None + + result = self.serializer.loads(request, cache_data, body_file) + if result is None: + logger.warning("Cache entry deserialization failed, entry ignored") + return result + + def cached_request(self, request: PreparedRequest) -> HTTPResponse | Literal[False]: + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Check whether we can load the response from the cache: + resp = self._load_from_cache(request) + if not resp: + return False + + # If we have a cached permanent redirect, return it immediately. We + # don't need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if int(resp.status) in PERMANENT_REDIRECT_STATUSES: + msg = ( + "Returning cached permanent redirect response " + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + max_age = resp_cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires[:6]) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + max_age = cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + min_fresh = cc.get("min-fresh") + if min_fresh is not None: + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request: PreparedRequest) -> dict[str, str]: + resp = self._load_from_cache(request) + new_headers = {} + + if resp: + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def _cache_set( + self, + cache_url: str, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + expires_time: int | None = None, + ) -> None: + """ + Store the data in the cache. + """ + if isinstance(self.cache, SeparateBodyBaseCache): + # We pass in the body separately; just put a placeholder empty + # string in the metadata. + self.cache.set( + cache_url, + self.serializer.dumps(request, response, b""), + expires=expires_time, + ) + # body is None can happen when, for example, we're only updating + # headers, as is the case in update_cached_response(). + if body is not None: + self.cache.set_body(cache_url, body) + else: + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + def cache_response( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + status_codes: Collection[int] | None = None, + ) -> None: + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + else: + date = 0 + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + expires_time = 0 + if response_headers.get("expires"): + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug(f"etag object cached for {expires_time} seconds") + logger.debug("Caching due to etag") + self._cache_set(cache_url, request, response, body, expires_time) + + # Add to the cache any permanent redirects. We do this before looking + # that the Date headers. + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + logger.debug("Caching permanent redirect") + self._cache_set(cache_url, request, response, b"") + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + # cache when there is a max-age > 0 + max_age = cc.get("max-age") + if max_age is not None and max_age > 0: + logger.debug("Caching b/c date exists and max-age > 0") + expires_time = max_age + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {} seconds".format( + expires_time + ) + ) + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + def update_cached_response( + self, request: PreparedRequest, response: HTTPResponse + ) -> HTTPResponse: + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + cached_response = self._load_from_cache(request) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + { + k: v + for k, v in response.headers.items() + if k.lower() not in excluded_headers + } + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self._cache_set(cache_url, request, cached_response) + + return cached_response diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 00000000..25143902 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,119 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import mmap +from tempfile import NamedTemporaryFile +from typing import TYPE_CHECKING, Any, Callable + +if TYPE_CHECKING: + from http.client import HTTPResponse + + +class CallbackFileWrapper: + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + + The data is stored in a temporary file until it is all available. As long + as the temporary files directory is disk-based (sometimes it's a + memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory + pressure is high. For small files the disk usually won't be used at all, + it'll all be in the filesystem memory cache, so there should be no + performance impact. + """ + + def __init__( + self, fp: HTTPResponse, callback: Callable[[bytes], None] | None + ) -> None: + self.__buf = NamedTemporaryFile("rb+", delete=True) + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name: str) -> Any: + # The vaguaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop thigns from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self) -> bool: + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + closed: bool = self.__fp.closed + return closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self) -> None: + if self.__callback: + if self.__buf.tell() == 0: + # Empty file: + result = b"" + else: + # Return the data without actually loading it into memory, + # relying on Python's buffer API and mmap(). mmap() just gives + # a view directly into the filesystem's memory cache, so it + # doesn't result in duplicate memory use. + self.__buf.seek(0, 0) + result = memoryview( + mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) + ) + self.__callback(result) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + # Closing the temporary file releases memory and frees disk space. + # Important when caching big files. + self.__buf.close() + + def read(self, amt: int | None = None) -> bytes: + data: bytes = self.__fp.read(amt) + if data: + # We may be dealing with b'', a sign that things are over: + # it's passed e.g. after we've already closed self.__buf. + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt: int) -> bytes: + data: bytes = self.__fp._safe_read(amt) # type: ignore[attr-defined] + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 00000000..f6e5634e --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,154 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import calendar +import time +from datetime import datetime, timedelta, timezone +from email.utils import formatdate, parsedate, parsedate_tz +from typing import TYPE_CHECKING, Any, Mapping + +if TYPE_CHECKING: + from pip._vendor.urllib3 import HTTPResponse + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta: timedelta, date: datetime | None = None) -> datetime: + date = date or datetime.now(timezone.utc) + return date + delta + + +def datetime_to_header(dt: datetime) -> str: + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic: + def warning(self, response: HTTPResponse) -> str | None: + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response: HTTPResponse) -> HTTPResponse: + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6], tzinfo=timezone.utc)) # type: ignore[index,misc] + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw: Any) -> None: + self.delta = timedelta(**kw) + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response: HTTPResponse) -> str | None: + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + + cacheable_by_default_statuses = { + 200, + 203, + 204, + 206, + 300, + 301, + 404, + 405, + 410, + 414, + 501, + } + + def update_headers(self, resp: HTTPResponse) -> dict[str, str]: + headers: Mapping[str, str] = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + last_modified = parsedate(headers["last-modified"]) + if last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp: HTTPResponse) -> str | None: + return None diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/py.typed b/env/Lib/site-packages/pip/_vendor/cachecontrol/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 00000000..a49487a1 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,146 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import io +from typing import IO, TYPE_CHECKING, Any, Mapping, cast + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3 import HTTPResponse + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest + + +class Serializer: + serde_version = "4" + + def dumps( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + ) -> bytes: + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if body is None: + # When a body isn't passed in, we'll read the response. We + # also update the response with a new file handler to be + # sure it acts as though it was never read. + body = response.read(decode_content=False) + response._fp = io.BytesIO(body) # type: ignore[assignment] + response.length_remaining = len(body) + + data = { + "response": { + "body": body, # Empty bytestring if body is stored separately + "headers": {str(k): str(v) for k, v in response.headers.items()}, + "status": response.status, + "version": response.version, + "reason": str(response.reason), + "decode_content": response.decode_content, + } + } + + # Construct our vary headers + data["vary"] = {} + if "vary" in response_headers: + varied_headers = response_headers["vary"].split(",") + for header in varied_headers: + header = str(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = str(header_value) + data["vary"][header] = header_value + + return b",".join([f"cc={self.serde_version}".encode(), self.serialize(data)]) + + def serialize(self, data: dict[str, Any]) -> bytes: + return cast(bytes, msgpack.dumps(data, use_bin_type=True)) + + def loads( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # Short circuit if we've been given an empty set of data + if not data: + return None + + # Previous versions of this library supported other serialization + # formats, but these have all been removed. + if not data.startswith(f"cc={self.serde_version},".encode()): + return None + + data = data[5:] + return self._loads_v4(request, data, body_file) + + def prepare_response( + self, + request: PreparedRequest, + cached: Mapping[str, Any], + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return None + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return None + + body_raw = cached["response"].pop("body") + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + data=cached["response"]["headers"] + ) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body: IO[bytes] + if body_file is None: + body = io.BytesIO(body_raw) + else: + body = body_file + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + # Discard any `strict` parameter serialized by older version of cachecontrol. + cached["response"].pop("strict", None) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v4( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return None + + return self.prepare_response(request, cached, body_file) diff --git a/env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py b/env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 00000000..f618bc36 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,43 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +from typing import TYPE_CHECKING, Collection + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache + +if TYPE_CHECKING: + from pip._vendor import requests + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.controller import CacheController + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +def CacheControl( + sess: requests.Session, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + controller_class: type[CacheController] | None = None, + adapter_class: type[CacheControlAdapter] | None = None, + cacheable_methods: Collection[str] | None = None, +) -> requests.Session: + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/env/Lib/site-packages/pip/_vendor/certifi/__init__.py b/env/Lib/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 00000000..d321f1bc --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2024.07.04" diff --git a/env/Lib/site-packages/pip/_vendor/certifi/__main__.py b/env/Lib/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 00000000..00376349 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from pip._vendor.certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4a93a1edffd164bac7686020e529911861d1bdd GIT binary patch literal 305 zcmX@j%ge<81nN_})8l~jV-N=hn4pZ$3P8qmh7^Vr#vF!R#wf;IrYI&xh7_h0=5(eg z<`kAFmP%GlwwH`RWtvR4IFj@8N>cMmif^%&XQURT7BK_Gi&%g}6_=5Lk%^vxxt@WE zpC;=qmgIb7>09ja@rgM(@$t8~#dZE7YPf?x-+g5vmd;>X=(9LgidL6}ajbNeSnaA9DTtz;RTa(RsDxde>b=^GuMkm*M)Xg{NIhpT5_$8L zI*S*5ENb<%8DAlo6Ao;#l`3JL6aiq`qpy_bVqT+ z9mjPqXeTdHpnd@Z+QQrj!h)qq%i&f4Q5HZ>c|BuU+ux)KNueE5DA+Rw@@*hZ^SS#F z4Pr53LuLavrd7Z%1%&vb$yDRcl$H0KYtvKDfF;F8bSkZ$J$kt0tiB*fu*CP<+4h;W9H(T^r}yBB zm>|C{e7&-6`t82a!HX|Nu(&+N-aXRYtxqK#8F$jKQ0`@m4PslU@1mTuvu)lBYA0x z%g(MX%T)>;g2F}*R*|;WAt-$4#c&Qj_Sj>A_CSUSXlz`-Km!E6(V&3>I`zHfE=4Ko zp?$=>H#GmiDKP|Hffg}D7F`yMFnAd7`wH}9 z>%xEW7wP$ng1>lSa8)g+-|{!m=P%av=k0f>Fyz_c!Z6r)Wn?u`NKnEOY`A=Kch^A= z_jU*#3ZpP1Y7F{MsR)S>W6V(5s4>J+#xT4afre*^8i|kPg6f|o*|(3;?mn{VyDVB_ z+%cEUTx~u2>z+iTOE*kAvuYW)DlEg9bBkB)jB|r!%&P6^m5T0|Ry9+xO5KjNoGIz( zDOY2w8H;C3$Ig_js>7;|or}K2Q_Q)cuA@?LCbTj%5nAUgsE5P>-IX$q?h^yTZjdMb z8%owmmd<4bcR;&z@zUk1OWLKSpSy~tu{)-tX^%+<*YCV{`G>_k(|Ogbt`ryFezUm1 z*(K{1x7qaBBCFmm=FJa_w&}3xnqIo8uQ0n{EQFKnUcjBpyaBa_wI4E zl5>Y6XR+ByP@Ckrq_(7VLrQNax1C2zUrMJqvN0>X#C^X+9>bQyx~(mn73RvQ?GlXk zq=(5rV5lFH&FfAN6$fW|V$dg$5-8a8S> z8q6vW1-)JCj0F8)1?`LIB6%#%?IZx(oR4kJ$95;W%bsl1jRoOcxVUtMW#R5r{U>jBA=3(j5$qt8lhr+A!uth9f3k1b75j$!j+lXB=~B6q=m} zwMkwNkyyGuF!4G?#wY)Lynga0&B+U`$=Sx_?B8O|$@iOwuibn1`S_7ff7P0pX-v#C zC%)et|G~Zd^VrCP`TO&q&VLb``dS^YE92f@?FlD_3|r?KC1|Dm($kRaTgz^(e@ZK|F@W_I2gDet04(2iC7?k}R&EOcStI#^gCJcVMekk`e z_Sdy9)cLwH-wiW$<@c*_3EUm9?A!t*W!}8W+^}ClF$ry`v5?@nAvXlsXmPvLiyRDw zpm`j)1D*aY?=m2W<%aMX4Vdsf@{zP59h4Kn?2_PL6h3z-9Qr7Ei`aBcpyWEC@LMN$ z#Oq{@W`#Na9r*vO=t@?NRlO*=5~fI2=2>{dPoct7@YA4N$?u$X;20Sk`Tg-vPCUBuWqkT+@>yc+;rZX4|Kvyi7HMSS6#>pz*^=1<07Q>oL6YFvMX3N zp9J@A*f4ojUuAgx;*AFNSi*9hr7m5zvE=zkVd3>au0Y2|fPrDL!3VSVXT3^#r5QVZ zkAAHVKUllJ_F&`w#`eYSjix$PSEjyQTK`wp^Y7xn@4XQ`x_j!E`0@lQj7L`B$WHja zxGUdsmZ#6TA-HhNl9L^C! None: + _CACERT_CTX.__exit__(None, None, None) # type: ignore[union-attr] + + +if sys.version_info >= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = as_file(files("pip._vendor.certifi").joinpath("cacert.pem")) + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return files("pip._vendor.certifi").joinpath("cacert.pem").read_text(encoding="ascii") + +elif sys.version_info >= (3, 7): + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the + # file in cases where we're inside of a zipimport situation until + # someone actually calls where(), but we don't want to re-extract + # the file on every call of where(), so we'll do it once then store + # it in a global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you + # to manage the cleanup of this file, so it doesn't actually + # return a path, it returns a context manager that will give + # you the path when you enter it and will do any cleanup when + # you leave it. In the common case of not needing a temporary + # file, it will just return the file system location and the + # __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") + +else: + import os + import types + from typing import Union + + Package = Union[types.ModuleType, str] + Resource = Union[str, "os.PathLike"] + + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set + # __file__ on modules. + def read_text( + package: Package, + resource: Resource, + encoding: str = 'utf-8', + errors: str = 'strict' + ) -> str: + with open(where(), encoding=encoding) as data: + return data.read() + + # If we don't have importlib.resources, then we will just do the old logic + # of assuming we're on the filesystem and munge the path directly. + def where() -> str: + f = os.path.dirname(__file__) + + return os.path.join(f, "cacert.pem") + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") diff --git a/env/Lib/site-packages/pip/_vendor/certifi/py.typed b/env/Lib/site-packages/pip/_vendor/certifi/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__init__.py b/env/Lib/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 00000000..e999438f --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.3.8' + + +class DistlibException(Exception): + pass + + +try: + from logging import NullHandler +except ImportError: # pragma: no cover + + class NullHandler(logging.Handler): + + def handle(self, record): + pass + + def emit(self, record): + pass + + def createLock(self): + self.lock = None + + +logger = logging.getLogger(__name__) +logger.addHandler(NullHandler()) diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d269bbbf5ebed44b2cded709c957b3d3cc07ba8a GIT binary patch literal 1256 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 COcK=q literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57e34ae023e1b686d15561a2cd163bc3ad490082 GIT binary patch literal 65672 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 bdRo`YyEaGoa^A7I-^)9;I!wHejm7^36KLaE literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..39b1b45e22a967f876c1c4e7ea7c6deaedbf96e8 GIT binary patch literal 24303 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 Q_*uVw!cz1vqKNH(1A|a-)&Kwi literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4382eb07ed10dc0165ad4d99d465f3c9a8967b4f GIT binary patch literal 15063 zcmbVzdr%zLnQ!;JXL!s210xWUTOa|0&>%}#Qe-`?Cwd@R!rGYNpkbzgLBkB`Za~Zq zYi-KA8652uRFVZ%a!a_@TfyaQt$a6CSFU@j*1Jh<<=*{=5z;cAuvJQ}x9aBpC0S18 z#(!+x-*@^og0XCG7o6@sea?5jbI$kv&ir#(nTNyG{G;y=eseF!{TsdLmtA{!dW7e= zIWEfea8W*LiSs=?yIXoJ>~8I`vb(Lv#_skWd(;}W#T_Hg9w*P?*&cU|xO?2}*%9}Q zl=PI~**VDflv+5^GF+z*Y2L;1_c1D6Jzli24GZk$nIh^!eZwLD1S%@WsunGcO0$bvHla+BjP9l zN1baxj*5|FRK#;>B$*f&C8cjPtPJH{=fjEEfG8^|dvEVVt0(1a47DC^IegF)OnY$K z8vHFSb%ch{FKz9)rwP=|aUut5;fPW|CElp@Egn>2dy4~&*iky74wTNQFY3e>SJZ_! zchrs26ZN1hadU1iT7eY>t!U4scrMeP%kW$tEk{c)*0@r_PI0Ll9s$?UHS5|x7K$G>eeMt|R^O`HoU*}~% z&nX%Yaon(LO%uGnuT|-srr*>hl|K80-ctAn3wVthdIVS+O4tss2<>WTfm=ftp-03G#S-o3N; zq9h(mj!Ck(V^^=381Fq7>+h9ginwDm9Jv-A6y@I0*l2s-xR{70rFN17VAu8$jS)km zlX+KPUkuCA*O#i$`7@+fwb9U5P~6}?E9I&KbEjrc&0Uzi@a`)=J@wA1m8~7wtsQr} z@4s~Ve_s0g*FSvye|&3sYv;26OvZN8ovW#vi_ON~ZTM-^J5AY|7SxsGHq_%*wpzX6 z2d`ypf8luw$XvuAD!drP{ZEXznF8QO_$hwGGG!UDPFZQCl9ZPy8X%AIx}=iayh zoIDEc8oP%5`jdGd4w%pSQ`(;P=xSlAq+m?FLBTy;VvJduE*;)b@JV}|D#IN3beY~x z+L*Qtd)K#9HtKaIOuY}!-5dlIiwQ;MZ;qnIYSu{n%}La_%--nrT^om0FB~Bw{20lv0#}v^+JVqDsQX)J8&19&! zfg}K$oG1~m1g&}J<-X3#mrk5gAC7lkQXkHBo$U&igSV8hBGK%ndMY+iL9&GLTi!aF z1b;$ggK?x1ROg+f86gQIqNcoUI2lXiowCw50#zrGfD4vOHPpWd%)CuXCc)SkGjdIO zfdLpDlZWzlHkG`MZqS@#@i;w6n^_BjEEA2gi5rDP#FKZDmcV+Yd%l4~3B-n=X4t-3WiJ(;oPDynB38GEk0>Q-zzma*o%{#)tkbjJ3Z z@~V%kYJTui=J=|=X70@FnR#W|zcq8>-!^QTv8`_0bZ77Fy>|}WKCoz8j4p57J>&Y! z!ELCUo0y%LzrGx3nX%;p8|Tuq=^5L{Rdw?nKRlT8*E6YcdhwgfTlYNl@BO&Ce!lxh zZ@jnnZpYso{Mf%?e#4Kt9#?U-n?G}NUcXce^Z9SRIsN9ma_5h4|M3Iw_SLHDxxKS{=MKysSg`%n{f>LFW4UT)=6KFk zddoBIxm7-0{zHimIFH;xF07L)|{6Pn5_-PYfW3QD=nnrE!?ytZT(Mhuub1LooAt*TA`jS zX=@6KdCH=YaA#N4@)qikud`#1bGPgf%OE7u8<5K|2MlYrs2nL`Y^3e~g`2h96l{Po zWxtG)XHOGQQ>lFh6DXM^JgR^(KBhUr~iWDM;1_Y zaXL0+3aoiUS`HgCVhh0vSlNc05SIS59iUlFLg*DnH!%F5p=i7r$#sYaqJUKWh zN_l%!>>nFcMG*Z- zg!hzS$SHM?LI>i>NH{JZ3Tb^4XeECO#s9m(>HPER&9keemAB4KpIfTkzWC~c()OI! zH*!_?bAe3@uV(|HC0}SM5c=2`n77Rj zJoIgQ?Bsl#RX!|~QMC8F@&B|3#aWIgdB(lbh;`))JS$_j(MY?B?Yp@%f634B;FfKW zcHG}sC;0dHE{GUoHKlI=3YOmz+R0Y8P^^FMJ}@XI;3-LmQVn0YXhxeUK$6Mk`9HL9 zOErf+7++LWIX*WvJGIcg5@`Kk{0}ls^t-|BJa(ImYNljNgz`@8Dl?=U>h>^ogtlar zn=c$uH~%;)Qrp6%jK`tJnr zZ{GRP_u^wKS5yC}v~ngo-IY1{iLWM0vtO<`^uTxMsg?H~LB~UA)c%bhTIQUy&biXr z()r>0zF^LG=n4D&nB(0?_&%tZul|fR2 zAfG;iT$ssGcPtLClbP_5WIPUUSeH;CA_{XiNCpLYm4^tRrh4oV>Ypk%){wowi3T#6 z5I49_RG;vsC%2&vu3_1FZDY8GHJHek%eP(-3(1u!8yrDsq-)S4(yp`>8l??i9FUK+ zAZxC)BWn4XRhK((VFCp@$B00fouan1LvIaU34vF<7|qT`+sH-*m_w1-E6iyp0~DX+s{h$@xQ{_mZlwPn;!MVc+#`ddTXuLN7W1@RHN5;C07FxWvrv>sz%xE^|asFsm=gAY7yF;-AA_@$z{ia`}LtytIMH$`S z-X2XxWCX>OA;ig((jW_%vDkRKj3`?~qySoINEwMYV%!k~F4QP4fyg^!iAa1bDt06A z?Lb^{C@H1t5=qUFV?hc5(})aF40xNAcZ%0p`_Ib<y2|cHTZHg$IsX9aBt^4*Cy379y{0c{RGq2kYSV`z4!yy|Hn|iO|YQpe-9{Tl}MY-AjSChk;jC{dIF)vt3J#hd&BD^mjh7 zbM;#vySQ@y%;fztLG9)9ulTlQecKiW??#t=+aCH}hEIoP4m4W|G~X|4UI+a(2K|@@ z9ahHHL%G8ze`n>ZPxI;+o;95d1`*jH2MPyiybx|zQ%=ttgj7bT2%;*%8G;;45OtDN`k@+ z#exgE4F+e_FiGJ2X!e+9y41p~u#kfuwT^?2)0Se!JJNI&$@9-){a{M9~jU|=%X+L&-tIg=^$__1y0+G;^bt`ZQ)v!eGQx( ziNc=cYkMMwZbQW1F<>*o0nQ0MFo36^H+9EQcvnaWh80A^O+{|TXEHB33on?vl>Ya~BmCsJKYQ zt5jT~;xZN8R8YIFpsi?oiXx=8Zj&g*2GK4H2Q*AxJY+oXIwXWbA;c36;J+m_QmuvE zfUeo2SZ4#D)RuyNVL^s!h9PmFV7`Y^6=R8OiR1+G=!O=uGv_yNMG8IdKpGJ#Zi#e? zMEo9fG51G$9nX3D1cElQM4q`sfdQ$PYD)?R$lF*Gn!Kh=RG&$D4K=A+Lw~GQd%wbG zc}P_srCdeboOjl{?AwyDua=Z&#=gIQzT)k}^J5FI-oE~rv+sO`f5O=X2)uHxj0Gd+ zE9N^Nlr}x8sG0fB?1qdZ*BV-Kg)%M_GkfOGJ}RkzNUPcZgyT#1f8wp2dFlJ9`J)I} z)HLP%`|n-J`j0{G1y1m2Re{pM?K^ny)q9sdm|PAV{a|uY`AO+Q_rndXcPBHavw@?J z%Bq$EN3&%|SJ!|#^3k5Gzmq_nWuVUTNG8-YENolk-)UK{-kv#`+k4>400*;WK^^d` zZ@pwz(F=^oV3IX2OyfC)->O0q$>vm3`#d}rbQsbU`HQC0)%auo#N{>A9 zR?l2ts9D^&_W|wn$;v%#if|7p-u- z1+w;wLU0s(gkwVlgNr$bnhT-UsO1eG`WKF%ebluDf^tQ}s&H^$BzcVdrXj^mxTb7I zF0UF8i0;;0!xZCLbD8~c)CNJ!o4XN2MJO|94gVP?a#^I9fI#MGVo(-Z=t#=gNVq>f z$;@AtX8ik)I5-212-Gu7J0X^ zIP(9^t@auskN9j(xLsx6Y7l&V8<_9ZvP`>{gM;%%d8da zM_|r}Bf^Et1xwL6AT+BkNV5PO6lqKpT4=UWaUhJ~SCGl}1X~+zy|o#l^+-}O^R4QZ zGOQa~;Tko-%|aqq-K&OyWRlg)cd5Zx9`9gFC5Hl5V$S4Va4SEN7 zA=hDoT{92$kOZ5DJcctgF)^xPpG*|e7pM<;DRQouBiO9yR^$0c77X#BRoMUVdCqF=C=m`*%UZXsk(VI3X zCih9=pm^QbqBau(5rIAff#_L-$H>EgV(*EnfFDgJuxUg@YFktdkKw2pdEhuWW}dPk z+{a{K5|($waAwRHLzNQvpvwuidO%i<<^yq4HWYNz@*>?t#4-I`8?DKj#Q(`|xQCT} zI@+RcvZ!hO?T~1Bhm0^}WJrx1Q|?h$*5Agnbe;-wk@GHnZ*UlgP8YBsF&RbJF{uSD z1d+HTO0e5d7S5bq^dv)zfbz8O?zTDk`djlU0EmvR2c%Vv=c{@0L zaH&L~90C#tH@hDBH_V;?;dx}`ytOM{A?p8S!MnH$!$7l0Vo``08_KkOz!#{ellO)0DSbsbg zVd?#NJUJnVp}`Q0YDAl43Zp>eUOskSkjMIAhC+F<&(L6|Y*P=9k*rX|UT^@+NR#OS zfZ^=Y5cWTBqj{-ZMR^g*u~2xhICn|IXd+#sg7`r?g`x;QeG}D%{In*BBVf~IVq5Uj zhUf6pDvr5C=Z0s8|D|F}=BUX(6%V~|;Tiv|__kzyTNbtya8TtJa}Zfo%B2Wo)M0E+ay4nKRR=@coZtfwsamOVZ^JDD7DL$=V30KEWl_b9TWxc0L(j{NIz9nC>zASN`E-Apn*qwqpTQj;S*dq^#@%WB->>9I< zRqsc))?qA#4bzJ(vaxvBJR3r(ccfF)Q6*{!dO6wh)Oz0#Y-rf5nsoM@ff}IN| zTa$pwh_4#4A+{;%u>{h*sf}iUXr1BP0eX`E1H}#QNhMe6U-j0`H^004fwy@zP&=2J zO)WGp2U?eWt&akmXUab*shhuYzohX|y|7Z>maT7Fyu4ih;!6F?+4`679b2wHGJQUC zV&=t}$Ztw2bG4gRYJ=I@;9~P~?XJw3Rqy77n)}}7Twsfqo_Os+VD~-G%D%JNeP@4l z?7_Z^OTLRsfs2o7H)hU!;;o<~s6VN^6Sy6?Q-8aDA^OwUJF&Z!%e5WL-j{GRwWK0j zvgs25ZMyGm$q8Fmgq>MoCmIMHGi5mg!7I!49ZN5D{#?FyaCvX%(w@$x`ZKd`a{}~z z#+?fYD}n9V!1l!x4+6XHPOj|j%{RpW!bT}!^Mr9fA%e%rf|#ch8z{PV`UvA+xb za`#8_FZN}3on5LwH{)Kd^v^ZTHf4^j0_*YV@p=E-f0C=&IAf(bGxRnI3mvz6790Pz z<-L}>ow<&E_x5KyPCT~q9jExG9KRj;5{}<|nx7@xesjyutcxe!_x$|WJ7wajYLEJXu;2 z6Io0o(RXC0nYfF}L@NbC=Q>_fepBd}vhx~A8w&E{$0Fri&8C&=rfhZ7!o+fQd&Ywr zu+PBsK*qXSQg&<4^q!gSw-13Is_HVwa+US-a<;M|<6OmWOs>pcS*m~W?%sQ6ma9)? zJh0f8T(yjbr6YhIXWVzJs?Pd#q?#!olb+8aOJUY{VKCSfIkMN(iS@Fel$R7Iiv}K3=rN`gq zxr0afTto9yYqP!j@g?)M60a@X;bVMmYw)S{C41A;1Yd1e58noBr3_*4rzr4q1e|n) zho)|+wwseOQ;94Wk#~^B!*3jD1M@aI#lX@Nv?BQ30G7s$UnHGl=Ov{-Be;|`m&U0z ze?DK)ckIHsb4M>;KGApaXm|ICOI>;XGL+}B3+K7e%?oB22${F zgD0r7BgukD>OxHuOtSQt%KF@OK;5Q8(qEzu1jEUyhxqu~EvV74K0YZ``t}J0!f^n@!J0n=MFZB$s ztz8%8sBS^*D#5)s#Y%R{xUQ?N6s0OZ`Ec?R`#V3o7gDU|;)+snKKzG-J`(bgoYS*2 zEEp@c(zSD@r~C9d-KV?HYyY{l)JdSU{ME-JzpEtV-|@pJ)BuExXh*+bxAsa`aZjIQZjv+_1WT=FF+ak`WYsd|C`v^Bw$`hF% z+h?%bdP|PSoc=ZBl}aS%C_hvtx$csoa>)&_LMjF5<4He}Ja>uYl`9`x3iwq&O0&$Q zSuK^r_!_{hd0b#RwC6qit}?&(N0( zx1!Q;Y$T{oCuAkSYxZy~I02M3cLKQub;5vHdPN=)L(}g9mvB6$m4sueOcPXAlc!o+ zhoxV%4tD|!v<*+T1yaK;JDY}EQp1fuXlx8U0!2~4$ zL`iSF0br4+W?zb^Ji`F+xKNwosDmTWgQHlPAUDV(ZXjUMoM9y#Q&ce)k|}m;Wx;p* zuHU%ytAXIv?(1(s6_(8@3Nr9-UhC@`z9Ne>2GSb7@%rK6YgF!ukAsXljt+yshOdNg z4l7|*?nsEC+aP>pI1x^~hQgHM^ff80sFCo^*9sfenV8lpf?>s2VL{Hc9C#goN2vuc zL)KhX^WtawmR-$%be(&6WaaR=>@Ut`g>xIwOI}?nlur?bo90qP;`ah2$%0Y|2m=== z%59TxX$G4-WQSAJ80dp(I?n z#$S0?vyIUBcmnPX^#WOqiz+BTzh4(qX>deVjU86#e&`Coqu{{>LA9J%Z8?`~Irnw> zN=whOt2fuuv()g(`Pn=7rsk$TPG%bB(*NS#pKa;Mxq7og?|=Q#)vMq+%`}}6Lhv>V zZWNY{D*zUWOh7jh)Qg}KdC*N3cm#N?@Yvw7!{dOb1Rf_mpw&>Pp+=KDpSeMUdOD&q=h7d7sebu77{i2U*ts0IZ!h0@7} zh0Lo7bHqB^bT^xD3O4O_D}f_OvEdPU#B1D?#!VMXbJKAuB1UgY;+bTHIj2se?R6Np z;Q%m0GDnuU2XE*n?WZ%P4KSEC0w`um4?)9j{Ei`FfnWDh`GX5D;fGgw5zel@$SF>- zqDF$RUUSJmllyU?xPezmU+w)j9-Liz`(gPP?_|!tWFAGrKJluY@#xZK1negNU-E_i z!lwSr6~Y9~{cOmH4-UPA-;c`omASu(3&gAX60SwkeC2)oC9-ILIiDY0-79nL`U$J^ z01lp6u%Dn8Q=lK&)%=;ecoL{6=-a_L?S9a|)R5_aiA1+}D*q3jr;2zUdGN*(mwA~k zz{%-%6D{DYtnoDR+tNJue8~gTme(bF}O9`yejU8UKMRgf%nZk2Y!N3 zJA8r9T}#rIl;sATmJ~n1QO}l5maHi*Y1^{99|1;+jn_vM`EZ;HczQ8>IEBAVU<4=G zkYid%2`Ms$^W9MxPnXds*;B#}o}A=h6ks+|39H#u!*;@~^c)TlmljNKTMwimUU5l-3>J5)r=Y`E*e!#tIFh1M2iQ#vD^Nn1eAHo zo^qILXXhp0N&bZsT?;G)(=PkPAG#8Lh&IM4#xpmkSp?K|YdjX}`aq9VsC;KUOl1s* zJ}}84f(l*;MnD)dDG50gz7+-%p*RFEQ>yNrAZOm4t;*&A| zgh<2U&4}FPKcv7#N+he}2|v3>(L{tXl_l0^iHs_mg^nu8%5V(4qA;?G!W6?wJl5sk zX~D0=3s28t-L>VAYpxs9F;$%EqZF>RAcaG! z=8Px69mlmQnr|SkUfP-$Lt}or<}e&J7HLp4F1lY@q6vx|xupr{xoP%-bTk`yapMt{ zo(Dwe!?g)AEROczNH9S}DFJ};V}&`s^fELRdrbz@Zp42d;;9+(!b#lK^U`NmR$PI+ z*EioiH<>w<^B&0W-JcPc_)P7*ZT%Q2tDY@gKSC<^WF~XI=C#^G+2&JUsk!E!<=WnC zWp943f2s2Ren4$!s4oJfvOXhy*}LKkWZi+RFOV;tC+Em@T`Q_tj*q3nyoL&B~g$HgjyrdjI5#x8-l&`bzlfoquqxwD*2n z-JmtK{7uE9!F3DQ^!f(jYL2ZFuKd`#jreL7I~F>Ygr$+?iq6@dd`0!P@3r!#rQVhD zz)Hv2uZ5M4zWkorZ2i^To~vusdosS?j?7yMl?97|`tWA5P% zYMmck3@!whuIH*+ANn4KmaC4=UdVf^W=ok#7zo%jM=%%@qjE5)IfKDyTpEvH-5m_x z85bjk9(yn-#Y4d$y$E~5Hcq$k=-%m@iD4Z@&;gHvhxRUc#`9LkGbiyjK7pU7?TM%1 zN$CNs=+N7QE%2)dJlk7ZVVk+UQQu&#W;0{7k`71~u#7(s1}jDQRbP7$uVH7bsQ zIj}~)lB!o z9Q+)0Pa6(Gd%oVEb<}<5tXOq60If2XxULa)15DI-m96bnJ@pi zcIN!k14r|XZ?5^O7EdgkSlf4SbzggKU;FaD&b79qt8Eu^Z5Nl@E^lkEYx?}`{jEXvCUjq-$&dPGgsLG-Inw+Go4OwfEGzf zkzL!$YYxL*PV*QQ(Y+~%sZd2oR;Dz{i((F2ihvU0Qx;G-f}tWl;#4#9shU>H=mo36 z(ejja%mpNOloV%RaYQw(*shTa5AjDqCEkFv@0JEW2vI^>D4HXvK{iK-i;Cw6c2oFJ znB*qOl;zLKBp0wJpF8p3Tr&Pp@SCnb1g!<1AKG+J6#mjkKt>&s@P6>>i~a)XbTTSk z;AxA|LhR55*-A4d30X?>KMURK@4`PlOjJ;f#T4WzIW&&$w4vp6Vg;3_CqD6?7`%o4 zNIZUfJW)(_m*G({k$`zKCdsCEVi-5%DO@x$p8P`7Xbnir(a!k_X3Q;G4@K z6*I0>3`bA~lBkLp+vtBQbYX0PrU%ltQz1El)2A2UoAzU)x3}*?_d8bxgFU|*80`DA zLCrRv00OdBQgG1YlzD()OKdtpt^5b;pjVKT0K1`ToJ>)(E67s6`?|}BhmRuoE%q(| zm?7&Gg0*F>s$r>lxhgQ{oE2uJXAa_U&kOT!FW57$|HkvJXRlV*@WnB3t?L5dT6^2T zwJvG<&QtNbv&){Qnf@pCJ$bm?o;gpprgg;;SaVgby7uQ>`!mu~|FWw+E42UT3m3iO5t*W= zMbR15LojsDSO})s;y1@&dzpVsRcuC$Nk2kx7XcG1Iz+l3jeo^JR$O=N&(M4D37Ul{ z833?oj(g_eIboxWaLzxGl0OlE-v1!}ee-GN`%~Zk`J;=(Q5&_H;v!QE<<{bbmQ7PENT$R^E`X8+lWn%g znWo&H2(;ZTaO{quwi8q7p4W6{-n1q&IdRYQBqwk35`d6~Fk17%N&CFaOy0?%mQJ@d zFYmnHcWVJig0g#F{&*$vqN?t#yVbql{(bcqnVA_Jj@s{j=UnFd9QO;lP!6Mf@?cfV zao0J48{h<9(2Vk9ngI<@=h{*2fEK^HQQeq+Kri1j3>a9RalpuaO#>!DFBnG6V;KV( zW0nC6%IO8;sC6uJAag8hAZyGvU}N`8qxP}vfoyhe9?cnZ3^>M|15S3GG3px29mpNa z8_4514d*qU-=cIh`RgtCAunAG6l%DGoM3sA6Rh5hA7TV_3>2}unYf#ka<`b>wc)Nk zP+fpYZ4biP}vKQ$F{)xK12S|(2|QzhgNR0{&|ZTQ8IasQ-+Y~y*tnQHkMcF zLd*O$&9IiWZQ{7osAHO+)=X)pc+`@CTC~%eX?~zXs2$iX)D7$rJOg`$`hk5y!@z!_ zao`D|X`mA$KA_Y%(6#CKo7M4m3p<3CH~E1cwpO=bt+t{DWwrMTZ372|tpiUA?E`(R z#5R=Jo>Jn_740zgGL7&uQk=0~UgkVI1A)G=i=*B#@3?=+KQb}yo;d6FzwC7%_4WcqmWL+E@zA$vo>vKQV^OUbSBjd#6#fuZ7-{&409d(bTJTNwdn{}T1&8?KQQL?qAt+~}bG%mQ?n%g|h8GlO??co#l$?=il3Bfx!I^y?=L!-Wa+{_;H z`g~|@@T@p7Hh6Yq)cd!z={=f+y?eyxA00W<^XjnoBK0|8863Ri6@54z9Q0@trW1Z~ zWc*y;v4qvf&IbKgE_!_lv)}uwpPi$A^T;?FyC{17s4@!~;?S^v@XVFL3*IYQ*WMk~@?OO()?m2#gKd ziUwVCD)V}D#OFgFdqiv9r;m7t#Bnrq`oz{Pr=JqNT@#a{ z&)d{?+B<&f^pTM>r+t|7CgshZzBqER1#>wrOo%OlG|er_n{B>$Ma)LMEGfo`PmknH zE}^Rv^OgI*(QLSs+31=WKRY@y?3bovU#H*i9lPjv`zJ6jLxLMi@Un=0CMW0Yh<8-* zVWkfF-9w_+JuFv%$!P8ubEr3Yl(2pk&{>g^xN)NP{7I<6_v5vfG_$t$B?QBs%Mt7@rNbf0#e@-neU4j&xs>+d}_*wf#2 zth=xOV4_gH_0;j6-k#&fd%Be^^hiJHKijnPkrtpLkdfh*j?+_*%*wgjV|ip(YHyNf zIic&ven=RVOVd-MLw*3Ov4ru&h%LenVu3SE{zCu zc3gr8K962(r%JX_vYnDPO12{Lt zWFI9vDA`F#2NF-wKXAAy_0X$G4ozx`>R#UmYW|V!DRJb|5a6S{$R1ghnGl)|TzTX; z;q^~mY*I%=lanyhxW)+=J<3w22KU4vyvY63QWqspP|``s0VE#Xqx_V`+5~urO8iYH zfw!c0&fY$)0}n3}849#y?7jlPKQjEtDzDe3USP>U1;bmXef4|yBB`sWd;Z0W7aBYj zQ?)p&#aXRqSV2>$h$A4b#ovP^B-cSq3H${tcG2L+wRD`IyBhhfOg3>GyQ`J&>eiIi zT>=pEtM~j0lL40CP0kO(NjkbYg$zO8$5brlH0W^`6oEP zO*x<9l4U*SegZ99L;|RE*5=XB&(=p;P$O$*f@XoX)dSjKhdG|j#tW!*nxEp6vvG;{ z@o!tF`0w%8d7gVaTgP4DeouRuzsVEbVj0}pzHP9#ujfej3A`jt^OgjE)<=`(c8i3G z9+~%?^NxF8y(sPrR4a5#8$)QLSU}BtMkj_r1MO>8i@lDge1ysVhWqsl7pXXY^TI;* zt#AD7!qVPveB65T!k0dp(Kj;l_@FV5r*UlwG$`;AwAL1a@0UmXFAL%j5E2n!;}d?j zPa@yE0zJ{@F`?^i?X7axX&kNX@`c!s`V)FA_E9e~wr$_8l*)LT@CQRH$k^V#Re6F? z6=uUIBRwCjIBEQeoQ;DPpGWp3{P`{;nc?EbtYGz$G4HOeFk&iS|c*JyEeKIRQQqUXAIv6n>Tv=1w-HiH$9kGn95#3gX z&DJaknpUJbSMiM9D?SWc369kxDzZL#vy2?wNtnwXawz9 zEn7ZWQ<^yqEuCo{_yx+-{eYj=PwBe3ApZh@5AhU!b*o+C#Rfq?rN_3aozkDDExYaz z^vaUwIln>4Ja1OclD~psN~7>TJcm}8Y=H7vE5^sRqHe;kY{j&$6?LPsR?LrW#r(C$ zlCiFpEM=Um70Y8=v3%`TtdD7Bi;&4$X`IpsSr>q?Hhn{xU%Nfqy7q{fUHN7$Ipx`DgTPkOno+Y*-o$h0fyRm{SDKnzVmw@&R zKIfFtmosJZ*{96DEWev|0|{G!hU7I+s6phf7^jR#%~K|%nOE#G=MUZ=oPSbSoZ3QO4zYwBj+G zCk&waFL=d-4lKOSM^(DrGYsd7-@rv++aL{7!9GbuJNWXDZ%}$Rc~ix{-@&6kT6w>g z&~MJpPmSTT!R?`w@9q24_@$5L;J31}d0;#3(D)UPMtli(5=N;)A4B~w$*9kg(o~@0 ztGn|SYVtXe0Po+m<;19MBr)60h-oLoR|(^({=@ypp6T!R7{n)0lF>P0ADtbdC zD52bd>$rDp;u7QxAc@=pSU>RC)jsx6YF=wf9@Uka*Orn;O{C^+P03>|H>@c@@}Fd* z)T`vfpg~gd2*ruC)B>JklYWv)O)x&r=WcROuIH?MUVjHh5pZtcxselSd~RaWO=}lC z?(oFeMaa3%jCx5j)dFgeWK#HRlNY%sJE4c9Vaz9M40eB$INb1xqGYpe|2F z!XWKAahO$2GATVc_(`v{xUw%!fR)53l*Q~z7)E@9t%I%dZyWnF;Ox#>ZQPRe-i4^8JnW6MJQ1yVB5o~NwpK;0 zRpC>&tqpgrIoFO{JrXI{vRHZBy8ZvJg>5;(u_aq&++MzHuZ!C27F@UOEqCp?*R6Bb zNJ;zR@NIhs>w8QdXzXzV{Y&fi)mlu>!#2)jiCBtb#*%RMlCdIgbBD8|w#ta9@~+t$ z$t;bT%fhWo=Bm4LadS%J@1nbc8Sk{S%>BK!dXU&XKmP-+%1hSrgv9oDls41|e zX;53y~CYhw4q{fUbR1iNz`UD{Q&XUldiQHKcFpqw5 z(%T4GEUO4Q0mvCBs|oV8p^E^lBzJ2TU&Y`a@$N@_GsJ;raDqpAPIUJ6B(%QCGYO;U zy*N5F>_wK2o)rgBI$=$1Nk-W+u5=BO5T1$-f@4(xo%jYG`y2fENR~3g-7|3}=R*@` zFSs^+bvkq+Totp`&g$;w6kTtcYYJ<_&wMg?V{q}rt;$&SzF5xwSz{u%aQIdaN##s z$VG0RHy>nG9pu~3AxL?}jDDwH5C6H1Y~g)*e&&_PrtvW|Gq z4GmvW1O!79pxI7>${S_3lcHhZ+#$U4QSXq?D=!UI~T6Ja%Lzw1X`#{Njjf6bH3hvZsZc`WQ(|IbmRgWIz!S- zso^n2jWy&Wr286_&Gb`6WoXWy$ zvDWDCK|bCDpa&0iqV}9NotQyTC0mfvVX=Z$peNZOXnrVD-*50Ekk}0>idNhLoiQlWaTK*P}gw=|$fwe+4F+3UlLW2;SmGfWfYeRX(r(uY?JB1%6zF*y#A zEQwJi8I=)WjWkDzEKwG(GdSl1DI{?{-tplPNZ$>zx=%;?r-YeORxn|hya=_ZH{k?j zIjAfa1vq*137yY7dN!e>J|>Lvk|SP#EgkW9FaV}|VuYAPgh8`6GCtxT91P^G-I&cv z29MY3Bg`_xtyt~B+R%=OrE=NgiCR1hRWVD;V)>F~Dl0wK{68zGJOj)pJ?p8>MCHGA2eNl@-M6RhJ^N2n31^Z{46o0@(m z^aoo-qeKF3F8^gM_UM@Q|5MOEPmlK7_`j=JAZaE#R^{uUVdrbg=d4E2|4ReB30JhF**!cs0=-`Qjy z40|{qNwm;co8#K6S6>b3zVpq9sYL3i3Z_tk-T|9;k_v3z(WLw;rK@=PAR*Z#&){ik zeyK8bdeLDN+O)%JUSZ1QDjg1aW45Y@Nv0rDCs*yW_}D%x>tkADrWcS}1D>N}O0ySh zr;INCnEkVCuvqG8jZ; zgw|RD4D%y+$s{BF3sv(=4zVFSk-9F<#D@{xTVkl*r#9L zwdLLCcysyPoWfB1yUh`+dsU0eM@)tBZe}@m!?hj8Dr^R%L|v_?am}zJcRnRsIlaWa z%KOk2OlIm5lCzW83;D_;DZiH>&XlH3!{$o-XUG)8NY<=z*jo@$0KKUXi+sb5Ov$XG zNom3Jm=wD+r2Ei1Z;jZiF!tqcEoJe%eIE7ts!P>0^x5fy!QIl*F*mB$(XG^Vv;N;)+{JmTnwrZ zAGv-)eGpit=v^?u=dd)c@DNyv0?I?BXBj-wcjBa^;Y(x<_8jRs+S7mXgf!4F%B)#3 zS=dBphbBiMcO>~upk)1U*JL--cneTRa=hWHA2mlScE%m9*}k|f|1k@M6le@e;&=Ta z@K`Ll$&sa75CRrc@>~XUBbSeKuS0~YJGOX5!Kc?Yl!RU#x<`Sj4VY6V_5e^+fsm<`Kl(&mU zNji$;62g`V>E=2j){?tf#i5h2tcr-KV&ib=HK%Nhq%5Co0%#y)1;BoJ#rTlm!EY{M z019SO25@A)p|i~V=<7)sR7)I)Y6u*9Bw{3CB1)U8TC?@6BtSSjIm+zgHbCpt%x;>q zA~t6vOQ;T?T&THmda?bM`P2QMJsGndjhK#ZoGz?qM9O=Iq5aG@$s8Q99sQ2U>|6K0$AQEVE{~FESn1p1=Bh zC_lV)G4FQfu2~I{eR&E$*>>Anx?;_`_T<$kf9KGzXAejxk9=gB@VnW2xIfA1%vwwF zQ4X!S2R}d~sc$J|FTp%Qfl2A!ouDCtG)X#lb1%FJN(W{bQyQ2C@Nb)@v`GX9)OZT- zjoMvzB&8J7Iy^y26n5YV&y?<4wPdhyO+O4G0p=dXXhH8+WhYR~r;(2cDr=~$85n|; zGD8p`jP#O{DV>6rVQ=Im=@3C-n2YFV__xQPkk^yp0j!dIo7SLDso}SEv;rR^ahWzi zeT+ZAdjrkm6)l~~7(l)w8zt$?1T9AZLuWP#UB>U z7llv73L1ijxFi2|abwicxR@Jh?fSf{FIIBsr`vB;f8Y)Gd~*24;YDq%s{Kysw$HW) zdm|->h{ZC^nL@6x;f}o)nxTT?P|tiuP>*_|j;aOMq9^9r9e3tme{$~0(5Z0G9cTS& z5xTNk!Py-|Fvo0=6@6Y)9};GDvo9=}iWYT?FGRO=$yZa& z6EDh8^)iF1;=jev08Yh!hhOo3Lz2i)#51E_@h@;g5$gPV%C!0}j9eU)Rn_AEj$3P` zJK_hp6>zRwQmn?yw46vG^;p+Fn4_UGj+s~kIW?krN+$qH;*W<390v$owhjVUqMmdR zn4i)L+Vht6Jp?tHgrxHL038pZR;yALkbXCw)-jW$t*Bo$4^v9OQtuKrgh^vo0c*qOHJv{@eEhwC~ctr(lvMjkat?Y$(U4gD_{kej1_=mUVw=d;QgjE z1T(GV9OUV^xBmmoWXvfrIwP*WL#vF-yhP=*C~l2fzir4 zQ~*LKrk#NvM!ZXze@V$QC9fc1a3>WW{~R|11?e^q1IW-TbG~1r3@BZbb=g!NHI?5s zRenK&sYuiQXx$Tk>FNX+b`@NIcJA4b_uawS-p_4CVZ*|%#WS~d-D-%`_eR~lGI-94 z+G?20raWpd57#ev7f<};*-xLnbvCxG=eAubbvSCP1-K0zU2=Hhc}2^4jnTZu#jI%F zzIb``!;*ceNPS z$UX>u(^h)0f`kmV6f-SsW0*CMccw6XDdHosBE5)70TWoD*jm#%*y(AZP=c)<5ev$u zz_zsOxN*l6Ou?uevx(JB>*dm^qzTGFd0qkXBn>)P+uGx6xuU(I_2`EF5f;J;uRjUl zQ;BB+{iF;WcSFc24v|sNOB1*$zQnXj7cN8bNPce8!gIS1cwZj6Gy)YQ6o5=|_!21r zn2uj?SUaCWVjS}DBp(65VQ^$4~ z9R-^~z+hs$785q)AAT7_Sc@9T6N?qXL_mi+?j|>_D^krg9<^73IB^jJOLlY3Dx`Ny zgc0k7q&Mt_=*3+HFzVTYOcTWChRWg67Oa@gQr5hw=*l_uEOgBa|7Qy z9ppc^JA>Z{=|e;FraSg>fR@~f2cRfR=X60n*ed1n-_5{C3QF%8VDl5tFD3EzKgn8G z0*@BdqL?*DlAXvH3jN?XqOj@u!3RixbJ>YcPgEqs>rbaBL^MgBF6m`*R;3|*Ppm1c za&rox5}N>cRQ`>+DIH18I=DUXs*KwMekXo19gn8~D&TM@a5xP7$9J5=?|3_e%cS~Z z2k3&vHT@yr%#O5u&s|e?W8ZaCpsmmbdN-}{tJKGNP!8*lq#^bB{PlSN+gL4hi2o5> zpTueE{3IM>2WXID+wRfWQ@niM4Clm-aGCYCijirX!!M{Dinf1@vV2c2Och&(RI*h_7dyaK6wxAtsDu-wSzJ!uU+*@qT!$io_}~ zdyPak=_$JVx;jtxC~i-7h$GoBU^Wgs32m1V!~*$QLogw`hM!Oh=c|RG*+MtS^Af5H z_zK#TvP#ipz4EZ3Upm#_2PaxZ%JDC$TW=we5rjBHH;6_S{|l0Y^`hjP$@ICBy$OL8 ziG-05#Yeaf(9N z79q+kXn~7Er#?RUqix}%w{zN3Dk>-q8RzsU8`OVc$zHaULh<*( z%lw|%BVV}6!n#i^H!Lw%<7_V^!MF2>eqJ~gY1;Smg3@5;N>TZ8QCqaAZL#$yJ3ifU zYwPdt`HcT`|DB?)yTDml^I7rY1M%Xzh4O`yztn3Aw%#*xg=MQ*Tu$!o0#7vCv*3+1 z?~mt|Eaz>H=51e`yq&lAuCwrZ|6G5h@Dd^`yRX@ssxFD9UZlFiD<0%g6Vaj)xOT4+oYFA|;1ICqa#f|LX{5J=)^--#0h;eMa;e?`fs zltd}l07EtS{)hxr#lNFO1)-?`Ct;Me)(r9_v?5IAv;c@~d8Wb|k^^jjHIU1$5UlwU znHymZ^!!2p^{Kh3sHHM)%l!a5x*}d!x?I>4Eo@p4Vuf3S#<-(!wx0|F*am`F^T^zh zurunc0Z;G9pFI)>ym~$go3^!CHs|a#Y~zCFc#d*smJK`m6Hx64|hj+VGH@A{#+ zLm}UHk6~}R^63KR!<{z_3)+Rwn}$eP%N^&IRSTD2vTEg=d9#NUpt!b?6d;yYeEqe# z*TP$4d9@LHE%rGxS?C6X5HZR2bE!K-70i|5?zb(Q5yc8|$zvyAFTk5iAif%e9QK87 z3Og8z0C-=fF7YGK{4ZoYnXVi?idZ z<-EFcm3thA5-OpL66zjJEpe7$O{XliFixAMjJSrnW!j8hrP;qzW+5pK%$Ul6iY6bD z4%1YI(q9m;<=FeF@LO&W-i&7058^49@2lcXysKRh>2;B8M4B0oC2*nZW$*9>QW=vN zLuJ!JW08;3=m-p}n@J);bPtT1ai6J}83_jx1ZLGEXEUU&>IPZn?uTtMvG-3)K}?u* z0<;7LqY$8Yu0;=-<3*rEj!Fa5@O2?;$Or3@rqPY!O;nt?VzGvjJ|x33RKuxcQOP6# zFXBRy0ANDKlIP{$C3rsLrGB7ylNmFnYB2BszDGu81mx z5J07zBwC5yiCcCWOt>J?kjcCx<>m`)T}L{B{u{oK6bht$C=XkjnS+4?|GBF$$R}xp zSAKl?=H*4-52tQ*-hBN|-u};v+%T}sEdmsBO4dI8f$V3*3Akf2;T4O>R2$HOss>=6 zqp|!wCI1H{*_5cHtGG&+4=8y^$uBAS@01W+#?$ZM2e!^^iNH!(3OAH6$+Rp~#!M)2 zhn_&xC{CQ9@)?*6Vh5o0ki@iX4u1z(K9amEYYM+lNWv67o1qQ54tDo{5F*%y1QUZ1 zn=@5mEv`z+!kS?ItnnAl+SzWv&rtgk>CE!3XU%1W{CDhCm?&2rgc;VH;JI+lJ7e*j z*2V6h^nKcQ>s+k8H=5Hs+jTdmChUvlG(@Zozi>8eUQOd_1}L%!?D8y?;mIXSBXCUU z$%vyWVy*fjyC~HC;o6) z5C28gR(5B1v}!lq+55n#tK1j0md^GD4?W0$tQJDt{NfKy^QN#1rjq$hil*-7z%Biq zrhRc|@%3Zx9Q)Jif9Hx+9lPUviU?Epss**IIyrk@$P}@;BPRDon-l`gj1c@aPQDt2 zY_8pzMu0VtX~el7W2l7}ZG>LVtE3?skPo<`^KUzovKLAGOZsU<4FRZx_6Ot>(;q_u zum?}Q-JsloLlN9(gw{OqpJb~6iR;T(E`n2T8XI{PwXmXfBhB7s_sa-81da4Lz}{qGH5w5j zqES6`oO~JZ8voH}1b}hB?Dt>vb+oixzI+)$xF{A|^MrV=Metr~x#+# zHNj7AP?skRepsIj`!|RqrQ03?h6K2<<+D<^{1@4k;qHhB+h$KJd+#hXBH6RLUlh7$ z4}I<^3wJC!e^UHu@lxg9ySY%qM01;ne9H|rEjeoA?yB%W)V(Fx9df+Wx3azCR>#uz z-kAGfbbIe&cG&Sr{*C;F@_$+s*$%zVL8;VgCRbFxYA0V+%a`}{T=|o-e%qDbxnr%` zgw{OURY!0_yGmjeFLow*P#$G339})yuM>53B$^^>RVXO58 zo}iZ@DVxbLBnkh1QLv9erBL@fdjYIMr{*mHw}tx|l%5@onM%UNQB%`x#c&@RPCZn1 zbPH~!+5>D3ZxqxGJM0i10-FA>_>r`U^EgZO_IL@`8?2H@)pD2yLvV)NA)r*F{-h&86v7+tn#f?V&~iuu)0&V3@J@LN zHQki`Brf87ja4G~`#=Gc-rt91^wTIv;K~9HfJ3>yYi`%~cF%Ujb6nr)gH+vFCWRe% zqo{;mLsk*X$JS{-PQD8I1M>1RPfxem-Vvz43f#IH(Jrc-I_$K5A=?m|DMFvb8b` ziFd6Px;2AR7t`_IY*64H=p`w`I!h6EEWg>nNE5SxZXu5d-zgfGM;ce-mLK=s?EBGS zgk`vSID8`L2nwOCb0bT3_X3o{6siG(+bIn$t7`4wRD6A&4UYVR>1_RxPLx89M(Odf zoI?}0?m&+A`$iHSKt#Jod=1%;_DRB6 z@hr_v4W9iL7cZ;)@SF4BTrS%lE8Bic_pi-=Y^GaN?@xg)vNx@Ayt#>O$(y?V{(kZQ z#zQyxUddjxLh1=IWg;mt#9T_gM+qShW?3NKptFxDxk(A_QAybG`*g;nrT>b~KBMGM zDft;C|Co|%lzc$R&nXE~@)0GEC}AcHCR*`xcTZ!|n^tqVU4W+L542hOy8CWke~`a#;Pq{klu}ZC-=No*-_O$M zJMNow`iA>ft-j!XhEBhY&MF_|>h%3QJH4Nw(O2F#8T5Jg?fLp{{=rV1KCtKM_dIAT z)EC{~S+B2LeU|6SJrB4deZ_;0dVTqWXL*<2dB549Z@!<)>kpuDjXw9jN$$a}2e_2p z2kU*na`6hej5nY6O^gRJ6(*BiBHm-q$b~Mhvo~YFvgy;R4hl}(2Doq=y;&p#f%`U`y#=$7 z@qrdj+!nZSTL*Hy2ElYz0vq2As^5d>dT9;ogmwbA@aL z`wip?Hn@0e;NETX7UH)EVX1K~I4JcN&_BVco)>wG1Q*NC74n4q4>AXepD%d62oB-o z1il?E;XK^H$tAqZ>n5jg1&0lk;~MVa>UD*;;(Tw)#LB1SJf19rFvMl3u?o++Q|?#e zx;*8&##@uNu8Pz$ETnTS3+Y@ZRHKI;p$2KaP%G349-&@n5E_Lhp;>4VT*8(QG6oui zR^&GdJB2p%p-I?^t7f4cY0DLxXP4+kmji#sNa&NP5|K4->@sD&Hsmpgd>_K(wX$cG zMee=~wT{=V1X^LT6w+QPHyU9^fvB`Y7s=3LEse$MQPfeWX9SiMFT*PyE((m90Hx9- zvGQtT6hL9fFH!D+%ok4!4RxoRk$UQ@0_870kB}3HJ@G=Fd@|VF^g_LI)3d)SQ2gTa zsrl=2&CRd1HnweP-!Ux`3Jq9kPa}Y`yRO>jk;qFP5pJ0KKWNYyl#!w{7=2PC)xay{ zxvqqXfb9zlkBR_-EY2$8MX6y{-SGEEKvnr?ki}DVW4tW#sv7|yScujXMu;ID78KP7 z%M&Rm>L3`Ez-1Q3(&rW@#}$GWvq$lpWb)SMJ~KHos#3dn+MV%l$_IhB6l{}>H3p@rO6Ug}D@2lywGRD+ zco`X{LkcqNe}Y5505&4&(9f=@1$Gcyp5oB2{Z8&x%0FF)*Y!c&-{8-GgbKYR>QAX)mzb9g4+oYC>>}|K4bHdE!|B`m6_zZ z=fF}bCeD>yE10IsklQ`S@%Z=lA4nd;@F=cQo<_^?I83(ehXhtSQpT(Mk!l3{5ABP` z)Gz)vDi*(u1gzb6>74dWLL;65r$jq0VWzOC;*ftra$`ZU_mpBDr#MUJS1G9>f(znZ zRXq<_I)a_(g)&|Wvp_yhjDSg)lssm!&B(rlT_Ic)?R&y}u&2N0c<0Gu$0eN?Sb2y= z;WPus8Q89Z_#vm(A;Bj;OEr_CMi!8W@6rv{PjyTbu#gj}y7NC}I&FTomXbLk{e)V#$eEN>?>{D89%wzy1B4!R}wd+N&nws{ZTj{CHj|Y2n`e zW>5#w>+BTxeoxbK-QH;3-gtR68MNNhYfE#e+J_ljeg*tg&A0Q~pq&43_x$eglfO8+;OvG@zNdVzF$9V;GFIEIZdYf zZdudfxzEntE;}03y=Ns$y3D!E@7Y%M$b0lFtJJ~2f9OV=_c?QR)x#{Vs_jqeK5PHu z=J>At(5_c?@@VGB3Y33G=Z=2w*s24i9x?Iz9~X36xSv*Mckj{unR9!OiTjzQp?jD1 zXFGXH_vm}{#y>Z;_w3jH`92;gkiiVSU}A(|BO>9wgh@eY3^hnWraGxu7bR^-uy(iN zrysvH>^C!EO+{phthKl+VNFF|iOe;4F2M+I6^A7Z5@v+Fo_z+um&hRO>_ZHHXkm>A zEKJ{INSL4o8UxYcOIT8HY$C&l4*(2%3B|Hqx5h40hrTkrHO}ysAD7aRPFF=jFa<`z z;7lo+-u)hi|7uwnW=+8bAjpfAfOO2URI%j+Jf%LYJ7B1#n?aP-8I8b=gGB&rl1mUq zVp{SvPo=e4P<3kZlj-U-!jKA4dSSHBou{q7?nqlNKc&J*spg~|wc1zH6!eo{zs{ti z7&MJ$@gJdAdS>3`m@=p91LFFo^kIAq<&CU-%_im5h@`CkQ|U|LU8UA~Ablx8jbci5 z`HFsnQLcGX%t>GW+Frmh%>=s?&6H7oi=eOYzVg3n4Z>nY#-#Fd=~r7x`c;^2&Qok) zl$H3kSB%2)NqzBT^kbu9%i|FdF`vgEr6#f48C_|$6|Tp*BxL2}Q70h{7yPJ!a^l@STyGI0oDUHEyB zC|VN!!?%>WOrck)w+YSYg@k@=h@!9}bfymuy^@89$%jB%@YWwq@Ity!lp^^i2MSUU zBaB2y`6%}xMhNoHPzHkC?7ZddIA2 z@zxaLCQ=1=~S{*R5p-c@*i+jD0#S37yGwBp0l^QV_fnxZ953uj^_t;l{t z&fd$F*Mu|Yb)RngeVAuK^8o2pS@S)PcQ&t-lz%udKk(s;^Di!R!G5b`2cFx`YJJ$s zxoh5kHTYz_q&nD3TEC3>3^F|nPsQ@vgPot}<;ROk!}Uu=jq&Q5Pfp!96=~RW%Nwii zp6`v9xWh-6N?POY@=x?P^pTqFG53y8=jUbaxTpTduA8m}-(pY9({aPFvaUpBRlKV1 zlS4NSebRrUKeDweR@EKmH#`?MKn)$vkLG#eF7>}rg< z8W&D3ZjHHi%=UtSU`5PaR?fB4Z=EI&n$vTqmtECSS9N$e=Bh^-g#V=J1S!F6%CEmT z_hPs!=BgtTJ=bieB!W+c*s2he=s?CVr4@q0M(i;5<~n#xm+P>I7NKAeDF&S=HXTaIYO-l(-~_F!-zZqHq^SBI)TY?yCYI1e#*+*w5AR=7Im ztb-FlUjAPdHYa)yC%O-Ua@*3!Kj1V)hxk=a<3g(C@(Z9%vhPA-^++p14Beb;Hs`YYrMuug?FswSPSmP(t+ZWHO>6iG1B=cse?74Obt=@$3?P_z-T zhZ2U>d+CgDxd;^PU5o~YBa(0EG| zbM8isFdC>|a#Y0|wgfv7DtXCS7k824rppu0FJO_ns<$nQvHXr;XS}2$*clvtr*~!3 zoOq^P!j{&YWos#{d=Px+m5z)aXHx$y?->=^Lbuz z++9u9>mOy#>sQ`l0H;N@pin#ib#$ES__rTUVDdjqi z*PZev{vHqD{jl9jac~m6@~s0oR>c|IOp!4uRc~cm6AweiWU*b_^VS}jcnh~gU2Ru; zSFl&$0l4g{kGkp?INSf_I*({1QaFV#td@=dpA0dB@ zp~5CpvyY~x8ikWn)7U!OP4VeNWlL7iN_9Q14qZJI3@lmYz*(ugh!zAJ=zl}gn+_E8 z16gQG9tklztH)VcIahTfQq@ zIUw^Ux_aG#osK@z0iKyj^u@AGN~(($G=x#KrdVSe5!^w3(Zs#N`0ohl>2wQTFG!x? za+{Ds59wg-Esw(lnT3hjltXGj{XtEcz|=62T7OKbaso!zr%?r`9j#HSf6dlT-_!J= zcZhn^{>Y?2M`iA$anQT;n1{ZD!DT22@&FkILgxf`Z?Yc*7b|~GMG7q3C_9`FF*iD> zCM8*(`ZykeBk+jtEZoBpMjMQT^x2D{QFn@xN{USVs;n=hraLYUi9=&#lI{0(xI3Yu z!}nZJy$=?L{t-wAn=Zp39M*`bQI3=T=t}RUUvMWclU`FPi<;o+O`ouXt`ogV=}FSo zQ0{?LEVT>j03a&3h}hi}$NP*Iu5!$P916WuH*uww@k^*;lfgq*3iovS(u>;*4rY>l zw>H_4gr4;wVM*!c$%IMK8bX1mXTsNn7Bbg_jzp~iT}QRABVeiasZv(Jkq*4qgch}U z%o0qYWy$VJwjs3MnJ|_dX3kO`0iA>$?_8-y(kMy-lZ2kV9jStGloSbiGZHId#Ft4% zCt+fW-L05adeh2DF5;OKRJ*>d9)e^Jl!0kw4(ypFFkc9!e2>JG@8WXvXM69$anA4q z>q5nX@Z$?NFEB_inWZ}l!{t#&G9bCyP4G%^0YF8?1=8Y>Am7i4K zs9rFB)V$amsptq9KhG;&DX;j%b;A{&j+Ji<89py6zgyF?Xt~TOyn`S`a@pI?DiClGtQ?v@^kM&e|H9r| zTcZv8KGVdCyMjGRv8v^Y9np#%xAdQ#jqlkHzOr)X1CFokc|4uyBvO#Z9{l+{XPyH)y-v7|bd(9=9>OfhRrWRT4)J{*Z} zmj)avm!7;iK`*xg4<*r*BX8MJg$PeEM@__9L!@%xY9L}N*f>_gENrZ_Qa2r|A<3n^ z!KXN!rzMBdlR^q+P{yy9HVcj7qzS1>oshdZ)e&p;7Y@WV{G|Ry{erOEd?4CAz^DH?M*x~nb%Y0S_Y5{0sC zEs0veZQQZSv8icz%0W^HHe51q#cz0n-I30u zUwIC+fIArzhNLXagUtfW3)%)0fgQe51Z&qFYkb)%U}miqB@ecA)Pw3%$*2uOQsbTc zh8rX`{8#i7wg^m9MP6X(=>^amsZtE`v1779rfUln9+f<7Qrxx3mX!RaL}=(iOh}jo zI(g|M(21<0o&8KODDM(4CSkq14+#nIBx4AYN@yL`!Gwmyj*EBb!T*zz|AK@CUsRF4 z#MC#U7<#Cxrd8pftX2OlT6q5)50iK>=i2V8yCZp?n1$`Ju4r@Dk_EmtZLu5*l}rAW zMi_c7m$gO9+Lp_9M$2~oWm(77W3yesLPSXk)h^k}4kSrVT`43( zMys${UVq?j8o3|ts`ewvCluIA00%LdPX;QL_t~L*Or927qg(OtqAN(48Oy|MUC*I1 z@jfNA9wa)&eze0wcy(oDeI1x)hw9cTA$qpoL*Fk??q*1FIy|3Rs>D|q~k`% zg8#>_-F)qib@yX1-Fs+w(|1fdO60FU9{-NvlS(Uy9e6$sq{H1b;sNEokUcu^;vi-V zrUh))nQ?IvFJ|-sDL%_kB1lk`$zQ|8(jx(z@@AVQr<&iTsfMpr%2dN~V9(s1Wk*fa z0Y`|KqcLJ_{K5qn8&V8G0Au^q7IQrT9^X+gd-O5$_}gf2(|NRF#HlD%o*hwhh@%fR zr{ieT&z!)2pkaa+xrWrAbo(M{HVhAFa=qRPV&_Px%@v?-& zjMN_blMSz4`D%neM}7%X4@%I3w0jvXSf~ZK;XxJ;y*deuto>p=-o{A?h-Q$-3{%9d zxFcC9T2f3g;isv7a9(_aiZB^-BOXi00%i@O*=H(@(IERc7`bBNt^*R?$%_gb=dFf@s(jy7hsE&vDOouGs9suD4z##>7hE;)0sF11klE z!2_h1&7OZcXb6h$WUSgy7;a=)+1H-A`b=;joD<8en$^TDnZb&n^R13}wqq7gl+7Au z15s1qs)o1khF4o|;niM5EFcJRboS0E(MdH~#BbpeF-<8;wHJUikv^7{j57m6BKQfD6C)rRtL1H!C-WnGCu7*}V{X^1snmS& z8Z||51ME89`KSmj``UicYEAD4bO_I-e2p8GtUtuZLZu`OS7=aR?X=k7A4tz)+bR}K z$q(4$`^758R`7u@3-m5*p#UF>U<)O=$b#-=u&D|V%OGeVeWS<YHK$EAyK5I{jit~G6jbrnJF+_X=pvBh2UbOxR* z-1sDDA+pG1NBR;<`v~gIpkhjSRqls8HZLi8YD5L(8EDQZ4h`&ERq0?d*xFeQY+VgJ z0-8-5$sYFYf1=pQdW>s7MNH`1fxib;Sb(Vt6?L&-g789S@Df1iJ)U4759+iflEPIW zB{|9(&Claw4FyNVff*dB9A;8Kn2-VML2K6lB)aON|Hzwox zB_EpS&EfLzTUW{}Nh0QsSGO-tMyvOPdQl=#R-NeB`$v}|p57aV6;C7VaO5W{KdHM> zx6rw8X<>J)V#l5Qo%aeTB9)oTEkUSmXTj_dMyH+Z6}xB(Xw8eANbosShKCtR`6h1Q zD~~+~J0V;-+WFK|6zzv`j(#5;`9TI{!9ZUZsR|#R#d6FYYNwUTlSVcbkuRca_&vzTuLQd>1LQuH?KGCwCiGm|fGcq0!0gk3IGYs1VUsUS z0-&obkyM^i1y+)iiFg8K(y&T^QEBf_>&HptnuZltYGrOJPN=PDX{|emuueKpFhdf3 zT7?o|;kt5Zd&2^mr7>7h`(hX;V#B_!8@L1%*N8<)XPR`#mr%E$6QCyhk>Q8(JW`+i zj#949%}tx4cW`Nem!X zQu(_$OPD1Q{2+iAfh@^UgSLeNqa<+{H5JHGQ3ngm|33&Q{byu=#UMA0+5PfIq?|EJ z%>ur{*?@qCk&-84Ieigp9}HmVON?*ZKDT5mMl8kd50A_rnKQ58Oj7cASWqV}rrGq?8OvvGIqPvVO`%zTx6C#s`PSlQLi@#NwF z`xcnn*>dl~QNlcD4wZ+VS#1A|hyCY&hxnxaA-*_KeEs>k=flphZ{gr=SNkpgE*|Tf z>kAEqvlpGWhT?UN6vVKZoIkcLyV|3!_D3v~&!1Hlb(^$5GwHjtjp-c)2t#Zt8X)Tn zOxF4%9X+&GR*vU%>!0G%1|bw6bXJIIhyj#{HQ2Ay_}%~v_gFAASZzpWnV^5PJU7mR za?#G@2@p1q@Qg-F18s<&QtD=VQiV1oS|B1^fsiRgzN%giK>5D*YcNV_dYTY7M0AFJ z3GXt>iP2Dud?LO`k;*Z@bB5c=4up1&55}Vs?ex32qlD$lrnO8+9K7`Cxlrm zlF*6Z<$VNyr3Ef6Z>ly$kGMW6NFL_jM_hbTa0mSY>>-w|o~RY3RCla9R^aK=G2gLV zv?W@!WwG?LoLEseLhr#PsrTmv)np;KBvb7uiWyoEL3yP=Z% zX1u66JQXR}h7X?Di;0I#lTq9gI**7#s{>4H(Q#L#f88#c@xd{xtDA2X&%LIAah>cdnP6ftwek% zrN1A+*0!XJ;Q*@8n=q0&06zMV$Y1Y{2a@$<*ONWR6MSF7+TVG!N4=5FKJ}A&OC-#k zu*o5J)q=JYr;Z-&JWkXvtBSlFIT1S&0uVZzqU3c-UZvzD5{iJ~8=de|1dQ)d!H+08 zK-vG5+A!01$EC2nI#S8XH|SKd>O4e6nZYKRM>3NxX67xvL>VLuL!>n?8EuQC#1}77 zLW({~(#|lQjV>8#qmb=l66Y}}kS@}Mn|evf87yO86B3Fvp+lqzE9b5ci5~{$1CjcU zSlRA~u6V^!5^THPfiD4;c7E3OZ`*&`9&__c^*>phF1z<_2UOUrJV>08;k zhXu-L&{y3X;5kQbB=>ME=g7=q#M%w|gVve8xN?F%6yj6Zk$i*(-m+K~Dcpf4;{_G; z-%%Mp8Of=SJBs7EWt2Kg;`vo!A(Gb+&uxqsZ@*WRdq;A!5Z zKg8d6R_p6l`+3fgbx*@nhz%`HA;7~anxwlX6qat{458T!S>GP~)*!ur2DjyNOV&-Ncy)%HWqp2BpHF$!RK9>}s=jZv>Rav?8})nc=jio? z_p^#n@g6Qaj|R4FAEkL!@dHQWoqh2GPsMYq;=6k8xh(Wn?iX%BUj;rNp+DMf`nCrZ zIt)?TxzZxSit`+1K~@qOgZOTupXjwgk$|a0Sp{iL0&Z|(E1mr}I{Oiw5xXxEKxA8t zJ~%f9%8>cVN@m9yly`;_!l4P>q#qJLrt~0XtpwFbXd`WBI0E~RARae%3WIV?Cq*{k zB82RcVwAZ?z!RUo1%^JB)BOrcevi6xi_U&R$w^91Q9_i6*iXp?B(RTeZ`-bf-L|p| z0F1*u@W6P63XM`SM#*!OFktX|bVdsMgsJD*lgB#;kM~INsV-B-|3b;@l>C?y#&27w zH>-5{fRbNQ@+l=zO8x~UzoMj%$~~g9X-eLpj?044Nslo205mZ})j|d)eO<>#FLuk8EsP#`WZENnlkOA$90l;7^Nj$Q0Lt_H zJ*$@2{nEtob-&;;|B9>pIcNDfm-Tbb{3`>;H~uGXTa?@OS6u0T;&9%!VlJG`TQ(O) z&4r}?7;h}-&J&~e@ha7$%ns~mCj}$l3RUc264UyU%bk#r?HFCk4`zFqEh@UZH zqq&MBTsA0%(#i-|sKT(&c+Alh;q39e@}PJWYQ^H3ZM)WSwIh&UV$KdQ?QIYPrRT}8M%s;gUk{vMTL z18C`3Zr&el-haEf^L7@jU^?etgJt@u*~y@A^|eTI=Tg>z8Ow_ENlb3sQA;zKQ#xY< zoU!f0^Y9d}!o8L3(wVH4?5>%tzqVw5XXlJ*#hQz6IKt8-l2;qE*3Fn77&7?khlO4} z-xPfMAxFQfPgyuu1=U;ViEw$K@*-URL&G5>e~6#G^h=JNe0kq%MOVLkVBl;dYQUhk>h_Iai%(#kFMHSKInO#j)YBQTuswOj2wOh6O12C8(+~!uaJKn0D zf3(PCJl?I!o^u=B4T5cXGW)m^FS_r&efz%7Ip6v2?f>L-)=&_7{`7m}gZnA!7kHxv zu6(gIz))0{;wheDX zHMBrmTX{xpm(VQOqQ~_Xt5-rxgbD7kQ8s1l+JhZXa*xmv9aKx`zbE0coI9kas#g`c zXVodv(p>Xzvn)C`Te!rn0kN|;)~GO*h{R(7lk6G|k6st}(3BXT62!!;Tstl#LL@OX5|#v+ zJBEoeC@Nu5Z$2nrBy4I5 zPpc#TLAka$Izi+SOC%g>xfJzQ2Lj|B-Ak&&wsOl|*Ec=SeiT#&9#MWzmh zZVE9zE*|8SDL$w+R2rC?73-kxq;JQ_52!6_gFNXdM4!!5CA%wq@)J)(_Swv{*^`-* z_iKy(Lx0tkKQ>f6a;E4xn;zV-I`2&8t`w|&tAqbwJ-h|aQKRa5z#9x?5?Q#&QnPe` zN&ce7Uk;%wK=L9|i1fR9I@I*1@DW@@^VDWN<@Sm`xE`%s z`kI(rf>aceD3quU(ds#Y0{U{k3Qx{4bEXtC&!$XsY>K^1C2+z>h~gWnLR1qWJtIX$ zHPP9TiruaXDNS9cOsXQEW548`uBuAlHpQwUImdm;)41rXLW)zLmKqY8>WJd3RRz5y z{beJA^I8@3R!X1;=ghHs7^}vrLU5a+VKmBfJ7-Rr#UqJkwNwgpr<(T+HD^g#qOEG4 z{tL5@0$df;UV;$;Z464U{0CDAwYY2O`-yB?@DaTcJce#79Kg0ujDa<{}c_TPMRe1h|l7vv3O(sU+f% z%Pg42n9R+Hpmk+#WHup40V|Ppu?6$ZO0DE&vKgd*dLkiqVh%@SU8ct*E8MDDP*DXY zFto`!Re=$6H~>lgP*D0uh(H07mUw%I!-#x0@+nQ}(sYYuT%rt1I0P0`~%|SJwMqEcCzl6LYcu%zyM28-~+E8&GIG zGoFoS;wxiCUw`_{Mp@f`CG(Y)#x+l1!(E@XXY9E%Ywm6}?}f|@EBhd?)YO*Y9yPTs zJC~d**B`RQre_wpk6hkQ8k%$aR=U?3dR7mYybakinKQYw%fm~(JnJ8cHBUeM( znZB8J{)$uYK9_KQes;8Nu+8-IHg0gA<$ZcMU_ncXGZG5PHKEXCoS&Y+Yey*bt?BTD zl0(cHnHdoQi0mvI(NSSyA{2U`7QHxxh zeT|%t=vh)|6!NuD#=g`RK2-s9Xn-}QSq99xL!H5w04?n>g(!5y6#B`tAna5Ku9T2s z;7+X_(1nQe9$>_F_>o!cXh1P1Bt<+1$vZ5GV$&NcU#^*S1gVl6BCzPbwlsUkUh+1j z*|%(@lfwa49Dq#mAV!BULRBd?VT9I388n0hB1UK6k65JJ)E2{V%}N=}*)dXO6+>;E zgPh8dLMW&LLBY(kw<#5u1ubyTRoq+Q9()Te-!^Ljh-Fnfnfwn#F`e=g;}2>H!sOX%6f#6K(Hs7m>k)YCWH^TKYzNd( zbl=dZHuEr8xJJl2K_>#n^8*WMMr z=<3T``^btk9?}bBND~k%VZJ7TLrsFZ%)*qOZ{$#=Aygc>R!20bnVYu_y7NBvX!i+NK&Y7 zG5A)Hn$&#E0lbYEw79F_>RK5rx&nD?fV6lxP*bH8WlJc;$4All05%_u#}eU44E#BC z_eDg=;)@vJ7>R=zRq0QhAQ7XB@F%?r(QWEeusPPv8p_)|f8jA};SK=AH#cBv$Ce4M zHt}lHLDFchubc)~o91%bevS2LJr(9k3L2lL*U}YVF zs9n5bEK2{^R-6;3PgPCQt~s=6S;e)DLRoe~`R@l-)7@s(RVVLk-pA zZ{#pV4csN2-4ac_DQJlSwE~cwpLsPTmf2Ef4%! z(8W6;cJsih1?zYh#Pz^Fc?55CKQyf>L{W=X1=YF)8+qX1f=#n^fqGff2a2&v9wqu; zohUG{2*!z5kJ`>J%}NPD_ueJN00LPOz8MafK4*cR7$tE$X&xYU9c%_li}rdvaqd6AuTAzUL4JZg_o&&a}BU3>G^y+m4fbdH55 zNar5G1$0h>WGOnKbx-x2K@90R2E>q=W5DOuxC3~!9CU^QcokC=7i(4EO#tl-7M}VJ zU>dX~7Q zZ*>YdW7!O;Kn0V9sLz(-MSl|?t8ROvxOOb>KD!pqPY%glM#k@@hhe zDwUaRu3o`fRvMqY29bh{e2bI!zq)4cE7kiJPCu$|NS`jb_pH0S3hu6z(?xf0nk!kI zcO46k#ox=Z%eE!kn)RuTI#0GS)0l0`wB@Grb$iq1lFPI1@)unG6<^WSo45AvUJd_m zm%7*uJraZ1x60+sfqsbbNpJONU@9s(3Av?ts=T1@{=vc@bRWxe4+GI(sah#biE;I8H1A(M`fyLN`NfR+lV(U;brzeCEt*R$?dhRA=S#@QJYklQ zAlRuBjkaHOX7MuhJ~J#c;s{u-z3{BkWdgk`7QA=@vXa%pPtZJZ|NauPB_!%_&3hKl zW-n$gt{nX$kwwc(mQ)fh{xyvSI+aN=MvF$p#-j`m5(Frsyi{oFGF45P&Xx&N5uqZG zHCnf27VH|Y(l;nrVjn~jwpG=J;wiXEHdW0$js)?t-pBHY$Y3Cxb&I{({!IUhcg?wP zwX@{$W{+i#y>t9mCfe5aDFxBGb6?)M?{mU2X5EKPKjKbUc9=SRGa0EXaPiyOaii&1 zQIIMem9`yG4tihWt~GEP+K{Y8LSGRD>WRaXQ}-gr0$wVnQ=g)*FcizObmtULCuxuJC2ko z!`yMPP-0F?zYKRYNtwaD!(C1lu5&_`k*!W(>Tf(t!9JX(j^ull9V#$kY^U^$NEVLQI0~UkQX2SEfS95ILP!xM>Tp zVeuJ(Pxc$EP_fJ^NdqS*;-j#^{K7!F_>Z76vTSiL(c6&QQ}FJ4OwkR;krh6dIhRYU zcN{Bp94mUC-89h$j&D-5^Eoo1;D`c#ND#OoTPA>e2gSNWkrFwY#nuvG!byBXlP2UG zlWk9G>qBfB`tH!QZHBQu2fT~h^PaezTuQF?{@ecd``0>-7d>YR9mjK>|NhKRPW|1v zw@>9eju$*)Bs_=s6?RKm|W^o-$kimW9Yz#xy_KU)sdB`K zHz4l|ROk?7>5lObakmC48H#@g1o2+v<*kQy3lQ45F8JH}IyCt_ zMS}<#ufQGlnfb$aQp`AwHduTM5HE^gRnWKFQQ`g>ouy%IGe!a^UWar85d>_@7-8l? z>e@vRMJ~lkrW6M|Y#yF5a^O;IiW}E31MIOGN><9OP663xGf)s>J@gRGcvVPQ)F)}` z&bgFD>EoSOSqeslzH?_5sQp>$ho%`iU>YXCTSV?JU=b(aM>b8xrxZp4-8S(&Mu_rd za~MQ5#;e;*Bbb2_AhU@$AD20@ZAEqkWGhgy3IgXwuSX_$gRLejISB$NWtZMnGyWFp zmhMCJKgc-%Phe>I`*1cN~8-C0_ zbQXJF$ek_uyC2x@*;adt{-<+Xsnx&U+W%o|f2qyCe17TtD)$d<1CO5S`TqG$57qhf zww>}cZgP~v|7)^!^zE0rU)oRqw8sSTaG<%G=6M+h%LMF$Y@M12CtyEtQmz4VAG{OP zhT<*ASN1*7rO{Cx!M$X12v{L@T11m2qK+YRB|D&=L}YYQNL-Ke6&})4Sb~V|ZM>?Y zmSDY7B1SjiPeM(GgdhWipp~-Pznl8Q)Vig;U}?|YT(j&e?RmCfZF#f@EMCiF*2KL` zKdzyLE(_9zc`tUaJ*vxQkkF7K}@Yu|9uh5SjGSt>R6d0P*gw`kBm4`Du_R2#L#LOC~93yoz$MCf7oa?SWBF{<=D4`u$ z07YX^H}HDpK^EJLOGMpT)3pnDgGL*~niA+&kP!8%SNd;?!L5?YClbhtkN|Hqs9jZH z@Qg+}0G9>o3WrrT6AnuXI7NI`{9}yJ=M!JUTuWF4rE^n|O%t$1UZZS;hw$2RJuD&3 zCEmeuHkiK1wc5sPs(Nq@&q1s;(z*DoH;KA(Ah#kyt>fX}qtx74@Za-h(1AU*ij`A=H9)?1DjT8{s?vCwiV zJ$UE*Mnh|E5VcmZp%=Kcn%zbg(EwSaxGa#pEL(d;O$4#6xHMFv54BRV-Jo+7oEM%F zAUm_fNle>!zZ5MydFdv+UZG5*kW?Lbs)d@Pkx(^)CpY1+Az{CwDOwBwy-JqYlTY6u zmK8m~q~Vm2U?dJGK5zifRxV=5jzOCcbybB*FW!b|#i)!4MZwT&YqTWd5~)9-iA5Aq zc~#(9GBO6j7WGvXg;c@nYajtUdo99hjC2)RCq(x6IGn)YcwuCEoG1pd7YeCTjJS!=A2J;0D=4BZ?0uxWp(vGu)? z<*}u)%-kZo;r3;n8E1}PjxI%4yNm9F=~J7G$=OkA-m~1Y)UtAFY0rA|;X?D_huy{I zXBW+2Jl(zxNB!Lk3m5Xu0}t7U{9oVr(T(+EXA8&9t~p+TEje=V#zZ+iUsQ&$ET3&V zDQ`QtLHMrrx6R=BI6FQk$58&hzx{L%^|K!P>1RwoJ4!>m!>no2i&&9ha`>$dMiL9F znl?h&V8k?DdZ!U18UW4%rc6i>f*(ngKTIHMc|`-0S^N{YRi_p4D4A#CsZ>oYp%4AL zCl(!jok84&D#+nenBlsHY-^@h1zueBpp$iK<{cT&iVM{W6nc^T_ryo+kMM5A76Go@_PlI$?Ky z4F#lDh{(ED_Rz_W^w|d&?_Dgqj^wRJc6Ux&4d>v=O1jHv1%O7x@>N0i-*$CPW+HLf z@)DkHd*xLH_3mPBPC#|ZHsg*d=QsWrl#p;;D5NzZDwhYA23DJjEk}y3r}NgQcXv#i zwXeg2Xrzoxl(A_d%ND6(&CEa*<)9!To<<`;mh><2ML^4ug{*5i%-_k)oraX80kBX> zs(-;J`XIvjQY-h{X zn0a!kBn%8tW|}qDHN>1r2frV{+c3cCT^vXfjCQMFQZ)OdmIGj_0buamxr%ogmR48k z4M0ZXcfO!T4*PGo|E2l;k_j*ZOLhv3+C*wdnaE-?r&uElkTOScFQzIyc|3Kn&l4n~ z_6Cpv$1`NK|FvU4-}w&q19tPoEVP9vX=OXlUa_nZ#*3pEp}H0kWr;bAbn|Tr^St;5 zqyZB__9=)m#|ee6834W$b1lAy_q0SXCg5%i%Hcp%LCFqdO`y4LCcvB$+VC$BlaIiJ z59aDKXYVr)%=gS6diRwa?ss3x4rPWGhT&5K7hv%3&8FFnI`2CTX*1g5iwhTX-OKxz z_QTOHM_-yQ)wviu zEyKaK_ERURzdvbz$!_{-4GnRi)`-`t;H?lpE0h(Y4u!Hp^QEv=go`?iw?`nVJQDrK zn21pxGoFD6jzkkSYTIlBI>|?K-p6J)uuI)0AeMl8dKww0qsTLLKejqK-#@q8)Kk+~ zk1=pXF90oi0)CaC@5AWFDo;X|b^=;<6JG@m(1^k~>;s6izZN$gD;p43sdc9s-QdpuEw%kS7>kKtewqxzS~yU*Koy9|eu z%6<8Eg+~qe01o|W&#<~YMm4HR>pzvifg(Zwf<>(r?e%`i<=6{=pZ85F_ zGr;Inju=idj#t2(T&_V&a*2Fh@2K)RkHgdlp(Tq-T*=o&v}pPU!U!$01s~Av7}IFIC=aV@oD&~EQV*K0sldBceGMD z({;cfkHP72{FF^=xQHZbvi+;E@CY1(gEQ5*SC)V`k|vO{dqp^f<5ZWsa-tYDl5A0` zmGCr~!kUFb;@2QY#3d>s1S6k5h(Ca z`Lf_Sl#d_79h|OqP*&Hw{RK4QD zQLH-(k2LnIH}(}8`+hL^(D%WGV&ijZN6Fp@yAAMUzU%Z)#tU5+i}k~K$M8pWaFVS^ z4)b*O+;J|B7p(2@70moaVtQrxkdmLCoScPEK@25&ACYKav1olu*w}AU*YlTt_od-v z7`$@ORT|*v8a37E+c_OO>k^~Bne3>Y(Agb8+B%D*k-uu~fPD>+X$mZ@N;Rk0kX8Na z{aeXv;=1zmuy_SJ7jS|Q+!&uuL?&bh`e};Tz{V>*pvxd$#t20kPQMY^3Sa^eFd|DRbk!%`T#BrRKraw|BH}LFS5e@m;eve5P+LDg z^a*QUXPXLaQ_j1_wr@Dy>(1_ivwPjyTX5oWX6L~C(1vr*y0f$3?7ZK-a`P_^6rBg> zhd#16K~O=8TH2O-mU@;CEFD-$tX?X%97>z-xJqqLrGe>g{-~}oXMP8Y>CzJDN5wKW z4PUpyApy~ZJt0`@9$dlhdwhHxKB-Yg;IA>0j3I|sSQ0asfJ07nk<8+dE9a@v$ccy- zW&Eb#0@MP-KY)pUj?oJkp-{-?_(&Al#G{yU9HX-sUBn2n1W{|UJ*jRPKs7i`a!Y7T zj3h_ChCQ6R1(y{tDS*P*};jU8QCBW%4=95U`*Z$RS<12Co&XAbXYE z2|1e)9-b*SW~8yZr^X|DI>%o5jwc3YnP4~WlK=>i;LRp@g5sfr5+&-kL`tM(N@K~EMa#iL>?Q>W1ek766cNyp zy{4bph^|SM>DW`DXR>3>9#h(EYA2bUY!L!IfZI%!l5y>#t)>LMn#MiIi@%1~u`{BRX?G_3`^B;YC^n5=>{R6(p!H`Ql{NFT1%~LGJ z(h+Km9-?VXYa*H<4S8yZwB)H9(vhcrNKc-IAp?0Dhm7#lMoeSoAv3hqvHFN*%sONp zvklqC>_c{vXNVMyIffi0ZHzd_Ttlw0;-TU(_mF$cGvpa787dho9V(?M4aI4~9dakt zCs+0X^b^BSIco~Tygxb;`vT|NuNBS0lrS8Nj)X=<2g}8|;dp?H4#(I~bd=QX3q?3+ zW*7-YS&sJ`L>uOu9Ow98JjRR8Q4Shh8ISSUF3wMhHh^}SgV*t3{GwPSm2<-r@!*9B zC))6RJQ9qL#P~7M7>WiibJ5Ge`_LQ9zJpiBA`G+@Lb2$6-?omeK1S}#e%}jc`r3E< z7$F{vvcX6!%I)_}af0vQ0n5IiAaG+BB2x^sj|%&J6MVEs7{17j1%>vp&@dkpVk7bP z;n-MDP#EjDyv@gq1*4%6PKdvl|FHuWMgi5&!e~PAsSVxf*a}^;Fynk|m=lB;f0!S> z7{V!=;Gs7!?cN22(cl=Q8wE(lr^X>U8H(=M?&~~Y0qAw@?TiF@WQvJj^;<#@A#4+yhVJjIVrV%QPm}5`zq06v@ zqnxlIyY~t%5_IGQcbSVY5sdfyfM;rELNwyS_gz0*n;1vuj^I$He)8xp^$XWCoa z8EHfIFca~S_T89c360^NgSnDZu#YVxd~A$qY#EEO6R>LqCReGkMM?y4ar}ZMG{OW( zIuKy??`N6=fw3U$#6WY8g@FK&I)eP@<(Id8`BJbd2Rd(5bjDS-qP4IG7%m23oU-X;Q8BZg&q ze5$wS{0T0|M*&xzKfPn?`BOZ1BsRedT>JL((CYk&(1r5?9MJah;P9m&Z20rzq47?{ zIBbmXWJ5wc61vbSt*QX4Di(9mZ%)MGT;A9CD)<^=bKwd^*Ql(~G80Z2%hoNFtu$k0 zQdVZMcGbEqTkFr%cBX1Om$l1(kgn}c*{Wua%vNR{#j}@Ej=H5Snbt$8)>bv@;&$+%lm?v^F@s=GZ~UB4JkRd1cOWUVDo{t&)R4Pzt+ zdD$Nh!oti`95qC<6cBZKNXzMfh--!nW(xnYURL`C4P;ygq{GCS!yXxg`V4#3w47q~ z@|NHYtO45ESR=%C)&y}8TgI9Js)Mz_o0D@56|+`Ixmg>;9@aioLP%99TMk5u9`dqI z$S>o{S=SqsLdq++itsM^d+L)d-cYA1+@qGsDb{_d1=gg7D_p9_Qoa~U_sK2Pr_`3$ zvL5JDE%dMiddR@D6rOcc8h?doJxz}Kb3wp-i2ym!hne9Bpe`mJ18g)t#l(1KnCF6V zj>&BxhF~87HsG+DhqZ!{2+}?RMHuIXLnAqqFLaQ+!C{$O!#?7|;@`ucl7&qIE(l;g z2}upSDJL2u$d!T^>Ok zu>uKUBx0Ka)O5&MQ`72qeL$Os|`0kBzU2W$mk-cCF8N5bRlR^}X;W6Qy{j;%ks`2NM)4XKU;5eb)|u3=gukrFMyURXBHae0)Hm1oYrtYKFF1a z&2mlknWW`&M5w%WT9?#?t!lZPVzsKwGp&2dca%LYx27n-Gm6YKO(*HolwUt6YDXtR zeWF3)-9%%Khw~eufQ$3npgG?Pk*GsKfX72E8hH+Qf7rpga4Zz{>v<5ND87so#m15O z6hsXh6*VJK0hxuo{Z$^oGZBo$IX((VH;+Om8aHgXCsmsQc*2Vi0S&hn-`IP7@9e|^ zw`y%z^8Bdshm~t3-ubh0XXjs;du6dFUD9#AZ|0dEsjuI#80O#^U&fMpfD zTyV$eU~lEdfpDkvlavJ2Z%9N4)go&H(NPc@`LR%xV}PwjnI=c#IF?a)HYOx6!5pF7 z(7FYr#W*nESX^JnL;#M&Kg;01z+NOY^>u>@S6>it4~rByHqJ$vMxhVU6{bZUkYZLe zo;=;l^B|TQ`%g*KjEu|7q=dxGh!=&6TqKex*|4eP?AM_) z!dZv_jal^e>a~*ch1S)Q#--wHW%aG@o861s-sxHLq$=CL)Y7hw`xHc(lE#&i#@~JJ zsr=sA6?fwUN(1ejrSnB|MJu)2mj_mz2S4>zt?MECu}}}NU$=Hs|H`vP`>wg0`as`h zT-J6|KZd`L8xPlN|6>ge@rFHy`v(6W{yjv1g9`HMDz4ynfP6qjKqi1ar{ElDnhXC_ z?4!ydEa3`x4Ppk69B7mSKxUu|?JSx33m3pMDqpY}7SK?hYy@LW=#U8BiBNRnO2QH* zq9aOF3C9L$qfzi1`R8CvP#v3Xvnu=#}usduc14_C5QkAIovm1z5eP#c-7(m2WRCyw|9Qe z+@6fPKIN{@xI0ts&Si7j-E({NuDdr|*|_3q1X;n;xR^+}x2@Q=tsAN0s*I~H<*G}& z>NBpkl&fv&{Hm+xp0{qrS(kM;$Th!)W<7$Q%u{iQrBH}2vGk>Gm_seAnbt=4#}O-& zpzf!XQ0P z6#zw>)bb#Dz}|v3NezK-Ch!eO1ME7>G(1`BhH@L0Ct#nEGP|4t>Qxl1g59JbqGu*T z5f%^-ocs&0O9&R~VEUsHIs@H7gaa;K;FuOr)0_oGSZq>gLjho869wMn#nA9YM0wFz z9I#c40d>_V5g24-CxArC34Ue*fC3Qd6Q~lK0M!^OgCMPdBS=;1S_g9y-uTIoz_pRa zM7S0%GC>eb0QagGw~axO8h|5$1&t5KD)8iCO5FtM1coCGl?XkEUxCwOIB3uD%mnKF zm{a7K;TVLA_+=2eRd^F2qTFLpc7}ou=FG)l^b!%3jtBW5%O_t80wJs;#*cR9((S{jt_(&xk)Q31gI-`PIIM!< z>tOGk`9ce^Xkddd+5pMVG)p9Yi@4F^=M`U zWU%nZY$j z@r~s5gTE^kSd?!V(mm7Yx5 zPD%wAQ??pNIZ9^i5+=;2c!-a1i64Fka#8OF95fY%jLm^}7S0E3rJ2^v($UU1!Xcp$ zO_iyhV2k7AlOX3!>!H0PuJHGAK0omFl5SX$F=dDpmDdZWnk%P(Z_II@tS+x+v0Sb` zRpk%Ta+wnZ4E^u&`s7jT%PH1Cu=zi)=Y{%X{Ac(48+kofbP005K`-+4v-$OXGCgHB z70c8+^iygoO1F3D?<-vXv>vEmG3-D^Goto831#Z~#8H+aAzUG+)MpsQ*G+-7$TQ2k z;0v{zis3b>^a=W*$EH_ZEA&DGqsf~X?RD&7K6TB!@9q(%(B|r?-@MPCmIDp zmW6~#60sWvQQP}cFW&&)77fqz4<7A*p6|gIbNfp@ zeLN_NgoGWF6OoAYO6V4&mbRTi2` zLPz-{SaCZ>uV7S)(F+)%(oQrGlOo3tlNT~9PAq;Q8iMh0M{$&#BsyAN3`QoTbdC(8 zh#*;__-`P*LkPl{vl-;n7`eIoDvh-f1xBtoQMQ4?;&^f;e+4iF6R;K_A{3X-7_(N# zje~C;%$8T*s=ZkY+J@4~w~np3Dl)Ftl&f{s)wWjNoG$mjHLzy)ynQZDKe6U4&p3TR zXBYRRo$Xm?#rMu-s&}TUcP?}3>U}BazK42E#ewSsk4%)a_{QY*$%Tfut|I+rZk@e( z_SX5E=hr;d8Bbfv)3)?d+OsR`sri9Fe;o{ z(4J}7mulE|``l{7G4<_*)rKSMTDqi{eyG>h^wG1H`zFffhGAyPyHn-ew=H*$rOQvu z418`ay0P#2zKqqEvicTxty)`2ovu`Q*YZ%h{Lsw6{R(KfR=#CvAYI-)Gq7%;N|{Va zQ>vtCaWY-fIb-?U=D2a<`iX_!ySBQ;OSdaiO-Hky`lY=o7?jPsus>yMnRyl_J5$`4 zDsEg1FKw3hi!%Jel~rd8 zG9=!aqM6B=qTfEMq?|sG^36?a#Z@cS&t|I|?rZ6q#)lN`Zd#{kd(*lW3V-*gnDR6| zptSZ~zbs{b?eqU|H|PL-J0DUS@2+)9}xjCrx2jug7UMN=)aus<^ZCgnDn6H~cKZ?RFKh(T8ZIA zF+mQvJY_d}4lBa8+#DxaA*e_Y3oI1~$B=uPdY>Nj>r~7snl69@OH?N&+4~`< z=l~RUMJmx@osHTK;;4iAV<%+3Znwb2~W139N_aOD8y$d=48&Kqe`txans_iT^EnmNbr;VTsv#Qf9r;-Za zDFC05H0C%FgJ6I+Nxz|urjsBA5bgzev_g6_tSD)c z^hC)b)B}MAi9Slr(y#PF+L1SBKDDi!D#&M2;U>9UeI^}pf2M&4f4 zToN0OYq~gD99DQlxfbZj6d3|^qpoQuYe_ospieu2i>1PCYE3y6?vzvNGwIBq(deHQ zK1+OM(pl&<08g&Rxs-b>7?V!$5`kQlR;Ha#89nF`HwSg}d_DB#z~*v5D&9Dh1f#?_5B;L%Gl7J@~38z&nyxDVIz-M-}7@yHgj2owhlsutKybdm@iSayM=r%lS)nKn?kM% zIc&hrbF1t0gjs#+j?EiCiUXU1>S0NvrA_V6?oAcpHNWRk2gqspGp$9NS5zlUap$PF z|GS*_I|um?v==qtFGR;hdQxS*FQ!EzTSMtMZdd^=WjqYs6uNSE9x4B)8=_94F~ z$7NzufuF$owj7gs0iA3`v%Jb6r9($W8!VRM!NJdB1Cu;Oz`(}AZaF4u5+kBZb^#&Q z?eW;~Mg9iX)+f*}Lo_8q;{n(=K}lC^j7`Kz_vxre!(iAE(j!#KM$%fVS0&^Q^$rP@am?74<#YgTbc3tQ(pgF@17<0N0;8eG-F#U_RP1=wPuRzQ^oa* z$I``ZAg4M?WsYyv(E?)A>?CSlkA3Q>%vSmq&!;N4T|aRTyy4ilzLl-4%~ZC7k#uP| zUAcYEbZ^7^tZA*J>bvJ=`qo@!3#E(hRTr37*BYAM8+do%y}@?}S9bKJ8;*gI>r;2b z8q@He^=FT6iFvn*5*Q)B5UdeWJKho0GduDs@c}nM>oqKjs zznJ{Q(Xts;p-I>fF_|w`Jydwz7V46neO9N>%QjIkDy`pE-1wx>MXm%DGD_{7t{?xP@g?|1etPG*|B zQ_bC3aB3O8X@-Hc)c@MQ^`rWgnq9NU*4!oY-E-aZ2j&heHm|x{m%BdR_vic8JQeeU zbAv1O2ksbGJ;$@2s;tv9Z=17aoE<4=$I|3&+p4oS3)aT{-`THxy({JES{_|Kx9T~V zwUuOSRp7n2aQ5$QjrV(Ls-)seFU(KM)%d$dEmT?E1FFbX{kilV5N8|qJfi55o_p1; zOJ`HnU9)|;xtM=-?$yPSRd4%RS;Z~$P4i;YYMFlxR-u2ce_?d-@~Wpp`Mx~*RZl+- z0A>UL`*tAUu63QZq*{UTNtyq*Yn2UPEhwq}w5$qM2-W|0y%Ku#SU3us|0kt~clLK{ z|8rT@fKK!CZv6ml{9D~KHP2b~e^*~}Vvp|ccGH;NV}4F={DnpX>0jt*OzX9nwqWUF zx_yIvU9l3Jf@1+f8^lsjcun-KEhv?M$E^z_3xyKNE%OCApw%eK<%@~AYS7yEq}K1? z7m>_t3al1oap1=kTP(mwt43k?2fh|Qj(k&i+IPYJU$|d}T)z}OC-6ubu*Dh&i8q`` zzeH35d_8Wx?DZj#|vzx zrt5A^*D{;gbu6{(*w5(nu7PY>Ri@0JD)TSZ-7RYa?HMkBf5zdazawo{6yf;C-sFkbe>R&+f6ZZ!Q|xvYzK-Hi)0)|lQjRQ7#+e0RZF4{ zKPd4h28rB@R_Q5mEok4YPT(KPrG-`9R1Yc24~I%;ntO#SC(||yqfa1&+4)@zFU`WURr8S*KD7) z60NJmMJ&C1r+KBgK3zNj%!I2X;{uA)v^bG=wP##iDOcC>*|cjvoWIhFOlc?Ddi5V$ zKC+}s_mYp#PR@U8?pupHml{{STeHR9>qqW^_WVfJWXqT;Ql^T9y-UXB(%a>Cj(lP| zE}b0YPvxMToHAHRVhGm8<+6gPv(V0jT~YuctA<^5U(15fH2r&h1$_-Rg{QzNpl~YC z8$7oKT)BlEknh~|L3j--4&7=QxT`C!q9D3^Ick@ z`mmyel52n(B9}z>o(G3Ab}gc6|a%Y!gX>=eS#4Y$;1f707{DbRTr>fvm_T8p6)pnCb;7vtG;a#>xQME=(7dCVvMJ=xJ86eh zb5kJ7j6(3xS9eoL>NY4dG+`vWn}X_|k9aR{t#@v!2(O^7LWZTl&XuXb6Gz+fRcOMS zaYdN~b6CLCEzdeps+p%PPz&+wrm(>*OojJuDu&mj`Km$@rmd{)ssWfXEo+~)0c9ux z#i!Dw5Q9}n(W}ndv>j%ofEpudAElF4=rI~QHwAfb0M)UnR0sBw>uGywim006O)@}G zD1kW|dQfP7>DNKoI;}s4N~*Jp>ccVEm#9RaHoO3X+JQ!aX_**rkH^|kqv01d{Dnjf zWTLk(IFOBv!)->QL1+q%zek(+xKFWc+r=%J96U^Z)K_Ex{q^KX|V-w?iKQ_gkF6!Yrh5%Xz905^4 z5Iq8a3o9&Q1szK8Jkl7vT)|!92}NJV@?#MBizGV!?=b`ExM+|jfd3F*=n>H}65_%2 zi*)a&SPN-9FJP&j=wS$@=aH!Me+H3&SX?3OBq39G(#e9+y7PKPm{^Hxh3p78~Acd$%p)>q_~$mS4PmcGcIr25dCgXIIL1-8QV+KmsjZ zw>ZpQYfjJXiwkGcPT$O7xHD2wd8^`P#XD6q1E0E8|LKEwN>`o7v(D1bJ#`sRbIQ}a zWXZJjq*{7zci-tvw+y5`&(8FI>hOToc-D}usVB@w-8<2{H9MBIbJkxuNuw`Rp;J3VfhnVxv)ldX+Y3s7jJx@+yLrvGZMp8_){k1#zWsBKS<^xze%vr;nEfVv zzM>{mu_aZpW$F0xrF6wJv&O8uda)wq-jc1TojY=`qGt98iqOaAj%7RzDNn=V*|ev9 zmWICNZ2gB9cL1Z~`ndF?(!VIXz30yGs&hac;2)X6ug>ZE?W1Ef*sH?6>u|Q$KGn8!&7C)~Fwogn|1jiAN zoei1=9aJRUy90@Q%|fAh%eS}Ze5SS28X!ZuX^pDumI(waU4aCT>L^Xv6S&ojcY2dr zu-KU3UN77gQa!W5b;z}WBySxQ=~G{z z&Op@c>Jl|OwkOQsH`^ZM$98okboeBqK98%HD0?AF+=)O-jlV4bs_NX;$%GBOgPGiw zT?TG=pq6w3%>E|0NjWTp5*&{cESk{+=gad@?l(xPTHPgp zF6u6X;)3Xq{b~a_&w(unNINEsZobdP&tV@oYDiH*AggZQ!*vcq9kh3s+_-xE>VlAV z)GvPXE+{{}m20bnd{4t?sMB3JRNK*C6vTPmO|YQ`JeS zY(1{UB4!nhVffu3WFMCCYbZ^ z%5&=OLEX%ld?85snS&m14p;67Nm<~kE<4QUe9nUm9Jvr)Ai_)j%6H`NZF~}kkBuK; zT3}b99INz7@>&Z%1(bYM*DpEu%Zj1`;4Vx(4OEUrBA0?;Zlr6$k(e}OzjX5#2a=nl z-1WB}<}iakE^r3`%o$8<1g<)fdvTHFHz=6I2fBypDMBr2) z1n}@@f)|8XWCBb|=r%`G01Vm!;^2}WkEyNszk<~VRT>_7{=Z`M*O(z))D!I+ZZGqP zu>4OkLJh>`3wt`8|AaFigJaHL;=y?i>cb7HQmVu|V_tJIi`8jo=Zqe7V>A1K1ZQm3 zDO>fz*wVRGTQ_RE;DTKldW5@jCEVh<+r|}J^{VYq)=>t9Up*v>L_Y-Ik`4(v0K8HU zCUe--g*0MMI4U~T!Sn;@JO(f{H|of-@zaT)C_CYdwBzJ?-!NOq5wp^sl(;WJ+LGWJ zIo75?D0E_k{I%Q&Q(d^8-(%U;&w_Ol%ww<_SpL^AJbAr~HhwK{!G8s{HZQmxmp1@6 zSl}{6gxiQaHx&IGx4?FQK<)zL7Wk}s%gl2sGj-pF4E|thW5O0F>m4igG1?1S9NWo(C!JS;>ub7*mQ;PILv1_Vyiq;l!E1bB71} z`+85G;ora-Z(>B4{C|TfqPxS>M9vjl@yK02lVk`37#%@RC`mF%m3Z{%AXJDf3IE^V z^?gd>BTyH@*UAw}QUWf>8`OP`R&RoPV&0}}C-1pRt_^@+BGZs9uK{-Sq1CN#f6%Je zSAZX*$@*sUwPeOvlQPyUTwXOcJHFyi%r*c#LQ{sK`x;u`@K6h>bxgteHQ3+$ z#%tfe{6@_8V16Uyn=EfmzBW1A@cPw-?d0<0$lc1eY;7G;7A1y zO=i7x{hAEi-zsWCF=ApCjd;Zqup*f|5J5RUi&I0E4^{V~5lp9u$|WpJTp`0bx zC%!$oUPsZz>rIraa#k~MnX{}^?oT@pT(hrhjBedE2b8!g=R4;*7lAcO7lS1uRor&X z0lvOPp4pRWdqc+Fp0c+uU0Ahmd#KmhG{3TMo1wEt)0>xHyZq+W*RIaO=B$BVN6{PJ z?0c4j`d29TBg3SgE}w1s4TaDD^Pn555XSB& K{yj%_>HZ%leEIAE literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ec8dd7302cff6cc83f6a1fa9c53f9825232b1965 GIT binary patch literal 88004 zcmd?Sd3ak_b|;8^Apim-K@!}-osdLo->A(Lsm+ooS&|pgl4*zlB}&}%07@ndy69@B zi?o#pv|SN2c9p1OKh?ykOeH;OS#rLvs59O3 zJNK<1pCni1oB3nrNql(kzWeUI?=ELQ=l*+#BS(Xy@tbd*{&!}r=C9~RJWRsHg9fuk zb43%-1hoB{F8bB=YX@{)IxU~3@6xkphAsns_5H>HQy0o&X_hVv`?Ypi*>6r)4*Rur z+1RhW%g%lsT@Ln}+m&nO-*k34SxR149{bJj%4fd?T?Opd-Q{M#g z1NB|?0}Wjb1C3pc15I5`1HLZbz_PAo1IxRX53J}~G0@!AJkZkBGO)61rB5 zEOwUs8(jU7mcQ#-gFKG2z49~hDqxoKtb1f0imBlB3LJR2UFCr8S&@sW9KQl3qZ z%ww1GY<^@Ohm@!Fk$G~ZJX-?JH#A*a11_Am1@ds-9>~XeN1y=brviNe_Z!--wm>27 zb_R-YZVwdW+!55DeN*g9`8VKsL-Ubv+qL@k*njpAA7Bm1QmbLHFe*N9gi>4X{& z2kKDjGl6q~di2VXKm+cM1{!fb7HGox*?A*IWc_y&EtB>W~fxJ&C@}7NUo76uN9Jjl@(ctz&=yl*7tVu0C$|BxXg6TdP}lIl`L6Q=To*@h1hZ=oTDdn^clKxU zh=^Cxj0>@x`;hbL;INcB#8USo^+0ea*zl2of3GXd(hnlNGgyE2Z^hE&U#Wxo8RR^IoPRGqmw%<47XwG}-LJ6x$B_S7#VCxj)aQ`;d~j5H zBf?T&KZ>fZ3#l>PHamU;rICl%$61ztj(ud!#{c=od5+1CPoJR1+3!uj<; z56)i?1OmZ8Z{YO%`mTQwID?coMzyt?psP;9nSeR8UC!g0nEukPi<(#T$2AwlXBGjw z6?YY}=Uc_+zJZ@pM|AqM8Dk)Lek4d2eW&|}PW_y40`6QLeW7rF->F@%^aO{)eM5sj zcg7wHbA5xSyThZy!BEB;4!#m**BMjj%t*MeKV#+m7rXlgheyI0%Tbnh-=R!ikH6G9=OZZ6s($aL|C|_|C+7Y6bygJt8TeiHmb<2vCJE~uM`Kh}4mm0Q3 zw{Ac2;)#>grXB%{vzbj$pZ*>^h0`~*-_U(S{|y6ZBJCTRHw_co2}7?gpnJperhY=- zs}1OJrJK;<%781aPBW>EYDB1TRO2)HgD5=5i{mhLr`PWt@N?&aoR^;oUbNfG1;ZoU zARYz!dT65fxlu2MfJOt8MSdmt$}krUg^;5qhZTA3Oi=mG#lHT2@kQ^s;AqHOGc;VY z!dugSCRD>}s^RFWcZl;24h=SkgWN#hpua!l?Hgp}g;AbdiT5<;A3$qYc#)rPZm7lE zCbnE?VK9KVy=)SooRBv>0<<`cEdCHaqrVRc{(hl=6|6;mu{eyZ*!IOm z`dM)o{9K>^RDaOh6dLI{LnRJ{x(EFOL0=1do;8XD8w+R@|2N>&E1EDa`Qxl!ypn(A z5gXG+wcN6(_N-BUDqe|HLO@%Bq%mDogM6Tu7avkSO{r!~6GgsW-BC?c6S9S^V%~u6 zBVo>c9rHyfQ6JR@^cS>Tt|Ffys)>L)mvaa7XKi9B@-N;rig|jD7k|+s z>ir61plsP!8Vh{)rC$pe&*q73mw%&1v9vLhqW>*XQ+EG9qP2SQZQzS1m5&+0_v2Zb zp^FZ2_Q*5GXYJ&OFpLzB3}SHxduTlc0XBwuvGRZ^BD%(!NKxM)gXW6$+v=?kWi%X3 z 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 Vqx;8Q9KwInS-Mkn|K#8h{{JHM+$;b9 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4c654ce3af7adf4ed1b295d53a1d0aa9e920ab9 GIT binary patch literal 30332 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 literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc b/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d4b7a1be5326f959d064be001ef985b73b6ce72 GIT binary patch literal 51441 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 H*eLuj3tN;x literal 0 HcmV?d00001 diff --git a/env/Lib/site-packages/pip/_vendor/distlib/compat.py b/env/Lib/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 00000000..e93dc27a --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1138 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import absolute_import + +import os +import re +import shutil +import sys + +try: + import ssl +except ImportError: # pragma: no cover + ssl = None + +if sys.version_info[0] < 3: # pragma: no cover + from StringIO import StringIO + string_types = basestring, + text_type = unicode + from types import FileType as file_type + import __builtin__ as builtins + import ConfigParser as configparser + from urlparse import urlparse, urlunparse, urljoin, urlsplit, urlunsplit + from urllib import (urlretrieve, quote as _quote, unquote, url2pathname, + pathname2url, ContentTooShortError, splittype) + + def quote(s): + if isinstance(s, unicode): + s = s.encode('utf-8') + return _quote(s) + + import urllib2 + from urllib2 import (Request, urlopen, URLError, HTTPError, + HTTPBasicAuthHandler, HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib2 import HTTPSHandler + import httplib + import xmlrpclib + import Queue as queue + from HTMLParser import HTMLParser + import htmlentitydefs + raw_input = raw_input + from itertools import ifilter as filter + from itertools import ifilterfalse as filterfalse + + # Leaving this around for now, in case it needs resurrecting in some way + # _userprog = None + # def splituser(host): + # """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'.""" + # global _userprog + # if _userprog is None: + # import re + # _userprog = re.compile('^(.*)@(.*)$') + + # match = _userprog.match(host) + # if match: return match.group(1, 2) + # return None, host + +else: # pragma: no cover + from io import StringIO + string_types = str, + text_type = str + from io import TextIOWrapper as file_type + import builtins + import configparser + from urllib.parse import (urlparse, urlunparse, urljoin, quote, unquote, + urlsplit, urlunsplit, splittype) + from urllib.request import (urlopen, urlretrieve, Request, url2pathname, + pathname2url, HTTPBasicAuthHandler, + HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib.request import HTTPSHandler + from urllib.error import HTTPError, URLError, ContentTooShortError + import http.client as httplib + import urllib.request as urllib2 + import xmlrpc.client as xmlrpclib + import queue + from html.parser import HTMLParser + import html.entities as htmlentitydefs + raw_input = input + from itertools import filterfalse + filter = filter + +try: + from ssl import match_hostname, CertificateError +except ImportError: # pragma: no cover + + class CertificateError(ValueError): + pass + + def _dnsname_match(dn, hostname, max_wildcards=1): + """Matching according to RFC 6125, section 6.4.3 + + http://tools.ietf.org/html/rfc6125#section-6.4.3 + """ + pats = [] + if not dn: + return False + + parts = dn.split('.') + leftmost, remainder = parts[0], parts[1:] + + wildcards = leftmost.count('*') + if wildcards > max_wildcards: + # Issue #17980: avoid denials of service by refusing more + # than one wildcard per fragment. A survey of established + # policy among SSL implementations showed it to be a + # reasonable choice. + raise CertificateError( + "too many wildcards in certificate DNS name: " + repr(dn)) + + # speed up common case w/o wildcards + if not wildcards: + return dn.lower() == hostname.lower() + + # RFC 6125, section 6.4.3, subitem 1. + # The client SHOULD NOT attempt to match a presented identifier in which + # the wildcard character comprises a label other than the left-most label. + if leftmost == '*': + # When '*' is a fragment by itself, it matches a non-empty dotless + # fragment. + pats.append('[^.]+') + elif leftmost.startswith('xn--') or hostname.startswith('xn--'): + # RFC 6125, section 6.4.3, subitem 3. + # The client SHOULD NOT attempt to match a presented identifier + # where the wildcard character is embedded within an A-label or + # U-label of an internationalized domain name. + pats.append(re.escape(leftmost)) + else: + # Otherwise, '*' matches any dotless string, e.g. www* + pats.append(re.escape(leftmost).replace(r'\*', '[^.]*')) + + # add the remaining fragments, ignore any wildcards + for frag in remainder: + pats.append(re.escape(frag)) + + pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE) + return pat.match(hostname) + + def match_hostname(cert, hostname): + """Verify that *cert* (in decoded format as returned by + SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 + rules are followed, but IP addresses are not accepted for *hostname*. + + CertificateError is raised on failure. On success, the function + returns nothing. + """ + if not cert: + raise ValueError("empty or no certificate, match_hostname needs a " + "SSL socket or SSL context with either " + "CERT_OPTIONAL or CERT_REQUIRED") + dnsnames = [] + san = cert.get('subjectAltName', ()) + for key, value in san: + if key == 'DNS': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if not dnsnames: + # The subject is only checked when there is no dNSName entry + # in subjectAltName + for sub in cert.get('subject', ()): + for key, value in sub: + # XXX according to RFC 2818, the most specific Common Name + # must be used. + if key == 'commonName': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if len(dnsnames) > 1: + raise CertificateError("hostname %r " + "doesn't match either of %s" % + (hostname, ', '.join(map(repr, dnsnames)))) + elif len(dnsnames) == 1: + raise CertificateError("hostname %r " + "doesn't match %r" % + (hostname, dnsnames[0])) + else: + raise CertificateError("no appropriate commonName or " + "subjectAltName fields were found") + + +try: + from types import SimpleNamespace as Container +except ImportError: # pragma: no cover + + class Container(object): + """ + A generic container for when multiple values need to be returned + """ + + def __init__(self, **kwargs): + self.__dict__.update(kwargs) + + +try: + from shutil import which +except ImportError: # pragma: no cover + # Implementation from Python 3.3 + def which(cmd, mode=os.F_OK | os.X_OK, path=None): + """Given a command, mode, and a PATH string, return the path which + conforms to the given mode on the PATH, or None if there is no such + file. + + `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result + of os.environ.get("PATH"), or can be overridden with a custom search + path. + + """ + + # Check that a given file can be accessed with the correct mode. + # Additionally check that `file` is not a directory, as on Windows + # directories pass the os.access check. + def _access_check(fn, mode): + return (os.path.exists(fn) and os.access(fn, mode) + and not os.path.isdir(fn)) + + # If we're given a path with a directory part, look it up directly rather + # than referring to PATH directories. This includes checking relative to the + # current directory, e.g. ./script + if os.path.dirname(cmd): + if _access_check(cmd, mode): + return cmd + return None + + if path is None: + path = os.environ.get("PATH", os.defpath) + if not path: + return None + path = path.split(os.pathsep) + + if sys.platform == "win32": + # The current directory takes precedence on Windows. + if os.curdir not in path: + path.insert(0, os.curdir) + + # PATHEXT is necessary to check on Windows. + pathext = os.environ.get("PATHEXT", "").split(os.pathsep) + # See if the given file matches any of the expected path extensions. + # This will allow us to short circuit when given "python.exe". + # If it does match, only test that one, otherwise we have to try + # others. + if any(cmd.lower().endswith(ext.lower()) for ext in pathext): + files = [cmd] + else: + files = [cmd + ext for ext in pathext] + else: + # On other platforms you don't have things like PATHEXT to tell you + # what file suffixes are executable, so just pass on cmd as-is. + files = [cmd] + + seen = set() + for dir in path: + normdir = os.path.normcase(dir) + if normdir not in seen: + seen.add(normdir) + for thefile in files: + name = os.path.join(dir, thefile) + if _access_check(name, mode): + return name + return None + + +# ZipFile is a context manager in 2.7, but not in 2.6 + +from zipfile import ZipFile as BaseZipFile + +if hasattr(BaseZipFile, '__enter__'): # pragma: no cover + ZipFile = BaseZipFile +else: # pragma: no cover + from zipfile import ZipExtFile as BaseZipExtFile + + class ZipExtFile(BaseZipExtFile): + + def __init__(self, base): + self.__dict__.update(base.__dict__) + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + class ZipFile(BaseZipFile): + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + def open(self, *args, **kwargs): + base = BaseZipFile.open(self, *args, **kwargs) + return ZipExtFile(base) + + +try: + from platform import python_implementation +except ImportError: # pragma: no cover + + def python_implementation(): + """Return a string identifying the Python implementation.""" + if 'PyPy' in sys.version: + return 'PyPy' + if os.name == 'java': + return 'Jython' + if sys.version.startswith('IronPython'): + return 'IronPython' + return 'CPython' + + +import sysconfig + +try: + callable = callable +except NameError: # pragma: no cover + from collections.abc import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode + fsdecode = os.fsdecode +except AttributeError: # pragma: no cover + # Issue #99: on some systems (e.g. containerised), + # sys.getfilesystemencoding() returns None, and we need a real value, + # so fall back to utf-8. From the CPython 2.7 docs relating to Unix and + # sys.getfilesystemencoding(): the return value is "the user’s preference + # according to the result of nl_langinfo(CODESET), or None if the + # nl_langinfo(CODESET) failed." + _fsencoding = sys.getfilesystemencoding() or 'utf-8' + if _fsencoding == 'mbcs': + _fserrors = 'strict' + else: + _fserrors = 'surrogateescape' + + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, text_type): + return filename.encode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + def fsdecode(filename): + if isinstance(filename, text_type): + return filename + elif isinstance(filename, bytes): + return filename.decode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + +try: + from tokenize import detect_encoding +except ImportError: # pragma: no cover + from codecs import BOM_UTF8, lookup + + cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") + + def _get_normal_name(orig_enc): + """Imitates get_normal_name in tokenizer.c.""" + # Only care about the first 12 characters. + enc = orig_enc[:12].lower().replace("_", "-") + if enc == "utf-8" or enc.startswith("utf-8-"): + return "utf-8" + if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \ + enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")): + return "iso-8859-1" + return orig_enc + + def detect_encoding(readline): + """ + The detect_encoding() function is used to detect the encoding that should + be used to decode a Python source file. It requires one argument, readline, + in the same way as the tokenize() generator. + + It will call readline a maximum of twice, and return the encoding used + (as a string) and a list of any lines (left as bytes) it has read in. + + It detects the encoding from the presence of a utf-8 bom or an encoding + cookie as specified in pep-0263. If both a bom and a cookie are present, + but disagree, a SyntaxError will be raised. If the encoding cookie is an + invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, + 'utf-8-sig' is returned. + + If no encoding is specified, then the default of 'utf-8' will be returned. + """ + try: + filename = readline.__self__.name + except AttributeError: + filename = None + bom_found = False + encoding = None + default = 'utf-8' + + def read_or_stop(): + try: + return readline() + except StopIteration: + return b'' + + def find_cookie(line): + try: + # Decode as UTF-8. Either the line is an encoding declaration, + # in which case it should be pure ASCII, or it must be UTF-8 + # per default encoding. + line_string = line.decode('utf-8') + except UnicodeDecodeError: + msg = "invalid or missing encoding declaration" + if filename is not None: + msg = '{} for {!r}'.format(msg, filename) + raise SyntaxError(msg) + + matches = cookie_re.findall(line_string) + if not matches: + return None + encoding = _get_normal_name(matches[0]) + try: + codec = lookup(encoding) + except LookupError: + # This behaviour mimics the Python interpreter + if filename is None: + msg = "unknown encoding: " + encoding + else: + msg = "unknown encoding for {!r}: {}".format( + filename, encoding) + raise SyntaxError(msg) + + if bom_found: + if codec.name != 'utf-8': + # This behaviour mimics the Python interpreter + if filename is None: + msg = 'encoding problem: utf-8' + else: + msg = 'encoding problem for {!r}: utf-8'.format( + filename) + raise SyntaxError(msg) + encoding += '-sig' + return encoding + + first = read_or_stop() + if first.startswith(BOM_UTF8): + bom_found = True + first = first[3:] + default = 'utf-8-sig' + if not first: + return default, [] + + encoding = find_cookie(first) + if encoding: + return encoding, [first] + + second = read_or_stop() + if not second: + return default, [first] + + encoding = find_cookie(second) + if encoding: + return encoding, [first, second] + + return default, [first, second] + + +# For converting & <-> & etc. +try: + from html import escape +except ImportError: + from cgi import escape +if sys.version_info[:2] < (3, 4): + unescape = HTMLParser().unescape +else: + from html import unescape + +try: + from collections import ChainMap +except ImportError: # pragma: no cover + from collections import MutableMapping + + try: + from reprlib import recursive_repr as _recursive_repr + except ImportError: + + def _recursive_repr(fillvalue='...'): + ''' + Decorator to make a repr function return fillvalue for a recursive + call + ''' + + def decorating_function(user_function): + repr_running = set() + + def wrapper(self): + key = id(self), get_ident() + if key in repr_running: + return fillvalue + repr_running.add(key) + try: + result = user_function(self) + finally: + repr_running.discard(key) + return result + + # Can't use functools.wraps() here because of bootstrap issues + wrapper.__module__ = getattr(user_function, '__module__') + wrapper.__doc__ = getattr(user_function, '__doc__') + wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__annotations__ = getattr(user_function, + '__annotations__', {}) + return wrapper + + return decorating_function + + class ChainMap(MutableMapping): + ''' + A ChainMap groups multiple dicts (or other mappings) together + to create a single, updateable view. + + The underlying mappings are stored in a list. That list is public and can + accessed or updated using the *maps* attribute. There is no other state. + + Lookups search the underlying mappings successively until a key is found. + In contrast, writes, updates, and deletions only operate on the first + mapping. + ''' + + def __init__(self, *maps): + '''Initialize a ChainMap by setting *maps* to the given mappings. + If no mappings are provided, a single empty dictionary is used. + + ''' + self.maps = list(maps) or [{}] # always at least one map + + def __missing__(self, key): + raise KeyError(key) + + def __getitem__(self, key): + for mapping in self.maps: + try: + return mapping[ + key] # can't use 'key in mapping' with defaultdict + except KeyError: + pass + return self.__missing__( + key) # support subclasses that define __missing__ + + def get(self, key, default=None): + return self[key] if key in self else default + + def __len__(self): + return len(set().union( + *self.maps)) # reuses stored hash values if possible + + def __iter__(self): + return iter(set().union(*self.maps)) + + def __contains__(self, key): + return any(key in m for m in self.maps) + + def __bool__(self): + return any(self.maps) + + @_recursive_repr() + def __repr__(self): + return '{0.__class__.__name__}({1})'.format( + self, ', '.join(map(repr, self.maps))) + + @classmethod + def fromkeys(cls, iterable, *args): + 'Create a ChainMap with a single dict created from the iterable.' + return cls(dict.fromkeys(iterable, *args)) + + def copy(self): + 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' + return self.__class__(self.maps[0].copy(), *self.maps[1:]) + + __copy__ = copy + + def new_child(self): # like Django's Context.push() + 'New ChainMap with a new dict followed by all previous maps.' + return self.__class__({}, *self.maps) + + @property + def parents(self): # like Django's Context.pop() + 'New ChainMap from maps[1:].' + return self.__class__(*self.maps[1:]) + + def __setitem__(self, key, value): + self.maps[0][key] = value + + def __delitem__(self, key): + try: + del self.maps[0][key] + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def popitem(self): + 'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.' + try: + return self.maps[0].popitem() + except KeyError: + raise KeyError('No keys found in the first mapping.') + + def pop(self, key, *args): + 'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].' + try: + return self.maps[0].pop(key, *args) + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def clear(self): + 'Clear maps[0], leaving maps[1:] intact.' + self.maps[0].clear() + + +try: + from importlib.util import cache_from_source # Python >= 3.4 +except ImportError: # pragma: no cover + + def cache_from_source(path, debug_override=None): + assert path.endswith('.py') + if debug_override is None: + debug_override = __debug__ + if debug_override: + suffix = 'c' + else: + suffix = 'o' + return path + suffix + + +try: + from collections import OrderedDict +except ImportError: # pragma: no cover + # {{{ http://code.activestate.com/recipes/576693/ (r9) + # Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. + # Passes Python2.7's test suite and incorporates all the latest updates. + try: + from thread import get_ident as _get_ident + except ImportError: + from dummy_thread import get_ident as _get_ident + + try: + from _abcoll import KeysView, ValuesView, ItemsView + except ImportError: + pass + + class OrderedDict(dict): + 'Dictionary that remembers insertion order' + + # An inherited dict maps keys to values. + # The inherited dict provides __getitem__, __len__, __contains__, and get. + # The remaining methods are order-aware. + # Big-O running times for all methods are the same as for regular dictionaries. + + # The internal self.__map dictionary maps keys to links in a doubly linked list. + # The circular doubly linked list starts and ends with a sentinel element. + # The sentinel element never gets deleted (this simplifies the algorithm). + # Each link is stored as a list of length three: [PREV, NEXT, KEY]. + + def __init__(self, *args, **kwds): + '''Initialize an ordered dictionary. Signature is the same as for + regular dictionaries, but keyword arguments are not recommended + because their insertion order is arbitrary. + + ''' + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % + len(args)) + try: + self.__root + except AttributeError: + self.__root = root = [] # sentinel node + root[:] = [root, root, None] + self.__map = {} + self.__update(*args, **kwds) + + def __setitem__(self, key, value, dict_setitem=dict.__setitem__): + 'od.__setitem__(i, y) <==> od[i]=y' + # Setting a new item creates a new link which goes at the end of the linked + # list, and the inherited dictionary is updated with the new key/value pair. + if key not in self: + root = self.__root + last = root[0] + last[1] = root[0] = self.__map[key] = [last, root, key] + dict_setitem(self, key, value) + + def __delitem__(self, key, dict_delitem=dict.__delitem__): + 'od.__delitem__(y) <==> del od[y]' + # Deleting an existing item uses self.__map to find the link which is + # then removed by updating the links in the predecessor and successor nodes. + dict_delitem(self, key) + link_prev, link_next, key = self.__map.pop(key) + link_prev[1] = link_next + link_next[0] = link_prev + + def __iter__(self): + 'od.__iter__() <==> iter(od)' + root = self.__root + curr = root[1] + while curr is not root: + yield curr[2] + curr = curr[1] + + def __reversed__(self): + 'od.__reversed__() <==> reversed(od)' + root = self.__root + curr = root[0] + while curr is not root: + yield curr[2] + curr = curr[0] + + def clear(self): + 'od.clear() -> None. Remove all items from od.' + try: + for node in self.__map.itervalues(): + del node[:] + root = self.__root + root[:] = [root, root, None] + self.__map.clear() + except AttributeError: + pass + dict.clear(self) + + def popitem(self, last=True): + '''od.popitem() -> (k, v), return and remove a (key, value) pair. + Pairs are returned in LIFO order if last is true or FIFO order if false. + + ''' + if not self: + raise KeyError('dictionary is empty') + root = self.__root + if last: + link = root[0] + link_prev = link[0] + link_prev[1] = root + root[0] = link_prev + else: + link = root[1] + link_next = link[1] + root[1] = link_next + link_next[0] = root + key = link[2] + del self.__map[key] + value = dict.pop(self, key) + return key, value + + # -- the following methods do not depend on the internal structure -- + + def keys(self): + 'od.keys() -> list of keys in od' + return list(self) + + def values(self): + 'od.values() -> list of values in od' + return [self[key] for key in self] + + def items(self): + 'od.items() -> list of (key, value) pairs in od' + return [(key, self[key]) for key in self] + + def iterkeys(self): + 'od.iterkeys() -> an iterator over the keys in od' + return iter(self) + + def itervalues(self): + 'od.itervalues -> an iterator over the values in od' + for k in self: + yield self[k] + + def iteritems(self): + 'od.iteritems -> an iterator over the (key, value) items in od' + for k in self: + yield (k, self[k]) + + def update(*args, **kwds): + '''od.update(E, **F) -> None. Update od from dict/iterable E and F. + + If E is a dict instance, does: for k in E: od[k] = E[k] + If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] + Or if E is an iterable of items, does: for k, v in E: od[k] = v + In either case, this is followed by: for k, v in F.items(): od[k] = v + + ''' + if len(args) > 2: + raise TypeError('update() takes at most 2 positional ' + 'arguments (%d given)' % (len(args), )) + elif not args: + raise TypeError('update() takes at least 1 argument (0 given)') + self = args[0] + # Make progressively weaker assumptions about "other" + other = () + if len(args) == 2: + other = args[1] + if isinstance(other, dict): + for key in other: + self[key] = other[key] + elif hasattr(other, 'keys'): + for key in other.keys(): + self[key] = other[key] + else: + for key, value in other: + self[key] = value + for key, value in kwds.items(): + self[key] = value + + __update = update # let subclasses override update without breaking __init__ + + __marker = object() + + def pop(self, key, default=__marker): + '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised. + + ''' + if key in self: + result = self[key] + del self[key] + return result + if default is self.__marker: + raise KeyError(key) + return default + + def setdefault(self, key, default=None): + 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' + if key in self: + return self[key] + self[key] = default + return default + + def __repr__(self, _repr_running=None): + 'od.__repr__() <==> repr(od)' + if not _repr_running: + _repr_running = {} + call_key = id(self), _get_ident() + if call_key in _repr_running: + return '...' + _repr_running[call_key] = 1 + try: + if not self: + return '%s()' % (self.__class__.__name__, ) + return '%s(%r)' % (self.__class__.__name__, self.items()) + finally: + del _repr_running[call_key] + + def __reduce__(self): + 'Return state information for pickling' + items = [[k, self[k]] for k in self] + inst_dict = vars(self).copy() + for k in vars(OrderedDict()): + inst_dict.pop(k, None) + if inst_dict: + return (self.__class__, (items, ), inst_dict) + return self.__class__, (items, ) + + def copy(self): + 'od.copy() -> a shallow copy of od' + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S + and values equal to v (which defaults to None). + + ''' + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive + while comparison to a regular mapping is order-insensitive. + + ''' + if isinstance(other, OrderedDict): + return len(self) == len( + other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other + + # -- the following methods are only used in Python 2.7 -- + + def viewkeys(self): + "od.viewkeys() -> a set-like object providing a view on od's keys" + return KeysView(self) + + def viewvalues(self): + "od.viewvalues() -> an object providing a view on od's values" + return ValuesView(self) + + def viewitems(self): + "od.viewitems() -> a set-like object providing a view on od's items" + return ItemsView(self) + + +try: + from logging.config import BaseConfigurator, valid_ident +except ImportError: # pragma: no cover + IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) + + def valid_ident(s): + m = IDENTIFIER.match(s) + if not m: + raise ValueError('Not a valid Python identifier: %r' % s) + return True + + # The ConvertingXXX classes are wrappers around standard Python containers, + # and they serve to convert any suitable values in the container. The + # conversion converts base dicts, lists and tuples to their wrapped + # equivalents, whereas strings which match a conversion format are converted + # appropriately. + # + # Each wrapper should have a configurator attribute holding the actual + # configurator to use for conversion. + + class ConvertingDict(dict): + """A converting dictionary wrapper.""" + + def __getitem__(self, key): + value = dict.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def get(self, key, default=None): + value = dict.get(self, key, default) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, key, default=None): + value = dict.pop(self, key, default) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class ConvertingList(list): + """A converting list wrapper.""" + + def __getitem__(self, key): + value = list.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, idx=-1): + value = list.pop(self, idx) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + return result + + class ConvertingTuple(tuple): + """A converting tuple wrapper.""" + + def __getitem__(self, key): + value = tuple.__getitem__(self, key) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class BaseConfigurator(object): + """ + The configurator base class which defines some useful defaults. + """ + + CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') + + WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') + DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') + INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') + DIGIT_PATTERN = re.compile(r'^\d+$') + + value_converters = { + 'ext': 'ext_convert', + 'cfg': 'cfg_convert', + } + + # We might want to use a different one, e.g. importlib + importer = staticmethod(__import__) + + def __init__(self, config): + self.config = ConvertingDict(config) + self.config.configurator = self + + def resolve(self, s): + """ + Resolve strings to objects using standard import and attribute + syntax. + """ + name = s.split('.') + used = name.pop(0) + try: + found = self.importer(used) + for frag in name: + used += '.' + frag + try: + found = getattr(found, frag) + except AttributeError: + self.importer(used) + found = getattr(found, frag) + return found + except ImportError: + e, tb = sys.exc_info()[1:] + v = ValueError('Cannot resolve %r: %s' % (s, e)) + v.__cause__, v.__traceback__ = e, tb + raise v + + def ext_convert(self, value): + """Default converter for the ext:// protocol.""" + return self.resolve(value) + + def cfg_convert(self, value): + """Default converter for the cfg:// protocol.""" + rest = value + m = self.WORD_PATTERN.match(rest) + if m is None: + raise ValueError("Unable to convert %r" % value) + else: + rest = rest[m.end():] + d = self.config[m.groups()[0]] + while rest: + m = self.DOT_PATTERN.match(rest) + if m: + d = d[m.groups()[0]] + else: + m = self.INDEX_PATTERN.match(rest) + if m: + idx = m.groups()[0] + if not self.DIGIT_PATTERN.match(idx): + d = d[idx] + else: + try: + n = int( + idx + ) # try as number first (most likely) + d = d[n] + except TypeError: + d = d[idx] + if m: + rest = rest[m.end():] + else: + raise ValueError('Unable to convert ' + '%r at %r' % (value, rest)) + # rest should be empty + return d + + def convert(self, value): + """ + Convert values to an appropriate type. dicts, lists and tuples are + replaced by their converting alternatives. Strings are checked to + see if they have a conversion format and are converted if they do. + """ + if not isinstance(value, ConvertingDict) and isinstance( + value, dict): + value = ConvertingDict(value) + value.configurator = self + elif not isinstance(value, ConvertingList) and isinstance( + value, list): + value = ConvertingList(value) + value.configurator = self + elif not isinstance(value, ConvertingTuple) and isinstance(value, tuple): + value = ConvertingTuple(value) + value.configurator = self + elif isinstance(value, string_types): + m = self.CONVERT_PATTERN.match(value) + if m: + d = m.groupdict() + prefix = d['prefix'] + converter = self.value_converters.get(prefix, None) + if converter: + suffix = d['suffix'] + converter = getattr(self, converter) + value = converter(suffix) + return value + + def configure_custom(self, config): + """Configure an object with a user-supplied factory.""" + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) + result = c(**kwargs) + if props: + for name, value in props.items(): + setattr(result, name, value) + return result + + def as_tuple(self, value): + """Utility function which converts lists to tuples.""" + if isinstance(value, list): + value = tuple(value) + return value diff --git a/env/Lib/site-packages/pip/_vendor/distlib/database.py b/env/Lib/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 00000000..eb3765f1 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1359 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""PEP 376 implementation.""" + +from __future__ import unicode_literals + +import base64 +import codecs +import contextlib +import hashlib +import logging +import os +import posixpath +import sys +import zipimport + +from . import DistlibException, resources +from .compat import StringIO +from .version import get_scheme, UnsupportedVersionError +from .metadata import (Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME) +from .util import (parse_requirement, cached_property, parse_name_and_version, + read_exports, write_exports, CSVReader, CSVWriter) + +__all__ = [ + 'Distribution', 'BaseInstalledDistribution', 'InstalledDistribution', + 'EggInfoDistribution', 'DistributionPath' +] + +logger = logging.getLogger(__name__) + +EXPORTS_FILENAME = 'pydist-exports.json' +COMMANDS_FILENAME = 'pydist-commands.json' + +DIST_FILES = ('INSTALLER', METADATA_FILENAME, 'RECORD', 'REQUESTED', + 'RESOURCES', EXPORTS_FILENAME, 'SHARED') + +DISTINFO_EXT = '.dist-info' + + +class _Cache(object): + """ + A simple cache mapping names and .dist-info paths to distributions + """ + + def __init__(self): + """ + Initialise an instance. There is normally one for each DistributionPath. + """ + self.name = {} + self.path = {} + self.generated = False + + def clear(self): + """ + Clear the cache, setting it to its initial state. + """ + self.name.clear() + self.path.clear() + self.generated = False + + def add(self, dist): + """ + Add a distribution to the cache. + :param dist: The distribution to add. + """ + if dist.path not in self.path: + self.path[dist.path] = dist + self.name.setdefault(dist.key, []).append(dist) + + +class DistributionPath(object): + """ + Represents a set of distributions installed on a path (typically sys.path). + """ + + def __init__(self, path=None, include_egg=False): + """ + Create an instance from a path, optionally including legacy (distutils/ + setuptools/distribute) distributions. + :param path: The path to use, as a list of directories. If not specified, + sys.path is used. + :param include_egg: If True, this instance will look for and return legacy + distributions as well as those based on PEP 376. + """ + if path is None: + path = sys.path + self.path = path + self._include_dist = True + self._include_egg = include_egg + + self._cache = _Cache() + self._cache_egg = _Cache() + self._cache_enabled = True + self._scheme = get_scheme('default') + + def _get_cache_enabled(self): + return self._cache_enabled + + def _set_cache_enabled(self, value): + self._cache_enabled = value + + cache_enabled = property(_get_cache_enabled, _set_cache_enabled) + + def clear_cache(self): + """ + Clears the internal cache. + """ + self._cache.clear() + self._cache_egg.clear() + + def _yield_distributions(self): + """ + Yield .dist-info and/or .egg(-info) distributions. + """ + # We need to check if we've seen some resources already, because on + # some Linux systems (e.g. some Debian/Ubuntu variants) there are + # symlinks which alias other files in the environment. + seen = set() + for path in self.path: + finder = resources.finder_for_path(path) + if finder is None: + continue + r = finder.find('') + if not r or not r.is_container: + continue + rset = sorted(r.resources) + for entry in rset: + r = finder.find(entry) + if not r or r.path in seen: + continue + try: + if self._include_dist and entry.endswith(DISTINFO_EXT): + possible_filenames = [ + METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME + ] + for metadata_filename in possible_filenames: + metadata_path = posixpath.join( + entry, metadata_filename) + pydist = finder.find(metadata_path) + if pydist: + break + else: + continue + + with contextlib.closing(pydist.as_stream()) as stream: + metadata = Metadata(fileobj=stream, + scheme='legacy') + logger.debug('Found %s', r.path) + seen.add(r.path) + yield new_dist_class(r.path, + metadata=metadata, + env=self) + elif self._include_egg and entry.endswith( + ('.egg-info', '.egg')): + logger.debug('Found %s', r.path) + seen.add(r.path) + yield old_dist_class(r.path, self) + except Exception as e: + msg = 'Unable to read distribution at %s, perhaps due to bad metadata: %s' + logger.warning(msg, r.path, e) + import warnings + warnings.warn(msg % (r.path, e), stacklevel=2) + + def _generate_cache(self): + """ + Scan the path for distributions and populate the cache with + those that are found. + """ + gen_dist = not self._cache.generated + gen_egg = self._include_egg and not self._cache_egg.generated + if gen_dist or gen_egg: + for dist in self._yield_distributions(): + if isinstance(dist, InstalledDistribution): + self._cache.add(dist) + else: + self._cache_egg.add(dist) + + if gen_dist: + self._cache.generated = True + if gen_egg: + self._cache_egg.generated = True + + @classmethod + def distinfo_dirname(cls, name, version): + """ + The *name* and *version* parameters are converted into their + filename-escaped form, i.e. any ``'-'`` characters are replaced + with ``'_'`` other than the one in ``'dist-info'`` and the one + separating the name from the version number. + + :parameter name: is converted to a standard distribution name by replacing + any runs of non- alphanumeric characters with a single + ``'-'``. + :type name: string + :parameter version: is converted to a standard version string. Spaces + become dots, and all other non-alphanumeric characters + (except dots) become dashes, with runs of multiple + dashes condensed to a single dash. + :type version: string + :returns: directory name + :rtype: string""" + name = name.replace('-', '_') + return '-'.join([name, version]) + DISTINFO_EXT + + def get_distributions(self): + """ + Provides an iterator that looks for distributions and returns + :class:`InstalledDistribution` or + :class:`EggInfoDistribution` instances for each one of them. + + :rtype: iterator of :class:`InstalledDistribution` and + :class:`EggInfoDistribution` instances + """ + if not self._cache_enabled: + for dist in self._yield_distributions(): + yield dist + else: + self._generate_cache() + + for dist in self._cache.path.values(): + yield dist + + if self._include_egg: + for dist in self._cache_egg.path.values(): + yield dist + + def get_distribution(self, name): + """ + Looks for a named distribution on the path. + + This function only returns the first result found, as no more than one + value is expected. If nothing is found, ``None`` is returned. + + :rtype: :class:`InstalledDistribution`, :class:`EggInfoDistribution` + or ``None`` + """ + result = None + name = name.lower() + if not self._cache_enabled: + for dist in self._yield_distributions(): + if dist.key == name: + result = dist + break + else: + self._generate_cache() + + if name in self._cache.name: + result = self._cache.name[name][0] + elif self._include_egg and name in self._cache_egg.name: + result = self._cache_egg.name[name][0] + return result + + def provides_distribution(self, name, version=None): + """ + Iterates over all distributions to find which distributions provide *name*. + If a *version* is provided, it will be used to filter the results. + + This function only returns the first result found, since no more than + one values are expected. If the directory is not found, returns ``None``. + + :parameter version: a version specifier that indicates the version + required, conforming to the format in ``PEP-345`` + + :type name: string + :type version: string + """ + matcher = None + if version is not None: + try: + matcher = self._scheme.matcher('%s (%s)' % (name, version)) + except ValueError: + raise DistlibException('invalid name or version: %r, %r' % + (name, version)) + + for dist in self.get_distributions(): + # We hit a problem on Travis where enum34 was installed and doesn't + # have a provides attribute ... + if not hasattr(dist, 'provides'): + logger.debug('No "provides": %s', dist) + else: + provided = dist.provides + + for p in provided: + p_name, p_ver = parse_name_and_version(p) + if matcher is None: + if p_name == name: + yield dist + break + else: + if p_name == name and matcher.match(p_ver): + yield dist + break + + def get_file_path(self, name, relative_path): + """ + Return the path to a resource file. + """ + dist = self.get_distribution(name) + if dist is None: + raise LookupError('no distribution named %r found' % name) + return dist.get_resource_path(relative_path) + + def get_exported_entries(self, category, name=None): + """ + Return all of the exported entries in a particular category. + + :param category: The category to search for entries. + :param name: If specified, only entries with that name are returned. + """ + for dist in self.get_distributions(): + r = dist.exports + if category in r: + d = r[category] + if name is not None: + if name in d: + yield d[name] + else: + for v in d.values(): + yield v + + +class Distribution(object): + """ + A base class for distributions, whether installed or from indexes. + Either way, it must have some metadata, so that's all that's needed + for construction. + """ + + build_time_dependency = False + """ + Set to True if it's known to be only a build-time dependency (i.e. + not needed after installation). + """ + + requested = False + """A boolean that indicates whether the ``REQUESTED`` metadata file is + present (in other words, whether the package was installed by user + request or it was installed as a dependency).""" + + def __init__(self, metadata): + """ + Initialise an instance. + :param metadata: The instance of :class:`Metadata` describing this + distribution. + """ + self.metadata = metadata + self.name = metadata.name + self.key = self.name.lower() # for case-insensitive comparisons + self.version = metadata.version + self.locator = None + self.digest = None + self.extras = None # additional features requested + self.context = None # environment marker overrides + self.download_urls = set() + self.digests = {} + + @property + def source_url(self): + """ + The source archive download URL for this distribution. + """ + return self.metadata.source_url + + download_url = source_url # Backward compatibility + + @property + def name_and_version(self): + """ + A utility property which displays the name and version in parentheses. + """ + return '%s (%s)' % (self.name, self.version) + + @property + def provides(self): + """ + A set of distribution names and versions provided by this distribution. + :return: A set of "name (version)" strings. + """ + plist = self.metadata.provides + s = '%s (%s)' % (self.name, self.version) + if s not in plist: + plist.append(s) + return plist + + def _get_requirements(self, req_attr): + md = self.metadata + reqts = getattr(md, req_attr) + logger.debug('%s: got requirements %r from metadata: %r', self.name, + req_attr, reqts) + return set( + md.get_requirements(reqts, extras=self.extras, env=self.context)) + + @property + def run_requires(self): + return self._get_requirements('run_requires') + + @property + def meta_requires(self): + return self._get_requirements('meta_requires') + + @property + def build_requires(self): + return self._get_requirements('build_requires') + + @property + def test_requires(self): + return self._get_requirements('test_requires') + + @property + def dev_requires(self): + return self._get_requirements('dev_requires') + + def matches_requirement(self, req): + """ + Say if this instance matches (fulfills) a requirement. + :param req: The requirement to match. + :rtype req: str + :return: True if it matches, else False. + """ + # Requirement may contain extras - parse to lose those + # from what's passed to the matcher + r = parse_requirement(req) + scheme = get_scheme(self.metadata.scheme) + try: + matcher = scheme.matcher(r.requirement) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + result = False + for p in self.provides: + p_name, p_ver = parse_name_and_version(p) + if p_name != name: + continue + try: + result = matcher.match(p_ver) + break + except UnsupportedVersionError: + pass + return result + + def __repr__(self): + """ + Return a textual representation of this instance, + """ + if self.source_url: + suffix = ' [%s]' % self.source_url + else: + suffix = '' + return '' % (self.name, self.version, suffix) + + def __eq__(self, other): + """ + See if this distribution is the same as another. + :param other: The distribution to compare with. To be equal to one + another. distributions must have the same type, name, + version and source_url. + :return: True if it is the same, else False. + """ + if type(other) is not type(self): + result = False + else: + result = (self.name == other.name and self.version == other.version + and self.source_url == other.source_url) + return result + + def __hash__(self): + """ + Compute hash in a way which matches the equality test. + """ + return hash(self.name) + hash(self.version) + hash(self.source_url) + + +class BaseInstalledDistribution(Distribution): + """ + This is the base class for installed distributions (whether PEP 376 or + legacy). + """ + + hasher = None + + def __init__(self, metadata, path, env=None): + """ + Initialise an instance. + :param metadata: An instance of :class:`Metadata` which describes the + distribution. This will normally have been initialised + from a metadata file in the ``path``. + :param path: The path of the ``.dist-info`` or ``.egg-info`` + directory for the distribution. + :param env: This is normally the :class:`DistributionPath` + instance where this distribution was found. + """ + super(BaseInstalledDistribution, self).__init__(metadata) + self.path = path + self.dist_path = env + + def get_hash(self, data, hasher=None): + """ + Get the hash of some data, using a particular hash algorithm, if + specified. + + :param data: The data to be hashed. + :type data: bytes + :param hasher: The name of a hash implementation, supported by hashlib, + or ``None``. Examples of valid values are ``'sha1'``, + ``'sha224'``, ``'sha384'``, '``sha256'``, ``'md5'`` and + ``'sha512'``. If no hasher is specified, the ``hasher`` + attribute of the :class:`InstalledDistribution` instance + is used. If the hasher is determined to be ``None``, MD5 + is used as the hashing algorithm. + :returns: The hash of the data. If a hasher was explicitly specified, + the returned hash will be prefixed with the specified hasher + followed by '='. + :rtype: str + """ + if hasher is None: + hasher = self.hasher + if hasher is None: + hasher = hashlib.md5 + prefix = '' + else: + hasher = getattr(hashlib, hasher) + prefix = '%s=' % self.hasher + digest = hasher(data).digest() + digest = base64.urlsafe_b64encode(digest).rstrip(b'=').decode('ascii') + return '%s%s' % (prefix, digest) + + +class InstalledDistribution(BaseInstalledDistribution): + """ + Created with the *path* of the ``.dist-info`` directory provided to the + constructor. It reads the metadata contained in ``pydist.json`` when it is + instantiated., or uses a passed in Metadata instance (useful for when + dry-run mode is being used). + """ + + hasher = 'sha256' + + def __init__(self, path, metadata=None, env=None): + self.modules = [] + self.finder = finder = resources.finder_for_path(path) + if finder is None: + raise ValueError('finder unavailable for %s' % path) + if env and env._cache_enabled and path in env._cache.path: + metadata = env._cache.path[path].metadata + elif metadata is None: + r = finder.find(METADATA_FILENAME) + # Temporary - for Wheel 0.23 support + if r is None: + r = finder.find(WHEEL_METADATA_FILENAME) + # Temporary - for legacy support + if r is None: + r = finder.find(LEGACY_METADATA_FILENAME) + if r is None: + raise ValueError('no %s found in %s' % + (METADATA_FILENAME, path)) + with contextlib.closing(r.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + + super(InstalledDistribution, self).__init__(metadata, path, env) + + if env and env._cache_enabled: + env._cache.add(self) + + r = finder.find('REQUESTED') + self.requested = r is not None + p = os.path.join(path, 'top_level.txt') + if os.path.exists(p): + with open(p, 'rb') as f: + data = f.read().decode('utf-8') + self.modules = data.splitlines() + + def __repr__(self): + return '' % ( + self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def _get_records(self): + """ + Get the list of installed files for the distribution + :return: A list of tuples of path, hash and size. Note that hash and + size might be ``None`` for some entries. The path is exactly + as stored in the file (which is as in PEP 376). + """ + results = [] + r = self.get_distinfo_resource('RECORD') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as record_reader: + # Base location is parent dir of .dist-info dir + # base_location = os.path.dirname(self.path) + # base_location = os.path.abspath(base_location) + for row in record_reader: + missing = [None for i in range(len(row), 3)] + path, checksum, size = row + missing + # if not os.path.isabs(path): + # path = path.replace('/', os.sep) + # path = os.path.join(base_location, path) + results.append((path, checksum, size)) + return results + + @cached_property + def exports(self): + """ + Return the information exported by this distribution. + :return: A dictionary of exports, mapping an export category to a dict + of :class:`ExportEntry` instances describing the individual + export entries, and keyed by name. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + result = self.read_exports() + return result + + def read_exports(self): + """ + Read exports data from a file in .ini format. + + :return: A dictionary of exports, mapping an export category to a list + of :class:`ExportEntry` instances describing the individual + export entries. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + with contextlib.closing(r.as_stream()) as stream: + result = read_exports(stream) + return result + + def write_exports(self, exports): + """ + Write a dictionary of exports to a file in .ini format. + :param exports: A dictionary of exports, mapping an export category to + a list of :class:`ExportEntry` instances describing the + individual export entries. + """ + rf = self.get_distinfo_file(EXPORTS_FILENAME) + with open(rf, 'w') as f: + write_exports(exports, f) + + def get_resource_path(self, relative_path): + """ + NOTE: This API may change in the future. + + Return the absolute path to a resource file with the given relative + path. + + :param relative_path: The path, relative to .dist-info, of the resource + of interest. + :return: The absolute path where the resource is to be found. + """ + r = self.get_distinfo_resource('RESOURCES') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as resources_reader: + for relative, destination in resources_reader: + if relative == relative_path: + return destination + raise KeyError('no resource file with relative path %r ' + 'is installed' % relative_path) + + def list_installed_files(self): + """ + Iterates over the ``RECORD`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: iterator of (path, hash, size) + """ + for result in self._get_records(): + yield result + + def write_installed_files(self, paths, prefix, dry_run=False): + """ + Writes the ``RECORD`` file, using the ``paths`` iterable passed in. Any + existing ``RECORD`` file is silently overwritten. + + prefix is used to determine when to write absolute paths. + """ + prefix = os.path.join(prefix, '') + base = os.path.dirname(self.path) + base_under_prefix = base.startswith(prefix) + base = os.path.join(base, '') + record_path = self.get_distinfo_file('RECORD') + logger.info('creating %s', record_path) + if dry_run: + return None + with CSVWriter(record_path) as writer: + for path in paths: + if os.path.isdir(path) or path.endswith(('.pyc', '.pyo')): + # do not put size and hash, as in PEP-376 + hash_value = size = '' + else: + size = '%d' % os.path.getsize(path) + with open(path, 'rb') as fp: + hash_value = self.get_hash(fp.read()) + if path.startswith(base) or (base_under_prefix + and path.startswith(prefix)): + path = os.path.relpath(path, base) + writer.writerow((path, hash_value, size)) + + # add the RECORD file itself + if record_path.startswith(base): + record_path = os.path.relpath(record_path, base) + writer.writerow((record_path, '', '')) + return record_path + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + base = os.path.dirname(self.path) + record_path = self.get_distinfo_file('RECORD') + for path, hash_value, size in self.list_installed_files(): + if not os.path.isabs(path): + path = os.path.join(base, path) + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + elif os.path.isfile(path): + actual_size = str(os.path.getsize(path)) + if size and actual_size != size: + mismatches.append((path, 'size', size, actual_size)) + elif hash_value: + if '=' in hash_value: + hasher = hash_value.split('=', 1)[0] + else: + hasher = None + + with open(path, 'rb') as f: + actual_hash = self.get_hash(f.read(), hasher) + if actual_hash != hash_value: + mismatches.append( + (path, 'hash', hash_value, actual_hash)) + return mismatches + + @cached_property + def shared_locations(self): + """ + A dictionary of shared locations whose keys are in the set 'prefix', + 'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'. + The corresponding value is the absolute path of that category for + this distribution, and takes into account any paths selected by the + user at installation time (e.g. via command-line arguments). In the + case of the 'namespace' key, this would be a list of absolute paths + for the roots of namespace packages in this distribution. + + The first time this property is accessed, the relevant information is + read from the SHARED file in the .dist-info directory. + """ + result = {} + shared_path = os.path.join(self.path, 'SHARED') + if os.path.isfile(shared_path): + with codecs.open(shared_path, 'r', encoding='utf-8') as f: + lines = f.read().splitlines() + for line in lines: + key, value = line.split('=', 1) + if key == 'namespace': + result.setdefault(key, []).append(value) + else: + result[key] = value + return result + + def write_shared_locations(self, paths, dry_run=False): + """ + Write shared location information to the SHARED file in .dist-info. + :param paths: A dictionary as described in the documentation for + :meth:`shared_locations`. + :param dry_run: If True, the action is logged but no file is actually + written. + :return: The path of the file written to. + """ + shared_path = os.path.join(self.path, 'SHARED') + logger.info('creating %s', shared_path) + if dry_run: + return None + lines = [] + for key in ('prefix', 'lib', 'headers', 'scripts', 'data'): + path = paths[key] + if os.path.isdir(paths[key]): + lines.append('%s=%s' % (key, path)) + for ns in paths.get('namespace', ()): + lines.append('namespace=%s' % ns) + + with codecs.open(shared_path, 'w', encoding='utf-8') as f: + f.write('\n'.join(lines)) + return shared_path + + def get_distinfo_resource(self, path): + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + finder = resources.finder_for_path(self.path) + if finder is None: + raise DistlibException('Unable to get a finder for %s' % self.path) + return finder.find(path) + + def get_distinfo_file(self, path): + """ + Returns a path located under the ``.dist-info`` directory. Returns a + string representing the path. + + :parameter path: a ``'/'``-separated path relative to the + ``.dist-info`` directory or an absolute path; + If *path* is an absolute path and doesn't start + with the ``.dist-info`` directory path, + a :class:`DistlibException` is raised + :type path: str + :rtype: str + """ + # Check if it is an absolute path # XXX use relpath, add tests + if path.find(os.sep) >= 0: + # it's an absolute path? + distinfo_dirname, path = path.split(os.sep)[-2:] + if distinfo_dirname != self.path.split(os.sep)[-1]: + raise DistlibException( + 'dist-info file %r does not belong to the %r %s ' + 'distribution' % (path, self.name, self.version)) + + # The file must be relative + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + + return os.path.join(self.path, path) + + def list_distinfo_files(self): + """ + Iterates over the ``RECORD`` entries and returns paths for each line if + the path is pointing to a file located in the ``.dist-info`` directory + or one of its subdirectories. + + :returns: iterator of paths + """ + base = os.path.dirname(self.path) + for path, checksum, size in self._get_records(): + # XXX add separator or use real relpath algo + if not os.path.isabs(path): + path = os.path.join(base, path) + if path.startswith(self.path): + yield path + + def __eq__(self, other): + return (isinstance(other, InstalledDistribution) + and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +class EggInfoDistribution(BaseInstalledDistribution): + """Created with the *path* of the ``.egg-info`` directory or file provided + to the constructor. It reads the metadata contained in the file itself, or + if the given path happens to be a directory, the metadata is read from the + file ``PKG-INFO`` under that directory.""" + + requested = True # as we have no way of knowing, assume it was + shared_locations = {} + + def __init__(self, path, env=None): + + def set_name_and_version(s, n, v): + s.name = n + s.key = n.lower() # for case-insensitive comparisons + s.version = v + + self.path = path + self.dist_path = env + if env and env._cache_enabled and path in env._cache_egg.path: + metadata = env._cache_egg.path[path].metadata + set_name_and_version(self, metadata.name, metadata.version) + else: + metadata = self._get_metadata(path) + + # Need to be set before caching + set_name_and_version(self, metadata.name, metadata.version) + + if env and env._cache_enabled: + env._cache_egg.add(self) + super(EggInfoDistribution, self).__init__(metadata, path, env) + + def _get_metadata(self, path): + requires = None + + def parse_requires_data(data): + """Create a list of dependencies from a requires.txt file. + + *data*: the contents of a setuptools-produced requires.txt file. + """ + reqs = [] + lines = data.splitlines() + for line in lines: + line = line.strip() + # sectioned files have bare newlines (separating sections) + if not line: # pragma: no cover + continue + if line.startswith('['): # pragma: no cover + logger.warning( + 'Unexpected line: quitting requirement scan: %r', line) + break + r = parse_requirement(line) + if not r: # pragma: no cover + logger.warning('Not recognised as a requirement: %r', line) + continue + if r.extras: # pragma: no cover + logger.warning('extra requirements in requires.txt are ' + 'not supported') + if not r.constraints: + reqs.append(r.name) + else: + cons = ', '.join('%s%s' % c for c in r.constraints) + reqs.append('%s (%s)' % (r.name, cons)) + return reqs + + def parse_requires_path(req_path): + """Create a list of dependencies from a requires.txt file. + + *req_path*: the path to a setuptools-produced requires.txt file. + """ + + reqs = [] + try: + with codecs.open(req_path, 'r', 'utf-8') as fp: + reqs = parse_requires_data(fp.read()) + except IOError: + pass + return reqs + + tl_path = tl_data = None + if path.endswith('.egg'): + if os.path.isdir(path): + p = os.path.join(path, 'EGG-INFO') + meta_path = os.path.join(p, 'PKG-INFO') + metadata = Metadata(path=meta_path, scheme='legacy') + req_path = os.path.join(p, 'requires.txt') + tl_path = os.path.join(p, 'top_level.txt') + requires = parse_requires_path(req_path) + else: + # FIXME handle the case where zipfile is not available + zipf = zipimport.zipimporter(path) + fileobj = StringIO( + zipf.get_data('EGG-INFO/PKG-INFO').decode('utf8')) + metadata = Metadata(fileobj=fileobj, scheme='legacy') + try: + data = zipf.get_data('EGG-INFO/requires.txt') + tl_data = zipf.get_data('EGG-INFO/top_level.txt').decode( + 'utf-8') + requires = parse_requires_data(data.decode('utf-8')) + except IOError: + requires = None + elif path.endswith('.egg-info'): + if os.path.isdir(path): + req_path = os.path.join(path, 'requires.txt') + requires = parse_requires_path(req_path) + path = os.path.join(path, 'PKG-INFO') + tl_path = os.path.join(path, 'top_level.txt') + metadata = Metadata(path=path, scheme='legacy') + else: + raise DistlibException('path must end with .egg-info or .egg, ' + 'got %r' % path) + + if requires: + metadata.add_requirements(requires) + # look for top-level modules in top_level.txt, if present + if tl_data is None: + if tl_path is not None and os.path.exists(tl_path): + with open(tl_path, 'rb') as f: + tl_data = f.read().decode('utf-8') + if not tl_data: + tl_data = [] + else: + tl_data = tl_data.splitlines() + self.modules = tl_data + return metadata + + def __repr__(self): + return '' % (self.name, self.version, + self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + for path, _, _ in self.list_installed_files(): + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + return mismatches + + def list_installed_files(self): + """ + Iterates over the ``installed-files.txt`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: a list of (path, hash, size) + """ + + def _md5(path): + f = open(path, 'rb') + try: + content = f.read() + finally: + f.close() + return hashlib.md5(content).hexdigest() + + def _size(path): + return os.stat(path).st_size + + record_path = os.path.join(self.path, 'installed-files.txt') + result = [] + if os.path.exists(record_path): + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + p = os.path.normpath(os.path.join(self.path, line)) + # "./" is present as a marker between installed files + # and installation metadata files + if not os.path.exists(p): + logger.warning('Non-existent file: %s', p) + if p.endswith(('.pyc', '.pyo')): + continue + # otherwise fall through and fail + if not os.path.isdir(p): + result.append((p, _md5(p), _size(p))) + result.append((record_path, None, None)) + return result + + def list_distinfo_files(self, absolute=False): + """ + Iterates over the ``installed-files.txt`` entries and returns paths for + each line if the path is pointing to a file located in the + ``.egg-info`` directory or one of its subdirectories. + + :parameter absolute: If *absolute* is ``True``, each returned path is + transformed into a local absolute path. Otherwise the + raw value from ``installed-files.txt`` is returned. + :type absolute: boolean + :returns: iterator of paths + """ + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + skip = True + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + if line == './': + skip = False + continue + if not skip: + p = os.path.normpath(os.path.join(self.path, line)) + if p.startswith(self.path): + if absolute: + yield p + else: + yield line + + def __eq__(self, other): + return (isinstance(other, EggInfoDistribution) + and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +new_dist_class = InstalledDistribution +old_dist_class = EggInfoDistribution + + +class DependencyGraph(object): + """ + Represents a dependency graph between distributions. + + The dependency relationships are stored in an ``adjacency_list`` that maps + distributions to a list of ``(other, label)`` tuples where ``other`` + is a distribution and the edge is labeled with ``label`` (i.e. the version + specifier, if such was provided). Also, for more efficient traversal, for + every distribution ``x``, a list of predecessors is kept in + ``reverse_list[x]``. An edge from distribution ``a`` to + distribution ``b`` means that ``a`` depends on ``b``. If any missing + dependencies are found, they are stored in ``missing``, which is a + dictionary that maps distributions to a list of requirements that were not + provided by any other distributions. + """ + + def __init__(self): + self.adjacency_list = {} + self.reverse_list = {} + self.missing = {} + + def add_distribution(self, distribution): + """Add the *distribution* to the graph. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + """ + self.adjacency_list[distribution] = [] + self.reverse_list[distribution] = [] + # self.missing[distribution] = [] + + def add_edge(self, x, y, label=None): + """Add an edge from distribution *x* to distribution *y* with the given + *label*. + + :type x: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type y: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type label: ``str`` or ``None`` + """ + self.adjacency_list[x].append((y, label)) + # multiple edges are allowed, so be careful + if x not in self.reverse_list[y]: + self.reverse_list[y].append(x) + + def add_missing(self, distribution, requirement): + """ + Add a missing *requirement* for the given *distribution*. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + :type requirement: ``str`` + """ + logger.debug('%s missing %r', distribution, requirement) + self.missing.setdefault(distribution, []).append(requirement) + + def _repr_dist(self, dist): + return '%s %s' % (dist.name, dist.version) + + def repr_node(self, dist, level=1): + """Prints only a subgraph""" + output = [self._repr_dist(dist)] + for other, label in self.adjacency_list[dist]: + dist = self._repr_dist(other) + if label is not None: + dist = '%s [%s]' % (dist, label) + output.append(' ' * level + str(dist)) + suboutput = self.repr_node(other, level + 1) + subs = suboutput.split('\n') + output.extend(subs[1:]) + return '\n'.join(output) + + def to_dot(self, f, skip_disconnected=True): + """Writes a DOT output for the graph to the provided file *f*. + + If *skip_disconnected* is set to ``True``, then all distributions + that are not dependent on any other distribution are skipped. + + :type f: has to support ``file``-like operations + :type skip_disconnected: ``bool`` + """ + disconnected = [] + + f.write("digraph dependencies {\n") + for dist, adjs in self.adjacency_list.items(): + if len(adjs) == 0 and not skip_disconnected: + disconnected.append(dist) + for other, label in adjs: + if label is not None: + f.write('"%s" -> "%s" [label="%s"]\n' % + (dist.name, other.name, label)) + else: + f.write('"%s" -> "%s"\n' % (dist.name, other.name)) + if not skip_disconnected and len(disconnected) > 0: + f.write('subgraph disconnected {\n') + f.write('label = "Disconnected"\n') + f.write('bgcolor = red\n') + + for dist in disconnected: + f.write('"%s"' % dist.name) + f.write('\n') + f.write('}\n') + f.write('}\n') + + def topological_sort(self): + """ + Perform a topological sort of the graph. + :return: A tuple, the first element of which is a topologically sorted + list of distributions, and the second element of which is a + list of distributions that cannot be sorted because they have + circular dependencies and so form a cycle. + """ + result = [] + # Make a shallow copy of the adjacency list + alist = {} + for k, v in self.adjacency_list.items(): + alist[k] = v[:] + while True: + # See what we can remove in this run + to_remove = [] + for k, v in list(alist.items())[:]: + if not v: + to_remove.append(k) + del alist[k] + if not to_remove: + # What's left in alist (if anything) is a cycle. + break + # Remove from the adjacency list of others + for k, v in alist.items(): + alist[k] = [(d, r) for d, r in v if d not in to_remove] + logger.debug('Moving to result: %s', + ['%s (%s)' % (d.name, d.version) for d in to_remove]) + result.extend(to_remove) + return result, list(alist.keys()) + + def __repr__(self): + """Representation of the graph""" + output = [] + for dist, adjs in self.adjacency_list.items(): + output.append(self.repr_node(dist)) + return '\n'.join(output) + + +def make_graph(dists, scheme='default'): + """Makes a dependency graph from the given distributions. + + :parameter dists: a list of distributions + :type dists: list of :class:`distutils2.database.InstalledDistribution` and + :class:`distutils2.database.EggInfoDistribution` instances + :rtype: a :class:`DependencyGraph` instance + """ + scheme = get_scheme(scheme) + graph = DependencyGraph() + provided = {} # maps names to lists of (version, dist) tuples + + # first, build the graph and find out what's provided + for dist in dists: + graph.add_distribution(dist) + + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + provided.setdefault(name, []).append((version, dist)) + + # now make the edges + for dist in dists: + requires = (dist.run_requires | dist.meta_requires + | dist.build_requires | dist.dev_requires) + for req in requires: + try: + matcher = scheme.matcher(req) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', + req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + matched = False + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + graph.add_edge(dist, provider, req) + matched = True + break + if not matched: + graph.add_missing(dist, req) + return graph + + +def get_dependent_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + dependent on *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + dep = [dist] # dependent distributions + todo = graph.reverse_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop() + dep.append(d) + for succ in graph.reverse_list[d]: + if succ not in dep: + todo.append(succ) + + dep.pop(0) # remove dist from dep, was there to prevent infinite loops + return dep + + +def get_required_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + required by *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + in finding the dependencies. + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + req = set() # required distributions + todo = graph.adjacency_list[dist] # list of nodes we should inspect + seen = set(t[0] for t in todo) # already added to todo + + while todo: + d = todo.pop()[0] + req.add(d) + pred_list = graph.adjacency_list[d] + for pred in pred_list: + d = pred[0] + if d not in req and d not in seen: + seen.add(d) + todo.append(pred) + return req + + +def make_dist(name, version, **kwargs): + """ + A convenience method for making a dist given just a name and version. + """ + summary = kwargs.pop('summary', 'Placeholder for summary') + md = Metadata(**kwargs) + md.name = name + md.version = version + md.summary = summary or 'Placeholder for summary' + return Distribution(md) diff --git a/env/Lib/site-packages/pip/_vendor/distlib/index.py b/env/Lib/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 00000000..56cd2867 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/index.py @@ -0,0 +1,508 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import hashlib +import logging +import os +import shutil +import subprocess +import tempfile +try: + from threading import Thread +except ImportError: # pragma: no cover + from dummy_threading import Thread + +from . import DistlibException +from .compat import (HTTPBasicAuthHandler, Request, HTTPPasswordMgr, + urlparse, build_opener, string_types) +from .util import zip_dir, ServerProxy + +logger = logging.getLogger(__name__) + +DEFAULT_INDEX = 'https://pypi.org/pypi' +DEFAULT_REALM = 'pypi' + + +class PackageIndex(object): + """ + This class represents a package index compatible with PyPI, the Python + Package Index. + """ + + boundary = b'----------ThIs_Is_tHe_distlib_index_bouNdaRY_$' + + def __init__(self, url=None): + """ + Initialise an instance. + + :param url: The URL of the index. If not specified, the URL for PyPI is + used. + """ + self.url = url or DEFAULT_INDEX + self.read_configuration() + scheme, netloc, path, params, query, frag = urlparse(self.url) + if params or query or frag or scheme not in ('http', 'https'): + raise DistlibException('invalid repository: %s' % self.url) + self.password_handler = None + self.ssl_verifier = None + self.gpg = None + self.gpg_home = None + with open(os.devnull, 'w') as sink: + # Use gpg by default rather than gpg2, as gpg2 insists on + # prompting for passwords + for s in ('gpg', 'gpg2'): + try: + rc = subprocess.check_call([s, '--version'], stdout=sink, + stderr=sink) + if rc == 0: + self.gpg = s + break + except OSError: + pass + + def _get_pypirc_command(self): + """ + Get the distutils command for interacting with PyPI configurations. + :return: the command. + """ + from .util import _get_pypirc_command as cmd + return cmd() + + def read_configuration(self): + """ + Read the PyPI access configuration as supported by distutils. This populates + ``username``, ``password``, ``realm`` and ``url`` attributes from the + configuration. + """ + from .util import _load_pypirc + cfg = _load_pypirc(self) + self.username = cfg.get('username') + self.password = cfg.get('password') + self.realm = cfg.get('realm', 'pypi') + self.url = cfg.get('repository', self.url) + + def save_configuration(self): + """ + Save the PyPI access configuration. You must have set ``username`` and + ``password`` attributes before calling this method. + """ + self.check_credentials() + from .util import _store_pypirc + _store_pypirc(self) + + def check_credentials(self): + """ + Check that ``username`` and ``password`` have been set, and raise an + exception if not. + """ + if self.username is None or self.password is None: + raise DistlibException('username and password must be set') + pm = HTTPPasswordMgr() + _, netloc, _, _, _, _ = urlparse(self.url) + pm.add_password(self.realm, netloc, self.username, self.password) + self.password_handler = HTTPBasicAuthHandler(pm) + + def register(self, metadata): # pragma: no cover + """ + Register a distribution on PyPI, using the provided metadata. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the distribution to be + registered. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + metadata.validate() + d = metadata.todict() + d[':action'] = 'verify' + request = self.encode_request(d.items(), []) + self.send_request(request) + d[':action'] = 'submit' + request = self.encode_request(d.items(), []) + return self.send_request(request) + + def _reader(self, name, stream, outbuf): + """ + Thread runner for reading lines of from a subprocess into a buffer. + + :param name: The logical name of the stream (used for logging only). + :param stream: The stream to read from. This will typically a pipe + connected to the output stream of a subprocess. + :param outbuf: The list to append the read lines to. + """ + while True: + s = stream.readline() + if not s: + break + s = s.decode('utf-8').rstrip() + outbuf.append(s) + logger.debug('%s: %s' % (name, s)) + stream.close() + + def get_sign_command(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Return a suitable command for signing a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The signing command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + if sign_password is not None: + cmd.extend(['--batch', '--passphrase-fd', '0']) + td = tempfile.mkdtemp() + sf = os.path.join(td, os.path.basename(filename) + '.asc') + cmd.extend(['--detach-sign', '--armor', '--local-user', + signer, '--output', sf, filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd, sf + + def run_command(self, cmd, input_data=None): + """ + Run a command in a child process , passing it any input data specified. + + :param cmd: The command to run. + :param input_data: If specified, this must be a byte string containing + data to be sent to the child process. + :return: A tuple consisting of the subprocess' exit code, a list of + lines read from the subprocess' ``stdout``, and a list of + lines read from the subprocess' ``stderr``. + """ + kwargs = { + 'stdout': subprocess.PIPE, + 'stderr': subprocess.PIPE, + } + if input_data is not None: + kwargs['stdin'] = subprocess.PIPE + stdout = [] + stderr = [] + p = subprocess.Popen(cmd, **kwargs) + # We don't use communicate() here because we may need to + # get clever with interacting with the command + t1 = Thread(target=self._reader, args=('stdout', p.stdout, stdout)) + t1.start() + t2 = Thread(target=self._reader, args=('stderr', p.stderr, stderr)) + t2.start() + if input_data is not None: + p.stdin.write(input_data) + p.stdin.close() + + p.wait() + t1.join() + t2.join() + return p.returncode, stdout, stderr + + def sign_file(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Sign a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The absolute pathname of the file where the signature is + stored. + """ + cmd, sig_file = self.get_sign_command(filename, signer, sign_password, + keystore) + rc, stdout, stderr = self.run_command(cmd, + sign_password.encode('utf-8')) + if rc != 0: + raise DistlibException('sign command failed with error ' + 'code %s' % rc) + return sig_file + + def upload_file(self, metadata, filename, signer=None, sign_password=None, + filetype='sdist', pyversion='source', keystore=None): + """ + Upload a release file to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the file to be uploaded. + :param filename: The pathname of the file to be uploaded. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param filetype: The type of the file being uploaded. This is the + distutils command which produced that file, e.g. + ``sdist`` or ``bdist_wheel``. + :param pyversion: The version of Python which the release relates + to. For code compatible with any Python, this would + be ``source``, otherwise it would be e.g. ``3.2``. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.exists(filename): + raise DistlibException('not found: %s' % filename) + metadata.validate() + d = metadata.todict() + sig_file = None + if signer: + if not self.gpg: + logger.warning('no signing program available - not signed') + else: + sig_file = self.sign_file(filename, signer, sign_password, + keystore) + with open(filename, 'rb') as f: + file_data = f.read() + md5_digest = hashlib.md5(file_data).hexdigest() + sha256_digest = hashlib.sha256(file_data).hexdigest() + d.update({ + ':action': 'file_upload', + 'protocol_version': '1', + 'filetype': filetype, + 'pyversion': pyversion, + 'md5_digest': md5_digest, + 'sha256_digest': sha256_digest, + }) + files = [('content', os.path.basename(filename), file_data)] + if sig_file: + with open(sig_file, 'rb') as f: + sig_data = f.read() + files.append(('gpg_signature', os.path.basename(sig_file), + sig_data)) + shutil.rmtree(os.path.dirname(sig_file)) + request = self.encode_request(d.items(), files) + return self.send_request(request) + + def upload_documentation(self, metadata, doc_dir): # pragma: no cover + """ + Upload documentation to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the documentation to be + uploaded. + :param doc_dir: The pathname of the directory which contains the + documentation. This should be the directory that + contains the ``index.html`` for the documentation. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.isdir(doc_dir): + raise DistlibException('not a directory: %r' % doc_dir) + fn = os.path.join(doc_dir, 'index.html') + if not os.path.exists(fn): + raise DistlibException('not found: %r' % fn) + metadata.validate() + name, version = metadata.name, metadata.version + zip_data = zip_dir(doc_dir).getvalue() + fields = [(':action', 'doc_upload'), + ('name', name), ('version', version)] + files = [('content', name, zip_data)] + request = self.encode_request(fields, files) + return self.send_request(request) + + def get_verify_command(self, signature_filename, data_filename, + keystore=None): + """ + Return a suitable command for verifying a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The verifying command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + cmd.extend(['--verify', signature_filename, data_filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd + + def verify_signature(self, signature_filename, data_filename, + keystore=None): + """ + Verify a signature for a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: True if the signature was verified, else False. + """ + if not self.gpg: + raise DistlibException('verification unavailable because gpg ' + 'unavailable') + cmd = self.get_verify_command(signature_filename, data_filename, + keystore) + rc, stdout, stderr = self.run_command(cmd) + if rc not in (0, 1): + raise DistlibException('verify command failed with error code %s' % rc) + return rc == 0 + + def download_file(self, url, destfile, digest=None, reporthook=None): + """ + This is a convenience method for downloading a file from an URL. + Normally, this will be a file from the index, though currently + no check is made for this (i.e. a file can be downloaded from + anywhere). + + The method is just like the :func:`urlretrieve` function in the + standard library, except that it allows digest computation to be + done during download and checking that the downloaded data + matched any expected value. + + :param url: The URL of the file to be downloaded (assumed to be + available via an HTTP GET request). + :param destfile: The pathname where the downloaded file is to be + saved. + :param digest: If specified, this must be a (hasher, value) + tuple, where hasher is the algorithm used (e.g. + ``'md5'``) and ``value`` is the expected value. + :param reporthook: The same as for :func:`urlretrieve` in the + standard library. + """ + if digest is None: + digester = None + logger.debug('No digest specified') + else: + if isinstance(digest, (list, tuple)): + hasher, digest = digest + else: + hasher = 'md5' + digester = getattr(hashlib, hasher)() + logger.debug('Digest specified: %s' % digest) + # The following code is equivalent to urlretrieve. + # We need to do it this way so that we can compute the + # digest of the file as we go. + with open(destfile, 'wb') as dfp: + # addinfourl is not a context manager on 2.x + # so we have to use try/finally + sfp = self.send_request(Request(url)) + try: + headers = sfp.info() + blocksize = 8192 + size = -1 + read = 0 + blocknum = 0 + if "content-length" in headers: + size = int(headers["Content-Length"]) + if reporthook: + reporthook(blocknum, blocksize, size) + while True: + block = sfp.read(blocksize) + if not block: + break + read += len(block) + dfp.write(block) + if digester: + digester.update(block) + blocknum += 1 + if reporthook: + reporthook(blocknum, blocksize, size) + finally: + sfp.close() + + # check that we got the whole file, if we can + if size >= 0 and read < size: + raise DistlibException( + 'retrieval incomplete: got only %d out of %d bytes' + % (read, size)) + # if we have a digest, it must match. + if digester: + actual = digester.hexdigest() + if digest != actual: + raise DistlibException('%s digest mismatch for %s: expected ' + '%s, got %s' % (hasher, destfile, + digest, actual)) + logger.debug('Digest verified: %s', digest) + + def send_request(self, req): + """ + Send a standard library :class:`Request` to PyPI and return its + response. + + :param req: The request to send. + :return: The HTTP response from PyPI (a standard library HTTPResponse). + """ + handlers = [] + if self.password_handler: + handlers.append(self.password_handler) + if self.ssl_verifier: + handlers.append(self.ssl_verifier) + opener = build_opener(*handlers) + return opener.open(req) + + def encode_request(self, fields, files): + """ + Encode fields and files for posting to an HTTP server. + + :param fields: The fields to send as a list of (fieldname, value) + tuples. + :param files: The files to send as a list of (fieldname, filename, + file_bytes) tuple. + """ + # Adapted from packaging, which in turn was adapted from + # http://code.activestate.com/recipes/146306 + + parts = [] + boundary = self.boundary + for k, values in fields: + if not isinstance(values, (list, tuple)): + values = [values] + + for v in values: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"' % + k).encode('utf-8'), + b'', + v.encode('utf-8'))) + for key, filename, value in files: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"; filename="%s"' % + (key, filename)).encode('utf-8'), + b'', + value)) + + parts.extend((b'--' + boundary + b'--', b'')) + + body = b'\r\n'.join(parts) + ct = b'multipart/form-data; boundary=' + boundary + headers = { + 'Content-type': ct, + 'Content-length': str(len(body)) + } + return Request(self.url, body, headers) + + def search(self, terms, operator=None): # pragma: no cover + if isinstance(terms, string_types): + terms = {'name': terms} + rpc_proxy = ServerProxy(self.url, timeout=3.0) + try: + return rpc_proxy.search(terms, operator or 'and') + finally: + rpc_proxy('close')() diff --git a/env/Lib/site-packages/pip/_vendor/distlib/locators.py b/env/Lib/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 00000000..f9f0788f --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1303 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# + +import gzip +from io import BytesIO +import json +import logging +import os +import posixpath +import re +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import zlib + +from . import DistlibException +from .compat import (urljoin, urlparse, urlunparse, url2pathname, pathname2url, + queue, quote, unescape, build_opener, + HTTPRedirectHandler as BaseRedirectHandler, text_type, + Request, HTTPError, URLError) +from .database import Distribution, DistributionPath, make_dist +from .metadata import Metadata, MetadataInvalidError +from .util import (cached_property, ensure_slash, split_filename, get_project_data, + parse_requirement, parse_name_and_version, ServerProxy, + normalize_name) +from .version import get_scheme, UnsupportedVersionError +from .wheel import Wheel, is_compatible + +logger = logging.getLogger(__name__) + +HASHER_HASH = re.compile(r'^(\w+)=([a-f0-9]+)') +CHARSET = re.compile(r';\s*charset\s*=\s*(.*)\s*$', re.I) +HTML_CONTENT_TYPE = re.compile('text/html|application/x(ht)?ml') +DEFAULT_INDEX = 'https://pypi.org/pypi' + + +def get_all_distribution_names(url=None): + """ + Return all distribution names known by an index. + :param url: The URL of the index. + :return: A list of all known distribution names. + """ + if url is None: + url = DEFAULT_INDEX + client = ServerProxy(url, timeout=3.0) + try: + return client.list_packages() + finally: + client('close')() + + +class RedirectHandler(BaseRedirectHandler): + """ + A class to work around a bug in some Python 3.2.x releases. + """ + # There's a bug in the base version for some 3.2.x + # (e.g. 3.2.2 on Ubuntu Oneiric). If a Location header + # returns e.g. /abc, it bails because it says the scheme '' + # is bogus, when actually it should use the request's + # URL for the scheme. See Python issue #13696. + def http_error_302(self, req, fp, code, msg, headers): + # Some servers (incorrectly) return multiple Location headers + # (so probably same goes for URI). Use first header. + newurl = None + for key in ('location', 'uri'): + if key in headers: + newurl = headers[key] + break + if newurl is None: # pragma: no cover + return + urlparts = urlparse(newurl) + if urlparts.scheme == '': + newurl = urljoin(req.get_full_url(), newurl) + if hasattr(headers, 'replace_header'): + headers.replace_header(key, newurl) + else: + headers[key] = newurl + return BaseRedirectHandler.http_error_302(self, req, fp, code, msg, + headers) + + http_error_301 = http_error_303 = http_error_307 = http_error_302 + + +class Locator(object): + """ + A base class for locators - things that locate distributions. + """ + source_extensions = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz') + binary_extensions = ('.egg', '.exe', '.whl') + excluded_extensions = ('.pdf',) + + # A list of tags indicating which wheels you want to match. The default + # value of None matches against the tags compatible with the running + # Python. If you want to match other values, set wheel_tags on a locator + # instance to a list of tuples (pyver, abi, arch) which you want to match. + wheel_tags = None + + downloadable_extensions = source_extensions + ('.whl',) + + def __init__(self, scheme='default'): + """ + Initialise an instance. + :param scheme: Because locators look for most recent versions, they + need to know the version scheme to use. This specifies + the current PEP-recommended scheme - use ``'legacy'`` + if you need to support existing distributions on PyPI. + """ + self._cache = {} + self.scheme = scheme + # Because of bugs in some of the handlers on some of the platforms, + # we use our own opener rather than just using urlopen. + self.opener = build_opener(RedirectHandler()) + # If get_project() is called from locate(), the matcher instance + # is set from the requirement passed to locate(). See issue #18 for + # why this can be useful to know. + self.matcher = None + self.errors = queue.Queue() + + def get_errors(self): + """ + Return any errors which have occurred. + """ + result = [] + while not self.errors.empty(): # pragma: no cover + try: + e = self.errors.get(False) + result.append(e) + except self.errors.Empty: + continue + self.errors.task_done() + return result + + def clear_errors(self): + """ + Clear any errors which may have been logged. + """ + # Just get the errors and throw them away + self.get_errors() + + def clear_cache(self): + self._cache.clear() + + def _get_scheme(self): + return self._scheme + + def _set_scheme(self, value): + self._scheme = value + + scheme = property(_get_scheme, _set_scheme) + + def _get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This should be implemented in subclasses. + + If called from a locate() request, self.matcher will be set to a + matcher for the requirement to satisfy, otherwise it will be None. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This calls _get_project to do all the work, and just implements a caching layer on top. + """ + if self._cache is None: # pragma: no cover + result = self._get_project(name) + elif name in self._cache: + result = self._cache[name] + else: + self.clear_errors() + result = self._get_project(name) + self._cache[name] = result + return result + + def score_url(self, url): + """ + Give an url a score which can be used to choose preferred URLs + for a given project release. + """ + t = urlparse(url) + basename = posixpath.basename(t.path) + compatible = True + is_wheel = basename.endswith('.whl') + is_downloadable = basename.endswith(self.downloadable_extensions) + if is_wheel: + compatible = is_compatible(Wheel(basename), self.wheel_tags) + return (t.scheme == 'https', 'pypi.org' in t.netloc, + is_downloadable, is_wheel, compatible, basename) + + def prefer_url(self, url1, url2): + """ + Choose one of two URLs where both are candidates for distribution + archives for the same version of a distribution (for example, + .tar.gz vs. zip). + + The current implementation favours https:// URLs over http://, archives + from PyPI over those from other locations, wheel compatibility (if a + wheel) and then the archive name. + """ + result = url2 + if url1: + s1 = self.score_url(url1) + s2 = self.score_url(url2) + if s1 > s2: + result = url1 + if result != url2: + logger.debug('Not replacing %r with %r', url1, url2) + else: + logger.debug('Replacing %r with %r', url1, url2) + return result + + def split_filename(self, filename, project_name): + """ + Attempt to split a filename in project name, version and Python version. + """ + return split_filename(filename, project_name) + + def convert_url_to_download_info(self, url, project_name): + """ + See if a URL is a candidate for a download URL for a project (the URL + has typically been scraped from an HTML page). + + If it is, a dictionary is returned with keys "name", "version", + "filename" and "url"; otherwise, None is returned. + """ + def same_project(name1, name2): + return normalize_name(name1) == normalize_name(name2) + + result = None + scheme, netloc, path, params, query, frag = urlparse(url) + if frag.lower().startswith('egg='): # pragma: no cover + logger.debug('%s: version hint in fragment: %r', + project_name, frag) + m = HASHER_HASH.match(frag) + if m: + algo, digest = m.groups() + else: + algo, digest = None, None + origpath = path + if path and path[-1] == '/': # pragma: no cover + path = path[:-1] + if path.endswith('.whl'): + try: + wheel = Wheel(path) + if not is_compatible(wheel, self.wheel_tags): + logger.debug('Wheel not compatible: %s', path) + else: + if project_name is None: + include = True + else: + include = same_project(wheel.name, project_name) + if include: + result = { + 'name': wheel.name, + 'version': wheel.version, + 'filename': wheel.filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + 'python-version': ', '.join( + ['.'.join(list(v[2:])) for v in wheel.pyver]), + } + except Exception: # pragma: no cover + logger.warning('invalid path for wheel: %s', path) + elif not path.endswith(self.downloadable_extensions): # pragma: no cover + logger.debug('Not downloadable: %s', path) + else: # downloadable extension + path = filename = posixpath.basename(path) + for ext in self.downloadable_extensions: + if path.endswith(ext): + path = path[:-len(ext)] + t = self.split_filename(path, project_name) + if not t: # pragma: no cover + logger.debug('No match for project/version: %s', path) + else: + name, version, pyver = t + if not project_name or same_project(project_name, name): + result = { + 'name': name, + 'version': version, + 'filename': filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + } + if pyver: # pragma: no cover + result['python-version'] = pyver + break + if result and algo: + result['%s_digest' % algo] = digest + return result + + def _get_digest(self, info): + """ + Get a digest from a dictionary by looking at a "digests" dictionary + or keys of the form 'algo_digest'. + + Returns a 2-tuple (algo, digest) if found, else None. Currently + looks only for SHA256, then MD5. + """ + result = None + if 'digests' in info: + digests = info['digests'] + for algo in ('sha256', 'md5'): + if algo in digests: + result = (algo, digests[algo]) + break + if not result: + for algo in ('sha256', 'md5'): + key = '%s_digest' % algo + if key in info: + result = (algo, info[key]) + break + return result + + def _update_version_data(self, result, info): + """ + Update a result dictionary (the final result from _get_project) with a + dictionary for a specific version, which typically holds information + gleaned from a filename or URL for an archive for the distribution. + """ + name = info.pop('name') + version = info.pop('version') + if version in result: + dist = result[version] + md = dist.metadata + else: + dist = make_dist(name, version, scheme=self.scheme) + md = dist.metadata + dist.digest = digest = self._get_digest(info) + url = info['url'] + result['digests'][url] = digest + if md.source_url != info['url']: + md.source_url = self.prefer_url(md.source_url, url) + result['urls'].setdefault(version, set()).add(url) + dist.locator = self + result[version] = dist + + def locate(self, requirement, prereleases=False): + """ + Find the most recent distribution which matches the given + requirement. + + :param requirement: A requirement of the form 'foo (1.0)' or perhaps + 'foo (>= 1.0, < 2.0, != 1.3)' + :param prereleases: If ``True``, allow pre-release versions + to be located. Otherwise, pre-release versions + are not returned. + :return: A :class:`Distribution` instance, or ``None`` if no such + distribution could be located. + """ + result = None + r = parse_requirement(requirement) + if r is None: # pragma: no cover + raise DistlibException('Not a valid requirement: %r' % requirement) + scheme = get_scheme(self.scheme) + self.matcher = matcher = scheme.matcher(r.requirement) + logger.debug('matcher: %s (%s)', matcher, type(matcher).__name__) + versions = self.get_project(r.name) + if len(versions) > 2: # urls and digests keys are present + # sometimes, versions are invalid + slist = [] + vcls = matcher.version_class + for k in versions: + if k in ('urls', 'digests'): + continue + try: + if not matcher.match(k): + pass # logger.debug('%s did not match %r', matcher, k) + else: + if prereleases or not vcls(k).is_prerelease: + slist.append(k) + except Exception: # pragma: no cover + logger.warning('error matching %s with %r', matcher, k) + pass # slist.append(k) + if len(slist) > 1: + slist = sorted(slist, key=scheme.key) + if slist: + logger.debug('sorted list: %s', slist) + version = slist[-1] + result = versions[version] + if result: + if r.extras: + result.extras = r.extras + result.download_urls = versions.get('urls', {}).get(version, set()) + d = {} + sd = versions.get('digests', {}) + for url in result.download_urls: + if url in sd: # pragma: no cover + d[url] = sd[url] + result.digests = d + self.matcher = None + return result + + +class PyPIRPCLocator(Locator): + """ + This locator uses XML-RPC to locate distributions. It therefore + cannot be used with simple mirrors (that only mirror file content). + """ + def __init__(self, url, **kwargs): + """ + Initialise an instance. + + :param url: The URL to use for XML-RPC. + :param kwargs: Passed to the superclass constructor. + """ + super(PyPIRPCLocator, self).__init__(**kwargs) + self.base_url = url + self.client = ServerProxy(url, timeout=3.0) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + return set(self.client.list_packages()) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + versions = self.client.package_releases(name, True) + for v in versions: + urls = self.client.release_urls(name, v) + data = self.client.release_data(name, v) + metadata = Metadata(scheme=self.scheme) + metadata.name = data['name'] + metadata.version = data['version'] + metadata.license = data.get('license') + metadata.keywords = data.get('keywords', []) + metadata.summary = data.get('summary') + dist = Distribution(metadata) + if urls: + info = urls[0] + metadata.source_url = info['url'] + dist.digest = self._get_digest(info) + dist.locator = self + result[v] = dist + for info in urls: + url = info['url'] + digest = self._get_digest(info) + result['urls'].setdefault(v, set()).add(url) + result['digests'][url] = digest + return result + + +class PyPIJSONLocator(Locator): + """ + This locator uses PyPI's JSON interface. It's very limited in functionality + and probably not worth using. + """ + def __init__(self, url, **kwargs): + super(PyPIJSONLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + url = urljoin(self.base_url, '%s/json' % quote(name)) + try: + resp = self.opener.open(url) + data = resp.read().decode() # for now + d = json.loads(data) + md = Metadata(scheme=self.scheme) + data = d['info'] + md.name = data['name'] + md.version = data['version'] + md.license = data.get('license') + md.keywords = data.get('keywords', []) + md.summary = data.get('summary') + dist = Distribution(md) + dist.locator = self + # urls = d['urls'] + result[md.version] = dist + for info in d['urls']: + url = info['url'] + dist.download_urls.add(url) + dist.digests[url] = self._get_digest(info) + result['urls'].setdefault(md.version, set()).add(url) + result['digests'][url] = self._get_digest(info) + # Now get other releases + for version, infos in d['releases'].items(): + if version == md.version: + continue # already done + omd = Metadata(scheme=self.scheme) + omd.name = md.name + omd.version = version + odist = Distribution(omd) + odist.locator = self + result[version] = odist + for info in infos: + url = info['url'] + odist.download_urls.add(url) + odist.digests[url] = self._get_digest(info) + result['urls'].setdefault(version, set()).add(url) + result['digests'][url] = self._get_digest(info) +# for info in urls: +# md.source_url = info['url'] +# dist.digest = self._get_digest(info) +# dist.locator = self +# for info in urls: +# url = info['url'] +# result['urls'].setdefault(md.version, set()).add(url) +# result['digests'][url] = self._get_digest(info) + except Exception as e: + self.errors.put(text_type(e)) + logger.exception('JSON fetch failed: %s', e) + return result + + +class Page(object): + """ + This class represents a scraped HTML page. + """ + # The following slightly hairy-looking regex just looks for the contents of + # an anchor link, which has an attribute "href" either immediately preceded + # or immediately followed by a "rel" attribute. The attribute values can be + # declared with double quotes, single quotes or no quotes - which leads to + # the length of the expression. + _href = re.compile(""" +(rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*))\\s+)? +href\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)) +(\\s+rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)))? +""", re.I | re.S | re.X) + _base = re.compile(r"""]+)""", re.I | re.S) + + def __init__(self, data, url): + """ + Initialise an instance with the Unicode page contents and the URL they + came from. + """ + self.data = data + self.base_url = self.url = url + m = self._base.search(self.data) + if m: + self.base_url = m.group(1) + + _clean_re = re.compile(r'[^a-z0-9$&+,/:;=?@.#%_\\|-]', re.I) + + @cached_property + def links(self): + """ + Return the URLs of all the links on a page together with information + about their "rel" attribute, for determining which ones to treat as + downloads and which ones to queue for further scraping. + """ + def clean(url): + "Tidy up an URL." + scheme, netloc, path, params, query, frag = urlparse(url) + return urlunparse((scheme, netloc, quote(path), + params, query, frag)) + + result = set() + for match in self._href.finditer(self.data): + d = match.groupdict('') + rel = (d['rel1'] or d['rel2'] or d['rel3'] or + d['rel4'] or d['rel5'] or d['rel6']) + url = d['url1'] or d['url2'] or d['url3'] + url = urljoin(self.base_url, url) + url = unescape(url) + url = self._clean_re.sub(lambda m: '%%%2x' % ord(m.group(0)), url) + result.add((url, rel)) + # We sort the result, hoping to bring the most recent versions + # to the front + result = sorted(result, key=lambda t: t[0], reverse=True) + return result + + +class SimpleScrapingLocator(Locator): + """ + A locator which scrapes HTML pages to locate downloads for a distribution. + This runs multiple threads to do the I/O; performance is at least as good + as pip's PackageFinder, which works in an analogous fashion. + """ + + # These are used to deal with various Content-Encoding schemes. + decoders = { + 'deflate': zlib.decompress, + 'gzip': lambda b: gzip.GzipFile(fileobj=BytesIO(b)).read(), + 'none': lambda b: b, + } + + def __init__(self, url, timeout=None, num_workers=10, **kwargs): + """ + Initialise an instance. + :param url: The root URL to use for scraping. + :param timeout: The timeout, in seconds, to be applied to requests. + This defaults to ``None`` (no timeout specified). + :param num_workers: The number of worker threads you want to do I/O, + This defaults to 10. + :param kwargs: Passed to the superclass. + """ + super(SimpleScrapingLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + self.timeout = timeout + self._page_cache = {} + self._seen = set() + self._to_fetch = queue.Queue() + self._bad_hosts = set() + self.skip_externals = False + self.num_workers = num_workers + self._lock = threading.RLock() + # See issue #45: we need to be resilient when the locator is used + # in a thread, e.g. with concurrent.futures. We can't use self._lock + # as it is for coordinating our internal threads - the ones created + # in _prepare_threads. + self._gplock = threading.RLock() + self.platform_check = False # See issue #112 + + def _prepare_threads(self): + """ + Threads are created only when get_project is called, and terminate + before it returns. They are there primarily to parallelise I/O (i.e. + fetching web pages). + """ + self._threads = [] + for i in range(self.num_workers): + t = threading.Thread(target=self._fetch) + t.daemon = True + t.start() + self._threads.append(t) + + def _wait_threads(self): + """ + Tell all the threads to terminate (by sending a sentinel value) and + wait for them to do so. + """ + # Note that you need two loops, since you can't say which + # thread will get each sentinel + for t in self._threads: + self._to_fetch.put(None) # sentinel + for t in self._threads: + t.join() + self._threads = [] + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + with self._gplock: + self.result = result + self.project_name = name + url = urljoin(self.base_url, '%s/' % quote(name)) + self._seen.clear() + self._page_cache.clear() + self._prepare_threads() + try: + logger.debug('Queueing %s', url) + self._to_fetch.put(url) + self._to_fetch.join() + finally: + self._wait_threads() + del self.result + return result + + platform_dependent = re.compile(r'\b(linux_(i\d86|x86_64|arm\w+)|' + r'win(32|_amd64)|macosx_?\d+)\b', re.I) + + def _is_platform_dependent(self, url): + """ + Does an URL refer to a platform-specific download? + """ + return self.platform_dependent.search(url) + + def _process_download(self, url): + """ + See if an URL is a suitable download for a project. + + If it is, register information in the result dictionary (for + _get_project) about the specific version it's for. + + Note that the return value isn't actually used other than as a boolean + value. + """ + if self.platform_check and self._is_platform_dependent(url): + info = None + else: + info = self.convert_url_to_download_info(url, self.project_name) + logger.debug('process_download: %s -> %s', url, info) + if info: + with self._lock: # needed because self.result is shared + self._update_version_data(self.result, info) + return info + + def _should_queue(self, link, referrer, rel): + """ + Determine whether a link URL from a referring page and with a + particular "rel" attribute should be queued for scraping. + """ + scheme, netloc, path, _, _, _ = urlparse(link) + if path.endswith(self.source_extensions + self.binary_extensions + + self.excluded_extensions): + result = False + elif self.skip_externals and not link.startswith(self.base_url): + result = False + elif not referrer.startswith(self.base_url): + result = False + elif rel not in ('homepage', 'download'): + result = False + elif scheme not in ('http', 'https', 'ftp'): + result = False + elif self._is_platform_dependent(link): + result = False + else: + host = netloc.split(':', 1)[0] + if host.lower() == 'localhost': + result = False + else: + result = True + logger.debug('should_queue: %s (%s) from %s -> %s', link, rel, + referrer, result) + return result + + def _fetch(self): + """ + Get a URL to fetch from the work queue, get the HTML page, examine its + links for download candidates and candidates for further scraping. + + This is a handy method to run in a thread. + """ + while True: + url = self._to_fetch.get() + try: + if url: + page = self.get_page(url) + if page is None: # e.g. after an error + continue + for link, rel in page.links: + if link not in self._seen: + try: + self._seen.add(link) + if (not self._process_download(link) and + self._should_queue(link, url, rel)): + logger.debug('Queueing %s from %s', link, url) + self._to_fetch.put(link) + except MetadataInvalidError: # e.g. invalid versions + pass + except Exception as e: # pragma: no cover + self.errors.put(text_type(e)) + finally: + # always do this, to avoid hangs :-) + self._to_fetch.task_done() + if not url: + # logger.debug('Sentinel seen, quitting.') + break + + def get_page(self, url): + """ + Get the HTML for an URL, possibly from an in-memory cache. + + XXX TODO Note: this cache is never actually cleared. It's assumed that + the data won't get stale over the lifetime of a locator instance (not + necessarily true for the default_locator). + """ + # http://peak.telecommunity.com/DevCenter/EasyInstall#package-index-api + scheme, netloc, path, _, _, _ = urlparse(url) + if scheme == 'file' and os.path.isdir(url2pathname(path)): + url = urljoin(ensure_slash(url), 'index.html') + + if url in self._page_cache: + result = self._page_cache[url] + logger.debug('Returning %s from cache: %s', url, result) + else: + host = netloc.split(':', 1)[0] + result = None + if host in self._bad_hosts: + logger.debug('Skipping %s due to bad host %s', url, host) + else: + req = Request(url, headers={'Accept-encoding': 'identity'}) + try: + logger.debug('Fetching %s', url) + resp = self.opener.open(req, timeout=self.timeout) + logger.debug('Fetched %s', url) + headers = resp.info() + content_type = headers.get('Content-Type', '') + if HTML_CONTENT_TYPE.match(content_type): + final_url = resp.geturl() + data = resp.read() + encoding = headers.get('Content-Encoding') + if encoding: + decoder = self.decoders[encoding] # fail if not found + data = decoder(data) + encoding = 'utf-8' + m = CHARSET.search(content_type) + if m: + encoding = m.group(1) + try: + data = data.decode(encoding) + except UnicodeError: # pragma: no cover + data = data.decode('latin-1') # fallback + result = Page(data, final_url) + self._page_cache[final_url] = result + except HTTPError as e: + if e.code != 404: + logger.exception('Fetch failed: %s: %s', url, e) + except URLError as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + with self._lock: + self._bad_hosts.add(host) + except Exception as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + finally: + self._page_cache[url] = result # even if None (failure) + return result + + _distname_re = re.compile(']*>([^<]+)<') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + page = self.get_page(self.base_url) + if not page: + raise DistlibException('Unable to get %s' % self.base_url) + for match in self._distname_re.finditer(page.data): + result.add(match.group(1)) + return result + + +class DirectoryLocator(Locator): + """ + This class locates distributions in a directory tree. + """ + + def __init__(self, path, **kwargs): + """ + Initialise an instance. + :param path: The root of the directory tree to search. + :param kwargs: Passed to the superclass constructor, + except for: + * recursive - if True (the default), subdirectories are + recursed into. If False, only the top-level directory + is searched, + """ + self.recursive = kwargs.pop('recursive', True) + super(DirectoryLocator, self).__init__(**kwargs) + path = os.path.abspath(path) + if not os.path.isdir(path): # pragma: no cover + raise DistlibException('Not a directory: %r' % path) + self.base_dir = path + + def should_include(self, filename, parent): + """ + Should a filename be considered as a candidate for a distribution + archive? As well as the filename, the directory which contains it + is provided, though not used by the current implementation. + """ + return filename.endswith(self.downloadable_extensions) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, name) + if info: + self._update_version_data(result, info) + if not self.recursive: + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, None) + if info: + result.add(info['name']) + if not self.recursive: + break + return result + + +class JSONLocator(Locator): + """ + This locator uses special extended metadata (not available on PyPI) and is + the basis of performant dependency resolution in distlib. Other locators + require archive downloads before dependencies can be determined! As you + might imagine, that can be slow. + """ + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + data = get_project_data(name) + if data: + for info in data.get('files', []): + if info['ptype'] != 'sdist' or info['pyversion'] != 'source': + continue + # We don't store summary in project metadata as it makes + # the data bigger for no benefit during dependency + # resolution + dist = make_dist(data['name'], info['version'], + summary=data.get('summary', + 'Placeholder for summary'), + scheme=self.scheme) + md = dist.metadata + md.source_url = info['url'] + # TODO SHA256 digest + if 'digest' in info and info['digest']: + dist.digest = ('md5', info['digest']) + md.dependencies = info.get('requirements', {}) + dist.exports = info.get('exports', {}) + result[dist.version] = dist + result['urls'].setdefault(dist.version, set()).add(info['url']) + return result + + +class DistPathLocator(Locator): + """ + This locator finds installed distributions in a path. It can be useful for + adding to an :class:`AggregatingLocator`. + """ + def __init__(self, distpath, **kwargs): + """ + Initialise an instance. + + :param distpath: A :class:`DistributionPath` instance to search. + """ + super(DistPathLocator, self).__init__(**kwargs) + assert isinstance(distpath, DistributionPath) + self.distpath = distpath + + def _get_project(self, name): + dist = self.distpath.get_distribution(name) + if dist is None: + result = {'urls': {}, 'digests': {}} + else: + result = { + dist.version: dist, + 'urls': {dist.version: set([dist.source_url])}, + 'digests': {dist.version: set([None])} + } + return result + + +class AggregatingLocator(Locator): + """ + This class allows you to chain and/or merge a list of locators. + """ + def __init__(self, *locators, **kwargs): + """ + Initialise an instance. + + :param locators: The list of locators to search. + :param kwargs: Passed to the superclass constructor, + except for: + * merge - if False (the default), the first successful + search from any of the locators is returned. If True, + the results from all locators are merged (this can be + slow). + """ + self.merge = kwargs.pop('merge', False) + self.locators = locators + super(AggregatingLocator, self).__init__(**kwargs) + + def clear_cache(self): + super(AggregatingLocator, self).clear_cache() + for locator in self.locators: + locator.clear_cache() + + def _set_scheme(self, value): + self._scheme = value + for locator in self.locators: + locator.scheme = value + + scheme = property(Locator.scheme.fget, _set_scheme) + + def _get_project(self, name): + result = {} + for locator in self.locators: + d = locator.get_project(name) + if d: + if self.merge: + files = result.get('urls', {}) + digests = result.get('digests', {}) + # next line could overwrite result['urls'], result['digests'] + result.update(d) + df = result.get('urls') + if files and df: + for k, v in files.items(): + if k in df: + df[k] |= v + else: + df[k] = v + dd = result.get('digests') + if digests and dd: + dd.update(digests) + else: + # See issue #18. If any dists are found and we're looking + # for specific constraints, we only return something if + # a match is found. For example, if a DirectoryLocator + # returns just foo (1.0) while we're looking for + # foo (>= 2.0), we'll pretend there was nothing there so + # that subsequent locators can be queried. Otherwise we + # would just return foo (1.0) which would then lead to a + # failure to find foo (>= 2.0), because other locators + # weren't searched. Note that this only matters when + # merge=False. + if self.matcher is None: + found = True + else: + found = False + for k in d: + if self.matcher.match(k): + found = True + break + if found: + result = d + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for locator in self.locators: + try: + result |= locator.get_distribution_names() + except NotImplementedError: + pass + return result + + +# We use a legacy scheme simply because most of the dists on PyPI use legacy +# versions which don't conform to PEP 440. +default_locator = AggregatingLocator( + # JSONLocator(), # don't use as PEP 426 is withdrawn + SimpleScrapingLocator('https://pypi.org/simple/', + timeout=3.0), + scheme='legacy') + +locate = default_locator.locate + + +class DependencyFinder(object): + """ + Locate dependencies for distributions. + """ + + def __init__(self, locator=None): + """ + Initialise an instance, using the specified locator + to locate distributions. + """ + self.locator = locator or default_locator + self.scheme = get_scheme(self.locator.scheme) + + def add_distribution(self, dist): + """ + Add a distribution to the finder. This will update internal information + about who provides what. + :param dist: The distribution to add. + """ + logger.debug('adding distribution %s', dist) + name = dist.key + self.dists_by_name[name] = dist + self.dists[(name, dist.version)] = dist + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + self.provided.setdefault(name, set()).add((version, dist)) + + def remove_distribution(self, dist): + """ + Remove a distribution from the finder. This will update internal + information about who provides what. + :param dist: The distribution to remove. + """ + logger.debug('removing distribution %s', dist) + name = dist.key + del self.dists_by_name[name] + del self.dists[(name, dist.version)] + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Remove from provided: %s, %s, %s', name, version, dist) + s = self.provided[name] + s.remove((version, dist)) + if not s: + del self.provided[name] + + def get_matcher(self, reqt): + """ + Get a version matcher for a requirement. + :param reqt: The requirement + :type reqt: str + :return: A version matcher (an instance of + :class:`distlib.version.Matcher`). + """ + try: + matcher = self.scheme.matcher(reqt) + except UnsupportedVersionError: # pragma: no cover + # XXX compat-mode if cannot read the version + name = reqt.split()[0] + matcher = self.scheme.matcher(name) + return matcher + + def find_providers(self, reqt): + """ + Find the distributions which can fulfill a requirement. + + :param reqt: The requirement. + :type reqt: str + :return: A set of distribution which can fulfill the requirement. + """ + matcher = self.get_matcher(reqt) + name = matcher.key # case-insensitive + result = set() + provided = self.provided + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + result.add(provider) + break + return result + + def try_to_replace(self, provider, other, problems): + """ + Attempt to replace one provider with another. This is typically used + when resolving dependencies from multiple sources, e.g. A requires + (B >= 1.0) while C requires (B >= 1.1). + + For successful replacement, ``provider`` must meet all the requirements + which ``other`` fulfills. + + :param provider: The provider we are trying to replace with. + :param other: The provider we're trying to replace. + :param problems: If False is returned, this will contain what + problems prevented replacement. This is currently + a tuple of the literal string 'cantreplace', + ``provider``, ``other`` and the set of requirements + that ``provider`` couldn't fulfill. + :return: True if we can replace ``other`` with ``provider``, else + False. + """ + rlist = self.reqts[other] + unmatched = set() + for s in rlist: + matcher = self.get_matcher(s) + if not matcher.match(provider.version): + unmatched.add(s) + if unmatched: + # can't replace other with provider + problems.add(('cantreplace', provider, other, + frozenset(unmatched))) + result = False + else: + # can replace other with provider + self.remove_distribution(other) + del self.reqts[other] + for s in rlist: + self.reqts.setdefault(provider, set()).add(s) + self.add_distribution(provider) + result = True + return result + + def find(self, requirement, meta_extras=None, prereleases=False): + """ + Find a distribution and all distributions it depends on. + + :param requirement: The requirement specifying the distribution to + find, or a Distribution instance. + :param meta_extras: A list of meta extras such as :test:, :build: and + so on. + :param prereleases: If ``True``, allow pre-release versions to be + returned - otherwise, don't return prereleases + unless they're all that's available. + + Return a set of :class:`Distribution` instances and a set of + problems. + + The distributions returned should be such that they have the + :attr:`required` attribute set to ``True`` if they were + from the ``requirement`` passed to ``find()``, and they have the + :attr:`build_time_dependency` attribute set to ``True`` unless they + are post-installation dependencies of the ``requirement``. + + The problems should be a tuple consisting of the string + ``'unsatisfied'`` and the requirement which couldn't be satisfied + by any distribution known to the locator. + """ + + self.provided = {} + self.dists = {} + self.dists_by_name = {} + self.reqts = {} + + meta_extras = set(meta_extras or []) + if ':*:' in meta_extras: + meta_extras.remove(':*:') + # :meta: and :run: are implicitly included + meta_extras |= set([':test:', ':build:', ':dev:']) + + if isinstance(requirement, Distribution): + dist = odist = requirement + logger.debug('passed %s as requirement', odist) + else: + dist = odist = self.locator.locate(requirement, + prereleases=prereleases) + if dist is None: + raise DistlibException('Unable to locate %r' % requirement) + logger.debug('located %s', odist) + dist.requested = True + problems = set() + todo = set([dist]) + install_dists = set([odist]) + while todo: + dist = todo.pop() + name = dist.key # case-insensitive + if name not in self.dists_by_name: + self.add_distribution(dist) + else: + # import pdb; pdb.set_trace() + other = self.dists_by_name[name] + if other != dist: + self.try_to_replace(dist, other, problems) + + ireqts = dist.run_requires | dist.meta_requires + sreqts = dist.build_requires + ereqts = set() + if meta_extras and dist in install_dists: + for key in ('test', 'build', 'dev'): + e = ':%s:' % key + if e in meta_extras: + ereqts |= getattr(dist, '%s_requires' % key) + all_reqts = ireqts | sreqts | ereqts + for r in all_reqts: + providers = self.find_providers(r) + if not providers: + logger.debug('No providers found for %r', r) + provider = self.locator.locate(r, prereleases=prereleases) + # If no provider is found and we didn't consider + # prereleases, consider them now. + if provider is None and not prereleases: + provider = self.locator.locate(r, prereleases=True) + if provider is None: + logger.debug('Cannot satisfy %r', r) + problems.add(('unsatisfied', r)) + else: + n, v = provider.key, provider.version + if (n, v) not in self.dists: + todo.add(provider) + providers.add(provider) + if r in ireqts and dist in install_dists: + install_dists.add(provider) + logger.debug('Adding %s to install_dists', + provider.name_and_version) + for p in providers: + name = p.key + if name not in self.dists_by_name: + self.reqts.setdefault(p, set()).add(r) + else: + other = self.dists_by_name[name] + if other != p: + # see if other can be replaced by p + self.try_to_replace(p, other, problems) + + dists = set(self.dists.values()) + for dist in dists: + dist.build_time_dependency = dist not in install_dists + if dist.build_time_dependency: + logger.debug('%s is a build-time dependency only.', + dist.name_and_version) + logger.debug('find done for %s', odist) + return dists, problems diff --git a/env/Lib/site-packages/pip/_vendor/distlib/manifest.py b/env/Lib/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 00000000..420dcf12 --- /dev/null +++ b/env/Lib/site-packages/pip/_vendor/distlib/manifest.py @@ -0,0 +1,384 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Class representing the list of files in a distribution. + +Equivalent to distutils.filelist, but fixes some problems. +""" +import fnmatch +import logging +import os +import re +import sys + +from . import DistlibException +from .compat import fsdecode +from .util import convert_path + + +__all__ = ['Manifest'] + +logger = logging.getLogger(__name__) + +# a \ followed by some spaces + EOL +_COLLAPSE_PATTERN = re.compile('\\\\w*\n', re.M) +_COMMENTED_LINE = re.compile('#.*?(?=\n)|\n(?=$)', re.M | re.S) + +# +# Due to the different results returned by fnmatch.translate, we need +# to do slightly different processing for Python 2.7 and 3.2 ... this needed +# to be brought in for Python 3.6 onwards. +# +_PYTHON_VERSION = sys.version_info[:2] + + +class Manifest(object): + """ + A list of files built by exploring the filesystem and filtered by applying various + patterns to what we find there. + """ + + def __init__(self, base=None): + """ + Initialise an instance. + + :param base: The base directory to explore under. + """ + self.base = os.path.abspath(os.path.normpath(base or os.getcwd())) + self.prefix = self.base + os.sep + self.allfiles = None + self.files = set() + + # + # Public API + # + + def findall(self): + """Find all files under the base and set ``allfiles`` to the absolute + pathnames of files found. + """ + from stat import S_ISREG, S_ISDIR, S_ISLNK + + self.allfiles = allfiles = [] + root = self.base + stack = [root] + pop = stack.pop + push = stack.append + + while stack: + root = pop() + names = os.listdir(root) + + for name in names: + fullname = os.path.join(root, name) + + # Avoid excess stat calls -- just one will do, thank you! + stat = os.stat(fullname) + mode = stat.st_mode + if S_ISREG(mode): + allfiles.append(fsdecode(fullname)) + elif S_ISDIR(mode) and not S_ISLNK(mode): + push(fullname) + + def add(self, item): + """ + Add a file to the manifest. + + :param item: The pathname to add. This can be relative to the base. + """ + if not item.startswith(self.prefix): + item = os.path.join(self.base, item) + self.files.add(os.path.normpath(item)) + + def add_many(self, items): + """ + Add a list of files to the manifest. + + :param items: The pathnames to add. These can be relative to the base. + """ + for item in items: + self.add(item) + + def sorted(self, wantdirs=False): + """ + Return sorted files in directory order + """ + + def add_dir(dirs, d): + dirs.add(d) + logger.debug('add_dir added %s', d) + if d != self.base: + parent, _ = os.path.split(d) + assert parent not in ('', '/') + add_dir(dirs, parent) + + result = set(self.files) # make a copy! + if wantdirs: + dirs = set() + for f in result: + add_dir(dirs, os.path.dirname(f)) + result |= dirs + return [os.path.join(*path_tuple) for path_tuple in + sorted(os.path.split(path) for path in result)] + + def clear(self): + """Clear all collected files.""" + self.files = set() + self.allfiles = [] + + def process_directive(self, directive): + """ + Process a directive which either adds some files from ``allfiles`` to + ``files``, or removes some files from ``files``. + + :param directive: The directive to process. This should be in a format + compatible with distutils ``MANIFEST.in`` files: + + http://docs.python.org/distutils/sourcedist.html#commands + """ + # Parse the line: split it up, make sure the right number of words + # is there, and return the relevant words. 'action' is always + # defined: it's the first word of the line. Which of the other + # three are defined depends on the action; it'll be either + # patterns, (dir and patterns), or (dirpattern). + action, patterns, thedir, dirpattern = self._parse_directive(directive) + + # OK, now we know that the action is valid and we have the + # right number of words on the line for that action -- so we + # can proceed with minimal error-checking. + if action == 'include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=True): + logger.warning('no files found matching %r', pattern) + + elif action == 'exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=True) + + elif action == 'global-include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=False): + logger.warning('no files found matching %r ' + 'anywhere in distribution', pattern) + + elif action == 'global-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=False) + + elif action == 'recursive-include': + for pattern in patterns: + if not self._include_pattern(pattern, prefix=thedir): + logger.warning('no files found matching %r ' + 'under directory %r', pattern, thedir) + + elif action == 'recursive-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, prefix=thedir) + + elif action == 'graft': + if not self._include_pattern(None, prefix=dirpattern): + logger.warning('no directories found matching %r', + dirpattern) + + elif action == 'prune': + if not self._exclude_pattern(None, prefix=dirpattern): + logger.warning('no previously-included directories found ' + 'matching %r', dirpattern) + else: # pragma: no cover + # This should never happen, as it should be caught in + # _parse_template_line + raise DistlibException( + 'invalid action %r' % action) + + # + # Private API + # + + def _parse_directive(self, directive): + """ + Validate a directive. + :param directive: The directive to validate. + :return: A tuple of action, patterns, thedir, dir_patterns + """ + words = directive.split() + if len(words) == 1 and words[0] not in ('include', 'exclude', + 'global-include', + 'global-exclude', + 'recursive-include', + 'recursive-exclude', + 'graft', 'prune'): + # no action given, let's use the default 'include' + words.insert(0, 'include') + + action = words[0] + patterns = thedir = dir_pattern = None + + if action in ('include', 'exclude', + 'global-include', 'global-exclude'): + if len(words) < 2: + raise DistlibException( + '%r expects ...' % action) + + patterns = [convert_path(word) for word in words[1:]] + + elif action in ('recursive-include', 'recursive-exclude'): + if len(words) < 3: + raise DistlibException( + '%r expects