From 51553698963270ace3a68ba8071760a68dcb4e44 Mon Sep 17 00:00:00 2001 From: stud178863 Date: Wed, 14 May 2025 19:57:11 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D0=BE=20=D1=80?= =?UTF-8?q?=D0=B0=D0=B1=D0=BE=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 + .../pip-24.3.1.dist-info/AUTHORS.txt | 799 ++ .../pip-24.3.1.dist-info/INSTALLER | 1 + .../pip-24.3.1.dist-info/LICENSE.txt | 20 + .../pip-24.3.1.dist-info/METADATA | 90 + .../site-packages/pip-24.3.1.dist-info/RECORD | 853 ++ .../pip-24.3.1.dist-info/REQUESTED | 0 .../site-packages/pip-24.3.1.dist-info/WHEEL | 5 + .../pip-24.3.1.dist-info/entry_points.txt | 3 + .../pip-24.3.1.dist-info/top_level.txt | 1 + myenv/Lib/site-packages/pip/__init__.py | 13 + myenv/Lib/site-packages/pip/__main__.py | 24 + myenv/Lib/site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 713 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 867 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2231 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 813 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14525 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12693 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17658 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 36871 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 696 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 5144 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10234 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13641 bytes .../site-packages/pip/_internal/build_env.py | 319 + .../Lib/site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 304 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8632 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10220 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30421 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1800 bytes .../__pycache__/index_command.cpython-312.pyc | Bin 0 -> 7150 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2326 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4932 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 15066 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 3870 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 12267 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7859 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 401 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 -> 4028 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9727 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2618 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5219 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13189 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10094 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7529 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4411 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 2994 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1699 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6697 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 4006 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 29140 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15783 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7544 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 10503 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4735 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 8891 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 -> 967 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2919 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1726 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8453 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2307 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 | 809 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 258 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21643 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40674 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12550 bytes .../pip/_internal/index/collector.py | 494 + .../pip/_internal/index/package_finder.py | 1020 ++ .../pip/_internal/index/sources.py | 284 + .../pip/_internal/locations/__init__.py | 456 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 16466 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6817 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8054 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3807 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 214 + .../pip/_internal/locations/base.py | 81 + myenv/Lib/site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 128 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5895 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2952 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35224 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 16110 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 -> 384 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 4517 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 12591 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11105 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 -> 292 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1630 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 10870 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4249 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1720 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2303 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26643 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1049 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 5013 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1877 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 4979 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 6578 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 | 118 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 280 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 22125 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6477 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8505 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11633 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18900 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2281 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 2975 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 -> 223 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7130 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10154 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25798 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 229 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7693 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1883 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1917 bytes .../metadata_legacy.cpython-312.pyc | Bin 0 -> 3037 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1703 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2042 bytes .../__pycache__/wheel_legacy.cpython-312.pyc | Bin 0 -> 3872 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 -> 292 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1824 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 34129 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 -> 3471 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21281 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 22149 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38501 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 5509 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 32120 bytes .../pip/_internal/req/constructors.py | 560 ++ .../pip/_internal/req/req_file.py | 574 ++ .../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 -> 223 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1211 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 230 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22605 bytes .../_internal/resolution/legacy/resolver.py | 597 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 234 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8175 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 29434 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32545 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6819 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10549 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 5066 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 15382 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12340 bytes .../_internal/resolution/resolvelib/base.py | 139 + .../resolution/resolvelib/candidates.py | 574 ++ .../resolution/resolvelib/factory.py | 823 ++ .../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 -> 218 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4553 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1889 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2433 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2930 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 6373 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 707 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4214 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3559 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3229 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2171 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 4016 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7352 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1187 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2442 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7626 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13581 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 33474 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2606 bytes .../utils/__pycache__/retry.cpython-312.pyc | Bin 0 -> 2131 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4573 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8662 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12047 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 13521 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2100 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4489 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5926 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 | 188 + .../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 | 772 ++ .../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 -> 557 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5078 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19043 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7631 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12550 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 29023 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 + .../Lib/site-packages/pip/_vendor/__init__.py | 116 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4576 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 139478 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 929 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2673 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6491 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3814 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16251 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4374 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6721 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 5288 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1701 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 -> 462 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7790 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2760 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 -> 345 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 672 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3238 bytes .../pip/_vendor/certifi/cacert.pem | 4929 ++++++++++ .../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 -> 1296 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45553 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 65608 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24343 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 59888 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15103 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7681 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41587 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17339 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19780 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88062 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30371 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 52572 bytes .../pip/_vendor/distlib/compat.py | 1137 +++ .../pip/_vendor/distlib/database.py | 1329 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1295 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 162 + .../pip/_vendor/distlib/metadata.py | 1031 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 447 + .../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 | 1984 ++++ .../pip/_vendor/distlib/version.py | 750 ++ .../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 | 1100 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 987 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 319 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53819 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 -> 908 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 5003 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 914 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 15818 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 99503 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2660 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 243 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158875 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 -> 1768 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2052 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8197 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 42070 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 -> 585 bytes .../__pycache__/_elffile.cpython-312.pyc | Bin 0 -> 4994 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 9712 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 4581 bytes .../__pycache__/_parser.cpython-312.pyc | Bin 0 -> 14012 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3268 bytes .../__pycache__/_tokenizer.cpython-312.pyc | Bin 0 -> 7942 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 11038 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 24980 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 4437 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 38766 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 23246 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 7368 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 19534 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 | 627 ++ .../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 -> 161288 bytes .../pip/_vendor/platformdirs/__init__.py | 627 ++ .../pip/_vendor/platformdirs/__main__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 19856 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1975 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 10724 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 12938 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 8034 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 15064 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 624 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13701 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 -> 3516 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 762 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26612 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2656 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3249 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4748 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38389 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1587 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 2636 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4105 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4784 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 12126 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6721 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8217 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 33000 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14097 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 -> 37939 bytes .../pip/_vendor/pygments/formatter.py | 129 + .../_vendor/pygments/formatters/__init__.py | 157 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6930 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4243 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4250 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7321 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 41054 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 28576 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6083 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20153 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6905 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2986 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 13801 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9167 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5847 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15146 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 -> 14649 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 68291 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42995 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 -> 2692 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 3676 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 -> 641 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 402 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14721 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 -> 1108 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14381 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 179 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5281 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 612 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2052 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 28459 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7219 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13949 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 950 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1705 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25226 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7626 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4256 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1079 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35456 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 1294 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27874 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 6051 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5651 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36394 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 -> 662 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6879 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2682 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25908 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10528 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 228 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 448 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 -> 7043 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10320 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7900 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 206004 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1757 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2377 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 565 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 883 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12101 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4175 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1898 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3648 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5188 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 749 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6598 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13207 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 993 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 893 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 29004 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2518 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3591 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 3354 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1636 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12315 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9094 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4300 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11866 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5838 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26597 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1729 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8612 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113464 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2286 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9238 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10969 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10394 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1516 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4240 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1873 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3599 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3100 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9915 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6063 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5236 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20186 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19037 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4917 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13582 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9595 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6406 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7152 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1839 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5325 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12211 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40175 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 74963 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10405 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14815 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1820 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 595 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6641 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6596 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3853 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2507 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28143 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6092 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6089 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33528 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2167 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39976 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43567 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3376 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 60877 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6363 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 342 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31539 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11464 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 + .../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 + .../Lib/site-packages/pip/_vendor/rich/bar.py | 93 + .../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 -> 412 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 26927 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3936 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 394 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 | 36 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1372 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 16801 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 19015 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2233 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1127 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15793 bytes .../pip/_vendor/truststore/_api.py | 316 + .../pip/_vendor/truststore/_macos.py | 571 ++ .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 567 ++ .../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 -> 3433 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 16392 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 246 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20431 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36566 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13521 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10430 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4040 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20457 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7322 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 33971 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1140 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 226 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1876 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11592 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5742 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24476 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35529 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7539 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 243 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17455 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14791 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 -> 227 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41283 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 237 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1853 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7364 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 -> 1174 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4775 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1580 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1380 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4211 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 3020 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21750 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15392 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5079 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10781 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11167 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15813 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4431 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 | 622 ++ .../pip/_vendor/urllib3/util/ssl_.py | 504 + .../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 + .../Lib/site-packages/pip/_vendor/vendor.txt | 18 + myenv/Lib/site-packages/pip/py.typed | 4 + myenv/Scripts/Activate.ps1 | 546 ++ myenv/Scripts/activate | 71 + myenv/Scripts/activate.bat | 34 + myenv/Scripts/deactivate.bat | 22 + myenv/Scripts/pip.exe | Bin 0 -> 108446 bytes myenv/Scripts/pip3.12.exe | Bin 0 -> 108446 bytes myenv/Scripts/pip3.exe | Bin 0 -> 108446 bytes myenv/Scripts/python.exe | Bin 0 -> 274424 bytes myenv/Scripts/pythonw.exe | Bin 0 -> 263528 bytes myenv/pyvenv.cfg | 5 + 861 files changed, 138551 insertions(+) create mode 100644 myenv/Lib/site-packages/pip-24.3.1.dist-info/AUTHORS.txt create mode 100644 myenv/Lib/site-packages/pip-24.3.1.dist-info/INSTALLER create mode 100644 myenv/Lib/site-packages/pip-24.3.1.dist-info/LICENSE.txt create mode 100644 myenv/Lib/site-packages/pip-24.3.1.dist-info/METADATA create mode 100644 myenv/Lib/site-packages/pip-24.3.1.dist-info/RECORD create mode 100644 myenv/Lib/site-packages/pip-24.3.1.dist-info/REQUESTED create mode 100644 myenv/Lib/site-packages/pip-24.3.1.dist-info/WHEEL create mode 100644 myenv/Lib/site-packages/pip-24.3.1.dist-info/entry_points.txt create mode 100644 myenv/Lib/site-packages/pip-24.3.1.dist-info/top_level.txt create mode 100644 myenv/Lib/site-packages/pip/__init__.py create mode 100644 myenv/Lib/site-packages/pip/__main__.py create mode 100644 myenv/Lib/site-packages/pip/__pip-runner__.py create mode 100644 myenv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/build_env.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cache.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/base_command.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/command_context.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/index_command.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/main.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/main_parser.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/parser.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/req_command.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/spinners.py create mode 100644 myenv/Lib/site-packages/pip/_internal/cli/status_codes.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/cache.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/check.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/completion.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/configuration.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/debug.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/download.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/freeze.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/hash.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/help.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/index.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/inspect.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/install.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/list.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/search.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/show.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/uninstall.py create mode 100644 myenv/Lib/site-packages/pip/_internal/commands/wheel.py create mode 100644 myenv/Lib/site-packages/pip/_internal/configuration.py create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/base.py create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/installed.py create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/sdist.py create mode 100644 myenv/Lib/site-packages/pip/_internal/distributions/wheel.py create mode 100644 myenv/Lib/site-packages/pip/_internal/exceptions.py create mode 100644 myenv/Lib/site-packages/pip/_internal/index/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/index/collector.py create mode 100644 myenv/Lib/site-packages/pip/_internal/index/package_finder.py create mode 100644 myenv/Lib/site-packages/pip/_internal/index/sources.py create mode 100644 myenv/Lib/site-packages/pip/_internal/locations/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/locations/_distutils.py create mode 100644 myenv/Lib/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 myenv/Lib/site-packages/pip/_internal/locations/base.py create mode 100644 myenv/Lib/site-packages/pip/_internal/main.py create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/_json.py create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/base.py create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 myenv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/models/candidate.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/direct_url.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/format_control.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/index.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/installation_report.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/link.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/scheme.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/search_scope.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/target_python.py create mode 100644 myenv/Lib/site-packages/pip/_internal/models/wheel.py create mode 100644 myenv/Lib/site-packages/pip/_internal/network/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/network/auth.py create mode 100644 myenv/Lib/site-packages/pip/_internal/network/cache.py create mode 100644 myenv/Lib/site-packages/pip/_internal/network/download.py create mode 100644 myenv/Lib/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 myenv/Lib/site-packages/pip/_internal/network/session.py create mode 100644 myenv/Lib/site-packages/pip/_internal/network/utils.py create mode 100644 myenv/Lib/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/check.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/freeze.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 myenv/Lib/site-packages/pip/_internal/operations/prepare.py create mode 100644 myenv/Lib/site-packages/pip/_internal/pyproject.py create mode 100644 myenv/Lib/site-packages/pip/_internal/req/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/req/constructors.py create mode 100644 myenv/Lib/site-packages/pip/_internal/req/req_file.py create mode 100644 myenv/Lib/site-packages/pip/_internal/req/req_install.py create mode 100644 myenv/Lib/site-packages/pip/_internal/req/req_set.py create mode 100644 myenv/Lib/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/base.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 myenv/Lib/site-packages/pip/_internal/self_outdated_check.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/_log.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/appdirs.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/compat.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/datetime.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/deprecation.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/egg_link.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/encoding.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/filesystem.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/filetypes.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/glibc.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/hashes.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/logging.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/misc.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/packaging.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/retry.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/subprocess.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/unpacking.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/urls.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 myenv/Lib/site-packages/pip/_internal/utils/wheel.py create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/git.py create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/subversion.py create mode 100644 myenv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 myenv/Lib/site-packages/pip/_internal/wheel_builder.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 myenv/Lib/site-packages/pip/_vendor/certifi/core.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/certifi/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/compat.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/database.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/index.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/locators.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/markers.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/resources.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/util.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/version.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 myenv/Lib/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distro/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distro/__main__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/distro/distro.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/distro/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/codec.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/compat.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/core.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/intranges.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/package_data.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/_elffile.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/_parser.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/markers.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/metadata.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/tags.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/utils.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/packaging/version.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/console.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/filter.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/style.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/styles/_mapping.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/token.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pygments/util.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/__version__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/adapters.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/api.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/auth.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/certs.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/compat.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/cookies.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/help.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/hooks.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/models.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/packages.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/sessions.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/structures.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/requests/utils.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__main__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_extension.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_loop.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_pick.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_stack.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_timer.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_windows.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/abc.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/align.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/ansi.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/bar.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/box.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/cells.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/color.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/columns.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/console.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/constrain.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/containers.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/control.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/emoji.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/errors.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/filesize.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/json.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/layout.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/live.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/live_render.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/logging.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/markup.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/measure.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/padding.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/pager.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/palette.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/panel.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/pretty.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/progress.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/prompt.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/protocol.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/region.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/repr.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/rule.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/scope.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/screen.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/segment.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/spinner.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/status.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/style.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/styled.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/syntax.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/table.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/text.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/theme.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/themes.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/traceback.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/rich/tree.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/tomli/_re.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/tomli/_types.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/tomli/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/_api.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/truststore/py.typed create mode 100644 myenv/Lib/site-packages/pip/_vendor/typing_extensions.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/request.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/response.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 myenv/Lib/site-packages/pip/_vendor/vendor.txt create mode 100644 myenv/Lib/site-packages/pip/py.typed create mode 100644 myenv/Scripts/Activate.ps1 create mode 100644 myenv/Scripts/activate create mode 100644 myenv/Scripts/activate.bat create mode 100644 myenv/Scripts/deactivate.bat create mode 100644 myenv/Scripts/pip.exe create mode 100644 myenv/Scripts/pip3.12.exe create mode 100644 myenv/Scripts/pip3.exe create mode 100644 myenv/Scripts/python.exe create mode 100644 myenv/Scripts/pythonw.exe create mode 100644 myenv/pyvenv.cfg diff --git a/.gitignore b/.gitignore index e69de29..4c682df 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,3 @@ +".ipynb_checkpoints/" +"myenv/" # venv +"__pycache__/" diff --git a/myenv/Lib/site-packages/pip-24.3.1.dist-info/AUTHORS.txt b/myenv/Lib/site-packages/pip-24.3.1.dist-info/AUTHORS.txt new file mode 100644 index 0000000..8ccefbc --- /dev/null +++ b/myenv/Lib/site-packages/pip-24.3.1.dist-info/AUTHORS.txt @@ -0,0 +1,799 @@ +@Switch01 +A_Rog +Aakanksha Agrawal +Abhinav Sagar +ABHYUDAY PRATAP SINGH +abs51295 +AceGentile +Adam Chainz +Adam Tse +Adam Wentz +admin +Adolfo Ochagavía +Adrien Morison +Agus +ahayrapetyan +Ahilya +AinsworthK +Akash Srivastava +Alan Yee +Albert Tugushev +Albert-Guan +albertg +Alberto Sottile +Aleks Bunin +Ales Erjavec +Alethea Flowers +Alex Gaynor +Alex Grönholm +Alex Hedges +Alex Loosley +Alex Morega +Alex Stachowiak +Alexander Shtyrov +Alexandre Conrad +Alexey Popravka +Aleš Erjavec +Alli +Ami Fischman +Ananya Maiti +Anatoly Techtonik +Anders Kaseorg +Andre Aguiar +Andreas Lutro +Andrei Geacar +Andrew Gaul +Andrew Shymanel +Andrey Bienkowski +Andrey Bulgakov +Andrés Delfino +Andy Freeland +Andy Kluger +Ani Hayrapetyan +Aniruddha Basak +Anish Tambe +Anrs Hu +Anthony Sottile +Antoine Musso +Anton Ovchinnikov +Anton Patrushev +Anton Zelenov +Antonio Alvarado Hernandez +Antony Lee +Antti Kaihola +Anubhav Patel +Anudit Nagar +Anuj Godase +AQNOUCH Mohammed +AraHaan +arena +arenasys +Arindam Choudhury +Armin Ronacher +Arnon Yaari +Artem +Arun Babu Neelicattu +Ashley Manton +Ashwin Ramaswami +atse +Atsushi Odagiri +Avinash Karhana +Avner Cohen +Awit (Ah-Wit) Ghirmai +Baptiste Mispelon +Barney Gale +barneygale +Bartek Ogryczak +Bastian Venthur +Ben Bodenmiller +Ben Darnell +Ben Hoyt +Ben Mares +Ben Rosser +Bence Nagy +Benjamin Peterson +Benjamin VanEvery +Benoit Pierre +Berker Peksag +Bernard +Bernard Tyers +Bernardo B. Marques +Bernhard M. Wiedemann +Bertil Hatt +Bhavam Vidyarthi +Blazej Michalik +Bogdan Opanchuk +BorisZZZ +Brad Erickson +Bradley Ayers +Branch Vincent +Brandon L. Reiss +Brandt Bucher +Brannon Dorsey +Brett Randall +Brett Rosen +Brian Cristante +Brian Rosner +briantracy +BrownTruck +Bruno Oliveira +Bruno Renié +Bruno S +Bstrdsmkr +Buck Golemon +burrows +Bussonnier Matthias +bwoodsend +c22 +Caleb Martinez +Calvin Smith +Carl Meyer +Carlos Liam +Carol Willing +Carter Thayer +Cass +Chandrasekhar Atina +Charlie Marsh +Chih-Hsuan Yen +Chris Brinker +Chris Hunt +Chris Jerdonek +Chris Kuehl +Chris Markiewicz +Chris McDonough +Chris Pawley +Chris Pryer +Chris Wolfe +Christian Clauss +Christian Heimes +Christian Oudard +Christoph Reiter +Christopher Hunt +Christopher Snyder +chrysle +cjc7373 +Clark Boylan +Claudio Jolowicz +Clay McClure +Cody +Cody Soyland +Colin Watson +Collin Anderson +Connor Osborn +Cooper Lees +Cooper Ry Lees +Cory Benfield +Cory Wright +Craig Kerstiens +Cristian Sorinel +Cristina +Cristina Muñoz +ctg123 +Curtis Doty +cytolentino +Daan De Meyer +Dale +Damian +Damian Quiroga +Damian Shaw +Dan Black +Dan Savilonis +Dan Sully +Dane Hillard +daniel +Daniel Collins +Daniel Hahler +Daniel Holth +Daniel Jost +Daniel Katz +Daniel Shaulov +Daniele Esposti +Daniele Nicolodi +Daniele Procida +Daniil Konovalenko +Danny Hermes +Danny McClanahan +Darren Kavanagh +Dav Clark +Dave Abrahams +Dave Jones +David Aguilar +David Black +David Bordeynik +David Caro +David D Lowe +David Evans +David Hewitt +David Linke +David Poggi +David Poznik +David Pursehouse +David Runge +David Tucker +David Wales +Davidovich +ddelange +Deepak Sharma +Deepyaman Datta +Denise Yu +dependabot[bot] +derwolfe +Desetude +Devesh Kumar Singh +devsagul +Diego Caraballo +Diego Ramirez +DiegoCaraballo +Dimitri Merejkowsky +Dimitri Papadopoulos +Dimitri Papadopoulos Orfanos +Dirk Stolle +Dmitry Gladkov +Dmitry Volodin +Domen Kožar +Dominic Davis-Foster +Donald Stufft +Dongweiming +doron zarhi +Dos Moonen +Douglas Thor +DrFeathers +Dustin Ingram +Dustin Rodrigues +Dwayne Bailey +Ed Morley +Edgar Ramírez +Edgar Ramírez Mondragón +Ee Durbin +Efflam Lemaillet +efflamlemaillet +Eitan Adler +ekristina +elainechan +Eli Schwartz +Elisha Hollander +Ellen Marie Dash +Emil Burzo +Emil Styrke +Emmanuel Arias +Endoh Takanao +enoch +Erdinc Mutlu +Eric Cousineau +Eric Gillingham +Eric Hanchrow +Eric Hopper +Erik M. Bray +Erik Rose +Erwin Janssen +Eugene Vereshchagin +everdimension +Federico +Felipe Peter +Felix Yan +fiber-space +Filip Kokosiński +Filipe Laíns +Finn Womack +finnagin +Flavio Amurrio +Florian Briand +Florian Rathgeber +Francesco +Francesco Montesano +Fredrik Orderud +Frost Ming +Gabriel Curio +Gabriel de Perthuis +Garry Polley +gavin +gdanielson +Geoffrey Sneddon +George Song +Georgi Valkov +Georgy Pchelkin +ghost +Giftlin Rajaiah +gizmoguy1 +gkdoc +Godefroid Chapelle +Gopinath M +GOTO Hayato +gousaiyang +gpiks +Greg Roodt +Greg Ward +Guilherme Espada +Guillaume Seguin +gutsytechster +Guy Rozendorn +Guy Tuval +gzpan123 +Hanjun Kim +Hari Charan +Harsh Vardhan +harupy +Harutaka Kawamura +hauntsaninja +Henrich Hartzer +Henry Schreiner +Herbert Pfennig +Holly Stotelmyer +Honnix +Hsiaoming Yang +Hugo Lopes Tavares +Hugo van Kemenade +Hugues Bruant +Hynek Schlawack +Ian Bicking +Ian Cordasco +Ian Lee +Ian Stapleton Cordasco +Ian Wienand +Igor Kuzmitshov +Igor Sobreira +Ikko Ashimine +Ilan Schnell +Illia Volochii +Ilya Baryshev +Inada Naoki +Ionel Cristian Mărieș +Ionel Maries Cristian +Itamar Turner-Trauring +Ivan Pozdeev +J. Nick Koston +Jacob Kim +Jacob Walls +Jaime Sanz +jakirkham +Jakub Kuczys +Jakub Stasiak +Jakub Vysoky +Jakub Wilk +James Cleveland +James Curtin +James Firth +James Gerity +James Polley +Jan Pokorný +Jannis Leidel +Jarek Potiuk +jarondl +Jason Curtis +Jason R. Coombs +JasonMo +JasonMo1 +Jay Graves +Jean Abou Samra +Jean-Christophe Fillion-Robin +Jeff Barber +Jeff Dairiki +Jeff Widman +Jelmer Vernooij +jenix21 +Jeremy Fleischman +Jeremy Stanley +Jeremy Zafran +Jesse Rittner +Jiashuo Li +Jim Fisher +Jim Garrison +Jinzhe Zeng +Jiun Bae +Jivan Amara +Joe Bylund +Joe Michelini +John Paton +John Sirois +John T. Wodder II +John-Scott Atlakson +johnthagen +Jon Banafato +Jon Dufresne +Jon Parise +Jonas Nockert +Jonathan Herbert +Joonatan Partanen +Joost Molenaar +Jorge Niedbalski +Joseph Bylund +Joseph Long +Josh Bronson +Josh Cannon +Josh Hansen +Josh Schneier +Joshua +Juan Luis Cano Rodríguez +Juanjo Bazán +Judah Rand +Julian Berman +Julian Gethmann +Julien Demoor +Jussi Kukkonen +jwg4 +Jyrki Pulliainen +Kai Chen +Kai Mueller +Kamal Bin Mustafa +kasium +kaustav haldar +keanemind +Keith Maxwell +Kelsey Hightower +Kenneth Belitzky +Kenneth Reitz +Kevin Burke +Kevin Carter +Kevin Frommelt +Kevin R Patterson +Kexuan Sun +Kit Randel +Klaas van Schelven +KOLANICH +konstin +kpinc +Krishna Oza +Kumar McMillan +Kuntal Majumder +Kurt McKee +Kyle Persohn +lakshmanaram +Laszlo Kiss-Kollar +Laurent Bristiel +Laurent LAPORTE +Laurie O +Laurie Opperman +layday +Leon Sasson +Lev Givon +Lincoln de Sousa +Lipis +lorddavidiii +Loren Carvalho +Lucas Cimon +Ludovic Gasc +Luis Medel +Lukas Geiger +Lukas Juhrich +Luke Macken +Luo Jiebin +luojiebin +luz.paz +László Kiss Kollár +M00nL1ght +Marc Abramowitz +Marc Tamlyn +Marcus Smith +Mariatta +Mark Kohler +Mark McLoughlin +Mark Williams +Markus Hametner +Martey Dodoo +Martin Fischer +Martin Häcker +Martin Pavlasek +Masaki +Masklinn +Matej Stuchlik +Mathew Jennings +Mathieu Bridon +Mathieu Kniewallner +Matt Bacchi +Matt Good +Matt Maker +Matt Robenolt +Matt Wozniski +matthew +Matthew Einhorn +Matthew Feickert +Matthew Gilliard +Matthew Hughes +Matthew Iversen +Matthew Treinish +Matthew Trumbell +Matthew Willson +Matthias Bussonnier +mattip +Maurits van Rees +Max W Chase +Maxim Kurnikov +Maxime Rouyrre +mayeut +mbaluna +mdebi +memoselyk +meowmeowcat +Michael +Michael Aquilina +Michael E. Karpeles +Michael Klich +Michael Mintz +Michael Williamson +michaelpacer +Michał Górny +Mickaël Schoentgen +Miguel Araujo Perez +Mihir Singh +Mike +Mike Hendricks +Min RK +MinRK +Miro Hrončok +Monica Baluna +montefra +Monty Taylor +morotti +mrKazzila +Muha Ajjan +Nadav Wexler +Nahuel Ambrosini +Nate Coraor +Nate Prewitt +Nathan Houghton +Nathaniel J. Smith +Nehal J Wani +Neil Botelho +Nguyễn Gia Phong +Nicholas Serra +Nick Coghlan +Nick Stenning +Nick Timkovich +Nicolas Bock +Nicole Harris +Nikhil Benesch +Nikhil Ladha +Nikita Chepanov +Nikolay Korolev +Nipunn Koorapati +Nitesh Sharma +Niyas Sait +Noah +Noah Gorny +Nowell Strite +NtaleGrey +nvdv +OBITORASU +Ofek Lev +ofrinevo +Oliver Freund +Oliver Jeeves +Oliver Mannion +Oliver Tonnhofer +Olivier Girardot +Olivier Grisel +Ollie Rutherfurd +OMOTO Kenji +Omry Yadan +onlinejudge95 +Oren Held +Oscar Benjamin +Oz N Tiram +Pachwenko +Patrick Dubroy +Patrick Jenkins +Patrick Lawson +patricktokeeffe +Patrik Kopkan +Paul Ganssle +Paul Kehrer +Paul Moore +Paul Nasrat +Paul Oswald +Paul van der Linden +Paulus Schoutsen +Pavel Safronov +Pavithra Eswaramoorthy +Pawel Jasinski +Paweł Szramowski +Pekka Klärck +Peter Gessler +Peter Lisák +Peter Shen +Peter Waller +Petr Viktorin +petr-tik +Phaneendra Chiruvella +Phil Elson +Phil Freo +Phil Pennock +Phil Whelan +Philip Jägenstedt +Philip Molloy +Philippe Ombredanne +Pi Delport +Pierre-Yves Rofes +Pieter Degroote +pip +Prabakaran Kumaresshan +Prabhjyotsing Surjit Singh Sodhi +Prabhu Marappan +Pradyun Gedam +Prashant Sharma +Pratik Mallya +pre-commit-ci[bot] +Preet Thakkar +Preston Holmes +Przemek Wrzos +Pulkit Goyal +q0w +Qiangning Hong +Qiming Xu +Quentin Lee +Quentin Pradet +R. David Murray +Rafael Caricio +Ralf Schmitt +Ran Benita +Razzi Abuissa +rdb +Reece Dunham +Remi Rampin +Rene Dudfield +Riccardo Magliocchetti +Riccardo Schirone +Richard Jones +Richard Si +Ricky Ng-Adam +Rishi +rmorotti +RobberPhex +Robert Collins +Robert McGibbon +Robert Pollak +Robert T. McGibbon +robin elisha robinson +Roey Berman +Rohan Jain +Roman Bogorodskiy +Roman Donchenko +Romuald Brunet +ronaudinho +Ronny Pfannschmidt +Rory McCann +Ross Brattain +Roy Wellington Ⅳ +Ruairidh MacLeod +Russell Keith-Magee +Ryan Shepherd +Ryan Wooden +ryneeverett +S. Guliaev +Sachi King +Salvatore Rinchiera +sandeepkiran-js +Sander Van Balen +Savio Jomton +schlamar +Scott Kitterman +Sean +seanj +Sebastian Jordan +Sebastian Schaetz +Segev Finer +SeongSoo Cho +Sergey Vasilyev +Seth Michael Larson +Seth Woodworth +Shahar Epstein +Shantanu +shenxianpeng +shireenrao +Shivansh-007 +Shixian Sheng +Shlomi Fish +Shovan Maity +Simeon Visser +Simon Cross +Simon Pichugin +sinoroc +sinscary +snook92 +socketubs +Sorin Sbarnea +Srinivas Nyayapati +Srishti Hegde +Stavros Korokithakis +Stefan Scherfke +Stefano Rivera +Stephan Erb +Stephen Rosen +stepshal +Steve (Gadget) Barnes +Steve Barnes +Steve Dower +Steve Kowalik +Steven Myint +Steven Silvester +stonebig +studioj +Stéphane Bidoul +Stéphane Bidoul (ACSONE) +Stéphane Klein +Sumana Harihareswara +Surbhi Sharma +Sviatoslav Sydorenko +Sviatoslav Sydorenko (Святослав Сидоренко) +Swat009 +Sylvain +Takayuki SHIMIZUKAWA +Taneli Hukkinen +tbeswick +Thiago +Thijs Triemstra +Thomas Fenzl +Thomas Grainger +Thomas Guettler +Thomas Johansson +Thomas Kluyver +Thomas Smith +Thomas VINCENT +Tim D. Smith +Tim Gates +Tim Harder +Tim Heap +tim smith +tinruufu +Tobias Hermann +Tom Forbes +Tom Freudenheim +Tom V +Tomas Hrnciar +Tomas Orsava +Tomer Chachamu +Tommi Enenkel | AnB +Tomáš Hrnčiar +Tony Beswick +Tony Narlock +Tony Zhaocheng Tan +TonyBeswick +toonarmycaptain +Toshio Kuratomi +toxinu +Travis Swicegood +Tushar Sadhwani +Tzu-ping Chung +Valentin Haenel +Victor Stinner +victorvpaulo +Vikram - Google +Viktor Szépe +Ville Skyttä +Vinay Sajip +Vincent Philippon +Vinicyus Macedo +Vipul Kumar +Vitaly Babiy +Vladimir Fokow +Vladimir Rutsky +W. Trevor King +Wil Tan +Wilfred Hughes +William Edwards +William ML Leslie +William T Olson +William Woodruff +Wilson Mo +wim glenn +Winson Luk +Wolfgang Maier +Wu Zhenyu +XAMES3 +Xavier Fernandez +Xianpeng Shen +xoviat +xtreak +YAMAMOTO Takashi +Yen Chi Hsuan +Yeray Diaz Diaz +Yoval P +Yu Jian +Yuan Jing Vincent Yan +Yusuke Hayashi +Zearin +Zhiping Deng +ziebam +Zvezdan Petkovic +Łukasz Langa +Роман Донченко +Семён Марьясин diff --git a/myenv/Lib/site-packages/pip-24.3.1.dist-info/INSTALLER b/myenv/Lib/site-packages/pip-24.3.1.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/myenv/Lib/site-packages/pip-24.3.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/myenv/Lib/site-packages/pip-24.3.1.dist-info/LICENSE.txt b/myenv/Lib/site-packages/pip-24.3.1.dist-info/LICENSE.txt new file mode 100644 index 0000000..8e7b65e --- /dev/null +++ b/myenv/Lib/site-packages/pip-24.3.1.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-present The pip developers (see AUTHORS.txt file) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/myenv/Lib/site-packages/pip-24.3.1.dist-info/METADATA b/myenv/Lib/site-packages/pip-24.3.1.dist-info/METADATA new file mode 100644 index 0000000..9e5aa3a --- /dev/null +++ b/myenv/Lib/site-packages/pip-24.3.1.dist-info/METADATA @@ -0,0 +1,90 @@ +Metadata-Version: 2.1 +Name: pip +Version: 24.3.1 +Summary: The PyPA recommended tool for installing Python packages. +Author-email: The pip developers +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 :: 3.13 +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/myenv/Lib/site-packages/pip-24.3.1.dist-info/RECORD b/myenv/Lib/site-packages/pip-24.3.1.dist-info/RECORD new file mode 100644 index 0000000..c77d08f --- /dev/null +++ b/myenv/Lib/site-packages/pip-24.3.1.dist-info/RECORD @@ -0,0 +1,853 @@ +../../Scripts/pip.exe,sha256=ItTiN-K94z_oTwxfz68Rh1AgdrJErKjLwQPHcY7cFBA,108446 +../../Scripts/pip3.12.exe,sha256=ItTiN-K94z_oTwxfz68Rh1AgdrJErKjLwQPHcY7cFBA,108446 +../../Scripts/pip3.exe,sha256=ItTiN-K94z_oTwxfz68Rh1AgdrJErKjLwQPHcY7cFBA,108446 +pip-24.3.1.dist-info/AUTHORS.txt,sha256=Cbb630k8EL9FkBzX9Vpi6hpYWrLSlh08eXodL5u0eLI,10925 +pip-24.3.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-24.3.1.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-24.3.1.dist-info/METADATA,sha256=V8iCNK1GYbC82PWsLMsASDh9AO4veocRlM4Pn9q2KFI,3677 +pip-24.3.1.dist-info/RECORD,, +pip-24.3.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-24.3.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91 +pip-24.3.1.dist-info/entry_points.txt,sha256=eeIjuzfnfR2PrhbjnbzFU6MnSS70kZLxwaHHq6M-bD0,87 +pip-24.3.1.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=faXY_neeYrA_88plEhkyhwAaYeds7wu5U1iGwP24J0s,357 +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=wsTPOWyPTKvUREUcO585OU01kbQufpdigY8fVHv3WIw,10584 +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=-0oPTruZGkLSMrWDleZ6UtcKP3G-SImRRuhH0RfVE3o,5631 +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=VCMtduzECUV87KaHNu-xJ-wLNL82yT3x16V4XBxOAqI,10825 +pip/_internal/cli/progress_bars.py,sha256=VgydyqjZvfhqpuNcFDn00QNuA9GxRe9CKrRG8jhPuKU,2723 +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=oiIzSjLP6__d7dIS3q0Xb5ywsaOThBWRqMyjjKzkPdM,12769 +pip/_internal/commands/search.py,sha256=fWkUQVx_gm8ebbFAlCgqtxKXT9rNahpJ-BI__3HNZpg,5626 +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=2_byISIv3kSnI_9T-Esfxrt0LnTRgcUHyxu0twsHjQY,26481 +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=lPBLK5Xiy8Q6IQMio26Wl7ocfZOKkgGklIBNyUJ23fI,8632 +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=x6nyVLj7X11Y4khIdf-mFlxMl2FWadtVEgeb8upc_WI,6013 +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=UUB980XSrDWrMpQ1_G45i0r8Hqlg_tg3IPQ63mEqbNc,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=G7dND_s4ebPkEL7RJ1qCY0QhUUWIIK6AnjWgRATF5no,4539 +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=PBdoMoNQQIA84Fhgne38jWF52W4x_KtsHjxgv4dkRKA,7622 +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=v1qzCN1mIldwx-nCrPc8JO4lxkm3Fv8M5RWvt8LISjc,18430 +pip/_internal/req/req_file.py,sha256=gOOJTzL-mDRPcQhjwqjDrjn4V-3rK9TnEFnU3v8RA4Q,18752 +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=5UZ1upNnmqsP-nmEZaDYxaBgCoejw_e2WVGmmAvBxXc,20001 +pip/_internal/resolution/resolvelib/factory.py,sha256=511CaUR41LqjALuFafLVfx15WRvMhxYTdjQCoSvp4gw,32661 +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=OWq5axHpW-MEEPztGdvgADrgJPAcV9a88Rxm4Z8VBs8,6272 +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=NRV0_2fFhzy1jhvInSBv4dqCmTwct8PV7Kp0m-BPRGM,23530 +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=p_GYZrjUwPBUhpLlCZoGb0miKBKSqDAyZC5DvIuqbHQ,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=lO3rZukXdPyuk6BWUJFOKQliWaXH6HGh9l1GGrUgG0c,299427 +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=dcwgYGYGQqAEawBXPDtIx80DO_3cOmFv8HTc8JMzknQ,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=2jRSjRI4o-vlXeTK2BCGIUhkc6e9ZGhSsacRM5oseTw,41467 +pip/_vendor/distlib/database.py,sha256=mHy_LxiXIsIVRb-T0-idBrVLw3Ffij5teHCpbjmJ9YU,51160 +pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 +pip/_vendor/distlib/locators.py,sha256=oBeAZpFuPQSY09MgNnLfQGGAXXvVO96BFpZyKMuK4tM,51026 +pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 +pip/_vendor/distlib/markers.py,sha256=X6sDvkFGcYS8gUW8hfsWuKEKAqhQZAJ7iXOMLxRYjYk,5164 +pip/_vendor/distlib/metadata.py,sha256=zil3sg2EUfLXVigljY2d_03IJt-JSs7nX-73fECMX2s,38724 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=BJliaDAZaVB7WAkwokgC3HXwLD2iWiHaVI50H7C6eG8,18608 +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=vMPGvsS4j9hF6Y9k3Tyom1aaHLb0rFmZAEyzeAdel9w,66682 +pip/_vendor/distlib/version.py,sha256=s5VIs8wBn0fxzGxWM_aA2ZZyx525HcZbMvcTlTyZ3Rg,23727 +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=DFIVguEQHCdxnSdAO0dfFsgMcvVZitg7bCOuLwZ7A_s,43979 +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=Fo6_cit95-7QfcMb16XtI7AUiSMgdwA_hCO_9lV2pz4,21388 +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=WIDeyzWm7EVX44g354M25vpRXbeY1lsPH6EmUJUcq4o,1264 +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=GeXRNTlxPZ3kif4kNoh6JY0oE4QRzTGcgXr6l_X_Gk0,10555 +pip/_vendor/truststore/_macos.py,sha256=nZlLkOmszUE0g6ryRwBVGY5COzPyudcsiJtDWarM5LQ,20503 +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=rAHyKYD8M7t-bXfG8VgOVa3TpfhVhbt4rZQlO45YuP8,17993 +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=t9wGB6ooOTXXgiY66K1m6BZS1CJyXHAU8EoWDTe6Shk,64 +pip/_vendor/urllib3/connection.py,sha256=ttIA909BrbTUzwkqEe_TzZVh4JOOj7g61Ysei2mrwGg,20314 +pip/_vendor/urllib3/connectionpool.py,sha256=e2eiAwNbFNCKxj4bwDKNK-w7HIdSz3OmMxU_TIt-evQ,40408 +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=6ENvOZ8PBDzh8kgixpql9lIrb2dxH-k7ZmBanJF2Ng4,22050 +pip/_vendor/urllib3/util/ssl_.py,sha256=QDuuTxPSCj1rYtZ4xpD7Ux-r20TD50aHyqKyhQ7Bq4A,17460 +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=43152uDtpsunEE29vmLqqKZUosdrbvzIFkzscLB55Cg,332 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/myenv/Lib/site-packages/pip-24.3.1.dist-info/REQUESTED b/myenv/Lib/site-packages/pip-24.3.1.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip-24.3.1.dist-info/WHEEL b/myenv/Lib/site-packages/pip-24.3.1.dist-info/WHEEL new file mode 100644 index 0000000..da25d7b --- /dev/null +++ b/myenv/Lib/site-packages/pip-24.3.1.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (75.2.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/myenv/Lib/site-packages/pip-24.3.1.dist-info/entry_points.txt b/myenv/Lib/site-packages/pip-24.3.1.dist-info/entry_points.txt new file mode 100644 index 0000000..25fcf7e --- /dev/null +++ b/myenv/Lib/site-packages/pip-24.3.1.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/myenv/Lib/site-packages/pip-24.3.1.dist-info/top_level.txt b/myenv/Lib/site-packages/pip-24.3.1.dist-info/top_level.txt new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/myenv/Lib/site-packages/pip-24.3.1.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/myenv/Lib/site-packages/pip/__init__.py b/myenv/Lib/site-packages/pip/__init__.py new file mode 100644 index 0000000..efefccf --- /dev/null +++ b/myenv/Lib/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "24.3.1" + + +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/myenv/Lib/site-packages/pip/__main__.py b/myenv/Lib/site-packages/pip/__main__.py new file mode 100644 index 0000000..5991326 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/__pip-runner__.py b/myenv/Lib/site-packages/pip/__pip-runner__.py new file mode 100644 index 0000000..c633787 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d29dc9112300f852993cf572f662a0a28916fe46 GIT binary patch literal 713 zcmX|9O=uJ`6i#Mlr|Yg&R1oSxqX@E~vsjDTA_cJsLTQESWf>TQ z2nt@jwcb1`Ui792y^ELG>s(Ykd8@3w`?9t^@?PEx-+b>&-h7>$tRb+~FBf|ZBlOc0 zhgLaAM%N+PMiGi|j1t_!iPf?&ima9$O+*f}7-r5CV2nobGuRfWk?!U z=`3=k%j&YwJWFZ3;ZDzZ*SxDsr9)*`m9AvEFVhe-{5Kmipg)c*)Bh31$U>WV z6TLe?ub_s#vHhUO6@f)l!c)y8bRoCz-y>NX=Oke?)ufY2(pQYMb0WC7q)4`wk}ykE z7Biwk$%R&4twzA^0+dD(|0kD3Oj91K%S16odRhxL*KBsV?)BSVm?ce-3)%$ECReJ@ zRP)Bn>`iY>BrQ=UpY(eq?^NZKT`{F~fJA77rEIyIpZe{V zyqGVXsSzB)-If{?rK@wn)2=iFlMaNk9s~oB3F8ie(pFlQHr#E@_!h~d250`gvU)4Y zqJGTgbNL2&Eo{cg7hR%OKc6zJ++nvB?p0DpXJ1eh_43A&fLr}j7|Cnt|^%o`# B$}j)` literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc b/myenv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5945bd01d28e6c98780fc6a6cc71361c04011d63 GIT binary patch literal 867 zcmb7CO=uHA6n?Y2`A;g9T4*aG)`K}1Ayg7n45dBv5R8{9goS0BowS>5Hp}iBy9&~X zkOmK35v)Dcqmql>6rp$VvS}4$ics*>TcCJ%rpc0m_23-d`{vCz@B8L4UlWNa&{h3% zdF37t@QZEy6&Qe{CkS8@6i|=`#ePObgi%HCsl%+m1l=ec2N){BVckca0Vs0~FsDxM zQHl8MVOF3+U9g1!2NbS)1;D&ZHBRwRN%WZ~<9{$izLKAd+&_Gdo>b^#1u)m)`j|S6 zDEzV03v_yd7OlmKaRhWWs51HYU0RR(^YOJ2ILJZCz#*gGAwa^CRFhR*l9GrB3?)Yh zSGNdnITjHN*Ro%j-%_{7K zR>lq0NJ*-0W6IT1B~48+9h3bB5;#^T0$x?^cW}g9{VvlmcSBsHeJoMd@G2GyI-WPx z1{S?H-h1zZx6^HTAH7c(yUp%XZ^!#ArZss{8%pv@sW*8JF}5%=U%6`Gh3PM+*a;w zc5iBCFLr%x-oIIB7Tj6a{wAD1;A88LcKL~)!pwmXUz=l%+l$Zde;3a6LLf|UrZEd5T9>%??1<#9tdL9HB!qp$5E_}#vnGOsAvNS_|VHWo8|U9Sh(9eclVG( zNRW_dlP2Y%DfSIt8ZB*N-)x$gzBYZ?^Gv}_Ol;bR@`hfTwr`#9?p8=_JIT)X&CWOT z%{TL#`6(Fm1Jd-5?UP@*0DfhHL%#Z^ViJH=P#^&cQMe3A5QR^0im(g`o{}lAW3aO- zoZ@N&%1v_sdN&8urMRbpJ9=k_n*a5%jyE%^p5q*89lbJgdAPszJ!mk zSiKp4HjoGqW*=Z5ZE$RyH4)_CJSe_pQ2dVHL?gcHQ0~I$zTfD00#8+?V~cG*vLENN44gnJJ3q zq-uz%T)rsg(qdlC$HZ$Y{?kNRRMd2u>QpmDs?Df+PRrsx?)Q%|leC(lBCeX8rHUvU zqH3ZT6U`i+HVQgL&$3x_pUo)+Je`uYH%xIH&9eENZlc+YD*I)vE{ldKo3wVv77KbX z%5Aaew-_K&^~x~?2>3Bg~U{Gd(ZuXubLjjA3m z0YR_x@KFe0fiSezXr4GeJ}0Y$z$beID8e`VH4-I*QDXCksYf}Ri@#-)8H0gJ6#vNJ z(sw#}#h|*8lrwaeCWkcozOK&Dq_t+YTf_n+KTyY$hHBEzyqubrC#aFca&<`(@=m>=X;hb_c)n=+dM2nwXY+dR+@Tq~ zRLyA;1{Uwh=8k584D>vAMk4#X@WRzVePvGmNH ztzxO}ppHOM$x*~r&J>M8o&iP77tP6>CSG3I~-zAVN_u~xC#_-;6Q?-yuu?$hy##>P$W^oZW~tf1672MQ1nKz2HHgJ zg25Eai9=?T;E329$&2{(58iO4+llV$ou@NUDDz#2_TCByU zGn9{E%X`tL8oBM0GbVPTQ8c0v+apOzE`>4kDBGdo563PH4N4>Zm#++r^p94X#cpug zN7d3f+do<~a0vF#s;2Eu=k%;>+AegCeI2Qd&5Sx8&&nwr(Nr(iFyP4N3og<+lT4Gfl{r#s^KUy^~3C}pT%8&%Tack)uPtc-k#e3Ui}3AWBqPe$hLVx z$a790LM03&u9J>HzA$dUJyJRe5AxjR^D5=Z1F9(yB_h;C;p~Q@4$w4xa1vv z($I37-)QY9wRYUyd-sUd8Y?$+-n;(bY`N=Fh39z+ujF6xEZ_=+<>MMG_71NwH`0Go_GxJJoAKBPCxP- iv|z+KJW@vPIk*YoMb`#|OAuaZUTeE={tP|U7ykptg*J-- literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/__init__.py b/myenv/Lib/site-packages/pip/_internal/__init__.py new file mode 100644 index 0000000..1a5b7f8 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/__init__.py @@ -0,0 +1,18 @@ +from typing import List, Optional + +from pip._internal.utils import _log + +# init_logging() must be called before any call to logging.getLogger() +# which happens at import of most modules. +_log.init_logging() + + +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/myenv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5ecf112ac6b92db0f1daf4a5a8d46db3b64e2e26 GIT binary patch literal 813 zcmZuvJ!lj`6rS1LyKMfD7@Jt=C}|FK4@8IwlEz>ak|Nq13+LSK%iWm$8D{2UP9j7R z6m0B_jaVvav{QuiVzUQ=u#JdV*hOM`-&{^BA2aV~c=O)(em+f3juE7dkFy=>5c1s` zf2lH54sW6IjKn0S2}x;#rcT45)^-v%^%@=}4gv4>AkyE@$8v9IqW4Jbfddq(Gx%n2 zT!E2wFRnhUH2j`h^M6|3np1kqLYvZGl}6+lPinOEnn~VXDLt;*x~wWNU6n=Dx(~@k zY470~WQdd^GDLchT4dXFo9qp}*GSF1`{G7NXog2B(4aOUX6w0Pc@ncI&vc#u(~%O= zXl6Rxu$1?hHX=z_3z&j+P>@9;YmYG`VS=%NavekPI2OmKSqz4YL|H27wgLfne2s^N!+Dg2JAhMbDrqG6M=*5_A!b z4j?nCCv$w&YSjL5R29WQ*ER@aM-s)gh43cUsY9N?7KE!AEGe-GVeztfQ@kzq`;Uru z#e3Gj-+xf-7azh)32*VHR6H_bgNJDkvdwT=v_dTmT$DW8;BC;M1^*9Hy@{$Y&1N8b zrI&J%sR>MNS3*xA+aX62q%!|)eER9qlf}ZDImAb-a-}v}R!vW0JC&WF@{pC&|0!45 zbu1?aS#TZN_@i{SQKgFw7$kd5)T9kDZXNxrX&!eISX8IbwBy%v$PQde=~r^@2bn$a q2|c;veIZkQGWD5E|El`*^y95vZ+GqaX#d3d1A_Le=(iPvz<&UYvf+XN literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..485333f3e3ab40fac05a0cd3ace5b8298494e682 GIT binary patch literal 14525 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�<$ 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 a;1wYdBueQ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f06805b17d792c6b8839607b7c61b141b732c7b6 GIT binary patch literal 5144 zcmbUlTWlQF_0D78FMHST*vTYzVlN?^1jhju3WHDuHA`bHm7`1~Z{#fYNcR z;Y=hMp<|C)m#I(IXQIhyCYFrRHLu!`X-qc4*e81=zuYv*OMzGUWU~~MTVUP-^AOBi zStPrp@D!3FKVojO6$z4UQl0FRn_6Ki)dPGKeld#YliSGZq+e

|Hq~-uM|o8jUlS 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e77f1d5ce0f29b5f757369cfabe0fd8f7d3e15e GIT binary patch literal 10234 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 Uc_mmXuLMglUe!G(cA4Ek?!~g&Q literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/build_env.py b/myenv/Lib/site-packages/pip/_internal/build_env.py new file mode 100644 index 0000000..0f1e266 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/build_env.py @@ -0,0 +1,319 @@ +"""Build Environment used for isolation during sdist building +""" + +import logging +import os +import pathlib +import site +import sys +import textwrap +from collections import OrderedDict +from types import TracebackType +from typing import TYPE_CHECKING, Iterable, List, Optional, Set, Tuple, Type, Union + +from pip._vendor.certifi import where +from pip._vendor.packaging.version import Version + +from pip import __file__ as pip_location +from pip._internal.cli.spinners import open_spinner +from pip._internal.locations import get_platlib, get_purelib, get_scheme +from pip._internal.metadata import get_default_environment, get_environment +from pip._internal.utils.logging import VERBOSE +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + +logger = logging.getLogger(__name__) + + +def _dedup(a: str, b: str) -> 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", + # The prefix specified two lines above, thus + # target from config file or env var should be ignored + "--target", + "", + ] + 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/myenv/Lib/site-packages/pip/_internal/cache.py b/myenv/Lib/site-packages/pip/_internal/cache.py new file mode 100644 index 0000000..6b45126 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/__init__.py b/myenv/Lib/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 0000000..e589bb9 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..127cf76fde345e2821197314a8e7c777250d0879 GIT binary patch literal 304 zcmXw#u}TCn5QaDBp~u0!LkdBz&;?5o8wDHDLTn@uW|O%yY&N?jxx=+n1RufH)=oP` zxL$0s?X|vuc-WhjbBdY&pDE^>`4|lPNsRn`{o*#(&({10S&Bt3iu*(+=SfY5ovXvs zNmhZ#VT@Fi#)C4-j45bM%Mq_(6)S?EDGL9wokB4Nw#S+TUSk4y|LL@erFxg>Qgf~EWq#ehzQRw<8GdCs@0dfwYDN;%QEXICRad%9~s^R+?< M`R)+XwcTic0W>ybF8}}l literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a860dc50ebcc4b551c7f5d0d95612c90cc199efb GIT binary patch literal 8632 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 Xj#UJYMNWF$nfOBaS?n=sk<|MiaD~LC literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4e1944e83bc017b8bb1053297fbe7f46c2ed850 GIT binary patch literal 10220 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c956bbbd41e9054e1e4b01344f59d826dd79286 GIT binary patch literal 30421 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94ec7eda0b684f792276e6185bb08821fcebf11d GIT binary patch literal 1800 zcmZ`(U2Gdg5Z=8%pHrt7#|bSFMNZ>Zxkw}hDH2o&#Z73%pFycXst!>_D()eoeh6@d*9Ngw_(8%=TNrtRe#$*g{2|!$mH~VJ34HUlejeQOt=& zDJNmXAtD*PAzT;NxbSu^!l84>kXDcpY3t;wtVaK41}f)AU#^($c~>vY_=gK6+a(pZ zsN4EQLRH>BJRWM^2sM869I*-2-4gX9*=m`*qf?*LvRM`T(L!lXr>1VZh4AT+wzHT7 z`7-1|P!1a?#~G0tn#KmV63g*KFfb7f{z!zC?*TOYH(~`e7RY9DLguU_QaC$Yt7KUBQd!V-ca& zvj8t>v?hoMxsjG-%K}bYsi7+1m^rJ8zUa)B3H4=7Gi}q=G`|ZNt*8TOLQ7c?e&-$? z6hUx^HSI?=tzhYnqiGI%Il1)k1K7q-=ihb+b@IAJDkT4=O(v*0NAlhm-nZU&-p%@D z?}qn7vi@Ox*}Lielz-0Br*y4M^@3~8==oxm*mL>U&8fU&y5yNM6dH=_+68`S9Egf(H*5}Twc@7MeIa=ehPy2~*>yJQe=#Jt5=S-?gSQido;>I& zgImc|fM$aeqC=bU-i`Rco%q1-UA;Rz>P|HzbYiGBaW~e#69LhS5B&33^{+DwPM4oZ zcjM1uX$gHPp60)nf%#qr)sJGDkNg|~@s<=#EBq~m2d&@L>{jTa(wu1!TG$P8dycZ; z`Txr01m!xoJeOe7_OC^})|^!sYMfE|$Kd*%gtcj_F9COkH9ZO>oRbi7+6Rh-{)2$t zb3eGJg6$I8R1zCX>b8>djlq^t53%{S z^&)}!?$ESi$(XemAJeq=XLTz)2_}cKKLlkRPLD9c(xz-+f>7Zv5RQ9+SeB+i3nkzv zXrZy7h3Fw>$_V@WI1@k~t)Pb-FRG0WB=s~nSsc1*dV|l`pMK#10%4nPsT)1Kcm`jy zZ%o#Q#~O$UzfA4~dyq}wHls%Uj%KMXb1L{Z1u^@QTP>UR#W3O^0Tx0SI}7M56nY6d zU4Ajd;3aw-j#w3)lRz3g#`r!ubsvq^(dZvytd_l+T^ElpaXV5EK7$`1Mgu?p0llT9 Ax&QzG literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8edb7c8a22e8aca070ee3500741d80d1877fead9 GIT binary patch literal 7150 zcmb6-TWlLwc6WwD4xged*`h=}Jn~CsEK!aU#m>X=Lv~!pS~I+2{G+Wc+#u|u)aqRrbCGk>x+6rI-Ce| zL=$NcaJ_nCdPiah`{vV|(#?rxj_^d|rVctA+i102_c(i$Xi@!|PYtxeaGY0zSA|4` zCufNox=PdrEqu>ag=V&)q-0=1)n=uB$(+=r zjAqVc>E*cJ|87Q4UDl+OX-G!O02C>mRi|~WSEAZagj#f!t$sgGc^u@B2bHFKI~D6(_Xem=X#x5T$!&%-m`Bxdc~ z6kqGsIx2S=W@(FAd@*w1MsP zRAB@EJvi44nRUHKX1M=19Z!8aF>xfue}zx+74B>P$mx`!T+)%BOge3thMA?BbV*Ap z!06IDbLJ$l*AlA2@~x@1h}P(~yaq7<-dW&+t~ zW1;!Mx&)l%bGl-VXK5Pnap5X8O^r2JE@RHHg4K=5smyrR^61%#35{BARl77j0T706 z1CeD2K1 zsI^PaDk{Lz)cBmNXOjxbj6snhE%(f%MzxrWwjd28WVw>&tbx}nNz%7-&T*?tTuKbqn)OyE81A$PGP0+kA*)Je_6O+_(UrHtoZZ79}538HlQn)6gh_~EOl8K zOV4SUD`Uf{OJhdL)cSHt^0G3a8DnsQemFKLE)d}Uq@L<$dd|^Y@!Xu%B`2u{nnd2X zZyD|cK$tYs-LSh3_!)l>)gpN!`b%P@C`Oih9*W&hybafb*MfyzBdgvE<#2OF5ZpUI z_cm4h&_4CPQ1O$%u9AOu(ZBnSt0WyMN=F{~k1h_C1+gS_7KP5=PTWr4O8+LiD#Xiy zhQ+tPd)7vRk#7j^-ifput~C@QZ?AgKKL*-vnEdmz;B((`ZRh)+j6JZ;d&0?A$cpDw zlstH)>r}+`Sqq1CwCmLCuFqcMpx&Z(e1L*w{VG(y1jVBfFq;HTCYZ~>5*Y`Rc{P|2 zzz_+VN98q9^J+enb7sN>)qPcP1UuokVN}n!po(Cy0zOnWK{o3J%pl^ZzFLn5NU!R@ z>Q01~$Sjv=xJY6ltGTMQtGX4GYAQ2-#t-}=owV&4$O_C!!1<10so6QS1}LlYrRkKe z%3zC7Fb~G!44^zLC8{4KXx^IqffeiA8VgsyAAW4=f443a!HjVu@L1ri^55XD|!hI^(v~kS(6D$TP!?Qy7u^B6zB;yN?KwrlxoL=4LXh?aoZ z2A&4FQDU!Xg=L_%iTeEBx-YsF=yjlB$WSekiifncF8QB?TYf!r$A9US zo!3`{M@@rELyyBv<;G~KvAfvVeP{1#;{gU*kOo#xKMKFPBs>m;%fXgXu(KHKTvk_u zd)LBk55wKdqXlm_MR$}2p{maw%kbqUu=NzQ+soohFkkQK$yB`u(v1~2PBO%P%VeC~S`p-Y=7+yO4;SVZava|K(u^Yz<&Ao+SFVtW+t}k3$D0n;AJ6R&Qhv20e zmWZw__`OL17I2CeI`|yxPe9Tk(!nT)q`3uwd2yQ|s~8LJyqk8LPJ~3Jkixby71%Zb z!@S#hLW4b!>H;qjd1za?!qI>kb|xJ?x!}q0Dp~OGBrm}F(*LnOdIj4`9(71nn`OWp z<@uk1$C(MhE}FK1!VqTb_^QBEbv)F3jY;#KkKOmGY`h=>jn?NWgYK$3pBLqtX9^JL zBWx=Sv(7wV*6tB7(F$xU1`j%SSKb9DcCi!JfdMMDTL&uAHWDzT`|HowpH)4-<$-4H zB~%ecwVMVU6rXJ+Nb+L6SXV}C#R}l{I{l6Id$7K3LmEgxG#R#VjCvxX()6m!yYV?H(^6`5O*cuIV_LuFk1oeOhI|cI7!hcSZ=UuvvZb+4XOekI~fqZ zQnhcnY10yvY1oJlVA5dxz+-Q`tj$sAfMd+8B8_=Bl%Bl>q|Q!7hp=}X7Zab%^m;1|6cr^`1{cB zLU&WE($RwVXd!%bEzou+QtCckg#WAo1uzTRf+56%@hd&9Iqur%we=*u$jBGylsos`9=kQRboRp$FtowuQlRT$psU=zr_>%Vw#Q+9n9W~5 z{=xBE6Xn?9LhOxO6QB0{OaFs@_;|tocvOe=czizv%#HYv-@c|`Vs{7zbfC{(3r8z?G!ih2#= zJCib&qpz|da5{TbD^&GHlbWu}a*U%r@ZCV~@PzG`c0-q9g<@p<0;=z>lCOE*?furv zyI%r3=Gjr<1MWR{#w!GxmDc2qGZp3 za`*nPeTUtVwH=X)8(O%#rs(qC8=VyqM_y-yFc3-kTmBe;p6$%A-67Z6%#5De7T*R9 zAv2SEptH$Lf`bVriO++Iw$q zq@`>i`d6?T_#PKbG|9p}(1K1;LHxoT83|95^A_mh`^NiZ3B zNr7wzW2Vhv73AwMNr;(2+ZCQb5;ce0&uENd3Q*BmmXCrC%w-|VCYf1=mb7zaFrHLQ z3F4%5HQNXGP)nPzi>gLwcy+c=Yd+XZ78=Q(X}1?>D1YzE} zHwPJ7%FXdUbb#w*(15nf^f|z)02FGuDrXkr!|H0_PaxYt!Ti`DflSthm%wjkI+e#i z2M?H#-%DNu37i2IeGl+(rk2%euxYaFSU=EgbjJ1acIu|A)+WfBO?Gf03>Q`J$G(j{ zKrW4Ua%nOD{33f=WRcVMLq7LjQfgevWKBtB`7up}oH2r9VH}YK8KMxM;nQo52M>v} zN##lk0(Xe&7&cf)$gBaxCMG}{^bqXTmdvkEoq?)EL(gpF{41lFSHi3>Ca_^0%mkpQ zI>aC^ra}I=D#o}N3h+Fn7BF|GXJ;6fGsIC4e6Kc}ga~dt8w*(Cq++nhu&sJBCbC-; z0^6IdOI>NO@XWHl54*E`XJ(Tc3r8vXq!gV>inkA%0i7rogD@SjRWGzoLWWw`o?mMI zh37;!{(Z224GS2*fohRFYaopg3@2B^hYH?9h47)ZKvOBu`!LYEB9;!HczF0kIoMPY z0>0yGEzwd-tk@DOH%7{>ZBJU;mrpLw-2UmUpFV2suZSe_!a5NmVC%l|lcu&OjXih8 zmB?!2tABLC@Mh#jq!0N%lQ+=+_dO4_L9y*G5_bygH z#_BJzV&)Db$B&3@7+6l_5`Mz!L--k(hDOsRxV@EN#C?3lQz6jYfB6|UHW~uQ+8Iqt z#1tto5j_o)6kTA;3+aWNLLuXT3tAp?E{6c9N|>FsEiPuZ?3`y8avCs`oq3Fde-}sP z>Lea1YO?M21c9oW(g|WI>K!|8iaLj$!U|&t%Ll>eFw5lH*TNVLbCt|wGfToQfL_MA zgIM9sSl%~mm*P!IVTcOUz&onAIF9?8_i(~`BjLiI6W`~=|CF@A^kb_07sTfX&9qiL0#pZOggC(t{7)?hR z#3IZV_P9=Y61OfgjahoD5>otF!af|^1{D1(0o-bbFaiHBBW>616CkazZu? zP0h)cTGA6(w@BG2sk+r0cuI|pq*$9DR!z&6P8f8Ftfd$`B#&98T&ZYi*upSxGGt=n zEHFh`SAYoT2$ro^8R?{I3=vWypbaY6Ah>a)&C4Wj+9JW$7}0YZZ$OVmG~OKi*A`eB z?+TjPVo}~11>oKs5LFaM)5vmf3KhgR*FYp#OLAF-yTLEgGhi^tf*Ws)LdZp)T-<=L zF5S~gR=+oRQF>Q4ZT=YT6SY;Rx9Q6;0Y})LaU0FE38GrqW=p2+(^MUs*sys# zsam$!aMbpL;~P*MK9)T?JZuY2L!c|DXm$)Te|qUKjw69nO4gVq#_>NRv2oLdSzd9mkp4_1ewa_qE&gFKf4I zKPKv**T1OUuKkpGTa(YqS%c848I?1|GSmejGE%V#!{PqWt zwxzBEwf9C|aI7G%2awRb%yV}eP zN0~=bcv)(%OYPTU-*#N>SYVf={p%8nbW}gRx#Q>dTL1B-@JBNrJ`P6b2j&K<(*0m( zjqm(>y#s|>pCb;eO2PTST%cj3dhq%?*So8`mZa2c{I%$}@vHGADM?vrPP)=EADj!m zT=jv0m+Mg!a;!f`EO_)p3eSh;Lba^}x8!B%NL@Pea#f&;f6RV}$eot(2T61%ksREK z?k4?%+qt_vN0Wmw?p{oQ$-SLhhFZ9L{js4C_e)3soMJ{&+iYJptCVutETQcaQVTK# z@|e(8Kxn5SG0KZp*`PG-+h12gQex*bX*SAZ%j@bfOV!Lqefjg)8gAshly#CDUUD~eoii|~X%p1$g@N4i!K%olR&RFFep F|6i_BGUNaN literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6092a3cfb011de63a000130fcce35ef47589a77d GIT binary patch literal 4932 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f3834a23fe7d1011d947e0070e353910ef69716 GIT binary patch literal 15066 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 aW}AB-aCmsoea^!7WSVz>!cm5e@&5y1%A~IV literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b3b2d5a10d66c16604a1acbfa419a14b4a9e7e3 GIT binary patch literal 3870 zcmahMOKcm*b(YKJF3A-sk^0M$*0x%kg-zFXT{(thLzWyRm1C!p3^c3)V#OUwD=nAA z?9#GS3RVpRm69MPkRn!r9#k|38&(13=Au9l)Rz{$kd^|eYqd?#9BQBkrgG{O=%H_x zTuQQ%W(3Z>dGp@eH}k&wQ%#Kz!I=DG*Z8ji`a9h?!(Rcm>KTOYAO$ImhGONFi7~Ku zX|5C-V^i*!JH^Gglqcp%@i9In!~}-Yv6?sKi}_Oim_H@P#8geJCKZSUQo&d-RU4~K z)y3*kp;#ytj)iS{w^pBOh&9+Sr!}UUVoeOfEaq@?3n(+jU{4uJy68UEqIjG$g~zRm zfO*_TPZTe9<7S0Xm?TU0NkQ@5a>w@Vp#OSWkKzZ~cHkC&$?TEalJqDww>+_qX(keQ z07c)^+OSKwLJWGh5SaXVO(tKvAtv&`S8UxQ)tV z@taM~&bgr?&H!o#UL?mZ*ElaR>&bDa;Kg&O54~{!p;u?CWTX`3*b8M1q$sS6ZJr zIy|l#k};mnYKoNBwP|S-OIdJHN!2BD97_sL%2~~nQfUQ8EmqZ&GlzeisrY|X!A63p zb}YT|6H_)OcVcEOx2EcNtgQW)=fQ0`gF3avVpFz41ScVg#^V`G;s#Enb>#{59*dEl zP_LonX4;fB0C-usChG|t30PbbBGV+)(j-79>NO-pr&>BugAGT`isph^valCC0P*q(Ngys*EqD zVbgnNI!b;(T!iUA56&@6RD;0lQyjl3L@Vk){kgDW( zhR6w1os>sX(^$VYa!DN>F(8(YX5_@AJcf;tjG8$Hp$_2<`RZ6gQ;#_+#Uav-XlB|9 z#fh4Lhpd=|;z<-VYKEWjPniCJzMMlP5sCGA^O3);;J#F7zqAUozwJ|haI>}{kKYyN zxzEJLLQ~JGcwtj)S^V~0c1=98DYmYP`!>bSRdN5O*uE-umi(S$z6HKii|QJ7u{69j zu$#IupIsH(%eHY zLuZT9iyvJr1Ugp(19SbBx9)L6`~1a?P}7?O8)E(KD+^Z^`V2e_IGX)g1?&(4Ma z2B4e^6~+X(JQUXsm{kxI9``NxtV`i$*&K77F(AGGcJIiB9w$m?ITy;ga%|4M9hY|8 zUx2vx@*V5;+=-k88u~NdgsGe- zd@io-eYS*PS?;x$mA);yD+wrAJJ-J<*1q{lzGv>@X1HU~Tn%^4UHa4=%6BhbTyr0I zT-P$sZ3w}ipUh|9JyR6g=lKnP)4IRC=x<;1cP@3`#g7i2{Il4)*u8XdP5jP=*t{-w z6vd7;QQ8QE-|~O%N1@jL7&I(z_H_5Wz}#c(#GC+xJ?Mi`2cw02D-RPiFW_EwIPBYQ zRldqGO*fF+gF54~>pqnMV~9#%Z3%7PAc5*-58$tc^$;>?Ik3kNif}VG`mrg=x|ANB zzzGv7sccFK*gMtLOiK`K3MSUG7R$=)jmePzoCJ3H1N#rXI#&a zGkwvDn3I1&-Ji4_T>8;n{Hu7O>(t8ikGKzR6uMq2w)GcKbIG%xc>&6BKD&@Eu>hAm zC>Sd76cUg>oIkm6wB)5bAMym}vw3B)uK@Ps_HX$q_GKo_)K~cd2L1{cPj|xeTwaQe hqNB(E#frdLS6{N%eO*gKzj)P#KjGS+a&Ttf|9>ugt~>w$ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2bce2645fafaa9710e83474ebaccbbb56c6a519e GIT binary patch literal 12267 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7d845642834d820881839906c8f170d3b3aeb05 GIT binary patch literal 401 zcmX@j%ge<81lcE5GD?8-V-N=h7@>^MGC;<3h7^V#DRpLCfhCc;8160*Wln=tgb;p{z12RL;bw{{KNg? zAzYC#&!CV{M;}+euy{ZJka#!$P(PPj5&=Q3VV?e>!SPO^o<1(|E}lV9^#XqW@xG2B z&K|D85Vb2AJ_BuH_*wxZoULL)i&Kk=V-j;xD^g?p^HN=kGRsn9E-bjP;ljoX`!2R$ z*l}T}!o|jmO&9iE*d1e(lbDnkUr>~oT#}ic7?WF>npYO%lbIA#oLQ2pTacKXotU0l z98-{4pdX)^SCU$kmzblUoRg_vT#{H)S{$F8pORXvS5SG2!zMRBr8Fniu1FB*3{Y?s ys{x4*%#4hTH@LVP*l%!fHn83h5NzPRAue%&LF9(C%moIC8^WR&83c;>fl2}XM|x=h literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/cli/autocompletion.py b/myenv/Lib/site-packages/pip/_internal/cli/autocompletion.py new file mode 100644 index 0000000..f3f70ac --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/cli/autocompletion.py @@ -0,0 +1,176 @@ +"""Logic that powers autocompletion installed by ``pip completion``. +""" + +import optparse +import os +import sys +from itertools import chain +from typing import Any, Iterable, List, Optional + +from pip._internal.cli.main_parser import create_main_parser +from pip._internal.commands import commands_dict, create_command +from pip._internal.metadata import get_default_environment + + +def autocomplete() -> 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/myenv/Lib/site-packages/pip/_internal/cli/base_command.py b/myenv/Lib/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 0000000..bc1ab65 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/cmdoptions.py b/myenv/Lib/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 0000000..0b7cff7 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/command_context.py b/myenv/Lib/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 0000000..139995a --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/index_command.py b/myenv/Lib/site-packages/pip/_internal/cli/index_command.py new file mode 100644 index 0000000..db105d0 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/main.py b/myenv/Lib/site-packages/pip/_internal/cli/main.py new file mode 100644 index 0000000..563ac79 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/main_parser.py b/myenv/Lib/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 0000000..5ade356 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/parser.py b/myenv/Lib/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 0000000..bc4aca0 --- /dev/null +++ b/myenv/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, NoReturn, 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) -> NoReturn: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/myenv/Lib/site-packages/pip/_internal/cli/progress_bars.py b/myenv/Lib/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 0000000..1236180 --- /dev/null +++ b/myenv/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: Optional[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/myenv/Lib/site-packages/pip/_internal/cli/req_command.py b/myenv/Lib/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 0000000..92900f9 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/spinners.py b/myenv/Lib/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 0000000..cf2b976 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/cli/status_codes.py b/myenv/Lib/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 0000000..5e29502 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/__init__.py b/myenv/Lib/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 0000000..858a410 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c452ee2dd703ff16d454555e65bb104249a52ae3 GIT binary patch literal 4028 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f9cb308bb6a8e4913612f62456da14bbcbd626f GIT binary patch literal 5219 zcmbVQU2Gd!6&~B;pE!2n{Ph2aOA;E-(n&TgDr&l}+NLRVX_Jtolywpf6VG+xbnNlo z8K;R8O9id8t%Ovqgw#s#P>fq zlk`B_t9rA(q|bwWK9$eO%@$c!`bF!Gtj|gL zC$0<)4Npt}8JeSplxNyp@qDO#&8yVNXgQ)AGBZ~66wBm|(kr=W zP6^A0JscM%_9FqFRKzzd zPQ5WxDs_?RI$>uv`)hFzp>(3BO21xa?BbYo_R8d_gaVg_Cx;UQq-TH}JKe9)#r|AD zRf#~V+LubM0`}@C5jCRFv|LaPB3>ZdR!&yX#1$#|pS33HMgR~b;uuP_)v-%Pg) zFCkD|Aa(Xa5m`}oSn9gQ6dg?TN&{8Rk?4uXhpvo|506ZW1A_1>>ol}WWtxGRdh@s{ z*BB?0CR0M_MbWv8p6>AY;rA0;UnwgY7>-&8V;rVMqtM$R%C>FPPt<#tk4r)~q0QJ;QYE3g#p??Ye5 z&^SsMor7qhtcsu37*S>Dsu6egtTGYoTyJ&jdR@MB#v>x7AcLIrKMybX6C)L&S;z5^u1xS+F8v&8_`0Xr11M$V~P>KaLqDR6PRG&49jf!p8+_fD;zn&}lVGW#Z3COd%{zb0R!1<-(1 zs6LBDznU@T<6V{XM!I$`9tC@bbBlvk?y2PTDu}yCWW%S*YG-gCN|Ho?S|36uGC|f5{v-PMoCNbQE zMo!$w6Sq4eVsw)Wm_BF0R|%Z#bP3WO2Bjg-Lc@-NIwer50Xp~_rXkns>SSsZw@HCF z`B_LNF3u=7q4?HslsCKw)|>9zRQY~p%;QX`;^Yc zHhbu;@OrpqPS`b442UB7P0=gPn$5bQF^Xk`ZZO;d({FiC@z8Jz~s>xihfZ9mjwJGYXZpP!B=7-8>oZ63+!ozw}ID8ZSh4!vFha@ zm1oT;)&0szs@x1M0lJ4$Sw+(FhHi$T>O%?+Dl?FmnNFG60cSX6hTSdAF%8ZjsQPuP zrgijK^7#t9hX$vw0G~cBt8|G@kLKukmRY3J<$LAFD%f6c7F;G?iJ-lvko1w_<=&k5Rh^&RkW~6g765H$`o9%ly+u--+ zR+MY{>Ps%z6yAz)P0?D`4u^G*#oGTG)-Qm%-$6ZWp`NHgZAS%~Z#8d(de=g|_dWN& z@vFpx#GgYaU%*N@Gg#R&-Q;C9r>AO@0tSYaM!c}ucQ^z2t*24ycxaE6e1>z~w}0!kNO?W5YbE|VCj^V) z7!=8dj(4FQ2~A5|-E$DQa4E-YI%E{lJ5#z2`QY+ixdsCGK8W zYwmis>(CwP1L;|;Ya@1KEq3JI^#^^?@OgK) z+`RBIz(w1C(!bFjUu%y)4m_RvIQwC?+#X+Vzx1cbaMQdRkgPetA7M^3vyxwg6V=ftw@$`S%`f-;hVgp#Mc==q+CG zvKF96gl01&NqD=EBr_~YSxqUZNJk{;-GZ#zBSA@0v=nrAWae^sfHL}S0j|vwxX~gz z2uKWb5W|xjcFJI;4|b9rhvoy0VGvk$W*GX`>pMW`{qTB^`wO4=>;A)Ke$NZO%RjjF zZBL8;z}*vD9DMF~-cLQ)XOWNfm)KLmLKvZyiHOz4Pc!e3~gdIV1mD_jDikqaMD*?aBn?Q!N{n3Up52rf)2%w;;RQ= z)-q2av7ZjvNs literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f0e08be31428524e6d711acf92c26817f10aa77 GIT binary patch literal 13189 zcmc&aTWlNGl{1_fzC_ZLM7?Ec^q?g=5*@$dTD6_Xvh284lr*y4Mp4S8IU|WOAL`7| zvIx0wjR2LqDI)E*m5L@PgZ-$2WUZkB(fVb$<4o zJ2QO9wCi*iSjxWl&b{Zp&OPsY|J~`dQ}Da^Z=I97c2U%S;)n6$^upG!p|C^=lt4$Q zQ7xxOY4U9vH9>BQFj01trLm2Pa8dK9IcgcTM6IJ%QpZMYQTwQ!l(|Sn)G_LaI!B%4 z+Z=I4cZ}|cx<}p7%F)Vb)o2x|w?wL=o>31eTO&2m+R<84wngfq^`rIChS3I^GEpKm zb--9~As3t8qP4HlW)pRa66`NiLWO95i_vR$&eA@|@9|^UN2})Z!AL@seT>TV$7WS_ zC@d?g_1S499FGMf0ALx2N29@*;4`V*;PcNv`@CuyIX5scI5Og6Rp&rFHXfcxNI`^G z*)!popw>-@N+49+5Eu_fL|Nr7LbD8GTAvF~4@y#8g0daz#F!F@#3x`1EB2k1;uET4 zMhYupAf8aB6G}*1yOvt@kF8^{(Ir3w9ta!;J<15CQC46^IiXQ7zs!!B1&e4AtfE!4 zH9#kU7473@!3HfAq{S{epw20}uoYS=pk>GQJ^}|V4rp5G zA*2zD+^5y_@)4k?J|3xxS0+V17*fKQ#M0h;cU3v=|DHheg3h2JYoW zAq>L|LP~&2X6H$la1545;Np_r323R0KP75iE+L)sL0OK6!a+q8_?fUW2@4^_?T-_J z*ZaxXZ$$4`3UQPSqr)X)1o9kaWLaNe4ne$-m?%Qb{X3Egy2+3-FNove7%Vyg%p&1j zQ4PT*hsR$OXJuZVj3*)je?jDhxWdcgbP%``y6PJtqiWmbW5KA{LpDQ@fd@n|59d2A z!Hk#rcI~*^`QZ4t2xk|Yfc~?_SbqK_9G!SM7@dyj1GP_wr}g87xfPvU{K({&dlOQG zpH!4-xo^)Ny_Y{OP3&psXULijB#2~9xE#`t$A055Q!s*rM@~%c;V&cS?SW*(f2w965gRgij3Sv)3l`cSaN|t#T zRp7(pJWdk^LeRJd2S=nJy=wzq2ELO0{IgIi&4gtUW&#vN;{q^Gh{$A_pA1eYB*^%2un3c12gM8OZ14l9UY7@3h1!O*ejT%)p+Vq_XurSZR7q2UIy)!U!IqpXxlr(FCMYSQjlEIRlMt`h&SVt5-str@E<9?%KC?QEGa*FqC zNL(T-G`WBakPz*#YilSf1c32n)gBZ`33qP>l>&=UtHYrABn1JWIxr!{6Vq?fDl3bT zaT(cy|HHQ+9q1c_B}npEFd|+S$DWOeCnPWe#?q@?cv=&2T?T*&9Rw=D+r92IaIEieOblneP(N1<$#-qH&+WdomYj+tW#ZfIDqRiGLv zV|1EQI*mRfR0pNh8(*E2wC{@f;dq=gPc<6wg3WfsfYKmk{?ha?ZM=6OnMrud0BlB4b(RQEKqG8K zvH_saB6+cs4-@RJS|`C8jet~_kQ^lpM5weVqiRQs3w{y=RVbB_60u}`S*Z&xe+3}& zNx;%o>b9po>*>sRIzhl@JzW`3*G6^S($U4EkY%fPWvX{=)HEyw76XuFYkD#@J$IZI zkA2>H$3wY23(9i;;!J8XQ|I4wRJ}TMeQ3kIcf;*jvMt(P+m)(cZ`{4^e(WyCI9+$G zl&4{S=yqkzLU6He-kh_VZ4Dds&Dr{%OnuLWyDoJ;y=OS>9nLXSL+=)4YH-b;zU!u1 z9^0sC&erVC)a+gj-(^fK_IdV}wJ~P~sh+hqW~_}_Yiq{Zddu3DGqW(Hqj~=6h4UFl z^YYhH!ph#2eW}S?jy-qnl)G-;^~bv%l)L^@%4BQM7rb2gliDBErsy9v+;VhmR@Z-T z=<^&0&7a?Gd_>55@)5x2ySAEv-PC(EJ5F>{@9nmo@G|f1?>fOV?>Ev=exK(s?Y0ee zFz@f}8f;;HQBOnp7cCs5(moiVL{p$tCz@gnPHBl!;8XjR)eUqx-7sz{>Qzol(B-s5 zNv|^c0_1I8GZ<@vAdYFAIYGV3yvl}{2`XfI38;4rW^2c9L3bQ ze%Jj>+S7TLp(?AFEQ^*U*P<)kx+m*?{G;w?{v;z>uK6CLrGrq=6vPlw5D=>fDG(b# zcbo*9Kt+HQ$G8fgn2yKz?m{2{cU1@olxP!Qh2(^hRrcJ-;PVn%3#$3l(6h(;hoojw zKXUr)pwx;*2BIty(znV)#269VK68-_Mm|*;i1(-*Q9!B#*QHzHvW#2?A{c%|3QJGH zce3+Q@c2D|ls|&xDg}bFs&1)qv2pop*`5B(PJi0HXS1?)sd=$^c_!PsFVng&?cR?y zr7(9aY^&=oXRWv2VWG5WUtku_-2t&z^Qn_^x^pI|%yE>h<_?80AikSFs@}O#*YruH z=MJ9IC*4o3clW>V{pIePyMNvN%oYcAcPXX{MR)zqrQ~8V?QZ*|u30Z_I^7G+>&})` z+pnD+U{9y$#V6B__D@{3ITP(XxWzC#>~Q)v`=7SJ&8caAyGLX%BU=%SbLKzA|q7g(pgN- zK_Vk}7g5a<@c96bsmP$g&B%k05RWNqtP58BUeaX5*I`LX6Bv!G^db~BWZUov2v-t> zOD{pocGP|eJMJvYkmLYiig&QvVMqY4uBxo7CF5#YR#IcDUroDO)?J6@8L)4%?)Hqk zJ?rktxO-Mc*4=yOxlgQ~g|o{CKd`nv1ef21aUT_zdHwkXFj|Z|IEg$~VOsrX@BoSI zu*1nJjN)my?n)xQltAH0Z@Jl z62Lkdn%+!}HzlNdp1RSWuJNwdoV;$IXXejAY{0PjIy2VJ)X0kWmi6)5Sc}nu53KDE zLH;!u{!x+tmk}}v9Xfn7p*Osw>LtVkw`n~V&htJs;9HlkvCNM&2b+IGv@ao0?>dQ)e! z-a{Ghp{)0G#(R3*d*;KIq3gr*rxwnk!mUYJZaKO?ZfIHHHfvgcFt*v=`O~g9x_;_^ z!@pXy-hOD|%%+D=x9wd$xc1mB&&iMK+KGF7FjIeUb>de2vCnK&ZTrF)=*e z4E>pz)ZCMiVsHBTspC&r-hF~Q{$z!85o$sx$c-P0CBmRThXN6UMoUp%ju{J%Mma5R zum~^@NGGDROjnqKJ~!G43+0(rfH)d3pU(O~-Vl2fOhx3~1*C1dkF@vcq|GG#r$B9O zC+X75Y`7_&;(}Or);4qapqy3YsznZ&Q z&Gk3i%HNKC3P2D`$O~q)sS7wSSkxtF_J1RQ4cefuzPC?hxzLOiUud3g*5WiAulbK~V@#ZxV0`EE$B9xA-L)M%kvhC!s3odk7ts z%2)IiWu(`u6k49=mQUZZ?%H(LeQ#{DrL!Q1p3ZomUiW_G!cM2@J7Sm zHKm;CM*o5ZDeG&giIv0$?t>^*hG?KKSL3T=*T?S3=n60OJNkQ>o4s8B6PEIxTk>Hl zKOd&}A|{nV3m84RT2YWDLVmPsK)ZA7B}#G?wSw1%)MErjuF*EC;MJA8{g`8Z40pfS zOEA3-w+w|l2DFbMqMna+K{UVN3aIX>ycqzf(SNc9D3lB24Zmv`o9Dj8&Cm*(MdVk` zXn-+yg1M3JCs<&7@JP4+O7~=pZN&Y3*5RagfV{K7+tYmHnTH1mQXFIuhD%T>`c=9; zd0+s-?g)qBa16m~;c)GphZbc)NrzU05)8-i>kuEec|B| z%n%a6i~xO`f82v*=nwa-KD%036fn}J(gZN!6{4z@I0?y1 zB5LJH*uZdHIT?qiIOGkRYQ^3}=h$uX#twn3KYwrYb86^>%-GE%F7LzC@gOJ=8 zwmAfq5Aa$_FA;u+z0pblucfjkTiKPV>{_v`S3W*(zFlw<_h;Pu*WCx_xs3|<{L#&- z#&py1^{RoiV_*Y9D1+C>z;>u^+Ne79EAGZj+WqVnW2$!LD3jBbvs!HD=}kv%*3p)6 zw586co?bb=l31AlXSDs$n)0FJ#2+_z@Sj4IrD~(vv()!DeH%MF7U=KWHyo9pZ|-Qw z?&!(v==qeQaTu6*=irUtFC#Z2H@=Z>I=fzVF6}t?d5*!>dvYi2V!Rr3=-{P-<}Cngm>mWW;eXfzh2i3Gk4l9Ros03?B7PeN%!@m5Is|+rt)U zW&40f&T6jZ~?STFCLm7zFl26e@64G^GX?J!Gk9T z<@cem1S%Q47$|N3l`|;~@vaNmJPCn7Yy(d#@8^~C?g}aZAoFGf7&7|WuH`R8eavvO z?_3PumLN4?$U;9F{oR+Je=Z^h;eCiCPQ&dTPz65vf`9PFZNi`2aaw=nz!Q<;2RU*a zb_WkFU?kNxcsV4J7Z}nJthI^xZ*tq$36?u$uyzt;<>Dc12w4-gq zS@T-ePa1#Jm~q1GWX)3FV&C#)rn)Qb=z2)gC#YneT(5d6?RbiCuFoWSV2)v5vuX`! zm)!x?9>DwO1YBSQR7W82O?W7Y`V_t_fq)PXL7_T45rcPL0ZII3A`JN@utLGAmEkFn z)CB`dNI4S9Xt?ZGB$a_kfOHZ+*$eS_L_$`UkW0y3h=ieS34^fGVN5VuMO<KpKnrRBN{Vdv_--MHMtxH6uwN|G1YR`+~ZVJYnrXgnXFFh)xj-K zC)bx7q95bxmY>K`kga%DLT@&Z;;OubHMvo`nX{)ZWQ`LcTSVy zjZSRs&{}tCt?cT^J2p~W6ZBRW_v8w+Lbk@Pjr!(+0 za}?&Q19wTTodV+C*P>eRDFoPvS{P>zDpe~yf6^YRA!(>)Wp)|?$cZAI5Ry<^;2D`e z|BTEZiiG_aKoWx^PM#S{$iU@*WF@F1WB`MAf#j_Pc_*PZZ5yumwHbMGq0t~(^V(ft zeQAfh?3Oh%blZ3dB^;6c#$M6ugFscu1~iChSPp3l9^(fp-bf6Qw;~eW?-4ygs8;$R zes*KB3jwW1G(J2gy#b#<&6*wu^-R+rQ?8FG+s9PpZ>Xlnls`;+@I7|1_%ZL6zkph|Ze*pJAHU0nq literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b9209c8386cf0b55d066d4856aeb30135f4c653 GIT binary patch literal 10094 zcmbU{Yj7LKd3(46aCq}2QUqToQ8WpWf~bcjOO_l{q?E{{n8cLQ7?F&Da7PLx9`xRk zG-0r!Jx)!vc13s6h#uQD-SLd6SRF|d&xA=jNu17f(rJGH0v%Fkx>Xu=rvAr-$|Ux$ ze%}HIfD%V(vNPEIcK6%w_VMlaTKv1qWhanE{%yyF*Sv)M8Y@P!D<`9RET4L6KmBB((jM)OVm_1;RIRcKDGvH+HT+|hC z1FkvhiIoM)SeqqU9;*mcGT0ieifsvOVXzpjj@1Ne7;KAfjnxKf8ElVwV|9T#20Nnl zv4%hcgPqaFSW}>h!LFzj+ZNcyV0UzTtU1ukU{7>MtR>LG5ff3k;XY&G#Zqbg0M?Ev z&?c8DKDk`6$rUm;Xpt*l76Lov?Q#{A?Q(@;SA2?Z&{PY!gC=Q6(PKl;^b| zRn){74YO}X;xhCHqlqD7*l1)lIId6?DCt5x6jOBbIId5(P(>S~@vtek2`o25j+?T+ z7qTlvV~v;%=eMfR0D#P;NQyHykt37DXX;N{TGYc*i|RA!7MR75LUkb$A58d6v6_`FWL`-xrhh19Ud+6d z{z>}BXZJ=!=R?6!8VYNXk;*3#;B8jKnpC!tv}5 z=k{LREi328hWw+Gx?R1HmW{=mqY82r=>n0!{c6+S@m z?&&;W>F$kaxx>T_W7`MJR=E)&h^(ffSdb`gu3p1-97qK>BGPTp+Xz4PamWhWpDt@z z5*}IgHY|HPGTx45@1BfzPgaoWUA5K?M}}L=j_eNrz>($U6*94GGPdhcGDT9GvbwSLJ>)VMHVu)m>D*32rZ|~T zapSPPuZk&d7%$I#$rv|my{`kRvLKs{FUuC(>DNuKb_it31awh1lpLdGGser-m&rv_ z4>2ek%ryXW;@~&MO+0YquS)qN7yFYAxEX#B2yr<`#w~z_mtsOcCYU~FEbhD96^7RJyJlYH> zv;{Jhw`O%T8qq*tnEai(5RJr@ynx6tj_t^h5?7udrB5W=!c+-qN`Cr5n07E08ucHE zCc>ep`h>rL=?BtkJ!Jn&{xD6_o&z_{3&N~$#s0c|ZvTAwa#{0D^XDqw#+T|FIiH!9 z1E|}8y3D>0bJA#Jl(u5CAcM&F@j5q1eONa$6cyP?lJeZWWz(6_PQbxsswnD!w{3NE zrxuPZ*&bW$S`*2^$9^z!bL7L=I&Uhs-#*a2ApcDJh4%B*OwZ+~E-61-t?|U>UL!Ez_f}#*bgzs!%QCpWtmi=1aUd-m`24pHqc?4P>Xgs$cVLL0*`GFm%8YS<;*a zH0(B@Vp$ZF18_&QGNWe)q4gZjOk^|LqM=-4X&80ZeMz>B!2O`6XF!y`L?#SzYVX&% zT{;&8)dG5TR7)hHs_q&c87k;!HR&w5e13Mzko}{|xDwUv8XZ$LRZD;sVfqZ2>oYVu zeGWiKOn@4-Qe`w63M;xjh$1vWwO~-U4n-5^f%j3_;vIkn1q8W9bsoN@Tk}^%cbsG+ zj#HYT6s4{1%o_!uB|$rLbPqI^%Ii9`Ir2;~NE0ywM!8Op12P-%Z2+dpor;F#isnp3 zbGD*oxnftQV%I|W#=dOD!Rg*R){5EaE$jA`>XsSDnjo6pD7??kx6e1ED|dfb^ZnX? zKJnwP{G#h)v47Q5{T=nn3$MR0-<$Pxrp3-btU9WHOU!2XnuR!P<~nXU9=Wz}x&84> z`{Rp4x7v^2uB=%RU26`&_(H`SeD(3J7V=Tcwqthw=b{Pn4V;Xe#&iIf&>M6B@I_vP zO>r7xu$1CJHxR?TnKGp~I+8M}5fFHJ&NDEvoHjj0UgC_F!LQsaY5A=)OWFc zbGpXNhByP7;#2&vr#Q}lN>(AH1iD4T9bqXY3>P@sXd}fnn^L9$G~IMZ(6AJPL7$x+ zGJO&T=wdK97>O#uAjLbQn-Z!njE1xex>b&Vfdw{Y8FGsZMlp??A497ZtOj60Yo5tK z!XmrqmK;OTeys3dx}k6duE(PRS!zhrMx>V0O@$ei@F0B}(7WNMs*r(Lb+s+jWnGU> zpICKonH`*qEu7A}_fCKLS60{SLw7t|E?>NKG40uz7I#9v>TY<8zBBR0#5)(?xVSKW z{o>V&*`_b08=uU&yJq+mPsOsQIpb+&JUAoVc6e5+Yv*>n)A2?}wz_rZ%Xb_V)BO}x zi(Z+ZA*!MLI@Jvfhk}eT+`j_w$3$ljIS0FP7DUSwH)WE!DZZ2y3x^L!tD0pKFo9`G zh&L3)XG$<|O4>|D+sHu>Sr#x?OmBkW@iq_C3l`{b!MK2F<`W2GE+wS+qL6*{YoNa^ zK5O!YzQmBET~H)2!N)>TDZg|HoEvGBg3T>~Q$j-$$`vUxh^SPNBB~wFHzb9@w~2y6 zl@c`Hdq1IYVk|04@q{LwhjC19DYBmp*Gck})OIEwIv-UeEg_-M(+V@mF_$r+4rxq{ z#D}1Ywhr1jk~*q{BZCn|HgJ5&y;58ESNl)&o$Nk+cmwJf_%6Vi2Brk&D^3fhq;tNc z*rFai+M>3o{XVm92G=8|GOh%PkM5tr4@D~)ZomNSZSESBfjOguHAOb?bQjyRAehW5 z_%FIUx3@<3{r97e+0q3ZTwei|o`uig1yL_THci0J*m-o>cP!&O_Df$+Mg%dO-qNzN z)jQ)_tv$Ht$kz7ExNmzJ)&#D64_Fs2FN|pPU+Q0VdFP(Ux^`ZRrH}Mw{iklZP9aXs zN=<9Jx^015qXB5qPoQ9M=G+L?h>Eh)x=OpdN;kEciyuz@sQ! z*|vik#X~Mtqg6Ralks5jjGhIoA;d%jvBc-;SQ2*K_3qA=x;oA29S4`h$4VR>T;KPc zU*dmi?h>uKH6LWyT=e`0({&(DxT4Qf+!oMkrp;`&!WM(Tc$i-^C4eY0gSJ7@BIHGj zSvD6B21H0+x4ubIX0Y%0DNBiNELd)^qHO0#ipzx9@K5ml5DXUh{n#TH&T~a)VUJ1mm`0#m^=u^>{p;3Z+vt1x5E3K1l zDGv6*{->?;et+*FZo8wO9)_);XCO=3rM6rg>99ndwIgjfJ$}5JYQ0+eejn@meswkF;`E;}j48IzgmkgTcXQBo@(h*M<<7E-_@#Uk(0T4W>pS!#GZZH2Y zUUPS|RkxtFjSOuN4TVsMor#8rJ9HTExNHjZ7ck@jaU8=w0b>;{oBL8}Fh%Aur15vA zSL-39!J|!+;#F=^7=l3dKXOxGTL5iyK9~Y$2x0^TNj{ijhERwD##x}%0;4RlCB=^u zS`MafK@Su^E|-W5*}7SK z;;IIhg2j5lV-sb#J<&u+)-5?NENSYHd; zN%tdUVV<9=*X7Efb^-1a;8Plrm0*r01;Y)3XSs^e31&?&HwG2p2G)0nL&5W7aT%<2 zG{EQ!fbbgpRMfY?|9cMpp#En4hmA|FCvP^sJ3g;2bj^e>M=nL?__?oV-A(gc*1i2k z&e@W@)b|xe{VmQ7Mgxlw++G+O_tkr+h$wl&!qh)Z?&BKYxCRzU{Z5E1SFa) z$f?aMo|-#W&+LJWwRS~xUv^z`&0bg%n^qj2%ZDx!x#EDTrL4x@M5h060*`b<8VGi3(bWDR}b;;OGTXm{RJbv zh_tD>4x#u>Y30AlH0frv{-3_7p)d16{#@w7N>O|3wILZ*Ldk1JFuy~(2u~nbf$#(~ ziz!5jbWKH@fFdD=IOH7nh{$UxP|@Kk6t~xBpxcXdo!YUS!~LPO&^Qf zn9-WkRst+b4VOx~g8h0LTK_!zRo*1T^+DmFir$;dml!0Q9Mq;`gpx6vm`HNI`^ z%BE{^X%MQ-rQw|hR4j)(im(Bd(AiyR%LB0U7zSbqUJmn)0krNlS|JeS?oTeBz7SC% zQovqJA#@-m;?YSdri38406HxvsE0rc`lX%(ixiBZ-HL-IBH9HhG^QnT5}cuI? zMkv6d)DVWK1PqZOSQ?3{9TN11k%A&6#l#(tFaEVk(I&FSX5Ku;e-qmOV;MwG2jLu zL>3BNbu7lK;HXim41%4Yz-w=QoD;`^8q?5#PFA*tLCm(YXiEfQAne7r;_2gGKXZKG z^gyt?D|qZoe^1|W-Q9iW>Aqq;SyvjOMj8+=@w2z>HeYf}X=l&z9El#Ems$S0bs|LL zumtuZNbzd3NOLaOXD=>YuXu3T`W9$=aLM_wwxU;Uwq{*4*2^9dnXN-##P6b^MNdMe zTl3H6Iu8^m`UUXLlW65>GG`|A+i?=gCax$!urulGq1rD^4Fc4a?5f zjI$M_>Hz}{>7@F*8Q+<`A~1>P;Yi; z-;#KWk#4d%f{$WBReatnbtk#N%_*diwpqy8)b9dVf#0r7)S!4_m(9x+ETE zSUazEU+=xzyWG*0>F8P#kKGmPm&C@qV)-nfc<*|uXWUGyUNz-xCZ7{y${0C@Hw<{s z$iFiLb!Ra690V2fJ=S1QPJ{u)JjTLem64%1ypO<(%5!58D8cg_r{BgiLKRKX7^diK z>O6!Y>30CS3Qs%O3a$&GQ%3d=0H|nKzf68(GMU9Sk#p5fAHU;mgcs&@fj4hovp1M) zz_=w)EL1Iouhuf~hI$WMax@vazXvM5{q%34(5?7~2fP5tdAU~>5oAct^uZbGW)1#I zqEfW_bPK?UjGBX@S&^GRx@UUnD=p(!y|VP` zDS4dbkFxv_%lF^0d1q>tZQhK{JNH=Dwqx3|X5qNj*?~0z#e5|z7OK{=bGEb z9h}qVyB8|wzw*Xkt`n%PZS`>O1sDRwjc+avXC6Jdj_}$JCs%ocUn5W~ia)FTp=%w% zwZ;mrkGpYtv3XHlY`gjF8o~N6gmqS~?=*9V*2?O*hS~8o0>%7}bu8A7xVeV8qiY0; Wg@JV}?rm@9YGx1qjzGco>i+;Ly*f4k literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..307fec50ec038d1b66c700457e76eaa1704511db GIT binary patch literal 7529 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 GhWj6hl$M78 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fdc95b64b5685ff328b060a1bb3d90f8b7c2bf58 GIT binary patch literal 4411 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 LsdUJtVC(+?Fj&d? literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6cc38afa75e6516b0593e652d5e34dba8494193f GIT binary patch literal 1699 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4be51c4359b9076e6c86910eece9891b597eb98c GIT binary patch literal 4006 zcmb7HU2Gf25#BrA9glw^_5WvEN5zgs!=hcqZhjCuwI#c?Ysf8Rw*aHydg7fZO83L; z9i2#!47)H;r3hdfC?FRwP!}jrxiV1a%|U^neJuJyMsdk*WyC<6hrZF3^U$}>E_tG) z=p_qcZ+2#Oc6N8ZndRSNu`q%*_t%3n#VA7mq65E)4Px`}K&&7g>70o&^vj!^#bGomGBB*qiWpe1KyMvG?13TMKMmduD1%|sa;G-FmvriIb68MhLd1fxS{ ztJRiiV|3VTw>mN%R%fP@jU#54)t%{PbkyvzdNaKo;*o)7PxwwZzefKWS082e@#y}z@K*p^{acDR7^wx`azjt!%Ts$Mg&n|EwgrNXSGI|UDhE{uYsj%8`KPRWU@qoe00 zCQ>{}oYh=o4A#K;sUlS+@tm=Hm5A%JJ!k}V*^rG;FX-xm5uTRx5J)0=*oeY7W`vBE zX`V`_1w8_i_`H~kk(LX#TQIU-V>b(#umY{YRJ<8O$vUTK9+9x&6|p^@ zZQL*0cMy7dvztS}T|tXzma%tsvs7bO(>a~j1G?}?TodXd?%T|Uvt;w-N1?R_V!q9M z&qo=W_3v++e`^iek7Q<9-lotXXCvR_>EXT4V2!Wqa%diQwx}GeomXT=HWCaFXg8u=?;ed^O-E< z3&&JQCf7j|GVy-l_coOEwNcLP=B=*@cGoqlt?xASB+zTwq4&GKO7dhm zd2&7Z`WNyWbfw5gk&1k{EFWIwR!{u#)WcIxF;t}T; zlqE>BUYjpp42+@MLYB{=EdO3RLQ4X`vD23}zl(xz=`R0qrvTbZf=9!cH9rC9f&0Re z=+S)4+M@VqYaWNZKA%4U^EqbY1C$cS0dZjlZq)%ukr0JVofO=;e1UM^0r&(PRSPOh zzTlTI657HWiEPW?6b-uOX{nYvh`O>fMs`l!f>HxIxCJ~S0t44R2yzT@-GHyEZ>x7M z5t)CO?u-On!^8BfF}*MnW2&^&=}?R@&G4AU3Z_?-lCVPQgS0yY9TBNv7uyL+Bfo~SnfTy(Vt%LKmH;lwS||ZmjJBxd(u;RU?bkO-15Kw zMo`~*j(Pu=p`Npfj9&-evfJ@M5yMcEW~hP41;*|M-0gE3Vx7CsFYzD~cI!i&1{MQ1 zI~D`8^tg95KN=T#oqro-b`ostQH~(ig`4f(R#9rkI4!h!P8aXwKd(`YP{R-aO7FtP#_*7F#WE`4MX z+0gTzHf0)DU{-)}Knf8(?KEM6NeCP7!wb?g^i+t%woKC4B{8bJWgVXazeunV*reCD z4<*8xrK|dGV7d`}hHCdT0rWv09)L8;nG5(Vh=A z&GlbjZ?LQJw&gH>1>8;X7}71g=@Ud&Ra>(RRV86nwcyQZQaY-t@576xAqlFg?qq@8 zp3m9z{X=gN?j91MeT|4k7oIM75Da1pHcaygx?6wUQ2&YK z%@=@O_mug}cC;T-f0}MtcW}D?AOWqkrQtbv=djdE65DlfK0CvbF$n;>p08V(g8zU? zXU%-QMjZGCKRpHid(_4Y2h%)3_E3U?;T2s_gZCZF`J`*7B_Ct;8(<};Z>I+QsWRO( zECiK^RTk2-mjYngWmqF2`2TeYj?TdN0y{5yjxb<%_+#KS@0G}J*JJ85{uu}$3nTXu zbhQA-asNau&rtuDXt0b1ze1;;p~GLH{%2_D85)7#muQR;$DfD#mb)vVzH+GV-W%(o VgEyp?(gludzw^_t5&g2&{tvsR@&*6^ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..541e102018fc871e9daf633ecead95c3ffb245e4 GIT binary patch literal 29140 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μ#z_yh?kCvNF1b>2Y=0*VOgbkEx6FE$e;- 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e988a89b18effea0b7042bc8c9e16a3c351870b6 GIT binary patch literal 15783 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 Pe)jnJnTM2OAN&6RBo0dv literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2a39e1d4f72222e7e0efde62f0444f5448d56c56 GIT binary patch literal 7544 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d827fb37a5104423eac036742ad9f47a596b5349 GIT binary patch literal 10503 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad7f112e4709155eac49c34967b7dffc745d7a2e GIT binary patch literal 4735 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a04fc877c1bebf849e999e9e9970ece7f73c805 GIT binary patch literal 8891 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 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/myenv/Lib/site-packages/pip/_internal/commands/check.py b/myenv/Lib/site-packages/pip/_internal/commands/check.py new file mode 100644 index 0000000..f54a16d --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/completion.py b/myenv/Lib/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 0000000..9e89e27 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/configuration.py b/myenv/Lib/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 0000000..1a1dc6b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/debug.py b/myenv/Lib/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 0000000..567ca96 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/download.py b/myenv/Lib/site-packages/pip/_internal/commands/download.py new file mode 100644 index 0000000..917bbb9 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/freeze.py b/myenv/Lib/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 0000000..885fdfe --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/hash.py b/myenv/Lib/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 0000000..042dac8 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/help.py b/myenv/Lib/site-packages/pip/_internal/commands/help.py new file mode 100644 index 0000000..6206631 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/index.py b/myenv/Lib/site-packages/pip/_internal/commands/index.py new file mode 100644 index 0000000..2e2661b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/inspect.py b/myenv/Lib/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 0000000..e810c13 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/install.py b/myenv/Lib/site-packages/pip/_internal/commands/install.py new file mode 100644 index 0000000..ad45a2f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/list.py b/myenv/Lib/site-packages/pip/_internal/commands/list.py new file mode 100644 index 0000000..8494370 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/search.py b/myenv/Lib/site-packages/pip/_internal/commands/search.py new file mode 100644 index 0000000..74b8d65 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/show.py b/myenv/Lib/site-packages/pip/_internal/commands/show.py new file mode 100644 index 0000000..c54d548 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/uninstall.py b/myenv/Lib/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 0000000..bc0edea --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/commands/wheel.py b/myenv/Lib/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 0000000..278719f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/configuration.py b/myenv/Lib/site-packages/pip/_internal/configuration.py new file mode 100644 index 0000000..c25273d --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/distributions/__init__.py b/myenv/Lib/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 0000000..9a89a83 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..917c7d4692c6d0db6820cd94f6402e52b50e24b9 GIT binary patch literal 967 zcmaJ;L2DC16rO1|yIY$ywDuxF*`f&Bk}Y@Kr&4~>ceI76M%Un> z+8Bl7)&K8d zLTF>IhzP~k`uPaH*Dtwu1m(gd0ewK-+Yv2uXzs?H_;vgy-rIj3zm4Bn`%m_t#(VL5 z_d-Cb#A_;DSe>|Gn?~F2O;&XUleE+%wL00L!fmqVlE)%Rc|?LGe@sEKtr%GTeO5$YxxH6HxN;iFM-Jt}@ z>A(BIhz^|5$XthirnA08d|Kh0B4I9v4Zju8D|`+@C7(DCpMC~o+(RopbghT3_Rw-) WpT>({X3q9A;J;;09c00$eSQI%Z5B=d literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..319f1d41ac25fa0c0314f0570992582f3bff968b GIT binary patch literal 2919 zcmb6bON!2jf{0|HqF7~1s>wyU7AwXiv5#5tno?8(IBq3s z$zoDMRAvb{Q!KTXDyAePqhp99E+Ueo=*-4QNO%22y%`I4#es&DPyH!2(|Os?oO<`f zQGN3Dqmyq;O&{~sJz{c?ndQ2`0&e}3%{^>cZ_~4NlhGQrJ-}v8 zU}Fx?($`FzP-b++B9v-xR=)(`5?D%6Q6i`)6R8*@GL4fMiC5y6QAHxk#lfON6KAr$ z7lbg0QI)2KVN;R8&iKtXNihxdo7SWs1j=L&W#%!IDoK$v&5{B5gf1!>?BN=^j25I~ z?j*`*{EZW3a0WKKUZ>y>WrQZQGWbd}EX=u9ahO)cHnB{5Rx?9?;j%?F%sjIK?7Wap zYcNh#sm8jF3^}pg@T!k;0=GD~EN7k{4B54DZJuhiI`_0P9197aqY>&+Rx@qb^k1*p zxJCoHAbJdR1ZD%+USWM38ZsZz~N_g@JAuajwmqURC4N ztGj)+?Ct1=E$&1LM&cjV(`0?j!KF^!i@Yb?feA6g)Qm3as4ylJ64r9C5H7;pv4y)> z-5&Q$KoROv$V}TXDbGL2c?K|h;7hGH!kSY)1Mbo2g6nXh3W$nyz-8wg#DIF3U=Md) zWLAXzHl-wpiKERsY!1u`)GXIc3-FLhbCh)*)f2>7YEu?!Qn$^s^^QDIj6wrPGr=B6 zr^X{;UQ0+J(ASSaw)qJL!D9Bb0eRaQqB)3fbw5n+OV^OsIl3aBM^~X;MI|Sp^U`^w zceop9S(?tre1+Ft%6wJVP22Qzor&fL_&BFlCD`~WT@Ok`*SQd;X-oGPVVyi!dWTcS zOW2|dv~=92N0@nzmYUa_x0;_eZ?9Zxe%Ab4TX}EgLi2X>i_!rLm$B}ON;Kzisn($O zxzd|vxx`J6jz?)xa!q$1=mO;c{cIoUX=Hq#DA$79U_&5&ar;_zU5M;>8c6t4Fg;j8 zKdG53$rW|Wx9Z3b8#Y~zUsYG(02z{)+e0`eaHVKV;KICrUY}>8Xk~?bvj$AQFiN+`?!mYOdMs3>1Y2xwB>- zLd%NMTAP_ExQx1(QN7o3dX(v7`I#B0Qpz1j`WQmZXYpVHJ`aR<20hpH1@7ZU1wDl8};JIW;IP`}?J5BCb zShP7mXH=;%r-x{0VBClUT{Qkfl69@i#{=)Pt-#H;iD^4bT-*m~(~igXC&qj6z?xP+ zk*6Spv?G=6k5qo0=o8{W(se(r>oteeEddYe`q?_R+9yd}CyoKF1pb~-P^*3nmkmFM z+YhnJ9OyY-g9%&w7*rJ7BA{$U0Qp*V2orx>Y($*I%Z_8Q9Rkd>yOBXHOV{%fTL;)6 z2@VA*%EZ4*Fp2Q-4`6z55&b3S6ty)fE1R3!3M~Zdtrzc$rKO@o>U(8)MHz0%iZXhA z?Bf@1jNe57uEtPeBtW*Z0nz3apqC|OwE5i2cM+_DVoQK&C3+|l%IGh-9W4b`z>hrL zN(x9tTX(cl0!pKF_U-^c0slQ2pr8^0t>MQkCF(V3x%ojh3I_NIui?TA!bFD(y|xwl zWTDe13sHp^M2id@=dbIhfR+>l#NXME7umc}Xt!UzH@TA&hbP|xO#-!+QK(|j1=Lr< z(7(!_2Zcm?;JaaJ#Ux4k5v6}dd;UN#-9h_*jpgpd58X@bkw&kd{OI(J(|;oXgNyzJ DD|$22 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1a3a5144a45e6e1a61dbb630fd982db08e248130 GIT binary patch literal 1726 zcma)6Ply{;7=QCOlWekyYO%D_TFJa~(yz4v=F$(k&y_`&?%Z@%w)f4)EO{amS( z2ulB_^}YOE(bq$Zyq^uXexO{k6J&SY1!5n~Bj(t~P%`tZpvajCJ;$IEUWNE?-*B)9&)X z%NjDRb$Zb0+qs%T$hSM9#pY$9@7NNWSQ(+NvSq>71UxU`1q3c;i;I%Se<8mZun_uj zLPlGs=iomliLH16VULWmczlb^8D~pVYXDS0h_{RwQ7rs+4}m*-vsGInJLG*ti7DP`uc?6I5u>x^0;D;$+?T;f?x(Y|I)Z9 zSc#ODpDZEEw-%di*Ndqh#i8r(hS+UPZ@8WJ zM;`RrqT{T6^W0={FXkdOuI2fDgI&gr#AC!SB8(MDl8(svKgjhXa_xw0J<(UCO7i07 JQ-Wg_&@*YO*tGxv literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..672babd0e04cec5aa3b668f4341d3c318b4ce60a GIT binary patch literal 8453 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/distributions/base.py b/myenv/Lib/site-packages/pip/_internal/distributions/base.py new file mode 100644 index 0000000..6e4d0c9 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/distributions/base.py @@ -0,0 +1,53 @@ +import abc +from typing import TYPE_CHECKING, Optional + +from pip._internal.metadata.base import BaseDistribution +from pip._internal.req import InstallRequirement + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + + +class AbstractDistribution(metaclass=abc.ABCMeta): + """A base class for handling installable artifacts. + + The requirements for anything installable are as follows: + + - we must be able to determine the requirement name + (or we can't correctly handle the non-upgrade case). + + - for packages with setup requirements, we must also be able + to determine their requirements without installing additional + packages (for the same reason as run-time dependencies) + + - we must be able to create a Distribution object exposing the + above metadata. + + - if we need to do work in the build tracker, we must be able to generate a unique + string to identify the requirement in the build tracker. + """ + + def __init__(self, req: InstallRequirement) -> 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/myenv/Lib/site-packages/pip/_internal/distributions/installed.py b/myenv/Lib/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 0000000..ab8d53b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/distributions/sdist.py b/myenv/Lib/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 0000000..28ea5ce --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/distributions/wheel.py b/myenv/Lib/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 0000000..bfadd39 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/exceptions.py b/myenv/Lib/site-packages/pip/_internal/exceptions.py new file mode 100644 index 0000000..45a876a --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,809 @@ +"""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.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.version import InvalidVersion +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, + ) + + +class InvalidInstalledPackage(DiagnosticPipError): + reference = "invalid-installed-package" + + def __init__( + self, + *, + dist: "BaseDistribution", + invalid_exc: Union[InvalidRequirement, InvalidVersion], + ) -> None: + installed_location = dist.installed_location + + if isinstance(invalid_exc, InvalidRequirement): + invalid_type = "requirement" + else: + invalid_type = "version" + + super().__init__( + message=Text( + f"Cannot process installed package {dist} " + + (f"in {installed_location!r} " if installed_location else "") + + f"because it has an invalid {invalid_type}:\n{invalid_exc.args[0]}" + ), + context=( + "Starting with pip 24.1, packages with invalid " + f"{invalid_type}s can not be processed." + ), + hint_stmt="To proceed this package must be uninstalled.", + ) diff --git a/myenv/Lib/site-packages/pip/_internal/index/__init__.py b/myenv/Lib/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 0000000..7a17b7b --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/myenv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfca05e007b83789a268a2d089709bf7e91ee0c7 GIT binary patch literal 258 zcmX@j%ge<81lcE5GUR~tV-N=h7@>^M96-i&h7^VnpYO%lbIA# zoLQ2pTacKXotU0l98-{4pdSx*L|$T!ekRCG`td-4%#!$cy@JYH95%W6DWy57c13JJ ZM}Rz24D#y-W=2NFPfU!AEJZ9pE&y|dQwab7 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f9100eca2305f36ad4badb6f224ccb2d8480726 GIT binary patch literal 21643 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d67511d8ac71b5f493c8dc039f3d8f64f3e8d6a5 GIT binary patch literal 40674 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 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/myenv/Lib/site-packages/pip/_internal/index/package_finder.py b/myenv/Lib/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 0000000..0d65ce3 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/index/sources.py b/myenv/Lib/site-packages/pip/_internal/index/sources.py new file mode 100644 index 0000000..3dafb30 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,284 @@ +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, + 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: + try: + project_filename = parse_sdist_filename(entry.name)[0] + except InvalidSdistFilename: + 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/myenv/Lib/site-packages/pip/_internal/locations/__init__.py b/myenv/Lib/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 0000000..32382be --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5682ba05cd8c9beb18aa30ce1bab0b31fe3f9835 GIT binary patch literal 16466 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7b4f166d2c0111b2fd14f44e30425e76d6d8663 GIT binary patch literal 3807 zcmbVPU2Gf25#HnR|6h`2O12YUEJGA!nu=woa$QA=ExWMV#!4-@t_cFyBkw33McuJ` zM^RENSTTY|41!7q3P?s;SVj$4Mf%{rwFnTPMqi4)kfl)>XXUAGf%J)uTp$Sg(AgzV zqGh25vf%B{?C#9$?98{rzxaG^1ZDEiM<@R4Lg?>gU>1A5v-L9up%rumiAZF!C|+xs zI77#lxP`WCoTaTbZl$d)ZiCj6wNE+X4uM*{=!a?1DFxFO(e=JH-YmMMpy+{*(CnfYXf5@5 zAN2RRhd)B z^FB1obReniD8d1T=+XNkhxq<$=%d#QXokIp3QVNw3$o-=gfW_i6-^hiSwWXo=Y_1KOdD)Y&KZte9!ps{Y4|i*m-w8JniR$* z&9Gxh&toOks0j-L@@ed!Ne`MvVZ(r2Yl6TMj>DeyTgq;z>wNKDOwT@yc$ zlL=zXT=QGvhFM?6lVz)73TZCA$G?c9-i2_Sf|pMc-_{ zXc5^1XiqMCozzNCI`R@(p52-vqG=tR62N!fGS6OTMH>MG(N1~VU`%zHXJ5j7Z%eQZ zXYiTwMMnd#J-%DGFf;L-YjD)Z{D&5OIEF zwCAdPL|N1G zx|{_iRWYBHYUeO)IaQNqz924e$*?FoCYNC_iMi%0%A}$e6fOt$BEWNon|s4OBq*Gs z>Rf6HeVbUST=>S4aD1 zplPX4EG*3z=U0FHDA2jt(z?=jt8bcus&5;#_J9(!g-0q(J%yVra_bT_o-sv@R)h=JNS#B8x_z+FYG%T3WR z1&7%#|G!#$;hgR?`DbYIWR7aBxQ$}-NIB_3-+({Sn3jy! z?CrFs=8bY*B7-=^u5tsJI5CPkknT69Ar)z3kiLyd8R9m(ifA$SG6<5B!R_RPy#&uJ zPR+eJ2Jd=W%|hP6&8m4$z!C?~Y6?OLVi+F9TI8i@TyR+xq5^YCvITOLSj3HOAQ2Nd z#l%1HE2JW(FzmIEG3@YgrV66r7#XFhk71Q&WF69BKfHob6A30vzYz?hky>)dZaVv4J<9_$u?scisdaCHI+O4i1F`MlN z?}ToL?i{*(=w9-^d{_SU-IOq+ z$#c?kzDf{G{c30N=!pGGco z0X_8ue&N~(c9nx&rO25|@H-Vxf63ZUSwvnjT$5rV zAfpXjD7Kwf#iW^(lp|TNMxoGXd48G#I3|`bUfp9Rwv!oCzcc*Q@+l!TA@Pt)8~!V! z7cTQdXNN9c;Li_VHk`zTh?il41K{yGHUc~^D1h;`{Ep{o0!IOsdYI7ydk9-{ATv9} z1b{lhitz`>AQw_E=?$wSef@ZyiHVt#M(04ebD+}s*23`O^wN#uja982=%`rVg7ntXy3oGC>?vMO zN2(Tvd2{vXmk63I7Fjy}O$c9AJ;=GA5Dz~N?pyKS^4}aL=R5qhMjpREMmx?$(Zgud L5Mmz=GEn~ycbs`v literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/locations/_distutils.py b/myenv/Lib/site-packages/pip/_internal/locations/_distutils.py new file mode 100644 index 0000000..3d85625 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/locations/_distutils.py @@ -0,0 +1,172 @@ +"""Locations where we look for configs, install stuff, etc""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +# If pip's going to use distutils, it should not be using the copy that setuptools +# might have injected into the environment. This is done by removing the injected +# shim, if it's injected. +# +# See https://github.com/pypa/pip/issues/8761 for the original discussion and +# rationale for why this is done within pip. +try: + __import__("_distutils_hack").remove_shim() +except (ImportError, AttributeError): + pass + +import logging +import os +import sys +from distutils.cmd import Command as DistutilsCommand +from distutils.command.install import SCHEME_KEYS +from distutils.command.install import install as distutils_install_command +from distutils.sysconfig import get_python_lib +from typing import Dict, List, Optional, Union + +from pip._internal.models.scheme import Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import get_major_minor_version + +logger = logging.getLogger(__name__) + + +def distutils_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, + *, + ignore_config_files: bool = False, +) -> 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: 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: Dict[str, str] = {} + 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/myenv/Lib/site-packages/pip/_internal/locations/_sysconfig.py b/myenv/Lib/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 0000000..ca860ea --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/locations/base.py b/myenv/Lib/site-packages/pip/_internal/locations/base.py new file mode 100644 index 0000000..3f9f896 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/main.py b/myenv/Lib/site-packages/pip/_internal/main.py new file mode 100644 index 0000000..33c6d24 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/metadata/__init__.py b/myenv/Lib/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 0000000..aa232b6 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd189b58b7371b49ae592fb830adaf9c28885afd GIT binary patch literal 5895 zcmcgwTWlOx89uW+yR#SH?by!!G;L~c>TG1ErL74?w&Nsj6US{_XcnXKc<0z2duC@j zGn-_iR0^mF9+9ZjAXREWJhTcA;VlTM5^qI)*{xgInozZfAe6UN9fZUK;{VUg?5-WB z2t{x#pWB?vfBx^k?#HdIDFS8nk54Ucb`bIx9E2qibT-dOguFv^qDv;p`K^?b#5j_R zh&GywLK`tpn|10v!CYM51#<`WUPkpkm<#6rwo%hWyfXKcb6G6z4SR|*}Uuz zVxq}JJmsw6G7eWJX1MLzdE3k+Im!i3W7UFHD^_h#d3{UFRdu$gl}uM<&9~u)=80aM zxQrL8dNZAE4l`NaRTs4UDl6z-oHMt?3wb!bUKHpdq?=C(;d2Av2w92L*VH?%9CqD! z*t-?1dyYuNO@^~BzDN`opC!r)K5JXiC4@Z`m$1!8bnzFSEs+c4Nis|v>2gFO7vUxl z*XWh#MRHkkL7n`v(iQd^tsY$k`nXgEWdOBFz1d7-U%2iXS?Le^jaHZRcqr~6Wfw?B z(S8m`0;cXVPPPty@PwMd(!j9${Xp)J6=`FV9_YDRti z!lXKNZsz=JvuCHq)pL`xV<*RE$KY1D$YJgfHC#a#rMi)KH5Z-)GAfw%2u{I9c)31A zIa|`W4l3m!QT}s-vw(C5bTBK1N9g(O+z5D6*8`jT&n{|ie)$nR4UPsVHC+dOESdI# zW&&FZj;j^iuYWN87Cohz4x69%nH(HuX{+$y08BVxy8sN93gUezIPhqWEE7_sE!v!+ zRe@JBA6dFH4nXgbSzcmCGCnuFyBaD z1R-_2#4D^k$+^wF)OR$q#QeUDR*|E(@*=k5DS>c!QLuboO8|^&6c%l->tRjs6tGg7 z>vAsW$%FMEZZehR{;{WPMR97X}|ul1Z+YoGc@l%$TYCr3U>j{NhUl3G{#s!HFD zflrhtHrjjc%KPu7+uv4hB-i_oRQr!qhNeDxcCBM(E&Xame$_$1-a9=$1-tG8TVbp)x&{{ z`re`X>kkdlLtCWx(DyxgdhFb!*RsVcrY9RdYC5BM2~{m<7E@I(rK*;#mrU%psOk?& zni+g)S5>W0ut6?B+8tHp=vEpo@dL66W5NfqdM2!%g^qI&svnb$)bN@-ywTNL=^Lna z4X(+98=bp;W>-6({#1UN<3h0w{JLUkR~+Li+rmC{XUM|M0#xsihV#1xV=TNEoIu2s ztjL?_-q2Z!;)XFBxkf@Kbpe-Q+%)zgT>oQ$V%{>k_I6vIUN|fz~h0jN23D< zPY3}8^C#?JzQj39Hk-b{TMAd^hcXU$KiVXB)DR{+&*&nzE&rTl8xF5KTyTUCGWt=K zFx5Nm_N@T=%7v0)y8dbN^I+(*;7FFi$${6UmR1(dKd4Ek1v1Zna|NIS0ifD;7{PC&YXeIh zM#1?f`cR z@uWhDMh0LAxzz9M5F%dt9-9}YnEFz6%I^vLb!*3vIlz5>8`2{AyK_pPkA2eYmEf-M;rAA@BVaeaVUOQ@)W)%4(c z`uS@5`8&zA^ms)c4^&m8ZC)Eh=61mV;~;!y9<6U!>Q3rqn0Y+az1Hl2B&{t_UR2b& z)caOAP~V2i3OWazEmB_x`+o>wc<-Yj6qt_|HLh8h;54yulup~+(oAssIxTX01+;@= z;kGe(7RQ3&n16^_q1Omtf9U%tod}3Ss5QEk z@XH1m>HElG)&M5D7ev^y2Y52=88D$HE&`q^~Y&VDK=iHoPR-8i%ODomvr7G9d}9cE=hesPJBjA{FP+?M&9_0 zyz%E~#~1QoMIQXJeb@CfU&*O-BZ^on%zaE)Mlr`vBUW3O(CiCS;B6yNCESBpaX bWm{)025l`)cJ?KIN_dybRLI(Z~Fajk! literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b034f92e725dccc2e6f729d17a6aa377fbbd9a4a GIT binary patch literal 2952 zcmZt|TWlOx_0DtGo?WkBi5)o!8=TOt>vdA<*a>w))RiM^ymM`jJ&*03 zSvzZHkwF!>ZKOIcHN=60`Im;rabd+Kngb_S8(y+aoXo-Juw5i=uULkyYRL<)oMDRPRNh^%iO;K| zNo=aR!FY`ms&2XPV4vSy-_~V9XY?$#9RJ?NQA2eceNM-OeOB}p{90Zo*h!|rbBq#u zLOEA}TbZj?Tb|IyF1wgms=*|cbHrZ6S(ll~_D!%~)-})tQbhIDKOqI`o6gQUwt?N? zMk;|RhDK$A-8`|f9Ls{*5&;VE?7j%EYsf>3d$~2CTQ#`IB%fLur}4M=Dsc*OYm#zF z%FTe=B*R{T919VgGt?|jaHIpo9Hu}1?`3$8eslVQ1IaS28u&7vK5OAL(UXoYKLY{to!D>I(z1VM(Xp+*T!A()WCl_Yldpgk$Cy!F@LEGVO7q(%-Z=5rxBjlg zx0HCPt(4tXddgzYF0c_5OlSTJ&I$zksO1tDFLqz>r!d- zww&eXQI@|1J*g=3$m2XY&~cT&5)n}`RFthtJ_jvE>skV=t}QrM40)0!E1%FH9sa?D3k+w0Zm#_>F_7D6j0n5~0--&~cVAapP*d)+*!n zEGySIq@NAcm#5B7CbPDgQ(b-5z;O*4D0D7pW_^@fAf2H83kf9wff>Fl`U&OMf(%BW zdO`(;k_+>w$hqu{zdTfT@};(6v>BM`& z+#bm*L*V8oiQ+y9yT=9E0ywotu5RTN>PBujFy$yBY~%?=;Z<}cwSq1KT;USpW#|P$wpgYPO%Y}_6OY< zAvU41n#*BJqk`iS!rYe-Nw?J&cJomCBIr0*%IUO4Lf7+!1WfwFHyeRuy|CBCz-WBt^F?tu?m{?w_XzQzuKV~;!xagz z|2eGee$$p3t_fUpM}xBqovVbpMLN3 z&9PrjZnqDukL^G-7C(u_D>B4s^Vrqloq^~7pnRm<9=$toa{FLvYvAO~!Oid9xOn~I z&tEMMoZJ}OI+%KR@W_qv>*GJ0*cjW{-?c8UJ8vqLZgk+;$6rISws(d$g&VQ!vF*;p zc2m#V>HDFko%k~#Ron_6dZ@IlO?>|77?|_gD5C1&vmjX7w+Su=zw~w~&L1AgqfJR=k9TqM8~kyyQ9dV)@~xgCB?w z5Q#H_Up(Pq)7J6^9wDPZV{OM7hgU`5IPO0(;)b`-iGQFYpQ8SIsQ;1J)yA*ID#ILi md}FGD0Bla}GEfO0=UO)|RuF(vdntQ!sI>6j;m2(2U-o}af$4<+ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..075963d16b7fc431d1af54a5e30c1c3bcf4da591 GIT binary patch literal 35224 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e69e4b844b1dfd1ea1db18e0c20c40ce7dce4cb2 GIT binary patch literal 16110 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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/myenv/Lib/site-packages/pip/_internal/metadata/base.py b/myenv/Lib/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 0000000..9eabcdb --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py b/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py new file mode 100644 index 0000000..a779138 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cbe7a8ed2080c31fd50d0f7f673c9df36f9fbb08 GIT binary patch literal 384 zcmX|7Jxc>Y5Z%pP5=~4a*h&fuuh2tF5kX8kjg`%@u>kb+8X_}VgeOKM3g&84^@L7T%$4z++->b1 zG_?a>?E>WUB2E)+qzGGHDKF6o(%HA37b#c0?8jE7lu1dcE<)%AO##v81;E}GIm)=s z2$TGjlS9QDTJ$)vSN7K4+0l4t@9jfnzfDSG7|S;2iX@P$%Nr+ zDQkCGhi4=esZWJ6Tq`F1m>U)`!~FkaeF~~Dl&+`!d~Q2Vq7%t?bPX<={UKWd_;4`B V6I7p|<=4u_S^1^BIB<0plrMjdb`1ak literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..83f4e1e9b38473804181488ae71a81a85b692af3 GIT binary patch literal 4517 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a3b8ffde7bbea6754bdb5618dc0a88d6e9790a4e GIT binary patch literal 12591 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee997601e627f68b7725f3208ffb30d9bc73943d GIT binary patch literal 11105 zcmbVSYj7Lab-oMi;!T3@mq=+vks?8plr7Pg6g_Oxk}O4v>{w3hpmI=%yA(m;!R&&f z2!pYrs0p1YF+Fi3W}4P?CylAfZRP1q;`{%B4cL!ttK{wVV6$@)|fw8MhVTurE zVKW!P4u05E?3^($7Dc+Q54mb0%E8dc54Y%^LJKmPq6yAig zNAbqn6CL4>#OCnk#Fp@ugdCQ6y)V8s(HZU(n1iX#i6hoamU6Z0I^L76aJS-Dw<`g) zXG~P8E{ow_2YZAm)t8wPyzVIW34soqc*49ZPZi1k~-VXjTG>0BW_D#p}h+ z;d?mMI#8`w8?QUf>Tv&z5Nh~2-JA@$49~H&szuW&%@9w-^t9o5bTS=FC8Ke}b4vZ( zl$sn>4d*E}ZAec{O~%!b!>B%)(h|{lETbwXqY2fh9gQYa$=E2biX>5mPBkM@T|ESX zTI|de5j28Sb2xcErlpbzHJJ_xhVZJghEGu^HFY$aRuxnSpFDc_@QKLbr=B=` z^3<_MPyU={EhHNLk*M+sH62x=>8Rl$a*svR<3{sYH62m#sEEx7=fbF^hFEee6^W-n z8%%(Bpn@rn)nd3bH9e&zM~f@O=ZfT$W^E0^0{P6ciSkz7g|T#Ty%@9BL>Fd+v{-Cr z6E3S%$|t;~vQ^4fj^|oKZ4&{jM=75OmdaM?w>+`d>Q~B3Ppsg)-s&;YV3kUFY0N1W za-2L8@*5sCsp!+O^te`oeug8Z8{#A_j4P&(#p0?~Mb%Z)wAK--h-j)IC8Fukal>;4 zt4JbaxHGXyYBYQ?JyI-R6SQWG)oIq{UtC1`@W)PnN>?@gbTqDBP)|RaR1ayf^Xlo` zV(v!nwcHQ#U(UUr`x`m`h5V)54|0EZdS^U(CK{R4qNC~9x#;P{jG8=u`b6x^X+4%! z2PUJV=b~p-{q$sPat9;@ngGGyktoX8j#y$crKRJsGdm&}rw>lf7`2e4)Hyv8kDXH^ z{FStB@YRB!{xp({Y}H@C;&0FU+rJ&T~L z9uJ9=M^lQ*>4AwU&^LMNJp)5H1tw!@BB{eHO{P<+xZb17XVmfN`B+K|^~+H(nFK8* z6-%DQNLALsBPRzlC{L!+u(7dd9Gsfuq80BXV>aTcX;qWS@Tv;gc`%zEr>RJtS2ZoB zsB)Ck8;_kGuk1+g9-}!_K|Br>Cr*i*(Ws`5O~s4ze)v3inBqK4gSwVF6FmcdrlZL; zpYiB9{+3u0J$5FpQk|}G5n_Koy6t1$gZPzW|nPm~XZiZbGPQs@-u@*)k!UcqT7#;pZ z)YbTyX`!?(5HmaxSdv&e63Mi0Ahd&4>wV~}lWD)mZr?Zb*Nt=Hzj|7=?Wo{3Z`AfG zsBz=B4L^>Pjx(WxgW8i&}^#~7P+q-_tC zwcBQ$UY7P-!^`T$tO(z@fwwr%G~r5Up6^O?Wxpx&*onQzVLs>TE)CXUjR3hLip4q&iq}uI67^?p{lK)~KUS#k4SfFF! zsayW-tAV=rU955QO2hVi!}gVip?t&8>w8}B%QXzW*>HI7(CzktC1tsN*W4!x4za5B zcJts;dbxRMUMzT6O~ZV8rMWkc|6uQGP0MPaW+l*(4|J>qw&nv{7rSl+dRFV27OHY} z-OGXQJB_UIi16Y29@ensJ>~$hnx?DOFI4BYJn(we4?p)$7j9m-RrA>GnwI}5NND{? z9|XIX_Kyq+fA1eY;JE4Ah2qTv-jVyHH(Xms`lUB|B-FgoFHy~XPLwNDj%JIi+~-j+ zRc>SWS5iNy4xqqkDB!GP7NU3236T<$fvj`FR!R^nUbAA_a^76jA^K#Ha1}+qheVzW zp(7LftwLxzI$B+FcHEGY8#trNDv%jjL&z{JJ%Ij9zYOmbmBYs#lcU<`IPjBcCu#J_ zkWCm84ADjS6iKb*U@bWL2>NwodOvbc#YIk_=^9HWDvtfvI8o zQ6yZj3O?4=`^tkaKX_x$o7?v116$?}%>zKS=Yn0Udk^GmI^XTyxzfEi-@P|i(|NmY z^Fn&@>DU+#m#~!U?dL{|Q(DwnN7gZ6FBFIu zFUwC5)<=&G?5foRVsQl`0fCtCSffk1;y8y1g_W#FyKP%b?G}~$*{rBIFSD$8h*@>8 ze*~@h1-!4L zrei>093z@!IlLK%4Iae!m~ImrOT_`Bba^~AT?W;F$}BiXNN_ZjfJVm7#Nx5^3=sgz zjA?orkSRH!CMMG}Ha)x(Fj102EBhTevcv=c^+ZkG?$uO16+aK889fVN3sPX(o|K*v zf1{~n8Xd?f+4@h=O;ZUQBMOz3_nPFrLwLTC4>XHcLPhN8vj=_5kktR(i z8*7;z@BXuDQoS n9?fb+!jvIC{6i{j_n2>jwwzF)AqObI9FCEzKy@)ZLTrxVR~R0|Jo5${C_wf zBSNI1Cg+_auN_`G^tVrZXXv%VztqY4Tyob6U%}5{*tomNO<;Fxh>xK_+jWFdfHtr- z)~Mjpr^d!&7Ys2qsU`s=)C*}~;Iw9VCa~$C!Q54tF2YylA_xr`5F@!Ng;_GAh z(ou~fG7vo@SS(xNmy%b}Dez&bsNX z%faqBaWz=~{4>uzb7dCbWwo*O>gg9wfAh0*hq2w}ou2t|u#eD4ZPV4Z7usHIU#xwL z)_=KWXkNPAu{BRqy4*SP!;$5VN9KJWNUU!29T#iZj4`)21GT&|@bbV7-*V@^<<0x& z9$oFZ=apw)e)h(*Z}vQruh}*)&L?g+buJDqb-XSvHyv26IdI3xdXEZs>RD6Q2QCns zZ~sW&0^TnTw>{h_+-&c7*el)KJ6waCA9%2dzcB8y8R%x)^8w|c9&Jw~bj4H~` zxFg}5bqcHm>nH306P{MQN^Xzb4Y``9;hbkBfM^?dTYV9jvK>gNPO$+zBz}v7kc~7! zVWD-`_2QNVPk@t{b;0><0qZPaK!3Z|7N=h57=%R%|&S>K8R@`XN zLiO5dG-{iuhg$~AB+S+34tu;fNvJO5kgT>xE9}qNoxk zcCR(DJGj)b*(9yabZ?{;cXdmEl0J@v>&82thyK$u^3$r|^Wo>h3!Yn5TNfXHyLHpN zwA$Q$HS&Gp4ef8W4=zppRpwge&GwJYA6jjbSK0>hZG`aKb}cvT zf+TnByW?hU?H@Q~Xe)_m30k95TR*`>}AkMN!0>f!y)o4dRy-`p>aNbWZTH_8>F zOz>?Rerx}L#5AJ6PL#11wfCsMS(s-CA8ZLU)njyrg{T^5ec{GX}YUFgZ&r(9tV|dYSZWs-}UBp(f zIvkrk#>0|_H7%u?f>gE%H0k_4k?@$~5y~ORe%JnQoebe2zl#i^+YC`7PKz>h5HeH{ zo!8a)B2j-5#FgA8CKDBh=&4xX5hgR!aR_eO*b=`}~a@{@4fqNh@ zje9?QUt%?_E5V+8u;)D{c}G$~iPBAX{cwl#W}Ab` z?E;lMoG4ew5P=OYL;sFK5$&U7UK^qPjqrWR6l$$Ny&K^BQjfzhvCrVCFj9^$NfHq3 z?<$#E8)(}Y-r^C6+K%bmO?w7Aj@|6a5PlwWdl>y1tmzR7Q;=}2i%yi|Uf@Us!p(pj zVrCR@L@X2#xUa&v^~q-t7>Csxl%GU24w3Fs(9VW}_K6LMfUcfGKn~$QAoEhtPeVxc zJi%yn{S(T`;6aE!&d3z61U3Lb9#MgsX!*a?5lEj?PLER%d3rnr zoS*Cgj8_4~W9c#=9CCB}&yBqy#dLB3qgY>UDzs0%gwu20=sj8-M9Vrxxy`f&s{z8 zf!zfs3-ltX+VkPNf!)8-iR(*4!#jlU3B&h@-ycBfW|uHLAl~eDQ+Yr@ikIPm)=(qG zKq>4Li5R{}B#~04aOe|3=rr;<2w$HZ(MUuitE$~g3B^RYMbl`_8=usQNm}L=2jzLrvbk(GpgD}rCuwcCD8v7$z^uO z;gdXt7FOS~;9Y6y%eVBcwCv8e?0&uFhrRi|$8#;m^K~aK9$ym$X?MX@FKu7kRba@L z_S`t0zvrPfDi`{E(otdIRDn^x_*8E2V7~joHGWrUX_5{uK3rhPmX7A`Kb-GBvPL(B zdwtT-(l#11bfY)7?|6Ra2^um~Xz@w?WsW=r;kzRFOCohakfG-QVPiBHA zQc;Bz2j)e_rZ5wvaKEK~*g|EtA#zVg7IdmX8(!6&KKEF z#p=~sd9h{Dx3nV{{Mc&4-qo6>)$02H_DYhAPZddteUY%ywe}?><%ei04$Q#Mae{&3a@dGn!FN@F1%24on%HL#ATQNR&37BfQi{F-6be%Te_1T1^= z44TXB4Ogs8L)jDUbBdR!D*-K>Y&LD06Tjv+ClD^jzDTaPY>|Fm1y5O)wi`F{xYvuL zPnis2AMey>bZ#vnzs}LPUcTsVMIDPm{WJCD3>GW@6c5sAhjEepBv|+2uB&@q*z?ud zoTuGnvwW^>Hb*#{S>a;S|AkfRTXM`r*0pCr3)A`qWZL>^HGE@QDq&82rm39yQvG)^ zuqd|g`fKJ6yj9=yqJH(l3m3j|AQzC|3f9fv|J6*ccr;X@(ImFp@LLODHj6mNUKLB| z5PV=8tpE`4C^lXWgkLQ22Px|+o$UaBuu5!$5gVZ)`;-WjvGtjCmM{=d_6D0xO9pV# z<1FIr4iOW)As(`+-_6ezmC!lR(4+WyOF<&HY3yh5PNsX{{(vk6KP}W33tu6YrB?fx6ip&TiRdp zf7?HIbhWwT>N77qv$$uuxql_lp9}P_wrpN$>CLzFF15VbvU6U%T?4HAO5)|jt(u|L zrnYbR3KDDGg|id%YYyd`LrcBO&AV0tyYhiucdA%x*J_~uLj=*QhJK}Y;<=XwM?~R< zFv47~4ZBgixkngrxNh$Cp!|kIK+3nJ72uiPo2#;d!k3-pj-n*{UvbVk#{@;V?16Am z?{$|Ye5G(S4is%M%i_Z>Ya_-#BB_vSBDV{_wTF=Wp@XLe#Fmo^zao=hLvi zE8nk`BtbB$0Zh$Ll+5pwoZ2A}F#_dr0PQQN(&_QCe337^8HU?YzRcFAMwS$85IuaI z$k5*9L%!|>Cf56YA|IF!tOhr&1pD&AzNO@kgZr`XscL;oE*@EYanoi2CoiNXMiZAc z;L}QZ(;h=(QDFJHk)OvmG^%cLUX<8}Oo^>o&uOOpH@(OAi0L6>8pqMCeM>{jt@qAV zuQ|Z`yK>ixye}{ByCol3lTb0|#t9&f?;crrVma8E^K^1c8>-Qg7_X%$nWTgehY8lm zEg1e$`q%<7lJS(HQ8-DvL;Hj3F^x=@~jxHfM%U6rVCayJUztel|8$gsS*= zO&BzYPw(QoM(*2`EwkHQ5vxJ^49lE$S{b8lU0@3zs>Jm{^K+*v>aeA<1Aok5IU=L5 ziqWxAFFLTnD?x0@Ya8x}c{;*RygB4I55S@Ccz3P>I^Po*UWoJwejsj28d(W0Uxs)F zlgv-qxy?7cacv48141`AGUV&APKpfAesf=PP$MxSzp0bKM(jZl-exs#v(~p+_1nzL zQy))j{*4W(7G%P%EOXw^(T!L%y=+dc|KT%*P c-ca7746^9h#@pVn+ahe6-|-8Ej0@ZU0@{3iApigX literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py b/myenv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py new file mode 100644 index 0000000..ec1e815 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py @@ -0,0 +1,85 @@ +import importlib.metadata +import os +from typing import Any, Optional, Protocol, Tuple, cast + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + + +class BadMetadata(ValueError): + def __init__(self, dist: importlib.metadata.Distribution, *, reason: str) -> 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/myenv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py b/myenv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py new file mode 100644 index 0000000..36cd326 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py b/myenv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py new file mode 100644 index 0000000..4d906fd --- /dev/null +++ b/myenv/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="25.1", + 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/myenv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py b/myenv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 0000000..4ea84f9 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/__init__.py b/myenv/Lib/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 0000000..7855226 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/myenv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2234db74081fa45e7dc57472689f04b9eb11bf9 GIT binary patch literal 292 zcmXv~u}T9$5WS5-Lm>aKg-r@`U?n1oXenCR$igzY8_aNN8ou@Y7e9xAD1~Qw=^vpiw?EtvB(p;LHD%J<{MJxWhUiwvS`--UdMK{E6yES zCqUs1iZhMJmL@2|Q+NrlVOBqcX?WxHU40*B;azMi7=knwGEW7FafNy!PG~3`dE8oM ybHb2GC25aVgG!g-QW+icQVvWt@9ahMO5wg;k13jSUGt6aHOAOai?OzCNBIYdtY6{) literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ed1003065b3df3902006fe496d57128d34abab9 GIT binary patch literal 1630 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a6200138cb37e0aa4984682e69245e368240286 GIT binary patch literal 1720 zcmZ`(PiP!f7=JT6vpd;r*w!T5WsNeBqHNk`B`u8<6)^=9C~2s+$g=R5%zK;6W->Fr zHwoEg52*y2fFd3w9-|i{@lbCSp?C2zODajnp7i8xHJ0}1_hxoCtI!AYeee7C{`|h* zn_q^8(g?=N&*ztu3POJfqdUNk#>p(GT|^L(Y*dzH^gbf;79xoQIZi0cGNLk3i28l9 z=SxJs6w&&8N?j@r{3(j&&A2p{$&L~2bPx8Tun$3HnMmct672SkR8~lWsziZLCCO@X z8&xHe+RBuZL=!%$RuwX^rIb_KXhSM%AE077%q$q@im^oJ96~o5@7nGTksu%DL{lI(3NWT2NP1!^9f1!=yuf+cm>9w^luyV&T)g zx@SeR;i?5b?z;^3#>8DUEQhIZM>YT=Ofu@PF=yUPbgnIwn2Yb^ZxCNfyT}I}kDWvl zeFo(R9a}<8sfln0e1!Zie5j^%Yfg1-@O0jtHKhY7p4T#6->HVRdn-0kEqfa2&PcBw za(jEeAXo101-at>(P+wGMbr~!9TgMvVKN3YR0NR4!BFLE9%Z41vE^7k#u0>J60o+d z#ZdJO#%ZX5$vxZhnK*MeBpQILF2kPTFS8W*m^fgBd{GG%PVH)6F9t9+ZG&@+xuCnQ z>zhvn@-x>ew>f3JV%T(pR&F}@maitrerPTBpu><%YFb;g(M?c`*%n#k0H;+{UNOG3?T+OQ_9DmSE?kS7!q0#%Moh zC%bnSz;O)X`6haz4eg{_TK>^1mKn({k*x;Jj#x@vg3Q#zn%ShcAp$(F9+IX zb`CO%1A=Rgu}U!x(-=d0*5DoEFoW^OYlhv4q%b^b6WqWZZo58kCrogkMeU2u11yYL zWm4P5xG1sc6ynLf8=qRh$%GIee-p&>E%aEq@%x!un{#a?txkV6(?+1~n~{1zo(ij- zm((kJ<81_LfBczH(aEEw8fTY%-{aRxCGmbHUA9ze@fFm;r#{2~I{YFz%SRN2n~+7v@6kLns!r?@)X=(Wg**D~9tO z_8OQ13O)s*oscByH#Gb#`I2M^T3u;yBY9urY##BSKAn5Z9yHegEp5yFS)k0mCAPmMpbZOGz{MiS-2zlFsZ|2%gdP?ma=IrqHox#ynO z{2Yyj5v-Y?`j7Jwg#KWJw?r3dz6;0&q#%XUP?5`VMLx$Dg`B`K9PeipE?d{FZ>^iPkF90vMymEv?VNSf z`XT?ECLfcfGLZ|WIwR+cRfu=~ZS`2*P))qMEEi_vDQx7+YB>Xrn3(9YmMNALtQi^C zG5gW*O7`lZa+L-p&{R!Hn(cMdvnDJ%i^U-Dk=&H=ri?liO3vb-~J!s~!F8o*^UA>C$&$6a6J8bp_^ zIbIR7_CAi%zOmV^u~JGYozk_EtU!h*OR32cNxhNw(dZLw8d42Ofhx zYueFMWN9;&0Gvg4V;%L_mX+8RE4bgxscyVh}VE$))IG^kS^u zJzVP^zQ3b07M>RxJ5gJ_9!ai5l9&6x9{g(X&w*W6-uve0)uXEe`{oZ=@vXJCZFger z^I@_Pd@Q)>1r#Axpms~01q6mXXTt8RIW)a?Sh?I$^eI>1r%-|a0LthLjI3#&cjECr z$9YBcIsZwQ2-;^j(;LQ*N?PGBiQ^#SZ22kp8;ntIZ(5`QcgE8Q%pGsw(|{X!8d>{K z5DBwOSPDo#1FS#OJYnr(XWN~QcAiNuaA$kgNvoUkogg<30)R|z?)kNM;BNNydUj$Z zJJA&Q?hU_WC$5ivCf4KWT0DKF|8_iMWhd@4$-{Q^OlGxr&;3L+9&Vs$DE#jOKkyAU zM84>LB{-IDW0O&ri&&CqSdw6fRy2mUNz#dmtT__GqDfd<2y0#%DQL1`KxrQ@DTLXg zf?*QEa^^gjz33{kGwVE&O%}pH2tH#Rzt)(vKzNWMmffyav5=mXFYIF9=r4b;%UJ@o25)cYIC{^QSZ;RgtSef~d6S~IW! literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12a8e7dbf7c6e684897b6b7760cf4e1c13dac4c0 GIT binary patch literal 26643 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 XhueaO-4;nX!SA4gH~x%1GhF`vT|3rL literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a095ecaf7edc3971391d7c90b747975a9bc9e2a GIT binary patch literal 1049 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cbe86e2a5fd6e00bbf5162663f41f2059ab5f783 GIT binary patch literal 4979 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 TWc!C6h2uItfKy}6w#>f(So^q_ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/models/candidate.py b/myenv/Lib/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 0000000..f27f283 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/direct_url.py b/myenv/Lib/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 0000000..fc5ec8d --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/format_control.py b/myenv/Lib/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 0000000..ccd1127 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/index.py b/myenv/Lib/site-packages/pip/_internal/models/index.py new file mode 100644 index 0000000..b94c325 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/installation_report.py b/myenv/Lib/site-packages/pip/_internal/models/installation_report.py new file mode 100644 index 0000000..b9c6330 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/link.py b/myenv/Lib/site-packages/pip/_internal/models/link.py new file mode 100644 index 0000000..2f41f2f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/scheme.py b/myenv/Lib/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 0000000..06a9a55 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/search_scope.py b/myenv/Lib/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 0000000..ee7bc86 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/selection_prefs.py b/myenv/Lib/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 0000000..e9b50aa --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/target_python.py b/myenv/Lib/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 0000000..88925a9 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/models/wheel.py b/myenv/Lib/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 0000000..ea85600 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,118 @@ +"""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._vendor.packaging.utils import ( + InvalidWheelFilename as PackagingInvalidWheelName, +) +from pip._vendor.packaging.utils import parse_wheel_filename + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.utils.deprecation import deprecated + + +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("_", "-") + _version = wheel_info.group("ver") + if "_" in _version: + try: + parse_wheel_filename(filename) + except PackagingInvalidWheelName as e: + deprecated( + reason=( + f"Wheel filename {filename!r} is not correctly normalised. " + "Future versions of pip will raise the following error:\n" + f"{e.args[0]}\n\n" + ), + replacement=( + "to rename the wheel to use a correctly normalised " + "name (this may require updating the version in " + "the project metadata)" + ), + gone_in="25.1", + issue=12938, + ) + + _version = _version.replace("_", "-") + + self.version = _version + 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/myenv/Lib/site-packages/pip/_internal/network/__init__.py b/myenv/Lib/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 0000000..b51bde9 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/myenv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a892a9d6bb7ea67c023102e318a682b3b3b1c1a6 GIT binary patch literal 280 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 Dn%>a* literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0bc7889dab6200a55dc57f12c68e6a4ae374a3b3 GIT binary patch literal 6477 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 J!G>7QzW@O?;Aa2; literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d0d94612cb97b3f1eb1fcc33589067b5dc05f4b GIT binary patch literal 8505 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d9cff1d4ba14f2a97c881b84a65f402e6926701 GIT binary patch literal 18900 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a26c724fadc439bb4d862ca108948a5698e1dea5 GIT binary patch literal 2281 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/network/auth.py b/myenv/Lib/site-packages/pip/_internal/network/auth.py new file mode 100644 index 0000000..1a2606e --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/network/auth.py @@ -0,0 +1,566 @@ +"""Network Authentication Helpers + +Contains interface (MultiDomainBasicAuth) and associated glue code for +providing credentials in the context of network requests. +""" + +import logging +import os +import shutil +import subprocess +import sysconfig +import typing +import urllib.parse +from abc import ABC, abstractmethod +from functools import lru_cache +from os.path import commonprefix +from pathlib import Path +from typing import Any, Dict, List, NamedTuple, Optional, Tuple + +from pip._vendor.requests.auth import AuthBase, HTTPBasicAuth +from pip._vendor.requests.models import Request, Response +from pip._vendor.requests.utils import get_netrc_auth + +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + ask, + ask_input, + ask_password, + remove_auth_from_url, + split_auth_netloc_from_url, +) +from pip._internal.vcs.versioncontrol import AuthInfo + +logger = getLogger(__name__) + +KEYRING_DISABLED = False + + +class Credentials(NamedTuple): + url: str + username: str + password: str + + +class KeyRingBaseProvider(ABC): + """Keyring base provider interface""" + + has_keyring: bool + + @abstractmethod + def get_auth_info( + self, url: str, username: Optional[str] + ) -> 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/myenv/Lib/site-packages/pip/_internal/network/cache.py b/myenv/Lib/site-packages/pip/_internal/network/cache.py new file mode 100644 index 0000000..4d0fb54 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/network/download.py b/myenv/Lib/site-packages/pip/_internal/network/download.py new file mode 100644 index 0000000..5c3bce3 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/network/lazy_wheel.py b/myenv/Lib/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 0000000..03f883c --- /dev/null +++ b/myenv/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) + 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/myenv/Lib/site-packages/pip/_internal/network/session.py b/myenv/Lib/site-packages/pip/_internal/network/session.py new file mode 100644 index 0000000..1765b4f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/network/utils.py b/myenv/Lib/site-packages/pip/_internal/network/utils.py new file mode 100644 index 0000000..bba4c26 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/network/xmlrpc.py b/myenv/Lib/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 0000000..22ec8d2 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/__init__.py b/myenv/Lib/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..612b709c4df0545b70b1d6502b61827d54f567b3 GIT binary patch literal 223 zcmX@j%ge<81lcE5GC=fW5P=Rpvj9b=GgLBYGWxA#C}INgK7-VJtp*a#RxzQ)sYS&x zi8-kisWJX}sV+sCWvMY27F^hHVdI5;7uzrFxUf^lIYq;;_lhPbtkwwJTx;x`Yvki$RQ!%#4hTMa)1J001>d00000 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3cb39db5e122e2a806a6e025442900a6c4624088 GIT binary patch literal 7130 zcmZ`-du$xXd7r)8d%tj7h(Gsiw1^b^bZ&PXV*uEmjwl@hzqp+>r^VR(FfXZ zW^a#2i5c={=kd)qvpe7S`+hV3?D04eq^tiFxzf~#(C=u)NRCQjv)_c!9VDVS5;@V7 z=HeVY&1qA{95-{cjZgC#OWeZBmb5ivi`!V)nzm;gaYx1(cV=91SH>N8XFPFF#vAu$ zd~sjKANOYh@j#|7UdQBZ>0l-l53#a6U7u-)H)I;)jjZlSH)WdR&6$>X3#&WRt(mrX z8!Nlg?U`NiU99X*cVxoxFe`h~yEC2fPFD7&_hcgR2!~7vb2Dd+m)v^dXYO%&Exyl$ z&LGiu3yFU0yJxPnc3~%O#$8EMGc?4bxDINeO0ApK+MsS`z5AK07kATIMW(0Hw!fzB z0F3Lw2PzUVs6}zCQtK51tlp>BlP0n579T(8K;kYjh@)Z%`>_Kbn&xmtg6f4av7}Y3 zzh#L(D>h&+j#OHElf2jn;}45X*n>M+YcrG@D*bNUDVju+zJAcq0#b`XrX?AHgpC?$7plrP$5D61nB3PWA!cnJY9~RPS;c^;l{77m_)*Pov?k3Jo zU?`r!Sxf{uM>PAW3?(LYE+xsDb6m(^@#1VA#@Wy3>2id$W~QSotQF>PeH*_yn<6-a zvvSm=nJ)^{nj=qFkdTFGXz`BcNCsZ#CKjnWEiffybJ^4sYf5CH3AET=#zX@3P>g1T zt2iOT{3LaGmd=?-=13xym1KB_1gV*h(;BC-oDgwRm`%$GoV}JJxhz`=r}>8j36IpM z0o`?@x|W(XPti|kq>A05%`RxUgD?WWMRC(5gw2>2xj|^f7Hp;a33U^#-!Mmc&3i%L zkr6BlskEfouIaC%xofv>JZjVI3HHi~gyu{nGC6TJjiKyLB;K4A()42_5~Lo~YQ985 z$YyggGXe=(UC>JWkbQ(UAxFP|3$o#3lb2wxrAZ-;-@=pUvv`E0uHi{#Nm)_;R{2Ez zp|Yy{eOP^4{l4;v@(+`TzzBpyo(NNN>Z&lAxdGp7@?7fjq?D5J0mH5)^Qn9_O<{Q#9bp&}nD)io@BSFPK##_u6}3@K`g z@+`@2``R|>rC)sWIH1TKltOcWjB}h^!4!n~Jm%W+zKwA)E%YXTVWo{!$n=GzXm(TLmwUohEeqz)79y z95`emmrdW$c;83oL(IzB7 zC3~La0KPJkW(LF7c#0w#Pu+^NQ>7f1s0oDiL?X0p_Y}c`j1x6_5=oNF7>I*K@*Kz= zf}ivOWb^1@U1)x+;w|eR`lj86Djel%`FZqJ&zE0KG zxxklAR!7@LYsV759zLpuj~2uI#nyp^a~t81>YRsfzzV4?x}PdNtoB3G#Qc{y8Q;AfrCbjnJNNojhb`88mc(3)xHxV6kHl}ve5)T7Y=2+{pfzc(S;PB)Nmde)sb#QKu*ywF`Qt4NGwB#suu0tQ|EQ6+?I>-o zAm0Chc2mJj5ie@Jd1si$h;S+iP*d@#F!*LTC55LTgn&l^Q*b(|3yvnk+bogF zVox|FSNg)2F=zsGV*Dj6UlHW63={!yjwvzbpk5vpvSL_|G!zCe=W=N*WMfS3qGrKw z$wbf)Wi3FK2!>7xQ_5t%if=?cngsxfVh1dj;ROl7HzG$M)2tbRTm|H@<7)s%fESus z5JkeE$|2?PR4SRG-SCP)0kV>2m2yPJA}Etd)Xn^k^ixf?OiH4Vs<}WmnFcmSD{cdR z=xbHW&0jN6Z!rTaGS&&&0kY`ABpR@EsMB*D@B%D|*Ww*H4}!yV zL#r^?xHk^;-MggNoBqYs z^xhlGgKO>mC3omyaQAvJwib*n3~vM@OA{Zy`oXJ3sEw4Z$RE1O}6QjY#+M;IAguA}1HlES^){yERwqMpsPfJ@JndYh9xN#_rGEd&>hT zI#?b=?%?8>;_6WN4n}G;r<^ka#8fRZTH!02;kQX3`yqb^JX$aeFi)q{jHT z0BZF}$tAQp_Nfw=s|vuoF4D>AHqo#3E&U}L|G?5o9OUwJ06js&Y9BjM!*j*@{EvnOf*#p1L?|`k2Ar2yYf%4_Mlv{6Es7yD7rF#{d zJ_549y{i^!^g~44iiYMbyOgUjd8ddgS0if;FAf+w4Yn{tP3ehLs7AA$BBN-UMury{ zPr1tP4ZQ}Jo&#n*Q;mdM6M?T)-kR_Q)6YzIIAGoE&(I0c{O3Hn0iW_9lDO+84!s87 z2U`DHXW@Ti1}1JE*DSBRc z9Kbr^Oip>MWi|`PEzO(}@`SPjLJu^+Zt1Za;)!OX$6kntnlmK<$DPRmwFkR>or+FU zQ7*4JuV2A9ok+sGMw!}0)ojDtqQPvoYCdEJG~9xp^e2%08#UQYJMuOxa2uZbwT69P zc)Ci>E$_F!*ShpdvH8Hl*^OxLhQIla?_J-9KlszpUtIf(x7IuQ)Q-NDmSV@?ddG;` zF>?RXXG6t~^F{v!5dDd3)5dpu7tWTQ$ltQ=i>SWH(s$N;hf58Oe`fnSfV@$~)Ah&< zlYZ&xg5v*3l)itze&_&q=j4f@-Ih-qTu}aWw`Hi?@#!-*C~vcOYK07izk$L|7z`&$ zYX9)2fVWhVr7bICHnM}&8@4oO0iH^+{)q%kw`zAFLGkH{wB-ZPzXN|XW-x5gusz_( z)(M>C=?^v*JG@ZQPRcsnt@RWRQ z>%OC^?`YB2zwI=((bm0u_?Lqp4gM;$Dy|>Ds2;yqJpOWV;FV(As|&8h5!K%O&>r}) z=N-?Y_=UZ->;c7PKXTVAd`Q32cnzlBW^mM0n8B?;q1NCE$k-S#ISx$j6g4>r?51l7 zD7+oEm0f?%RG}9XR1!$TXPo0}2m!y7(HS#Poj}}M!9=P?Xy^jNsX{1&tW!L?eMUDF zG67NmA8fO!qiykCeG4swzOWt<14h6}2+1U#0*XsUY3ECjJ%KIc71}|w4{2u-GT1LG zYHm~7V#TIjg|Giz)1C!)$IB|RljCSB*felT(a5d zbydbSU##}ZRnnclfoZ8q81AoM`8+Y)=!{*4LlvQ? z%gQ3E!{L?bYa2w2&_l8209-l8Zgt2my82$4Q83Y*7xYWj2?&U`myAQxaLu8~RcU2c z+P<0|*5DeZ2hne13GRlqYOirc%hSUlmhqWa2m;aES9gKppJA?Q4^ZGkuMW?Ds8*d;UvwNz;? zEIECP-X)jf->*7*=4~Z!aB+O;%<}6>s9*IC%)1_f`0=H~%eD_*P=bA`_u#yXUd(=P zNnRdP_w_4{{c7F7ypN6>Tk23khDhUG=hB$c)T`F@&HKt$FSmR7$V$uVMdjd0b^p*N zf`)Pgo#!UFN9JxWTne<7*|X>H%B!o=D!zYl^{RU0tlBfi+8i4OB7)5K(on+647W=|3)zY+SfyVMPUaq~=)OvSZZQ5Tp)5@_C O_B6yETcDBc@BafkGycW^ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4ae46b05ced891fa6802287101342f63ff627d62 GIT binary patch literal 10154 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 YIu7YQ{}O`a(|+1R^-_-!i4~>(AHTvl=>Px# literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4da144cb04fe1e9130e87a5cd4e319fb32b8cce GIT binary patch literal 25798 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 pOi#As)!deEJSEU6OoP_5Mus`TEO5^V)?bLH literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2083cc5a937e0aae86cb99b4993b35b65dd3d5b1 GIT binary patch literal 1883 zcmZ`)Uu+ab7@yfcw|CdumQqq`igqKl^-Ovd0Z9m;9$+ydkQN@eT(a4_o%Xiff0^0q z(dMc^OoYTpe9{LWNPIHzpl=Wo68ePkWg9S%jV46HgKyQA)ZmNX?A>04;9PEJzCZKr zZ@%w0-~ObkSp;M5$Kl!+GD5#|AsOlRVyy;?uaJpK$i${#;}V8hv;{{jiJ0poTXN)* z9Is_NGoU$`cwv>(6irwYpN;z1kiEL(wXl99Ob`f_2n=n8xP%&k<++;e%~(}!+M^ot>a{whGvA5@2eukB1kCDb;`m1_N~(cJ7otpsgVKpRA1Rdd2AZ$2sT=knS#=D82x*&4h8*Tri>OIi|};%s}Jc<^~iYNEXeqX25! z8m4ru9b-vu;#nU5xzUsp556;lz$^2d3y96lIH?RWQ~Z~pfx12?2i-}87onW(O{|-9 zQ~IP6Zwl>1LCjBXA4YWRk`kziZ&SG5LEKa>3TA3a`B-V-20AC6MGd?Y?LrJU1dPtY zc`*9?tyx?_pMY2c$YXSrsyWyba@z{&;PFndejq<8Ty{toXy+z_k z^W*45PoU^<(exH)8#O{~%6UXne7oSWNSgI5H=m}QACwn}c5zcrXM5oIaM~!>QE(~M zep`-TUCW*Jbgq>NziW)6Qy$psJ&?=PQWgtD?>lXIke(j`ZzHBZXn)$sf9hw%2w zXW@u-{pN*4qQI)b?&NtuWNTG?f!dRLEFavLKrsx(qFjI zxZgi<_e{8D@}E_a>z-~X5Fu0xPva<;UV6&j0i55wTpSf|;^LrutM|Qw(j7Go@|}a3 z;()T8Qj2}ca-YoC10uLA56Z>i%(A9{&+@2Td{fEyM2fDPURBrWHV79DLJkZ1JhWGj zLY~?j)N9ad8RbnY+8%o(SuS*%ACw uv}Z#QvG62~@C5!9y}g?1$9o?346TZMe&gNN{Nagsek7;YWzf^tAlScFToPsg literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12d28b9b6fd98a42b910074d3e3bc13939b0ec16 GIT binary patch literal 1917 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b475ffabd921cf77f0061ec30cb0d2c603eb9b5 GIT binary patch literal 1703 zcmZuxUu+ab7@yfc_y3NzQ1A-D!M4a@xrzj-1W7D^qJ#iJec*Crv%Q^O_qw;c&djx3 zb0`p_CDHH*i81LbK@)t_Xh`7A__7Tc>Y@pW^5EOWVo3DGZ}zw=8fUXJ-#6bk-{0TN z57}%A!I=GiWM+?s(65r|j`UMv^?e|&A`4mAL8Z=$OBi^?QR-?*#d1$|w7Oo>BU*D} z^>`_ck%B0y^>q!dtu%Q9ceql@(rMa?QQeBent(q^RhrI&csgaJKGaH?CN89Zm+B`9 zI82=Mh3&bf1N6qphV59BW@VPT)|;L;d&qPg%0RN2HC&f6W8M}s2KViVsZ-9)Dh)N) ztkW<))j1aq)TuBnQ<#QjGg=WIYlga@b>9kOjEV+xD^Qx=hykU-zj_){xQbfJ1?3pJ zgp)}0RBBTGpJ6F2^@h^f#7O8}v8A@qXUNh%SGy%SueES3-j%PdEv>7u7hwcC$u(J* zYN;*d3%%>-yl!Fnb$Rfc>uUaATWagO(zUgve$cb`HX25|5y$fiMrR-fj6NxxQ_rAz zJd8vHBzbNGu{?O{nW$xZWRI|7EwmQZ8Pvq{sAH)RU-&d?EAd=P-g3Eso}Q-fHJ~?j z>I%}}wp%4)hLTf9PLaL4_mL@y0^&2T0u3&vQUu27sBxV5rkEkZBl9zqI>eqPyit*A z(+$UIMkhs)oCIrZ-sW_SbQ;dd3GiNwES*@$AEsQ`t|@UxdKlSHM)|_}C{!6x$HBD6 z$U;Ba;Wr_i8i1)Nyt-2;V3vT~7q%QVZHHQ&i2r?RlowKA%<-yK%0k_uQ;jNdER6@~6D?hxV7><&^QV>CkhueA1ez927dk}Oczjl1Ila-(uF`Pz}!}{`i7qqxht8= znPBkco1^y<6TkJ3t>m^XjVx^pUYrOrudS-eKx#48j-lM({p|MT?DnO(AG5`kJh`7A zTh5QI^bM{I?``X7XxA!IhjNR@o~S4{{g~P+khdrFNgTiZ zdK~CG+Vhj!)jOjY=0Y}%ODq6J*Z`ahW1;QgOTkxP%b_z%ZCBZm4p>qEcT+tH2|+N$w^N)IF== z(1Yv+VC4hO&%)GJF~$#2?g2{vf;K-w2OpuM50gWSo9-uvmXkx*ChjIjEN#^ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f0d22e1cf3385d7ea997b4955ef6f65cc3f36b33 GIT binary patch literal 2042 zcmZuyUu+ab7@ys}-MhWpJ7{Tv{$)d3@UUJ{u+&mbY=QU(0Z|{g9A5Trr|q_TyXVYa z%QaU8VgwQm;RzCB(pQ5I_=eFCsZYk2ZNN|$Oi0wIZx>pF!56>T?Y3B%&CbmC%{Skl z`F`Kb56NU4L7V)(d;Efk&@YS#TViFhbQUI;k&blEMA=~EvK-L7$(Mwzz%ia+MoMB< zEJ<0(rz2*x6wAgq#3PI*8bhUPBaUC?0xFx(MXcx&7WF8MG5BRHV5J3?N8@_@!$>w+ z<{N(V zj0B$heH3~D{-tjrp3A7lpXOgfXE_-;t3nfOeO=S}nsAj5m>hE8^n<1gHS{UcBcBQ3 z`OHRY+yt|-uGJ!;#Pf(lG6E@iod}RMp~in9hL&bU8S==!kOQ_ihP$4Wr-|lpb#1H( zAFOJ83w0sKM-f}^MkGBeJr;R#ZC5zcr5dV9S69x2LnpwaS?PUgy>|B zfu^}G^em#>G|%>M@O}Jl$ahkqcJQDDVhTw#@gxtTHMAE02~=IRkdDoK;v-76Ev&w3 zQ3v339KTlqB$Tk_s1*h%)fva?v4h9d{{G!+fdNo06T1j-%EaR;wBtTZs9M&Xan-Ta z>2Zur)fiQ2rO3oaE2dfXcRCsMC}<tB4#_ zd+1C6e&!I?4M!`OSRJ*AI@6#&Rjz_Z6M)`~W0%Zynj;JwGlxes%d(vnr&o9NP_=-I zT7_aiv>>FFdQf#6Qy$Cy0FEU{pRys;pU62^- zSbT&55vtTLb}#N9d)}{Z4pSz|k^}9pb1)wn%)LV~p*hXOr*Q75g%1#83g_H8_nP~q zdt>38d)@s?T{yFF*1h3=oqNvI3R=EQw4!57YPnJsTT{8iMj=NH2R~DW+XF5WnkyUS zzPw>Mn7|FyXO}VYQ%C#!5c>k3!ay_Ss@D|6{@(@C3LYx((?6g)jp|KE>2womH}cL@odjhEsNMU?7W-j0;i#eEm{T^zbF zbVa-}b1SjSjqLh+c?)XV_5ekb?e{irzN}nQ>O9vxaKCBmVpH?7EH*SQDQIi^!!}Ui zCNuxk6_9-NFu6i5w5BG}m!j|Ek;(Tia7Uw$|e}1RP_`L$-^ohd*(fPem#^1kfq(k_wor6A| z@}dlefKajt40w`Lg(qN)uq()GgM?-BQ}BG)1k$lmHhBhcO4vmofU(mT3-g+(IEG0x zYd{W=EstU6Z~*vN-UnVjPuKBV@mF2Hy{*;N-|gmkyG c*Q0C}L&}D_%w};UrOp@6oLo)-MY_Pkzf5i#0{{R3 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc94dc3a76cf09bba5c792b10b1fa5e43691885d GIT binary patch literal 3872 zcmb_fTWlN06`kdBm%GcSL{Tp%?%H}-tZe%IQVkbYYzJ*r8Lg3zs0s**JCZ0bxx~!U zvIweB(iD}@0G7WjATS^U1**dSaQ_k%2$1|01q!kf;O*8$R5SsaKO$D)B452TONz3P zqn(J*&(kgM}k>F_)QA5Ul z9P0tq2;i8Z;MlZmsPFkF+6-;CB?v7c`1adMUeD=}5r!V^+$I8cQTSrJz1w!BcBofy zvsc83L$COPknH%9EoVIGbNypEYP-sfqMfq}88a!kA*+ZBXGOAQ1N{LH}*hW6e|J^R7688 zhYN%w;waQyp5h83{e{0-|Fb7_>KN-H}x~NnU3?H`_ zpeJY_pa-7L*OipZN3Qcj(i;b%=L+7b!A83R^lPk=m%JJ8{W7OfeOL<(d>4@$M zTDhZH?;YWYK5i9o`N;m-pO+}sj~%;>$&>|>ZRvE@nt!_-+h?dHWx{sv%4}v#+_o8P zUz?uBSvz+dkKxpj9Fx`c>XYgpsvp;WUH!27kzRYJ_HOm#>K`Xh znVG3fx=1pxlv|m}`~oiAo*c_fP12l=j}92}Wsm|xT5 zQ>C0~9QSoF9HExoZ5MOy5sdZ?xz+En{~JM+8z!~9>>)7s_BUL1u_2H=^R{W0| z$l*RL+3fy!nhP|gR#}mnelMT}(Po~&QwyhtpQGqlV@9ch0JHJ~Y4QIyug&?MO*_YK zZ(o{ga{iwBickR-W?bCd>rIqY%9nq}nMk*1v0lvBvkWmz=I#S1Xt1Um9T}v{aXm|L#>R$Tu=MGiiD^n3|B~@q`QmO<-XZ|g*-SwP zJaem*b{%Z_#p^@aS<9k84A4TTogC2#upJ`ox{``3Q;Wd(+>1#B>fFG5h7`cw6=4Y1 zXHnPBw&nWgtXu&w-_3fnQy?sM?SZkFr!$l>Bg3t(lLUzF0U(96hoLmzdLtCDAxS?o zhL1jk44~7F!tvF!zxm11wZ8>pPVD;|XEuhar><8cuP=*^65NXRuTMU?ycr#>DWl8c zGbM62vJzRPTgm|^8vi_?EuZ~mdG*S>zu1lpZFFoXbtIe|c7{)E9C^}S7lrWIx`@K`Uuuu3<~V_UkokmjeNQL99(e9{K=8`-hSjk6sY(s(qrLK14)ar;o~R}A#w%w zU@y?b(pj{qd^he47_sTQ0#eZ)eVNM<@ZM!`*SRn3M^It`WhiaFL59- zbRYJ7`fvlbjh9SH)0pdfj6iqkpg{%GIxS_{gJ-&AnjRC_Dg6cvN9J=BAJx4#4dsD3 z#YaktLVUDy1ssm8Wxs9GxX8W~j5qfC;Zi*fOV#WXPkQ0oFXovfVQx zNoK8ip_@H7-4I)S8bTn2m`{$eX4!iH@pU$B8JH;x1nmBr$)m9Ly}adJJ2?-QKY)*J zK?cm#joME+O2X+Ha60>(?pJqIsa;V{}HAukUoCw)lPRp0;*&Gj?cMdX_lh zw0Aj)UZ*YL^z=Cg4($ZxPHkC($zr`Pjw7wVruO}Jrvt@$zCxnf?S$fY$5+PJ&TobK zo`u@)j;)MUd(MB@u@$=P#JgS`fDTo)uigQsU%yCr+Sinw{ll)&bK*zQD;Ip9D1#t= za^b}2Y3b7;0pw3l2~0jMGWnb|`olo7gT$bd8?b1K)4R?z*F$3P+_St_stSQ<%zLOR=`@Rt z>9psBBDIMZ|N7Y)+136YakBUBU%8aGjFO2jlPk~!M2+abA%ln_2!BTr`1=eU`U0K) z2m0w}=*G6%yWI6u?X9W3YZo@v{w29Cw+S()y>pe`OV&k@w>!G(5|nir$?Ed}lZLv5 zqfRioDz03tiy&`D+UgRNU=obf158p-yo(Q^GEGB??s||(AtXnZv+un9Jj}Fn!$Pm4 zh3g`e+wso21SJg8)=>{INkNI8wfMas)m5g!Q?+|dymzr4WE#9PqxCS8B8?$;qM-4U F_#b{w==uNv literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py b/myenv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py new file mode 100644 index 0000000..0ed8dd2 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/build/metadata.py b/myenv/Lib/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 0000000..c66ac35 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py b/myenv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 0000000..27c69f0 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py b/myenv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 0000000..c01dd1c --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/build/wheel.py b/myenv/Lib/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 0000000..064811a --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py b/myenv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 0000000..719d69d --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py b/myenv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 0000000..3ee2a70 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/check.py b/myenv/Lib/site-packages/pip/_internal/operations/check.py new file mode 100644 index 0000000..4b6fbc4 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/freeze.py b/myenv/Lib/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 0000000..bb1039f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/install/__init__.py b/myenv/Lib/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 0000000..24d6a5d --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/myenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63c25861915d9b4b78d62dbf55062868a92973d0 GIT binary patch literal 292 zcmXv~u}T9$5Z#SILm>aKg-t+npq+?~VkKJH$igzY8{%@C-DP(To}F6w3AVO&+C_x) zVzbw#^#{aY?;a+vn0b$ZnfKw2rGlvQS7AzPhwGW__)FWmgFJXj!&^_(b`GydM$%S|(i)Q8TeJY20{M@7S928z7 zKht>RC zNFC5=P?@plAV{NqwltTCG?hV!fvx79{r?mPZaq0_;`-(r-)of8pBANU*G}>e^BrJC literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1bf17c7ef286e473ab5f001817b3c85821dc49d2 GIT binary patch literal 1824 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≧JO3U` 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py b/myenv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py new file mode 100644 index 0000000..9aaa699 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/install/wheel.py b/myenv/Lib/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 0000000..aef42aa --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/operations/prepare.py b/myenv/Lib/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 0000000..e6aa344 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/pyproject.py b/myenv/Lib/site-packages/pip/_internal/pyproject.py new file mode 100644 index 0000000..2a9cad4 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/req/__init__.py b/myenv/Lib/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 0000000..422d851 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e729e59fd7d81e3e91e38bf19df45fc352b0ff61 GIT binary patch literal 3471 zcmahMS!^4}b(ZHY5AhI5$vW({C0U|mOSS{Yv18XUDxdWMSk6ZX28$JUC@sC*WoDPw zQ3_QJ7nO?!mOokMl`fChAD@Z~Tqo7p1XHpE%4#kmo zrko5Nb1JU9JLS%MQl7jw<;}AxHqWIvYtE(k^8S<`aJS@90{LJnXyIO^EgwpSESy!s z`A90lpeZDAKVwo+2f|Elr)|tek7IYh9tx>A@Hi#kUB5lzKqrwDxQ3+Q9Y>w#PQ62^ zgw%#TIJ5<5DTLja!yP!3byzebF%g#qky? z0bd7vA<&etWGB)5D{EjgcLOimIFF{6mOo^+esNvvWb8X7TOXJy?m*$V|j z)>Kh3*$Mns5vv(&x-S(A3WlXVS(UJA2#PlKIXwgziWWqoV}Ss#OmH4%bvk-l)eTWm zE^Z9NXxk=o0vkye34#z3pp73IGb-1Y2~+YFtWu%+C0OUl5^WwV0hT5>8`yd$AS(zX z>Jcf&>u@93B{7F#bk31JuNDD7N;+$c$|Rw>GHefd*xr1 z->-bX{9gIjeC4~9tL690ze(>?#7R*o5HVxOm&J5`4y#wvXXVMXE*p4vLCjnhr?8$b z$b~UMRt-$xGREL2#snZ`Ll8y_b0h+attJ78?uF)i=&3Jw?KGkHZq1khSk$}}(?hUP zBxSNhb!;zq?UbTTii)6FfuWl&qG{km z(^?*zo&v#HdDe{0h(s0i43P^oIx?1@n86}M27E-IS8H;Gxr~-C$O_J|AlwG(`P7@& z{{XvNK}Pd}a*Z5fGt%C0+f)hJS;y`d*b+-#GCVd%jx$e5{y(|PI5B+UOQXP_KA;2N9s^dS`mY9;GsEwEwrRWyTaxnI>sZK%&A z+4-W62WXT69$&#^&X|_fDPC52V;b{Tmgf~HJEJ~}b;!{8Nz7-UazHi^vylAwY4HkO zB55=7*;+qJy0^IFceu?&1$AAr^%}6x{T*^LW9(FLw?BXW>}xrii!kxkFE}1EXM|4I8kE9a=PY0gCpf|U(FQ> z?yZKq*TQ|3a9=gHqq?P+{&jD!CXZBij8(S|)2LXC&f}fV z5Bl22dG7}=`vL#Z(K)`$^t(cP$cjGNkXQG3 z%Z;*73+pdG>Pxn_Sr0rUk8 ztXU-MW_qg8M7bkbi4NDCKs|N0Eftq1%3Zt4@m-bB?%T$_OXbkPiu=&I8>VaF15A9= z3ZS0GdTveJJXdoA4le0$Uw-NO?wXfUtW9y0@}XdSdE)xHnx9eu)V-}1q*xn@b=E=@ a3!`wX7NJ-ad3wVQu%sBAo$ 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 bqO82@u3c0Yp2~r`5^b{9-?Jgbgw_86*ea|M literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..59996897aa84bd2012358f6ab080b4bb56be5b5c GIT binary patch literal 22149 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 C`wVmd literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..750928468fc067ef0d0cbf95443e6083527c741f GIT binary patch literal 38501 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 UrUQH(ya9bGaeQipkL^AG56Me!xc~qF literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9dc2b96a152e100819537ea4e851c74226f8110b GIT binary patch literal 5509 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 qe5iI_MY?Q4&+s)^*e<0zkV|RD6 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/req/constructors.py b/myenv/Lib/site-packages/pip/_internal/req/constructors.py new file mode 100644 index 0000000..56a964f --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/req/constructors.py @@ -0,0 +1,560 @@ +"""Backing implementation for InstallRequirement's various constructors + +The idea here is that these formed a major chunk of InstallRequirement's size +so, moving them and support code dedicated to them outside of that class +helps creates for better understandability for the rest of the code. + +These are meant to be used elsewhere within pip to create instances of +InstallRequirement. +""" + +import copy +import logging +import os +import re +from dataclasses import dataclass +from typing import Collection, Dict, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement +from pip._vendor.packaging.specifiers import Specifier + +from pip._internal.exceptions import InstallationError +from pip._internal.models.index import PyPI, TestPyPI +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_file import ParsedRequirement +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import is_installable_dir +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import is_url, vcs + +__all__ = [ + "install_req_from_editable", + "install_req_from_line", + "parse_editable", +] + +logger = logging.getLogger(__name__) +operators = Specifier._operators.keys() + + +def _strip_extras(path: str) -> 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 = "[{}]".format(",".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/myenv/Lib/site-packages/pip/_internal/req/req_file.py b/myenv/Lib/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 0000000..eb2a1f6 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,574 @@ +""" +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, [{os.path.abspath(filename): None}] + ) + + def _parse_and_recurse( + self, + filename: str, + constraint: bool, + parsed_files_stack: List[Dict[str, Optional[str]]], + ) -> 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 + # and then abspath so that we can identify recursive references + req_path = os.path.abspath( + os.path.join( + os.path.dirname(filename), + req_path, + ) + ) + parsed_files = parsed_files_stack[0] + if req_path in parsed_files: + initial_file = parsed_files[req_path] + tail = ( + f" and again in {initial_file}" + if initial_file is not None + else "" + ) + raise RequirementsFileParseError( + f"{req_path} recursively references itself in {filename}{tail}" + ) + # Keeping a track where was each file first included in + new_parsed_files = parsed_files.copy() + new_parsed_files[req_path] = filename + yield from self._parse_and_recurse( + req_path, nested_constraint, [new_parsed_files, *parsed_files_stack] + ) + 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/myenv/Lib/site-packages/pip/_internal/req/req_install.py b/myenv/Lib/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 0000000..834bc51 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/req/req_set.py b/myenv/Lib/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 0000000..ec7a6e0 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/req/req_uninstall.py b/myenv/Lib/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 0000000..26df208 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/resolution/__init__.py b/myenv/Lib/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..969b49dcdc82e2c964830fa97acadc71ba006151 GIT binary patch literal 223 zcmX@j%ge<81lcE5GC=fW5P=Rpvj9b=GgLBYGWxA#C}INgK7-VJtp*a#RxzQ)sYS&x zi8-kisWJX}sV+sCWvMY27F^hHVdI5;7uzrFxUf^K! s(~k#=W|qXq>lIYq;;_lhPbtkwwJTx;x`Yvki$RQ!%#4hTMa)1J00W6f5C8xG literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4ceb45c706ff7f4e1d1d0801add8e8009bf84e5c GIT binary patch literal 1211 zcma)5&1>976ra)8YB#n+B%vr)Gfv&*dd`8ArSKF*%sE<&S*DX zpAr*D{sUioHMz96mV)o47cIS*ff7UMp*JU+kZa!4u1i9E$bjC*Z$?kQ`Msw=i$X{LKiIaVwO$vNy6kOcOt9 zaCK=dkvVSPfmS;d5JQq9I`&3-7xE?*I$PE-=r3b%z<@bCV2&1Wq-GGI0I3B!SX&m7 zGMq|af`$2TcgqMYMD1>+VXKjEeF=9!rcnoks){ttJpnDLCYn3Y-1THT%Tkd;;N9B+ zh@`RvCTk*C(sMfT^&S zQSrO`CF<;Znedx=xa+%d7m|*9E8KKtn8Rn8-`w@LLAqI(EqY;+gTO8<3KF1AEm_<| zJr=UAs+3p<_AbAv(83TML1z6?H22vHi(S0>*Vt@f&-M{u^k&PG*t6j%5cob4i7`AU zE~05@;sc6FPDxejb#V!un%IUMS(o$T6J0MA0f@cXw>X}EsH}LI%6^Duy-`)R=Oum& zo~LS_7pFlxqIksfT5UfX>XhBwDE&!wvTtI3S|f0Beh7{hWA$G3;}^75GA&E4H!dhE?`C1L zEoeFhyiAPL47PIN|5jpyTJ)T$G~hmU{uyjic_F3CT&U@Hf5h7&?Sv@s;BGVYVG?i9 z410N?+1FwgF`9X~gyvM|oIhpPd+hqZZ252Y)yd5Kv1vd4v>2c7)vguBCq?5%VcdA8 TYge>_O~0yD`P_4crmX!M{If(H literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/base.py b/myenv/Lib/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 0000000..42dade1 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/resolution/base.py @@ -0,0 +1,20 @@ +from typing import Callable, List, Optional + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet + +InstallRequirementProvider = Callable[ + [str, Optional[InstallRequirement]], InstallRequirement +] + + +class BaseResolver: + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py b/myenv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..700b38f3c8a9fb300c401f98277944467ed20df9 GIT binary patch literal 230 zcmX@j%ge<81lcE5GC=fW5P=Rpvj9b=GgLBYGWxA#C}INgK7-VJZ2}U`RxzQ)sYS&x zi8-kisWJX}sV+sCWvMY27F^hHVdI5;7uzrFxUf^K! z)6YpwPfV`Vj|WO-mc+;F6;$5hu*uC&Da}c>D`EvYh!Kd3L5z>gjEsy$%s>_ZG6PAw literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b330d48490627cb826bec840271ffc3aecd3868a GIT binary patch literal 22605 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 NTVDJnM{hRv{|97e?`;48 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py b/myenv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 0000000..1dd0d70 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85aa1b5599c3f17ab0b901f9f7cf8f8b428d56fd GIT binary patch literal 234 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 OeXE78+XM)A{Qm$>%}Ol* literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cfc312a79b3a080dba4f9f95cc3f71c729fcbaa2 GIT binary patch literal 29434 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5bc70479493b8a2e2fec662c434f9ae3c334a8f1 GIT binary patch literal 32545 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 DjHJ=H literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48069eb8c30e1e40153e7b0144ecfe88e4e06c2c GIT binary patch literal 6819 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 a_PzR*H8=D;+$&qS=EdPp;A)lAx%)p4N4Gfu literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..26cbcb14c330e68251e1b128a4bbd792afa2679c GIT binary patch literal 5066 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0a42399e99bc45e4194b1c64a4fd33ee5ea05f9 GIT binary patch literal 12340 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 Gbp99oagfRY literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py new file mode 100644 index 0000000..0f31dc9 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py @@ -0,0 +1,139 @@ +from dataclasses import dataclass +from typing import FrozenSet, Iterable, Optional, Tuple + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName +from pip._vendor.packaging.version import Version + +from pip._internal.models.link import Link, links_equivalent +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.hashes import Hashes + +CandidateLookup = Tuple[Optional["Candidate"], Optional[InstallRequirement]] + + +def format_name(project: NormalizedName, extras: FrozenSet[NormalizedName]) -> 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/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 0000000..6617644 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,574 @@ +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, + InvalidInstalledPackage, + 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 + + try: + for r in self.dist.iter_dependencies(): + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + except InvalidRequirement as exc: + raise InvalidInstalledPackage(dist=self.dist, invalid_exc=exc) from None + + 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/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 0000000..dc6e2e1 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,823 @@ +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 InvalidVersion, Version +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + InvalidInstalledPackage, + 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 + + try: + # 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 + except InvalidVersion as e: + raise InvalidInstalledPackage(dist=installed_dist, invalid_exc=e) + + 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/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 0000000..a1d57e0 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 0000000..fb0dd85 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 0000000..0594569 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 0000000..b04f41b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 0000000..c12beef --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/self_outdated_check.py b/myenv/Lib/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 0000000..f9a91af --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/__init__.py b/myenv/Lib/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad785dfb2d8fc3a9987159b119a5da6b784f3474 GIT binary patch literal 218 zcmX@j%ge<81lcE5GC=fW5P=Rpvj9b=GgLBYGWxA#C}INgK7-VJEdvtHRxzQ)sYS&x zi8-kisWJX}sV+sCWvMY27F^hHVdI5;7uzrFxUf^I%j|U25 nmc+;F6;$5hu*uC&Da}c>D`EvYf)R*|L5z>gjEsy$%s>_ZbizdF literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..045cee0a893785b4ce0dcdaa061d22a20cbd985f GIT binary patch literal 4553 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..59d54fc3f6568818745ac004a63f1b2df4d9e2b9 GIT binary patch literal 2433 zcma)8O>7fK6y9C0z0PioT_{je+Af4Zt)?*oq)1g-RRVXw^gC%-TtmriCYY-u%3I zGxL4#z4Z^Nlq!Hse1EDqpAdv!*q|j!v$J&_I(Gz17!fSdk{oeFvLhnpI&ovP@tZCy&9o;6Vcq zsc9*jn)y>5F4|N#Jqzm-8P z_LM0qfad~1Rv9_Ybhkc%v2VKt?m56Tpt_GJ?N*U%=@@Pta68>1o)0$Q6^#X$=&)ID zI)iKKW)ZmsZ1t$WF)jwOVklp+X#l$2cTfOVFR>Sg3OwCKB^)NArM(DIj|j?Yu>5HpC&A( zd6QwcISkF5u%R7V*G@LHleOMuyr%Wl<-RRg5JH7`s037*yU}3J;F$ddo!7yv%1~oF zKxUDUfT`=t+q!-_qU zTW}Oa0B{@F{{nFLj#=>)bj3Mcv8u>?SH*8Z8U;9P$zSSrtycb{jDEKV(^A=lau-s-#A_my-{y{oQ5 zyiC@Ljh&>*io@9hp<)=8XBq~71b=^+2&UN=l(3>2YEbcejOa^GSapbyiP3=YLLbVb zp65hC&%>C#=mBILGv!4j*%$pS_=I%B91Bs(h}n#ZqWDrui1JoO5Y?Xq^=IMeufo~Q zgeZQzba7JvRlB&w)XStM=4vnnYWWmbPdc~Q=;d))92A#^HU*~dUx@U|`7J))JlH1Y Umds57RL#17{%iYp*5!Bm2kaj;$p8QV literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7ea61066326608b6849561fd14e79baf31f1b63 GIT binary patch literal 2930 zcmaJ@U2Gf25#IaZ-;oq)QI0GbF3y%}n~f|AcH_9R8=$dbRIMtyrX9rufy0S+B#%1X z5xYxM6r@x!0z?7=NKOh!MO!pzUu-x)(zg@^g663x`a)U(2WX6IY}H5yeA(9B;3OIiq_fAT?xB0C@36#=1jWS}fE1Vglitmttm zD|uYb${zP+eZVE#KO4vf1XM(Z{97R#6p<;FyE{hrxT)L+yPUFN!)HbcqTzpA&PI)Z z*#+ZRK{kRgj+?&niMHJS-U!Wz2;p8+ED!FVZ-19hK0BA~aS|b9Bn$=YhoMEFMZLXX z$39RfC`Q-YzHCnk8L{69*~75&(6e^Rsb}Ymc;_s00#OC@d`;uf%xQ$?1RMhixjgb5 zJKbC&+gBHpJ@Y@#&}yNe(vnV9!zvU^OjOI+`7|A>UaixT>!`P2!Ezm<>W-mSY@HTd zJgXQMq1c+PQoc0&lQoPOHXB( zADgs_o&0_;Wf(}%wl6`qjv$f!*RkdQVFA}k5$CUWE&nv-s#n&4dwaaLLs z1hgPzP*R@6T>Lt?6dBKGS8t}TzBZZ3OeAF{YlPS=JU&}-F?|hV7qcT3t1_(JG9AOk z!&Pj9x95i8Xf}pRi;^Pdx7hn8+^VX6O@Un=&D|gnoSbf(b7n5>m}A(wW#$?mG(K+p zzVT`EoyI4PKd8;OnztLDHvX79YwOdxR>69nS~GfXwr)DNaue2cj#$(@Q_=G?deI~~ z@Fk^L4mGi(+bQk^N#)&H2v_`v_^^mts5)?`0V@DM+E-OIs-{ZaT{OvqGqC=H@i#b(crN_NgO{N;0FjbgwGGvT z8l+X-w(DxqRrQ))-#N`F)-3`y(iyK}N7bp4>3D}$VSl}II@QH$UUyDWb=p+1sY5XM zNtu$?Cev5a6BFsF`P4TwE~-A*#0+;#l4QgyI-OF?M3*qxt(XoArnPHh z>B)(k_z>iY`3i*Ul=%tuAkUY#U4VudU-Dao2cF5EL}2FxNvXXm77P|FShmUa2(KjY z7e|3(UQAwh3_i#m=$6n|M^G^KE?&Fzc|d&}jjc|tOs!r2)!E-%{Kdr&yFWU1?^yHb z`OWCd%i`n2;q?o5E^NH|{-v$N$!6l@a`16bSq-iP*Sg=0w7OBGXDR(v6vew&Yb&+Y zH&@==Fg}kB{HwQby>_RzLEm58>V2`<`{MEsTfw%hgcAK5*Eg;-PW-gde{Hin(}-lY z!70GUr`+$SVdz+32gg_to5Zc+yvc&5lXnfvDKfvw;g;n0!^AGwltFzRabRszc^B_H zGYFNr^a0u{y9Hq$d?*8C93(?n5ErBm#rr!@1uuj&$pj40J^-?K5IT4oLYDU^0Q|F1 z$9)31h4c{2>o_Un<6Qm(?{+l_KM$m>oj2CaFNj9XIjVJxU=Gr+KqI5jK^pz&Q2$nZ zpcx<7iYJ@#bO|ZF)^7`vm7SnZHtKxO^WlrDlMG3z%M7Z@-*4c0-9#Hc}-)9 z-2)GITqXDvHy^OwVi9tNInXhQ)Cu#`dWFw;+k*)xQ!o*Nw|)X-P0WIt=IFB~O!~Pt z%*fNOYkN->n1K3`;9c{sG>h!~t$>#fiVgmiAQsw5U>rh%~@*{$$>2? z(UcNv#Rt-{hkYlu`i7c)LtB04oA8rgfU^0Ca6|Y)^7)j9hk9BbR|ncWb+*l~jC=e^ zD7<`mrFYv0vS0S2*vL{C)Wcn?Ln}jD%JHUh{DW_ADyJVPQ+G2TVq?{ W{|W!O_F1iQ?e))o_Ex})!~X!b_`){; literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e00dccc2b6347dff55e8a6657909eae5443fb2cd GIT binary patch literal 6373 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 LePDy0%94KrhY{or literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7fc39e7a52c178bbc14b4bf840e08ec06651a8ac GIT binary patch literal 707 zcmZuvO=uHA6rS0gO_sWmLVM6tSM0$cCL(wd_0rUntq1WE7M98G*xhEc8)heIBU^|f zNKblek2xy6)LTX9UA%1QK^Qy;p1eh)ci*fDg81OQ@4Ywg&HLu(W2LfyK-wQxgCBrj zRWKKG=1i}EbAWu*L_YSl2sg2>GtDQU255=tk4?Y)oHWTmtC~-0_Y!XJ1T40@Vb|WF zu}E!^*j~WAwk-l?`&2L+YDCy!wS{kL%%&s*M!7UPNh|`X`*a{noQWQfJ$=SQfdQ)G zX&=l15@7$xwl??v;(M~-Iko-Xiw>3_W$%5bI~&1UbBOwUNWfzU%##hX=Kn(7eh z0Fo$A8X^JCRfDSzPLxs8xw>9yY=wOmrz&A9`K8#e-EtnKjHeEb*e-J(#H_)g%*jXj zasDG)ZGn!k5$M6^ZSE~lOd+tld{SloB+hb<=!1-sUzUYl;Q)PXy% zyJ0LCk7-ozi7-m*bFQ`SKrR(T-7s|{;LTkT(3n?%PZ>154rYixTgxvu_BTFRD`RWr z%(^sOpJfhLN5&{Uv#t);znoiqb#wntPA*KL2UQJOc3nU5T$ihlBX!^)Nh?XBV)r+Q zpNBNJ)S7v_llZ-e-Q`OVs&^;`Pjrm&cMW4QEg`%(DG_|}(3>ED*Ov=8UMt|F@lz#> G9e)E*zqOSB literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..463d729d10e641fe89e4e6377626639ed87105de GIT binary patch literal 4214 zcmai1U5pdg6}~ebkH`P)FT0S1;V)ody=ftkt{@Ep0;pgjLX_0nXf*4&_Rcb%ncf-i z;>9ZgLJCNcvUw>hwUv12Ln^35->51@NUf?=eeo73+bL41nn=x?$x^9(>p3&_*dbAS zE#JBK%(?g6`<>tUV>+E6&@TL8`^=>bA^*Thr)ArNHGw1KCV7Wwq)0SQ;|;FJ`A@#c z!!u$;szOnyMvKv^SQM+VVyr3^B@TH7BVJ7u6aF}AB&(@n8pdKV!;=$4i(Mm{M6M}$At1%!r)|&@6nN-BnI8q3mZUM7^+zc>prz@cmZ4E9`jjk;2K*81 zRL*F9*P_KCZKKwIO(+g)Jp2ZJ%4>tLZYbm&4oB<5(FlwN!+lcP=ryspzRu@fS|}ur z$W=?L8B}&>R9Dukwn3}ZbRF5XEJHUd@RX^kP6G#3ow_`)G84#-tWH}sSJtS_Xi0T- z%XIRIFY)4qT-1vkG3%am)<(K&c;b0_(LHt66VBId>P6o%ft=&KsI4-G!XT+AbCfwi zRg{JFvEy%@JAU-Y`BP^LlX3~S>@-lE-_}y_xJf7h#gQUk=W@I^^pz?M_;GBhA z#FG@oRI5}`yo90zw}o*^QGQfYjo{5M$Qo|^uR3%`C#T+V;51XJK`+v&vnD;p^f@}! zyw$wh{8jVQl@FTtn!lD;uB=>be%k!a)OQVaT2*YOmR$XUI#sPxb8hOiK0W2=E*-bk z(gn3bohe(lCluXuDFZ|%YOZcL6FunV?K(?>biZ2%11AdIHL@y545vQb8&WK$S9I7x zab~Rfwlcg}l{yYc@gz_Mtym1eFY5;Atx7!+)JRRs6OiHwIP*kC-5N7XBJA905)9CC z*M1M(P0|pqjJTb5yC6ma!-{#92h+h1MV)4wU!*Pn6>e3mX9Vdp%Rqs)!W()=T7^XJmoa^=>=yCe4w+~5D% z;3KKvThZ6N2@T9w_;ncE?16K(tuP>mP3uvp#@~r_f*eQO(1ax6MDRqdwjyjmto8g z+{f3zux>i8Y8Xm;D%PCl22G}er5 zef?={|L+h^nt0$UNwdkeX`TMUHI*#6wqfLrrxYqx-JGcW4); z2w99aNY^EQLNxwoe3=I~jyk*+F(I|VjMJjfM|_$HG!ABh7Ay0W=%T1ev!VOK+1gEu zUn33i7`fe^cVsTc8c~*X;~l<6tn=n7=Z3C5i-G)w)`+=baL^KWl3h!KIG<7xl#|r3 zDZ|v%ac9U*7j?(QgjKGY5Q#DG=x#lqNT3Tc$X%8>>5p-a`3Qo4n=Yf>n7ExgL**I- z|8{nppQ!^$cfP)-Jfk|{PScc{-BW0J`Ry62W@z#>l~uW9VLo-K>_AGTW{Kw8rwOg# zn@4hL5N_Zmmia%91*uv^<2NDm&e8BNU%NV9rY@IM6K@mqnfOn!M2F#IaPOHAxHz4w3w{>yX|!3QjIaVeJBRdtbjV; z@E`@)ftO+;2Kd8!p!i_xUT^9i`>0i|s-`xMxlBe!!^5NQ$`-52uyHc^pK%*<`rUsZAfQcq+x>Kq-SPB7_nrt&`PS@aKlxou;CP1aIz+YNi z*p2GCv?$N(h5|Me#4gj8}GwPgf)tFoYh$}R|u={Nt%+FWwrNzAg7ciQZY*@g+ zWT$4^7K0Py7sigrwgpGPny)8d0TduDzi|AAR;^=J0qCfJ7eHV1y$NvkIYNNLgXI_A zIM%%>8YwtT*{Z>n!M0~y*LEf+CMvo+Q=86%b|&n)txjMKY3P1HI1HNP{g()tf*`rbEkdxnGSuL%3^e%J-gUr@tr1oqKjv<79QkmQ0O{zL zk$Eo16)+K@ZK*EQlYIUaFFL0h5ZDs|QE^=6V6X;*337e>P=%WGqRn1k7z<;RmOo@z zCDm|V&xfxWta9+!|0Ms0Du4*<#lLUKucXGVA77eWO%64aTW-B_PF>E*Nx<8c?fXDD|>!C+t+&-f&Nit(2?XKKuzyDeu?Cu zY(T_s0W66w7VI#*JqUm2K6G&PNs=92KHto2`BSFwb9(3OgO?BeE_%Q6+sw+#h07;e zB1x=!IJmnxu;-Kg&AwNf(s!Pw2A+vzWb?BK={x*%=twIWizizBBt5d4+S7_gV3Hu| z(U9jo?&;8I$ke}@Dg;d98-~QoXIih3Z2w0yH)fu-b+8r%U91ryD_%bFEJLL1lgzeT zCmv+>Hl@8#A$)M=%9*8|54V5szWQh3WIO#A3ZMo2(kkReyqKbBR!LD9*dSp(o}yc~ zA8}qBxIjDFnmJhxifIr`k(SbH2z{4=HGK7!4hU;SQ2H!h9 z)lgPZRMWKF;NuLwcp_k>UIactg4zg+9$yJBR!P#K;3MgE_9n2Pt2l$uw;~+JeZ}*f zuqF{M`&W|v8+r8+dG!l2@de309o^L=!_P&Ii!YyePTsoPtm>|i4r2{L8 z4Xva|&x zf}MOp&$IqJU+w<|(6bNr|FJS%0x4r<5Csw(JBj;>59?0(MfVshu`ph#XG5m3T7$ zx_43{nM_n8K;)N1N*^R6D69YhlEQkBpVFd0(8m^ixrCySa=$V=Hc zXZl_v>5MXuZ{(*7rsujsa9VqtWKB1))|&fQX_Ydd$GxfK?*R1`B`qUr1#ymKVam>@ zRnse5s&vWZ@=^|)E`qf=l21G6sg2Ok(ou9l^rvv z%xYBA8lcD7e2Z$-x-}j(&Lme#j^kx#d0Vzczko*qY3qSotCWKs_DAeM5*!_0px-+e z{nYFH%85R=+1gE?->`f>#*4bmAMqn-+i6kqR*9YMXw7Zz|F`g{@j493pFQy=VcWia z6V-7O-D6I?O~lq~QPOw3=Q0PrA0tn5q~&XgC0!+l?37)zv=WYt5^GCRtwu~8w@}=@ zn7CHR&tswuNCVA67|;qZEh@zUf`2myIiACLZ9vtClAjq}WCyMcn9Ny|xw7b2=cej4 zP#_DJO=i$!&cyvDKQCn!S<T9dgq2OcQB_x~rmxN>h?pBvM*a z?ntTJ0?yB;-c+Vis-oc+icyg@o8xBzPJV3_&9O;48&c)dy*~gnr=KDqNSrb?tDmYI|h8bM>c7Z&ZWr zOE-4ip_P%fvDLA!UfOY=t@0h!K2iA0j#z*@u`Q)2kNdNE*|yr4NH>6JoD|)Ed&7dxs0yE&&%A_oec@f9Yu&po4DR~F>++6&@W9Cmt{P&UE58 zXT`LX&fs*jJAf=jcRJs{Zuc3O93AA-R!ENPCxA80j?&V#gH&cqYy;ugS-bVO#At6j z2E%Rb6nIzW%FeQ@nvth|ucIP`wOw%rOk)xx;*fz>;Enx4KI4#uV+1YlRZ_yH* zvdKJZL~QlPPai~8Ty+OaviH@w|!cRmOUj8 z36(sJPTbSlu{r3vY?(jNE1GTADDj(|9m$hDi#sPE+v$T68Wpph0xecGEQ9Q-g--KC}dCTa-XX zn$t37n6A99Xqm#CCfe9;3RKqipZ6VZ;lpS^3OSM1 zGPwwn&r_8+0LK!lxezaWa`)cd-AJqwNf?pDR`}afk56q!E-(9@1iE#;d--m4I8hmX z-57qoDg-OSuptcZvyL-fgFn5@>i+(X&>oM3(|ZC6pV5V3y<@l<9l3vF&x^u+y3o6F zsTv)uL=#3dvDLjDeR=uDZXj9>cI<|t)o_0$JYJtZ>=49+bW)3!_&Lt>9_R5m0;Wm#=*+(V%1o0L&MEc4GuH}6bvtO)o^re zVs&EK^TZdfM*3IY-C#C`zK(wx-#Ddrys&)zSyMe5Lp!18kFjQfV%#zDvv|Ad(iV#F zmV{QX*$i9YUCE)o7_~PkhR|X56JSro)-Me;N)Buzd~MtvuO8FHTbEq48uG{r~Zv@ zZ=>5!(a2Mjc#58@xx!4>mQq7N{-Rpsuj)RX)kZnS^$iQbW?WmIeM)LU^h@T~%pRLy fyj5>o&7wU+8@C?(yw2a8u;>rYwgV@~SYG`Pba@o+ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b8231de93b10b976499ccb876bfb947ae8f1914 GIT binary patch literal 3229 zcmbVOU2Gf25#BoRm7B z@YLN%%_tbPXd$ZMc*Kp>;)QrEQAntF!%fywg;Z^*Fa+;WJ66#PX*?xyDlByvs};&3r8}uZk3j- z3KK!HAs9DN2V;}G;dzc%F&mx@+GU5!hUGGEIXJN=o1Sl0Tz|oGgD}Gt6fL3NjvRFTl7*fG32rq_&#JK?#+htzucV>N{f04)z<>9f&}|Yq7+cgqaj4mv zt+&YooDa>8tU%u;zX0i1dPToMvWB$^22vE-Ro`1?TvCh9!?$UTNz1mRMVBqN!Kn0M zAP0Mz!97uQ?;>4jQLA2eTM!myLRJ|SxL7n6gmh#B_d_i~>q`}rGvPOQiHUOpCY71m zA}u$(63)sg1M|LQS7?*blI3~6q>umXg&edB%#th$78U_Cn_=10tgKm|4 zdV(Z}He&0sPUiI1@vZ9PME>E0M~T1 zZ#n|1&%E!kKGoj@C4;&$OGSx!7I%DcMSbH^7WiFK2dWU=E7NKSU@UnH3tQRoY@C7= zn0xoewRg-L*Kc0Ch@SP7gDZhrcsbj%=lL_eTK~l?A2c%CH_~F_|Fg2sy*;19jh(lB z?;KV`sC=-ozMJ6rB^VBc@v|H(NHnA zJPL%+y9R*m%j%n|89y5;Qt;mf}pfrx%BzAZe1m43_5kxVAf}cX!K$(99#W?tjw-$j$kiJ3! z!<#I}4vUt+OY17>o+Xo~RHc$%$6r}{Yd-~6 zo@TzfJu!7}B&5L6@jVL6j`p^mL8r%{3u3ZWhbq94lgWK~{Q!#O()D z2dAjgp4&SbD*h_uLEJPg*ELNjCzAJKuNWT#_FJN8S=E6c@mkHd8!r0>&%zKgv8X}U zjcA(oj3m`B^%rvHALO7fK6rTOf#&+Ta$90lI*bsi=pd=6j0zyF|KmAb}ssd7FjI6b1oUF6ib$7=Q zM~)g$C7h}fj(Uit_K-slRP;b^RF$|_y{xg2qXnslN|m@-N~>Oa=*%V?qbdiUyz{>I zH}mH0d+XoY+I)b}!mmf?*LeW`pn^xzF4(@z0I&gW0tg_Zf%pz*;*2Y^an|KroFkmo z_(dTuEQ)cF0SIKT zk!T*af62$Y3QRQknwn;#ti#W!7IuUi`J9H9g*?s-pI;U!JAH1sb%zh9&>kdCt~EBc zql%5~SqapT!(YAj@pX&dKW#u&pSyMOz1s;_k@plTn9<3RWD^L^yBi>D?r0 zHb5W`N1p9}-4~3h&ZS9k`z!zn7JwCIg)M?C_4*$b8Slat^L2L-V7i-2O$%gtLAJ%y zH+hluV$&=Gt^*#BGg_N=55YY@$Uv?aki2w~6IbLQ4~1R;#f3ot$oT>6wlR&%wt3M_ zUgW&%Y_PeThaT?&$kPVd@1C&5JJ+q^+g4&9Kiuh^n%!?a zB=4Lh#_D1K4)1yIGZ?h6ocN<9Q?_eW&ewKAF(8qG>6G>_gl&Bdus?WDen+i86@9LeF`S_*p0_Yw7}$ zjU3Vkqq3pPpA_)Cp~q&oX_NY1llB89U0ze!RSr0UVx?7eIvOx(zd1e&D<-z?s(9Yv zG^9HsL?j{P2v$y0vE!ebowzpn;q3d#Pp2HwLW-H5cf>i<$mc9a+)2^t+Al|kvkI1T zfS4f4D0vNg$wviKq(^fpW6_a3t;1`oj_830${YARu= z7!Bu0ft5LAC30$RG^y$snYyBl=CP_-qh3BExq{2t^(R?Y!9Nn{ z?OSUrai!0;{K1D;)~-}yFZ_qMLXq#d%EY%)#b<{G>Y<@(Xz0=TTIkI4z?p_XLK+h2 z3~%_>eU-Ddj{eOfo2P3X$4Wfeqs)~1OBX79&42LwckBJJYJcp>sI8@#>)E2H(zXiUX4WSkyF*ksV9+I`gZ!%}nids^AV5=_+hG!DLd=bptC{HFPVPbXwBJVoueNNr&5g zRX+gpFvW-5#4arwFt4G@<|q;AG+0l`(%=||c?H^D(qHRK;QJl)HAEl=9whH2%X2p0 zwecxKw{WN k7YO#0QV+9hS-U4zYd^E7bO2gj6^g-huoy~*IJPgKhKrGO#O(`eQ!$#3LO&=6NuZGQuW7V}o<`sAeSkjX z|G)im=s!^J^=UR*pf1b?(rqM456NLUlIPPg9uZW)jXi#kw2{~&-W#1pw^5d#h3|4F zLi0!t7yA8ujkby&f#g_O?r~}WkyzV`BOC00%nOkgnKR*0z|fOjc1AFu~*c~z`OVCi#n4D zDJzmi;1b2e2B_A%-=KO~k%0^@l5Aem6tn0GaZaKdDmdOWjbVEO80siE0etIf6BPt}aVYGdb_MCHkt8Fesz0N7E$%ci?P^QqT(4H6nU) z-wA5Jbn;u1XC}vvdO|Ys3}HMeT3NqBWIR)0Y%vosvs5uGpQ?y2vd7OUU?4e3QQ-i* zJ68hxB^V@Xf?AlC!7{|?1(iskbdwOAw=BavIy^k9SozY7nAMBJM#YeZVc)Q45yOWM zA35R~pIlZz0zfFIT&)WVmo%ABwc_%~EJ%zpm6UZwuB(IUGb-r5qL*+MSoa=MHy+^E z%HzQUMaI`4teF-8lLbC$Npp3?EZNhHS`niu!3lsRIw8}7Td5PAqY79Z^Rg628A_YX zSMgUBs7H=Yzrze`T2jHKr_XETG*!xE+FrIF+ds2Esa?09*gwa$cWXbiKe2x?{iZ6- zNEySm;VaT~u|l-+^jT$Q+Jrj}7*h6%G)v5BCYg+D?0_Z1B}-Aw;Vr%;8Wks!sq31? zfsby+)*w_1Xrl)OBiAS1omdqTH6gLa2b=mf0^wk2qaC%h-w}Rv)E2tdVJphA$}cR) z1mIi$31G}t%%Qx@X`Bp@X>FoULGX_?+QKHzH0G>`-!Hh~%^!I!;8C68Jog&ftuLQs zqb(=e{(ZH;r1DCU1G3=X_^6Jz1qd6jmMxSMudboZP%_VN*|(iMw&A(DiOW^KjOGK? z0KIN)2H?}^@(&=02^Nb*ZYgXNDyxFe`+V><9BiYJDhKC%sfVgTle_iyYpCq(`hjaFz1Bp)SUoC5GQCFs$w}|cFrV* z6VHr(XLRJ9iziQ=9nDOhJU2Q8=#pn{4d{|rvUw*&u0m`zorozFfwW4Tejt=#F9RGX z>sg7#ybOfr3=2RR!;Oonu+t9wOSF>l@Jpu^r?oy)=P}Bd$QTj@>M_8mj6?~L%&;dr z5jLU0l}>w32b9ggI9swLKvO4Pr_-1+nLV*Q019nqf?)CTzc8s7^Z;xV;WJsLw1B=C zcw@2hxXTt2&lAa|vBj~avx{dx?tIXDzt=u+d?j&W;oL?9btIO$7rR&Edus7LANM`j ze}Df2@xJ&t`J`i|@7PNG_-cHl79aWbsozZea$+TZeqrKyvS(>_adtJiua?}mJin4W z{G``Tjx3!2ES&tjCv{`|`R=_RRqs_Fj<4)KY`5%uj{6>j?}s0>+;4e!`N{YS9<^I` z{ka|cOieCM+Wm)qpEz8fSWOJn5(7`!Z|_&ZKv&0F6!qZuV{6@L$Nr6-DE8(`+d;ea z(Bmf18rxlq?OqP7#0D0|H$tfA>r2(e>hkzX_W>}}&%)h5J@wJpy|LAu zL$#elV5U#ZPj`+yjdkCMt%XoaY+=GxcZ!=#bvsQgSFm(lH9g*4W_3B>YB;?wFSq>r=g}B{j1U5TC{gH zifd79H|?>7zU`)$SQANQ}bW=-tjjz5GxG;7~%=3)=0HV`!b{PO!8oHm&& L{wmrt!U_KZSrXd> literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a069b6dc691f098963604a6d2d6262781edc291 GIT binary patch literal 7352 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 O5Kyx_^Di@b&Hn+=|43c{ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..59440f1ebfb025e2b674307728caba482a08189f GIT binary patch literal 2442 zcmb7GO>7fK6rS1j+G{(3q_JZlq1i%cV)94fP&H7f2`Po7Nkssa)Rncd*U2Vp?`mdE zV&q5xRf68ADnTMuBB)4Bg;ce-{zypat?Fe%kO)hqQk6?@E=eUsFMYH21{`wfllIM< zZ~mU=ee<4wt*#CrkcnTK$F6Nb=ug&h#Zxv`4KS{w6iQ(Y4VPLxjG@nIT!tU!GoE1& zMk!w56=6HfO>-&FC!S$%1tI|At3bSfh=6z$K@rkid8H3fe;!B0zu55uQO*_z4O7*# zvStgXbB3naUZR*el1;J+u5e)R@U3=&x{gfj4%{vqQazO}xy?krulzPEmmmM$(` zvhG+v#rJFSh@3EpoHW%5IiATY+4J#!btFzzQ|U0|$|Odxql(tI-_JVxhGo|{Bd{5dp16!lar#uz$d=>lsQMA2^ffKXJ4taklr=(22o;sA%&vPi@iA zWHYUkjLqrP_PJaUsG+H*y(MM>@kVl{(o2X=Y~SEe$q1a4wOk2|@^;N=HkV+0b$zmN z!uFMENLe@}Ng_dLiO*H6M-@;rXsrr~!OMk57?cf);W6%}!VVTCE&khLpb>xRk1GxoFg9QO! zrwGg{ONv`328KC!Ty#gCw?G3lz8?7Jc!5i>>u`ia13e(yG zKOT0`=j{t5BT_^3!qd?EM-<36O1RnSQ<7d)IH=TqzHed@f zO{!`%XnRYz9XydSbYhlB=IJ@s-%nWNAU^=ZMisMyWrW>x0L_K6DTT*KfJ*iNd$jTXoLWWX^#PHw?nUgXq0By^>Wnm>u zHNi)}1T}+-US0@26vM?`(5^J@y3se+x8PZB?6Ab`MNt5(Y2W>(-le8qOKdD|LCt%= zI&$-f<=J-6BRz<;Ek`AxEE|$sekQ$ed|(v>q2C?{*5caN5Oi_Q~z}B zI7U^GCkP9n2f$_?+JD!Yf$tlj0IJ&Y1c4)edr?iO=mYB+Jpg`Q^28)`xi;2?=Bi?c z(W2y!weyQ@nCUKm>>$6`jhQ~|KN{eF_G8c$Pl83tc@oWFY*x?884(^z0SYcuG5*5m zry*~dx|C8N-DgxNSmu~gS<(UlcDZh~lO>ZCRF>RIRf|fkkWkv)0vMGh$JFE)Y?zjF zn#uN7GKQIVXFHpzSt%*g(pj3WPvi_KEkl{`rTIizT)=WhojU?B$Xg zP_`F%38k8_izJL$gx#j&Kq)0U{9=a?R#lu0oP=qMhcbF9rzwXC`#-^aqh~+?5iov; z{0~v!ceJbMVxSh+&5te6n*e}WY;DDn`41P8H$PrQU>2uv0JmP< SGt18o&5ECOts&?-$NmR75n|o| literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0742de48fe8e447224e36a19817ccd9f73670cb4 GIT binary patch literal 7626 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 TF#P;=!N(n2?EQj3#3uS*VQaW8 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..acbc41255451b5f49f42a9a8958224b62c1fdb57 GIT binary patch literal 13581 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 Cz@TIR literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03e5fe7a9eb67ffe7bd1f2543f3da576abe027a9 GIT binary patch literal 33474 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..455b829f23ca47dd5012b0a2a2f559f44454d3b9 GIT binary patch literal 2606 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 G`+orOM;*ri literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44a4f506b0b3999883069c3f8bf2236fd5e5e4f9 GIT binary patch literal 4573 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1930abcf5142cd99ff5db2ec8c2f6cad69f1ff1 GIT binary patch literal 5926 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 Yzt)?-@K#HSK(@fq=p)xX%+VG34_*!QTmS$7 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/utils/_jaraco_text.py b/myenv/Lib/site-packages/pip/_internal/utils/_jaraco_text.py new file mode 100644 index 0000000..6ccf53b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/_log.py b/myenv/Lib/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 0000000..92c4c6a --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/appdirs.py b/myenv/Lib/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 0000000..16933bf --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/compat.py b/myenv/Lib/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 0000000..d8b54e4 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py b/myenv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 0000000..2e7b745 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,188 @@ +"""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, + ios_platforms, + mac_platforms, +) + +_apple_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 = _apple_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 _ios_platforms(arch: str) -> List[str]: + match = _apple_arch_pat.match(arch) + if match: + name, major, minor, actual_multiarch = match.groups() + ios_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "ios", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "ioscustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("ios_") :]) + for arch in ios_platforms(ios_version, actual_multiarch) + ] + 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.startswith("ios"): + arches = _ios_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/myenv/Lib/site-packages/pip/_internal/utils/datetime.py b/myenv/Lib/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 0000000..8668b3b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/deprecation.py b/myenv/Lib/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 0000000..0911147 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py b/myenv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 0000000..66020d3 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/egg_link.py b/myenv/Lib/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 0000000..4a384a6 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/encoding.py b/myenv/Lib/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 0000000..008f06a --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/entrypoints.py b/myenv/Lib/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 0000000..1501369 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/filesystem.py b/myenv/Lib/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 0000000..22e356c --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/filetypes.py b/myenv/Lib/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 0000000..5948570 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/glibc.py b/myenv/Lib/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 0000000..998868f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/hashes.py b/myenv/Lib/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 0000000..535e94f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/logging.py b/myenv/Lib/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 0000000..41f6eb5 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/misc.py b/myenv/Lib/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 0000000..c0a3e4d --- /dev/null +++ b/myenv/Lib/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,772 @@ +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(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) is not 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/myenv/Lib/site-packages/pip/_internal/utils/packaging.py b/myenv/Lib/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 0000000..4b8fa0f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/retry.py b/myenv/Lib/site-packages/pip/_internal/utils/retry.py new file mode 100644 index 0000000..abfe072 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/setuptools_build.py b/myenv/Lib/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 0000000..96d1b24 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/subprocess.py b/myenv/Lib/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 0000000..cb2e23f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/temp_dir.py b/myenv/Lib/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 0000000..06668e8 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/unpacking.py b/myenv/Lib/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 0000000..875e30e --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/urls.py b/myenv/Lib/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 0000000..9f34f88 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/virtualenv.py b/myenv/Lib/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 0000000..882e36f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/utils/wheel.py b/myenv/Lib/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 0000000..f85aee8 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/vcs/__init__.py b/myenv/Lib/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 0000000..b6beddb --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..34bef999ffd31ac27a099edd344dfec6d0ab9b7f GIT binary patch literal 557 zcmZXQy=xmm5XE=ztdlHbOb7u(91w{c6_y}nFd^WND%cQ`6vx7`It})s-Mh=&o`~GV zP5y+mZr#~kg2BCUb81&*s&oO7q|Ka=jX?wZd(3;wFuS*_t4&5VxY;~@?=kkXYVL~q zSxw)Nd}Dpq=bD9lrruorxh~Dr(=`)>fvJae(+C@8Ib1f)u*unoxBXw$u!DBZJ$?r! zwQ!Ky{j^B>dx$AMFh5GI=4PPss6g%3jT}HUjPnTLQ=t$HBzBhgWVTn_dZw~Yq!J65 zNZlc`(~~DsqVp+nPZr}NW!=+7+W^J|DyiMZVwe}bAz-f3#I+XFc@(FK#Z;qDuf?Sb zwF*InI^mp6iR_Oh?7R{ma+)ZlhR+}l6WB#H1W}%q7v*JnJ^osLFMqVgU&g29b$KOT zYT1)fhBCHlAcYx0G8AuBPvpwNRwmF0~2)IT!{sULVwq*bS literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3f1b249dc5f416100fcf9abd1b3af8f43510f2f GIT binary patch literal 5078 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 Ox4gO2A9M9=H~v3jd~rqq literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..05ec28d83076b67b14e6062e809ea945d55d89e9 GIT binary patch literal 7631 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 I($2R3A0;Ub!2kdN literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c2b3e50d7750ad801166611289908975391f5e3 GIT binary patch literal 12550 zcmdryTW}lKb-P%+9|Q@21o#GDGC>KXWXh7P*i>ceMcbici+-U>VF3 z(;3eMOqGg^>mfCEMsS;HsZly%noftAOj9T6WaRb-FqjhFuv5;|`S2eiDPt$o>GYht z*d+*4aWj*zE;;vJ+<4m6(~ZkhD$n(Z}1n|Mbt=zkJx&o~*@{BcjN$ zex93wfh#O_JFf^m@H>Lj)lU0kFn6H4x5xKbAGX5f$h4Mz+=DBkz7EvNQAnXcopgX< zH32Ql1az!6pyv#%jx(})&NQlJ4R2^~mnH_xoP{-#5i4h`hh7*rm5tkArkRWzVZ>54 zQUxP0hqaMWJ7?tVT(!K0QjcoLigKw>Q=>Fn^@dg5y9QQ(d2lM6t;}_dGV(bHe03ST z6V6(rz_AW!xeyZO*N*C0XW7~6_MO^QHsV%C_D<_5om0!!mO<77WF4H&t?r1})3cs3 zm=T9W-n!v|GrocFx6m zxmLD~^RRkY*UYxVn0Mb8_8Zv_=x;lqzZ3e~)6^Ut=(tSz4oT+A(^qF?+LRb!CZ5#x zLMa);<6L+$F)jLZNdt5o7KHJn5gX&8IF&RhEul0D6UpdkB+5x<_)U*K=RX{y6)iD-Q!>hk{dt;U_~^V)I;l=E~ENt5<}G z$oZ#2;mOb#CtR6|O!di<0VGNv@ME8#qM~eHF+E}D^?aq79pd$K&C54JDbR8e2u+uK&g?Bc&korfg@2g)wO2@>7s zvq+kRAZceq(MibwIyWAQaVQ*O3DC(}qOr9TiAY@1b912U1*tlSWDIhKFdm#kGK13Q zMPW7q+MR&|g1i!WpNVgP&Gw-Rv<)*_L?^W z_7@)`BFrl$yjMBzR7emw7JmTscxNIZ1Xfq``=>#fAo+R0uJigqAqc{3f@i%6VqFTb zq9Af1_&usj_CEjI)4l2nKzG787^OO4dWz#ECz6VcoFJ@7tVkZkxlb#T<|%0Nk3u1t zg28YUwhIOYL>bWBA`$5PP{Sudg+LEYdZ1Q&Q1=7A%zIRdZDkAD9$@%ESd>Rz z1Hm>Y@*!dZ2zaA_64^ws5nqL17R>`s8E*ECyaJPiekg#bj8sQg+Weu#S+LfvJ+|)2 zHawiOKAe8?vpu`^`mC{@pkm)^BUKZ^x(^Ky1N-cTJsUw7h7m?o?TCXcgafSsmDCoH zz!)N8nnYFeAEfUA;i|X+dqMGyK-cbBG-W5FuMIyyd#igB?Twa=c2QrxUP_CCYdHDE zL9`pa@q`H45=6|G=Eduy_axNgqv&je+zr%!c@QBtFJh;See$pT0~Z+7f(ZET|}G$p+F#RDbfw zUy>I2Pe6+ghzA~-eyU^zh+Zx7XtKVHfc6hXVW#j^CxTYuu|)|C6@ahO~YWfR1j;^e=YuD~bn?Fm8NEU<` zKLD~s+ZsYMR18QG$N&kIJQMih70(1Byy5|Jqb5jrX#YT&*~om(st1{ks!7OqiK@xC zXWl(REoi|oKEMQ2+~oxwgqPq?(Wo>P*RVjGEVZD2O*f$$gnOrEb&6yc+EWKZ>>0B) z4}efZMf~iZVJW(mT||%4nn3HU;(;~M_o#SSHMFF>i*n8d1DM4$ai;0VDYZ@9>jizv zaE`ie3~R=yu;$CaB@0HeRaqL0;F1<&&6DSVPU&lol#w;#TF~~0Xf~2Z=~duYG}j)| z!ioz#NunezH}p9kd$5R2mOX*X#QPAQnz1QxbjsdmJg4}tTqTz3uzLuS1UZ!U0F!Ujf%|c09 zmhx5y*wLL}HDFj6EC|zr{$=Xgz$_)t^*M)$pXH;anxRra6CHUHeB?Xea1tfarzHAO zNptLIk}+G&AEP+@7^PcM_t=@aSTtGpM2L;fqfP=78X}KgHYA2ldp}05k+f)ACv|>5 zKwcQR1<_ClcFYC^k%hnz{2+BO5s%LM8YK_JQ+m~SN-sAT=45-C{}QZKroND5i4Nn@ zn3c4NDK0K)d9b*7q+v-L#aJ&mcvC!57Px&FoQ+1};7IC7TVkRxg@LH9WG5aXoUdd^ zf_uV+`0%)7ejyZ{=Hx)EZj4V%Pe~R6izX4zNk&x75D(%d3qKuKg1VB6z~Fla%NDKZ zm6zbrwDVQ%DO>WQl2vgviBC(9f)ffTC8}1w6q?1ioq?ADl*38sn8d(da*zkLIMKpt zAv*}D*prQAI=Iq1eggo6<6u!OQok||d{k1psg+db(t7xNleZ=}AI-bZr>#2{+x3%6 zCy9}JWXtlBES)Ey#d2?=A`w2riIn z^Vko1-m7`<*w0*lIk-lzwcXIZHI$jnIWOF4yW`9`pZ>dCo!){p01N7Ls&bb5B`yxERNH#;{y*|sP0b%WXJ!GgoRdU)mVTIkK*^x%&F)VBX@ z&VTm3&Mp7Nyz^4de{r40&2AcQ7&7$R=C_{7`Y-03m+qXs)1Pw=FP$rDYiwP`D$3ok znpjB`Y8%&H%#3GUeFbkw-88u57<(#(qXjRUh(9DkCea3oJc=YXzfjFw~S3d@uwccR{cjt+maz?^!%a}HtyXQ#8#ul zz3{eZXoGh~O{i}UTa+GFGe)xvtNpG{H3>8+%>y!6*C~p61ab1QlJ%S%Qk*yGw648iCPXvsqCWr{#3Z zY42IDh$&Jpq(H?GP)dA^tOpLJ2*EUY@e)Dp3!x==buC=;l~=lbue{=o?4KZS0!P7Q zDZoHf2Y|w=+e?CQJOttPf@Y`rP(;lH8dOqMY57vNM>3RtOIBroSSVGn9K2$%)TxG~N)B{&7$TMBe7jG5R}Q`p8w-B} z1qh-hs==48Dmd!49ql}{FeE&H*8vv$`} z|4zqRJm28YHuPm3N4Fg(a*h*u$EnSloZ|~H!QHa$?#{Wp*PVH{e?63QAKiAJ$hl8! z2zmDx($=DeG1cufw|}SqJHqs3AP#dPY51qB3Fids7 z6C7~VpZM#aFj7A?nx1emKXuYj?vo104Ma{Nf*}?}O+a1wyly?X|1!cKAQu$gCh;FC zs4kbHA@)Ltz6rckmc=MtjY98#C^G?h9>9{HVL$J92=o_Z5<=`e#GfG{@+z=1gmjLm ztQ7KwLl8D+y)$T)dS@e$NdYDSH3KZ7Lj6BvUY~|vfJ@?+pnx{vFAHW<6|O-lQDRPZ z3@numCL8u}-CHsCE0`yoh5{JI1;){~r734=%38XCY+ashXJ^jYnYDKA)-`O`9nRGq z&e!?VmO|4*M4c7v4N3y^V3Hkyg&#z+0)rm#|AjzV&Eyq$cZOvUevASV)rJQ5NK{EU z$Y~2C1~0@3Q8Yk)BT+8r#qp3Ri*g7cB27Xx957f$J0s(qz^N$=2qSt!Q{Xp+@f#Ns za>QAq2~3`#E>L8)FnzW3JqslD-~cKuM&hs!2xXG5DBA~>g5Rrr9iW2C-I$vTk5_a~ zPk{r(9Z2OUN0B*8NARMP=Y@1OSb}j-Q-A}Ed}CcYZ<$u8@%!V6xWDYv9-yxm;od$* zyD91P`@yLVa}@w+PVv{EP>B(g%Ynq`E{k#!X zpu1VxTr$C}UroS=4D(?ftgk$3sPliI2MCur$of)cr>-pWUcO3cHH?_2bRwF?u zZfoTpn&j;#!4~J?TcR;~K_7?k8-$}Uv_KwKJ4UDUe}#6SYBecid$#Th#PBCnTk61Z z4ZzSV^xx_K0y5^Xni?eCgHEZzNVJ`Oy5XdI5WikQI)^|7gxDd-4m8vyka$Vb;P<~e z9pOYCGvYp@WEKm6nrqqtOt2IA#pTATJ2B1-vNa6@27CyJ?gIo`D47Y|>RmS!%BbqD8wQ$0#eX`JR`h}{9qpJ z_bGTFi~~qhAz>g;`gUm?BIF0U0V(b6(r$z-G{X=ZBJ$~$cJE&Kx8OMBPH)N9U*(;y z!FYvf$G;7I$(pjulGiH2*6ttO5pus zbRh^|b_9d51Un5Mat6Uo4x-O5kC6C)oGUZ&+*E>0kPPzI3xZ@JiY>-LYL1oTjM}S- zM3irW4J0dkX(C3#rBS3`-iyUaERgJYq;Zn9=TUs|XR*M0;!)c17qJ+|g2e)ZclG<6uR7 z`UZIM)r;o}Rjx${wlypc6{?07FYfB9A-$$^ZS)r@s5Xy-A+K}YV<>$M=?C`LJFwNb zCLly(MqD3!cOIb{5lS9ID1dL!HD?Bk6jbYjcd;t11FhmI0%6tl7HU032J7}NQtz6o z(!%ojweC#+4gb1lqvKX{w&6t1buw!|nKPZbuLIc9I?w{|2Y1rxIx=t`sMe=9E^l_f z*Z)KR9Z&X=XLEhe-N)|I3}``=0#9kuH542Tkg)d`8EhZ!-*_^2_zd~6YjWMyL1*cO zpjE6R+tliunQ)PUYCU`xtJ1R2D)thHKAmTsDN;~v=r+bTh407SyPQ37DR*?}E_RmS zp;f#}lL;DKEiMVwhG(E?KwMof&QDQ$x-K z-(}@Zos0TiN7HiqY7a!sgL#L4(O#(Xq_19|SenSzAIn!gyl5%7+m`v&`h(^L6X%)^y+(l!v^>{{qYt%~JpX literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc b/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3ba1d9ba7db1f2af2d38b4d262bd231bc86ec59d GIT binary patch literal 29023 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 fxSeNBkgzs1-+v~LU?E@*# zf&46rDd&Cy)j`d2C}>mu0lvand1AG&9A3nWEeD;K!ZHT6R)&UBAa({SU^(){U#8NV z5lji$+VykN8?oE5mA37fw(aTlI~E(3?C-nYb1hEX-I4Y^opwFVsjERzQB9z@4S%cD z5irbUM?Tenbd%1Yp#GE__u0p^aaK@>C&!R!plsavIfHPB0bNxjWEBp+LeEIm6^va^ zo1wCu2&RMwZr_c)GkeqSmaM<=*1?+xSNz*E{_Sbc_6I)yjq5Ylr+sTjPV|9|d3j@NQk_Swk4r3-dK*U7dG9svv3oNmu4zN{8*lviH;Dw4- zw=PPH0Kgat7+AAZoE~rrm(U3g*4hy{Idn0k$^=ukyp#*b1n3F5G&}06Y!-CluVY#T zSOv-|0=Awui;8ML0BCu1&FryT&)TI#0OzA@s-0L>B*fb&K z1y`2H(?ZP>#JXZwSBhU%7@n>NN!1siSU&l8@F|tVZ!9pvrEgu&`s*LmZkV_Kp6gB5 zTxy{LGgLPLF<;kj0Zi5v$BW`^MCV#U$FB4TGGeitRxb_75|uTT@XF*!52 z;_J!ydKSV<())?`5@}!0vTq>m8er2A43x4V6+=T(A`If`MJt+bXoyJxOlnk-%5a3( zOa;1PL7_R&?6fVhUMnq>7@|O?92aB^Fj~oRzVxD$@d^cF6g*D>38tK@IZrVPC{z6o zf?pCovAY~Dh`>I7+TW4!Zd$f)%C1{K)j!=d+cC3#*}necwvNSP_uBSNJv-}Ow(rYs z?3{XTwrQ^8CNev7c8lYp!fW#N9@h}O}!1{&wLC@w^{@0R>=3hC`1I}slXjs zxcXRjO4b9Y2-TYHyOzNUDZsd5C%9slWCvg6AWjRMPX#!gD%p)Rk7Uu)Tm{@xHP184 zR~F=XOY*>ZnOv3+3g{Z%qGXpGx)Qq<3T%h|n|Q1`D6;We_UqraOEpLhNVO%Ybx5t} zbqmV+k=np`{6>(TdadfEuzHs3i_-KNOa<`EYKZE%~Ve zk;9*doGEE6qPW_P;HOX`I)zH#4bO~c#U*B3;)-ia#>P;Ed1GFULD-b*Xp@h`$&~zR={PhO zSqU(UYSCbf#P?8NZALI9{K)6Wray3VU?mXD1cJ+fZOgvyw5$6wMntIaxJfuB+^~eL zBSP5vGRQNj=gZ;wP3vnlc9fa4oJDA1v1>YBT9sd=(H%jc!Eie}8h>ckr#r`DbP;Zux%Qw=kLU9Zb6p{>_KJgG}vm!{2EyTDj)@ zT|`Tt#aSK`US5xpS}{_Z?~(_~Yig8mwMLwz1{b}j=>78;!;QrC81I|ivB21QSdAUA_a_0IVAbw*oZ-OXOXU( zi5S%-!wPLovQo6hjl>VAI0=N%@%S2M)w$#Md>!{ab)@P`x9nOx`@Qq;p1@dnk5S3FU2p8Y4Jlv~)jTzGD!uNBMfH2v-@X2k=Sa>W zc(yX6VSO$_8k1rZut6*yBbHqi6fdR@WlEn3%R!)ou~}IdK;F{#9}$I%AW=0IH-??6 zFIW%x$MF6*NcK5AAH!;$U*_yyD?@jMqGE=h&3&GRQheHb6qT!I-$Ef*VBXSFz z64ra!ZkMA029APK02-6F30ql1r>PT!Im@nEUTaL6(&pt#e759)hQorE%B&5;Fc00L zZNfTXrzv>t5a^5*;+HjP;`@X(Nh~yb-nJRI4I`O#f^l{vilwfa5{fR-u2CX!>4EI0 zA;=t~30NJWy5T}hC@Cgk4;P`lXDWKLG0K35GXiTs+|;&@=S7fI+c6oK9gDykki3M_ zP}38WLQ9L*&j7SVwkz^Dbn~=Sly4!>{3J8yyTFy>Y<2xQl@Y0oEf%`2*`jhB`c1~n z&|GVttFUt!yNu>8_@x`7nA$(UO!?47LupT+VaoY6hBMX+y{#dLS!8ifwH06`m+aa0 zY~vG@H-n(C2dHTi7(=Xohyp-L%WBSzGx(_`aIk(Wd>l27tt zdvC+Ow5v7iYe~0m&-iwvT{}4DZ$%%9FrToVVg4{8kK6S>2kW8#rTww|UU(J!*K2hX zR^kKB3U+~P0)M;DM3m3LI!Li(G0Gzjl;?SjDB476Xv#lCP_&6^4W-k;+1}K~&zLb@ z5pU%vXemX&qgnRVSC`nt1??H|^(gJibuf|yqmVBjtf=`W*6BAMmP z-UcmUdM+ZeCC_J57Sd5Ezl$nlVTdNK$qL_SY=D9CTSzaWs_p{F6tNiv>5r(=CIk!y z5a&}fsb8IdW(j&0#v^acz=X7E*|#O_+QP<+?QA2;4+NV^1baShMDw`hevM+kOu;z{ zh&5pBxiU^MqKKSR{56VgqkyQH@*5P~qJSv@-lW(+qF{jng01ou1dQoF!o`=bQ6dFz zQ-<3DapjkUY){|R$?4>5e|lXo4c^$db=lshdG}5|^Ao$>(US969KpG+`CYerNO%wG zvb)96Gq)+dp)b?C{UMTjbm<*2v%sObO>^q)AY~sivk#fFf8*Ra$o^j;*}qZGMl9!X zI*wZAj-@y5$h7Xv3G{0*xys(T8mpsoPR+rj(m9VbymGF3$Ib<41n^oskv{l*X7|7< z{mAuJI06f2NmUS7{BruxK<0_ltMnsR=Wuk*+j0V43$FBzqnWO!KBXU=E)aCW_%oj- zJ+_(#bttvWz&ZmryFrI!=- zpzUVlG$W^ld7CQ@a+Zptz z)y;B~v_q+`WkP0uTClU6#8KY1>(BKU#Vce`JAdkPZ~!*bemcpbmYz zbf}=GJIyiV*UjOA{9WVD;8RTZrNq%6rUdO}gjlN{i>qL<;9nL|67d0L1o>JOcY$KA zK}6Y$HZ?mE82fM@k!yLmLq2`h)UTB?4c9KoU^2O$8!R21 zQP%oliRvZhE&?Z#5S%XI7LyP|WH59)QQtJr$l``D6j zWfs(JXc=3wM+mg7Krij@SoU{vgW6*M_fEWfVsZb{7Z=->{YTQiBWc$WPUMLdE}A|3 z=CemraEq~KshcKn3QSyvyHBw%5p&$>26XanKg9GCP+3-YtT zWH6;c6v4EH*p)&bxzvUdP?i>`B?yvt7=xhBtLc7>VCIWJM99q$d=mo^&=r+SpS-^Z zabT%45>kl$!I(Ym07Bk4A(LzuRcX#BSI4lM^flgS8R46o?wMtEZg;SB8C)yluf+Eex+jV)=ti(G@oM0HgO1GmkIO0}0+2PI`hS^{J%1c7K40*x#F z&Wyiv{?f9)Z`uWS))jYG#@)5hbkDsr+r0jbuG?L6&GS3vzdZkJy0LHi!~=iBioY-8 z?^|>&`}e^WuQsq!+nK4Q7Ha#Zo%g+)=dUj|EgeX|@X|f+m*64mtDCOkD{DKxTBN9^ z^}tpZNk4_oX5X}c)Z8|KTR^SJtpMn!(;K)8a8Cs07#V`UkP0(2JD%|KSeHZj7J(hQ zV^Xgu>bgA;TNcd^pTCnaoSGm<2$}oSDWe!hp+)90ey2(tmwE{|iku_%0t~BF zC<;4Mjo@ofyEbxoy?`{$F3D=Lh#n!ebY}|*E1T6Ac zq13*JlM+Z)O^EaDN{2GGFRX+@fJU!{#)+w5EA4nFs=~mpA3}hVOOz7Oc99dSetJcW z#A0JfI+ns_Cz3S3LmiS0-!H=NbC;lRi-Gq^Ncm=1kM$2IV0Q3FeyCA#EY1gp8NjeY zahw$}n?|qM&_csd#_>U8#BfIgGZh&%JQP5sh(^RYX$uo}arc5yfm6Y8wo4lp4Vo6^ zE`nlZ%sM)(VvLh^oFUe2d~*%|^VpJ4(c;v1?*^f!p5ws;JMqf`Mc={L~U8W<2S*VmCV?@P18Rb`vSzqLibU%xG9ZkHV zVk{t`#B2l7vv_fThzp1nL0U;7Wep=#>gaKrKuMB5Ruw?mJl8R&E~Gx}JG^w}UY>8% z>_qO%b45g^3yD%WYv5<=tj(QM&@<&Q0>}(>dWh9f{uw3M@Bz(!F@Y0pc0RTLj*=a$h-OcQ zBGD2L^1u)l30ve?N`_)S)lss)l`C|fCZ6mDn0SxSxbD`-&5@Ocu1rJMLSVU}cg8*K zm`;+8@9Q&P{~hIxYqzhx@wMAuTlQ`H(6|5X9@%Bg4pnkFJ5 z+awy2-w7?U&>*r*pu9lGsZ7>iH!k434g@mZGN=)}{B=4?G?!eXcoy*~;I_=R3cYB@ za6lmvC$5IM4i!@75=ScD7GJmIzaPQ*DSXcWC_6mF%j5+bQRF&eUaPn;dd@Q${?HCW zz0M1$1zlm3oQQcS5(ky#R8=spG&af$kFhq0c1w*BC z6Le?-OxRUaki@Hz5bHuu4}irEHZYL(;Ov;HUP~z0=D2@xL2Ix(f^lV@YD!{k1cyB^ z20AJyipQapPvECw`WIsrFr0q|+b0RZ7_-@wIu@n_Q~D<`nI#h=#>TL>V!e%%tZjTH z&u?-%tnL@P40Px+M$wJM$_EfM&s&M&Th;+CF&Y%|-vj^nAv~h=L`J*u=GG+MCS1&< zA?jFJ=CGuUOl!x77Qh^C7HS%1C(^!-w5x+HhaxITn-pW+Mp5PONhM)(Cn`B>7II(G6o1J6&b*mT0qUD%k116&n7!;U*T%_o193D-o$Fu9plrM_z-;p2#mPC(X>7$7?7H8^jVr}{*QO#IdB7Odtx zs)7|{^}EH-K~`l6BT7}AO(@EEx0t#@medf)L6is=mM(FM#8-mnV@wx_85KDIYI11X z0j%(3BAkdG+TYiA0L2b|=9~0096mq#r zxu|(MB$AR|9aOUWd+d zk#Y@t;}LeU%v|P70~xH$yQ(QcbO%m)bhMeB6v9av+9#F2pme9gf7G!;7%=pel#3P^ zFT}Xct;kf^nrHj0!1uB!W1)A|5G;14GY0g^q?G~-T9x=^~Q zmMuht;lH3oCZqK1dgs(zr&hX;X1b5w?O5(Uo^b`IowLq4`jgsY_{WLf5ZKTE!l>) zIdyIXU)sDKLH%}ouCWfEtF3!fCHU&eVSL5gnelecUtPGmm|S}C?o;W_&n$aSpmAT_ zZ2#Q4G|6Awl>+CW^(_UiwmLB`qJe~Dj0O@vPJUL5`+DA7nL3+IbiaVnZs+GqOwqMn zUu?8RBrbv#igy)Id@gxd6%C(IzK@_tBUWv4y=YENwU)3)MY(e{g@hEK?J%j=O;@g^ z>ULza5fP3(Ue#5OUp45|dDQ3Be8SFXB%|q*6%)>HxRa)L)r8Y1kDT(ySsfD<289Nd zEwAjdO}L=a(rw9;mE}0%iAu(q*;22Rn-`)BMEMHlNB0Tg>{sEW6wpc{WJ$U+0W?r2 zhlYcB!Q2gSnZ~Jn3~1sky&MLor;tpd{6`9CV^HWUTd<1zbI=+G^UTUI#nE;uk)?p< zU-Ri%1~xK;V7}p+8-&T|f=XPevGR*p0%Ps#JW*Meprp*3gf?Sn5NJ~+Y~H%kc_`C) zXi0rP^zMy)+P6LJ+Rjmw z7Mk%8dNLH{2Zlapb2Smps7~jK4b&?ql))`f{~EFLsfdX*1H^4dBPrSh2y2L+h4KN1 zZX+s=AmhyOSp1c-M3VI1U=<0e*uFr&ai-pE2Pe)VQA$+7{a(s*-I}Ejve6dwllwJS z@aE`h3R1t0LNq4yC{QnH)p4Uwge+@Te^KrtP2(msz@(y@h8q(z6Dz)s3_#rvKj0N# zU&hzBXj}H}PP=w<>Bo*ncW4yuEE0Z9B5?xEJ)TGyaKzFroIli|Cx1kV&Z#rP`H~5v zeg;=aPS;4)JenYYlNXjEg6EGXBT4WRkr9lK0XrUMsSs?W$nY>c7IEIB@Mw}n`73@o*tp5^xwoms5g<8jx+m<+uzj9q`X&Lg+9x z`)vqxfD0Eim?n#fQc2RN;eTvHW<$dfAeA`GnqzIy9+j8$3i!TKEfA^HxL^otl70*w zq>?vP+zR%!JbHr+wp>GT3(K02+Ao?>F)Ck`p@lREn?iolK?kRtcM)gngMnK4 z@A%1%QM1CF`Ke@m#7Ti`siub1<1;5Ll{X2Tg}8|6GJrz5 z)(aO1eits#mOq-ng(eiaZ~^Fj0apo_Ln{UP&ki~Ul(+2VfKsAhags?ldnJJ@hx*WFOK5UBG65ko1+Ru@9`dX9}q2Gwz>fW0upzqyl|mlwEr)m zqI^O~LBxxYg5!j9jCE}d5P0%m0tm_~D)2=tB348QKN}I=Hpj2?frTdhh^~LgpOgcM zAq_o@IZ&q;z=IAme+Fvg*JFP97TVX?0$>3(L<>(h=J9roY`&Ouwd-9PGL5#FMAB_c zyq7}}X^3?co`%KPv$n_&03~Bd)jbZANY`n@-|C-$GCp=oF}0k!Ue#XU2~YD{@|4@& z^X5^N&J+_nT=I|t9kRC#%5%L!z-yq%1LIB@gsO!euZnrB8WCmmQV!j?M+(y1a_Xig<4UY|4Gnh4K6x-^@cts+_F& zoVKeT)3P-Wz2r7ytde`8Lh_JyjV`A`yqe<19Fs;&@)A?0)F*q4I+uHmSpF^f?hpmV z18;wqRKw~V`JA5CmV>47ZP-M1@D@w%DfxL;x=X5KJ^4~{*V?uqW9D(F+${Oa^>3oG z0FF->tzIVeRLO%muFQ`Hv+}c3DEM`*fnYf-um3r46fPrqEJeM2CEdl(wW|zQ8#aXc zFtz3ec#_}YN4he;vl5poOA&4o#{D?lNTOf&MofVstIV!WauqSKW>dxc&04GFeh6ft z7_v_&EyGo%q0Lv{g?dmnI*w>3>%HCX@8 zU}z!X5#KtH3U-2FkJGUces3aI;gXp;3|%UiZYF?s;Ure7hVfR^2bAtqad2zX*((ut zzaz{f;Se-f2Ga%5_aqZN#ESK%+F0?TukcaOxX`dQ)!C&68HWfxZzM><7R)nU*MgBz zdS48(n;dcPgJw}ROGL9=(<~QL+mD$-0Y0E}dqtzrb*mxX-(GyE<+GZ%DSr!)DF2Is z|BWEE?c60;f1=iXv+}^43kNBU$=m@B|JPeJZ0p$D*eZG-1^(Mf19sssp`60EQw}Ij)G7h+@%KxO~ zSLmaSV2<+rqoXxkep23}BL9toA5d_Vf?r3VpWh))O>;o%jmk;`<$X#4sfIK=GmZU( zem_NlNC6QjSX{?(;}`mnRGKM~oZg^I9 z?8@MjU;lE;Ufk|9ZJYk;k9@T^uFYJdV;OT2&I01P4|c+D_q>1p%FN}~o zQuloO@7FZk^4#=f1BbJLCVsHED--Bi4s5+2APGOPIU8tvROzU#gZ8?qb)~U4(}?yK zzxutQcZcpZK7BvXeCxTJIPJ9ce$%G;bIVP*z^wHR?`<#6KcQNE1FF@pqayS6`S8M% z_X2xxcA~cNkxi&?q2#o9{9fRhY)!+D_+iIv&2~EGS9!BiKkawFrgiSza!q@-ruC8A z2`#!;Xn4^wbKETd6bcqs!H0Rd&pra-$(fT`j}MooRaQYi9_W~V zdGQNN8{gfxxGmjr=&tkbD}P+M?0=Tr!u+%9w+`R;_->q-IWc?YwNqvaJCiwg@a^u! z!oWno^&ec@Fjj z{Mz!Ewg5U$fcJ})&ejCiK*^u2X)yp*U8}blo`3QqPhYN9@U$?=u1LBkrp$)F)hPsj zKf|Wt&KoiFY&4ji$8YN-cF@=H5EF{qULTlSUw>2v*#k*3E>|(`;$zCjB8N<@(E?Iv zw$MddNixx=m+=A_7*C3=4vV^`is z#h(`vWxd4>^wl*Uc~uB=BQACtHjwjkNAWMwyESTC?uN@P-Cv=(*EL$O1)5%#xHKRp zX>NF{UmH@B65KnGa!tZ@mvQXY>{4j(r>XW+{QB&#wnKlf%I)1^JKdW}Z>EWs+h5iK z{KmJ$m4b@6bDG9U##Zc*VXc~%(T}0vq7r_`w&ulcoVYp;x0FglyhE%nLkalKgxwgN z@sL{rqfc}#N3ri;IkVgd+y=gD`KQibqYEvZQ-vlt)6y~NtP~0(b={-9ubQE0NvI(meq8Rm*J?z%3!sVltlkvPS=?u%>q;%9n4UqR@@wnsD9r72%pC=t|u&*V>seIzvOA40InMpJ+4F@PLBn z`6zkAi`Nufy$;`^5ZsPHiA%05hoA%6fa5b<{f9=)mh_g{UCLYzSIS9 z#G$J|A#$`etKyV7F8dc0G9)Ot>R(WrDENJVL!sjkG*yDqf*=*p{his>v&JV=KCuTI z1>EVeP+vHD?gUGa65@Db4E_`#K&e*bLl%kxciC11*#(&jD}6Y%ZUDM&Iu5TIH$&oP z@G!X}rWRP!tSZ^en7dyTww;k^;v$+Ghi8U*1rWhe`XIkGmt2?gjrWRYWk>@Fv`oIm z%*zpX(E|){b*5|1;UofIU)&Bp8tRQC`s8>YyS6gfhjU5XP(=B-lU9~fa$g6|DuJ`_ z$@jJg<|bUP+Y2X*HUgMP0jb86RtgA+S{*#WkD781bL>!RDWmo{Rx>j5SHo()7fe8~ zf?V@KX?=pxlHN&y`9G&rsgt&DGg%Wh`#oZl7u{A?XEq7l;=A543=NaI@fR z;WuTZy<6wQA9}ZvqeWxdz2QE1Wp%k_*Yv5JwY}1N-w&>n_$dn8wq-l_W!DEO(zbD> ztuNEomu=dR-O!V5-SVi>6M&P4r`r2dT)tb=j^o0WU$np-B)tJ#Jv+j6VCn1W^{1EX zUPyahxbG7m3eHL|E?M%g&(>|8SAXyNo7d-~i+#A$_14~-duO}TZToXJOYMPGn~mH@ zY}H;|>t3_rq2NZfDpn0<q>`tcD*1D2 zlvOOF7rMf>@B@Z==?*ZB9%ko0WzvfhV?`)$OknQAjK~!5mig@b7M)t(PwSL~WUj^_ z%Pr(+(pdEN_JSfE#dn#As~n-2NI@~*r`a#VK4u&RJB$KFObfVUA+@;#!yhAG|2AR! z(`W(MUZvmTm9F2tC@uBB|J-}eec=C#rax`E=Q?vgFJ%7C#WzN7kGv7R9bMSH=>J~J zyDiIY2bX<^(yl{mSs=m;`di(K;IYOFbGKFC&UlucM+}W)6s3SCV%|KV*~nOHmer$LC=GUXU^zs>um0Mr-gw8{m8aWwS|G!WyMY@9Q>R`E-ymHMC$=5^Foo=@4kyEbWJj{=H=vyLX&~_M3!kk8X zudy%Yu@u*^D1=69IpW{OJeGBh$@AdsewObNVv%+QdW$B(18u|Rj2p+F?zy*T{Vmg{ zp<-azqWn3^1S`)CXb#3a4&XU=Jh)qV7U}s*s`)ZFLTMK2*Dq6yn5cp~C1}TCN0-?R z5t^G_fy|G~C?8PXI~35#1%A}*4-wNm*kO~AuwINb%F1O5{)7TD04y{}`p9%vnhjDU*K(0UNny$;rlBICP4Q8{6kNoiD@3Q1 z3JPcgQ%KlWh%-|}D#xaSpszen0ZD3XW8){fU&c=o3DtX`YPjUWT|IRy>#doBzNBvI z2>fDZcx(WlYC43UEyY^Lj;Y^>i_Q9zaKCx9{MA^FLxm`DVa{R~c1501c z>^{kVJ*f0QbWj=n+Y|*BQ!ky4Cuy{JE!wd&JD${wAeO6PCF&fTvh__l8@<~*+517I zcUql&nqMoj(6rd`*7|hw7czl8Y2Thq<=%%5l-1ioEZ4=_X>oMSW0-g?j4hsB>bkq@ zy`B%6(ocLb(|6_}CF?a1%k5`_cRK3KK~a3$uEl3F+YaY!`0=1J@X&!bRRWw4%hgmn zcFd=80$z*q(z72_r4O9ReBtaWCFI&zF^A)cIm`)O^SfwXpU|r#X3pzV7P?-V z(?{<`;0nF<4pKDd@i^L{Ak5k5-PXn5dyew=z!%y3L1p!-1NpgDnqo9YQ#{CCOPAT} zgL8DLNqesDa|R%Z_)~v*=y)4k>!)5X%L=WN~b#@6nq+NbjY7{=R!` zmHo~s)+)yVLOi?{n%V0v2994J0KM?iF@!pekK(le1jbAM5@OKc5)Ro>0hu5Q<`F7Lv}b06L#Q5$bpw$1Th_vs&Rh}O5nA)cd7r~gAXanN_}EQj1xQ} zbIKV6!TrirytE4XhdRJaaSq8zgwl>c^FT9$f3*oGxNypdc@AoB^Ir#(RfTvGeuuCV z7nxB5jNB4q%1JN@_WUxUDvB|ROe`|rbi5QJdaX5+3}ycFOTFP}q*qs4sEl}PO~nP| z>tUH6x?zHlQb&!Hlp#BW+6$pD%y$+tS}-F8H*t^~1NW3&M={!DwYK7~@D?C;!xlmR z;uqh^m|VsrG!ob}T)0dZOAcw3&;^}h|KJJVb&pcBU!nkt27&LLJ@j)w17(Mk3-6CG>!iSbpRm*7>ng&q3?%+_xnQS_l4^3 z3sv72{67%7KDBx*)=vc^_=I9VX%#Gce;_>dskM^w5Uf)0X~01-1VAZI?evzZ3ap5# zmg&Zo%H~XE^W5I$%1u+w2kshvPxHKM!T)A;y0$0d?wxYwoE4T6mRUbmF5Yti5E{IJ z-6t*2TRyS*EWWI_HpkvgE&RQ$m%sNOx$A$gn#CVDT&oV0&24J7Y-bhd-L^4j!~21w zdOG}#mscH#KiY4xRL%t-33xqn*({9|$LkZ1V0F)Kx@T$p)Vj-Z+L99}#5%AxJ0X$d?OC}eBp{{Rw9Q0V{w literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_internal/vcs/bazaar.py b/myenv/Lib/site-packages/pip/_internal/vcs/bazaar.py new file mode 100644 index 0000000..c754b7c --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/vcs/git.py b/myenv/Lib/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 0000000..0425deb --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/vcs/mercurial.py b/myenv/Lib/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 0000000..c183d41 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/vcs/subversion.py b/myenv/Lib/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 0000000..f359266 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py b/myenv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 0000000..a413316 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_internal/wheel_builder.py b/myenv/Lib/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 0000000..93f8e1f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/__init__.py b/myenv/Lib/site-packages/pip/_vendor/__init__.py new file mode 100644 index 0000000..561089c --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e3dd303d46b53755656a9f1da4723b0da49d754 GIT binary patch literal 4576 zcmbVOU2Gf25#A%0zak}BKbB=#^2w5aXvehWe=CaHDpKsAiiH+P8_R5n6K^G+bmU$3 zmbQ4d0Hr7p83 zaoMl?C;Z-sCj#CWoCvCTB18f+%~dxq#~D~bd^TaWi#&u#!;)0iR>z5$8u%5Oh?CGQ z9}W5t@y}HEyl(m?D|D};R74U}gG;`RYmne~y@?H^@3yFZ)!&6+FL5VF5=3 z92IcweJk^0f;}$aMgcboxLLs41l%IvRspvOxLv^81>7Ov9RltY@J<1D33!))y9L}M z;N1e21>7s(Jp%3%aKC`}3V5G@_Y3%dfD-~fDBwc^enr5C1)LP{5dj|+@PL4i3HZ2x zPYC#=fKLhdw1CeD`0Pszcd6&w_fZ|3h1*EO-fepICELS80)Fi!F8Yi9#5wzM)YQym z`U=Ub29-5So`Ru_wEVQJ5)&*WpV5dV8&finWoF1GCBR{Fo)DGO%IavDEgN~+GIE4v zxrxj%Li38Aj7Hzkbnv3(ElnjAXSJ2BtWnTad6LK(!y{0l%33a0V9KOUWF@c46^fD9 zi@=K(OjTh(g6&)()Y4#@JVlM1Tre$0iIPi3pYY>KNN$rdX&HKfk+haG4azRQk*QQk z?>u=u^uzD@yP$;{F3qgBdK83MrRE`Y9aZb!yc9t!P$7Vxg{tyWbyh^wsJ{FDCFm9W zkr4Ab3zuhN{D0$f9d&|Y3yw4doa@p|)5f_RsaOqE_nLzJ&->>6Y+IGLgg4mm8#( zscXy)S%fK!QMchuFXp3^8Z?33Xqm_zyYX_O6V+SC#gmFfT%09}YViok@O+a8;q}4P z+ZNw!wwB)^Jl`Sb7|8xi$FPtG_AU-?wz&v)%{cp%**QzQi9c z|L*eg&eGnY5B)bAZZzC_s}$bzsD01F_C%>Yaj);*d#mjOH=>JpQGFb4`nCUd!$%Ew zMoP`SpPabg`p2$MyOt+Pi61@)|L8w2x=^g+8HxnrPg_tVzSauTe=VL!cXkiU=nFYA z{EGjJLlXSkfrH7bS>26gluVYuU1rqK-B5;5rcG&XNYyN+Ym;t}3)FBU<C)D~zX%s(~?VQezs7mfK_&L7pKQmd+Z+ zESM;HuRttj*{xM6N#-)dWW0FT+iJ>cgzV05sgeb%!~T!k`!+Qt(-}k8VOh^>|K>b6 zoqU;QANW2j(=c?qw=R=WZPGrtB_)|>I@}6ycW7&_Su~&tSe9xVgX><0;@8K8@Bn?$6lZEWE7_TSx z=>Ih>$!nWVa?nr}o-_8|I&L6lIVBI}gVxK0ii3KG2v@{}tS5HQ=BpK$rrU}7_T;)O zu5%~2t7LUs`?qje+gqK4t2kt|X!mX5jz_9q=sj0V%MqhcH}5U44e;j%n32;pH_B)MN*yyOaYL1&m1uTD>9lHO z$}M%OzzP)FE9H}2%=@YvGOVPju&nDdEE?zf$jIpM+ZRX1Mn_!iSwiqNRTiM&dVLfc z^%Q*Df!D~-FN}_krAOZUsn@$)JY#5iH&&_V(Br0zPtkL5i|BUlJUmox$LHu7fV}@( zS@zcc*t`Mc*o z9=|(&@51V?ldG{)3z28B7HL>|b^_t}S`fAFy48O>@lm3}9J@PquXFkQ>aL;Hme>C3 z|9kjv;Znr@nowGYO&~caL=Pq^kJx@6zaIM|6ifrFT>5ZI-D>MRc*aX4{*oY MH3^b~o`#J3AG&|nl>h($ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0183bcdb1c2df233494e85560e508acf721b1dab GIT binary patch literal 139478 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

{Q&p#UgA$W6{CyTh~5Z} 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 c;BVcj8S9J(t{xDdMj=#) z47IJ@5uU9t6A|&CJwZWP^mrh+-7vUt+ogHq@>OI0XGX9prKg7(-Ev3>T);d&Y-T;v z$grteN>z+W6G#Y*Qw3w{6ORGZFy5ddf|eMIJTwv6V~HY&mFh$)W9)DnT&2t^XQB)u z)k7~dATw~dFoq{J$T6v2t@Qjq!}^N>uDyo;DYz*}7(!S^DdR&}##?6Gb-ln%6_>`# zfT>8!7-y>muSy)}E(shcpK2>j#`?-zbOcq7fK6rS~t?Ty!V9FjmNNiaBt_<*Cfs6}a;md212f`bZFs%2@lc&CY-^-pKl zp|%pqR8&xLC`gsy&_g((3J!4Tk1C;_DxqHNCdlb3ky=p>y+sP#`)0fw8yY(D&b)bV z=Iz_}y&wM;2>1|;xralu4?PGyW*cX?nuM_VJrFmLhBQG(IUy+sjCSd+qzhJ27jrm? zIS=dZoG0nwv|IP)q@=`YkKU2T=GX^mAI$1G!)_C?MjYe$dqcx;m4cT;>B= zC>a7eq{)|XvPn%Ce%EuX4sHVuC8&NkTwvorkc z0?gy1sdM0bBcY~cCU87_Mm>b_G9g*aQ$Nai`s+Q&#BjS^}MPS zshT!3b80GACi(f)ROWoj$e831_M}#r&jR(wP0@}7^w#%%fVNx6CiEi-a78R zHuDG%Zo&=p9HI;vj_9vIv?FRVtod*d&;*Eibk}vq#uX50A-5gE_Wea+LC7*FUKpAP zm^oRCUUCLMcLrs*Ltap}-o7B5K~Z<&Y*e&l?n{N3>WpFe0Jn^)XDWbm$1Ew)jA3Td z74NKR7Dq=$DiR|MprT&t1v@E=M9S1!-ZR87AP+5fu29OGmd}QVg-odVjut2Cvb<_D z-z;pvMT31{I83{lDtU&O3gd!08U{{3JjTZ`0gSB?ls6UJWKRqRHV!*%Ma!!OlG*-jAR`7ePa#us{ugm?*@?Z@Q{*Qmg zAnmvJ&wmqx2lzJL08efOCYWXqr%Wxn%&nww{3ft8*e1jm#RV}Na5S{m1y?rM+Bp<( zLk`_q+prU}EF51L+v{?yrGAqI6Cax3aG`CXHomK!9~Bc7?>MVx+P+F4Q81gZYvIx1 zsLVm*DPV~JB;5~+d10diKv}_NUQy^u&;W_$wR@W-QuTr@)f9*6F49cijA9G(c-YG{ zV0M=)Ggx$mVKn0g=hRG|z6Ly2K8-R=5HoW3)zNBvP2PF+-D-RTvM%)Xk*|(ii{F^M zKFKo=GSR)`()5OeIsy%8pe_w;h{)XwN8P;*9I4~TQvCMRt*LuMKMda=UcqmJMCxmJ z57fN}mdx7=w-#2shu5UQmCPfl?{8QOkECY&S(2hKn-m3#hlfI`r+Et}3V9NB(Ko=n zO33N#F}oDm0?HyKy3_J0%BLl`Mihmz)TJyYED4;^OdFnF9GG>}*gvd2i+)KxJk!Yic|mnvucqVUEee zKNCgy4)IL26aSrDK`ZHGjE=z})}4*hFl~r}AUunO60!cW-m{dIJB9liON v7+S~spWyLLk0|Wj^mhoM%|1@`2zxhT2>Y*8eiwKDfu%2x1G4xP{>Fa+hk#qd literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1cc3a8add6836e5b8015a03741fb2e451cb09bc8 GIT binary patch literal 6491 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4fc8c1bda6070d7df253af90643bf18682b13499 GIT binary patch literal 3814 zcmb_fO>7&-6`tYllDiZs$+DcdiEFPdr4}8VZVM-EjU8PvVOAGYSqCkKii(V)sK!rtuv?zM$%?4!{=&A3`@>f>c z6zB+gGxPS%oA=(l`R4J@*=(9XTl~}H!d8lqzvHCSw0J;UYcSX#HYpOD+6k9d62%0? zvEnKfwW!Lm>S~o_FPpSvX6))ZA+Ry7`;tCp$lH{;v6ZbLVF}A2dH{{-N|; zm(4M&Dj39dk(DZS?k$zBI&-DK3HiAyD=)HJJSbJ2>UnF4d$upm%R?>uUMPGwp5&|b zNV&zsMz-r}9;S!Ep4JeMRr2}p$xnwTn)*Zwrevn9V%Kh8BM>43vLXv)TNR@?J_IDv zmY7@PQHn2D9l?VDwVKex7=BfPL5pCDp$<^ZD%netkyEiv;s|j5*R$!FBt}qcd z0ux3&hvXQN6G+f2>5B}lKopb&k2rW0$Qo%Ss5bdfCvVfM^r50?le>qXiTe|iaew}@ z?Eh+HTN-?CrD4Hdl4{vlGb%k80A7bL0|1b+6L8TLdEo(30Sc1+Kmc=u0Id%KC_=zx zz%2;@GY99{_vJoMW55crx=FG^muUca?hxQ&y2;i~l$;_kaU#_P^ovwDECvUFS0yqW z&j~F=&VeL_1CbxB##q<7e1|sy3j@3@aCOIz{_4#S)n6LBOCV)->wZH zhnvgvy$FL1u<$nY``c}h*xyzFT08H|^*HIl@H~jc>9GHDNp2(CGZ}#9G)M=}0)fmQ zIlNxKTVH?w?)#h9wrP)=)u8RBI5ajzZ@L4|4+!2s$YEyi6xFSMtjK; z!|=B;VCQAPcC&|MxJJf4vNxRj&d$h*-O=$4QsRiPjAoK4$mMTq4RJ ziFV0I#RsPfRMj{+SX{gZkbBmYF#3~z$duS9OjsfCl8J8t$)yCQu$V%ULxL9Whr@kH zhzBl^Aj-Cpa4(SnbknIe)rCVS`_(9l6e{OhE3w;oJ4@1I2E^wMgUBT=1Z>g92}f35R*% zS(tHi4rHQw*y{8Sith zv)HLRbEt!vLE9>*H(l2Zee>o`xHuMWJe9k7GoO~)ZY(g=92*5i1yrq4Iow37k9^Op zvJfU72wl7wuR*6|MU)4HQ&5eah0VY>*J*Iu>KL7q`Uhm=&0#?J6TmC)dA$b}811#p&$fHDB(_2Sn4Wnw4@y$hKugd;vcyiNHr8F0mxK$jt{0iu70F;_WqY354;r z3tk8EP@$AQN-I=-tP?u%5AxiXc!Av*Dqu}7fWn;NH+ Mn}x>&I_bo}0ZP|1-T(jq literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e3b8517dc8aad3e47bd249b82a061014792bb1c2 GIT binary patch literal 16251 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 OhfSL1uP6+OVE-Rb4xUv2 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5551077a3b6e3c6d5bdfb976640b27991e1c5cd4 GIT binary patch literal 4374 zcmc&%T}&L;6~6Pc%l@z|28{V}@EDxfYh$QeH>z7Z5yB8Vj&T%dD-)ve?9N^9!0gQS z&MbHlZrsRfAxVXiDlN%NP^C(7-3RxjYSk)Iq`tI$*{!J{BS&?WzT}MtN3HtQbMEXe z2CY@8FCE1FJ@>okp6}dq?*1tjixBu`{%|Do`({Eu!%p>+{f4kT1&t!ni7uEVD@+Ok zwnbB%6rq+(DJxIPd`vb2+2CX_+c4RX4NZmwLW3*_G66H3jZ8)aB9fPg9=uKThI^uq zJ{c{DiO}cRNeEt4vn<=yT*J1UG3d99X<4dI&}`0T8Y_$%CQV3QY~t#xBkJ&lk>N`h z$6oTJA*b;{7Tp!gGP~1GAZZ;jv-7+VY2h5 zhjsBb97>Pq64U`bs>@IZ^+r7ab%P$$oAid;fys~_*F!K8E(858VLbBdjurYTpM%NVJQGG~C4OQ}L{)mJ`mxvLx7;UE;EvV;egsy$uawe0ULlifT6%KC^HMFC)dC~ zO=bB+hAX5wj*@p^eU@gElsUcznxflzpv;GGQZ|4eQ`LlG!g&!d$7tHPp*V1Ehie1Q zf!k`Sl%a#paGrwVWHjBL16%CqS=*c{y5?$V6vqX0G$Po+t@@L%aNcqa6U_x;NRc+H z8Qhfy6lKU!OxwE7H`g3~-rcJmMK>6*XR`vX*9~XpWKu)>A9L(1b&V{X+Hj8oGzS3# zfGCKhW~hGh+BG+uOFP%DDYm7&Vp#bbiGE*YPF)gBW7?YTTN}X@BaKD`3=Rhta-2Na z4ff6$*E68&#c?ojf<#oNXO-6~sn0!Es=;pQC}Ecz*bYSuhpS%Rveb zoVv0vxKS!Y`;irxhpnBAoi}w{V%fe@l%;K!)vOetWOG`|9pK|BxC*roqYLzf?eowm z5?83s=z=c(LaN4x1)|nw76j;3;szlLBJ^sA1(J}*<|URqF#!=Es8f@=G$AwG#_Lq; z+)PykNB27FPo;BSPyLzdC4x94JJd{jBFKiSqYf$rm;KA{Lp}V>sc$>r?NgcwmvHKe zMb9&1mQIz{O7}~@EPYh|QR&yE-zeoDl;0|SRQm1ISHbHvHOIhU#*8+VEl_KA>J=k7 z*F0a9>~F|E)#&-NcRwi1qfsQ!^FP^x+im-j+(i)^)!rk0IZZ#mXm>O1!!_QIn0Fy4NLt)6}m zS4ts;?FX^clP9a4`=>Bdgv0?Sht}S2`bk?=CUuf0LqN-TMf+>ox4 zIpL{z!Rnfw`lhfT)W<6bRXninC|m_JFgKgmG*mV32xB($f_}YpLn8TD3=cI)AIAhJchS}W(mdq+5Xj{23IlsT_7fnp4sp|gy^@67 zs|@MF4EPh1bn&KOrJk}Lci;0tsHUCqrup-%+VktD;Kz1LVQ)u2w}vx~ zZm{Qra9g>UwW|uDw%%oiOIx`J_~3&8Ttj+_R(MVKd{wOk!h<$LWAi(Pfg4ggWVA$> z#c>qRcZIP;kjE!a#<#A|dti=1-t&6v=iw)V4NCy--Aa0pw5;pN z`0m@49#}uf%y-nI8@JS8))|2U$Zqc{8Y@Q8TCvu~AG9YHyZk}15jH8fdJ7JM0IWA*g zM-0r_5Qwnt$w}KbD;@Sc&Yr+onSBMS`3U^NtAP6A0lr^l+LK_~hdhIeBKW?;mk_*= zBC49T^}LDgMpgYDyz?tF4XUc!DOF`{xLX$%J1pRh;D*2J$6ucb%oGd@Occ&JC~lK~ zh|Ph}){#J8|-)@Qo4sUlf2lj6t=?ru~em)#%d)yukwDGIJ z@e+-wXgUwp0!10p&yGOhh43d8hH?M39&`&i`1Qvy;d1ja3_)Hr5C|ZFEszD5<2T!;stgd#xPeo_|${E{i`d2boCWC*Inm?6~{WE9? LLfaPvOOEs(CS3@G literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8bb9023838cb8b178c853bfdf8e8d9756df9980 GIT binary patch literal 6721 zcmb7IeQX;?cHiZ$>p%Xhca?$y z`K#~Eaw$@A(00I`9lm)pJM-p!{NDVwwbjo-S^CG5>3{FwxZmR+ySS|ezqbR8bx!0& zUg0u)oaeFaP#kdwdpqM!csmtW#uayE+;Mlt6ZbG4m*UO%;=W8vyd~q0`x(ux1Tw*R zFw+`u&9ueacuopZ4~+LHp-g+c9eBL)BVvcxDf;fX;~ip`*mB1e?{siiInjTI69W$& z*1FH>T=I5j)_ts9b_h0jWb{t@8}84=0IJQ;a|j7(h^xpraX zCb@cTHd)&?+a_)n9)2$ljdiZbuk!jZ&lx=Hg=(>pyGArz^-aT7zF33Tr3-VnbcyP7f+DR-bJtbr zGL@I5x$Qvr1Im+Ps+b3|LxqEBFqbkEEST5yd=zJ@{+nd_qsek zr^|*E$qLCOVL{U8vT`<-Se8^#qp_rrOiM{kHK?Y<(o&Afx*;d^Xf|&KrPZuVrG$_& zBucwsJ)qT`J`B}uZYL1>BoKM$8|#zzCg1bDAG{x|c1CVr2J+pJw@!<03c569pF@+P;=D|LD5P~R&xaktAgta`YUPGxl97sPbRm{DGD?i5lIO?Hjt}b+sH~<&&PC5f z$H_`sq7qq=h$=~9eHud}pplB4lno_MbRplgB5hfsWNe(IwH(!nrijt{z(W7%=(8k3 zhHTe>JGg0pW(+;x9ym;wE-5L~XYa3OftE^mYZ5GUHyup0MnJ1a?mcp=y$DTaJmLW@~!kShJ9udr#r$ z7N|hhZCratspYHEM$=%@{s(A)Gv^jj{)bADe^{fgIf@SYT9JQ}i(jn8?8d=Ghdq-2 z8o$&qx3lQ{@$vur+#+9e%Jr4O{5)uiW5)E>P7++&Q?M4(TNAG7vBX190u?%k;6;a# zBV=`mwph)snzq&m3FZcLlog(jrRZ*mqDsEd*?a)K-6ae5(BP^r!8weje&Ah1g-vJaDl+&{o`thcb`$rC&EFDUun$3XT0V z225YJiE`5TK5(2NQ2hWTfkI#tFb38NdrV&D)npelm~f=!XHeX{INS}`j{r^t!!0f4Lq1J6iY3|f7Swaoto|AE(rt7|R;gFGw6`m9CR!z9o|AGBJq zRdj#}`N4#05~7_ze2lgau^-S@UVqGBn8zr{YDx?9jKTC|bMp{pzHDWYF;YWEVIK{{ zNQ$y!Xo%u28KPrgj-o;^xDa+97^5`?ze}HoO2;v1be7dIT`LSUoO-m`=Uv1xS*XDD zI=V{U&jVc>Q`^VRRNxmlv)g%W<9pl3BbDQktyJasxoYQgrOUfLL+?HRXzSnPd1RJq34i+9D+%rPjmrX^5os&7BhIo(*2haqZTF_EavoSfF-9-14j5!PSOpX zK!!mCz&v3$NU~>W06bLLrWeVHS-o> zhou#Wl%b72*>o(eGzC3yM6xOyiA15harIG~d;KpZmD461q|L z-T3OJabxf?`)ouWgE(v$$cIY-teXYV!UYQfzML~ONHb-~3IIYf^A?$6jObBPM~4}C zA#IR(08)q%!7H%SY}m2sGBR03Z`v|yN};Q1%eAQc2K4A?A7I0w*GjIPQ0HB7eevF6 zB}B?T!gh$c;bmZiH^3Q7ywd{~x)=cyuf}#s)!V0UD9aDG130a2bNGslvP>SqW1Od%prf zHl?is+SWB9Y7lS{Xd7u<4a<3;37L^Z>kH8#>k*}8Nzs5B&1eN#Q3RI!NNVKP%@{aQ zJ@#E`K8E)eF^u#uSK^hIzg?dJCQw$Jht{TvP)UJxN--T0o}?60C1XXROEEwOhL*%+ z9OLQYT<_$Q8OQ( zfunpJ!Rj5XeumZ0vHDA_zQF2Z zOd?n~wEYm*8PX7)OAtYimM++K7`$1 zSpy({+wm&*6aE0VEY{JA#e+4&GM<5haV`T~waQrauo1Y%Ej)BU`5)#VV&Sew6;? z^h~WI^!CJC6C2|8iI*zy3%pb#AKB=w1jy#~56@RlUSzcY=pNiWwe{5fShahs9dFBT z$$z#~a_;u@ZwzkS+#G*5UhR3h6xeC+dS`Y0&3kWdu2p-_Roc&$+`Grg=8^X z6@ewffX;f<#~B)u)iL-BSl|#9Gw`ng0C;Qt^#I^C?8WMb@aUMgA^`BaegD-L9PyN0 zgL}tLxL@V>U*dUpmjwdY5O#;^VH#-xTJ#ZxkbOT|OUAAI8l?kE#>uU02-9-Y3C0rc z!(7|SLLpl~ykyzf_v^eU5bG{HAY}wuiRKJh(b?s#m1&`2!sTrqulOliw*`?fuP{5| zCOcZY$&TizqR8`SEm0+qds=@O^uJ xo5g2e191Hh%E#3)mjqADZO5?!NE^2QRjc{{eQ_5kdd} literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dcedfcd9fe002229390473fb0d26c451e7014922 GIT binary patch literal 5288 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 Iw4-P7AEEA;9smFU literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44b220827d43dae574d82c799557c2e079499894 GIT binary patch literal 1701 zcmaJ>OKclO7@qO2*XwmQe#E3{5?VJ2l;vR~2oNHQC~nk8z#yd@*ce$Gdq|e-!_2Hh zV{IfCAr++F6LI1Q3J2iS3aNL*#X&hND@7_o72>v1+6yOU){i(q7|XNY|Nr0o`_KQ_ zpJiDBbgln1v-U+4fZv(WTU-ag!yhQv1~pKF1~8!tA;S?PVsa{H@+u$7oDnqzRR}R} z#7t2YAwV2HL%C5SZc3^Y+5~D#sEH8Aj3HB2KT%QhmG){%}RhlgKMunk<;k{sBx?{T+Zd)s2lqh?g}02mgs_yXmS6!Y7tl5?RtRV1P*tcvjh~rq(uEhm8GeI9Bq~O z66s&bkFWLa>ZhumEYd_&s)k00pAJuHD+a2V$XT;%q#0XtocesB&=eUU6e%2z(NHmq z-jAAg!*Z0k&l5x)L_-I7nAwwTOR+7@n6lO>R_9eX!*sE(j>M^y>#avkDi!C;@6oVH zSu@ZLRDQ=om$1Hp%I&Y(-?hJQ-`l&@zSF*&+q=2Sv4CM!dSaGD13sodL7|>ebXN*4zw6PO@qnO zKUt<*3j|p(d2Z*z?W?yJzecSEFMIBn?A-nnbFH_39iH$+*~^~wMjrPv6W(dX8-M1Z z97_tV%Rvf6CHUlJ^8fv(yQLf^WO8bLHZO- zdD3{m(dYfdL=dIVKmeK1AjXgg(o;d4Aqk{rf&@cD;M9wO%+N5%&IU<_QeZ3}`U)~Y M7=1WGbz$It159$@HUIzs literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py new file mode 100644 index 0000000..2c84208 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py @@ -0,0 +1,70 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import logging +from argparse import ArgumentParser +from typing import TYPE_CHECKING + +from pip._vendor import requests + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import logger + +if TYPE_CHECKING: + from argparse import Namespace + + from pip._vendor.cachecontrol.controller import CacheController + + +def setup_logging() -> 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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 0000000..fbb4ecc --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 0000000..3293b00 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 0000000..24ff469 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c13f1de84446dce94694e1855140ca9b6b202f0 GIT binary patch literal 462 zcmah`Jxc>Y5Z%4I7(GlS_7)bNVh$`tQY2y}3W^}d!m_zrlO=l}?4H3Zlg6K5D|U9; zDMEU&xwHp1TG%aUsN=3{kL{?9f2ObxG)y3L>DxqDc zGHq3qF(#a2d<{m5f{(s}#wI$FR7gZPJ)>wpqT7OXDatSNoBTE(4A1ks{C;WJ8}{=- z{(v?(X%d_W;-{=bP?*uEi*{KPNtV*}g!moOq7tdu-04Q{-;E|jx)`&Fr5IO}teD*j kZr)f3a)5ve0Mz0uGLmEC2ui literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09e87f2e280c1074e9b1cdb448728bd52823b2d0 GIT binary patch literal 7790 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 z zw6I4p@(OI66k{@Ns>2zb?YA>39kut7T7Ej0$*Y=S1A9Zch_Nc*LE~=rjQ}mxROQYB z7)*?{lvTiz*@7L1y?}hJvM_MQPTa$3DhvCFJG(x+0 zWM+)t7VG@I=7$m;f+6&6B)Bc1NhD)PR3umk+g^lgK#?G-8hE~Vnf!qlBzfJ>NnN%e zcH_T$xoc(Hq5gD5^Vn;pdEpdAOh}rHXDA6zL4vJv!_luh)8ZIg$Jg2N?9~ApQ)xI1 zdHQ0iicvjARz|=f_9(E(lc{uWlF5N%Xxc&E^Ysb8;`)Tm zv+x@r^{uT2$4r|R<3eLG4xvJ`pqHKi(vUJC-GJdRDKyqWmJC()Q|;pP|0|B&0c10~ z)T;5F59DW=*KZ#9m`1*S*7bq^wcy}-3~oQbE2s`S?P-r7HwvU48(7#Dw{O1cHb~&f z20I~b0Ezo@XALs`?18+)h77Q4Er}sy6eA}F-(p$P$_GC*@NeJ`09CkI^Gj04T8NjFb(xoXY~Vq`hIPP@fPZc+4$L>76y2%9 zGyLYmZMHYB?KR+JgDVc5W|avm@DWtt%n;7pS(UF0!;epzlFzZubEi-B`R(L01}R3% zLlJ^0Mb8;<{$3le&%o)3(aj_w;G5v1Egw^woTM2B0Py>n0KDbH7qTv9dZQuuBOsA9 z^GTFR;--U6gQ^eU-{=7{OV<6Q>6uUbJ=d~-#Pl24XVF$*bfv>4k>Q)te&rz zbbmHvW~K;YbQcobyRzRw?23s^hPffya6>w@&e^rHJ1e**-{Wsdu!Ot_xk zkyoX@4{T literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d5b4b2853911e2a8472a319d84cad682783dfba GIT binary patch literal 2760 zcmbVOU2GIp6u$GfJ6mRHp`|VVQ=pMWXweugNHDRG(g?+fJh(1ShMn7X+S%Fl&TQ$f zTT)GpZKA38()CG9NR-qEe8ZUVZhYCMR+`l|7y=HnCca?XjWqaxH z_K?;@3Dp6Z&k;(Jf<=;|rCP$2oRqAXB|p~B~O7_mS!oy5wYT+zMPCg zABA2mNQuos0~g4}r^Pj5aSW1$>Q*kbB$SBpWV=9a3Im|6oX)x~SSowe8Dw$T_wbyq zKmHWD-s7o@9%Ww2bm%xuop^m!**@oFpABqrgqgAx1i23Ad_UdrF~ldB36Y7SqB9=fJ4y(gE>+nBgnF$ zjnv${+?T<5Pq1JGIWc0Z5aC2_tM3<4<-zm`n| z?(rja5p@psk&n`N8&T_{)!ye>it`b~U_+}TG$EIy5d>sIo7`HGN6@|v%_2WMK^M=K zf(PsA_U?qD{d z)uO_qe$Zfhw(I$(o2CpM8c1&T3PT43Qr=H9R5OS&nsdxF4HP&+#{0Hqh1h&I}NxkP%P^BriVV&c?(0Z9p>vo5X7KhZx+ZT zc^Dy0ZOdBIZ2wIE?75k9<^ARSlGb@I-d2v@X#XvK=w9odIp>;lqvyL5-=0`(Jv!aD z+}JvMb>?cNv2%Gx$2Z+yci(C$cQ5XE^~>mT%g*x9LQCiL>H3Z5XU>; zp|fYP^Y~)N>$fj1X}u3>GC9Zfw(mQaw4*%upPjGALEHbAujt=(85;qh0BXh)F|2VR zRGkRbmNnTLGUBp_%#g6EHXECX-BsHc)b?`olDa!oxmFs0hY<8MPuFo6Jdeut5IsdM z?S}A&D*epj^dx~%SlCvJlR!S-E0cnd5R3h1sFR~iAIvg6?NF21?vQRej_war9SfCi zySk~v!v>|=qg^@_c>Rj)4>yG2qw8rikMCc{Ktc+mTE=4x@puZnK;bfqO>5xeD+htw zdlASaS&5LA_PJx%j?JCCcJlY;{nNd*FuAMkTF`ctFDz*t4<*ua;Av3NP7W%fI~N-G z1{bC0J?iQBcu{z3vaX)XW*so~u;AV#PF4zM<5?!?)iLSLj65)j5qZTL(|0WndYh3jW zHU;X55Sf$gHDJMz@LmA2A_;= 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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 0000000..f4f68c4 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 0000000..d7dd86e --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 0000000..2514390 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 0000000..f6e5634 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 0000000..a49487a --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py b/myenv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 0000000..f618bc3 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/certifi/__init__.py b/myenv/Lib/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 0000000..f61d77f --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2024.08.30" diff --git a/myenv/Lib/site-packages/pip/_vendor/certifi/__main__.py b/myenv/Lib/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 0000000..0037634 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..444698049ed993d8a047d490bccdbb126b2a8b88 GIT binary patch literal 345 zcmYjMF-XHe6unDQTN~;of{PVgI@p%#AR;b0icT)!@VMr_?a|~CE-|%E*2UG$)zwWm zMd&Ur*G;l0IJpVM-76^ghWFq9?|=UPFO^Ce8T6i4x<@8{Op`xYzhY7~;u>+paezYX z;n4CdjJU<^j^)|h@ti@SHuH&1Tg}Q#ek4TAvY zS|NA*=)av8DP=)GY3@>*fl5RqDZND#Gm5@5Lpz(~Ffj&U0h|Ikkg%&n21MWJJAJQ5 z<4gUZAFJcx_(G5L6KMsk&1kHcpNbwM;Q(Yt_C%W`B8AnM`90Qwgv26ln1zx@s^No5 z#j$8mDx^p$t;d7Bv=v7DB!F$@nj@xfCJTnXY>e?6T7Gxuull;YbY6U&TO7J-)_6a3 CFKCSb literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a6db1967460d48a409ee693c33c84ce023723db9 GIT binary patch literal 672 zcmZutO=uHA6rS1tT}&$tLhuws(TGXFqqKt9qf{?~goS0gGp3vDAG4d(6c4o^ReJHJ zM~_N8=uHuN7caZCk~&^09>kkaJnKxl+gu!&_rCeQ_uhOnpDPs$@YVlxe(f*MKg6M2 zY5|V+Id~2*z|aRBktH7nQb!8pjtqeW2+51DGrnzG`YFl8Fmn0jIQ8XO6$e}+8Vyk_6!6A~Nw zj7hh&+0LtLVR&@kB8qfgzy`f{|VZM zX8lQRV%BrBzGt4>)DD0)0o5E-pDn+*^6Fs*s{3H^K(9>nTCUgj^s}4Fp{#E&Z7qFO Y%%_)jE`L$ZeCO!G&c(+o^fVv-58aEhssI20 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c9e68d054e79d8265a0f6cc72bfe92bc3487ac3 GIT binary patch literal 3238 zcmbVOO>7&-6`uVgmlVmBM2e!V)FNa%Hf@V;T(!0P} zV=L_cSTE9DFAD3$3yF$UkiNHGU(b56&U)T{`wRV^9ViTdjh6>2$wHDLdQu-K9p2h? z;Njl(z@NepjEHIp|6e*nB19Y3Bz;Kh*VEbnJR5|DXNhXbH-&=apC#3^kD<;!a+w=? zRMn|%%p3XIO7xFiiALuZ3@ckPwQFTPOLhAity)=oLC+dh%T~%|#Wu`pwrr{$$DGfq z3a*r|>6NTWvxaSDRkLdARolu(pWrE`-B4#CH8>Mm0U8IbeFD@SVuS8T343>l24UC8 zeg6qVR!EMS&arNveD=)Qm(S11XXjpXMOoID4O^D)kv7i%mV!F_i{eE~r&duZ>&tp^ zrmDY0jq7^Rx$A5?|8PF6|JC`x`DeENr~03r51oG%Pn4A_id>_LY8#76v9h99uNS9` zD@Dt&_3@gbE-F`bt5`E?$K~sKRWs>vAIRgXNp(QemAqYaV3AdOnIgBbSt(F!zbp}L~UfR()y8!xMWW|K zngrvDS9M$NQjj8pXd2ZpsthVD1v`NC*ygE|@X$I9s)uqJGP2*6mcVlhiBLoO2rek){|yG)jt96L>a1n?d0 zp}Xfki;r)n9wvwHoO;oVc@CXDD!k&=Hb z=BL!?z5Mh1deQVu{<6w} zmNip_Gji67)k%BIcsF((K0_cMWTQH7x=Eu_GpSuRuH=J6u(ob8@BZ=%N~eN&z-005 z2q-;(%FE6dz;gwArKVeM2n>{RiWS+7{?_}1n}a8Ac((J|;)>^koZEg(SNv7yi|;f& z1Cuc#Rs?j5V;JTeR$%ycj4*wllX#nFn4>L`@ZlzxtaHirr3c);ulW;?2h(e>0)N-0 zTKur^-1<-21WfA$Bgo9U`jnt;g-9sU6o%@;&_?=!F#0wBo8D=e&NMKs2}YRpr_C~L zkqC*;`Tj5X=N>1L>n}G`2kNNlZf0ouNZ@>G0aQ)*#uFeVE?& zO(ZOgJ{-ujIIxcg_qGJEu!Us06-G}a1F05{X+=pi-tI#$%?abUbug`H?;gCMe+Qq$ BlXL(8 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/certifi/cacert.pem b/myenv/Lib/site-packages/pip/_vendor/certifi/cacert.pem new file mode 100644 index 0000000..3c165a1 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/certifi/cacert.pem @@ -0,0 +1,4929 @@ + +# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Label: "GlobalSign Root CA" +# Serial: 4835703278459707669005204 +# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a +# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c +# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG +A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv +b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw +MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i +YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT +aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ +jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp +xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp +1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG +snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ +U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 +9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B +AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz +yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE +38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP +AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad +DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME +HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Label: "Entrust.net Premium 2048 Secure Server CA" +# Serial: 946069240 +# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 +# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 +# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML +RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp +bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 +IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 +MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 +LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp +YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG +A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq +K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe +sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX +MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT +XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ +HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH +4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub +j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo +U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b +u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ +bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er +fF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- + +# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Label: "Baltimore CyberTrust Root" +# Serial: 33554617 +# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 +# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 +# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ +RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD +VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX +DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y +ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy +VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr +mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr +IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK +mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu +XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy +dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye +jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 +BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 +DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 +9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx +jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 +Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz +ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS +R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Label: "Entrust Root Certification Authority" +# Serial: 1164660820 +# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 +# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 +# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +# Issuer: CN=AAA Certificate Services O=Comodo CA Limited +# Subject: CN=AAA Certificate Services O=Comodo CA Limited +# Label: "Comodo AAA Services root" +# Serial: 1 +# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 +# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 +# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2" +# Serial: 1289 +# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b +# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 +# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3" +# Serial: 1478 +# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf +# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 +# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Label: "XRamp Global CA Root" +# Serial: 107108908803651509692980124233745014957 +# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 +# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 +# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB +gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk +MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY +UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx +NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 +dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy +dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 +38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP +KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q +DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 +qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa +JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi +PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P +BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs +jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 +eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR +vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa +IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy +i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ +O+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Label: "Go Daddy Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 +# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 +# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh +MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE +YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 +MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo +ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg +MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN +ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA +PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w +wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi +EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY +avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ +YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE +sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h +/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 +IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD +ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy +OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P +TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER +dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf +ReYNnyicsbkqWletNw+vHX/bvZ8= +-----END CERTIFICATE----- + +# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Label: "Starfield Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 +# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a +# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl +MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp +U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw +NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE +ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp +ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 +DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf +8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN ++lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 +X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa +K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA +1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G +A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR +zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 +YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD +bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w +DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 +L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D +eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp +VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY +WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root CA" +# Serial: 17154717934120587862167794914071425081 +# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 +# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 +# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root CA" +# Serial: 10944719598952040374951832963794454346 +# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e +# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 +# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert High Assurance EV Root CA" +# Serial: 3553400076410547919724730734378100087 +# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a +# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 +# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Label: "SwissSign Gold CA - G2" +# Serial: 13492815561806991280 +# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 +# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 +# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Label: "SwissSign Silver CA - G2" +# Serial: 5700383053117599563 +# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 +# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb +# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SecureTrust CA O=SecureTrust Corporation +# Subject: CN=SecureTrust CA O=SecureTrust Corporation +# Label: "SecureTrust CA" +# Serial: 17199774589125277788362757014266862032 +# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 +# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 +# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +# Issuer: CN=Secure Global CA O=SecureTrust Corporation +# Subject: CN=Secure Global CA O=SecureTrust Corporation +# Label: "Secure Global CA" +# Serial: 9751836167731051554232119481456978597 +# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de +# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b +# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO Certification Authority O=COMODO CA Limited +# Label: "COMODO Certification Authority" +# Serial: 104350513648249232941998508985834464573 +# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 +# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b +# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- + +# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Label: "COMODO ECC Certification Authority" +# Serial: 41578283867086692638256921589707938090 +# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 +# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 +# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +# Issuer: CN=Certigna O=Dhimyotis +# Subject: CN=Certigna O=Dhimyotis +# Label: "Certigna" +# Serial: 18364802974209362175 +# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff +# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 +# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Label: "ePKI Root Certification Authority" +# Serial: 28956088682735189655030529057352760477 +# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 +# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 +# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +# Issuer: O=certSIGN OU=certSIGN ROOT CA +# Subject: O=certSIGN OU=certSIGN ROOT CA +# Label: "certSIGN ROOT CA" +# Serial: 35210227249154 +# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 +# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b +# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" +# Serial: 80544274841616 +# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 +# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 +# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Label: "SecureSign RootCA11" +# Serial: 1 +# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 +# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 +# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr +MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG +A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 +MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp +Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD +QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz +i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 +h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV +MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 +UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni +8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC +h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD +VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB +AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm +KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ +X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr +QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 +pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN +QSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Label: "Microsec e-Szigno Root CA 2009" +# Serial: 14014712776195784473 +# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 +# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e +# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Label: "GlobalSign Root CA - R3" +# Serial: 4835703278459759426209954 +# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 +# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad +# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- + +# Issuer: CN=Izenpe.com O=IZENPE S.A. +# Subject: CN=Izenpe.com O=IZENPE S.A. +# Label: "Izenpe.com" +# Serial: 917563065490389241595536686991402621 +# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 +# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 +# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Label: "Go Daddy Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 +# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b +# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 +# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e +# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Services Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 +# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f +# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Commercial O=AffirmTrust +# Subject: CN=AffirmTrust Commercial O=AffirmTrust +# Label: "AffirmTrust Commercial" +# Serial: 8608355977964138876 +# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 +# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 +# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Networking O=AffirmTrust +# Subject: CN=AffirmTrust Networking O=AffirmTrust +# Label: "AffirmTrust Networking" +# Serial: 8957382827206547757 +# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f +# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f +# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium O=AffirmTrust +# Subject: CN=AffirmTrust Premium O=AffirmTrust +# Label: "AffirmTrust Premium" +# Serial: 7893706540734352110 +# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 +# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 +# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust +# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust +# Label: "AffirmTrust Premium ECC" +# Serial: 8401224907861490260 +# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d +# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb +# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA" +# Serial: 279744 +# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 +# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e +# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Label: "TWCA Root Certification Authority" +# Serial: 1 +# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 +# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 +# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Label: "Security Communication RootCA2" +# Serial: 0 +# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 +# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 +# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Label: "Actalis Authentication Root CA" +# Serial: 6271844772424770508 +# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 +# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac +# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 2 Root CA" +# Serial: 2 +# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 +# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 +# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 3 Root CA" +# Serial: 2 +# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec +# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 +# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 3" +# Serial: 1 +# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef +# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 +# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 2009" +# Serial: 623603 +# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f +# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 +# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 EV 2009" +# Serial: 623604 +# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 +# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 +# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +# Issuer: CN=CA Disig Root R2 O=Disig a.s. +# Subject: CN=CA Disig Root R2 O=Disig a.s. +# Label: "CA Disig Root R2" +# Serial: 10572350602393338211 +# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 +# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 +# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Label: "ACCVRAIZ1" +# Serial: 6828503384748696800 +# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 +# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 +# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA Global Root CA" +# Serial: 3262 +# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 +# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 +# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- + +# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Label: "TeliaSonera Root CA v1" +# Serial: 199041966741090107964904287217786801558 +# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c +# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 +# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 2" +# Serial: 1 +# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a +# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 +# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot 2011 O=Atos +# Subject: CN=Atos TrustedRoot 2011 O=Atos +# Label: "Atos TrustedRoot 2011" +# Serial: 6643877497813316402 +# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 +# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 +# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 1 G3" +# Serial: 687049649626669250736271037606554624078720034195 +# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab +# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 +# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2 G3" +# Serial: 390156079458959257446133169266079962026824725800 +# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 +# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 +# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3 G3" +# Serial: 268090761170461462463995952157327242137089239581 +# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 +# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d +# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G2" +# Serial: 15385348160840213938643033620894905419 +# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d +# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f +# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G3" +# Serial: 15459312981008553731928384953135426796 +# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb +# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 +# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G2" +# Serial: 4293743540046975378534879503202253541 +# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 +# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 +# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G3" +# Serial: 7089244469030293291760083333884364146 +# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca +# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e +# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Trusted Root G4" +# Serial: 7451500558977370777930084869016614236 +# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 +# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 +# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- + +# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Label: "COMODO RSA Certification Authority" +# Serial: 101909084537582093308941363524873193117 +# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 +# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 +# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Label: "USERTrust RSA Certification Authority" +# Serial: 2645093764781058787591871645665788717 +# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 +# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e +# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Label: "USERTrust ECC Certification Authority" +# Serial: 123013823720199481456569720443997572134 +# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 +# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 +# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Label: "GlobalSign ECC Root CA - R5" +# Serial: 32785792099990507226680698011560947931244 +# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 +# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa +# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Label: "IdenTrust Commercial Root CA 1" +# Serial: 13298821034946342390520003877796839426 +# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 +# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 +# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Label: "IdenTrust Public Sector Root CA 1" +# Serial: 13298821034946342390521976156843933698 +# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba +# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd +# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G2" +# Serial: 1246989352 +# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 +# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 +# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - EC1" +# Serial: 51543124481930649114116133369 +# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc +# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 +# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority +# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority +# Label: "CFCA EV ROOT" +# Serial: 407555286 +# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 +# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 +# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GB CA" +# Serial: 157768595616588414422159278966750757568 +# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d +# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed +# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Label: "SZAFIR ROOT CA2" +# Serial: 357043034767186914217277344587386743377558296292 +# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 +# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de +# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA 2" +# Serial: 44979900017204383099463764357512596969 +# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 +# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 +# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce +# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 +# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef +# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 +# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X1 O=Internet Security Research Group +# Subject: CN=ISRG Root X1 O=Internet Security Research Group +# Label: "ISRG Root X1" +# Serial: 172886928669790476064670243504169061120 +# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e +# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 +# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- + +# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Label: "AC RAIZ FNMT-RCM" +# Serial: 485876308206448804701554682760554759 +# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d +# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 +# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 1 O=Amazon +# Subject: CN=Amazon Root CA 1 O=Amazon +# Label: "Amazon Root CA 1" +# Serial: 143266978916655856878034712317230054538369994 +# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 +# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 +# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 2 O=Amazon +# Subject: CN=Amazon Root CA 2 O=Amazon +# Label: "Amazon Root CA 2" +# Serial: 143266982885963551818349160658925006970653239 +# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 +# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a +# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 3 O=Amazon +# Subject: CN=Amazon Root CA 3 O=Amazon +# Label: "Amazon Root CA 3" +# Serial: 143266986699090766294700635381230934788665930 +# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 +# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e +# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 4 O=Amazon +# Subject: CN=Amazon Root CA 4 O=Amazon +# Label: "Amazon Root CA 4" +# Serial: 143266989758080763974105200630763877849284878 +# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd +# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be +# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- + +# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" +# Serial: 1 +# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 +# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca +# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- + +# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Label: "GDCA TrustAUTH R5 ROOT" +# Serial: 9009899650740120186 +# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 +# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 +# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE +BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 +MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w +HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj +Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj +TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u +KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj +qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm +MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 +ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP +zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk +L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC +jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA +HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC +AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm +DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 +COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry +L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf +JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg +IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io +2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV +09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ +XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq +T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe +MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Label: "SSL.com Root Certification Authority RSA" +# Serial: 8875640296558310041 +# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 +# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb +# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE +BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK +DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz +OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R +xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX +qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC +C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 +6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh +/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF +YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E +JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc +US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 +ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm ++Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi +M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G +A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV +cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc +Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs +PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ +q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 +cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr +a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I +H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y +K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu +nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf +oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY +Ic2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com Root Certification Authority ECC" +# Serial: 8495723813297216424 +# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e +# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a +# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz +WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 +b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS +b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI +7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg +CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud +EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD +VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T +kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ +gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority RSA R2" +# Serial: 6248227494352943350 +# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 +# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a +# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV +BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE +CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy +MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G +A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD +DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq +M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf +OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa +4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 +HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR +aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA +b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ +Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV +PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO +pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu +UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY +MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 +9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW +s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 +Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg +cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM +79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz +/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt +ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm +Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK +QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ +w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi +S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 +mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority ECC" +# Serial: 3182246526754555285 +# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 +# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d +# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx +NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv +bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA +VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku +WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP +MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX +5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ +ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg +h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Label: "GlobalSign Root CA - R6" +# Serial: 1417766617973444989252670301619537 +# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae +# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 +# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg +MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx +MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET +MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI +xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k +ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD +aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw +LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw +1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX +k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 +SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h +bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n +WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY +rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce +MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu +bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt +Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 +55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj +vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf +cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz +oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp +nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs +pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v +JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R +8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 +5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GC CA" +# Serial: 44084345621038548146064804565436152554 +# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 +# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 +# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw +CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 +bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg +Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ +BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu +ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS +b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni +eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W +p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T +rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV +57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg +Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- + +# Issuer: CN=UCA Global G2 Root O=UniTrust +# Subject: CN=UCA Global G2 Root O=UniTrust +# Label: "UCA Global G2 Root" +# Serial: 124779693093741543919145257850076631279 +# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 +# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a +# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH +bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x +CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds +b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr +b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 +kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm +VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R +VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc +C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj +tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY +D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv +j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl +NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 +iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP +O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV +ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj +L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl +1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU +b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV +PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj +y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb +EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg +DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI ++Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy +YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX +UB+K+wb1whnw0A== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Extended Validation Root O=UniTrust +# Subject: CN=UCA Extended Validation Root O=UniTrust +# Label: "UCA Extended Validation Root" +# Serial: 106100277556486529736699587978573607008 +# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 +# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a +# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF +eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx +MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV +BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog +D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS +sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop +O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk +sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi +c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj +VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz +KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ +TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G +sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs +1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD +fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN +l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ +VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 +c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp +4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s +t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj +2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO +vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C +xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx +cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM +fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax +-----END CERTIFICATE----- + +# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Label: "Certigna Root CA" +# Serial: 269714418870597844693661054334862075617 +# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 +# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 +# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw +WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw +MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x +MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD +VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX +BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO +ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M +CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu +I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm +TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh +C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf +ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz +IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT +Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k +JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 +hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB +GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov +L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo +dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr +aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq +hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L +6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG +HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 +0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB +lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi +o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 +gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v +faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 +Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh +jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw +3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign Root CA - G1" +# Serial: 235931866688319308814040 +# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac +# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c +# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD +VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU +ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH +MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO +MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv +Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz +f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO +8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq +d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM +tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt +Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB +o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x +PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM +wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d +GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH +6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby +RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign ECC Root CA - G3" +# Serial: 287880440101571086945156 +# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 +# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 +# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG +EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo +bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ +TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s +b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 +WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS +fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB +zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq +hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB +CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD ++JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Label: "emSign Root CA - C1" +# Serial: 825510296613316004955058 +# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 +# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 +# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG +A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg +SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v +dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ +BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ +HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH +3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH +GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c +xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 +aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq +TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 +/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 +kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG +YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT ++xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo +WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Label: "emSign ECC Root CA - C3" +# Serial: 582948710642506000014504 +# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 +# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 +# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG +EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx +IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND +IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci +MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti +sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O +BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB +Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c +3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J +0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Label: "Hongkong Post Root CA 3" +# Serial: 46170865288971385588281144162979347873371282084 +# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 +# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 +# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 +-----BEGIN CERTIFICATE----- +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 +mpv0 +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G4" +# Serial: 289383649854506086828220374796556676440 +# MD5 Fingerprint: 89:53:f1:83:23:b7:7c:8e:05:f1:8c:71:38:4e:1f:88 +# SHA1 Fingerprint: 14:88:4e:86:26:37:b0:26:af:59:62:5c:40:77:ec:35:29:ba:96:01 +# SHA256 Fingerprint: db:35:17:d1:f6:73:2a:2d:5a:b9:7c:53:3e:c7:07:79:ee:32:70:a6:2f:b4:ac:42:38:37:24:60:e6:f0:1e:88 +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAw +gb4xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQL +Ex9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykg +MjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAw +BgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0 +MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYTAlVT +MRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1 +c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJ +bmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3Qg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3DumSXbcr3DbVZwbPLqGgZ +2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV3imz/f3E +T+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j +5pds8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAM +C1rlLAHGVK/XqsEQe9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73T +DtTUXm6Hnmo9RR3RXRv06QqsYJn7ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNX +wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A +2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV7rtNOzK+mndm +nqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 +dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwl +N4y6mACXi0mWHv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNj +c0kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9nMA0GCSqGSIb3DQEBCwUAA4ICAQAS +5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4QjbRaZIxowLByQzTS +Gwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht7LGr +hFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/ +B7NTeLUKYvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uI +AeV8KEsD+UmDfLJ/fOPtjqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbw +H5Lk6rWS02FREAutp9lfx1/cH6NcjKF+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+ +b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKWRGhXxNUzzxkvFMSUHHuk +2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjAJOgc47Ol +IQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk +5F6G+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuY +n/PIjhs4ViFqUZPTkcpG2om3PVODLAgfi49T3f+sHw== +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft ECC Root Certificate Authority 2017" +# Serial: 136839042543790627607696632466672567020 +# MD5 Fingerprint: dd:a1:03:e6:4a:93:10:d1:bf:f0:19:42:cb:fe:ed:67 +# SHA1 Fingerprint: 99:9a:64:c3:7f:f4:7d:9f:ab:95:f1:47:69:89:14:60:ee:c4:c3:c5 +# SHA256 Fingerprint: 35:8d:f3:9d:76:4a:f9:e1:b7:66:e9:c9:72:df:35:2e:e1:5c:fa:c2:27:af:6a:d1:d7:0e:8e:4a:6e:dc:ba:02 +-----BEGIN CERTIFICATE----- +MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYD +VQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIw +MTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4MjMxNjA0WjBlMQswCQYDVQQGEwJV +UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNy +b3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZR +ogPZnZH6thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYb +hGBKia/teQ87zvH2RPUBeMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBTIy5lycFIM+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3 +FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlfXu5gKcs68tvWMoQZP3zV +L8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaReNtUjGUB +iudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft RSA Root Certificate Authority 2017" +# Serial: 40975477897264996090493496164228220339 +# MD5 Fingerprint: 10:ff:00:ff:cf:c9:f8:c7:7a:c0:ee:35:8e:c9:0f:47 +# SHA1 Fingerprint: 73:a5:e6:4a:3b:ff:83:16:ff:0e:dc:cc:61:8a:90:6e:4e:ae:4d:74 +# SHA256 Fingerprint: c7:41:f7:0f:4b:2a:8d:88:bf:2e:71:c1:41:22:ef:53:ef:10:eb:a0:cf:a5:e6:4c:fa:20:f4:18:85:30:73:e0 +-----BEGIN CERTIFICATE----- +MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBl +MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw +NAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIwNzE4MjMwMDIzWjBlMQswCQYDVQQG +EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1N +aWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZ +Nt9GkMml7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0 +ZdDMbRnMlfl7rEqUrQ7eS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1 +HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw71VdyvD/IybLeS2v4I2wDwAW9lcfNcztm +gGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+dkC0zVJhUXAoP8XFWvLJ +jEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49FyGcohJUc +aDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaG +YaRSMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6 +W6IYZVcSn2i51BVrlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4K +UGsTuqwPN1q3ErWQgR5WrlcihtnJ0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH ++FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJClTUFLkqqNfs+avNJVgyeY+Q +W5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZC +LgLNFgVZJ8og6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OC +gMNPOsduET/m4xaRhPtthH80dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6 +tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk+ONVFT24bcMKpBLBaYVu32TxU5nh +SnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex/2kskZGT4d9Mozd2 +TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDyAmH3 +pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGR +xpl/j8nWZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiApp +GWSZI1b7rCoucL5mxAyE7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9 +dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKTc0QWbej09+CVgI+WXTik9KveCjCHk9hN +AHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D5KbvtwEwXlGjefVwaaZB +RA+GsCyRxj3qrg+E +-----END CERTIFICATE----- + +# Issuer: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Subject: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Label: "e-Szigno Root CA 2017" +# Serial: 411379200276854331539784714 +# MD5 Fingerprint: de:1f:f6:9e:84:ae:a7:b4:21:ce:1e:58:7d:d1:84:98 +# SHA1 Fingerprint: 89:d4:83:03:4f:9e:9a:48:80:5f:72:37:d4:a9:a6:ef:cb:7c:1f:d1 +# SHA256 Fingerprint: be:b0:0b:30:83:9b:9b:c3:2c:32:e4:44:79:05:95:06:41:f2:64:21:b1:5e:d0:89:19:8b:51:8a:e2:ea:1b:99 +-----BEGIN CERTIFICATE----- +MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNV +BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRk +LjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJv +b3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZaFw00MjA4MjIxMjA3MDZaMHExCzAJ +BgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMg +THRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25v +IFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtv +xie+RJCxs1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+H +Wyx7xf58etqjYzBhMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBSHERUI0arBeAyxr87GyZDvvzAEwDAfBgNVHSMEGDAWgBSHERUI0arB +eAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEAtVfd14pVCzbhhkT61Nlo +jbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxOsvxyqltZ ++efcMQ== +-----END CERTIFICATE----- + +# Issuer: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Subject: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Label: "certSIGN Root CA G2" +# Serial: 313609486401300475190 +# MD5 Fingerprint: 8c:f1:75:8a:c6:19:cf:94:b7:f7:65:20:87:c3:97:c7 +# SHA1 Fingerprint: 26:f9:93:b4:ed:3d:28:27:b0:b9:4b:a7:e9:15:1d:a3:8d:92:e5:32 +# SHA256 Fingerprint: 65:7c:fe:2f:a7:3f:aa:38:46:25:71:f3:32:a2:36:3a:46:fc:e7:02:09:51:71:07:02:cd:fb:b6:ee:da:33:05 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNV +BAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04g +Uk9PVCBDQSBHMjAeFw0xNzAyMDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJ +BgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJ +R04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDF +dRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05N0Iw +vlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZ +uIt4ImfkabBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhp +n+Sc8CnTXPnGFiWeI8MgwT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKs +cpc/I1mbySKEwQdPzH/iV8oScLumZfNpdWO9lfsbl83kqK/20U6o2YpxJM02PbyW +xPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91QqhngLjYl/rNUssuHLoPj1P +rCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732jcZZroiF +DsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fx +DTvf95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgy +LcsUDFDYg2WD7rlcz8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6C +eWRgKRM+o/1Pcmqr4tTluCRVLERLiohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSCIS1mxteg4BXrzkwJ +d8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOBywaK8SJJ6ejq +kX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC +b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQl +qiCA2ClV9+BB/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0 +OJD7uNGzcgbJceaBxXntC6Z58hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+c +NywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5BiKDUyUM/FHE5r7iOZULJK2v0ZXk +ltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklWatKcsWMy5WHgUyIO +pwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tUSxfj +03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZk +PuXaTH4MNMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE +1LlSVHJ7liXMvGnjSG4N0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MX +QRBdJ3NghVdJIgc= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global Certification Authority" +# Serial: 1846098327275375458322922162 +# MD5 Fingerprint: f8:1c:18:2d:2f:ba:5f:6d:a1:6c:bc:c7:ab:91:c7:0e +# SHA1 Fingerprint: 2f:8f:36:4f:e1:58:97:44:21:59:87:a5:2a:9a:d0:69:95:26:7f:b5 +# SHA256 Fingerprint: 97:55:20:15:f5:dd:fc:3c:87:88:c0:06:94:45:55:40:88:94:45:00:84:f1:00:86:70:86:bc:1a:2b:b5:8d:c8 +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQsw +CQYDVQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28x +ITAfBgNVBAoMGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1 +c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMx +OTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJVUzERMA8GA1UECAwI +SWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2ZSBI +b2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +ALldUShLPDeS0YLOvR29zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0Xzn +swuvCAAJWX/NKSqIk4cXGIDtiLK0thAfLdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu +7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4BqstTnoApTAbqOl5F2brz8 +1Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9oWN0EACyW +80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotP +JqX+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1l +RtzuzWniTY+HKE40Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfw +hI0Vcnyh78zyiGG69Gm7DIwLdVcEuE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10 +coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm+9jaJXLE9gCxInm943xZYkqc +BW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqjifLJS3tBEW1n +twiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1Ud +DwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W +0OhUKDtkLSGm+J1WE2pIPU/HPinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfe +uyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0HZJDmHvUqoai7PF35owgLEQzxPy0Q +lG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla4gt5kNdXElE1GYhB +aCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5RvbbE +sLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPT +MaCm/zjdzyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qe +qu5AvzSxnI9O4fKSTx+O856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxh +VicGaeVyQYHTtgGJoC86cnn+OjC/QezHYj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8 +h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu3R3y4G5OBVixwJAWKqQ9 +EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP29FpHOTK +yeC2nOnOcXHebD8WpHk= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P256 Certification Authority" +# Serial: 4151900041497450638097112925 +# MD5 Fingerprint: 5b:44:e3:8d:5d:36:86:26:e8:0d:05:d2:59:a7:83:54 +# SHA1 Fingerprint: b4:90:82:dd:45:0c:be:8b:5b:b1:66:d3:e2:a4:08:26:cd:ed:42:cf +# SHA256 Fingerprint: 94:5b:bc:82:5e:a5:54:f4:89:d1:fd:51:a7:3d:df:2e:a6:24:ac:70:19:a0:52:05:22:5c:22:a7:8c:cf:a8:b4 +-----BEGIN CERTIFICATE----- +MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABH77bOYj43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoN +FWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqmP62jQzBBMA8GA1UdEwEB/wQFMAMBAf8w +DwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt0UrrdaVKEJmzsaGLSvcw +CgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjzRM4q3wgh +DDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P384 Certification Authority" +# Serial: 2704997926503831671788816187 +# MD5 Fingerprint: ea:cf:60:c4:3b:b9:15:29:40:a1:97:ed:78:27:93:d6 +# SHA1 Fingerprint: e7:f3:a3:c8:cf:6f:c3:04:2e:6d:0e:67:32:c5:9e:68:95:0d:5e:d2 +# SHA256 Fingerprint: 55:90:38:59:c8:c0:c3:eb:b8:75:9e:ce:4e:25:57:22:5f:f5:75:8b:bd:38:eb:d4:82:76:60:1e:1b:d5:80:97 +-----BEGIN CERTIFICATE----- +MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuB +BAAiA2IABGvaDXU1CDFHBa5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJ +j9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr/TklZvFe/oyujUF5nQlgziip04pt89ZF +1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDBwYAMB0G +A1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNnADBkAjA3 +AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsC +MGclCrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVu +Sw== +-----END CERTIFICATE----- + +# Issuer: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Subject: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Label: "NAVER Global Root Certification Authority" +# Serial: 9013692873798656336226253319739695165984492813 +# MD5 Fingerprint: c8:7e:41:f6:25:3b:f5:09:b3:17:e8:46:3d:bf:d0:9b +# SHA1 Fingerprint: 8f:6b:f2:a9:27:4a:da:14:a0:c4:f4:8e:61:27:f9:c0:1e:78:5d:d1 +# SHA256 Fingerprint: 88:f4:38:dc:f8:ff:d1:fa:8f:42:91:15:ff:e5:f8:2a:e1:e0:6e:0c:70:c3:75:fa:ad:71:7b:34:a4:9e:72:65 +-----BEGIN CERTIFICATE----- +MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEM +BQAwaTELMAkGA1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRG +T1JNIENvcnAuMTIwMAYDVQQDDClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4NDJaFw0zNzA4MTgyMzU5NTlaMGkx +CzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBD +b3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVA +iQqrDZBbUGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH +38dq6SZeWYp34+hInDEW+j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lE +HoSTGEq0n+USZGnQJoViAbbJAh2+g1G7XNr4rRVqmfeSVPc0W+m/6imBEtRTkZaz +kVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2aacp+yPOiNgSnABIqKYP +szuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4Yb8Obtoq +vC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHf +nZ3zVHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaG +YQ5fG8Ir4ozVu53BA0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo +0es+nPxdGoMuK8u180SdOqcXYZaicdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3a +CJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejyYhbLgGvtPe31HzClrkvJE+2K +AQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNVHQ4EFgQU0p+I +36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB +Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoN +qo0hV4/GPnrK21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatj +cu3cvuzHV+YwIHHW1xDBE1UBjCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm ++LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bxhYTeodoS76TiEJd6eN4MUZeoIUCL +hr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTgE34h5prCy8VCZLQe +lHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTHD8z7 +p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8 +piKCk5XQA76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLR +LBT/DShycpWbXgnbiUSYqqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX +5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oGI/hGoiLtk/bdmuYqh7GYVPEi92tF4+KO +dh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmgkpzNNIaRkPpkUZ3+/uul +9XXeifdy +-----END CERTIFICATE----- + +# Issuer: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Subject: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Label: "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" +# Serial: 131542671362353147877283741781055151509 +# MD5 Fingerprint: 19:36:9c:52:03:2f:d2:d1:bb:23:cc:dd:1e:12:55:bb +# SHA1 Fingerprint: 62:ff:d9:9e:c0:65:0d:03:ce:75:93:d2:ed:3f:2d:32:c9:e3:e5:4a +# SHA256 Fingerprint: 55:41:53:b1:3d:2c:f9:dd:b7:53:bf:be:1a:4e:0a:e0:8d:0a:a4:18:70:58:fe:60:a2:b8:62:b2:e4:b8:7b:cb +-----BEGIN CERTIFICATE----- +MIICbjCCAfOgAwIBAgIQYvYybOXE42hcG2LdnC6dlTAKBggqhkjOPQQDAzB4MQsw +CQYDVQQGEwJFUzERMA8GA1UECgwIRk5NVC1SQ00xDjAMBgNVBAsMBUNlcmVzMRgw +FgYDVQRhDA9WQVRFUy1RMjgyNjAwNEoxLDAqBgNVBAMMI0FDIFJBSVogRk5NVC1S +Q00gU0VSVklET1JFUyBTRUdVUk9TMB4XDTE4MTIyMDA5MzczM1oXDTQzMTIyMDA5 +MzczM1oweDELMAkGA1UEBhMCRVMxETAPBgNVBAoMCEZOTVQtUkNNMQ4wDAYDVQQL +DAVDZXJlczEYMBYGA1UEYQwPVkFURVMtUTI4MjYwMDRKMSwwKgYDVQQDDCNBQyBS +QUlaIEZOTVQtUkNNIFNFUlZJRE9SRVMgU0VHVVJPUzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPa6V1PIyqvfNkpSIeSX0oNnnvBlUdBeh8dHsVnyV0ebAAKTRBdp20LH +sbI6GA60XYyzZl2hNPk2LEnb80b8s0RpRBNm/dfF/a82Tc4DTQdxz69qBdKiQ1oK +Um8BA06Oi6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFAG5L++/EYZg8k/QQW6rcx/n0m5JMAoGCCqGSM49BAMDA2kAMGYCMQCu +SuMrQMN0EfKVrRYj3k4MGuZdpSRea0R7/DjiT8ucRRcRTBQnJlU5dUoDzBOQn5IC +MQD6SmxgiHPz7riYYqnOK8LZiqZwMR2vsJRM60/G49HzYqc8/5MuB1xJAWdpEgJy +v+c= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Label: "GlobalSign Root R46" +# Serial: 1552617688466950547958867513931858518042577 +# MD5 Fingerprint: c4:14:30:e4:fa:66:43:94:2a:6a:1b:24:5f:19:d0:ef +# SHA1 Fingerprint: 53:a2:b0:4b:ca:6b:d6:45:e6:39:8a:8e:c4:0d:d2:bf:77:c3:a2:90 +# SHA256 Fingerprint: 4f:a3:12:6d:8d:3a:11:d1:c4:85:5a:4f:80:7c:ba:d6:cf:91:9d:3a:5a:88:b0:3b:ea:2c:63:72:d9:3c:40:c9 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgISEdK7udcjGJ5AXwqdLdDfJWfRMA0GCSqGSIb3DQEBDAUA +MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYD +VQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMy +MDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYt +c2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCsrHQy6LNl5brtQyYdpokNRbopiLKkHWPd08EsCVeJ +OaFV6Wc0dwxu5FUdUiXSE2te4R2pt32JMl8Nnp8semNgQB+msLZ4j5lUlghYruQG +vGIFAha/r6gjA7aUD7xubMLL1aa7DOn2wQL7Id5m3RerdELv8HQvJfTqa1VbkNud +316HCkD7rRlr+/fKYIje2sGP1q7Vf9Q8g+7XFkyDRTNrJ9CG0Bwta/OrffGFqfUo +0q3v84RLHIf8E6M6cqJaESvWJ3En7YEtbWaBkoe0G1h6zD8K+kZPTXhc+CtI4wSE +y132tGqzZfxCnlEmIyDLPRT5ge1lFgBPGmSXZgjPjHvjK8Cd+RTyG/FWaha/LIWF +zXg4mutCagI0GIMXTpRW+LaCtfOW3T3zvn8gdz57GSNrLNRyc0NXfeD412lPFzYE ++cCQYDdF3uYM2HSNrpyibXRdQr4G9dlkbgIQrImwTDsHTUB+JMWKmIJ5jqSngiCN +I/onccnfxkF0oE32kRbcRoxfKWMxWXEM2G/CtjJ9++ZdU6Z+Ffy7dXxd7Pj2Fxzs +x2sZy/N78CsHpdlseVR2bJ0cpm4O6XkMqCNqo98bMDGfsVR7/mrLZqrcZdCinkqa +ByFrgY/bxFn63iLABJzjqls2k+g9vXqhnQt2sQvHnf3PmKgGwvgqo6GDoLclcqUC +4wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUA1yrc4GHqMywptWU4jaWSf8FmSwwDQYJKoZIhvcNAQEMBQADggIBAHx4 +7PYCLLtbfpIrXTncvtgdokIzTfnvpCo7RGkerNlFo048p9gkUbJUHJNOxO97k4Vg +JuoJSOD1u8fpaNK7ajFxzHmuEajwmf3lH7wvqMxX63bEIaZHU1VNaL8FpO7XJqti +2kM3S+LGteWygxk6x9PbTZ4IevPuzz5i+6zoYMzRx6Fcg0XERczzF2sUyQQCPtIk +pnnpHs6i58FZFZ8d4kuaPp92CC1r2LpXFNqD6v6MVenQTqnMdzGxRBF6XLE+0xRF +FRhiJBPSy03OXIPBNvIQtQ6IbbjhVp+J3pZmOUdkLG5NrmJ7v2B0GbhWrJKsFjLt +rWhV/pi60zTe9Mlhww6G9kuEYO4Ne7UyWHmRVSyBQ7N0H3qqJZ4d16GLuc1CLgSk +ZoNNiTW2bKg2SnkheCLQQrzRQDGQob4Ez8pn7fXwgNNgyYMqIgXQBztSvwyeqiv5 +u+YfjyW6hY0XHgL+XVAEV8/+LbzvXMAaq7afJMbfc2hIkCwU9D9SGuTSyxTDYWnP +4vkYxboznxSjBF25cfe1lNj2M8FawTSLfJvdkzrnE6JwYZ+vj+vYxXX4M2bUdGc6 +N3ec592kD3ZDZopD8p/7DEJ4Y9HiD2971KE9dJeFt0g5QdYg/NA6s/rob8SKunE3 +vouXsXgxT7PntgMTzlSdriVZzH81Xwj3QEUxeCp6 +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Label: "GlobalSign Root E46" +# Serial: 1552617690338932563915843282459653771421763 +# MD5 Fingerprint: b5:b8:66:ed:de:08:83:e3:c9:e2:01:34:06:ac:51:6f +# SHA1 Fingerprint: 39:b4:6c:d5:fe:80:06:eb:e2:2f:4a:bb:08:33:a0:af:db:b9:dd:84 +# SHA256 Fingerprint: cb:b9:c4:4d:84:b8:04:3e:10:50:ea:31:a6:9f:51:49:55:d7:bf:d2:e2:c6:b4:93:01:01:9a:d6:1d:9f:50:58 +-----BEGIN CERTIFICATE----- +MIICCzCCAZGgAwIBAgISEdK7ujNu1LzmJGjFDYQdmOhDMAoGCCqGSM49BAMDMEYx +CzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQD +ExNHbG9iYWxTaWduIFJvb3QgRTQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAw +MDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2Ex +HDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAScDrHPt+ieUnd1NPqlRqetMhkytAepJ8qUuwzSChDH2omwlwxwEwkBjtjq +R+q+soArzfwoDdusvKSGN+1wCAB16pMLey5SnCNoIwZD7JIvU4Tb+0cUB+hflGdd +yXqBPCCjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBQxCpCPtsad0kRLgLWi5h+xEk8blTAKBggqhkjOPQQDAwNoADBlAjEA31SQ +7Zvvi5QCkxeCmb6zniz2C5GMn0oUsfZkvLtoURMMA/cVi4RguYv/Uo7njLwcAjA8 ++RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+CAezNIm8BZ/3Hobui3A= +-----END CERTIFICATE----- + +# Issuer: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Subject: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Label: "ANF Secure Server Root CA" +# Serial: 996390341000653745 +# MD5 Fingerprint: 26:a6:44:5a:d9:af:4e:2f:b2:1d:b6:65:b0:4e:e8:96 +# SHA1 Fingerprint: 5b:6e:68:d0:cc:15:b6:a0:5f:1e:c1:5f:ae:02:fc:6b:2f:5d:6f:74 +# SHA256 Fingerprint: fb:8f:ec:75:91:69:b9:10:6b:1e:51:16:44:c6:18:c5:13:04:37:3f:6c:06:43:08:8d:8b:ef:fd:1b:99:75:99 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum EC-384 CA" +# Serial: 160250656287871593594747141429395092468 +# MD5 Fingerprint: b6:65:b3:96:60:97:12:a1:ec:4e:e1:3d:a3:c6:c9:f1 +# SHA1 Fingerprint: f3:3e:78:3c:ac:df:f4:a2:cc:ac:67:55:69:56:d7:e5:16:3c:e1:ed +# SHA256 Fingerprint: 6b:32:80:85:62:53:18:aa:50:d1:73:c9:8d:8b:da:09:d5:7e:27:41:3d:11:4c:f7:87:a0:f5:d0:6c:03:0c:f6 +-----BEGIN CERTIFICATE----- +MIICZTCCAeugAwIBAgIQeI8nXIESUiClBNAt3bpz9DAKBggqhkjOPQQDAzB0MQsw +CQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScw +JQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAXBgNVBAMT +EENlcnR1bSBFQy0zODQgQ0EwHhcNMTgwMzI2MDcyNDU0WhcNNDMwMzI2MDcyNDU0 +WjB0MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBT +LkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAX +BgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATE +KI6rGFtqvm5kN2PkzeyrOvfMobgOgknXhimfoZTy42B4mIF4Bk3y7JoOV2CDn7Tm +Fy8as10CW4kjPMIRBSqniBMY81CE1700LCeJVf/OTOffph8oxPBUw7l8t1Ot68Kj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI0GZnQkdjrzife81r1HfS+8 +EF9LMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNoADBlAjADVS2m5hjEfO/J +UG7BJw+ch69u1RsIGL2SKcHvlJF40jocVYli5RsJHrpka/F2tNQCMQC0QoSZ/6vn +nvuRlydd3LBbMHHOXjgaatkl5+r3YZJW+OraNsKHZZYuciUvf9/DE8k= +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Root CA" +# Serial: 40870380103424195783807378461123655149 +# MD5 Fingerprint: 51:e1:c2:e7:fe:4c:84:af:59:0e:2f:f4:54:6f:ea:29 +# SHA1 Fingerprint: c8:83:44:c0:18:ae:9f:cc:f1:87:b7:8f:22:d1:c5:d7:45:84:ba:e5 +# SHA256 Fingerprint: fe:76:96:57:38:55:77:3e:37:a9:5e:7a:d4:d9:cc:96:c3:01:57:c1:5d:31:76:5b:a9:b1:57:04:e1:ae:78:fd +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Subject: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Label: "TunTrust Root CA" +# Serial: 108534058042236574382096126452369648152337120275 +# MD5 Fingerprint: 85:13:b9:90:5b:36:5c:b6:5e:b8:5a:f8:e0:31:57:b4 +# SHA1 Fingerprint: cf:e9:70:84:0f:e0:73:0f:9d:f6:0c:7f:2c:4b:ee:20:46:34:9c:bb +# SHA256 Fingerprint: 2e:44:10:2a:b5:8c:b8:54:19:45:1c:8e:19:d9:ac:f3:66:2c:af:bc:61:4b:6a:53:96:0a:30:f7:d0:e2:eb:41 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIUEwLV4kBMkkaGFmddtLu7sms+/BMwDQYJKoZIhvcNAQEL +BQAwYTELMAkGA1UEBhMCVE4xNzA1BgNVBAoMLkFnZW5jZSBOYXRpb25hbGUgZGUg +Q2VydGlmaWNhdGlvbiBFbGVjdHJvbmlxdWUxGTAXBgNVBAMMEFR1blRydXN0IFJv +b3QgQ0EwHhcNMTkwNDI2MDg1NzU2WhcNNDQwNDI2MDg1NzU2WjBhMQswCQYDVQQG +EwJUTjE3MDUGA1UECgwuQWdlbmNlIE5hdGlvbmFsZSBkZSBDZXJ0aWZpY2F0aW9u +IEVsZWN0cm9uaXF1ZTEZMBcGA1UEAwwQVHVuVHJ1c3QgUm9vdCBDQTCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAMPN0/y9BFPdDCA61YguBUtB9YOCfvdZ +n56eY+hz2vYGqU8ftPkLHzmMmiDQfgbU7DTZhrx1W4eI8NLZ1KMKsmwb60ksPqxd +2JQDoOw05TDENX37Jk0bbjBU2PWARZw5rZzJJQRNmpA+TkBuimvNKWfGzC3gdOgF +VwpIUPp6Q9p+7FuaDmJ2/uqdHYVy7BG7NegfJ7/Boce7SBbdVtfMTqDhuazb1YMZ +GoXRlJfXyqNlC/M4+QKu3fZnz8k/9YosRxqZbwUN/dAdgjH8KcwAWJeRTIAAHDOF +li/LQcKLEITDCSSJH7UP2dl3RxiSlGBcx5kDPP73lad9UKGAwqmDrViWVSHbhlnU +r8a83YFuB9tgYv7sEG7aaAH0gxupPqJbI9dkxt/con3YS7qC0lH4Zr8GRuR5KiY2 +eY8fTpkdso8MDhz/yV3A/ZAQprE38806JG60hZC/gLkMjNWb1sjxVj8agIl6qeIb +MlEsPvLfe/ZdeikZjuXIvTZxi11Mwh0/rViizz1wTaZQmCXcI/m4WEEIcb9PuISg +jwBUFfyRbVinljvrS5YnzWuioYasDXxU5mZMZl+QviGaAkYt5IPCgLnPSz7ofzwB +7I9ezX/SKEIBlYrilz0QIX32nRzFNKHsLA4KUiwSVXAkPcvCFDVDXSdOvsC9qnyW +5/yeYa1E0wCXAgMBAAGjYzBhMB0GA1UdDgQWBBQGmpsfU33x9aTI04Y+oXNZtPdE +ITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFAaamx9TffH1pMjThj6hc1m0 +90QhMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAqgVutt0Vyb+z +xiD2BkewhpMl0425yAA/l/VSJ4hxyXT968pk21vvHl26v9Hr7lxpuhbI87mP0zYu +QEkHDVneixCwSQXi/5E/S7fdAo74gShczNxtr18UnH1YeA32gAm56Q6XKRm4t+v4 +FstVEuTGfbvE7Pi1HE4+Z7/FXxttbUcoqgRYYdZ2vyJ/0Adqp2RT8JeNnYA/u8EH +22Wv5psymsNUk8QcCMNE+3tjEUPRahphanltkE8pjkcFwRJpadbGNjHh/PqAulxP +xOu3Mqz4dWEX1xAZufHSCe96Qp1bWgvUxpVOKs7/B9dPfhgGiPEZtdmYu65xxBzn +dFlY7wyJz4sfdZMaBBSSSFCp61cpABbjNhzI+L/wM9VBD8TMPN3pM0MBkRArHtG5 +Xc0yGYuPjCB31yLEQtyEFpslbei0VXF/sHyz03FJuc9SpAQ/3D2gu68zngowYI7b +nV2UqL1g52KAdoGDDIzMMEZJ4gzSqK/rYXHv5yJiqfdcZGyfFoxnNidF9Ql7v/YQ +CvGwjVRDjAS6oz/v4jXH+XTgbzRB0L9zZVcg+ZtnemZoJE6AZb0QmQZZ8mWvuMZH +u/2QeItBcy6vVR/cO5JyboTT0GFMDcx2V+IthSIVNg3rAZ3r2OvEhJn7wAzMMujj +d9qDRIueVSjAi1jTkD5OGwDxFa2DK5o= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS RSA Root CA 2021" +# Serial: 76817823531813593706434026085292783742 +# MD5 Fingerprint: 65:47:9b:58:86:dd:2c:f0:fc:a2:84:1f:1e:96:c4:91 +# SHA1 Fingerprint: 02:2d:05:82:fa:88:ce:14:0c:06:79:de:7f:14:10:e9:45:d7:a5:6d +# SHA256 Fingerprint: d9:5d:0e:8e:da:79:52:5b:f9:be:b1:1b:14:d2:10:0d:32:94:98:5f:0c:62:d9:fa:bd:9c:d9:99:ec:cb:7b:1d +-----BEGIN CERTIFICATE----- +MIIFpDCCA4ygAwIBAgIQOcqTHO9D88aOk8f0ZIk4fjANBgkqhkiG9w0BAQsFADBs +MQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBSU0Eg +Um9vdCBDQSAyMDIxMB4XDTIxMDIxOTEwNTUzOFoXDTQ1MDIxMzEwNTUzN1owbDEL +MAkGA1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl +YXJjaCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgUlNBIFJv +b3QgQ0EgMjAyMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAIvC569l +mwVnlskNJLnQDmT8zuIkGCyEf3dRywQRNrhe7Wlxp57kJQmXZ8FHws+RFjZiPTgE +4VGC/6zStGndLuwRo0Xua2s7TL+MjaQenRG56Tj5eg4MmOIjHdFOY9TnuEFE+2uv +a9of08WRiFukiZLRgeaMOVig1mlDqa2YUlhu2wr7a89o+uOkXjpFc5gH6l8Cct4M +pbOfrqkdtx2z/IpZ525yZa31MJQjB/OCFks1mJxTuy/K5FrZx40d/JiZ+yykgmvw +Kh+OC19xXFyuQnspiYHLA6OZyoieC0AJQTPb5lh6/a6ZcMBaD9YThnEvdmn8kN3b +LW7R8pv1GmuebxWMevBLKKAiOIAkbDakO/IwkfN4E8/BPzWr8R0RI7VDIp4BkrcY +AuUR0YLbFQDMYTfBKnya4dC6s1BG7oKsnTH4+yPiAwBIcKMJJnkVU2DzOFytOOqB +AGMUuTNe3QvboEUHGjMJ+E20pwKmafTCWQWIZYVWrkvL4N48fS0ayOn7H6NhStYq +E613TBoYm5EPWNgGVMWX+Ko/IIqmhaZ39qb8HOLubpQzKoNQhArlT4b4UEV4AIHr +W2jjJo3Me1xR9BQsQL4aYB16cmEdH2MtiKrOokWQCPxrvrNQKlr9qEgYRtaQQJKQ +CoReaDH46+0N0x3GfZkYVVYnZS6NRcUk7M7jAgMBAAGjQjBAMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFApII6ZgpJIKM+qTW8VX6iVNvRLuMA4GA1UdDwEB/wQE +AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAPpBIqm5iFSVmewzVjIuJndftTgfvnNAU +X15QvWiWkKQUEapobQk1OUAJ2vQJLDSle1mESSmXdMgHHkdt8s4cUCbjnj1AUz/3 +f5Z2EMVGpdAgS1D0NTsY9FVqQRtHBmg8uwkIYtlfVUKqrFOFrJVWNlar5AWMxaja +H6NpvVMPxP/cyuN+8kyIhkdGGvMA9YCRotxDQpSbIPDRzbLrLFPCU3hKTwSUQZqP +JzLB5UkZv/HywouoCjkxKLR9YjYsTewfM7Z+d21+UPCfDtcRj88YxeMn/ibvBZ3P +zzfF0HvaO7AWhAw6k9a+F9sPPg4ZeAnHqQJyIkv3N3a6dcSFA1pj1bF1BcK5vZSt +jBWZp5N99sXzqnTPBIWUmAD04vnKJGW/4GKvyMX6ssmeVkjaef2WdhW+o45WxLM0 +/L5H9MG0qPzVMIho7suuyWPEdr6sOBjhXlzPrjoiUevRi7PzKzMHVIf6tLITe7pT +BGIBnfHAT+7hOtSLIBD6Alfm78ELt5BGnBkpjNxvoEppaZS3JGWg/6w/zgH7IS79 +aPib8qXPMThcFarmlwDB31qlpzmq6YR/PFGoOtmUW4y/Twhx5duoXNTSpv4Ao8YW +xw/ogM4cKGR0GQjTQuPOAF1/sdwTsOEFy9EgqoZ0njnnkf3/W9b3raYvAwtt41dU +63ZTGI0RmLo= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS ECC Root CA 2021" +# Serial: 137515985548005187474074462014555733966 +# MD5 Fingerprint: ae:f7:4c:e5:66:35:d1:b7:9b:8c:22:93:74:d3:4b:b0 +# SHA1 Fingerprint: bc:b0:c1:9d:e9:98:92:70:19:38:57:e9:8d:a7:b4:5d:6e:ee:01:48 +# SHA256 Fingerprint: 3f:99:cc:47:4a:cf:ce:4d:fe:d5:87:94:66:5e:47:8d:15:47:73:9f:2e:78:0f:1b:b4:ca:9b:13:30:97:d4:01 +-----BEGIN CERTIFICATE----- +MIICVDCCAdugAwIBAgIQZ3SdjXfYO2rbIvT/WeK/zjAKBggqhkjOPQQDAzBsMQsw +CQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2Vh +cmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBFQ0MgUm9v +dCBDQSAyMDIxMB4XDTIxMDIxOTExMDExMFoXDTQ1MDIxMzExMDEwOVowbDELMAkG +A1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj +aCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgRUNDIFJvb3Qg +Q0EgMjAyMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABDgI/rGgltJ6rK9JOtDA4MM7 +KKrxcm1lAEeIhPyaJmuqS7psBAqIXhfyVYf8MLA04jRYVxqEU+kw2anylnTDUR9Y +STHMmE5gEYd103KUkE+bECUqqHgtvpBBWJAVcqeht6NCMEAwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUyRtTgRL+BNUW0aq8mm+3oJUZbsowDgYDVR0PAQH/BAQD +AgGGMAoGCCqGSM49BAMDA2cAMGQCMBHervjcToiwqfAircJRQO9gcS3ujwLEXQNw +SaSS6sUUiHCm0w2wqsosQJz76YJumgIwK0eaB8bRwoF8yguWGEEbo/QwCZ61IygN +nxS2PFOiTAZpffpskcYqSUXm7LcT4Tps +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 1977337328857672817 +# MD5 Fingerprint: 4e:6e:9b:54:4c:ca:b7:fa:48:e4:90:b1:15:4b:1c:a3 +# SHA1 Fingerprint: 0b:be:c2:27:22:49:cb:39:aa:db:35:5c:53:e3:8c:ae:78:ff:b6:fe +# SHA256 Fingerprint: 57:de:05:83:ef:d2:b2:6e:03:61:da:99:da:9d:f4:64:8d:ef:7e:e8:44:1c:3b:72:8a:fa:9b:cd:e0:f9:b2:6a +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIG3Dp0v+ubHEwDQYJKoZIhvcNAQELBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0xNDA5MjMxNTIyMDdaFw0zNjA1 +MDUxNTIyMDdaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMB0GA1UdDgQWBBRlzeurNR4APn7VdMAc +tHNHDhpkLzASBgNVHRMBAf8ECDAGAQH/AgEBMIGmBgNVHSAEgZ4wgZswgZgGBFUd +IAAwgY8wLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuZmlybWFwcm9mZXNpb25hbC5j +b20vY3BzMFwGCCsGAQUFBwICMFAeTgBQAGEAcwBlAG8AIABkAGUAIABsAGEAIABC +AG8AbgBhAG4AbwB2AGEAIAA0ADcAIABCAGEAcgBjAGUAbABvAG4AYQAgADAAOAAw +ADEANzAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQELBQADggIBAHSHKAIrdx9m +iWTtj3QuRhy7qPj4Cx2Dtjqn6EWKB7fgPiDL4QjbEwj4KKE1soCzC1HA01aajTNF +Sa9J8OA9B3pFE1r/yJfY0xgsfZb43aJlQ3CTkBW6kN/oGbDbLIpgD7dvlAceHabJ +hfa9NPhAeGIQcDq+fUs5gakQ1JZBu/hfHAsdCPKxsIl68veg4MSPi3i1O1ilI45P +Vf42O+AMt8oqMEEgtIDNrvx2ZnOorm7hfNoD6JQg5iKj0B+QXSBTFCZX2lSX3xZE +EAEeiGaPcjiT3SC3NL7X8e5jjkd5KAb881lFJWAiMxujX6i6KtoaPc1A6ozuBRWV +1aUsIC+nmCjuRfzxuIgALI9C2lHVnOUTaHFFQ4ueCyE8S1wF3BqfmI7avSKecs2t +CsvMo2ebKHTEm9caPARYpoKdrcd7b/+Alun4jWq9GJAd/0kakFI3ky88Al2CdgtR +5xbHV/g4+afNmyJU72OwFW1TZQNKXkqgsqeOSQBZONXH9IBk9W6VULgRfhVwOEqw +f9DEMnDAGf/JOC0ULGb0QkTmVXYbgBVX/8Cnp6o5qtjTcNAuuuuUavpfNIbnYrX9 +ivAwhZTJryQCL2/W3Wf+47BVTwSYT6RBVuKT0Gro1vP7ZeDOdcQxWQzugsgMYDNK +GbqEZycPvEJdvSRUDewdcAZfpLz6IHxV +-----END CERTIFICATE----- + +# Issuer: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus ECC Root CA" +# Serial: 630369271402956006249506845124680065938238527194 +# MD5 Fingerprint: de:4b:c1:f5:52:8c:9b:43:e1:3e:8f:55:54:17:8d:85 +# SHA1 Fingerprint: f6:9c:db:b0:fc:f6:02:13:b6:52:32:a6:a3:91:3f:16:70:da:c3:e1 +# SHA256 Fingerprint: 30:fb:ba:2c:32:23:8e:2a:98:54:7a:f9:79:31:e5:50:42:8b:9b:3f:1c:8e:eb:66:33:dc:fa:86:c5:b2:7d:d3 +-----BEGIN CERTIFICATE----- +MIICDzCCAZWgAwIBAgIUbmq8WapTvpg5Z6LSa6Q75m0c1towCgYIKoZIzj0EAwMw +RzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4xGjAY +BgNVBAMTEXZUcnVzIEVDQyBSb290IENBMB4XDTE4MDczMTA3MjY0NFoXDTQzMDcz +MTA3MjY0NFowRzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28u +LEx0ZC4xGjAYBgNVBAMTEXZUcnVzIEVDQyBSb290IENBMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAEZVBKrox5lkqqHAjDo6LN/llWQXf9JpRCux3NCNtzslt188+cToL0 +v/hhJoVs1oVbcnDS/dtitN9Ti72xRFhiQgnH+n9bEOf+QP3A2MMrMudwpremIFUd +e4BdS49nTPEQo0IwQDAdBgNVHQ4EFgQUmDnNvtiyjPeyq+GtJK97fKHbH88wDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwCgYIKoZIzj0EAwMDaAAwZQIw +V53dVvHH4+m4SVBrm2nDb+zDfSXkV5UTQJtS0zvzQBm8JsctBp61ezaf9SXUY2sA +AjEA6dPGnlaaKsyh2j/IZivTWJwghfqrkYpwcBE4YGQLYgmRWAD5Tfs0aNoJrSEG +GJTO +-----END CERTIFICATE----- + +# Issuer: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus Root CA" +# Serial: 387574501246983434957692974888460947164905180485 +# MD5 Fingerprint: b8:c9:37:df:fa:6b:31:84:64:c5:ea:11:6a:1b:75:fc +# SHA1 Fingerprint: 84:1a:69:fb:f5:cd:1a:25:34:13:3d:e3:f8:fc:b8:99:d0:c9:14:b7 +# SHA256 Fingerprint: 8a:71:de:65:59:33:6f:42:6c:26:e5:38:80:d0:0d:88:a1:8d:a4:c6:a9:1f:0d:cb:61:94:e2:06:c5:c9:63:87 +-----BEGIN CERTIFICATE----- +MIIFVjCCAz6gAwIBAgIUQ+NxE9izWRRdt86M/TX9b7wFjUUwDQYJKoZIhvcNAQEL +BQAwQzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4x +FjAUBgNVBAMTDXZUcnVzIFJvb3QgQ0EwHhcNMTgwNzMxMDcyNDA1WhcNNDMwNzMx +MDcyNDA1WjBDMQswCQYDVQQGEwJDTjEcMBoGA1UEChMTaVRydXNDaGluYSBDby4s +THRkLjEWMBQGA1UEAxMNdlRydXMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAL1VfGHTuB0EYgWgrmy3cLRB6ksDXhA/kFocizuwZotsSKYc +IrrVQJLuM7IjWcmOvFjai57QGfIvWcaMY1q6n6MLsLOaXLoRuBLpDLvPbmyAhykU +AyyNJJrIZIO1aqwTLDPxn9wsYTwaP3BVm60AUn/PBLn+NvqcwBauYv6WTEN+VRS+ +GrPSbcKvdmaVayqwlHeFXgQPYh1jdfdr58tbmnDsPmcF8P4HCIDPKNsFxhQnL4Z9 +8Cfe/+Z+M0jnCx5Y0ScrUw5XSmXX+6KAYPxMvDVTAWqXcoKv8R1w6Jz1717CbMdH +flqUhSZNO7rrTOiwCcJlwp2dCZtOtZcFrPUGoPc2BX70kLJrxLT5ZOrpGgrIDajt +J8nU57O5q4IikCc9Kuh8kO+8T/3iCiSn3mUkpF3qwHYw03dQ+A0Em5Q2AXPKBlim +0zvc+gRGE1WKyURHuFE5Gi7oNOJ5y1lKCn+8pu8fA2dqWSslYpPZUxlmPCdiKYZN +pGvu/9ROutW04o5IWgAZCfEF2c6Rsffr6TlP9m8EQ5pV9T4FFL2/s1m02I4zhKOQ +UqqzApVg+QxMaPnu1RcN+HFXtSXkKe5lXa/R7jwXC1pDxaWG6iSe4gUH3DRCEpHW +OXSuTEGC2/KmSNGzm/MzqvOmwMVO9fSddmPmAsYiS8GVP1BkLFTltvA8Kc9XAgMB +AAGjQjBAMB0GA1UdDgQWBBRUYnBj8XWEQ1iO0RYgscasGrz2iTAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAKbqSSaet +8PFww+SX8J+pJdVrnjT+5hpk9jprUrIQeBqfTNqK2uwcN1LgQkv7bHbKJAs5EhWd +nxEt/Hlk3ODg9d3gV8mlsnZwUKT+twpw1aA08XXXTUm6EdGz2OyC/+sOxL9kLX1j +bhd47F18iMjrjld22VkE+rxSH0Ws8HqA7Oxvdq6R2xCOBNyS36D25q5J08FsEhvM +Kar5CKXiNxTKsbhm7xqC5PD48acWabfbqWE8n/Uxy+QARsIvdLGx14HuqCaVvIiv +TDUHKgLKeBRtRytAVunLKmChZwOgzoy8sHJnxDHO2zTlJQNgJXtxmOTAGytfdELS +S8VZCAeHvsXDf+eW2eHcKJfWjwXj9ZtOyh1QRwVTsMo554WgicEFOwE30z9J4nfr +I8iIZjs9OXYhRvHsXyO466JmdXTBQPfYaJqT4i2pLr0cox7IdMakLXogqzu4sEb9 +b91fUlV1YvCXoHzXOP0l382gmxDPi7g4Xl7FtKYCNqEeXxzP4padKar9mK5S4fNB +UvupLnKWnyfjqnN9+BojZns7q2WwMgFLFT49ok8MKzWixtlnEjUwzXYuFrOZnk1P +Ti07NEPhmg4NpGaXutIcSkwsKouLgU9xGqndXHt7CMUADTdA43x7VF8vhV929ven +sBxXVsFy6K2ir40zSbofitzmdHxghm+Hl3s= +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X2 O=Internet Security Research Group +# Subject: CN=ISRG Root X2 O=Internet Security Research Group +# Label: "ISRG Root X2" +# Serial: 87493402998870891108772069816698636114 +# MD5 Fingerprint: d3:9e:c4:1e:23:3c:a6:df:cf:a3:7e:6d:e0:14:e6:e5 +# SHA1 Fingerprint: bd:b1:b9:3c:d5:97:8d:45:c6:26:14:55:f8:db:95:c7:5a:d1:53:af +# SHA256 Fingerprint: 69:72:9b:8e:15:a8:6e:fc:17:7a:57:af:b7:17:1d:fc:64:ad:d2:8c:2f:ca:8c:f1:50:7e:34:45:3c:cb:14:70 +-----BEGIN CERTIFICATE----- +MIICGzCCAaGgAwIBAgIQQdKd0XLq7qeAwSxs6S+HUjAKBggqhkjOPQQDAzBPMQsw +CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg +R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yMDA5MDQwMDAwMDBaFw00 +MDA5MTcxNjAwMDBaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBT +ZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgyMHYw +EAYHKoZIzj0CAQYFK4EEACIDYgAEzZvVn4CDCuwJSvMWSj5cz3es3mcFDR0HttwW ++1qLFNvicWDEukWVEYmO6gbf9yoWHKS5xcUy4APgHoIYOIvXRdgKam7mAHf7AlF9 +ItgKbppbd9/w+kHsOdx1ymgHDB/qo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zAdBgNVHQ4EFgQUfEKWrt5LSDv6kviejM9ti6lyN5UwCgYIKoZI +zj0EAwMDaAAwZQIwe3lORlCEwkSHRhtFcP9Ymd70/aTSVaYgLXTWNLxBo1BfASdW +tL4ndQavEi51mI38AjEAi/V3bNTIZargCyzuFJ0nN6T5U6VR5CmD1/iQMVtCnwr1 +/q4AaOeMSQ+2b1tbFfLn +-----END CERTIFICATE----- + +# Issuer: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Subject: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Label: "HiPKI Root CA - G1" +# Serial: 60966262342023497858655262305426234976 +# MD5 Fingerprint: 69:45:df:16:65:4b:e8:68:9a:8f:76:5f:ff:80:9e:d3 +# SHA1 Fingerprint: 6a:92:e4:a8:ee:1b:ec:96:45:37:e3:29:57:49:cd:96:e3:e5:d2:60 +# SHA256 Fingerprint: f0:15:ce:3c:c2:39:bf:ef:06:4b:e9:f1:d2:c4:17:e1:a0:26:4a:0a:94:be:1f:0c:8d:12:18:64:eb:69:49:cc +-----BEGIN CERTIFICATE----- +MIIFajCCA1KgAwIBAgIQLd2szmKXlKFD6LDNdmpeYDANBgkqhkiG9w0BAQsFADBP +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xGzAZBgNVBAMMEkhpUEtJIFJvb3QgQ0EgLSBHMTAeFw0xOTAyMjIwOTQ2MDRa +Fw0zNzEyMzExNTU5NTlaME8xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3 +YSBUZWxlY29tIENvLiwgTHRkLjEbMBkGA1UEAwwSSGlQS0kgUm9vdCBDQSAtIEcx +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA9B5/UnMyDHPkvRN0o9Qw +qNCuS9i233VHZvR85zkEHmpwINJaR3JnVfSl6J3VHiGh8Ge6zCFovkRTv4354twv +Vcg3Px+kwJyz5HdcoEb+d/oaoDjq7Zpy3iu9lFc6uux55199QmQ5eiY29yTw1S+6 +lZgRZq2XNdZ1AYDgr/SEYYwNHl98h5ZeQa/rh+r4XfEuiAU+TCK72h8q3VJGZDnz +Qs7ZngyzsHeXZJzA9KMuH5UHsBffMNsAGJZMoYFL3QRtU6M9/Aes1MU3guvklQgZ +KILSQjqj2FPseYlgSGDIcpJQ3AOPgz+yQlda22rpEZfdhSi8MEyr48KxRURHH+CK +FgeW0iEPU8DtqX7UTuybCeyvQqww1r/REEXgphaypcXTT3OUM3ECoWqj1jOXTyFj +HluP2cFeRXF3D4FdXyGarYPM+l7WjSNfGz1BryB1ZlpK9p/7qxj3ccC2HTHsOyDr +y+K49a6SsvfhhEvyovKTmiKe0xRvNlS9H15ZFblzqMF8b3ti6RZsR1pl8w4Rm0bZ +/W3c1pzAtH2lsN0/Vm+h+fbkEkj9Bn8SV7apI09bA8PgcSojt/ewsTu8mL3WmKgM +a/aOEmem8rJY5AIJEzypuxC00jBF8ez3ABHfZfjcK0NVvxaXxA/VLGGEqnKG/uY6 +fsI/fe78LxQ+5oXdUG+3Se0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQU8ncX+l6o/vY9cdVouslGDDjYr7AwDgYDVR0PAQH/BAQDAgGGMA0GCSqG +SIb3DQEBCwUAA4ICAQBQUfB13HAE4/+qddRxosuej6ip0691x1TPOhwEmSKsxBHi +7zNKpiMdDg1H2DfHb680f0+BazVP6XKlMeJ45/dOlBhbQH3PayFUhuaVevvGyuqc +SE5XCV0vrPSltJczWNWseanMX/mF+lLFjfiRFOs6DRfQUsJ748JzjkZ4Bjgs6Fza +ZsT0pPBWGTMpWmWSBUdGSquEwx4noR8RkpkndZMPvDY7l1ePJlsMu5wP1G4wB9Tc +XzZoZjmDlicmisjEOf6aIW/Vcobpf2Lll07QJNBAsNB1CI69aO4I1258EHBGG3zg +iLKecoaZAeO/n0kZtCW+VmWuF2PlHt/o/0elv+EmBYTksMCv5wiZqAxeJoBF1Pho +L5aPruJKHJwWDBNvOIf2u8g0X5IDUXlwpt/L9ZlNec1OvFefQ05rLisY+GpzjLrF +Ne85akEez3GoorKGB1s6yeHvP2UEgEcyRHCVTjFnanRbEEV16rCf0OY1/k6fi8wr +kkVbbiVghUbN0aqwdmaTd5a+g744tiROJgvM7XpWGuDpWsZkrUx6AEhEL7lAuxM+ +vhV4nYWBSipX3tUZQ9rbyltHhoMLP7YNdnhzeSJesYAfz77RP1YQmCuVh6EfnWQU +YDksswBVLuT1sw5XxJFBAJw/6KXf6vb/yPCtbVKoF6ubYfwSUTXkJf2vqmqGOQ== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Label: "GlobalSign ECC Root CA - R4" +# Serial: 159662223612894884239637590694 +# MD5 Fingerprint: 26:29:f8:6d:e1:88:bf:a2:65:7f:aa:c4:cd:0f:7f:fc +# SHA1 Fingerprint: 6b:a0:b0:98:e1:71:ef:5a:ad:fe:48:15:80:77:10:f4:bd:6f:0b:28 +# SHA256 Fingerprint: b0:85:d7:0b:96:4f:19:1a:73:e4:af:0d:54:ae:7a:0e:07:aa:fd:af:9b:71:dd:08:62:13:8a:b7:32:5a:24:a2 +-----BEGIN CERTIFICATE----- +MIIB3DCCAYOgAwIBAgINAgPlfvU/k/2lCSGypjAKBggqhkjOPQQDAjBQMSQwIgYD +VQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0gUjQxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTIxMTEzMDAwMDAwWhcNMzgw +MTE5MDMxNDA3WjBQMSQwIgYDVQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0g +UjQxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wWTAT +BgcqhkjOPQIBBggqhkjOPQMBBwNCAAS4xnnTj2wlDp8uORkcA6SumuU5BwkWymOx +uYb4ilfBV85C+nOh92VC/x7BALJucw7/xyHlGKSq2XE/qNS5zowdo0IwQDAOBgNV +HQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVLB7rUW44kB/ ++wpu+74zyTyjhNUwCgYIKoZIzj0EAwIDRwAwRAIgIk90crlgr/HmnKAWBVBfw147 +bmF0774BxL4YSFlhgjICICadVGNA3jdgUM/I2O2dgq43mLyjj0xMqTQrbO/7lZsm +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R1 O=Google Trust Services LLC +# Subject: CN=GTS Root R1 O=Google Trust Services LLC +# Label: "GTS Root R1" +# Serial: 159662320309726417404178440727 +# MD5 Fingerprint: 05:fe:d0:bf:71:a8:a3:76:63:da:01:e0:d8:52:dc:40 +# SHA1 Fingerprint: e5:8c:1c:c4:91:3b:38:63:4b:e9:10:6e:e3:ad:8e:6b:9d:d9:81:4a +# SHA256 Fingerprint: d9:47:43:2a:bd:e7:b7:fa:90:fc:2e:6b:59:10:1b:12:80:e0:e1:c7:e4:e4:0f:a3:c6:88:7f:ff:57:a7:f4:cf +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlk28xsBNJiGuiFzANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaMf/vo +27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vXmX7w +Cl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7zUjw +TcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0Pfybl +qAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtcvfaH +szVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4Zor8 +Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUspzBmk +MiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOORc92 +wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70p +aDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+DVrN +VjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgFlQID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBAJ+qQibb +C5u+/x6Wki4+omVKapi6Ist9wTrYggoGxval3sBOh2Z5ofmmWJyq+bXmYOfg6LEe +QkEzCzc9zolwFcq1JKjPa7XSQCGYzyI0zzvFIoTgxQ6KfF2I5DUkzps+GlQebtuy +h6f88/qBVRRiClmpIgUxPoLW7ttXNLwzldMXG+gnoot7TiYaelpkttGsN/H9oPM4 +7HLwEXWdyzRSjeZ2axfG34arJ45JK3VmgRAhpuo+9K4l/3wV3s6MJT/KYnAK9y8J +ZgfIPxz88NtFMN9iiMG1D53Dn0reWVlHxYciNuaCp+0KueIHoI17eko8cdLiA6Ef +MgfdG+RCzgwARWGAtQsgWSl4vflVy2PFPEz0tv/bal8xa5meLMFrUKTX5hgUvYU/ +Z6tGn6D/Qqc6f1zLXbBwHSs09dR2CQzreExZBfMzQsNhFRAbd03OIozUhfJFfbdT +6u9AWpQKXCBfTkBdYiJ23//OYb2MI3jSNwLgjt7RETeJ9r/tSQdirpLsQBqvFAnZ +0E6yove+7u7Y/9waLd64NnHi/Hm3lCXRSHNboTXns5lndcEZOitHTtNCjv0xyBZm +2tIMPNuzjsmhDYAPexZ3FL//2wmUspO8IFgV6dtxQ/PeEMMA3KgqlbbC1j+Qa3bb +bP6MvPJwNQzcmRk13NfIRmPVNnGuV/u3gm3c +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R2 O=Google Trust Services LLC +# Subject: CN=GTS Root R2 O=Google Trust Services LLC +# Label: "GTS Root R2" +# Serial: 159662449406622349769042896298 +# MD5 Fingerprint: 1e:39:c0:53:e6:1e:29:82:0b:ca:52:55:36:5d:57:dc +# SHA1 Fingerprint: 9a:44:49:76:32:db:de:fa:d0:bc:fb:5a:7b:17:bd:9e:56:09:24:94 +# SHA256 Fingerprint: 8d:25:cd:97:22:9d:bf:70:35:6b:da:4e:b3:cc:73:40:31:e2:4c:f0:0f:af:cf:d3:2d:c7:6e:b5:84:1c:7e:a8 +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlrsWNBCUaqxElqjANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3LvCvpt +nfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3KgGjSY +6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9BuXvAu +MC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOdre7k +RXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXuPuWg +f9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1mKPV ++3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K8Yzo +dDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqjx5RW +Ir9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsRnTKa +G73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0kzCq +gc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9OktwID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBAB/Kzt3H +vqGf2SdMC9wXmBFqiN495nFWcrKeGk6c1SuYJF2ba3uwM4IJvd8lRuqYnrYb/oM8 +0mJhwQTtzuDFycgTE1XnqGOtjHsB/ncw4c5omwX4Eu55MaBBRTUoCnGkJE+M3DyC +B19m3H0Q/gxhswWV7uGugQ+o+MePTagjAiZrHYNSVc61LwDKgEDg4XSsYPWHgJ2u +NmSRXbBoGOqKYcl3qJfEycel/FVL8/B/uWU9J2jQzGv6U53hkRrJXRqWbTKH7QMg +yALOWr7Z6v2yTcQvG99fevX4i8buMTolUVVnjWQye+mew4K6Ki3pHrTgSAai/Gev +HyICc/sgCq+dVEuhzf9gR7A/Xe8bVr2XIZYtCtFenTgCR2y59PYjJbigapordwj6 +xLEokCZYCDzifqrXPW+6MYgKBesntaFJ7qBFVHvmJ2WZICGoo7z7GJa7Um8M7YNR +TOlZ4iBgxcJlkoKM8xAfDoqXvneCbT+PHV28SSe9zE8P4c52hgQjxcCMElv924Sg +JPFI/2R80L5cFtHvma3AH/vLrrw4IgYmZNralw4/KBVEqE8AyvCazM90arQ+POuV +7LXTWtiBmelDGDfrs7vRWGJB82bSj6p4lVQgw1oudCvV0b4YacCs1aTPObpRhANl +6WLAYv7YTVWW4tAR+kg0Eeye7QUd5MjWHYbL +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R3 O=Google Trust Services LLC +# Subject: CN=GTS Root R3 O=Google Trust Services LLC +# Label: "GTS Root R3" +# Serial: 159662495401136852707857743206 +# MD5 Fingerprint: 3e:e7:9d:58:02:94:46:51:94:e5:e0:22:4a:8b:e7:73 +# SHA1 Fingerprint: ed:e5:71:80:2b:c8:92:b9:5b:83:3c:d2:32:68:3f:09:cd:a0:1e:46 +# SHA256 Fingerprint: 34:d8:a7:3e:e2:08:d9:bc:db:0d:95:65:20:93:4b:4e:40:e6:94:82:59:6e:8b:6f:73:c8:42:6b:01:0a:6f:48 +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPluILrIPglJ209ZjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout736G +jOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2ADDL2 +4CejQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEA9uEglRR7 +VKOQFhG/hMjqb2sXnh5GmCCbn9MN2azTL818+FsuVbu/3ZL3pAzcMeGiAjEA/Jdm +ZuVDFhOD3cffL74UOO0BzrEXGhF16b0DjyZ+hOXJYKaV11RZt+cRLInUue4X +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R4 O=Google Trust Services LLC +# Subject: CN=GTS Root R4 O=Google Trust Services LLC +# Label: "GTS Root R4" +# Serial: 159662532700760215368942768210 +# MD5 Fingerprint: 43:96:83:77:19:4d:76:b3:9d:65:52:e4:1d:22:a5:e8 +# SHA1 Fingerprint: 77:d3:03:67:b5:e0:0c:15:f6:0c:38:61:df:7c:e1:3b:92:46:4d:47 +# SHA256 Fingerprint: 34:9d:fa:40:58:c5:e2:63:12:3b:39:8a:e7:95:57:3c:4e:13:13:c8:3f:e6:8f:93:55:6c:d5:e8:03:1b:3c:7d +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPlwGjvYxqccpBQUjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzuhXyi +QHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvR +HYqjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNpADBmAjEA6ED/g94D +9J+uHXqnLrmvT/aDHQ4thQEd0dlq7A/Cr8deVl5c1RxYIigL9zC2L7F8AjEA8GE8 +p/SgguMh1YQdc4acLa/KNJvxn7kjNuK8YAOdgLOaVsjh4rsUecrNIdSUtUlD +-----END CERTIFICATE----- + +# Issuer: CN=Telia Root CA v2 O=Telia Finland Oyj +# Subject: CN=Telia Root CA v2 O=Telia Finland Oyj +# Label: "Telia Root CA v2" +# Serial: 7288924052977061235122729490515358 +# MD5 Fingerprint: 0e:8f:ac:aa:82:df:85:b1:f4:dc:10:1c:fc:99:d9:48 +# SHA1 Fingerprint: b9:99:cd:d1:73:50:8a:c4:47:05:08:9c:8c:88:fb:be:a0:2b:40:cd +# SHA256 Fingerprint: 24:2b:69:74:2f:cb:1e:5b:2a:bf:98:89:8b:94:57:21:87:54:4e:5b:4d:99:11:78:65:73:62:1f:6a:74:b8:2c +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIPAWdfJ9b+euPkrL4JWwWeMA0GCSqGSIb3DQEBCwUAMEQx +CzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UE +AwwQVGVsaWEgUm9vdCBDQSB2MjAeFw0xODExMjkxMTU1NTRaFw00MzExMjkxMTU1 +NTRaMEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZ +MBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2MjCCAiIwDQYJKoZIhvcNAQEBBQADggIP +ADCCAgoCggIBALLQPwe84nvQa5n44ndp586dpAO8gm2h/oFlH0wnrI4AuhZ76zBq +AMCzdGh+sq/H1WKzej9Qyow2RCRj0jbpDIX2Q3bVTKFgcmfiKDOlyzG4OiIjNLh9 +vVYiQJ3q9HsDrWj8soFPmNB06o3lfc1jw6P23pLCWBnglrvFxKk9pXSW/q/5iaq9 +lRdU2HhE8Qx3FZLgmEKnpNaqIJLNwaCzlrI6hEKNfdWV5Nbb6WLEWLN5xYzTNTOD +n3WhUidhOPFZPY5Q4L15POdslv5e2QJltI5c0BE0312/UqeBAMN/mUWZFdUXyApT +7GPzmX3MaRKGwhfwAZ6/hLzRUssbkmbOpFPlob/E2wnW5olWK8jjfN7j/4nlNW4o +6GwLI1GpJQXrSPjdscr6bAhR77cYbETKJuFzxokGgeWKrLDiKca5JLNrRBH0pUPC +TEPlcDaMtjNXepUugqD0XBCzYYP2AgWGLnwtbNwDRm41k9V6lS/eINhbfpSQBGq6 +WT0EBXWdN6IOLj3rwaRSg/7Qa9RmjtzG6RJOHSpXqhC8fF6CfaamyfItufUXJ63R +DolUK5X6wK0dmBR4M0KGCqlztft0DbcbMBnEWg4cJ7faGND/isgFuvGqHKI3t+ZI +pEYslOqodmJHixBTB0hXbOKSTbauBcvcwUpej6w9GU7C7WB1K9vBykLVAgMBAAGj +YzBhMB8GA1UdIwQYMBaAFHKs5DN5qkWH9v2sHZ7Wxy+G2CQ5MB0GA1UdDgQWBBRy +rOQzeapFh/b9rB2e1scvhtgkOTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw +AwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAoDtZpwmUPjaE0n4vOaWWl/oRrfxn83EJ +8rKJhGdEr7nv7ZbsnGTbMjBvZ5qsfl+yqwE2foH65IRe0qw24GtixX1LDoJt0nZi +0f6X+J8wfBj5tFJ3gh1229MdqfDBmgC9bXXYfef6xzijnHDoRnkDry5023X4blMM +A8iZGok1GTzTyVR8qPAs5m4HeW9q4ebqkYJpCh3DflminmtGFZhb069GHWLIzoBS +SRE/yQQSwxN8PzuKlts8oB4KtItUsiRnDe+Cy748fdHif64W1lZYudogsYMVoe+K +TTJvQS8TUoKU1xrBeKJR3Stwbbca+few4GeXVtt8YVMJAygCQMez2P2ccGrGKMOF +6eLtGpOg3kuYooQ+BXcBlj37tCAPnHICehIv1aO6UXivKitEZU61/Qrowc15h2Er +3oBXRb9n8ZuRXqWk7FlIEA04x7D6w0RtBPV4UBySllva9bguulvP5fBqnUsvWHMt +Ty3EHD70sz+rFQ47GUGKpMFXEmZxTPpT41frYpUJnlTd0cI8Vzy9OK2YZLe4A5pT +VmBds9hCG1xLEooc6+t9xnppxyd/pPiL8uSUZodL6ZQHCRJ5irLrdATczvREWeAW +ysUsWNc8e89ihmpQfTU2Zqf7N+cox9jQraVplI/owd8k+BsHMYeB2F326CjYSlKA +rBPuUBQemMc= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST BR Root CA 1 2020" +# Serial: 165870826978392376648679885835942448534 +# MD5 Fingerprint: b5:aa:4b:d5:ed:f7:e3:55:2e:8f:72:0a:f3:75:b8:ed +# SHA1 Fingerprint: 1f:5b:98:f0:e3:b5:f7:74:3c:ed:e6:b0:36:7d:32:cd:f4:09:41:67 +# SHA256 Fingerprint: e5:9a:aa:81:60:09:c2:2b:ff:5b:25:ba:d3:7d:f3:06:f0:49:79:7c:1f:81:d8:5a:b0:89:e6:57:bd:8f:00:44 +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQfMmPK4TX3+oPyWWa00tNljAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEJSIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTA5NDUwMFoXDTM1MDIxMTA5 +NDQ1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBCUiBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABMbLxyjR+4T1mu9CFCDhQ2tuda38KwOE1HaTJddZO0Flax7mNCq7dPYS +zuht56vkPE4/RAiLzRZxy7+SmfSk1zxQVFKQhYN4lGdnoxwJGT11NIXe7WB9xwy0 +QVK5buXuQqOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHOREKv/ +VbNafAkl1bK6CKBrqx9tMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2JyX3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwQlIlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAlJAtE/rhY/hhY+ithXhUkZy4kzg+GkHaQBZTQgjKL47xPoFW +wKrY7RjEsK70PvomAjEA8yjixtsrmfu3Ubgko6SUeho/5jbiA1czijDLgsfWFBHV +dWNbFJWcHwHP2NVypw87 +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST EV Root CA 1 2020" +# Serial: 126288379621884218666039612629459926992 +# MD5 Fingerprint: 8c:2d:9d:70:9f:48:99:11:06:11:fb:e9:cb:30:c0:6e +# SHA1 Fingerprint: 61:db:8c:21:59:69:03:90:d8:7c:9c:12:86:54:cf:9d:3d:f4:dd:07 +# SHA256 Fingerprint: 08:17:0d:1a:a3:64:53:90:1a:2f:95:92:45:e3:47:db:0c:8d:37:ab:aa:bc:56:b8:1a:a1:00:dc:95:89:70:db +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQXwJB13qHfEwDo6yWjfv/0DAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEVWIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTEwMDAwMFoXDTM1MDIxMTA5 +NTk1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBFViBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPEL3YZDIBnfl4XoIkqbz52Yv7QFJsnL46bSj8WeeHsxiamJrSc8ZRCC +/N/DnU7wMyPE0jL1HLDfMxddxfCxivnvubcUyilKwg+pf3VlSSowZ/Rk99Yad9rD +wpdhQntJraOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFH8QARY3 +OqQo5FD4pPfsazK2/umLMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2V2X3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwRVYlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAyjzGKnXCXnViOTYAYFqLwZOZzNnbQTs7h5kXO9XMT8oi96CA +y/m0sRtW9XLS/BnRAjEAkfcwkz8QRitxpNA7RJvAKQIFskF3UfN5Wp6OFKBOQtJb +gfM0agPnIjhQW+0ZT0MW +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS ECC P384 Root G5" +# Serial: 13129116028163249804115411775095713523 +# MD5 Fingerprint: d3:71:04:6a:43:1c:db:a6:59:e1:a8:a3:aa:c5:71:ed +# SHA1 Fingerprint: 17:f3:de:5e:9f:0f:19:e9:8e:f6:1f:32:26:6e:20:c4:07:ae:30:ee +# SHA256 Fingerprint: 01:8e:13:f0:77:25:32:cf:80:9b:d1:b1:72:81:86:72:83:fc:48:c6:e1:3b:e9:c6:98:12:85:4a:49:0c:1b:05 +-----BEGIN CERTIFICATE----- +MIICGTCCAZ+gAwIBAgIQCeCTZaz32ci5PhwLBCou8zAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJjAkBgNVBAMTHURp +Z2lDZXJ0IFRMUyBFQ0MgUDM4NCBSb290IEc1MB4XDTIxMDExNTAwMDAwMFoXDTQ2 +MDExNDIzNTk1OVowTjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJ +bmMuMSYwJAYDVQQDEx1EaWdpQ2VydCBUTFMgRUNDIFAzODQgUm9vdCBHNTB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABMFEoc8Rl1Ca3iOCNQfN0MsYndLxf3c1TzvdlHJS +7cI7+Oz6e2tYIOyZrsn8aLN1udsJ7MgT9U7GCh1mMEy7H0cKPGEQQil8pQgO4CLp +0zVozptjn4S1mU1YoI71VOeVyaNCMEAwHQYDVR0OBBYEFMFRRVBZqz7nLFr6ICIS +B4CIfBFqMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MAoGCCqGSM49 +BAMDA2gAMGUCMQCJao1H5+z8blUD2WdsJk6Dxv3J+ysTvLd6jLRl0mlpYxNjOyZQ +LgGheQaRnUi/wr4CMEfDFXuxoJGZSZOoPHzoRgaLLPIxAJSdYsiJvRmEFOml+wG4 +DXZDjC5Ty3zfDBeWUA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS RSA4096 Root G5" +# Serial: 11930366277458970227240571539258396554 +# MD5 Fingerprint: ac:fe:f7:34:96:a9:f2:b3:b4:12:4b:e4:27:41:6f:e1 +# SHA1 Fingerprint: a7:88:49:dc:5d:7c:75:8c:8c:de:39:98:56:b3:aa:d0:b2:a5:71:35 +# SHA256 Fingerprint: 37:1a:00:dc:05:33:b3:72:1a:7e:eb:40:e8:41:9e:70:79:9d:2b:0a:0f:2c:1d:80:69:31:65:f7:ce:c4:ad:75 +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCPm0eKj6ftpqMzeJ3nzPijANBgkqhkiG9w0BAQwFADBN +MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJTAjBgNVBAMT +HERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwHhcNMjEwMTE1MDAwMDAwWhcN +NDYwMTE0MjM1OTU5WjBNMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQs +IEluYy4xJTAjBgNVBAMTHERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCz0PTJeRGd/fxmgefM1eS87IE+ +ajWOLrfn3q/5B03PMJ3qCQuZvWxX2hhKuHisOjmopkisLnLlvevxGs3npAOpPxG0 +2C+JFvuUAT27L/gTBaF4HI4o4EXgg/RZG5Wzrn4DReW+wkL+7vI8toUTmDKdFqgp +wgscONyfMXdcvyej/Cestyu9dJsXLfKB2l2w4SMXPohKEiPQ6s+d3gMXsUJKoBZM +pG2T6T867jp8nVid9E6P/DsjyG244gXazOvswzH016cpVIDPRFtMbzCe88zdH5RD +nU1/cHAN1DrRN/BsnZvAFJNY781BOHW8EwOVfH/jXOnVDdXifBBiqmvwPXbzP6Po +sMH976pXTayGpxi0KcEsDr9kvimM2AItzVwv8n/vFfQMFawKsPHTDU9qTXeXAaDx +Zre3zu/O7Oyldcqs4+Fj97ihBMi8ez9dLRYiVu1ISf6nL3kwJZu6ay0/nTvEF+cd +Lvvyz6b84xQslpghjLSR6Rlgg/IwKwZzUNWYOwbpx4oMYIwo+FKbbuH2TbsGJJvX +KyY//SovcfXWJL5/MZ4PbeiPT02jP/816t9JXkGPhvnxd3lLG7SjXi/7RgLQZhNe +XoVPzthwiHvOAbWWl9fNff2C+MIkwcoBOU+NosEUQB+cZtUMCUbW8tDRSHZWOkPL +tgoRObqME2wGtZ7P6wIDAQABo0IwQDAdBgNVHQ4EFgQUUTMc7TZArxfTJc1paPKv +TiM+s0EwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcN +AQEMBQADggIBAGCmr1tfV9qJ20tQqcQjNSH/0GEwhJG3PxDPJY7Jv0Y02cEhJhxw +GXIeo8mH/qlDZJY6yFMECrZBu8RHANmfGBg7sg7zNOok992vIGCukihfNudd5N7H +PNtQOa27PShNlnx2xlv0wdsUpasZYgcYQF+Xkdycx6u1UQ3maVNVzDl92sURVXLF +O4uJ+DQtpBflF+aZfTCIITfNMBc9uPK8qHWgQ9w+iUuQrm0D4ByjoJYJu32jtyoQ +REtGBzRj7TG5BO6jm5qu5jF49OokYTurWGT/u4cnYiWB39yhL/btp/96j1EuMPik +AdKFOV8BmZZvWltwGUb+hmA+rYAQCd05JS9Yf7vSdPD3Rh9GOUrYU9DzLjtxpdRv +/PNn5AeP3SYZ4Y1b+qOTEZvpyDrDVWiakuFSdjjo4bq9+0/V77PnSIMx8IIh47a+ +p6tv75/fTM8BuGJqIz3nCU2AG3swpMPdB380vqQmsvZB6Akd4yCYqjdP//fx4ilw +MUc/dNAUFvohigLVigmUdy7yWSiLfFCSCmZ4OIN1xLVaqBHG5cGdZlXPU8Sv13WF +qUITVuwhd4GTWgzqltlJyqEI8pc7bZsEGCREjnwB8twl2F6GmrE52/WRMmrRpnCK +ovfepEWFJqgejF0pW8hL2JpqA15w8oVPbEtoL8pU9ozaMv7Da4M/OMZ+ +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root R1 O=Certainly +# Subject: CN=Certainly Root R1 O=Certainly +# Label: "Certainly Root R1" +# Serial: 188833316161142517227353805653483829216 +# MD5 Fingerprint: 07:70:d4:3e:82:87:a0:fa:33:36:13:f4:fa:33:e7:12 +# SHA1 Fingerprint: a0:50:ee:0f:28:71:f4:27:b2:12:6d:6f:50:96:25:ba:cc:86:42:af +# SHA256 Fingerprint: 77:b8:2c:d8:64:4c:43:05:f7:ac:c5:cb:15:6b:45:67:50:04:03:3d:51:c6:0c:62:02:a8:e0:c3:34:67:d3:a0 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIRAI4P+UuQcWhlM1T01EQ5t+AwDQYJKoZIhvcNAQELBQAw +PTELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCUNlcnRhaW5seTEaMBgGA1UEAxMRQ2Vy +dGFpbmx5IFJvb3QgUjEwHhcNMjEwNDAxMDAwMDAwWhcNNDYwNDAxMDAwMDAwWjA9 +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0 +YWlubHkgUm9vdCBSMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANA2 +1B/q3avk0bbm+yLA3RMNansiExyXPGhjZjKcA7WNpIGD2ngwEc/csiu+kr+O5MQT +vqRoTNoCaBZ0vrLdBORrKt03H2As2/X3oXyVtwxwhi7xOu9S98zTm/mLvg7fMbed +aFySpvXl8wo0tf97ouSHocavFwDvA5HtqRxOcT3Si2yJ9HiG5mpJoM610rCrm/b0 +1C7jcvk2xusVtyWMOvwlDbMicyF0yEqWYZL1LwsYpfSt4u5BvQF5+paMjRcCMLT5 +r3gajLQ2EBAHBXDQ9DGQilHFhiZ5shGIXsXwClTNSaa/ApzSRKft43jvRl5tcdF5 +cBxGX1HpyTfcX35pe0HfNEXgO4T0oYoKNp43zGJS4YkNKPl6I7ENPT2a/Z2B7yyQ +wHtETrtJ4A5KVpK8y7XdeReJkd5hiXSSqOMyhb5OhaRLWcsrxXiOcVTQAjeZjOVJ +6uBUcqQRBi8LjMFbvrWhsFNunLhgkR9Za/kt9JQKl7XsxXYDVBtlUrpMklZRNaBA +2CnbrlJ2Oy0wQJuK0EJWtLeIAaSHO1OWzaMWj/Nmqhexx2DgwUMFDO6bW2BvBlyH +Wyf5QBGenDPBt+U1VwV/J84XIIwc/PH72jEpSe31C4SnT8H2TsIonPru4K8H+zMR +eiFPCyEQtkA6qyI6BJyLm4SGcprSp6XEtHWRqSsjAgMBAAGjQjBAMA4GA1UdDwEB +/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTgqj8ljZ9EXME66C6u +d0yEPmcM9DANBgkqhkiG9w0BAQsFAAOCAgEAuVevuBLaV4OPaAszHQNTVfSVcOQr +PbA56/qJYv331hgELyE03fFo8NWWWt7CgKPBjcZq91l3rhVkz1t5BXdm6ozTaw3d +8VkswTOlMIAVRQdFGjEitpIAq5lNOo93r6kiyi9jyhXWx8bwPWz8HA2YEGGeEaIi +1wrykXprOQ4vMMM2SZ/g6Q8CRFA3lFV96p/2O7qUpUzpvD5RtOjKkjZUbVwlKNrd +rRT90+7iIgXr0PK3aBLXWopBGsaSpVo7Y0VPv+E6dyIvXL9G+VoDhRNCX8reU9di +taY1BMJH/5n9hN9czulegChB8n3nHpDYT3Y+gjwN/KUD+nsa2UUeYNrEjvn8K8l7 +lcUq/6qJ34IxD3L/DCfXCh5WAFAeDJDBlrXYFIW7pw0WwfgHJBu6haEaBQmAupVj +yTrsJZ9/nbqkRxWbRHDxakvWOF5D8xh+UG7pWijmZeZ3Gzr9Hb4DJqPb1OG7fpYn +Kx3upPvaJVQTA945xsMfTZDsjxtK0hzthZU4UHlG1sGQUDGpXJpuHfUzVounmdLy +yCwzk5Iwx06MZTMQZBf9JBeW0Y3COmor6xOLRPIh80oat3df1+2IpHLlOR+Vnb5n +wXARPbv0+Em34yaXOp/SX3z7wJl8OSngex2/DaeP0ik0biQVy96QXr8axGbqwua6 +OV+KmalBWQewLK8= +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root E1 O=Certainly +# Subject: CN=Certainly Root E1 O=Certainly +# Label: "Certainly Root E1" +# Serial: 8168531406727139161245376702891150584 +# MD5 Fingerprint: 0a:9e:ca:cd:3e:52:50:c6:36:f3:4b:a3:ed:a7:53:e9 +# SHA1 Fingerprint: f9:e1:6d:dc:01:89:cf:d5:82:45:63:3e:c5:37:7d:c2:eb:93:6f:2b +# SHA256 Fingerprint: b4:58:5f:22:e4:ac:75:6a:4e:86:12:a1:36:1c:5d:9d:03:1a:93:fd:84:fe:bb:77:8f:a3:06:8b:0f:c4:2d:c2 +-----BEGIN CERTIFICATE----- +MIIB9zCCAX2gAwIBAgIQBiUzsUcDMydc+Y2aub/M+DAKBggqhkjOPQQDAzA9MQsw +CQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0YWlu +bHkgUm9vdCBFMTAeFw0yMTA0MDEwMDAwMDBaFw00NjA0MDEwMDAwMDBaMD0xCzAJ +BgNVBAYTAlVTMRIwEAYDVQQKEwlDZXJ0YWlubHkxGjAYBgNVBAMTEUNlcnRhaW5s +eSBSb290IEUxMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3m/4fxzf7flHh4axpMCK ++IKXgOqPyEpeKn2IaKcBYhSRJHpcnqMXfYqGITQYUBsQ3tA3SybHGWCA6TS9YBk2 +QNYphwk8kXr2vBMj3VlOBF7PyAIcGFPBMdjaIOlEjeR2o0IwQDAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU8ygYy2R17ikq6+2uI1g4 +hevIIgcwCgYIKoZIzj0EAwMDaAAwZQIxALGOWiDDshliTd6wT99u0nCK8Z9+aozm +ut6Dacpps6kFtZaSF4fC0urQe87YQVt8rgIwRt7qy12a7DLCZRawTDBcMPPaTnOG +BtjOiQRINzf43TNRnXCve1XYAS59BWQOhriR +-----END CERTIFICATE----- + +# Issuer: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. +# Subject: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. +# Label: "Security Communication RootCA3" +# Serial: 16247922307909811815 +# MD5 Fingerprint: 1c:9a:16:ff:9e:5c:e0:4d:8a:14:01:f4:35:5d:29:26 +# SHA1 Fingerprint: c3:03:c8:22:74:92:e5:61:a2:9c:5f:79:91:2b:1e:44:13:91:30:3a +# SHA256 Fingerprint: 24:a5:5c:2a:b0:51:44:2d:06:17:76:65:41:23:9a:4a:d0:32:d7:c5:51:75:aa:34:ff:de:2f:bc:4f:5c:52:94 +-----BEGIN CERTIFICATE----- +MIIFfzCCA2egAwIBAgIJAOF8N0D9G/5nMA0GCSqGSIb3DQEBDAUAMF0xCzAJBgNV +BAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScw +JQYDVQQDEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTMwHhcNMTYwNjE2 +MDYxNzE2WhcNMzgwMTE4MDYxNzE2WjBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc +U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UEAxMeU2VjdXJpdHkg +Q29tbXVuaWNhdGlvbiBSb290Q0EzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +CgKCAgEA48lySfcw3gl8qUCBWNO0Ot26YQ+TUG5pPDXC7ltzkBtnTCHsXzW7OT4r +CmDvu20rhvtxosis5FaU+cmvsXLUIKx00rgVrVH+hXShuRD+BYD5UpOzQD11EKzA +lrenfna84xtSGc4RHwsENPXY9Wk8d/Nk9A2qhd7gCVAEF5aEt8iKvE1y/By7z/MG +TfmfZPd+pmaGNXHIEYBMwXFAWB6+oHP2/D5Q4eAvJj1+XCO1eXDe+uDRpdYMQXF7 +9+qMHIjH7Iv10S9VlkZ8WjtYO/u62C21Jdp6Ts9EriGmnpjKIG58u4iFW/vAEGK7 +8vknR+/RiTlDxN/e4UG/VHMgly1s2vPUB6PmudhvrvyMGS7TZ2crldtYXLVqAvO4 +g160a75BflcJdURQVc1aEWEhCmHCqYj9E7wtiS/NYeCVvsq1e+F7NGcLH7YMx3we +GVPKp7FKFSBWFHA9K4IsD50VHUeAR/94mQ4xr28+j+2GaR57GIgUssL8gjMunEst ++3A7caoreyYn8xrC3PsXuKHqy6C0rtOUfnrQq8PsOC0RLoi/1D+tEjtCrI8Cbn3M +0V9hvqG8OmpI6iZVIhZdXw3/JzOfGAN0iltSIEdrRU0id4xVJ/CvHozJgyJUt5rQ +T9nO/NkuHJYosQLTA70lUhw0Zk8jq/R3gpYd0VcwCBEF/VfR2ccCAwEAAaNCMEAw +HQYDVR0OBBYEFGQUfPxYchamCik0FW8qy7z8r6irMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBDAUAA4ICAQDcAiMI4u8hOscNtybS +YpOnpSNyByCCYN8Y11StaSWSntkUz5m5UoHPrmyKO1o5yGwBQ8IibQLwYs1OY0PA +FNr0Y/Dq9HHuTofjcan0yVflLl8cebsjqodEV+m9NU1Bu0soo5iyG9kLFwfl9+qd +9XbXv8S2gVj/yP9kaWJ5rW4OH3/uHWnlt3Jxs/6lATWUVCvAUm2PVcTJ0rjLyjQI +UYWg9by0F1jqClx6vWPGOi//lkkZhOpn2ASxYfQAW0q3nHE3GYV5v4GwxxMOdnE+ +OoAGrgYWp421wsTL/0ClXI2lyTrtcoHKXJg80jQDdwj98ClZXSEIx2C/pHF7uNke +gr4Jr2VvKKu/S7XuPghHJ6APbw+LP6yVGPO5DtxnVW5inkYO0QR4ynKudtml+LLf +iAlhi+8kTtFZP1rUPcmTPCtk9YENFpb3ksP+MW/oKjJ0DvRMmEoYDjBU1cXrvMUV +nuiZIesnKwkK2/HmcBhWuwzkvvnoEKQTkrgc4NtnHVMDpCKn3F2SEDzq//wbEBrD +2NCcnWXL0CsnMQMeNuE9dnUM/0Umud1RvCPHX9jYhxBAEg09ODfnRDwYwFMJZI// +1ZqmfHAuc1Uh6N//g7kdPjIe1qZ9LPFm6Vwdp6POXiUyK+OVrCoHzrQoeIY8Laad +TdJ0MN1kURXbg4NR16/9M51NZg== +-----END CERTIFICATE----- + +# Issuer: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Subject: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Label: "Security Communication ECC RootCA1" +# Serial: 15446673492073852651 +# MD5 Fingerprint: 7e:43:b0:92:68:ec:05:43:4c:98:ab:5d:35:2e:7e:86 +# SHA1 Fingerprint: b8:0e:26:a9:bf:d2:b2:3b:c0:ef:46:c9:ba:c7:bb:f6:1d:0d:41:41 +# SHA256 Fingerprint: e7:4f:bd:a5:5b:d5:64:c4:73:a3:6b:44:1a:a7:99:c8:a6:8e:07:74:40:e8:28:8b:9f:a1:e5:0e:4b:ba:ca:11 +-----BEGIN CERTIFICATE----- +MIICODCCAb6gAwIBAgIJANZdm7N4gS7rMAoGCCqGSM49BAMDMGExCzAJBgNVBAYT +AkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSswKQYD +VQQDEyJTZWN1cml0eSBDb21tdW5pY2F0aW9uIEVDQyBSb290Q0ExMB4XDTE2MDYx +NjA1MTUyOFoXDTM4MDExODA1MTUyOFowYTELMAkGA1UEBhMCSlAxJTAjBgNVBAoT +HFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKzApBgNVBAMTIlNlY3VyaXR5 +IENvbW11bmljYXRpb24gRUNDIFJvb3RDQTEwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AASkpW9gAwPDvTH00xecK4R1rOX9PVdu12O/5gSJko6BnOPpR27KkBLIE+Cnnfdl +dB9sELLo5OnvbYUymUSxXv3MdhDYW72ixvnWQuRXdtyQwjWpS4g8EkdtXP9JTxpK +ULGjQjBAMB0GA1UdDgQWBBSGHOf+LaVKiwj+KBH6vqNm+GBZLzAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjAVXUI9/Lbu +9zuxNuie9sRGKEkz0FhDKmMpzE2xtHqiuQ04pV1IKv3LsnNdo4gIxwwCMQDAqy0O +be0YottT6SXbVQjgUMzfRGEWgqtJsLKB7HOHeLRMsmIbEvoWTSVLY70eN9k= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA1" +# Serial: 113562791157148395269083148143378328608 +# MD5 Fingerprint: 42:32:99:76:43:33:36:24:35:07:82:9b:28:f9:d0:90 +# SHA1 Fingerprint: d5:ec:8d:7b:4c:ba:79:f4:e7:e8:cb:9d:6b:ae:77:83:10:03:21:6a +# SHA256 Fingerprint: f3:89:6f:88:fe:7c:0a:88:27:66:a7:fa:6a:d2:74:9f:b5:7a:7f:3e:98:fb:76:9c:1f:a7:b0:9c:2c:44:d5:ae +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIQVW9l47TZkGobCdFsPsBsIDANBgkqhkiG9w0BAQsFADBU +MQswCQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRI +T1JJVFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0ExMB4XDTE5MTIxOTAz +MTYxN1oXDTQ0MTIxMjAzMTYxN1owVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJF +SUpJTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2Jh +bCBSb290IENBMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAPFmCL3Z +xRVhy4QEQaVpN3cdwbB7+sN3SJATcmTRuHyQNZ0YeYjjlwE8R4HyDqKYDZ4/N+AZ +spDyRhySsTphzvq3Rp4Dhtczbu33RYx2N95ulpH3134rhxfVizXuhJFyV9xgw8O5 +58dnJCNPYwpj9mZ9S1WnP3hkSWkSl+BMDdMJoDIwOvqfwPKcxRIqLhy1BDPapDgR +at7GGPZHOiJBhyL8xIkoVNiMpTAK+BcWyqw3/XmnkRd4OJmtWO2y3syJfQOcs4ll +5+M7sSKGjwZteAf9kRJ/sGsciQ35uMt0WwfCyPQ10WRjeulumijWML3mG90Vr4Tq +nMfK9Q7q8l0ph49pczm+LiRvRSGsxdRpJQaDrXpIhRMsDQa4bHlW/KNnMoH1V6XK +V0Jp6VwkYe/iMBhORJhVb3rCk9gZtt58R4oRTklH2yiUAguUSiz5EtBP6DF+bHq/ +pj+bOT0CFqMYs2esWz8sgytnOYFcuX6U1WTdno9uruh8W7TXakdI136z1C2OVnZO +z2nxbkRs1CTqjSShGL+9V/6pmTW12xB3uD1IutbB5/EjPtffhZ0nPNRAvQoMvfXn +jSXWgXSHRtQpdaJCbPdzied9v3pKH9MiyRVVz99vfFXQpIsHETdfg6YmV6YBW37+ +WGgHqel62bno/1Afq8K0wM7o6v0PvY1NuLxxAgMBAAGjQjBAMB0GA1UdDgQWBBTF +7+3M2I0hxkjk49cULqcWk+WYATAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE +AwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAUoKsITQfI/Ki2Pm4rzc2IInRNwPWaZ+4 +YRC6ojGYWUfo0Q0lHhVBDOAqVdVXUsv45Mdpox1NcQJeXyFFYEhcCY5JEMEE3Kli +awLwQ8hOnThJdMkycFRtwUf8jrQ2ntScvd0g1lPJGKm1Vrl2i5VnZu69mP6u775u ++2D2/VnGKhs/I0qUJDAnyIm860Qkmss9vk/Ves6OF8tiwdneHg56/0OGNFK8YT88 +X7vZdrRTvJez/opMEi4r89fO4aL/3Xtw+zuhTaRjAv04l5U/BXCga99igUOLtFkN +SoxUnMW7gZ/NfaXvCyUeOiDbHPwfmGcCCtRzRBPbUYQaVQNW4AB+dAb/OMRyHdOo +P2gxXdMJxy6MW2Pg6Nwe0uxhHvLe5e/2mXZgLR6UcnHGCyoyx5JO1UbXHfmpGQrI ++pXObSOYqgs4rZpWDW+N8TEAiMEXnM0ZNjX+VVOg4DwzX5Ze4jLp3zO7Bkqp2IRz +znfSxqxx4VyjHQy7Ct9f4qNx2No3WqB4K/TUfet27fJhcKVlmtOJNBir+3I+17Q9 +eVzYH6Eze9mCUAyTF6ps3MKCuwJXNq+YJyo5UOGwifUll35HaBC07HPKs5fRJNz2 +YqAo07WjuGS3iGJCz51TzZm+ZGiPTx4SSPfSKcOYKMryMguTjClPPGAyzQWWYezy +r/6zcCwupvI= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA2" +# Serial: 58605626836079930195615843123109055211 +# MD5 Fingerprint: 5e:0a:f6:47:5f:a6:14:e8:11:01:95:3f:4d:01:eb:3c +# SHA1 Fingerprint: f4:27:86:eb:6e:b8:6d:88:31:67:02:fb:ba:66:a4:53:00:aa:7a:a6 +# SHA256 Fingerprint: 57:4d:f6:93:1e:27:80:39:66:7b:72:0a:fd:c1:60:0f:c2:7e:b6:6d:d3:09:29:79:fb:73:85:64:87:21:28:82 +-----BEGIN CERTIFICATE----- +MIICJTCCAaugAwIBAgIQLBcIfWQqwP6FGFkGz7RK6zAKBggqhkjOPQQDAzBUMQsw +CQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRIT1JJ +VFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0EyMB4XDTE5MTIxOTAzMTgy +MVoXDTQ0MTIxMjAzMTgyMVowVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJFSUpJ +TkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2JhbCBS +b290IENBMjB2MBAGByqGSM49AgEGBSuBBAAiA2IABJ3LgJGNU2e1uVCxA/jlSR9B +IgmwUVJY1is0j8USRhTFiy8shP8sbqjV8QnjAyEUxEM9fMEsxEtqSs3ph+B99iK+ ++kpRuDCK/eHeGBIK9ke35xe/J4rUQUyWPGCWwf0VHKNCMEAwHQYDVR0OBBYEFNJK +sVF/BvDRgh9Obl+rg/xI1LCRMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMAoGCCqGSM49BAMDA2gAMGUCMBq8W9f+qdJUDkpd0m2xQNz0Q9XSSpkZElaA +94M04TVOSG0ED1cxMDAtsaqdAzjbBgIxAMvMh1PLet8gUXOQwKhbYdDFUDn9hf7B +43j4ptZLvZuHjw/l1lOWqzzIQNph91Oj9w== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root E46" +# Serial: 88989738453351742415770396670917916916 +# MD5 Fingerprint: 28:23:f8:b2:98:5c:37:16:3b:3e:46:13:4e:b0:b3:01 +# SHA1 Fingerprint: ec:8a:39:6c:40:f0:2e:bc:42:75:d4:9f:ab:1c:1a:5b:67:be:d2:9a +# SHA256 Fingerprint: c9:0f:26:f0:fb:1b:40:18:b2:22:27:51:9b:5c:a2:b5:3e:2c:a5:b3:be:5c:f1:8e:fe:1b:ef:47:38:0c:53:83 +-----BEGIN CERTIFICATE----- +MIICOjCCAcGgAwIBAgIQQvLM2htpN0RfFf51KBC49DAKBggqhkjOPQQDAzBfMQsw +CQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1T +ZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwHhcN +MjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEYMBYG +A1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1YmxpYyBT +ZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAR2+pmpbiDt+dd34wc7qNs9Xzjoq1WmVk/WSOrsfy2qw7LFeeyZYX8QeccC +WvkEN/U0NSt3zn8gj1KjAIns1aeibVvjS5KToID1AZTc8GgHHs3u/iVStSBDHBv+ +6xnOQ6OjQjBAMB0GA1UdDgQWBBTRItpMWfFLXyY4qp3W7usNw/upYTAOBgNVHQ8B +Af8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNnADBkAjAn7qRa +qCG76UeXlImldCBteU/IvZNeWBj7LRoAasm4PdCkT0RHlAFWovgzJQxC36oCMB3q +4S6ILuH5px0CMk7yn2xVdOOurvulGu7t0vzCAxHrRVxgED1cf5kDW21USAGKcw== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root R46" +# Serial: 156256931880233212765902055439220583700 +# MD5 Fingerprint: 32:10:09:52:00:d5:7e:6c:43:df:15:c0:b1:16:93:e5 +# SHA1 Fingerprint: ad:98:f9:f3:e4:7d:75:3b:65:d4:82:b3:a4:52:17:bb:6e:f5:e4:38 +# SHA256 Fingerprint: 7b:b6:47:a6:2a:ee:ac:88:bf:25:7a:a5:22:d0:1f:fe:a3:95:e0:ab:45:c7:3f:93:f6:56:54:ec:38:f2:5a:06 +-----BEGIN CERTIFICATE----- +MIIFijCCA3KgAwIBAgIQdY39i658BwD6qSWn4cetFDANBgkqhkiG9w0BAQwFADBf +MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQD +Ey1TZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYw +HhcNMjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEY +MBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1Ymxp +YyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCTvtU2UnXYASOgHEdCSe5jtrch/cSV1UgrJnwUUxDa +ef0rty2k1Cz66jLdScK5vQ9IPXtamFSvnl0xdE8H/FAh3aTPaE8bEmNtJZlMKpnz +SDBh+oF8HqcIStw+KxwfGExxqjWMrfhu6DtK2eWUAtaJhBOqbchPM8xQljeSM9xf +iOefVNlI8JhD1mb9nxc4Q8UBUQvX4yMPFF1bFOdLvt30yNoDN9HWOaEhUTCDsG3X +ME6WW5HwcCSrv0WBZEMNvSE6Lzzpng3LILVCJ8zab5vuZDCQOc2TZYEhMbUjUDM3 +IuM47fgxMMxF/mL50V0yeUKH32rMVhlATc6qu/m1dkmU8Sf4kaWD5QazYw6A3OAS +VYCmO2a0OYctyPDQ0RTp5A1NDvZdV3LFOxxHVp3i1fuBYYzMTYCQNFu31xR13NgE +SJ/AwSiItOkcyqex8Va3e0lMWeUgFaiEAin6OJRpmkkGj80feRQXEgyDet4fsZfu ++Zd4KKTIRJLpfSYFplhym3kT2BFfrsU4YjRosoYwjviQYZ4ybPUHNs2iTG7sijbt +8uaZFURww3y8nDnAtOFr94MlI1fZEoDlSfB1D++N6xybVCi0ITz8fAr/73trdf+L +HaAZBav6+CuBQug4urv7qv094PPK306Xlynt8xhW6aWWrL3DkJiy4Pmi1KZHQ3xt +zwIDAQABo0IwQDAdBgNVHQ4EFgQUVnNYZJX5khqwEioEYnmhQBWIIUkwDgYDVR0P +AQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAC9c +mTz8Bl6MlC5w6tIyMY208FHVvArzZJ8HXtXBc2hkeqK5Duj5XYUtqDdFqij0lgVQ +YKlJfp/imTYpE0RHap1VIDzYm/EDMrraQKFz6oOht0SmDpkBm+S8f74TlH7Kph52 +gDY9hAaLMyZlbcp+nv4fjFg4exqDsQ+8FxG75gbMY/qB8oFM2gsQa6H61SilzwZA +Fv97fRheORKkU55+MkIQpiGRqRxOF3yEvJ+M0ejf5lG5Nkc/kLnHvALcWxxPDkjB +JYOcCj+esQMzEhonrPcibCTRAUH4WAP+JWgiH5paPHxsnnVI84HxZmduTILA7rpX +DhjvLpr3Etiga+kFpaHpaPi8TD8SHkXoUsCjvxInebnMMTzD9joiFgOgyY9mpFui +TdaBJQbpdqQACj7LzTWb4OE4y2BThihCQRxEV+ioratF4yUQvNs+ZUH7G6aXD+u5 +dHn5HrwdVw1Hr8Mvn4dGp+smWg9WY7ViYG4A++MnESLn/pmPNPW56MORcr3Ywx65 +LvKRRFHQV80MNNVIIb/bE/FmJUNS0nAiNs2fxBx1IK1jcmMGDw4nztJqDby1ORrp +0XZ60Vzk50lJLVU3aPAaOpg+VBeHVOmmJ1CJeyAvP/+/oYtKR5j/K3tJPsMpRmAY +QqszKbrAKbkTidOIijlBO8n9pu0f9GBj39ItVQGL +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS RSA Root CA 2022" +# Serial: 148535279242832292258835760425842727825 +# MD5 Fingerprint: d8:4e:c6:59:30:d8:fe:a0:d6:7a:5a:2c:2c:69:78:da +# SHA1 Fingerprint: ec:2c:83:40:72:af:26:95:10:ff:0e:f2:03:ee:31:70:f6:78:9d:ca +# SHA256 Fingerprint: 8f:af:7d:2e:2c:b4:70:9b:b8:e0:b3:36:66:bf:75:a5:dd:45:b5:de:48:0f:8e:a8:d4:bf:e6:be:bc:17:f2:ed +-----BEGIN CERTIFICATE----- +MIIFiTCCA3GgAwIBAgIQb77arXO9CEDii02+1PdbkTANBgkqhkiG9w0BAQsFADBO +MQswCQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQD +DBxTU0wuY29tIFRMUyBSU0EgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzQyMloX +DTQ2MDgxOTE2MzQyMVowTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jw +b3JhdGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgUlNBIFJvb3QgQ0EgMjAyMjCC +AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANCkCXJPQIgSYT41I57u9nTP +L3tYPc48DRAokC+X94xI2KDYJbFMsBFMF3NQ0CJKY7uB0ylu1bUJPiYYf7ISf5OY +t6/wNr/y7hienDtSxUcZXXTzZGbVXcdotL8bHAajvI9AI7YexoS9UcQbOcGV0ins +S657Lb85/bRi3pZ7QcacoOAGcvvwB5cJOYF0r/c0WRFXCsJbwST0MXMwgsadugL3 +PnxEX4MN8/HdIGkWCVDi1FW24IBydm5MR7d1VVm0U3TZlMZBrViKMWYPHqIbKUBO +L9975hYsLfy/7PO0+r4Y9ptJ1O4Fbtk085zx7AGL0SDGD6C1vBdOSHtRwvzpXGk3 +R2azaPgVKPC506QVzFpPulJwoxJF3ca6TvvC0PeoUidtbnm1jPx7jMEWTO6Af77w +dr5BUxIzrlo4QqvXDz5BjXYHMtWrifZOZ9mxQnUjbvPNQrL8VfVThxc7wDNY8VLS ++YCk8OjwO4s4zKTGkH8PnP2L0aPP2oOnaclQNtVcBdIKQXTbYxE3waWglksejBYS +d66UNHsef8JmAOSqg+qKkK3ONkRN0VHpvB/zagX9wHQfJRlAUW7qglFA35u5CCoG +AtUjHBPW6dvbxrB6y3snm/vg1UYk7RBLY0ulBY+6uB0rpvqR4pJSvezrZ5dtmi2f +gTIFZzL7SAg/2SW4BCUvAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0j +BBgwFoAU+y437uOEeicuzRk1sTN8/9REQrkwHQYDVR0OBBYEFPsuN+7jhHonLs0Z +NbEzfP/UREK5MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAjYlt +hEUY8U+zoO9opMAdrDC8Z2awms22qyIZZtM7QbUQnRC6cm4pJCAcAZli05bg4vsM +QtfhWsSWTVTNj8pDU/0quOr4ZcoBwq1gaAafORpR2eCNJvkLTqVTJXojpBzOCBvf +R4iyrT7gJ4eLSYwfqUdYe5byiB0YrrPRpgqU+tvT5TgKa3kSM/tKWTcWQA673vWJ +DPFs0/dRa1419dvAJuoSc06pkZCmF8NsLzjUo3KUQyxi4U5cMj29TH0ZR6LDSeeW +P4+a0zvkEdiLA9z2tmBVGKaBUfPhqBVq6+AL8BQx1rmMRTqoENjwuSfr98t67wVy +lrXEj5ZzxOhWc5y8aVFjvO9nHEMaX3cZHxj4HCUp+UmZKbaSPaKDN7EgkaibMOlq +bLQjk2UEqxHzDh1TJElTHaE/nUiSEeJ9DU/1172iWD54nR4fK/4huxoTtrEoZP2w +AgDHbICivRZQIA9ygV/MlP+7mea6kMvq+cYMwq7FGc4zoWtcu358NFcXrfA/rs3q +r5nsLFR+jM4uElZI7xc7P0peYNLcdDa8pUNjyw9bowJWCZ4kLOGGgYz+qxcs+sji +Mho6/4UIyYOf8kpIEFR3N+2ivEC+5BB09+Rbu7nzifmPQdjH5FCQNYA+HLhNkNPU +98OwoX6EyneSMSy4kLGCenROmxMmtNVQZlR4rmA= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS ECC Root CA 2022" +# Serial: 26605119622390491762507526719404364228 +# MD5 Fingerprint: 99:d7:5c:f1:51:36:cc:e9:ce:d9:19:2e:77:71:56:c5 +# SHA1 Fingerprint: 9f:5f:d9:1a:54:6d:f5:0c:71:f0:ee:7a:bd:17:49:98:84:73:e2:39 +# SHA256 Fingerprint: c3:2f:fd:9f:46:f9:36:d1:6c:36:73:99:09:59:43:4b:9a:d6:0a:af:bb:9e:7c:f3:36:54:f1:44:cc:1b:a1:43 +-----BEGIN CERTIFICATE----- +MIICOjCCAcCgAwIBAgIQFAP1q/s3ixdAW+JDsqXRxDAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQDDBxT +U0wuY29tIFRMUyBFQ0MgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzM0OFoXDTQ2 +MDgxOTE2MzM0N1owTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jwb3Jh +dGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgRUNDIFJvb3QgQ0EgMjAyMjB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABEUpNXP6wrgjzhR9qLFNoFs27iosU8NgCTWyJGYm +acCzldZdkkAZDsalE3D07xJRKF3nzL35PIXBz5SQySvOkkJYWWf9lCcQZIxPBLFN +SeR7T5v15wj4A4j3p8OSSxlUgaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSME +GDAWgBSJjy+j6CugFFR781a4Jl9nOAuc0DAdBgNVHQ4EFgQUiY8vo+groBRUe/NW +uCZfZzgLnNAwDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMDA2gAMGUCMFXjIlbp +15IkWE8elDIPDAI2wv2sdDJO4fscgIijzPvX6yv/N33w7deedWo1dlJF4AIxAMeN +b0Igj762TVntd00pxCAgRWSGOlDGxK0tk/UYfXLtqc/ErFc2KAhl3zx5Zn6g6g== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA ECC TLS 2021" +# Serial: 81873346711060652204712539181482831616 +# MD5 Fingerprint: 16:9f:ad:f1:70:ad:79:d6:ed:29:b4:d1:c5:79:70:a8 +# SHA1 Fingerprint: 9e:bc:75:10:42:b3:02:f3:81:f4:f7:30:62:d4:8f:c3:a7:51:b2:dd +# SHA256 Fingerprint: b2:fa:e5:3e:14:cc:d7:ab:92:12:06:47:01:ae:27:9c:1d:89:88:fa:cb:77:5f:a8:a0:08:91:4e:66:39:88:a8 +-----BEGIN CERTIFICATE----- +MIICFTCCAZugAwIBAgIQPZg7pmY9kGP3fiZXOATvADAKBggqhkjOPQQDAzBMMS4w +LAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgRUNDIFRMUyAyMDIxMQ0w +CwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTI2MjNaFw00MTA0 +MTcwOTI2MjJaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBDQSBF +Q0MgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMHYwEAYHKoZI +zj0CAQYFK4EEACIDYgAEloZYKDcKZ9Cg3iQZGeHkBQcfl+3oZIK59sRxUM6KDP/X +tXa7oWyTbIOiaG6l2b4siJVBzV3dscqDY4PMwL502eCdpO5KTlbgmClBk1IQ1SQ4 +AjJn8ZQSb+/Xxd4u/RmAo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR2 +KCXWfeBmmnoJsmo7jjPXNtNPojAOBgNVHQ8BAf8EBAMCAYYwCgYIKoZIzj0EAwMD +aAAwZQIwW5kp85wxtolrbNa9d+F851F+uDrNozZffPc8dz7kUK2o59JZDCaOMDtu +CCrCp1rIAjEAmeMM56PDr9NJLkaCI2ZdyQAUEv049OGYa3cpetskz2VAv9LcjBHo +9H1/IISpQuQo +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA RSA TLS 2021" +# Serial: 111436099570196163832749341232207667876 +# MD5 Fingerprint: d4:d3:46:b8:9a:c0:9c:76:5d:9e:3a:c3:b9:99:31:d2 +# SHA1 Fingerprint: 18:52:3b:0d:06:37:e4:d6:3a:df:23:e4:98:fb:5b:16:fb:86:74:48 +# SHA256 Fingerprint: 81:a9:08:8e:a5:9f:b3:64:c5:48:a6:f8:55:59:09:9b:6f:04:05:ef:bf:18:e5:32:4e:c9:f4:57:ba:00:11:2f +-----BEGIN CERTIFICATE----- +MIIFZDCCA0ygAwIBAgIQU9XP5hmTC/srBRLYwiqipDANBgkqhkiG9w0BAQwFADBM +MS4wLAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgUlNBIFRMUyAyMDIx +MQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTIxMTBaFw00 +MTA0MTcwOTIxMDlaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBD +QSBSU0EgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtoAOxHm9BYx9sKOdTSJNy/BBl01Z +4NH+VoyX8te9j2y3I49f1cTYQcvyAh5x5en2XssIKl4w8i1mx4QbZFc4nXUtVsYv +Ye+W/CBGvevUez8/fEc4BKkbqlLfEzfTFRVOvV98r61jx3ncCHvVoOX3W3WsgFWZ +kmGbzSoXfduP9LVq6hdKZChmFSlsAvFr1bqjM9xaZ6cF4r9lthawEO3NUDPJcFDs +GY6wx/J0W2tExn2WuZgIWWbeKQGb9Cpt0xU6kGpn8bRrZtkh68rZYnxGEFzedUln +nkL5/nWpo63/dgpnQOPF943HhZpZnmKaau1Fh5hnstVKPNe0OwANwI8f4UDErmwh +3El+fsqyjW22v5MvoVw+j8rtgI5Y4dtXz4U2OLJxpAmMkokIiEjxQGMYsluMWuPD +0xeqqxmjLBvk1cbiZnrXghmmOxYsL3GHX0WelXOTwkKBIROW1527k2gV+p2kHYzy +geBYBr3JtuP2iV2J+axEoctr+hbxx1A9JNr3w+SH1VbxT5Aw+kUJWdo0zuATHAR8 +ANSbhqRAvNncTFd+rrcztl524WWLZt+NyteYr842mIycg5kDcPOvdO3GDjbnvezB +c6eUWsuSZIKmAMFwoW4sKeFYV+xafJlrJaSQOoD0IJ2azsct+bJLKZWD6TWNp0lI +pw9MGZHQ9b8Q4HECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU +dEmZ0f+0emhFdcN+tNzMzjkz2ggwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB +DAUAA4ICAQAjQ1MkYlxt/T7Cz1UAbMVWiLkO3TriJQ2VSpfKgInuKs1l+NsW4AmS +4BjHeJi78+xCUvuppILXTdiK/ORO/auQxDh1MoSf/7OwKwIzNsAQkG8dnK/haZPs +o0UvFJ/1TCplQ3IM98P4lYsU84UgYt1UU90s3BiVaU+DR3BAM1h3Egyi61IxHkzJ +qM7F78PRreBrAwA0JrRUITWXAdxfG/F851X6LWh3e9NpzNMOa7pNdkTWwhWaJuyw +xfW70Xp0wmzNxbVe9kzmWy2B27O3Opee7c9GslA9hGCZcbUztVdF5kJHdWoOsAgM +rr3e97sPWD2PAzHoPYJQyi9eDF20l74gNAf0xBLh7tew2VktafcxBPTy+av5EzH4 +AXcOPUIjJsyacmdRIXrMPIWo6iFqO9taPKU0nprALN+AnCng33eU0aKAQv9qTFsR +0PXNor6uzFFcw9VUewyu1rkGd4Di7wcaaMxZUa1+XGdrudviB0JbuAEFWDlN5LuY +o7Ey7Nmj1m+UI/87tyll5gfp77YZ6ufCOB0yiJA8EytuzO+rdwY0d4RPcuSBhPm5 +dDTedk+SKlOxJTnbPP/lPqYO5Wue/9vsL3SD3460s6neFE3/MaNFcyT6lSnMEpcE +oji2jbDwN/zIIX8/syQbPYtuzE2wFg2WHYMfRsCbvUOZ58SWLs5fyQ== +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia Global Root CA G3 O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia Global Root CA G3 O=TrustAsia Technologies, Inc. +# Label: "TrustAsia Global Root CA G3" +# Serial: 576386314500428537169965010905813481816650257167 +# MD5 Fingerprint: 30:42:1b:b7:bb:81:75:35:e4:16:4f:53:d2:94:de:04 +# SHA1 Fingerprint: 63:cf:b6:c1:27:2b:56:e4:88:8e:1c:23:9a:b6:2e:81:47:24:c3:c7 +# SHA256 Fingerprint: e0:d3:22:6a:eb:11:63:c2:e4:8f:f9:be:3b:50:b4:c6:43:1b:e7:bb:1e:ac:c5:c3:6b:5d:5e:c5:09:03:9a:08 +-----BEGIN CERTIFICATE----- +MIIFpTCCA42gAwIBAgIUZPYOZXdhaqs7tOqFhLuxibhxkw8wDQYJKoZIhvcNAQEM +BQAwWjELMAkGA1UEBhMCQ04xJTAjBgNVBAoMHFRydXN0QXNpYSBUZWNobm9sb2dp +ZXMsIEluYy4xJDAiBgNVBAMMG1RydXN0QXNpYSBHbG9iYWwgUm9vdCBDQSBHMzAe +Fw0yMTA1MjAwMjEwMTlaFw00NjA1MTkwMjEwMTlaMFoxCzAJBgNVBAYTAkNOMSUw +IwYDVQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDDBtU +cnVzdEFzaWEgR2xvYmFsIFJvb3QgQ0EgRzMwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQDAMYJhkuSUGwoqZdC+BqmHO1ES6nBBruL7dOoKjbmzTNyPtxNS +T1QY4SxzlZHFZjtqz6xjbYdT8PfxObegQ2OwxANdV6nnRM7EoYNl9lA+sX4WuDqK +AtCWHwDNBSHvBm3dIZwZQ0WhxeiAysKtQGIXBsaqvPPW5vxQfmZCHzyLpnl5hkA1 +nyDvP+uLRx+PjsXUjrYsyUQE49RDdT/VP68czH5GX6zfZBCK70bwkPAPLfSIC7Ep +qq+FqklYqL9joDiR5rPmd2jE+SoZhLsO4fWvieylL1AgdB4SQXMeJNnKziyhWTXA +yB1GJ2Faj/lN03J5Zh6fFZAhLf3ti1ZwA0pJPn9pMRJpxx5cynoTi+jm9WAPzJMs +hH/x/Gr8m0ed262IPfN2dTPXS6TIi/n1Q1hPy8gDVI+lhXgEGvNz8teHHUGf59gX +zhqcD0r83ERoVGjiQTz+LISGNzzNPy+i2+f3VANfWdP3kXjHi3dqFuVJhZBFcnAv +kV34PmVACxmZySYgWmjBNb9Pp1Hx2BErW+Canig7CjoKH8GB5S7wprlppYiU5msT +f9FkPz2ccEblooV7WIQn3MSAPmeamseaMQ4w7OYXQJXZRe0Blqq/DPNL0WP3E1jA +uPP6Z92bfW1K/zJMtSU7/xxnD4UiWQWRkUF3gdCFTIcQcf+eQxuulXUtgQIDAQAB +o2MwYTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFEDk5PIj7zjKsK5Xf/Ih +MBY027ySMB0GA1UdDgQWBBRA5OTyI+84yrCuV3/yITAWNNu8kjAOBgNVHQ8BAf8E +BAMCAQYwDQYJKoZIhvcNAQEMBQADggIBACY7UeFNOPMyGLS0XuFlXsSUT9SnYaP4 +wM8zAQLpw6o1D/GUE3d3NZ4tVlFEbuHGLige/9rsR82XRBf34EzC4Xx8MnpmyFq2 +XFNFV1pF1AWZLy4jVe5jaN/TG3inEpQGAHUNcoTpLrxaatXeL1nHo+zSh2bbt1S1 +JKv0Q3jbSwTEb93mPmY+KfJLaHEih6D4sTNjduMNhXJEIlU/HHzp/LgV6FL6qj6j +ITk1dImmasI5+njPtqzn59ZW/yOSLlALqbUHM/Q4X6RJpstlcHboCoWASzY9M/eV +VHUl2qzEc4Jl6VL1XP04lQJqaTDFHApXB64ipCz5xUG3uOyfT0gA+QEEVcys+TIx +xHWVBqB/0Y0n3bOppHKH/lmLmnp0Ft0WpWIp6zqW3IunaFnT63eROfjXy9mPX1on +AX1daBli2MjN9LdyR75bl87yraKZk62Uy5P2EgmVtqvXO9A/EcswFi55gORngS1d +7XB4tmBZrOFdRWOPyN9yaFvqHbgB8X7754qz41SgOAngPN5C8sLtLpvzHzW2Ntjj +gKGLzZlkD8Kqq7HK9W+eQ42EVJmzbsASZthwEPEGNTNDqJwuuhQxzhB/HIbjj9LV ++Hfsm6vxL2PZQl/gZ4FkkfGXL/xuJvYz+NO1+MRiqzFRJQJ6+N1rZdVtTTDIZbpo +FGWsJwt0ivKH +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia Global Root CA G4 O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia Global Root CA G4 O=TrustAsia Technologies, Inc. +# Label: "TrustAsia Global Root CA G4" +# Serial: 451799571007117016466790293371524403291602933463 +# MD5 Fingerprint: 54:dd:b2:d7:5f:d8:3e:ed:7c:e0:0b:2e:cc:ed:eb:eb +# SHA1 Fingerprint: 57:73:a5:61:5d:80:b2:e6:ac:38:82:fc:68:07:31:ac:9f:b5:92:5a +# SHA256 Fingerprint: be:4b:56:cb:50:56:c0:13:6a:52:6d:f4:44:50:8d:aa:36:a0:b5:4f:42:e4:ac:38:f7:2a:f4:70:e4:79:65:4c +-----BEGIN CERTIFICATE----- +MIICVTCCAdygAwIBAgIUTyNkuI6XY57GU4HBdk7LKnQV1tcwCgYIKoZIzj0EAwMw +WjELMAkGA1UEBhMCQ04xJTAjBgNVBAoMHFRydXN0QXNpYSBUZWNobm9sb2dpZXMs +IEluYy4xJDAiBgNVBAMMG1RydXN0QXNpYSBHbG9iYWwgUm9vdCBDQSBHNDAeFw0y +MTA1MjAwMjEwMjJaFw00NjA1MTkwMjEwMjJaMFoxCzAJBgNVBAYTAkNOMSUwIwYD +VQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDDBtUcnVz +dEFzaWEgR2xvYmFsIFJvb3QgQ0EgRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATx +s8045CVD5d4ZCbuBeaIVXxVjAd7Cq92zphtnS4CDr5nLrBfbK5bKfFJV4hrhPVbw +LxYI+hW8m7tH5j/uqOFMjPXTNvk4XatwmkcN4oFBButJ+bAp3TPsUKV/eSm4IJij +YzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUpbtKl86zK3+kMd6Xg1mD +pm9xy94wHQYDVR0OBBYEFKW7SpfOsyt/pDHel4NZg6ZvccveMA4GA1UdDwEB/wQE +AwIBBjAKBggqhkjOPQQDAwNnADBkAjBe8usGzEkxn0AAbbd+NvBNEU/zy4k6LHiR +UKNbwMp1JvK/kF0LgoxgKJ/GcJpo5PECMFxYDlZ2z1jD1xCMuo6u47xkdUfFVZDj +/bpV6wfEU6s3qe4hsiFbYI89MvHVI5TWWA== +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust ECC Root-01 O=CommScope +# Subject: CN=CommScope Public Trust ECC Root-01 O=CommScope +# Label: "CommScope Public Trust ECC Root-01" +# Serial: 385011430473757362783587124273108818652468453534 +# MD5 Fingerprint: 3a:40:a7:fc:03:8c:9c:38:79:2f:3a:a2:6c:b6:0a:16 +# SHA1 Fingerprint: 07:86:c0:d8:dd:8e:c0:80:98:06:98:d0:58:7a:ef:de:a6:cc:a2:5d +# SHA256 Fingerprint: 11:43:7c:da:7b:b4:5e:41:36:5f:45:b3:9a:38:98:6b:0d:e0:0d:ef:34:8e:0c:7b:b0:87:36:33:80:0b:c3:8b +-----BEGIN CERTIFICATE----- +MIICHTCCAaOgAwIBAgIUQ3CCd89NXTTxyq4yLzf39H91oJ4wCgYIKoZIzj0EAwMw +TjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwiQ29t +bVNjb3BlIFB1YmxpYyBUcnVzdCBFQ0MgUm9vdC0wMTAeFw0yMTA0MjgxNzM1NDNa +Fw00NjA0MjgxNzM1NDJaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21tU2Nv +cGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgRUNDIFJvb3QtMDEw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAARLNumuV16ocNfQj3Rid8NeeqrltqLxeP0C +flfdkXmcbLlSiFS8LwS+uM32ENEp7LXQoMPwiXAZu1FlxUOcw5tjnSCDPgYLpkJE +hRGnSjot6dZoL0hOUysHP029uax3OVejQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSOB2LAUN3GGQYARnQE9/OufXVNMDAKBggq +hkjOPQQDAwNoADBlAjEAnDPfQeMjqEI2Jpc1XHvr20v4qotzVRVcrHgpD7oh2MSg +2NED3W3ROT3Ek2DS43KyAjB8xX6I01D1HiXo+k515liWpDVfG2XqYZpwI7UNo5uS +Um9poIyNStDuiw7LR47QjRE= +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust ECC Root-02 O=CommScope +# Subject: CN=CommScope Public Trust ECC Root-02 O=CommScope +# Label: "CommScope Public Trust ECC Root-02" +# Serial: 234015080301808452132356021271193974922492992893 +# MD5 Fingerprint: 59:b0:44:d5:65:4d:b8:5c:55:19:92:02:b6:d1:94:b2 +# SHA1 Fingerprint: 3c:3f:ef:57:0f:fe:65:93:86:9e:a0:fe:b0:f6:ed:8e:d1:13:c7:e5 +# SHA256 Fingerprint: 2f:fb:7f:81:3b:bb:b3:c8:9a:b4:e8:16:2d:0f:16:d7:15:09:a8:30:cc:9d:73:c2:62:e5:14:08:75:d1:ad:4a +-----BEGIN CERTIFICATE----- +MIICHDCCAaOgAwIBAgIUKP2ZYEFHpgE6yhR7H+/5aAiDXX0wCgYIKoZIzj0EAwMw +TjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwiQ29t +bVNjb3BlIFB1YmxpYyBUcnVzdCBFQ0MgUm9vdC0wMjAeFw0yMTA0MjgxNzQ0NTRa +Fw00NjA0MjgxNzQ0NTNaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21tU2Nv +cGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgRUNDIFJvb3QtMDIw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAR4MIHoYx7l63FRD/cHB8o5mXxO1Q/MMDAL +j2aTPs+9xYa9+bG3tD60B8jzljHz7aRP+KNOjSkVWLjVb3/ubCK1sK9IRQq9qEmU +v4RDsNuESgMjGWdqb8FuvAY5N9GIIvejQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTmGHX/72DehKT1RsfeSlXjMjZ59TAKBggq +hkjOPQQDAwNnADBkAjAmc0l6tqvmSfR9Uj/UQQSugEODZXW5hYA4O9Zv5JOGq4/n +ich/m35rChJVYaoR4HkCMHfoMXGsPHED1oQmHhS48zs73u1Z/GtMMH9ZzkXpc2AV +mkzw5l4lIhVtwodZ0LKOag== +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust RSA Root-01 O=CommScope +# Subject: CN=CommScope Public Trust RSA Root-01 O=CommScope +# Label: "CommScope Public Trust RSA Root-01" +# Serial: 354030733275608256394402989253558293562031411421 +# MD5 Fingerprint: 0e:b4:15:bc:87:63:5d:5d:02:73:d4:26:38:68:73:d8 +# SHA1 Fingerprint: 6d:0a:5f:f7:b4:23:06:b4:85:b3:b7:97:64:fc:ac:75:f5:33:f2:93 +# SHA256 Fingerprint: 02:bd:f9:6e:2a:45:dd:9b:f1:8f:c7:e1:db:df:21:a0:37:9b:a3:c9:c2:61:03:44:cf:d8:d6:06:fe:c1:ed:81 +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIUPgNJgXUWdDGOTKvVxZAplsU5EN0wDQYJKoZIhvcNAQEL +BQAwTjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwi +Q29tbVNjb3BlIFB1YmxpYyBUcnVzdCBSU0EgUm9vdC0wMTAeFw0yMTA0MjgxNjQ1 +NTRaFw00NjA0MjgxNjQ1NTNaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21t +U2NvcGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgUlNBIFJvb3Qt +MDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwSGWjDR1C45FtnYSk +YZYSwu3D2iM0GXb26v1VWvZVAVMP8syMl0+5UMuzAURWlv2bKOx7dAvnQmtVzslh +suitQDy6uUEKBU8bJoWPQ7VAtYXR1HHcg0Hz9kXHgKKEUJdGzqAMxGBWBB0HW0al +DrJLpA6lfO741GIDuZNqihS4cPgugkY4Iw50x2tBt9Apo52AsH53k2NC+zSDO3Oj +WiE260f6GBfZumbCk6SP/F2krfxQapWsvCQz0b2If4b19bJzKo98rwjyGpg/qYFl +P8GMicWWMJoKz/TUyDTtnS+8jTiGU+6Xn6myY5QXjQ/cZip8UlF1y5mO6D1cv547 +KI2DAg+pn3LiLCuz3GaXAEDQpFSOm117RTYm1nJD68/A6g3czhLmfTifBSeolz7p +UcZsBSjBAg/pGG3svZwG1KdJ9FQFa2ww8esD1eo9anbCyxooSU1/ZOD6K9pzg4H/ +kQO9lLvkuI6cMmPNn7togbGEW682v3fuHX/3SZtS7NJ3Wn2RnU3COS3kuoL4b/JO +Hg9O5j9ZpSPcPYeoKFgo0fEbNttPxP/hjFtyjMcmAyejOQoBqsCyMWCDIqFPEgkB +Ea801M/XrmLTBQe0MXXgDW1XT2mH+VepuhX2yFJtocucH+X8eKg1mp9BFM6ltM6U +CBwJrVbl2rZJmkrqYxhTnCwuwwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUN12mmnQywsL5x6YVEFm45P3luG0wDQYJ +KoZIhvcNAQELBQADggIBAK+nz97/4L1CjU3lIpbfaOp9TSp90K09FlxD533Ahuh6 +NWPxzIHIxgvoLlI1pKZJkGNRrDSsBTtXAOnTYtPZKdVUvhwQkZyybf5Z/Xn36lbQ +nmhUQo8mUuJM3y+Xpi/SB5io82BdS5pYV4jvguX6r2yBS5KPQJqTRlnLX3gWsWc+ +QgvfKNmwrZggvkN80V4aCRckjXtdlemrwWCrWxhkgPut4AZ9HcpZuPN4KWfGVh2v +trV0KnahP/t1MJ+UXjulYPPLXAziDslg+MkfFoom3ecnf+slpoq9uC02EJqxWE2a +aE9gVOX2RhOOiKy8IUISrcZKiX2bwdgt6ZYD9KJ0DLwAHb/WNyVntHKLr4W96ioD +j8z7PEQkguIBpQtZtjSNMgsSDesnwv1B10A8ckYpwIzqug/xBpMu95yo9GA+o/E4 +Xo4TwbM6l4c/ksp4qRyv0LAbJh6+cOx69TOY6lz/KwsETkPdY34Op054A5U+1C0w +lREQKC6/oAI+/15Z0wUOlV9TRe9rh9VIzRamloPh37MG88EU26fsHItdkJANclHn +YfkUyq+Dj7+vsQpZXdxc1+SWrVtgHdqul7I52Qb1dgAT+GhMIbA1xNxVssnBQVoc +icCMb3SgazNNtQEo/a2tiRc7ppqEvOuM6sRxJKi6KfkIsidWNTJf6jn7MZrVGczw +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust RSA Root-02 O=CommScope +# Subject: CN=CommScope Public Trust RSA Root-02 O=CommScope +# Label: "CommScope Public Trust RSA Root-02" +# Serial: 480062499834624527752716769107743131258796508494 +# MD5 Fingerprint: e1:29:f9:62:7b:76:e2:96:6d:f3:d4:d7:0f:ae:1f:aa +# SHA1 Fingerprint: ea:b0:e2:52:1b:89:93:4c:11:68:f2:d8:9a:ac:22:4c:a3:8a:57:ae +# SHA256 Fingerprint: ff:e9:43:d7:93:42:4b:4f:7c:44:0c:1c:3d:64:8d:53:63:f3:4b:82:dc:87:aa:7a:9f:11:8f:c5:de:e1:01:f1 +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIUVBa/O345lXGN0aoApYYNK496BU4wDQYJKoZIhvcNAQEL +BQAwTjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwi +Q29tbVNjb3BlIFB1YmxpYyBUcnVzdCBSU0EgUm9vdC0wMjAeFw0yMTA0MjgxNzE2 +NDNaFw00NjA0MjgxNzE2NDJaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21t +U2NvcGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgUlNBIFJvb3Qt +MDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDh+g77aAASyE3VrCLE +NQE7xVTlWXZjpX/rwcRqmL0yjReA61260WI9JSMZNRTpf4mnG2I81lDnNJUDMrG0 +kyI9p+Kx7eZ7Ti6Hmw0zdQreqjXnfuU2mKKuJZ6VszKWpCtYHu8//mI0SFHRtI1C +rWDaSWqVcN3SAOLMV2MCe5bdSZdbkk6V0/nLKR8YSvgBKtJjCW4k6YnS5cciTNxz +hkcAqg2Ijq6FfUrpuzNPDlJwnZXjfG2WWy09X6GDRl224yW4fKcZgBzqZUPckXk2 +LHR88mcGyYnJ27/aaL8j7dxrrSiDeS/sOKUNNwFnJ5rpM9kzXzehxfCrPfp4sOcs +n/Y+n2Dg70jpkEUeBVF4GiwSLFworA2iI540jwXmojPOEXcT1A6kHkIfhs1w/tku +FT0du7jyU1fbzMZ0KZwYszZ1OC4PVKH4kh+Jlk+71O6d6Ts2QrUKOyrUZHk2EOH5 +kQMreyBUzQ0ZGshBMjTRsJnhkB4BQDa1t/qp5Xd1pCKBXbCL5CcSD1SIxtuFdOa3 +wNemKfrb3vOTlycEVS8KbzfFPROvCgCpLIscgSjX74Yxqa7ybrjKaixUR9gqiC6v +wQcQeKwRoi9C8DfF8rhW3Q5iLc4tVn5V8qdE9isy9COoR+jUKgF4z2rDN6ieZdIs +5fq6M8EGRPbmz6UNp2YINIos8wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUR9DnsSL/nSz12Vdgs7GxcJXvYXowDQYJ +KoZIhvcNAQELBQADggIBAIZpsU0v6Z9PIpNojuQhmaPORVMbc0RTAIFhzTHjCLqB +KCh6krm2qMhDnscTJk3C2OVVnJJdUNjCK9v+5qiXz1I6JMNlZFxHMaNlNRPDk7n3 ++VGXu6TwYofF1gbTl4MgqX67tiHCpQ2EAOHyJxCDut0DgdXdaMNmEMjRdrSzbyme +APnCKfWxkxlSaRosTKCL4BWaMS/TiJVZbuXEs1DIFAhKm4sTg7GkcrI7djNB3Nyq +pgdvHSQSn8h2vS/ZjvQs7rfSOBAkNlEv41xdgSGn2rtO/+YHqP65DSdsu3BaVXoT +6fEqSWnHX4dXTEN5bTpl6TBcQe7rd6VzEojov32u5cSoHw2OHG1QAk8mGEPej1WF +sQs3BWDJVTkSBKEqz3EWnzZRSb9wO55nnPt7eck5HHisd5FUmrh1CoFSl+NmYWvt +PjgelmFV4ZFUjO2MJB+ByRCac5krFk5yAD9UG/iNuovnFNa2RU9g7Jauwy8CTl2d +lklyALKrdVwPaFsdZcJfMw8eD/A7hvWwTruc9+olBdytoptLFwG+Qt81IR2tq670 +v64fG9PiO/yzcnMcmyiQiRM9HcEARwmWmjgb3bHPDcK0RPOWlc4yOo80nOAXx17O +rg3bhzjlP1v9mxnhMUF6cKojawHhRUzNlM47ni3niAIi9G7oyOzWPPO5std3eqx7 +-----END CERTIFICATE----- + +# Issuer: CN=Telekom Security TLS ECC Root 2020 O=Deutsche Telekom Security GmbH +# Subject: CN=Telekom Security TLS ECC Root 2020 O=Deutsche Telekom Security GmbH +# Label: "Telekom Security TLS ECC Root 2020" +# Serial: 72082518505882327255703894282316633856 +# MD5 Fingerprint: c1:ab:fe:6a:10:2c:03:8d:bc:1c:22:32:c0:85:a7:fd +# SHA1 Fingerprint: c0:f8:96:c5:a9:3b:01:06:21:07:da:18:42:48:bc:e9:9d:88:d5:ec +# SHA256 Fingerprint: 57:8a:f4:de:d0:85:3f:4e:59:98:db:4a:ea:f9:cb:ea:8d:94:5f:60:b6:20:a3:8d:1a:3c:13:b2:bc:7b:a8:e1 +-----BEGIN CERTIFICATE----- +MIICQjCCAcmgAwIBAgIQNjqWjMlcsljN0AFdxeVXADAKBggqhkjOPQQDAzBjMQsw +CQYDVQQGEwJERTEnMCUGA1UECgweRGV1dHNjaGUgVGVsZWtvbSBTZWN1cml0eSBH +bWJIMSswKQYDVQQDDCJUZWxla29tIFNlY3VyaXR5IFRMUyBFQ0MgUm9vdCAyMDIw +MB4XDTIwMDgyNTA3NDgyMFoXDTQ1MDgyNTIzNTk1OVowYzELMAkGA1UEBhMCREUx +JzAlBgNVBAoMHkRldXRzY2hlIFRlbGVrb20gU2VjdXJpdHkgR21iSDErMCkGA1UE +AwwiVGVsZWtvbSBTZWN1cml0eSBUTFMgRUNDIFJvb3QgMjAyMDB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABM6//leov9Wq9xCazbzREaK9Z0LMkOsVGJDZos0MKiXrPk/O +tdKPD/M12kOLAoC+b1EkHQ9rK8qfwm9QMuU3ILYg/4gND21Ju9sGpIeQkpT0CdDP +f8iAC8GXs7s1J8nCG6NCMEAwHQYDVR0OBBYEFONyzG6VmUex5rNhTNHLq+O6zd6f +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMAoGCCqGSM49BAMDA2cA +MGQCMHVSi7ekEE+uShCLsoRbQuHmKjYC2qBuGT8lv9pZMo7k+5Dck2TOrbRBR2Di +z6fLHgIwN0GMZt9Ba9aDAEH9L1r3ULRn0SyocddDypwnJJGDSA3PzfdUga/sf+Rn +27iQ7t0l +-----END CERTIFICATE----- + +# Issuer: CN=Telekom Security TLS RSA Root 2023 O=Deutsche Telekom Security GmbH +# Subject: CN=Telekom Security TLS RSA Root 2023 O=Deutsche Telekom Security GmbH +# Label: "Telekom Security TLS RSA Root 2023" +# Serial: 44676229530606711399881795178081572759 +# MD5 Fingerprint: bf:5b:eb:54:40:cd:48:71:c4:20:8d:7d:de:0a:42:f2 +# SHA1 Fingerprint: 54:d3:ac:b3:bd:57:56:f6:85:9d:ce:e5:c3:21:e2:d4:ad:83:d0:93 +# SHA256 Fingerprint: ef:c6:5c:ad:bb:59:ad:b6:ef:e8:4d:a2:23:11:b3:56:24:b7:1b:3b:1e:a0:da:8b:66:55:17:4e:c8:97:86:46 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIQIZxULej27HF3+k7ow3BXlzANBgkqhkiG9w0BAQwFADBj +MQswCQYDVQQGEwJERTEnMCUGA1UECgweRGV1dHNjaGUgVGVsZWtvbSBTZWN1cml0 +eSBHbWJIMSswKQYDVQQDDCJUZWxla29tIFNlY3VyaXR5IFRMUyBSU0EgUm9vdCAy +MDIzMB4XDTIzMDMyODEyMTY0NVoXDTQ4MDMyNzIzNTk1OVowYzELMAkGA1UEBhMC +REUxJzAlBgNVBAoMHkRldXRzY2hlIFRlbGVrb20gU2VjdXJpdHkgR21iSDErMCkG +A1UEAwwiVGVsZWtvbSBTZWN1cml0eSBUTFMgUlNBIFJvb3QgMjAyMzCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAO01oYGA88tKaVvC+1GDrib94W7zgRJ9 +cUD/h3VCKSHtgVIs3xLBGYSJwb3FKNXVS2xE1kzbB5ZKVXrKNoIENqil/Cf2SfHV +cp6R+SPWcHu79ZvB7JPPGeplfohwoHP89v+1VmLhc2o0mD6CuKyVU/QBoCcHcqMA +U6DksquDOFczJZSfvkgdmOGjup5czQRxUX11eKvzWarE4GC+j4NSuHUaQTXtvPM6 +Y+mpFEXX5lLRbtLevOP1Czvm4MS9Q2QTps70mDdsipWol8hHD/BeEIvnHRz+sTug +BTNoBUGCwQMrAcjnj02r6LX2zWtEtefdi+zqJbQAIldNsLGyMcEWzv/9FIS3R/qy +8XDe24tsNlikfLMR0cN3f1+2JeANxdKz+bi4d9s3cXFH42AYTyS2dTd4uaNir73J +co4vzLuu2+QVUhkHM/tqty1LkCiCc/4YizWN26cEar7qwU02OxY2kTLvtkCJkUPg +8qKrBC7m8kwOFjQgrIfBLX7JZkcXFBGk8/ehJImr2BrIoVyxo/eMbcgByU/J7MT8 +rFEz0ciD0cmfHdRHNCk+y7AO+oMLKFjlKdw/fKifybYKu6boRhYPluV75Gp6SG12 +mAWl3G0eQh5C2hrgUve1g8Aae3g1LDj1H/1Joy7SWWO/gLCMk3PLNaaZlSJhZQNg ++y+TS/qanIA7AgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtqeX +gj10hZv3PJ+TmpV5dVKMbUcwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS2 +p5eCPXSFm/c8n5OalXl1UoxtRzANBgkqhkiG9w0BAQwFAAOCAgEAqMxhpr51nhVQ +pGv7qHBFfLp+sVr8WyP6Cnf4mHGCDG3gXkaqk/QeoMPhk9tLrbKmXauw1GLLXrtm +9S3ul0A8Yute1hTWjOKWi0FpkzXmuZlrYrShF2Y0pmtjxrlO8iLpWA1WQdH6DErw +M807u20hOq6OcrXDSvvpfeWxm4bu4uB9tPcy/SKE8YXJN3nptT+/XOR0so8RYgDd +GGah2XsjX/GO1WfoVNpbOms2b/mBsTNHM3dA+VKq3dSDz4V4mZqTuXNnQkYRIer+ +CqkbGmVps4+uFrb2S1ayLfmlyOw7YqPta9BO1UAJpB+Y1zqlklkg5LB9zVtzaL1t +xKITDmcZuI1CfmwMmm6gJC3VRRvcxAIU/oVbZZfKTpBQCHpCNfnqwmbU+AGuHrS+ +w6jv/naaoqYfRvaE7fzbzsQCzndILIyy7MMAo+wsVRjBfhnu4S/yrYObnqsZ38aK +L4x35bcF7DvB7L6Gs4a8wPfc5+pbrrLMtTWGS9DiP7bY+A4A7l3j941Y/8+LN+lj +X273CXE2whJdV/LItM3z7gLfEdxquVeEHVlNjM7IDiPCtyaaEBRx/pOyiriA8A4Q +ntOoUAw3gi/q4Iqd4Sw5/7W0cwDk90imc6y/st53BIe0o82bNSQ3+pCTE4FCxpgm +dTdmQRCsu/WU48IxK63nI1bMNSWSs1A= +-----END CERTIFICATE----- + +# Issuer: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Subject: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Label: "FIRMAPROFESIONAL CA ROOT-A WEB" +# Serial: 65916896770016886708751106294915943533 +# MD5 Fingerprint: 82:b2:ad:45:00:82:b0:66:63:f8:5f:c3:67:4e:ce:a3 +# SHA1 Fingerprint: a8:31:11:74:a6:14:15:0d:ca:77:dd:0e:e4:0c:5d:58:fc:a0:72:a5 +# SHA256 Fingerprint: be:f2:56:da:f2:6e:9c:69:bd:ec:16:02:35:97:98:f3:ca:f7:18:21:a0:3e:01:82:57:c5:3c:65:61:7f:3d:4a +-----BEGIN CERTIFICATE----- +MIICejCCAgCgAwIBAgIQMZch7a+JQn81QYehZ1ZMbTAKBggqhkjOPQQDAzBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwHhcNMjIwNDA2MDkwMTM2WhcNNDcwMzMxMDkwMTM2WjBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARHU+osEaR3xyrq89Zf +e9MEkVz6iMYiuYMQYneEMy3pA4jU4DP37XcsSmDq5G+tbbT4TIqk5B/K6k84Si6C +cyvHZpsKjECcfIr28jlgst7L7Ljkb+qbXbdTkBgyVcUgt5SjYzBhMA8GA1UdEwEB +/wQFMAMBAf8wHwYDVR0jBBgwFoAUk+FDY1w8ndYn81LsF7Kpryz3dvgwHQYDVR0O +BBYEFJPhQ2NcPJ3WJ/NS7Beyqa8s93b4MA4GA1UdDwEB/wQEAwIBBjAKBggqhkjO +PQQDAwNoADBlAjAdfKR7w4l1M+E7qUW/Runpod3JIha3RxEL2Jq68cgLcFBTApFw +hVmpHqTm6iMxoAACMQD94vizrxa5HnPEluPBMBnYfubDl94cT7iJLzPrSA8Z94dG +XSaQpYXFuXqUPoeovQA= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA CYBER Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA CYBER Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA CYBER Root CA" +# Serial: 85076849864375384482682434040119489222 +# MD5 Fingerprint: 0b:33:a0:97:52:95:d4:a9:fd:bb:db:6e:a3:55:5b:51 +# SHA1 Fingerprint: f6:b1:1c:1a:83:38:e9:7b:db:b3:a8:c8:33:24:e0:2d:9c:7f:26:66 +# SHA256 Fingerprint: 3f:63:bb:28:14:be:17:4e:c8:b6:43:9c:f0:8d:6d:56:f0:b7:c4:05:88:3a:56:48:a3:34:42:4d:6b:3e:c5:58 +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIQQAE0jMIAAAAAAAAAATzyxjANBgkqhkiG9w0BAQwFADBQ +MQswCQYDVQQGEwJUVzESMBAGA1UEChMJVEFJV0FOLUNBMRAwDgYDVQQLEwdSb290 +IENBMRswGQYDVQQDExJUV0NBIENZQkVSIFJvb3QgQ0EwHhcNMjIxMTIyMDY1NDI5 +WhcNNDcxMTIyMTU1OTU5WjBQMQswCQYDVQQGEwJUVzESMBAGA1UEChMJVEFJV0FO +LUNBMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJUV0NBIENZQkVSIFJvb3Qg +Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDG+Moe2Qkgfh1sTs6P +40czRJzHyWmqOlt47nDSkvgEs1JSHWdyKKHfi12VCv7qze33Kc7wb3+szT3vsxxF +avcokPFhV8UMxKNQXd7UtcsZyoC5dc4pztKFIuwCY8xEMCDa6pFbVuYdHNWdZsc/ +34bKS1PE2Y2yHer43CdTo0fhYcx9tbD47nORxc5zb87uEB8aBs/pJ2DFTxnk684i +JkXXYJndzk834H/nY62wuFm40AZoNWDTNq5xQwTxaWV4fPMf88oon1oglWa0zbfu +j3ikRRjpJi+NmykosaS3Om251Bw4ckVYsV7r8Cibt4LK/c/WMw+f+5eesRycnupf +Xtuq3VTpMCEobY5583WSjCb+3MX2w7DfRFlDo7YDKPYIMKoNM+HvnKkHIuNZW0CP +2oi3aQiotyMuRAlZN1vH4xfyIutuOVLF3lSnmMlLIJXcRolftBL5hSmO68gnFSDA +S9TMfAxsNAwmmyYxpjyn9tnQS6Jk/zuZQXLB4HCX8SS7K8R0IrGsayIyJNN4KsDA +oS/xUgXJP+92ZuJF2A09rZXIx4kmyA+upwMu+8Ff+iDhcK2wZSA3M2Cw1a/XDBzC +kHDXShi8fgGwsOsVHkQGzaRP6AzRwyAQ4VRlnrZR0Bp2a0JaWHY06rc3Ga4udfmW +5cFZ95RXKSWNOkyrTZpB0F8mAwIDAQABo2MwYTAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBSdhWEUfMFib5do5E83QOGt4A1WNzAd +BgNVHQ4EFgQUnYVhFHzBYm+XaORPN0DhreANVjcwDQYJKoZIhvcNAQEMBQADggIB +AGSPesRiDrWIzLjHhg6hShbNcAu3p4ULs3a2D6f/CIsLJc+o1IN1KriWiLb73y0t +tGlTITVX1olNc79pj3CjYcya2x6a4CD4bLubIp1dhDGaLIrdaqHXKGnK/nZVekZn +68xDiBaiA9a5F/gZbG0jAn/xX9AKKSM70aoK7akXJlQKTcKlTfjF/biBzysseKNn +TKkHmvPfXvt89YnNdJdhEGoHK4Fa0o635yDRIG4kqIQnoVesqlVYL9zZyvpoBJ7t +RCT5dEA7IzOrg1oYJkK2bVS1FmAwbLGg+LhBoF1JSdJlBTrq/p1hvIbZv97Tujqx +f36SNI7JAG7cmL3c7IAFrQI932XtCwP39xaEBDG6k5TY8hL4iuO/Qq+n1M0RFxbI +Qh0UqEL20kCGoE8jypZFVmAGzbdVAaYBlGX+bgUJurSkquLvWL69J1bY73NxW0Qz +8ppy6rBePm6pUlvscG21h483XjyMnM7k8M4MZ0HMzvaAq07MTFb1wWFZk7Q+ptq4 +NxKfKjLji7gh7MMrZQzvIt6IKTtM1/r+t+FHvpw+PoP7UV31aPcuIYXcv/Fa4nzX +xeSDwWrruoBa3lwtcHb4yOWHh8qgnaHlIhInD0Q9HWzq1MKLL295q39QpsQZp6F6 +t5b5wR9iWqJDB0BeJsas7a5wFsWqynKKTbDPAYsDP27X +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA12 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA12 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA12" +# Serial: 587887345431707215246142177076162061960426065942 +# MD5 Fingerprint: c6:89:ca:64:42:9b:62:08:49:0b:1e:7f:e9:07:3d:e8 +# SHA1 Fingerprint: 7a:22:1e:3d:de:1b:06:ac:9e:c8:47:70:16:8e:3c:e5:f7:6b:06:f4 +# SHA256 Fingerprint: 3f:03:4b:b5:70:4d:44:b2:d0:85:45:a0:20:57:de:93:eb:f3:90:5f:ce:72:1a:cb:c7:30:c0:6d:da:ee:90:4e +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUZvnHwa/swlG07VOX5uaCwysckBYwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28u +LCBMdGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExMjAeFw0yMDA0MDgw +NTM2NDZaFw00MDA0MDgwNTM2NDZaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpD +eWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBS +b290IENBMTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6OcE3emhF +KxS06+QT61d1I02PJC0W6K6OyX2kVzsqdiUzg2zqMoqUm048luT9Ub+ZyZN+v/mt +p7JIKwccJ/VMvHASd6SFVLX9kHrko+RRWAPNEHl57muTH2SOa2SroxPjcf59q5zd +J1M3s6oYwlkm7Fsf0uZlfO+TvdhYXAvA42VvPMfKWeP+bl+sg779XSVOKik71gur +FzJ4pOE+lEa+Ym6b3kaosRbnhW70CEBFEaCeVESE99g2zvVQR9wsMJvuwPWW0v4J +hscGWa5Pro4RmHvzC1KqYiaqId+OJTN5lxZJjfU+1UefNzFJM3IFTQy2VYzxV4+K +h9GtxRESOaCtAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBRXNPN0zwRL1SXm8UC2LEzZLemgrTANBgkqhkiG9w0BAQsF +AAOCAQEAPrvbFxbS8hQBICw4g0utvsqFepq2m2um4fylOqyttCg6r9cBg0krY6Ld +mmQOmFxv3Y67ilQiLUoT865AQ9tPkbeGGuwAtEGBpE/6aouIs3YIcipJQMPTw4WJ +mBClnW8Zt7vPemVV2zfrPIpyMpcemik+rY3moxtt9XUa5rBouVui7mlHJzWhhpmA +8zNL4WukJsPvdFlseqJkth5Ew1DgDzk9qTPxpfPSvWKErI4cqc1avTc7bgoitPQV +55FYxTpE05Uo2cBl6XLK0A+9H7MV2anjpEcJnuDLN/v9vZfVvhgaaaI5gdka9at/ +yOPiZwud9AzqVN/Ssq+xIvEg37xEHA== +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA14 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA14 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA14" +# Serial: 575790784512929437950770173562378038616896959179 +# MD5 Fingerprint: 71:0d:72:fa:92:19:65:5e:89:04:ac:16:33:f0:bc:d5 +# SHA1 Fingerprint: dd:50:c0:f7:79:b3:64:2e:74:a2:b8:9d:9f:d3:40:dd:bb:f0:f2:4f +# SHA256 Fingerprint: 4b:00:9c:10:34:49:4f:9a:b5:6b:ba:3b:a1:d6:27:31:fc:4d:20:d8:95:5a:dc:ec:10:a9:25:60:72:61:e3:38 +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIUZNtaDCBO6Ncpd8hQJ6JaJ90t8sswDQYJKoZIhvcNAQEM +BQAwUTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28u +LCBMdGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExNDAeFw0yMDA0MDgw +NzA2MTlaFw00NTA0MDgwNzA2MTlaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpD +eWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBS +b290IENBMTQwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDF0nqh1oq/ +FjHQmNE6lPxauG4iwWL3pwon71D2LrGeaBLwbCRjOfHw3xDG3rdSINVSW0KZnvOg +vlIfX8xnbacuUKLBl422+JX1sLrcneC+y9/3OPJH9aaakpUqYllQC6KxNedlsmGy +6pJxaeQp8E+BgQQ8sqVb1MWoWWd7VRxJq3qdwudzTe/NCcLEVxLbAQ4jeQkHO6Lo +/IrPj8BGJJw4J+CDnRugv3gVEOuGTgpa/d/aLIJ+7sr2KeH6caH3iGicnPCNvg9J +kdjqOvn90Ghx2+m1K06Ckm9mH+Dw3EzsytHqunQG+bOEkJTRX45zGRBdAuVwpcAQ +0BB8b8VYSbSwbprafZX1zNoCr7gsfXmPvkPx+SgojQlD+Ajda8iLLCSxjVIHvXib +y8posqTdDEx5YMaZ0ZPxMBoH064iwurO8YQJzOAUbn8/ftKChazcqRZOhaBgy/ac +18izju3Gm5h1DVXoX+WViwKkrkMpKBGk5hIwAUt1ax5mnXkvpXYvHUC0bcl9eQjs +0Wq2XSqypWa9a4X0dFbD9ed1Uigspf9mR6XU/v6eVL9lfgHWMI+lNpyiUBzuOIAB +SMbHdPTGrMNASRZhdCyvjG817XsYAFs2PJxQDcqSMxDxJklt33UkN4Ii1+iW/RVL +ApY+B3KVfqs9TC7XyvDf4Fg/LS8EmjijAQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUBpOjCl4oaTeqYR3r6/wtbyPk +86AwDQYJKoZIhvcNAQEMBQADggIBAJaAcgkGfpzMkwQWu6A6jZJOtxEaCnFxEM0E +rX+lRVAQZk5KQaID2RFPeje5S+LGjzJmdSX7684/AykmjbgWHfYfM25I5uj4V7Ib +ed87hwriZLoAymzvftAj63iP/2SbNDefNWWipAA9EiOWWF3KY4fGoweITedpdopT +zfFP7ELyk+OZpDc8h7hi2/DsHzc/N19DzFGdtfCXwreFamgLRB7lUe6TzktuhsHS +DCRZNhqfLJGP4xjblJUK7ZGqDpncllPjYYPGFrojutzdfhrGe0K22VoF3Jpf1d+4 +2kd92jjbrDnVHmtsKheMYc2xbXIBw8MgAGJoFjHVdqqGuw6qnsb58Nn4DSEC5MUo +FlkRudlpcyqSeLiSV5sI8jrlL5WwWLdrIBRtFO8KvH7YVdiI2i/6GaX7i+B/OfVy +K4XELKzvGUWSTLNhB9xNH27SgRNcmvMSZ4PPmz+Ln52kuaiWA3rF7iDeM9ovnhp6 +dB7h7sxaOgTdsxoEqBRjrLdHEoOabPXm6RUVkRqEGQ6UROcSjiVbgGcZ3GOTEAtl +Lor6CZpO2oYofaphNdgOpygau1LgePhsumywbrmHXumZNTfxPWQrqaA0k89jL9WB +365jJ6UeTo3cKXhZ+PmhIIynJkBugnLNeLLIjzwec+fBH7/PzqUqm9tEZDKgu39c +JRNItX+S +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign Root CA15 O=Cybertrust Japan Co., Ltd. +# Subject: CN=SecureSign Root CA15 O=Cybertrust Japan Co., Ltd. +# Label: "SecureSign Root CA15" +# Serial: 126083514594751269499665114766174399806381178503 +# MD5 Fingerprint: 13:30:fc:c4:62:a6:a9:de:b5:c1:68:af:b5:d2:31:47 +# SHA1 Fingerprint: cb:ba:83:c8:c1:5a:5d:f1:f9:73:6f:ca:d7:ef:28:13:06:4a:07:7d +# SHA256 Fingerprint: e7:78:f0:f0:95:fe:84:37:29:cd:1a:00:82:17:9e:53:14:a9:c2:91:44:28:05:e1:fb:1d:8f:b6:b8:88:6c:3a +-----BEGIN CERTIFICATE----- +MIICIzCCAamgAwIBAgIUFhXHw9hJp75pDIqI7fBw+d23PocwCgYIKoZIzj0EAwMw +UTELMAkGA1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28uLCBM +dGQuMR0wGwYDVQQDExRTZWN1cmVTaWduIFJvb3QgQ0ExNTAeFw0yMDA0MDgwODMy +NTZaFw00NTA0MDgwODMyNTZaMFExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJl +cnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2VjdXJlU2lnbiBSb290 +IENBMTUwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQLUHSNZDKZmbPSYAi4Io5GdCx4 +wCtELW1fHcmuS1Iggz24FG1Th2CeX2yF2wYUleDHKP+dX+Sq8bOLbe1PL0vJSpSR +ZHX+AezB2Ot6lHhWGENfa4HL9rzatAy2KZMIaY+jQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTrQciu/NWeUUj1vYv0hyCTQSvT +9DAKBggqhkjOPQQDAwNoADBlAjEA2S6Jfl5OpBEHvVnCB96rMjhTKkZEBhd6zlHp +4P9mLQlO4E/0BdGF9jVg3PVys0Z9AjBEmEYagoUeYWmJSwdLZrWeqrqgHkHZAXQ6 +bkU6iYAZezKYVWOr62Nuk22rGwlgMU4= +-----END CERTIFICATE----- diff --git a/myenv/Lib/site-packages/pip/_vendor/certifi/core.py b/myenv/Lib/site-packages/pip/_vendor/certifi/core.py new file mode 100644 index 0000000..70e0c3b --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/certifi/core.py @@ -0,0 +1,114 @@ +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem or its contents. +""" +import sys +import atexit + +def exit_cacert_ctx() -> None: + _CACERT_CTX.__exit__(None, None, None) # type: ignore[union-attr] + + +if sys.version_info >= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = as_file(files("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/myenv/Lib/site-packages/pip/_vendor/certifi/py.typed b/myenv/Lib/site-packages/pip/_vendor/certifi/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/distlib/__init__.py b/myenv/Lib/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 0000000..bf0d6c6 --- /dev/null +++ b/myenv/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.9' + + +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/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e69c516666cc96f958a872278372161ffd500e10 GIT binary patch literal 1296 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a3b3a7fbe05abd36cdc6d58d017edbdb9091acb2 GIT binary patch literal 65608 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c4ba2b9c8c6cdab10d7a00dda476dc4a7bbed05 GIT binary patch literal 24343 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 T<2fjDKNkH5yPZGo;*tI@KJ@?t literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..969484ef0fc106bc3bd8195bf979573cd30d8848 GIT binary patch literal 59888 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 T~y8hC&mlkujh;>{Gg&X6JjpCJip=3+k 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd7c7697c6d0b28735cd9807ad64ba33a1d28517 GIT binary patch literal 15103 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%0D1g$TW&B1CjiD`h0Ph%RDV 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 SuFXcet}zd|jX!hoi2pY}%ES!- literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7a7e315fdb504d9b72e377180b09e81706739271 GIT binary patch literal 19780 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 Mm9G2iG!Eha2b@wOOaK4? literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..740d4b672b38d8351d87246ef2b16b1b0113fc93 GIT binary patch literal 30371 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 d?s`(C%D=Tq4FWOj@Ziy!+&RIZa '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/myenv/Lib/site-packages/pip/_vendor/distlib/database.py b/myenv/Lib/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 0000000..c0f896a --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1329 @@ +# -*- 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/myenv/Lib/site-packages/pip/_vendor/distlib/index.py b/myenv/Lib/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 0000000..56cd286 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/distlib/locators.py b/myenv/Lib/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 0000000..222c1bf --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1295 @@ +# -*- 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/myenv/Lib/site-packages/pip/_vendor/distlib/manifest.py b/myenv/Lib/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 0000000..420dcf1 --- /dev/null +++ b/myenv/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

...' % 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/myenv/Lib/site-packages/pip/_vendor/distlib/metadata.py b/myenv/Lib/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 0000000..ce9a34b --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1031 @@ +# -*- 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 + # + + 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/myenv/Lib/site-packages/pip/_vendor/distlib/resources.py b/myenv/Lib/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 0000000..fef52aa --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/distlib/scripts.py b/myenv/Lib/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 0000000..b1fc705 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,447 @@ +# -*- 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. + +if os.name == 'nt' or (os.name == 'java' and os._name == 'nt'): + # 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 + elif getattr(sys, "cross_compiling", False): + # In a cross-compiling environment, the shebang will likely be a + # script; this *must* be invoked with the "safe" version of the + # shebang, or else using os.exec() to run the entry script will + # fail, raising "OSError 8 [Errno 8] Exec format error". + simple_shebang = False + 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"' '''\n" + 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 + 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/myenv/Lib/site-packages/pip/_vendor/distlib/t32.exe b/myenv/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/myenv/Lib/site-packages/pip/_vendor/distlib/wheel.py b/myenv/Lib/site-packages/pip/_vendor/distlib/wheel.py new file mode 100644 index 0000000..62ab10f --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/distlib/wheel.py @@ -0,0 +1,1100 @@ +# -*- 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 3.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(self.filename, use_abspath=False) + 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. + """ + class _Version: + def __init__(self, major, minor): + self.major = major + self.major_minor = (major, minor) + self.string = ''.join((str(major), str(minor))) + + def __str__(self): + return self.string + + + versions = [ + _Version(sys.version_info.major, minor_version) + for minor_version in range(sys.version_info.minor, -1, -1) + ] + 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 i, version_object in enumerate(versions): + version = str(version_object) + add_abis = [] + + if i == 0: + add_abis = abis + + if IMP_PREFIX == 'cp' and version_object.major_minor >= (3, 2): + limited_api_abi = 'abi' + str(version_object.major) + if limited_api_abi not in add_abis: + add_abis.append(limited_api_abi) + + for abi in add_abis: + for arch in arches: + result.append((''.join((IMP_PREFIX, version)), 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, version)), abi, 'manylinux1_%s' % arch)) + if parts >= (2, 12): + result.append((''.join((IMP_PREFIX, version)), abi, 'manylinux2010_%s' % arch)) + if parts >= (2, 17): + result.append((''.join((IMP_PREFIX, version)), abi, 'manylinux2014_%s' % arch)) + result.append((''.join( + (IMP_PREFIX, version)), abi, 'manylinux_%s_%s_%s' % (parts[0], parts[1], arch))) + + # where no ABI / arch dependency, but IMP_PREFIX dependency + for i, version_object in enumerate(versions): + version = str(version_object) + 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_object in enumerate(versions): + version = str(version_object) + 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/myenv/Lib/site-packages/pip/_vendor/distro/__init__.py b/myenv/Lib/site-packages/pip/_vendor/distro/__init__.py new file mode 100644 index 0000000..7686fe8 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/distro/__main__.py b/myenv/Lib/site-packages/pip/_vendor/distro/__main__.py new file mode 100644 index 0000000..0c01d5b --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/distro/__main__.py @@ -0,0 +1,4 @@ +from .distro import main + +if __name__ == "__main__": + main() diff --git a/myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a09fa1f79a7755a195c6a9c9d6970c8da85f803b GIT binary patch literal 987 zcmcJNzi-n(6vu7HP0}Q8ezr+Fpbjh>Hl-)+DQ3XP)M|_778+?{-vc zd$9BPet(NR>e1fT?vtGX-Ri0OoZ8=gfKqKv8ti6HeGw#+o`_;8hDj{KK$R&y|-Y5 zsN0tM?G0%o77%$v5wVEC9g$^31>qo;5LHACQAacoO+*W^j95Xm5go)TVohVayQcCN z|M#!e3+VWNTTlf`neS8j&N$Q6j9-by!#nQNNNBscb`pMDB%k((??B4R(kkPSZd$AZX7p6Qobo*lHMk3}n#%yoI_Ic!v#dt$MYv6@) z<6`O!N<|=IN^g#*s(2SdFY)<3xvqP_jgK}pPIIPdo?EM?b#D9vXZYdgW~XeuD4gCl Ms%uAOc}<7@1}T#kZvX%Q literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..47203154fcf871d58b1175506ae828d98dccdcec GIT binary patch literal 319 zcmX@j%ge<81lcE5G8};PV-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}LKn1rp9yF`>n&Ma40RIjI$?G5&d}E=8GTsWBH8T-b176`!4K`G0I6yN{lZkN=z=v%ubBStxU};i}A@!iYd-4N!2Y#OwLYBPc4oq z$Sly0FH6l!$uH7}xIrK0F1>=vTO2mI`6;D2sdh!6@Bq2LSPDpdU}j`wyvrc*fSJ3a W>Jqc$O%{$;w-3w=EK)@rKxqJ0vtTg* literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..acfab87e86f7a83f5c8c74027b027479a8beba26 GIT binary patch literal 53819 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 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/myenv/Lib/site-packages/pip/_vendor/distro/py.typed b/myenv/Lib/site-packages/pip/_vendor/distro/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/idna/__init__.py b/myenv/Lib/site-packages/pip/_vendor/idna/__init__.py new file mode 100644 index 0000000..a40eeaf --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee98c6614eb1312597318eb40afb94781724770c GIT binary patch literal 908 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b6bcf1d5349fcf0e7e70eee0372054a10823a5b GIT binary patch literal 914 zcmb7CJ!lj`6rQ>Lxj*9%7coJiTWGNwO^5_UR5%iggJdm|G+`m^?YzV#yF2UbCb(ju zL9nn%my~IP2(eRy^kTDz-4d{{N_TMD`(`f}QtH5a?|bvj&U^2h{XR5QBe>ST-FVid zg#41pV5ujd*G8~I7-7^WA4{~4Xn{&h@k@cStOV+^ii`>x(?DNUnf_K?E@Q5O4wco? zDBgjLhD;fmDyx9PG*-pDhIuWmn)PGsfS5F=w~l3Lvy>~%FwM24(BomQ`A!@BTo;gR zh|ra12TMU9tv7;hha{)mEArt4FOYp|;oUlfE@!Y$MH$b=k~RK3M?dqxUW!4)w&TMK zu%Cu7E4)pxv%Tyf`;;Aa-esS&FGlB0XDd6*zS>jRjO6&;Xq(Vwjl-TbJ(buZ-FyL&%hsWYN^740y7twVUO6d`49FgIl yWUQ-FI=X$YOEBzC_hjhma%*XKde6+R-tJr;FUW(&DQVGdMebR2SN&bYVuruV*4-}v literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..98df253d87924744d479500b88b03014271d78f3 GIT binary patch literal 15818 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%0Dk^Kp7mDW=}~ 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e4bc28abd5033d080e1a9ac0b9e62b76f9d1424 GIT binary patch literal 2660 zcmZuyO>7%Q6rTNaQajF{)ig~@Gih4LLU2i35JD+Pq)H{4w(74SHQH{x<7CNt*O^_@ zI5-dx5(!iy5|!%S+?%6b!mS9Y;t1kmHx*c`3J!4T%_!wu-ptxbQ!&!+yf^P>-n{wV zn_r{RFoH4n%aPd+S`hk+G0hQb5L-8ZxP=Tfg$%(EEn!N4S+c~8G$m!^DOo^WHd?-vr$R<6tnGnMAxb)Agki14h;SaXVXdj%29j1I3X=9`{eayb zuq?TjPV4AbtFfb{{c1bGdf!k+%rJPJQ=MgZbBuj})Y)|)0$7bfji%RK@XlT#e&Pvn*cQy$+i*)A<~6xvRt1br&z-hWoH- zbFo9s8PnD+e!zDQLrmB+GX$R-vYeTrK_0iN#>0=CTA=(e8p!kQq4G9O!c3h>HNlxgpRHZoCLGDUdaF`p}Y65I+KtK0mxY z&6R>;NZhkx2o0Ygx(mCq(Tr3;1$jxj@xF|_NFae&#HREjQf2)BB;i8yw&CWVM;M0d z0x%J{Ks!Yk5~yy^5cjPxhS30n_8Px^?X_(;x>2G57%kn8dCFP%-0S?(6~&FK}h29D^9_2(D?* zSUXs6fEJI9;lwB|FkcX&?RZSrW1w>5+}q=)Fdj3YP?lRYm-Qu< zW{m&!fE<4-dD(@kPwEy~Ajxw!IZ2^{la*3sqw;;_e)X%$y~+=``g!$>%KgfZ$x%z6 z*0n5!gqm}DGLt9v$H_@^I_bi8uV(esoDMgc%$nI_8uS;#p~p-m?2FiN#r3qExc<@8hCcLno9|>m7B599b3T*>DwS{7sc-s9C zZxfm?WgXX-nIbe7b7t1_1#5<~BDjLOor5(9-*;yT24FxpyL)-NUObV5D=Sug5^W z7U|@$QX_tgrWsC3)97J{3J#giLJy`4Q^M96-i&h7^VdoYacc82`Lfm!izF)R+qkE^N54@xs1~?H6`j z*r{-_@nX}3eHV7e8091;CB_#NB_@|-W+%qvR;K2a#rR|<#S~|jr0NzVCTAz6rxwQ) zWESWHEzC>FFVfFU$xGCS%EYH6mL%#GRNmsS$<0qG%}KQ@VgtGY=#VgYgijA>1= literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b4234b65415becdd97302137a728d03f7f57d76 GIT binary patch literal 158875 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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/myenv/Lib/site-packages/pip/_vendor/idna/compat.py b/myenv/Lib/site-packages/pip/_vendor/idna/compat.py new file mode 100644 index 0000000..786e6bd --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/idna/core.py b/myenv/Lib/site-packages/pip/_vendor/idna/core.py new file mode 100644 index 0000000..0dae61a --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/idna/idnadata.py b/myenv/Lib/site-packages/pip/_vendor/idna/idnadata.py new file mode 100644 index 0000000..c61dcf9 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/idna/intranges.py b/myenv/Lib/site-packages/pip/_vendor/idna/intranges.py new file mode 100644 index 0000000..6a43b04 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/idna/package_data.py b/myenv/Lib/site-packages/pip/_vendor/idna/package_data.py new file mode 100644 index 0000000..ed81113 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/idna/package_data.py @@ -0,0 +1,2 @@ +__version__ = '3.7' + diff --git a/myenv/Lib/site-packages/pip/_vendor/idna/py.typed b/myenv/Lib/site-packages/pip/_vendor/idna/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/idna/uts46data.py b/myenv/Lib/site-packages/pip/_vendor/idna/uts46data.py new file mode 100644 index 0000000..6a1eddb --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/msgpack/__init__.py b/myenv/Lib/site-packages/pip/_vendor/msgpack/__init__.py new file mode 100644 index 0000000..919b86f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd27fd913672206cfb0322731f385cdc8bfdbf04 GIT binary patch literal 1768 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd7a7a5a84467cb9a458551839db8e6e4eb72151 GIT binary patch literal 42070 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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/myenv/Lib/site-packages/pip/_vendor/msgpack/fallback.py b/myenv/Lib/site-packages/pip/_vendor/msgpack/fallback.py new file mode 100644 index 0000000..a174162 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/__init__.py b/myenv/Lib/site-packages/pip/_vendor/packaging/__init__.py new file mode 100644 index 0000000..9ba41d8 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7fb63acf8ccb1bf4baac8414b986c584a3534be7 GIT binary patch literal 585 zcmYLGzl#$=7~M^B`FR^sT%i^+iV8VM_HIcbhlrX~A}Sm<%fc|(nPi9T&MY&t;dZM% z8~+3?ZSAyEgzLp-(}h$4|AD|^@8sffU-9w1nfE>3y!mZeO+(l0*MneV8pfY3xUSOw z;qp)q9}R4{1~y$2m)sIAyJcK)D|pY{!&SG6YowA@4a2Ra^=@O;h><@-Q_7~<{UH|w zB#MSqQ6j;F3-C5o0cT)GA~L%dC>6^S+n!PtB;&r%BRfuGWZ%eCoI(FM>y9`>AqJ-^ znM@Qw3X!36onH3qqgAsi4z9LHNbE+y?viOt;~Q_fBdp4~686cyAaP2|6cU@wxa~d@C*% zABykA53o32ye}?_pPmz4%CZjY{NNWn2VbXZ3ro& z+CV=}SM?_m$4N+@ing|)f8LM--8N;@G&fDdx|KJUZ6|Lno4vfYZXe{Wwe>h}F8A-| WjdlA_UvzGNdb#L4I=95WUi=4oWX7EU literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e7b083c4dbfde014ff47b13286a1c28ffd45a123 GIT binary patch literal 4994 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 WNp&i5)h~mIR_(`kVn}M_0{IW=$BqjC literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21c5e1949cd368586ef92dbe22c0e059588db60f GIT binary patch literal 14012 zcmbtbYit|Wm7d}IO_6%PM-NM+q)3S!JGSGOWJ`_`JzPn4HmX~O){Jc06sg{!Y>O)= zN}JutXm+h&A6B;QR=ZfB^4eIqK!2oIplJ8sqJKz`T@eFe*FXa-`cDBB1StAr&$;v9 zP$KQLJ2LORbKm#QIo~<=oa06 z5M>t(vj!H^#;9@D2(c+@S}@O=7c8@u1?#MJ!8U7yax-s<+7}$Njs@qelVuFdMTWP2 z$ndtu2D#^17tOOnosbKQ{Z(dBvto8T5a^M-n8JX;}Hg$ltd zRLmRcyAMizf`#|un^MOwSOgniA^3$#xfZQiMSJ%_?|#9o&7_*|x^Blw-`~cquaVP&W-wyF1{uRCh;;v<5@NjbDjc|;=Ln4WU z5aSlZL=*@YpXYdCQHb$EY;Kto7lpaVd_*8(zr!(eL*V%MoR}by*mZ6`PBCWR^3`mt)ZQ zcR+GX&>*=l437+69-9eGT^<{rmh3a}TS6?76v!O*tv(7pvH3p8dB_ONEDO|X;4M50 zyJY08ya8ep#72nC5St*jESrNi$utq?g*l}M+99Ta7TLU?_O`;VFd)8yhOdP~izEy?e=B@-VOfaXzB(4Uc2$fdgqIe>bGO3R z1@Y=)WN{#L8$N5C49JDcsb5EU1ak4;bFCf}!z8=4mEq znvmF2NkgDJY3vT3fv;o_h32ARQ4ED}i(){3p%AHohWg1v3DUG~^W;}ruN^AG^nL#I zS0A4F<5=$h8 z)E*Na8AuycCmaMpD`|vCa)d$)aegTZ`y#nQq3Lbi5041$lSb0Dxh;5{9*3iwZ^L z0;D37OC4>Qz@4Vg3iDV=E7S^v%0bEgJ*8_&`qj?+wHuxTOs(6*@KOdDW8`7(K}(jg0NG18)O1Q zt^qz^e`EwcFaRI4%k$bt?DE>Zw7bH>ad9GIg+l4;T^sD$pQmgMy2X<|DBr)<0nEby z*+eX?wNc&=Ecv6?YM5Lsz0enaZ_-l8xZhl%1Bct$TMqs z7Mij`o()sW_Mk)ZT|zm}Pl50RnT#@*Qn+M7rj?9KB>H=M6ejUaVE%7O7U6D!ghk1& zDFR8KJZYRLx56PRNEQ(4unq(cgoFZhOWsgOC&B?G_fh(Btd7B9_=!mFf5GG&?(dD} z?5^*7@n9J9T^>-qOUR$)1*( z8K0cQ04b52fqv5XUPhYs?Kruo%?ZikxR zJr;fj-cXiCjVkYuAC{)V$FO{SC~qm$Cg;c@Z&G`pH4uFEJ@-t|vqt}gLOj?$v8r5o z69Hx4QF0gn2T7^R+F;;V226kx88A zCCsZYfl2a;r3$4;8#!np)7X&04+SE`AjuAzhB9fdR#(mtk+|f&mf>j%+hcGAe&S0& zD*#UwjIVNaH0N-wp3k{`t0T{>6(7C-!TalpthFg;^F8p~_hfB#klMD@r)~8compG! zv#RFps;+cZ*P1=&sonOpq&+PgOI!C+o|cT~^tNXx?HO7#=A2asW*bL06KiL)&c0k# z?MD6PNUE|o&37_Y12CuJ$v$rya-X@{t}iT1Rr41{#@G3*`sAM5=69@FcB>e7 z#d`h5NXprfGIbQACZ2&c)ciMid9juu)&dWg)G}5K^yF+@VfAvmG{+ZkwX9B25;JvZ zizgFH^2h;hmT3=|d3tz!^!()5_QI-aX-+ch)xLwk(T z?x1q|qlphDvZktX^7fh2w>n--1~3+bdDlWJXfObC{u7{|eCdxRg9yxTA2pVJ>LLE-A5z2J) z4aguE{0K{KLqPR41%%E#H6d;t&3S!m_Gfngw!I^5@5tF|a<w|3XcI6A*%Ob*Mg zgMrclJnr~9Hb*nQ{xwT65`E>x%6`V>UmgFdvXK70hzk0@_7Aojf7Nat?6VdfWsuY< zb^Qzg`yq3kfn&%EjvFGVH9%c#DX@7ysFYGj3N&UfrzUC2U|AIj{1ydhBYv0#u6f_X zn+s#bs>-a=qSg_OFdtlJNyVrDlTcm?5R2!mDQbl&fnUY?MB@xlDNFCC;rV;^@jn31 zoYCr2)G6k)G5FPDBE=Rb<5mRC<*q^hU86{m8|zrHc7T?&^s3gR{(cSNZb*? z`9O)D9<@Zte139#d@xy4$Wv4x+JtILV0)yjWC<^#tAZd1Q_Y0361jn|sI3Hz1qPCw zv_pmG5WX}RUc~wsJcXb5O9&`C)i;7xp$OqqS!W>UtzL6KGdVsQ|6qJQ_^|(z{*1qU z+uxn`cV|t3XAVy>*Qjd5sVyGa@d)Su+pa*`6-Wigf8(0S`5GR!e$u*GoAm{AE+6PK z$X>f{V9CKDGY^?ZC?de_tEHtw}68k~aT{u{&7 zqtjFoSM*v?;bY4*L&j!ZHQEn~Vfk4p*^E|_D)tW{`3`hPz6Em}AJUd27Qy^A>;!{f!%yTP0J?NAj!G5L8*;YBoVWcsh~6~t)ShWN z30{+8;?y9$Ib~|nFdbiHQ2)FBLAUW&Zu4MmF{o=QgI_yumw`LOV}N~pNFHjS*17LN zV0u0TmIA0G0A5)^V&qLv%ql^VwlV-}fwN)B8S&O6%n_hdA>6V;!Co{@OPO&T<;K}J zLMegbRCllJ99(J*O`QCHcJoi0L*W~MPWlyCIZ4tyGzzBGJZHpsz2`z%Kx zo^qX55bRO(D}tvy(AU)#Qq`5=sp-+liO{8~;gQil3(ZUoj*iKCSMpeY4<|0o&qwZZ zbKw{lk42Y3sBlYQ;^yu|5;wSaPoI9516TFCZ5S^KB%Fv7k=S4i;6hZnB^y0JgB+3S z)se;~&kv4;#s-Im$K>IX=f>i5;iz_I2Cu6S{o{s2Xdnc~wNU9r-o=c9=%P{!Aw!i~ z%UF&x6pwCAt>G}bH z8Fz4xF}XbeLb9%zYCQJY3`(~lUCSwb%c4d_+GfsM_u&2e?{D16db?2o+87t&4>Yhh zl%8$T@p!kJf!Wi={>IU@+atGrj^H~6+x4e82go2a)p-Txm!eU{KtwdJ0J(sl12Iqj zPLfM@2qH3jIl2Zw=^(XhTEwd`hw{qkV<^R^?DiLVxyW0ki2{6KvfW+z zfQnM9^evAdhkCzSS+m3o+U++>#GDDcI);uEk;Grn6B;k}8#F#{(##ombYvz|m+br6 zudh-mt573~-UHezR-k<$ji`^T5-TJKrsxH&7FBTx+8ksNOz_rH(x;42phT($B-Hcb2hBtYJ|ik(wA+4!5P4L&ukzMr)o z&ADr~-Q8(7NS2nIt2I~I1+?i2fZ4<20Od4tcoI(FLnx0W+)C)P%&5YzHO zM~2GSV$aX`J5|$2k%x=o+*h?~MOk_NdH;~d_#Yng&_3lE2@rm4{=Xpcb;w@tzgC%{ ztn#a&BREbqY}An)D!nftxsv034QDSX@&?%*6*MSzHa+RcgsJ4*h6{j5hstYwQU9hC zQgW0{uSWS4hu%V^P*j*tNOrA?RG}*?g^nM?mmwGgkl2t`sd821 z3Eind7_2$GI$7-1+^OI;>oXO-;FTz%k)7JWR(+=S2uQ}_f}E>y`{{afW^aogzv88fg-PV@Q(-qLe0WKI-pE zX07cz-jsko=Uf#`fU1_9hugVjQ3*7b}mTrG7<2|0T9jD$c>TakS1P{Oc(3gzC?l?%98j{IM^$IxN zZ!^SM(7Jd{cbeAS$0?u@92Jcd;Jj>s-AKSy;)Rg155-r3rRtK|0&ZG6B;aP6)sym%r>)~V-r7{%@r?IG%68&&Z|#OPT}Xh;ABoL-8fceBvPtD}+% zm`ag$jv|p@@D?t$4HBT8yS&@3rnIYRV>aUotPbxuEB>}}{qo;5WSmWK$U3-E6EveM zU4u@(2G%r!G(jrZ_oy1UUIyuDp^OaDY}#b-Mg2l~2_0VXJSk=-sxX$Sg_d!h#j)^} zz>@^)#-}X4+0`0=Z#wz`Du26fSIq1MJc`5m(27vOw zn&G4mEGzoR|AfZRQV(J8|sul^kM)ellLsG0|M zQSjftj@<;lzmfuDs)CVKS$hlS7F+o<-ayJ0c;>C!_V%W|y}Jh1eLQb8R)CTSj#$c5 zpo0wK0yqqi73DixiZhrR3(Dsv+Y|U-8}RC7ABvYgZk%4M)ZMlGR?sH9G-y|79FmL? zxWjoBhvG1x-6Je3>X2-qpt-M?%*9p*r(L>-(z!=V^{d`!9Yx)K|N14nys|4{0%e=f zUN?D)>L&6p#km8e2BBALgWdSQ2jG9EzzuY`jXu8w7uNBXKEf0EX9y%qVtEl{H9?Rg z$h!njpac;DT4=ZD=6)!RjQ^I|Mc?fU>7c5U0H-vs-GJ>h|7|`n~VN6j! z?INbGVL&Z+A7E+~1Jo|*!G@g7SISg#$+67EE zV!D2UCjbY^&$#T&n3ry5?ls{rak7&thgNH5#nd& z?z|b|-Feo>`e`o4!M(S5#{d8T literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1594bdfff07deb0921b48997cee87f03fb57b980 GIT binary patch literal 3268 zcmc&#&2Jk;6rWvx#7XQp5QjKT+PX?BY9L<)fk0I+ROLg+99k}srPaosINLaDcXkuu zkV8O`KmsHrkdk9Kp{N(QfslGfTsF!Dt+??I1R2yT?>A#xUdJ0kF08a~-+TLJ-kbOF zn_p9@Ax6*IFV|Q1VvPL(q5VW#O!IAG_L$DzVr90=%GzUH{aGR%XOCNEOPaLM$s*FR z(8)sYSVS7pe5};6m!FQ0T@v?bwoGK4tzw$8cmn3@l~K3Kv@WY_rELZTowlvQRkG{phOctol&|AQEJ& zaw5=n2n>Jw1g6w5YCc0`hy9)&`{wR`=IeKl(^tL3RguK{Sj}DKqSR_f(x@j;nnS&C zPvC@yx)`L7$PjU`B$rcB#0{hBQVe4~$$>IOcFlHbGSchW?!pCeL^ zV#Oo~P8RTiCX+{+Bc?n3+uAmJ*n4=gX;0sMCPql4A`DrMWjn5Em$*M@7^SM|I8^<9 z5%NcUB7|~`wrYZ)7?b-q4l>_e`S!|jdcjL9oDQ1of+Iq8co3eKO1}a?iF9@fFm?_< zVun_n;iz8$Dx{RTzk#(VfNT{%Q{WZTr7`X9jKFB1>1Az@XsQiS^|W%I*Zk4mO-_x$ zfMM9YLTS%*`=Rla+G*O*!Q>$Co!&3x(-qRcLk3qria7m=n7dYf8yT4+!T-es2oQB>Ig%mLsd zIhc$yW?Q!L)>KFm0Oh#6L}$P+?g*n2?uaIEHrx^FE#cyVP%bWG?_SuJgBuzWuzLZ^ zu7RAoT}auJc+YwZqp)^%R%l=BATW>O-^XJKN-j?ESdfM&Q9WKd_v1Yl_gc?=J8nmh>c38{{X%3 BmnHxJ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..233fa2ce95f1db326b0aa1822e287808d89716c8 GIT binary patch literal 7942 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a27200093b7bdb117edfc7742b7bc2f8c4c0e4af GIT binary patch literal 24980 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�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 mIW8 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/packaging/_elffile.py b/myenv/Lib/site-packages/pip/_vendor/packaging/_elffile.py new file mode 100644 index 0000000..f7a0218 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/packaging/_elffile.py @@ -0,0 +1,110 @@ +""" +ELF file parser. + +This provides a class ``ELFFile`` that parses an ELF executable in a similar +interface to ``ZipFile``. Only the read interface is implemented. + +Based on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca +ELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html +""" + +from __future__ import annotations + +import enum +import os +import struct +from typing import IO + + +class ELFInvalid(ValueError): + pass + + +class EIClass(enum.IntEnum): + C32 = 1 + C64 = 2 + + +class EIData(enum.IntEnum): + Lsb = 1 + Msb = 2 + + +class EMachine(enum.IntEnum): + I386 = 3 + S390 = 22 + Arm = 40 + X8664 = 62 + AArc64 = 183 + + +class ELFFile: + """ + Representation of an ELF executable. + """ + + def __init__(self, f: IO[bytes]) -> 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/myenv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py b/myenv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py new file mode 100644 index 0000000..08f651f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py b/myenv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py new file mode 100644 index 0000000..d2bf30b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/_parser.py b/myenv/Lib/site-packages/pip/_vendor/packaging/_parser.py new file mode 100644 index 0000000..c1238c0 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/_structures.py b/myenv/Lib/site-packages/pip/_vendor/packaging/_structures.py new file mode 100644 index 0000000..90a6465 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py b/myenv/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py new file mode 100644 index 0000000..89d0416 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/markers.py b/myenv/Lib/site-packages/pip/_vendor/packaging/markers.py new file mode 100644 index 0000000..7ac7bb6 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/metadata.py b/myenv/Lib/site-packages/pip/_vendor/packaging/metadata.py new file mode 100644 index 0000000..eb8dc84 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/py.typed b/myenv/Lib/site-packages/pip/_vendor/packaging/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/packaging/requirements.py b/myenv/Lib/site-packages/pip/_vendor/packaging/requirements.py new file mode 100644 index 0000000..4e068c9 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/specifiers.py b/myenv/Lib/site-packages/pip/_vendor/packaging/specifiers.py new file mode 100644 index 0000000..f3ac480 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/tags.py b/myenv/Lib/site-packages/pip/_vendor/packaging/tags.py new file mode 100644 index 0000000..703f0ed --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/packaging/tags.py @@ -0,0 +1,627 @@ +# 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] +AppleVersion = 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: AppleVersion, 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: AppleVersion | 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("AppleVersion", 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("AppleVersion", 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 ios_platforms( + version: AppleVersion | None = None, multiarch: str | None = None +) -> Iterator[str]: + """ + Yields the platform tags for an iOS system. + + :param version: A two-item tuple specifying the iOS version to generate + platform tags for. Defaults to the current iOS version. + :param multiarch: The CPU architecture+ABI to generate platform tags for - + (the value used by `sys.implementation._multiarch` e.g., + `arm64_iphoneos` or `x84_64_iphonesimulator`). Defaults to the current + multiarch value. + """ + if version is None: + # if iOS is the current platform, ios_ver *must* be defined. However, + # it won't exist for CPython versions before 3.13, which causes a mypy + # error. + _, release, _, _ = platform.ios_ver() # type: ignore[attr-defined] + version = cast("AppleVersion", tuple(map(int, release.split(".")[:2]))) + + if multiarch is None: + multiarch = sys.implementation._multiarch + multiarch = multiarch.replace("-", "_") + + ios_platform_template = "ios_{major}_{minor}_{multiarch}" + + # Consider any iOS major.minor version from the version requested, down to + # 12.0. 12.0 is the first iOS version that is known to have enough features + # to support CPython. Consider every possible minor release up to X.9. There + # highest the minor has ever gone is 8 (14.8 and 15.8) but having some extra + # candidates that won't ever match doesn't really hurt, and it saves us from + # having to keep an explicit list of known iOS versions in the code. Return + # the results descending order of version number. + + # If the requested major version is less than 12, there won't be any matches. + if version[0] < 12: + return + + # Consider the actual X.Y version that was requested. + yield ios_platform_template.format( + major=version[0], minor=version[1], multiarch=multiarch + ) + + # Consider every minor version from X.0 to the minor version prior to the + # version requested by the platform. + for minor in range(version[1] - 1, -1, -1): + yield ios_platform_template.format( + major=version[0], minor=minor, multiarch=multiarch + ) + + for major in range(version[0] - 1, 11, -1): + for minor in range(9, -1, -1): + yield ios_platform_template.format( + major=major, minor=minor, multiarch=multiarch + ) + + +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() == "iOS": + return ios_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/myenv/Lib/site-packages/pip/_vendor/packaging/utils.py b/myenv/Lib/site-packages/pip/_vendor/packaging/utils.py new file mode 100644 index 0000000..d33da5b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/packaging/version.py b/myenv/Lib/site-packages/pip/_vendor/packaging/version.py new file mode 100644 index 0000000..8b0a040 --- /dev/null +++ b/myenv/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

!I7S{BS4i1|@R7s@ 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/distlib/t64.exe b/myenv/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/myenv/Lib/site-packages/pip/_vendor/distlib/util.py b/myenv/Lib/site-packages/pip/_vendor/distlib/util.py new file mode 100644 index 0000000..0d5bd7a --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/distlib/util.py @@ -0,0 +1,1984 @@ +# +# 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'): + if not isinstance(hashed_invalidation, py_compile.PycInvalidationMode): + hashed_invalidation = py_compile.PycInvalidationMode.CHECKED_HASH + compile_kwargs['invalidation_mode'] = hashed_invalidation + 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, use_abspath=True): + """ + 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 use_abspath else 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, use_abspath=True): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix, use_abspath=use_abspath) + + 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/myenv/Lib/site-packages/pip/_vendor/distlib/version.py b/myenv/Lib/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 0000000..d70a96e --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,750 @@ +# -*- 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/myenv/Lib/site-packages/pip/_vendor/distlib/w32.exe b/myenv/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/myenv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe b/myenv/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/myenv/Lib/site-packages/pip/_vendor/distlib/w64.exe b/myenv/Lib/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..5763076d2878093971a0ef9870e1cde7f556b18b GIT binary patch literal 101888 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

                                          # 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/myenv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py b/myenv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py
new file mode 100644
index 0000000..57ce7f1
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..296cc38ab5589b3bbd359d9e9b4574579e9789ad
GIT binary patch
literal 161288
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

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py b/myenv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py
new file mode 100644
index 0000000..d58dd2b
--- /dev/null
+++ b/myenv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py
@@ -0,0 +1,627 @@
+"""
+Utilities for determining application-specific dirs.
+
+See  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/myenv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py b/myenv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py
new file mode 100644
index 0000000..fa8a677
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a4bbe6053b3a88071b17500ec77a272a4cd12a87
GIT binary patch
literal 19856
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
AaR2}S

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d8980835a70ea7b760ec786487f2eb13db9b6369
GIT binary patch
literal 1975
zcmcIlO>7%g5PrM+)?WW54wR%R5!#lY#85kJBuc5ON~obi6-lEaF2?BT#ru-1;{DOv
zb&8E683dvS4!KdOMar=#J(L@$Qtyb%h8T&iDggq7xCI67%-glYiWXHpJ&m;lMzdA^&?8Cm2Ra=nfAyWHEo^QK5yx+W7>Y@4`EW0!W^}2
z$EUvO*j`Bv^9v2?FFD+rHMtk&2w7v?gLj0KhQmVBW1JY&r^GOMI2@^U$6hj*BVZ^7
zXnlnxbPuA(dOmvJaANBx;%H92X+dIM
ztLd5bC{8i*;Z55&t(d#unIen*+#@xadkpO7UX1iagnGZG(N_kZ3PRG}DD(_EC9NYv
zUYC4nU}PwMznchMhfaO2Z1vwsC}E{0P`C~8>7b5eq;93RfI*yf*-yn1LbK@I2|$#8
zV{{aVulXXQ=yc?cveoClj*`5eK7*6ong8P+cpngN_Tjt(^nh4%gZNPYM5T@Vt-?Y4
z-quiQxIKQkY3u$9)2;tbU#QNtUUS_rGuJxrST40&?P9sCyZzyV>GJfpqL<6<=K-d!
zt4Gk(71LkQ9al^%ZRnHz;hZeBm6MedFwN;c(w5KY?NasuU#ICm)cvJLnL-M*>905(
zxTYR7hV(qT*kFb}nXtS78D;kM`H~u{E{EmAMFTj7N2o4bzO?XGm|kYEC464Op#~1b
zrWOmcLW)^KEPj88UGBJ^aMa=a{XPii&(z+At>o2cgT2RUmuxo6%{5jFHiO&2m%-ib
zPlB(4ul4N@wm%H+26t*R4Z28)%W2&=S82^^F?+4{rny)X^ImpoeU&aVujZQWH0(ax
zaQJkxE7OFCW)f0yTOk%AKL%MGfsdDm3GbqxhDW<^{4g@nz4$B61o?>@?_8U^`DBnS
z_i#lZ*^@myb3ZqBP1}6&HtXfic4vPqK6Mq}*9selHc}glH^w#(ZTdUo$AiP=V5suF
zHodE$kQ$74j-+L!lemvjPJ^X6qyOTTmc%Co!@Tti2=Ig!O%%gq(6dCV9
zQBbH2DmD*)FDcGoi`yZdcWhS5glR$yr%p(iC1j~77Ca$btiA9sbfD7jKqc9M=-$LP
z=xH#F$}dR7l_BH{#Ge)D(TMu2e&w>>4cq

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..0214f856aa106b9510d266bda6dc7cc201944fad
GIT binary patch
literal 10724
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
UBe2IY_U1jS#bf!7lV)T7552?ikpKVy

literal 0
HcmV?d00001

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

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e74dfa00731c0cca0b6cef807d65bb5eb3016c03
GIT binary patch
literal 8034
zcmeHMO>7&-72YL9aYg-5|FTmDS*vne#S&Kv3a3?EIk5~U0W90K9sj6m$rX1*uC(NC
zXP1&iC`M8ksMAa8lXCR2f-enFpe+jIUbKfL7(fnNpobub+?2|_^wjree<@Njjnqa8
zbPuz$-@cih_syI4-pu}`yF0i>8_JW+f
zbT#!Qz8dFiopQ0LTe791Rl92pM2VUkDl8=pP@f#pZDW>}}=^!_bJR=-E<%6rCv+Pv`t1~;cJFfk~Q|`DjV2ks^_R&D8NwPgaHwW>3S2)$kVJ5N#(7A
zHk(PO*r?~_RZzcV5>a1fie+GYMY%x4(}ru5z>^81R#P5xu9c!DC^?&%a0pl<)C9Y3
zp`|P7wt_n{2n$j-{a$DJpnN)
zX2@2)mLRtcc!R^)=4)*x(UwhAO8nPtDCcGt-+?#gqO6hIWbsmwoTFf!i}nNixAw>O
zCzW5?f3W{3R^G4t!v4hm)8Z?dyd?)YBxoD_{
z1Y;>GI+enfCBc%@&6KfG>&5}4k-s#UTzP=ma;gp-f$^Cqpm>klZRdIical?;?_eiPu5qZ02PO2EDX_E`yrBH9xH}JI=@X*4xYC
zI{7Xo&?UNDS-iYq<-v_CsYURP;F8e?vTtVI(hFpXlJ&r^;#11ZgFl;KYYZ%hxxNiw
z6;WJQHBDTC{)-B6+`Qk9LCLauJ5WP6EGh4PL}JP|TZ;QepDC0yOU0$tg6r~SXEUN|
zilitnX+)V2VL`eys728mpW|2^nlL<3Vj7S*5Ns)ntSeYy@LkiQEL;&ohREfxH99lu
zC>Ek3laX3capq~~)BnW3yX!ts9;kbCC@mj5tb2+}al4}yh1gqbcP6NoFfEx{=DKR-
zDK3OsyW{F=9X_A56Y)6GVG^U(wxX-W?I=wm+NqjpZ(3^|D3aDN)L?D}?9yHo>PCmv
z;D74CV<2bhP`t-I9^^(|*jl;2vNL?LGJNtkm#V|3?{$85<)^>Cwlj39GIYv*^+I)M
zzA|{x&XRi_kA%J*;YdX|^3mYV(V5E88T++c)uRia3O{+&nf!3}SF?W~7}}b-KeKh_
z{+S0qtPV`tU6YTJM?UKNVAB@9Mf>5Kb)F3UH4ASqK!t@jxbMGUUGwERe=TSA;_-IR16?
zI)AWUftSKX<9aGzwYnM2jPq24ku|Eu!~z}4u4?<>SFr6E77bJMd^3>i0UdG{wDuig
zD=EkvHZhyIx^i!jbvRNK16c!IJ&q+{KgXwe@r>SDFS{O~9zBiC4h^8!HUhdV84+9YxOeM^DFRvQ8U(
zrjO2J%Wpz}x#H8H>4zr~4LjTmdaikJ=?Q`h$}|rxU5rckC?lyq6j)sB3L4cDc7@lf
z)9+N1*KOf?V^~2mX1UbsQ2BbhLUtGsWL(~fj@eo`KIfhtnXudMyd(LKkj7$iOL4PD
zyRq1BO8t(#dF>ffM?y^b1Hm^ppocx&_dym5yXgK8*FRX_Nn%R&V6vK=vW2PV%h7sK
z(`BV)j$Cn%BlnR`9mb0*)P$GNn?>w_C3FqB+<)6d-tZTbp=ROW2+rVIO4u&D(x80e
zj^sTx*S(L~gx5b)eI#TO;TJM!ZZ@}wiE2`^1?kya#E*PR*5D*lZ;_CBeGSfUfezu0
zNA56r{)#RitOg?)eUh|14z==q3jF;^|!XpMz)jxg}h0q)azXwF2h<1if&#>H@G
zZMYvr+&GwxlhtI(7E+CDJl~yP&gY7jik1o+_?BFWcl_+8iPuO0PM+bw?QQts(L7qe
z6h!N$jhcsVhiP|c4NQmd5;FaSFixt|%hhDg7IKZOw|*oN933<=*04jWPw7JA#iN5+
z7;{4~?qxY|NV4qORs)V2*PV-uRgz=2FvgU-I3B6BJHHj+FwCOkLp34ooa?7+iFCT4
zDg%qCLQZLGg!^wc(uIh&a@5WAPm<)A7J^zeEV$1wq
z6so(dx+^fWCw9yQp|&f!lB2%hs4EwVHN$QNJ>KGlQJ6jYc{n@5fn({{huL-<$vd

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..042b9461278a49fcd5195f9ff743ea29d5d0c701
GIT binary patch
literal 15064
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
NR!gPjf|HKse*t}DHP8S6

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/platformdirs/android.py b/myenv/Lib/site-packages/pip/_vendor/platformdirs/android.py
new file mode 100644
index 0000000..afd3141
--- /dev/null
+++ b/myenv/Lib/site-packages/pip/_vendor/platformdirs/android.py
@@ -0,0 +1,249 @@
+"""Android."""
+
+from __future__ import annotations
+
+import os
+import re
+import sys
+from functools import lru_cache
+from typing import TYPE_CHECKING, cast
+
+from .api import PlatformDirsABC
+
+
+class Android(PlatformDirsABC):
+    """
+    Follows the guidance `from here `_.
+
+    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/myenv/Lib/site-packages/pip/_vendor/platformdirs/api.py b/myenv/Lib/site-packages/pip/_vendor/platformdirs/api.py
new file mode 100644
index 0000000..c50caa6
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/platformdirs/macos.py b/myenv/Lib/site-packages/pip/_vendor/platformdirs/macos.py
new file mode 100644
index 0000000..eb1ba5d
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/platformdirs/py.typed b/myenv/Lib/site-packages/pip/_vendor/platformdirs/py.typed
new file mode 100644
index 0000000..e69de29
diff --git a/myenv/Lib/site-packages/pip/_vendor/platformdirs/unix.py b/myenv/Lib/site-packages/pip/_vendor/platformdirs/unix.py
new file mode 100644
index 0000000..9500ade
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/platformdirs/version.py b/myenv/Lib/site-packages/pip/_vendor/platformdirs/version.py
new file mode 100644
index 0000000..6483ddc
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/platformdirs/windows.py b/myenv/Lib/site-packages/pip/_vendor/platformdirs/windows.py
new file mode 100644
index 0000000..d7bc960
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/__init__.py b/myenv/Lib/site-packages/pip/_vendor/pygments/__init__.py
new file mode 100644
index 0000000..60ae9bb
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/__main__.py b/myenv/Lib/site-packages/pip/_vendor/pygments/__main__.py
new file mode 100644
index 0000000..dcc6e5a
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..2e72f97de40adf549518a5018419229f4d976e19
GIT binary patch
literal 3516
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

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5d96118e9d162441fdc3275d53729725e5233418
GIT binary patch
literal 26612
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%0DPnLimFUCEKX_pa$vsV3WpE
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

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..2baaca5337cab148b1e283032ea731d6e8654b26
GIT binary patch
literal 2656
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
A@Bjb+

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..c2f5611662d210e76f48dbe4a6c91c55abbaf2c2
GIT binary patch
literal 4748
zcmb7IU1%KF6`t82?ds36EL)LdC%(u|Z}uKduoV0L!q?(SH#
zGn;$wNM4}^wHT_Fv}vFq3WX|9N$`vERF{I^OJ5|bP%*e*D5d1hv0D1tbME}?%2ppb
zuvhbQ?z!il^PTUUt3UVm_b6~J{OL^n?LkHPJ3d5LD!kdd2{-GCsgx8`H50a4QsHmX
zPBfCGq>ArScB+vsrQtqZQ%hZD*8`=LNhmiIGxGr6Jxm0eO4(K-mtB6`L*Qz*Y7OcL
zp0B#Bp$kEoeEs1oSC4%EuFffmMTueSoacj21;cH&m{qHb0-1_#$>jO-?@UadpZqqd
zw1}uv^8Ii@BBU`2<~9X958^WyEt_hUmgeXU>UX~%ZO%{wAIK3sn}pxqWf;~K
z5r11zMCdC;iM+;oMOw~+VMTcu$`;|isC=Q$=8}Go#Vv;m-7%=2BF&t-*
zf8U33sxW_tQ^x0Yo8G7Mw;g(&S&MXjYh!D3>&vaj+dtiUwDkwF{p0PQY(3ukAni>4nTfZIpOXiKI17zda&cN7Kc5Juz@aps)d{+z{qAPOG
zUIE^$D^vk6Dy4*}mXc%9-YBvF1
zHU+OaHN;*cPv+{BQ@N7PDB)JavUMi412henG0K~+W8#E@1b3nQVdTp^MvLXAaV!Tq
z;sry)@_C|r!i^0n6bJ%P3PZ9L9Cu<-w>?@2Qsw}0-L@db`2R7ZYS|PQ`JZ!s=z7G^
z9nyqcC6FVQ>wtebS)i>YmzhLoHBWLt+YbO^<{83eK~7$??RL_`T*IJEfgS}isOa1>
zBDLYZ%4G@pa^NMT8Sp!V5^@sP@Hicp7F8f-7-4ibHEkDd&QsH8UTHae`}9lNgTHmA902f`9I?byPtDv7p5U@3?kxEFUM1>sH?QJR3mrN@LD
z8)4`Y5pqIgbjQ+TWAVDwFk}9YrY3x(+xY(iqK+tXN_eR5~YC
zg6snR3WJUbHBOf5mQg1S7q*2jCTwc~Br5kHS{P2^xFVjxlJGeu
z695ZxJ7Ps5^aY5U&MKB*I%|dWr`v5V9gmgij)_5S0Smif$N{S3@?o!*}ctA4BJXS6OyK%LNa^bPfKF(
z6+au{ZZ?&4LRMtQ;VnnZ5yB9>epb^g#}b;he5B3K(Yqo_ufedY{HsqHKE3gs&n|s>>GP#W
z-8-k>-8nY3minmY=~1%r+UIX?zO{4oB0P8R9y_^y_mjKuZgl6^1WN3VocdkwZ+bVr
zx0%`*x$tD<%A=$3x_`HK;NvSlyRvoi{C4m8XD3guUH@n%5}nx@nS3%bwQ2so@nu5_
zzxL)@>KA>iAB-{LoPh_taOZoNBF9TJ@tIZ)3%9_xDXHtePp&S+Mu!aCTnpQPv>uc1Z
z!B(IIn6Wa*n|56_X%o6rH27@5)z~bXfHrFxt2i}uP>eK=-3k;7$%DjgLti?=Z8R{Y
zZ1B*2vtg~!<(RFIB|&R|lgj0ZV!2ETP~Zw>DA}k17~P3>N-i4>6Q8e^+lebD%58%_
zcyL04!h;Ox)In$9s*aSyj`|BFmte2Mjh_Ss`>=ngeLR6M^W~8^3iOm=v9u!s-oO
z0tiRYG6@hX2j;`pO@4ri9Tsa+1_HwhUhcqn?DL3YCFHPsW3El=?h>K*;k0E3*bZ&P
z69b6g`GlJ7fPaO~&7}hF>%tDk;C@$d(DDxlCTgA|sg|0#WPpp_j(z%>&_s@^psfs8
zvMZRod^ol?Jft&_;&^5SWE@iZ4u5>*=U1K$U-)%(z41w7AW$%CphLTUf@I0xi>eq>^n%X<6sE7WcO#V&z?z7(EwTact
Ui>{UA`Ci;
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%0Ad(U^-DEMb$|#-4K7=$S&u
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
Pjdtw*2LVrv$NK*O`)a5a

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d8472332de4e66e536f57a2b33ee8ac8c1f323c7
GIT binary patch
literal 1587
zcmZV;OKclObY^#LZ*1pJLt_PL1Wn}))CmzFVYP|UBod&=L3PT(b!x4>V`rW9dONfE
z*xDc$6*VE15^+hm<=85haswgtj<`4km9WYIiBk?p2A4C;uDwZBp0w}1nfK=X-~QCu
z83YWLf4s8vClA0M&cOqr%{1>aW)CPJ1r(@o8cacjFTfPX0St?NPyK=_0=pM4&K`Hj
zwYZc|@jU=3zYP
zV!8AVq8Ov8+Y2Af-%7?@-*HXNVV&YQx|y75$>%d2F~P3xs=JSPJ_
z>)41Z%9~8lGs#$5(OcM*o!2)|6y3QSPt(P>krd29uL+E@M!R2gfiZi)JQo!m$tz%i
z!}i+^XhG6z!J_XK6?Rmhro`5H;~Ao^;&lC>{~zEPX{Eg+tB_w1}~t?l01uGYoD1`ouJCesDE
z_OLrVa4P21w)rzdd%yz4m;1r)95`$du)$fJ!fG7?3Rh+8slYG!K_;64i~Rs>@aB1!
zEZ(d7hF}R4KI*lE90x%X2*5n=k_Fk?!o&6}W@VUJ@mW4I&~^wc&a<=3qGopbUh=_N
zKF7PK(f0J#g{KNH3Dvovv%blkth?*e8g6$LyfRZH>k1;+Tp{|!+^TuDrWmP|>8|KX
zYq`$;Wk8$+5|UsCsiCQ+(+=wP!}bwbFJPP3urB#+p82vnO7eQfRk3|7A~?k6nLit<
z)cH#}0U|^~j3rJnTr|WOT4AUL8Y1ZI*-30Aj>AK>*^{12yV-qdKXNej&Co%%J`nw-
zN7@ulyRIB89CwXuveE83=^yy&lSTmaj=T^-SO4yZ``LpxpLY&#!jn+=5#4=%yShDb
z+82F%>G8cMmyi3#H>d6HzLVD@Uk4id_-VpzxXh9Kh+HI-MzKY-(em`UWB`0
HE7Jb}uw$3=

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..757220dace4d5be9481a8ff748547ae9d68ae9e3
GIT binary patch
literal 2636
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

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d3ad5f5473eb7290c370a12d50cc534c86c5e0de
GIT binary patch
literal 4784
zcmdT|O>7&-72YLxC6b~g*OvbxrJWS^DyA~7n5r4G)p0eZ
zyswz?Yl^9{*!_6GHy)RxI*fMQkG00MS}fB^HRz@Yv`Vd5W{xMaqCg#oaXENpLrclg
zv63Z-ZRI)THDZ-3Hj^s}C7c!6EXh;BOwy8*C8KVc5t};2DlIZ0CD_(9BOg*=u?gjj
zFe+-qb4i7A!AQR9krJI@MBvJ4R=ezSQxLC2J-OOs73P@4bzq2*g6nu}*2|JptU#-<
z+?|AR(9rS@0x4HqA*{U3P`=G(r34g3rmDgt`5LJT%P9uRS8d7(o2_sLYd}8mGY&@u
zZDA|9G^oo%};2Qx|TbvC(k6v`}(-t>ms$_`mISKtpiqoDFO%Mj224Z5fqGuI>V_0
z_wu*}!*CDa2jB>#Oua&hOjezO2e%&_U?ijY3Bzz`nHh$kGK{ioR&D%F8^+J7)Najm
z8iwf>4C9`%ihBQh2FU55iH~3}F+tIg6BitIhFddiqVYxJLF22&*UP_dJZwB7%fDRy
zwDEQ0FB8XXnx{sEQ`mo+PLylRnVC3mtH(5r#dA6
zIugaTZfd~WX+pG*C(I6@NwX7Z%1i+5swFdBe&=WqVlTQf*+ZkqW+^b22z%()^`A>c
z5fg_1k7!x?@euaMz_0ugd`PlLlu-0b>rL
zR1?ge^fgqQOMk>G1C@9e{90u9t}4$`%8otr+Gok9ecxa5
zK7Vgs`+H({bI&U<)ZN_P3qOhG4(z3xy}OaGDcMuaJ$>`qZ@Z=27eY7zi3*+)^;kU)
z1PrfC!SBWfqmi-ObJG)wGOA?MdNw!4t1O3jgP_uizX)t_Yz+=&Gcmp$r10+nxu^2o
z@FP&A)pFC6w
z+7prz(2>ROG$EDAE~~AMqkzor?Ul%^_FHLZLl|Um+Z9E_Y5n0X#38
z+XHh`TTsgS2K?RYN3aK@m>@Q^aDQp4TakYcS1NXmED?q|ObjD@EIS3iotwK1$;!KtR;DbLv)`9dEt;N(#ON^R9P678P
znIwM|bPm88?d-=m^E+G6B}0YpM1~$D=sNde(rf(A5D(G#VIb)cZH4Ljme7M__ibPh
zIUo>1X(he&`n$h*_vyC2TZbFzSDRhimiq5xZ)cag4m~|^=#Nu>n0m15VgEO8K6>-<
zfwS{xu8%B?EWNXw-q!^0yRvX)skq#8;7QNGa?ilsu`e&(yYx`|Ch;ioxM#SL7=FTwvoubc=#w1
z|MdS8iBRHiY>=6v*#8c(x=B=mlx-V#X=BANVso*pYE7MsP3_o(t2G2#Vd{_#I1wy1
zv=G;TGZ{_+XJ7c;{$0Zv0eK?K;V)e-*^wic%fiB_
z49GzS#J7<=cL1L90TeteQ2mN)!3&8)odQ=UA2QLcT?VNwy$3)j+*~9sQXi9Oh|BE|
z{_$9*djo*-*TArxAi+W-Ku>g}HiY`R)SIId`f-r#>qYKXE19^2R{jQ#t7U=61)2vn
ziYCDRZA`%4IhYr}0|J=P`<;QcclY84H$RZ|3Se`Hw@=cU<#gt5|CgD2nFnKk{^YAq
z9;Z*vtIe+T{CmyqSoYl6b$i$6SPx8c$GlzbRBr|mMG8qY8G+yFo@!Nfvl}&67bwKkgHwR
zg(FyC3ry}%*Cf){lMBfk`!*}lA`Hy~FZ>q+Rw(ebv29kOy#%Y2&7Lij@j664rk;^{
z>coCQ_M3zI&6DuxOBzN2{9PCZ$4b6ky}fu^U||)$zK9J*3b0a^a#xjRPhT@I^ON*G
z%&X8jw{Q-Ao}~9Kr}sYV)Lu(HSG29EXNs0gN$cSSV|vP@104{gIASu#QjEWX1gi)?
zQQ>ZdajzESwf#6DEtADBtR*=@p%f~;nxhFML0A+&0&-1x9@F*2YIj=SyRtW?4?OQs
zy0+i=;Zpog*X^#yss5{{SG1IVN?qBl>4Pij9eVFdHm2`dP3U@{u9TP21LZIp{q)7E
z<5^{PmUEW}wT|3)y)u5{MDVIU$*~~ENhoBSs;v@5O?}&;sfiouZx#6Y
PPxnt%HMOE3m8beI#i>b8

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d52b2bf921c8801960b898740baecc07cd2151f7
GIT binary patch
literal 12126
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%0AVP`Usesoy`o^mHRsZ0b8kp>z
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
WH6p)X|Cu?&^s0&fMDRlo*8c%pHm?Ez

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ca09198c75c768af63ee4070b79ee39a3848daed
GIT binary patch
literal 8217
zcmai2O>h)Pmagiq?ymk(x1<*0#~^9|8-zh%0k%ijve6F+5R#09e`JlD>dsWFTK%_G
z)k0!~r{y5lVuxKcYsVt*9!8gm7>6&O*u&1oM$CO
z;l|q$nfc!LUcP*p@8wVRpPQN@3jAjO^T^EgJ&N*Qlo7wZ9`URztSAo^q)aM4<&uKb
zy9)AQ^&3BzPx^cc_I=|iPx`SxrwbFZoz$?FV`E8-Qj-DDkL|=59t1qz01pA)+yK`B
zZ*72w0dH%7M*wecfJbpO2P^UXZ!!k>zUNW!zX|N@Z-B=E?`VK005=-o&43?jfVW^+
z(UiB=ih^Un)z=Hd=&2^r3;FLVldVXDI%z4`j{;w)SYven1%VEt5Y!>0L#?AQ)L|5%
zb?%t3AzKt>lH(E)6pAs)3Bk)2H8Dw-L6VC~P%}s(sD;+KvjUYZ
zYGsnwB_b%4e32yA$hWpHR9LS_?oH8OwrCf#)M$O$nWRVR3JUFJlD7meTeOEsdL<$#
zw3kWV6})WGz86VyeNszM=q08-Ab8oL{Y-LEB7#B(n50oWJD8-wenSVDWJuVMEi#zo
zibMp3e)b|s!<9euLhWH;QMTyt3$;h2mY~p)7iu?J)0e+ce@8PUie7C^8%GE>SL1I5)l;YXOcz1%N7kV$)^$#6dGibMzOib
zBvqj)TXcy=1-GCf+>-lD;(|h#0lzCa*`h0e$0aW)bQSQw6`X9*FyPCQ7Zkb%_}>Xm
zwrB+K`;r$F8U_3x1SeZG2Kb8P1%=)N{2v7;TXY@pFC{N1G;YOyr%qm7nCQH5`_B;r
ze&vO10T*4T%Pq~~B7;8N@ry95&vdMe!E_9Fp^P2FEF#05!G_}kW!k_{15Ov$@5z+P
z3$~S=aeIt@K^onsPrrV$`*inNBfY>nk9ngTE;b7%3l>wu;
z$LJd$;PTw-3PP=;5Y%C$LmgRAJHsTBnxK=KfC-Oegjs5xzIJGNMz_^NC9B*~7nM7{
zMczgE)sap=37X|HE+P^v
zn>K`ygls&AZ3lx$b8vo|_|uhXq7_RBJJeZ-_W#mt-rqBI!vV!9Gmq!-)Myb8*w!4L
zT3=iLcKr|Qf7J&?guJQs2IOV+M-fosF+QpCrIOMzoRaL3Qo0t8y
zL~>cH#aq|o9kp2E!IgVgR@_Ii{k7!ohv$EDetBRspd^wT@s7=)5{^BH-izLEswG;N
zBhSEuvLi-xjYCkL9fIni;?|=g)^brv)v*P|rmNoRBYp?FM0YA_mgb#48@??RqM3Hq
zai~edu;~p&^i;|!T5c+JJGpI60;CUgCkjU
zP+5fFR+M?wIj(MVcTp9ov#2ym9NNQfp^1SMx1KtSis-cu?9RgTaNL_BWCxuZ38zw-
zyy-Zp6!GVAQOwjoXXbZIGzNO5B5brGsNUYaW3o~}zc3uS;UJEQn*o0~@)PS*3qs>Iu`5RATTybfVuph;zReE2EwY%eUY53WXN?{w*c)<_WTWR#U
zn5%#6a6MY@*!;kyZq&bz!!V%}Xww129IF+*L
z=p+OwNZG8mDt}G1
zt{z@Bzk21jU0-!Q+IRd(a?j&r=SH&g_eZ|cDsLqs#s$
zdSXRe$*i7vq#vy5u?J1}njY(WH}t)$hac%3wOxCc{r4kmxAIWecOML>L1A0rT_E6F
z9?nxpYo7{V@~|Oj>!*Q1zD9wU$xd}(NwpCYU`IDmyNJ@M5-nGHbua8>ypj>qVaH_D5Kvgr)O&ejUJPJ4bUwz5Q7Pu0-QHb}M$#n6N9@u%?ZhH(h!>
z-n?m8@W?T|i@+#RNeLc2_RX8#8wbx@j_a_8NE$A|Tkr^Sj7+IeHeD-i!ELwDWmFt2
zEE-nP@C+Em(k=eL@d5-Jo}I}7rm!PM&6bm5w`j_9#eM_kaRZ7&!%V@j-LWpKH7
zUE9kuWBb0UUorFU><0&Aou;pxT>bD88n7$tSJZ&=
z3-D^ku}Ke2@36h2-f!067^R1vc?aBN0q8Fk;oaiW#fF2fn1zLMOTe*Nv)5)%4}VqC
zaP{`~dU~)dd}WRu9cLZ821=E59v|&wW~nke1Gd@EJpv&V(?l1^cpZ<
z?Ux~fodFWD9Jt%z8K1#?{~ZCG?OhV`ZU%T#s*W86oM^C^g`GD`lE%G7pa$Yl)yDJYh{Q&W|zQM&hHiG+r*jUf)y4hYMoJPBOKSv(Kx2xlK1XndiN2H4+6=W;P$GF{>y0)-Im
zkp+X=aH*Ij{?Uv}v=3-Rg4axY76kf`>CB|zkRah}6GO7{yJ6-z_*{?^!e?j+f@zT1`ksAQq@Q;9DlI?-u`N^rZ>^g
z!fN1qL4bO+`N7G1C##`aDCYHxBs?VC{Gj7r2lT5G@#N$9!HxLAYP1IZdhhjC^_o!M
zW@}Sd5^dGM-DoYb3!0eMYz2erzOB~XYV&5#$7-vuriItKH~o}^&H>7V7^5qJ#M+t7
zFk>Q0Ai8#LGs>8l5{LlP#F#i`&TJ+a)2akwz$6*d2FzovZ9{8YJG;4yLG29My`k*}
zXg7oQFlg6?whN%W4B7|K=Oara0KCM2{o5@aU{D9u8D1I&or4TGM14QAd6+RrfblH6
z%z#%Yz}1g3;Ft$I*0?uMI~jbO!dI5AfZ10WaDoEYmaYMCk^x;5;Le?5z-bCxUAhVy
zuQ8xoYMf!fS!v@O177z4G5F>i41QDU{hR?k6yV;RXTVz&;Df)-fL^Kb4g=m*DKfM)
z1nyi=8PvxhK8Jn|4G5_2!5|l0l!84Q+8!`+i3^6LVBdze4+NLF;EELRmE5|@1tTD!
z$uP>w?D#~?o1Ee_3Z(^}xrZ3c1Af61Xm0o4P2hYLR4*8Nu;
z>hmdqCJ0BrkEP83WxdoNj7c1))ctV|k}Y2?OEyheNlDaD9?Krj+OlJIytYPT+2a@twVW0KQKYFR
z)rTZ%X>ZnjpbAxqqkuZHvVgkpyDGD;jA-GaIb^c|kZg9-;(M?Bhy5bBg$>SbtRpsJ
z_xI31H%XBaWy{{37z6R;d-<+>SHAbX-}il4kH70(Z=b^7pFQ@mul>#cIW;vFH^+Z(
zJ@UL1x^-%5Wol+>dTQpx^of~Urf-=!Iel{G*6CYk-ZcHDnKw_rdFCzCZ<%@P^jl}%
zHvP7lw@<%)<{i`Tn0e>)J7?ZC{jQmJPrrNSJ=5=*dGGXlXWlpczM1z=zklWf(;t}m
ziRqu1`N`>@ocZAN2WLJs{h^tkn*OPopPv5dnGa8Yc;;uOe`e-qr+;?l=ca#d=I5t>
ze&!dZe_`g-^r`!%W7P(;`-5uM%JUU(okH8i=>Lnu@jrRJZb##P
z;kc$Z-Pt>i`}Ks#`5Uvh9p7VwK7-!8Yv!&89=VzR*oU+qo4sxJE>WxF9LMhTzrtL5
zt!Ld8otpXV?7xbhocT5N*5lMCrhIoD*7{}7p8m+}M;`d|<7eG;XKu_CjKOQCxG_(V
z;x%hA^Dk#V61@dAIC--MuaolEF&F>h=F^XTXvG`IJ^RU<<-hvfdgQi8Zu{uer>D-H
z_|`2arvBs93H%37_h`AkKA@W{PxeC{wiL)x1Yk_!;jqe_1QD$&)sq1
z%>C!ipS}OgeTTt+@qK@9KMeoUVUlyF9{TF3(+@s)>QBzxfA2#xv#0L;+Uc{W?>#?z
z_Ik{zduPv{KYjn1Q}>=eKYQOpXCJxaF!P_Bo1HoJ)rZcW`ugef_kInJI)x-hMM$T=
zb^7e=sRvJ=x$na1`)1GGaq5pQoH=#=p;KpP@0&d{dlm)ValH!v_RP75?>~!@zVgW7
zbI(8W@a(yJ?maszl05v#sjr@W=e{J^EA3k*d89}EWKKsxEv-h4q%Ky20AA0za
zv-jWkwez1l_4#A(sXIUQsn1Gxe(KJDA&M2bzj)L!r_Rrw{`x0QotvFK_1k~)$N%HM
z`=c*iZ_MW&y#L;{M;K6fuy#2yk#BfW$
z@V`nIwG00l-izfcvUJ69C3a1HK0uP|G%?TQIf=;uCKupTm?a@GONv=CaH^BOIWY}s
zV)hRd>+nFa`46IvgoI1-Ky@@FTzW4hWD6)Ey_B$+7yiS0r>36Jr6-IhW$8)VlXFk{
zpIqOsJ-s45z52|Y^o;MB;InS&*}$_!>DkJ&ZRuI_iu(NgU(HE><@;Vk`kwhhUwUCc
z5*3Lgsw82OwU|WKRI;X#wW37UHL~6&>m!LI7f8lVGJc6<=1E3@gMd8A)Jdj^n>NYx
z;Pgq>A(5<;WIb@aBpZMeBH2|qQId_5Yzn?K$(j<$$s}hdxjFdeNe(6E7Dz5na&?kx
zkzAMLP++c4azm20NhI$id6b#=lKecJAjvPlStWUu$aJ5!ETCNwEP(CncGb?4*P?mgY$bDM|~ZlqaP+
zDYZxmrIh-ljP{kCq>Q?hy`+rN%FCpT_LZZg94BQISWc6&E|H3bRP3aJ_Er3(qL4}m
zzEx6*l8Q`AJJ5Z3k(4NINKz_9AH`SvyTS
zvP3!-(y@~cO6Y`1r$IUc(!s>(n565HNY_KU=!)(<=`NG*3hAN)x@poyy}EVMZA(O#
ziH@e}BVu3<_GHqtksf-x=OjH3=^=B^M|!AdZ;|v?NiRWqDbmZ3UJgNd(kqc(kM!`w
zo=N%+(sz+Q688h7AAu7keLS&mlA)Un%MuyZ$Y_;}hQ#y}6J2GR)aIl%w?u6|YMX}>
zpdJtPz~_N)g?hr&6UU84y&mdCus1-xb?WWF*QH*Q&ROW3Q=)S&I=4c73iX8~>RX}y
zs6_oS>L0=}>3l?@^BN5xSD;G+BRD3Fs1l86G-^mRYSNgW#+D@-(`c*<$E50#L{*Kd
zWvbSx+QN-VHB?2@s8)berCJY;NfQB@K=}!cuA!(kldcyfx?ZJ8JS}O`ltxn}iKePF
zHGpH%v_+z68%RB5^m$D|n~$y909E75F#W>NdBN^>!Z=2V*3Xddmzk7xnWg#az!
zaRrSQP(q(M&$)qS+#k!T}88+|wf+C;B6
z1GI@&G)>y=(E++{utEoDhv@TRfDTvbFhYkhI*ijH`fq5`QJb0$YNDIW
zWopK#S%a@mO$3|Fl4h0$mewY-2AEZqm{nsoSz@*Tv(@34%;}SuGr)pbi3LrjU~yJ7
zR&GhG+-7)bS!IP)J*;Z7T9wr`)uSshNX#%GIF9KbQh7I|!4k;c~5v0awN
zcKg^~8#@DIXI~mS&9N&bja}8TTN}@rf8FUwf886CcV&yx{28c#1tJRRrhAsmxu=Xn<4
zS(Rr^p6g0HXL2mUJRjhBgy*BYXp?v`!i$J2$-IPzm)yJ*fD`1U6*w9%WqGN}%NdE6
ztGrr~cohz+P&HqSr=%C-)fY9F^rGf{Q5(Q9C;5sr$yX=Eh%_mh6BIcqElf(QaAK2E
zcTyToO6H_&os=Dus#Tg)7bb04nzRFxPEeY3lu6euO}f=dcLc|r=qN_lCdT5#$WDxs
zG%>0Zqdn;lrAdD@8OW27i9OdcF_FvkOiYwvDiafrGs6>8g`-W(?8L0Xr%y~2YMKW@
z*$2vk`k>K4&@wOK5&*@82PtfQcx>?4ZSdHgpqB7-4uVdkbH;Gv)Ie+SxDetR!Q(*&
zuL_SBQF97BbHXza9z^+4@c2pxLH`^)e&q6t$M_L7A3q2N?6?WIKq28l=z^%u0*Y8D
z2v7AOxVQw*;tEIlu(JGl>$CO;AVN^bUe4(G4k7J=GH)WJ=5Mr15}^
z4o?Q=-PHdK+TE*?>bry&wI;K5dj
zi*XRd%76=cvn5(&Xdn}wKGF
zse(|Tf*GaQ+XspR{h&Ay?LbQu2SQyU116H6f6NC;?{9cf#1tzBA
z7kT_4(5mpnK$u>NKMg7i51!^1wZt@4ln4k(6wDSyLBOILo<$V1h^|tW5fZ{cDWUFx
zvVtkCU~(#9@$fLxghiUL1`-8_5f#DQQ6lg}z3@cgiACXw;SsTt@ZjMpCYpkotR(Ov
zDC^pRlEfG)Nen_tL}d|`7uCR2QVMvpl!6146dptsG2Io+1*L`#t)X6ZybwwqY3rgE
zbv&VgiK{d)x{Vx2j8hZoTNs2Eda5M?S_TLVe+y4-i-)yQKwGq@t${Kiba@AX9dv&O
z6I$sYq9X>b4^Lmz0yAj=+{M8Hx^h9Og3zxE=*ER*RC@u@i@~aNu!QKPFy>7Ntq$do
zGn9h|FGwhl@lLwHj{Wwb9;MpQWhS_h$%L*>CisDgHebR_Aa
zlS7#4p&^DQG(_4Vre0_?55g-LGVv&LU3kocRjnc60#6a$9zjUdj?s@gss~ZA-bK;3
z(K_a36kQpuV@-+Tg^PlHz$E}egQJZo2-7Nt?5YhlRq=kPcD&`PJ$InG@am{|3sev4
zu3{xs=dcE=nBS^@1s*>_{OAW2J)+OFj_tFCqUD5-g#-Wd{hotuA{&%7Gfm;3kqiP&FSsn*Ts82u~pbN`TPy
zD%ug3T_B8fT#kU&L1_?rB97jQC(*U>q!WY|#FGd~qXzMG0E8}yr&SP|5UzAe3*Qd}9bgMS3W$hebc$L+V}%Q~-$w_p2bxi8%T|lkt{na`iy7
zV!P6;8VEC3v(^qYn+ytqFx(o3TeJJ&u?G$`hscEaqdD;gYOeHw=0-y_H=^8lg62kI
z59W{NL5K&dyXHZ`9t?|yDWOHtFfEFZsK_2gInkc*APTHEF7Rj=7Y)OpB`|ba0_CjX
zt<~0q2feSYA^W-rSx3k^-XRSmq@_gS6hczCN!M|cZh)`=XlVn~KhQFmY+9xY63@&a
zT~^dRi%dDJMjGBy4UEx&hTbVeG4uu0s~E%h7O_7U6Ic|B3GJZN!|PS*RSzmv@D)|m
zw3>?pEs$l9Rd}?Q5>^==oB2}0Rg+$-n&wL;*cx2S{~CY?7xRKZ>HaqvY*o^HsRkFZ
z!~ZJ7gV^DP_apYjge<*SHSd10Ccjv-NG~GOoq)toOW(QJ{;no{xAR?H`mVWQ*|2Rm
zHe4H?jkyi~MqoqPSln3NSlI|~L^sq8ZDVaCxsl$;Zsa$L8|97aMt!5X(cb7v8~R3X
zW3VyWlsB!L_D$!eTiWz&&TaZP1Dnd`;^y+^%4T>ox~Xnzn`@iN&Gcq=Grw8fEN@mf
z>zmEZ_GWjpw>j7xNn7%kZOgIc-ttLX{;h?r<*l%^72S$&t!*W@(p$N$g0xlKDsR=c
zT3ekhL)z+X4W%t}+qv!8_HEB^2e%itm$pOOtJ{(7n6#~KYujtv$?f!Zc00da+%9id
zrR~~wbGyB5Z1=Z^+vbjC$F}3xaqW0^=63u$fgNRMac6mFWhcB7-BEY6owc3hPI@Q1
zliw-sly|B-^_`})W9$reOzAQCG3#Tl$2^bCJ?4KbApPayUoK03S$(4ZMDvO66MgB4
z;gi89OVXwJOF`+9a%ow*v~nqYDSAo0q+MFOl)RL_l)aR{RJ>HaRFy6@FSRe}m-^DB
z!BaKqvUYjxa`JNea`tlma`AHca`kfka`STga`&=vxqo?h+1$14&h7el1G~!Z;_mY9
z%5Hc!x~uMLyKB42-SlpDH@{olE$>!$>$}a}_HK9A*zNBQcg;QPo_)``=ic+~`S#|e
zy}+Kbx45^wx3U-Bi|(m=+TPk;axcA?-OKM4_sV!##7~vTxgW
z?7Q|o`*ZvL{lLDmzqr4=zp@|RkM67c+Wy*pazDMF-OukA_sjd$rxVgMZfXnSpx&c4
z95rnw4d9F!7}AD}Q>B}>;IxXgjWck&OWQaRcOq1`P~Ap#2i09v_fUO~>VB#RsIE|b
zk?PA-U!i)K>QSnzRM)7!M)f4s(^St=Jx}!_)yq_`QoT;~Ce_N}wC|vO7wvm!e~$M3
zv>%{-h4vR|f0_1IXg^H*QQB8&U!(ms+E3Dcn)b7_pQrsI?U!l4O8a%%Z_<97_Pexi
z(0-rxhqMn|VBn$y4Ax+o4ia#(bbv$ppi74srJ;ik5jR|+L&OcUbcnd&kd6>Ha?ugu
zMk^G|107}Q2yvqp9RbrAb?InCO)F0Oc4`78FkKW!H)<|Y9H*(dLQUi`v(#+BX;Bk-
z%r3KgnSEYj_5ialGJBQTTg+}SJ5JvAA#*q-=I}7bJagJvttPR0oYmJ@Jq=%m)pM*~
zVD%EK*IB)Zpcbol;PhF;!WuT#aIl7pH9V{_#~Oat2(X628jGy4%o;1K5oV1jYpATD
zvBnx}Bv~WP8d=uJvqq6M%B)dkjXG;IS)ehYuZ@T!J01C^swd}
zYx-F;z?uqcF0$q_Yp$?nm^GuUsj?>GRGr+9trS>!Xt}3vdkkZJQC)SD32w1EX`wC9?SDsk;lqBR+V_H
z&SOm;Yx7u_#|$3p^VpEbOs-nEYU8Sdt1hm3xH`vGKUV`>Rk*sy)n%@(a5c=;C|6ak
zYFu68YLcsIu4cKK=W3CwWv*7aT9>%0bG66S0at;5Sa{sV;|?Bo@wku2=XqS=@kNQp
zmw9}J$HP1x<#CnAH6CB%@g$F@c|6PGc^$&JZ^BU$4fQf7!h7hz)ABm?kWH&
zuv3!FXA>jePxPUXEx)22k4tK!-^+8~X)kPZ!9HEM{lDY^kUR^@S61V|%
zsSCCfOpdx-JWxY|0ST^h^nvD_a6A{<-eW7|L)+eTbo=8Hhc7KeP*$HOL%#3UY3
zc?_Ud4D+tW<8H1YfoAY*fM+v2U*koU<21vIEnY_IvNjpkCZo7C8DXT$81hirhNI9T
zJR$^36fSEQ&b$-CqQb@AR)1TTwrzj8^lVUiw(x9KdbV*TAzd+_vq;Z*pQ}jERiCR%
z*A}lWU#m#hs@HnbwZS#>`QY;l((~27@=M=Kf3N<6S9+m9z?zZ7GFgMOwo2B3eyg%nUiAx8=*p->|QBq=mW0VNa+
zQW%nAkQC9p;u&~M|JCKq#=_A(l>mhf%J_aX&`+gM;b`qXcC;?
zNW&nFA!)`*6Iq&Tq*;g4AT4BT`A7@dT0zo6wpNd{hNL}D+Dnkkgh(50YOj$tggtGO
zbdbIiA{|IXI(5=%!s(OFkaT5;VVp#_K>kuAdIL_A7zi{Rq=&$smGtbS2RTm9O?qC^
z^OGLR@2!v?dZee3-Wr@F>7_|8OM0kxuSj|jv-E1DhthgY(i@UK3hdiSAHChz$Ur98
z{K?Qoh7hI=OJwAh$jC==zMyh}$|kj7FSjgH3xo_7m0H%QB@JJOS|Dz))Tjjl3#)}%
z=P5vP>Ty#KgbN-&^&p!kL_Mq2gPb0fdcXyE-PDU{ub+Am?X6KScmi*mda+t~M|4i6
zbKoQ99CQxCh`A7*Ta~CUNPP=%mZ=YS{s^7NbLImy2)RkPM8j1$klx@f5}^@1BwC=+
zIvkzGkTT|@F~}@p3XLHy2H6b)RfVd!Q%h7uE7Tf|BQV~iT8t(TzGkIsb~rj+NBFv(
zuDjsm=z4(yJEh4s1uR8VahgUe(q)=PV7f&!2+R~|26tHx#aWT&LNu3vsAh@cO`xSF
zh2WBw=V-+y(Mp11rqW84LgGlPX<9>uT9VfNSUCf}_yK5PpC$YD2UEj-nG{9Z0Y{8PX#}dbj1zv3Mk_D0#Cog&6%yY=Ac`3w8
zh%RM#DF>&*t9W2_onw4oj3-}=*C1MPzNpQ?=}$0`Ci(INVBe$|o|M!{Ndx1On_!Wg
zlsc1=4reeajV9Q$CS}W{Y=dK;00Ep->XRzCoYrsxG4P}Vq00iqEUpQpxsz^xV!$z4
z6Qcv^%3w0gfDx)rhIQI7W;WHg$9X`h&`iRpzCn3%|Ju1riwY0Ma8DcB@~GT?m~
zpiWSR+&~sglnhaU4Avtk4?(~bgBCvs97oWi9s~hs90YAh;}sq+%JE`r4bBB2ED<3-
zpzuC`Izhh-0#g(8Lula_+5K&ZPDGk{lrt}K1#BQdIKcooH$|iYDj3AP!UYnaC2%*v
z<>WzdRfNPK_`ti3%Q8r0SCJ+mLJ|&;8w4&Wn80HazkId_j;X%ZD^R@TZEe1_J)5_?jR9Yl;uxybqc<
zex&t72Bi4c4iv0GxIq4)0NYg*0Qn0d1fn%%5!|h^h{i7h;tz??Pz9n2A^%v39w=hM
zD62>pM#CcFCQ>+1uwCGSW{OFpB+xP-h6+Ygfqo1w=#3mCEqT--4=!9O*g)Xsl>+1r
z1+-L*qf*o%gbDP?Jq`&0Ml?FtKZuG3N9zTU2&oSs3lJd!qLUR>J&Esxf_sj#f=5f
z5@-d4XBtruV0Z}s;)ZyLfrl7)h=Hz+8vwi^hsFg@GQ^V%Jjs9p
zsxP>pI51hb09@}0aJ`oY6@{mN0BBc$!J&hKm`TN0>!2tWq+&t^B?K6}20{l_s)>WD
z=#FYmz3|I8b8S1e-P?294GQjyjskQ9PG_XiQ4UU(jt129QFCzNZ=l!q+tT!RW$C-2
z@2*PUjc>>s)(!iHbHlyi-SBP9Zv;0MHkLL*8><_Ujo3zfBeAi*k=n>?gZOuzt%GRQ^wX_wIwpO=d
z(w4fVNn44n^{v!aM%v15<+n;(6=|!wRhPD!TkWl`w54wiw(Z-lZSS^!JFu;6FK#by
zuWX06qucTA#P<4jYCE%?+b(REwkzB9?bdcj+Sa#w+k@@Vj=W>tvF|u{+&kVK-_HC_
zaA#p>X(zO^x)a%n?ZkHyJL@~Coy<;dr?6AnsqEBt8aq8{r@u3lc1Dj`9PCHB_$QhS-b
z++Ja?v{%`y?KSpVd!0RfueUeY8|};c)_wcFbKkx1-S_R!?+5o6_LufU`>Xqr{n&nd
zKe4~QpW4st=k^QxrTxl&U3xl1t>9v94r+5zo1bEDrhzuai%lCn+5qg^FsUw6-AZ*k
z)tyv#Q{78-AJyln9;EsL)t9IqqWUV;f&Rv*9;bSO>g!ZbQ9VQT9Mua{FHyZh^%~V1
zRButeLv@|%J*p3=KB9(94J$S5)NoS6O${$KeAJkyMvxi{)L5cMh#ITZh)^R&jW{(D
z)L5rRiW(Ve51==goUWN8*wAY}$7VULtPp7>e?G0#eMEf%B
zTWQ};0gm+DwC|;TAMMZ6evtMTXn%?JL$tq2`w`lY(SDrv6STih`zhMb(0-2g3$$ON
z{R-{ZXum=GE!ywUzE1l++8@yVhz_t?3<7k3)ncGh=rqtll@4?`CLJPf=%>Rl9Y*O;
zr9-H2A;A#K2@;I@6k0aaoTE^$p=Okth%-ynM4Z`Yb}O^Hm>o)3c0aS@xL{vk_GM-d
z!>2NPirF*Fo?~|C&f3e&jnsczm75Q#_vG
z@f-)L$m11`qYaO@c)Y{o`ed*sO$Im!2v#H*1Vg%joiDh!2qhg6(f~IF91Ir|s4GH3
z*rQdESPh0j*o{@i55l2CU9f;+Ac3Yrhe};o2VwtJ7cwBBTd+_92_SW$4fqv2hq{;t
z@+wfyC5Zo*g!q5S3j)8OE&(=O60qqK3SENogt`PMcL{1s>e2`>t*FH^v>e
zPF)Uyz$vI9lodj?)ethQEWxu<24)LBPF)2kyDC80Fp$?U8mmSCuSP`uqcTWC)v%Gq
zhyYS2O*?6#xTc#lk-j-cn#*uPq=i&18)>2BwoKY6vh5~qBx(Cddxdlm-La7_fWodq
zfJ~6CM!LYPx=k`bo&i*bO$yBmDwn8Sr?O6EsIAHaYJrT&vO+EEa8lHgg;S##m9NMaygF?@dYHpfJ0>{bF6i}8_kpfDfsX9$H;ph|xHkymj
z{4&k2(EJ+BBW*rK^JO>Ld+U$ZirBwWW&5wW2vZbHzF3*pUHLeS|7A!b#iUq$*=k#=94%s%Shj=y-<{1XudEc3D`pw>Nf8AWlcWeFy=an>g_H)QWRfz{mF=YLC*=?+BTYF;DpKNfR;6B*BTDv@E0r(}>o9
zwDGjIowWU=jp%lgbiJet*uT3(x*?+12~MpKlR=vdx@2GwfOBLxA`rNfk)4cC(UFUcUAtQ{%Xh2LSm9hTFH7aAxkh@fd
zMups?G8Q3uL@i+EEMW@GXKG1M3s7)Ni(0MJ3fS4|q*gz*sucJM^~0_Kpn7bH#!ybI
zMOECXi&Vv(+N5zTP4PC3!}K9Oq?(gzFcr`isixAz9Bdo>bR8wGJL!6!0tln2b(+G;
zo66BtgQifWRG;Qnuzar4T$JWRG>?kq<20Y3`E{C4Q}yq^*RNEs4oR*+^zpoA*`
z23JK9tH{2J=v5INMsx(Njg@iS_PK?7m}-Hf3HF|qx{fC9!u&%}^6AzGY38lm5>
zBv70fC?yBr6I(tmVv`cBgzCML2k@B}ir;zcKSKRp$piR=#SktCDXa=l7#o;)cnw1W
z+aO#}zZyCLvQJ#HAb~tK08BOx!AlH@P-Ima$k2lJq|y=|)TAXE-$L$|Xk8ooa~lfQxsaQ7V`Y
z)rtA2I_E&Bmg+1+ofyNQdcdkfxPwavBogOw8pz`yP(Vx}ihu$R4Fw=~Y5}^f0;h}1
zP^y)|x5s5D&&o&>m)Ag;H*pyNp^O<4mjMta(S~>uO15d7CE{uCO9{+bC~Q_Qlwr{O
zDe2drOGwYB8w&i4nx!5hi^&ee4klY!!KG!5U@pP^eE(YnW;YEXsMBz+ECt(@?!i
z!&VG;*)WA{ffm3^;I0s+WjN(9h0z497_^SKx`);gSP%16EJdq%j%M;?nB(-pQyz{|
zcs9(TMZmKL&*Ls1=2hHPjR`c!CWG)nP-tfd7xH-VF@!;(J`d|zT)-9C5Te)+Vi)hF
z9TUohUQ}F|Z*wAQ4pBm$qbLXwhc#spp0MzQ;facOHVU{qCKAVxSO{X2B={^;8W*I2
z%nKKIAos*24{#fvP#zw%78e{MwRsFU6mR2cgv8U~3tt42MWc|VMr+K0W!!0Hm{QE?
z9?Pz=48ff#rh*aaLVWDi_|04>eqD
zNEe$Ijf(^6;)rCi*=G$>#_^@xCFnI$Z4fBLkot(UvFEqrq>aF~P6h=GYm@qM{P070
z2E(HnG#g=-8neJ6&0;Vsa1<*v;jkS!H0Ja$1=U`NGAJ0aMU$z}dy7N!Y&douV
zc0)?*&W}BAY3vD%JqjFc3<1s9>lu3?$n}~$fngLvFgv*JpuLIK;f)SDAPsY3bqM11
z3eMq82?Ey-`p~CAA4E%QSTBN5sSd)Z5f?1}>v%hZ>*%2*UbrA6CBak(o>cT8n89KY
z%wSi^iq3=LbTEtcBnUH(pb$d@^AK9Wgb^3m2o>-f^{M;2r)#(0MG{qBKrV)kYKHYLonPHv36OoaJtY6#f7y!hFnSv=YXVG
z%^=THAYI3$glU2oKU7|W!2~K6>V;sEfRfd@Cd?6p#}9@1BswadgovSz6))a^Dt!Zc
zRJ?(eq;VM1g3>#(Yj)p-pT!Kjhe0mNEHbk!P4p)ASV&?05XJ^31M|XfBEj9#Gu~%L
zG$_-AlgSubd70@eOph?VCo#Rx40$Za#&T_JO-yu%Z1u*(Se+Qj$-sZ%Srl;l-CzE5
zGU$`RkVaz6;$)T)v(7W0hxz81ufWtiQ;SS3GquXpI#ZiWZ8Ocuv@Fx|Oe-?2%(N=Y
z*jdKOGH#afvW$;q=2<4lG7BuT#4;h4S!LNU%SKst$n+%B(@f7Y9WRJyEYFQ)|5y%;
zWo0ZckL8uI93IQju^h*{qfJ_)iM~3~I}=@>=)H+PnCPR4Ax{kJ#IR2c_r!=yjM&78
zPX?aJU^p47lVM^qOdcMBF7}xmX0poU9@A}1cQD<{bU)KormtQ27+Qa^$mCUqC7a1H
zCTmPKm~Lgdo#`H?`zmxu{w-i%NSRADRuYU@)>HR{h%7){Y|g+{^DM#~fy1vJ*78dz2>L^W{GT7*Js
zL=z4QMG2blQfx^y?VzwLpg9--qm)917QhJ?%Cro~qnw~sSQ%GMS_4~KGb!*^S~n?>
z8rpPG=&V9zgUKsQ#;PJ`nG7UX))}A`CXX0&LYT$IEG{?-vn(>pGJF6?4Y0xk)&zFj
zG+DdGz)v#W!gOfu>TagbF&&z{dWh-JFww(Ik1{BX{52WiNof8h
zdptSdDWDvwDo<-1Cs3aC^DKDrti~a&<#~-4aaV+c^{-gx)#60QPNs(@dU&GOCWZsA
zsB>a?;P@ukekaDl#8`r}GBKc(VXRGz+{A!hhEbdhpjSGuO$Nv_a7_l@$-p-m%;N^{
zIP@n5(a8W=28qc4suydMVG7z8X{@$bC4%5~gY#J30?>(A#+tSU<$x6KVUZHVPKyf+
z9rL&mJW{X-eT0%&b4v(;<{K^$@DG>a8DjUt;Nap1GmTYPv4Xv|3V6i^hF9!diUS;~
z16Zo!0DtKM`=q#lv$*^qu!Alvo{9_1rdu$7Zm@4&?6EMu#szX}1xXYYn=?4!6~St*
zfQ1VSPZ-69u|6tc@X#^A`^CU>!sJxR3H~pS46sVaB?ba$s}z6$0Wib`tf3GRD|N8$
zeE~1^b!?*uSx~?Z3d5RE9zyA28*Cw>L!~|zXo#YFfL=nq2v|eG%Awh60pi~@3Xi9?
z3(sR+_?5f=)Bi#SJu(>3NR-JDCdZk@!7M{&^)sKF`Mk`Bg)zretdJ$9R+w62YJ;gQ
zra73FVOox91*VmlR$&<%%Q#rZ#WEh2nPVA0%LG_PVVOmiS!S6Pmc{ZIVc7xG*O{JT
zdWPvaW?08Em*
zFSah~k6We39gi3-(0IfLXn0mXFz2874M!
z*qLLFIk9&-mzXmGC(4`&=1ekYhB+$?Cb-NMV6Fw`T4FBnQgbE)GsApq%s*iB*gNK%
zED)1eV2y>kY{kM>penawvT&7YC||QPK*UT-GjL^0GZ`3Tma(!7L||DAK5}OJEQ=+u
zXfm8(SlP~iqqDMaQp!(^^@)L3-pEV_bCW>~D?xlRj7^5|iMc*8^B4u3PofZNM4`4F
zg~E3XB7+#tD=Jj9Rp@=kAvuWSob1onfWX8
z(v`rq__h4Cp>%EZLWg8~q+BCasFYT9QtgqtN!kI@HV76hGO&@sA{hYk8mtg3Q)B@B
z&lVYU$Ur9}z+)zMC_q-GkC>1#m;quUt+`6A*k7y~oyUP;9tRDXVqK+Kd}Cq_TTFrC
zD-E`7)%GkccV^UPjhc8sjO&m3On
zz}Fufe&z@;@Sx0zk;PWy3^Ul~Gbi}oH8|_cnSzsM&McfVa{`fZ`58_Y%%w2bB6A^+
ztI2TUXFeD6p-7*`e85nBIp!-$%-?7D00^6puz5^~K$Ha#7tAog%1rUH1w3mp&z5i(
z>M&r(Y(-`(RybX@iokG%0f}X5mc^IAb(;)(F-v0f;gqTjs-3LtWMw~`CM$z6uPn0)
zcEGBeL3YBbkVFDXY8Dt+P1XxDnCP;8lR?*pnaj*X(Pn=v+s86Ed3kXxC&qFIJ_rRy
zaLh3#``D?Bogp~d*ae>6l^jDGYwV7X-2kIJuCXUL_TT{EF~?BD8hdNwIYiHm#^{o9
z!2D}KTz}og=P7WUTLdTt?ZiZpCjc}hx;%kn9?+w_G3gE`W@=*QCV0IkW@Un}VN6Ug
z^LDJpL7e4+4zV3Mp|*!_cHlA(3JMQ6e8$}5F
zSg7p4G7iz3IEbq@%zLphs!&8z?LwC4NP)x&-+|XeXrif3oa4pQR3}~vC-w-{1#uY~
zkHbG+BM+ojE
zTm<1w)2xf2gz!{A;O{jnOh9eeyEGe2Ky5f?XsEIVvG{@JKrW#Kr8!ZK3&&s0Z3T%a
zH%v)AqGXR7Btkq2NR;e>J*=p%7U&&l;uxt#mp~#aigExQ;sR?_p+=;s%>xbU$*^@@
zJi0tbKSr;MeWtg~%#3>|Bi4c6zK}(B}G%R=1z+tp>2ZS1=
zF)UhU9aIw@JXoCDv@BYZ6*xqtZWML_Eac*eh2qhet
zQFbL*M+yPRu2SQ?Z8u&f8-euW2>F3o@u6fEYW{D)cw>M)9I_IuyT|fd
z*mA7A!khyF6o5k4%{h)mDG=|X{2$4%1G1Mxk??EDUT`8gviZQ1jzusK9OD^p(DVcC
zIF{5LiJAR3j6oodDyWuA3X+K^GK+FXygJ387c({*%8?J4>NK(60hB~
zaDh?UbwS$^hAWg$oaZ@u6
zQlmplXq>tKDJ)@*BzcGMVVxe?#T;qp9hqVOKr0ymguc>B2J%3(N5})wNFfiz-AyZ*
zW9cB`gfMUg_A>CPH-P9lfD-;=JUW4_#}+iNwwp;I?pWWVe;v7g9V;4aKmbIq8`DIu
z8`B6e;*sR=0PBq0qfR-60M7$Y?9P!C}??Y^#RhpGze>6;pNxIeO=J~EXayxLS6YQ4yHY$^>kJd`NZ
z@F0dgHkBUSL=#_WJ^6hi$|J2k@S4J;8tQsrKEF?0@5shl=;?vwKD4oRB*0I*k5%>{
z5IQusMxd};2H*TDtL0<6BbaTrfph--O^z)I>DWGLc-=n9cilb-hDkWK-W1}7%|q$!k%cKlal*tjJ_iSu$6%A8nFF@q
z&^if@5a@!ZhWO-Au6x5sDOJ91owRtvIthuPr-Ki29!ggdaE{E9AkIacP}xC2khNfn
zU$;jBR&```1cO!t3N0R>V36p(0m~yCOb;!jg$3+&3+Y2;ABb_vN79@(WR(PQ@lBKJ
z5ADQ+NXHPc
z`jMgcp_$V^vSE{e)eZ$hLTnDn3N8TTyx@-yt(=4)UGVlVvvh*c$PYgHP_+I744jSy
zOF?lWIJ9)SAz>4`PKT@NF{iwG6q)i?T_eZz761ei~DCwbx4i)tTiYyfMUPG%wJX~02-H`SkYE+2OW9zIN;@|6LT0)UR
zfYFEg6A%Pm*Pjp>gvx}l*SaAlj)+j9GjUU1EJB0@*L5ul=uF&@AmcE1U1wrF0gn(R
zUpMZ;%?))4F$_12x`3|#Afv8hm5D>kE|F76rR#@U5`fNcDo_B>xUMcCD)1UcU$3n|
z0p*Ds67IIB@oU(F2`xkM;6nwAMd5*B;;}gV$V{yBGBYu;u0UY@Bif6J*YQxSe#3A~
z$R)1pZlJ(J-3?)-c=$mD@LceOLEmRn23G&@^BONVE<*^EA&*o)ZhnU0$7XZ(GF_51
z0G~r$lI!}GxWUB!VM-;U$8LTAHpluC|9HwZ;;lTi2?YNH543CqXay}B
zkO)b`h7Sw^F8^#UcxWzoQ~PM+J%`4CH?XxIjI2FT`#xmtWmax4$JSmAtGx_E1AO+%
zkDrL|!TgXfpxpRe3{Lv^5Xz0O#vGz*Kgt(T1gQ4UUqt!u`->>o@gjVR9@4CT*w;{A
z{v{OPL@{XD{a8PS^8Y0)^y2`6-q`0-1OjyZiz!E+O8EzUBLxV~-|sUiuZQ5g#k00dkwVaAK?Qt_|6#681ao6D2l$3Z_K>WkINjvJmTXrfO%Sf
zPnhS8eQxGez|N2U@tGfj?YusIb7&m;3e@JGKak=EHX(q)>mRid9`TLG
zH-uioHcsQgmhn+0U^y75dTGle-ZazMBEoq&KK_o
ziExzjCB%K{&p;^aO9-1rp6Q1{=kA5>&W%4P7f!*zco_OHscS3KZfM@0w
z`_!XTzdLpOYnjEPG+&y!{p1&}PTl+REJ9NVKSDY6(r0n`pYS7zE6Dog_f1Xx`HAy4
z(j6D{=n3(e`_PG%6ZlEV58OKS$W-~{w@&0wd?A10>Rax6@S(4qe(+rWmaDhi@u{mP
z@dJnF#BZaXI`w~i8_wrHcQ=0I@a(y}Pd_;O?b*Bk-I>|nJ$wH*XYYP0@l@@p`ctFJ
zuBY^;j8m5_m#t5Yp6cIy=Yyxea{8W!#cwCx|7WM~{`w=cXTEv&AKd?yyU*Q!epY(;
z^u2#3ehcyLhwp#*llOdc_RP#fXFqxTgN>iO@q>-{(Zj26`%UpHiQj(s>~DSN!}mV)
z^{?E2X7-NXeDI-rQPtnN<3`+#JW{{;m8U
z|J_TXa`vMr^sKN6IV(P+bu=vw
z`|Rw;5%8U##V=;ge*50phtI#p&`gUgFB_V>@_+iWq50FlJNv6haQn%tw~85e_04Bz
zzy8oSXU~4(Fz~Dd=jvO|%zo=I@}w9s(Q){B&+9|>wi{1AD_(&A06Hf;^3?P1e!uc*
z_kHrex%Qq9xKCbr>w5z4_PjfI?&-Jw%)!a2_x=Pq9#d3j@BMe}z2mN@ZoTX5Cz16P
zy(ivP(fXHu5%c8w>viApNZuz#^5#o+bM$6T9RA+!?>>6s>>ZEd_mRa*H*@&voxd^a
z=WmSc%kzB)zrK7t2M)`4_l^7~MJbQo@>R^8nOlT;lkc}Ni$wii_4nv4BGqvzm`Q)~
z2GiYt>(rx|S6}`q=&a+-|MQc7e(R$rAHDUk9&dW|oQBKc8-L~P@034(?Oh*qpLqTq?{@eq`A+If
zr4Qu(eer{}6ZxM?etGvpcV79KpI<#2{emeNgr{DSW2k)7B_lI73@6`K#!gH(pg!|K1-to@h
z3GZjGy#E7p|AzeJ2ZNsveq;50t0#jW-+SlJ{_k%?vcEg`X4KL8JMa3P_nf%;)_d;x
zI(|I%o_o%I4uM~|{g$h5`}X}a_nbR_`t13u?-bs9A3AgX{xcV5zw@RG=f5ibORQ3F
zojrpeqQy_je&^QD-+Ss`ednDsvtK=Rv{3!Z{Zmu#o4S7rW*Jvc+eqC#K*OAU{R&w
z+}sLT{0oUmK
z1pr$_SU^Yu7~F10D2jaeez<6JyNgadUs&lK3@=()X(6L6CY%K|&ZM`~;pnX4Or^9Hq7ddnfN&g!d8fZyxLegzE@6HFKtTyLME(qY9mP!NuQ7Z)Q^|
z!vj;o0lW@m
zmKlz(QG8+HcSeX}58;FaCS&gTIPYWe=2jUbmm&RxiE!xpA@Hn!Oe5@N29%Yf_L
zS`Iz!GPocOM~NNN6d$8xovOhJMP4I+me}XqyrYzeRf?0p!
zGRxT^w3Pmbi4N`ka@AH6!A_ccXe+rc1wwzcm4r*maZ{I6;HEESnd@&45J6OmHNN*B
zA=tVeIhxdc)1^<&T#~Y0y>{Y?9)8yB_8$!I5C0NXoL4+?$J!1e2ed#;eR;64zfqm8
z1!J0YtMsTT`PJtKEBhm
zpgK{LZz}w$rA^QN^7MgsUqJnKpO)uNC9mpx{Y<-dTbFLPynbYrxhCyy(0-lvS5~W&
zH9FLwah=8w({(xywxYC`C@1QkzNQ#df6&Fjh8WYu*x^K7j5lEfk@8~06VW}96VD(v
z`B@i-8e&`*!NZ9--i{Do_~Hg}%gTC%uf9BSjU5d%se6x>sT!=)_s)8HE3voytO$uk2PcTHw}+ING)o|Ih^`-k|zbtt+Ak
zO)Bnr${zJ`ord2%KdsZjcir8od{h~!-q3u*bvn{A$Ds9$9xgZHNj;v_MwgELnhz{K
zwO)1xc-2qbA8M|#_FW=`uH3L+x-0tjYTRVs7Emw#i29O~{GZYJndA(AJZVqfa~{vw
Hm#FhU2lifK

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..0fea3fb9c20db1fd1d565d9bdfb8a7f955417ae5
GIT binary patch
literal 14097
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

literal 0
HcmV?d00001

diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/cmdline.py b/myenv/Lib/site-packages/pip/_vendor/pygments/cmdline.py
new file mode 100644
index 0000000..0a7072e
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/console.py b/myenv/Lib/site-packages/pip/_vendor/pygments/console.py
new file mode 100644
index 0000000..4c1a062
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/filter.py b/myenv/Lib/site-packages/pip/_vendor/pygments/filter.py
new file mode 100644
index 0000000..aa6f760
--- /dev/null
+++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py b/myenv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py
new file mode 100644
index 0000000..9255ca2
--- /dev/null
+++ b/myenv/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',
+        '\\

' : '\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', + '\\

' : '\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', + '\\

' : '\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/myenv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca73ba4496746ae17f11d9db8b53beabc65a50aa GIT binary patch literal 37939 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 IWX}Kp2X8aEZ2$lO literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatter.py b/myenv/Lib/site-packages/pip/_vendor/pygments/formatter.py new file mode 100644 index 0000000..d266603 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py new file mode 100644 index 0000000..f19e993 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8445411a333873d8a348381187a4a8aaf9819d7f GIT binary patch literal 6930 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 I#R*FO2e>ZGH2?qr literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45d9ec7ef3bf776232f065e1b64247dee1b9fc1b GIT binary patch literal 4243 zcmd5<&2JmW6(_l*EbGfwEL*Z{$K%*e!@!}Np!J~$f<}rZ%aCM2qSGP}U=DX@$%&S` z+u5Nc?x8?(=^xNTPX%)6p||$dqChS^73qP#6?+Phe_)HC7oYNbJ4<2}^AsRP1?cU( znfGSi`_20pelsL^iQ5KE?vc)gNL z!!IAJIb|Q6`t*wzt)L_l7hy=?wlYWO~^NcIO`jK#0d%$|!AFy`c z^MsZ@YX@98(LELgY!LLB&3)FDovw#}O*0BBePs*U$DB1XnY9JZ5iATMY}8>=Gu;(R zG?K-&UbxlcouaERmPdL;S7oo0oCA5*?uBsF!Ux_;-Q!`s9M|4%U?M(QSAuK7I5R6u z(%#HfK`%Eh^OBsG5xE(WA#87;yMfQh5HfFDwiQcg^9@KA)y;EyUTst0U(nKXnBER+;^-*(Y8(3C}t5@Qww;MDfQ1OkwK5G$=7|FAru~zH-DCGVJtrpX~gYaJ) zFh{t&@9BG44A`&->BSHi!neJEQUF2ENi$R;SGIhrkGAmU+_;=$V5*-Wg^ z@0k3@7OLpb1*R6h+xZZ6okKTg5NdkFW?V zK@m;stnZtm;ACwgz!EhY*Yq`1;6}2vhoTYeaCOuV3wFdeClvNtay zy!BH2DSnbnnNDn=!9@H^qm_#>Siu?QaT01ygnGoOY7jKIra)15%C-Q9PS?X#&F$+m z<$Pj2P})tb{pJQWA&m3$wHyEQrSl<$zE8MQsX{fx+2#?#cwYl%Ep6_31BPqErD7d- z%}C1$?0)t_G0oqUdg&W|@`B2K7Bkd&p#~@VuG?UHLb<}$nV0K9ILHL|c!WkSeL%e< zZ52d;tKZtMvtI?uq3`%KKyYx}F@BhiHW7m8xRY48F@gYN0|5r{H!ne8u9kIBx4Y7Y zhZ0SSeIE@#gVzjv7pI|6l04^LgFWPSmwD0`EO4_ZqK=Yv5ej|k5yBHBY*2!-Cv7~4 zTCG#85k#%l03$nqqtZtWKx05};?k$vN9WL^MwV}sKkO*Gq>r{Doj&)*VS)yWC|PO> z)x&Pydq00rfa=A>d;*Fi*<`k$Shted;@S-CiULny&%^>TiS^Z4JhKk-;qJi}yrAAc zZZY?=`!-QzIxV(%#|Vv1VNl2q!3Au~BXW_oMmCK-A-K+Lo;_ppT{IGwYvzj+x)$?* z)m_Yl=DA0}WJW03i0R-klimGg{S!SNkwR6axy(qLDEl;XV2ws7>xe-gE7kL z=NOXpAIIy}kqb@L7ugwOr0X^HfSUgpn6XGPI^KQIOGeQ_V++K1{_h{|Ic)hq439|L zJSzTt$%;QkfmuPlK@^y=f#9cSA)uNchAIe^M6zc|!6{hLDvefS7kkWXJlWs*u-SaL ze~|6+EiR$-zt2I|e{uLU5-K|6o;VeUPkix_lE>n3_{H!q!@mx{eEz%P--dr@&p&(q z`S8o(KMvpXc$+^96}PoK;)lI~@Q)Ailjks!TD&uQ1004jy#MSN4KGmlNAZ5&9rc3f z{xkd-3aM9zgJk;sUf}dS@qu~_gUa}i?t-RPxm-@CFD+F5Q@xy)N-MFITHwB}E`wYB z#7b-6(y3Byh4@`7JxBa>sYcSvol1J1_?c2|3H+7cR?}JH=SsCp!zG>06SI&DH?8yn z@fY*WKDN?D;$O?xbtSz-{8GNzK_$IR{FPGe8aBUiT1l6QU&-~mmGmm{t2hknmz&k} z8u8b2URTo_#J`^FKdPlSiD$X~N7eKe@o$uBx1fLfX)V1?{GELLapk{v!GAWR9s#cJ E0Im?jcmMzZ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d64e3d44a6e0be107893ee059ccb3d52003c1c9 GIT binary patch literal 4250 zcmcgvU2GHC6`t|T*ptMNkRKpFz=fqaW`lzgval|+CE<60Y*kokDyM7_Py!zS*%%RWLh_}l4W7Tj3kpO zUB;CB*|twJrH_u1t*F5qah9VgJy$T4bjFIJF>i{7jvxQv*wFEz6DV0gRtBS=y2_D- zrR)GQF-B)UxpC>^pIwho=}}clVa>!*Ght1?k{F|}{#axdd%19>CbY$jpIo+@*&`BvZn>O^kCWE!A zZh*NkP3ndW=`w(Tfy$#c6GwnOrDwCc=DLk6DNR+tKFM;`Ue~kOaSWLS)52L3_2Wo7 zf^wPM=x7+px)!n;X1IC*3s9vPXo9#pMFbB}wd=?L697rJtz$&Iwsc4caNCIoF@$hC ziFO0uvJl9YHpm4jc}Z0Z2+%Pz`c2JYlo0r(n>i^(qNrJ@|7J!>Wk8=|QcD1C=OEEA z$-1WxqeOzR5~f4~K~gHZ7N$rNxQReOz!3%^rLr^(836*pHW^N-Ck1>3NGx z6%8nfgcDQ%hvv&x%BCgN#GuG^s)1+2p3RCRSq3*i9??z0NE2iIoNNwfLr_CI*yU+; zlEwBrwZ!&2h0^xHn{`VFd68n!0>8E2!|;%?8nhX&(7?L)l$dE&VM^@p*k7|OV|f)G zR!C*{YIccP zVuRY`QkyqWTN>1$OWo0+awUG+2i`Oiaf4MXXQfF*@4DN}Y6TuIna6%E5`p04Jn!kjJ8 zB((ib@QpT592Sgrc-eww6>`|-fpMDblMKt|AZJW+TA(l@WOTyJ*abte?|Uh-A;o_P zJIoar=9zl$fu-ngqj#^|IlpkC-qTkN_Q7nd-rBKn@m{&!)>YZ}y!%+K``C)Sdh)C6 z)9%x?w$lqjeK%SjuI)auz>%F7?v=>SuEm{%(pNDTRfllt-e+4At~_Z)->1CtGlxPe z+;Y#Ia}TcEy;2dL1oyu_$n+gCy1>}f#)J`Jfu`XKB-wUpXzVKawn{UZ^%9IF3A{zf zx8?M$bIKf~CP_*b(%o{?T`2oY0>~uCWYaUp8oec9hFHGoDGUFBhrJJ6C4ROaLhCPa zB{%KwM@yVBvbClXPZFITzd%{s1_N$}RQgR%DF7P8Y0mS~djn4XGFKAH{QWte`9Ev^ z-y+0suzAbkv~6sK|Hf$sx5<|FZ7}w)ODvG$5g0G}omQdPHbL5{Gvpqk9n_Su2VzkS zOhDb&tSK@fSJjlwHi!MjPN3PsO#^NXqZQ_~FxdVa^sJg?^E0}lK`&3sM2pkB)2KN8bOH)(6ph(R#4s!L_^BD*exb@4dTJ?HPC$Joci!^G=}N zvFDEXvM+S^DiooSdi$P=wRHQ@?OOZM`rds@!AHRb;T6Yp>~)r(v>$!Z+F224E!k5U zskNcSz~4K1>IZ-DW$zcgE1%X5ez5q_!uiT@y|ee>wZ&`8hrSGb5n35p4ShXaJ^JIP zhko*`^K8B6z(Szjix$OKUCh4z*L#^@N4L$k)4P;FJTB`gSmw!s9e~S4GO=klkx-K*llBSpCNKsd6kjn^ zzH>j2>w^C6Bk5ui^5@KJU#}p(I>iJ#=g-w!_f$HoJNM6Dthcq#Uw*^;g}yg!yM%$Y zBl`v98X7Q;1EakkI+uvsxj=ie`5(E{gLQAYDQ_vN)0BZb@OK4TG-}xiVjijY)LL6S z?SSwj;}ooszQBY^$h_iMmVNCLS^n*Ah8_7EGxVaRuiCtCKJZU}jAhY+@)rIJvyQp{ E2I-JdQvd(} literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6413cf2265932e031c9f3612cb03682bd7a0e14e GIT binary patch literal 7321 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0ad43b6fbe31a2c1f844cd4eeaad3b876793d903 GIT binary patch literal 41054 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..46ca59d7d30d6fc011210a02e3a0570d08e2f366 GIT binary patch literal 28576 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 E10MR_VgLXD literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..183cf44d10e5d6684435e974b485e8bb398569a6 GIT binary patch literal 20153 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 Dp4GgOBY9Tg(n_wqI@sN0BwQ z?twqd=pSw1SjS7S*|KFS;3ZNXm6rsD5HZ;mba2|(sH{}#i#PlKTO{U6-Fz(#~J z`tG%NQy%XJN3I-M^K>OVUCU>Zp5FVOegEvV*A$pL5el-mbYV8tvT?1YFVWI>r{~L- zebm`w={NRW4t9kw$z=h=zMJFTK8j%SJy06EWNWhne+;eOM&cH3Q4H% z^tbnS@PSN`PK(So)W1PS-%vO>5M>3H$MwZqn=%<1QAD<=bs+$Ev|WZf7}v0Nla;Bh zDb@|uU)g-&e~_~Y!f)<4hY92XC0Q}h527xvS9z4>J8>n-bctm|J954%d1kg4X^`GFLmFm z=uFktFCIu$RWFq;^)F6*ujucpYq6{-@|G{YbIpCt{-~U*seN3*c}h}cm5b`q>Ba7( zN5Czor{q^m(fH0w{XBx5(6{+ma&j3|S<8w~n&rPnNGr7OiEhYGJz zr^%MNF=Wtf1qd>%G<)nxGdq>*W5WH4Eu-HYp6;|{&)u&vH%|7sIe+zMvo=fm?;+KB zz4WJV<{|V+neJk`x4s|toun_28QWhB;!6yj*L`{Nd!SWUN)J+we1E#M{(a;$C-eFN z>?oBBtO$MLA6oe%D)@Jle4mo*NEDLthU%ef9)F60xsA^hds)KupJ_|{1sdpE0%FX0 zzql-gFrAY(PA+e!OL@e!TsZ-iLtQ*`zr+jI!qS;|&tmwVw+&yR-z;A`^wqGjdBb+_x5#nsy0dlkJ_ zgG9wfc#P`m7YDwn<4VeZrO-lu=RnbcGX5{THl!yJ6?GG3@((EaV@hsOGC&EPH!__N zGD!}ZCXERpc0%bB`4N>-@~1RQ&B%~Ro$qviUEy$ce(foB9^t>7&|)oVZ|khV-y-+K?JN4=@Dbd7v{!UZ5mG$rehOQ-Mtb$>;RcXzsnbBV)h(-%vr) zN*PA-$jGqkKNU;hUNf2fuUi>^B_!elw7Nisu`aDu2n*FYEpP0Prjbi2wiq literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..edbfb9e18537772032b88036bc339b2ea8524385 GIT binary patch literal 6905 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c92b750811cb2064e2ff95ed6356c4f6f8353ee8 GIT binary patch literal 2986 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..22f42c69db65c6f1d8e108d6f0740b875f28336d GIT binary patch literal 5847 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 HxXu3pJvE^6 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfb1fd2dab5ee7c8c1bc0d9e454f62dad059505c GIT binary patch literal 15146 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py new file mode 100644 index 0000000..72ca840 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py new file mode 100644 index 0000000..5a05bd9 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py new file mode 100644 index 0000000..5c8a958 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py b/myenv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py new file mode 100644 index 0000000..7aa938f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_extension.py b/myenv/Lib/site-packages/pip/_vendor/rich/_extension.py new file mode 100644 index 0000000..cbd6da9 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_fileno.py b/myenv/Lib/site-packages/pip/_vendor/rich/_fileno.py new file mode 100644 index 0000000..b17ee65 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_inspect.py b/myenv/Lib/site-packages/pip/_vendor/rich/_inspect.py new file mode 100644 index 0000000..30446ce --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_log_render.py b/myenv/Lib/site-packages/pip/_vendor/rich/_log_render.py new file mode 100644 index 0000000..fc16c84 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_loop.py b/myenv/Lib/site-packages/pip/_vendor/rich/_loop.py new file mode 100644 index 0000000..01c6caf --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_null_file.py b/myenv/Lib/site-packages/pip/_vendor/rich/_null_file.py new file mode 100644 index 0000000..b659673 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_palettes.py b/myenv/Lib/site-packages/pip/_vendor/rich/_palettes.py new file mode 100644 index 0000000..3c748d3 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_pick.py b/myenv/Lib/site-packages/pip/_vendor/rich/_pick.py new file mode 100644 index 0000000..4f6d8b2 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_ratio.py b/myenv/Lib/site-packages/pip/_vendor/rich/_ratio.py new file mode 100644 index 0000000..95267b0 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_spinners.py b/myenv/Lib/site-packages/pip/_vendor/rich/_spinners.py new file mode 100644 index 0000000..d0bb1fe --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_stack.py b/myenv/Lib/site-packages/pip/_vendor/rich/_stack.py new file mode 100644 index 0000000..194564e --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_timer.py b/myenv/Lib/site-packages/pip/_vendor/rich/_timer.py new file mode 100644 index 0000000..a2ca6be --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_win32_console.py b/myenv/Lib/site-packages/pip/_vendor/rich/_win32_console.py new file mode 100644 index 0000000..81b1082 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_windows.py b/myenv/Lib/site-packages/pip/_vendor/rich/_windows.py new file mode 100644 index 0000000..7520a9f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py b/myenv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py new file mode 100644 index 0000000..5ece056 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/_wrap.py b/myenv/Lib/site-packages/pip/_vendor/rich/_wrap.py new file mode 100644 index 0000000..2e94ff6 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/abc.py b/myenv/Lib/site-packages/pip/_vendor/rich/abc.py new file mode 100644 index 0000000..e6e498e --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/align.py b/myenv/Lib/site-packages/pip/_vendor/rich/align.py new file mode 100644 index 0000000..f7b734f --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/ansi.py b/myenv/Lib/site-packages/pip/_vendor/rich/ansi.py new file mode 100644 index 0000000..66365e6 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/bar.py b/myenv/Lib/site-packages/pip/_vendor/rich/bar.py new file mode 100644 index 0000000..022284b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/box.py b/myenv/Lib/site-packages/pip/_vendor/rich/box.py new file mode 100644 index 0000000..0511a9e --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/cells.py b/myenv/Lib/site-packages/pip/_vendor/rich/cells.py new file mode 100644 index 0000000..f85f928 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/color.py b/myenv/Lib/site-packages/pip/_vendor/rich/color.py new file mode 100644 index 0000000..4270a27 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/color_triplet.py b/myenv/Lib/site-packages/pip/_vendor/rich/color_triplet.py new file mode 100644 index 0000000..02cab32 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/columns.py b/myenv/Lib/site-packages/pip/_vendor/rich/columns.py new file mode 100644 index 0000000..669a3a7 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/console.py b/myenv/Lib/site-packages/pip/_vendor/rich/console.py new file mode 100644 index 0000000..a11c7c1 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/constrain.py b/myenv/Lib/site-packages/pip/_vendor/rich/constrain.py new file mode 100644 index 0000000..65fdf56 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/containers.py b/myenv/Lib/site-packages/pip/_vendor/rich/containers.py new file mode 100644 index 0000000..901ff8b --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/control.py b/myenv/Lib/site-packages/pip/_vendor/rich/control.py new file mode 100644 index 0000000..88fcb92 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/default_styles.py b/myenv/Lib/site-packages/pip/_vendor/rich/default_styles.py new file mode 100644 index 0000000..dca3719 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/diagnose.py b/myenv/Lib/site-packages/pip/_vendor/rich/diagnose.py new file mode 100644 index 0000000..ad36183 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/emoji.py b/myenv/Lib/site-packages/pip/_vendor/rich/emoji.py new file mode 100644 index 0000000..791f046 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/errors.py b/myenv/Lib/site-packages/pip/_vendor/rich/errors.py new file mode 100644 index 0000000..0bcbe53 --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/file_proxy.py b/myenv/Lib/site-packages/pip/_vendor/rich/file_proxy.py new file mode 100644 index 0000000..4b0b0da --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/filesize.py b/myenv/Lib/site-packages/pip/_vendor/rich/filesize.py new file mode 100644 index 0000000..99f118e --- /dev/null +++ b/myenv/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/myenv/Lib/site-packages/pip/_vendor/rich/highlighter.py b/myenv/Lib/site-packages/pip/_vendor/rich/highlighter.py new file mode 100644 index 0000000..27714b2 --- /dev/null +++ b/myenv/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
{text}' + append_fragment(text) + + code = "".join(fragments) + html = JUPYTER_HTML_FORMAT.format(code=code) + + return html + + +def display(segments: Iterable[Segment], text: str) -> None: + """Render segments to Jupyter.""" + html = _render_segments(segments) + jupyter_renderable = JupyterRenderable(html, text) + try: + from IPython.display import display as ipython_display + + ipython_display(jupyter_renderable) + except ModuleNotFoundError: + # Handle the case where the Console has force_jupyter=True, + # but IPython is not installed. + pass + + +def print(*args: Any, **kwargs: Any) -> None: + """Proxy for Console print.""" + console = get_console() + return console.print(*args, **kwargs) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/layout.py b/myenv/Lib/site-packages/pip/_vendor/rich/layout.py new file mode 100644 index 0000000..a6f1a31 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/layout.py @@ -0,0 +1,442 @@ +from abc import ABC, abstractmethod +from itertools import islice +from operator import itemgetter +from threading import RLock +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + List, + NamedTuple, + Optional, + Sequence, + Tuple, + Union, +) + +from ._ratio import ratio_resolve +from .align import Align +from .console import Console, ConsoleOptions, RenderableType, RenderResult +from .highlighter import ReprHighlighter +from .panel import Panel +from .pretty import Pretty +from .region import Region +from .repr import Result, rich_repr +from .segment import Segment +from .style import StyleType + +if TYPE_CHECKING: + from pip._vendor.rich.tree import Tree + + +class LayoutRender(NamedTuple): + """An individual layout render.""" + + region: Region + render: List[List[Segment]] + + +RegionMap = Dict["Layout", Region] +RenderMap = Dict["Layout", LayoutRender] + + +class LayoutError(Exception): + """Layout related error.""" + + +class NoSplitter(LayoutError): + """Requested splitter does not exist.""" + + +class _Placeholder: + """An internal renderable used as a Layout placeholder.""" + + highlighter = ReprHighlighter() + + def __init__(self, layout: "Layout", style: StyleType = "") -> None: + self.layout = layout + self.style = style + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + width = options.max_width + height = options.height or options.size.height + layout = self.layout + title = ( + f"{layout.name!r} ({width} x {height})" + if layout.name + else f"({width} x {height})" + ) + yield Panel( + Align.center(Pretty(layout), vertical="middle"), + style=self.style, + title=self.highlighter(title), + border_style="blue", + height=height, + ) + + +class Splitter(ABC): + """Base class for a splitter.""" + + name: str = "" + + @abstractmethod + def get_tree_icon(self) -> str: + """Get the icon (emoji) used in layout.tree""" + + @abstractmethod + def divide( + self, children: Sequence["Layout"], region: Region + ) -> Iterable[Tuple["Layout", Region]]: + """Divide a region amongst several child layouts. + + Args: + children (Sequence(Layout)): A number of child layouts. + region (Region): A rectangular region to divide. + """ + + +class RowSplitter(Splitter): + """Split a layout region in to rows.""" + + name = "row" + + def get_tree_icon(self) -> str: + return "[layout.tree.row]⬌" + + def divide( + self, children: Sequence["Layout"], region: Region + ) -> Iterable[Tuple["Layout", Region]]: + x, y, width, height = region + render_widths = ratio_resolve(width, children) + offset = 0 + _Region = Region + for child, child_width in zip(children, render_widths): + yield child, _Region(x + offset, y, child_width, height) + offset += child_width + + +class ColumnSplitter(Splitter): + """Split a layout region in to columns.""" + + name = "column" + + def get_tree_icon(self) -> str: + return "[layout.tree.column]⬍" + + def divide( + self, children: Sequence["Layout"], region: Region + ) -> Iterable[Tuple["Layout", Region]]: + x, y, width, height = region + render_heights = ratio_resolve(height, children) + offset = 0 + _Region = Region + for child, child_height in zip(children, render_heights): + yield child, _Region(x, y + offset, width, child_height) + offset += child_height + + +@rich_repr +class Layout: + """A renderable to divide a fixed height in to rows or columns. + + Args: + renderable (RenderableType, optional): Renderable content, or None for placeholder. Defaults to None. + name (str, optional): Optional identifier for Layout. Defaults to None. + size (int, optional): Optional fixed size of layout. Defaults to None. + minimum_size (int, optional): Minimum size of layout. Defaults to 1. + ratio (int, optional): Optional ratio for flexible layout. Defaults to 1. + visible (bool, optional): Visibility of layout. Defaults to True. + """ + + splitters = {"row": RowSplitter, "column": ColumnSplitter} + + def __init__( + self, + renderable: Optional[RenderableType] = None, + *, + name: Optional[str] = None, + size: Optional[int] = None, + minimum_size: int = 1, + ratio: int = 1, + visible: bool = True, + ) -> None: + self._renderable = renderable or _Placeholder(self) + self.size = size + self.minimum_size = minimum_size + self.ratio = ratio + self.name = name + self.visible = visible + self.splitter: Splitter = self.splitters["column"]() + self._children: List[Layout] = [] + self._render_map: RenderMap = {} + self._lock = RLock() + + def __rich_repr__(self) -> Result: + yield "name", self.name, None + yield "size", self.size, None + yield "minimum_size", self.minimum_size, 1 + yield "ratio", self.ratio, 1 + + @property + def renderable(self) -> RenderableType: + """Layout renderable.""" + return self if self._children else self._renderable + + @property + def children(self) -> List["Layout"]: + """Gets (visible) layout children.""" + return [child for child in self._children if child.visible] + + @property + def map(self) -> RenderMap: + """Get a map of the last render.""" + return self._render_map + + def get(self, name: str) -> Optional["Layout"]: + """Get a named layout, or None if it doesn't exist. + + Args: + name (str): Name of layout. + + Returns: + Optional[Layout]: Layout instance or None if no layout was found. + """ + if self.name == name: + return self + else: + for child in self._children: + named_layout = child.get(name) + if named_layout is not None: + return named_layout + return None + + def __getitem__(self, name: str) -> "Layout": + layout = self.get(name) + if layout is None: + raise KeyError(f"No layout with name {name!r}") + return layout + + @property + def tree(self) -> "Tree": + """Get a tree renderable to show layout structure.""" + from pip._vendor.rich.styled import Styled + from pip._vendor.rich.table import Table + from pip._vendor.rich.tree import Tree + + def summary(layout: "Layout") -> Table: + icon = layout.splitter.get_tree_icon() + + table = Table.grid(padding=(0, 1, 0, 0)) + + text: RenderableType = ( + Pretty(layout) if layout.visible else Styled(Pretty(layout), "dim") + ) + table.add_row(icon, text) + _summary = table + return _summary + + layout = self + tree = Tree( + summary(layout), + guide_style=f"layout.tree.{layout.splitter.name}", + highlight=True, + ) + + def recurse(tree: "Tree", layout: "Layout") -> None: + for child in layout._children: + recurse( + tree.add( + summary(child), + guide_style=f"layout.tree.{child.splitter.name}", + ), + child, + ) + + recurse(tree, self) + return tree + + def split( + self, + *layouts: Union["Layout", RenderableType], + splitter: Union[Splitter, str] = "column", + ) -> None: + """Split the layout in to multiple sub-layouts. + + Args: + *layouts (Layout): Positional arguments should be (sub) Layout instances. + splitter (Union[Splitter, str]): Splitter instance or name of splitter. + """ + _layouts = [ + layout if isinstance(layout, Layout) else Layout(layout) + for layout in layouts + ] + try: + self.splitter = ( + splitter + if isinstance(splitter, Splitter) + else self.splitters[splitter]() + ) + except KeyError: + raise NoSplitter(f"No splitter called {splitter!r}") + self._children[:] = _layouts + + def add_split(self, *layouts: Union["Layout", RenderableType]) -> None: + """Add a new layout(s) to existing split. + + Args: + *layouts (Union[Layout, RenderableType]): Positional arguments should be renderables or (sub) Layout instances. + + """ + _layouts = ( + layout if isinstance(layout, Layout) else Layout(layout) + for layout in layouts + ) + self._children.extend(_layouts) + + def split_row(self, *layouts: Union["Layout", RenderableType]) -> None: + """Split the layout in to a row (layouts side by side). + + Args: + *layouts (Layout): Positional arguments should be (sub) Layout instances. + """ + self.split(*layouts, splitter="row") + + def split_column(self, *layouts: Union["Layout", RenderableType]) -> None: + """Split the layout in to a column (layouts stacked on top of each other). + + Args: + *layouts (Layout): Positional arguments should be (sub) Layout instances. + """ + self.split(*layouts, splitter="column") + + def unsplit(self) -> None: + """Reset splits to initial state.""" + del self._children[:] + + def update(self, renderable: RenderableType) -> None: + """Update renderable. + + Args: + renderable (RenderableType): New renderable object. + """ + with self._lock: + self._renderable = renderable + + def refresh_screen(self, console: "Console", layout_name: str) -> None: + """Refresh a sub-layout. + + Args: + console (Console): Console instance where Layout is to be rendered. + layout_name (str): Name of layout. + """ + with self._lock: + layout = self[layout_name] + region, _lines = self._render_map[layout] + (x, y, width, height) = region + lines = console.render_lines( + layout, console.options.update_dimensions(width, height) + ) + self._render_map[layout] = LayoutRender(region, lines) + console.update_screen_lines(lines, x, y) + + def _make_region_map(self, width: int, height: int) -> RegionMap: + """Create a dict that maps layout on to Region.""" + stack: List[Tuple[Layout, Region]] = [(self, Region(0, 0, width, height))] + push = stack.append + pop = stack.pop + layout_regions: List[Tuple[Layout, Region]] = [] + append_layout_region = layout_regions.append + while stack: + append_layout_region(pop()) + layout, region = layout_regions[-1] + children = layout.children + if children: + for child_and_region in layout.splitter.divide(children, region): + push(child_and_region) + + region_map = { + layout: region + for layout, region in sorted(layout_regions, key=itemgetter(1)) + } + return region_map + + def render(self, console: Console, options: ConsoleOptions) -> RenderMap: + """Render the sub_layouts. + + Args: + console (Console): Console instance. + options (ConsoleOptions): Console options. + + Returns: + RenderMap: A dict that maps Layout on to a tuple of Region, lines + """ + render_width = options.max_width + render_height = options.height or console.height + region_map = self._make_region_map(render_width, render_height) + layout_regions = [ + (layout, region) + for layout, region in region_map.items() + if not layout.children + ] + render_map: Dict["Layout", "LayoutRender"] = {} + render_lines = console.render_lines + update_dimensions = options.update_dimensions + + for layout, region in layout_regions: + lines = render_lines( + layout.renderable, update_dimensions(region.width, region.height) + ) + render_map[layout] = LayoutRender(region, lines) + return render_map + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + with self._lock: + width = options.max_width or console.width + height = options.height or console.height + render_map = self.render(console, options.update_dimensions(width, height)) + self._render_map = render_map + layout_lines: List[List[Segment]] = [[] for _ in range(height)] + _islice = islice + for region, lines in render_map.values(): + _x, y, _layout_width, layout_height = region + for row, line in zip( + _islice(layout_lines, y, y + layout_height), lines + ): + row.extend(line) + + new_line = Segment.line() + for layout_row in layout_lines: + yield from layout_row + yield new_line + + +if __name__ == "__main__": + from pip._vendor.rich.console import Console + + console = Console() + layout = Layout() + + layout.split_column( + Layout(name="header", size=3), + Layout(ratio=1, name="main"), + Layout(size=10, name="footer"), + ) + + layout["main"].split_row(Layout(name="side"), Layout(name="body", ratio=2)) + + layout["body"].split_row(Layout(name="content", ratio=2), Layout(name="s2")) + + layout["s2"].split_column( + Layout(name="top"), Layout(name="middle"), Layout(name="bottom") + ) + + layout["side"].split_column(Layout(layout.tree, name="left1"), Layout(name="left2")) + + layout["content"].update("foo") + + console.print(layout) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/live.py b/myenv/Lib/site-packages/pip/_vendor/rich/live.py new file mode 100644 index 0000000..f0529a7 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/live.py @@ -0,0 +1,375 @@ +import sys +from threading import Event, RLock, Thread +from types import TracebackType +from typing import IO, Any, Callable, List, Optional, TextIO, Type, cast + +from . import get_console +from .console import Console, ConsoleRenderable, RenderableType, RenderHook +from .control import Control +from .file_proxy import FileProxy +from .jupyter import JupyterMixin +from .live_render import LiveRender, VerticalOverflowMethod +from .screen import Screen +from .text import Text + + +class _RefreshThread(Thread): + """A thread that calls refresh() at regular intervals.""" + + def __init__(self, live: "Live", refresh_per_second: float) -> None: + self.live = live + self.refresh_per_second = refresh_per_second + self.done = Event() + super().__init__(daemon=True) + + def stop(self) -> None: + self.done.set() + + def run(self) -> None: + while not self.done.wait(1 / self.refresh_per_second): + with self.live._lock: + if not self.done.is_set(): + self.live.refresh() + + +class Live(JupyterMixin, RenderHook): + """Renders an auto-updating live display of any given renderable. + + Args: + renderable (RenderableType, optional): The renderable to live display. Defaults to displaying nothing. + console (Console, optional): Optional Console instance. Default will an internal Console instance writing to stdout. + screen (bool, optional): Enable alternate screen mode. Defaults to False. + auto_refresh (bool, optional): Enable auto refresh. If disabled, you will need to call `refresh()` or `update()` with refresh flag. Defaults to True + refresh_per_second (float, optional): Number of times per second to refresh the live display. Defaults to 4. + transient (bool, optional): Clear the renderable on exit (has no effect when screen=True). Defaults to False. + redirect_stdout (bool, optional): Enable redirection of stdout, so ``print`` may be used. Defaults to True. + redirect_stderr (bool, optional): Enable redirection of stderr. Defaults to True. + vertical_overflow (VerticalOverflowMethod, optional): How to handle renderable when it is too tall for the console. Defaults to "ellipsis". + get_renderable (Callable[[], RenderableType], optional): Optional callable to get renderable. Defaults to None. + """ + + def __init__( + self, + renderable: Optional[RenderableType] = None, + *, + console: Optional[Console] = None, + screen: bool = False, + auto_refresh: bool = True, + refresh_per_second: float = 4, + transient: bool = False, + redirect_stdout: bool = True, + redirect_stderr: bool = True, + vertical_overflow: VerticalOverflowMethod = "ellipsis", + get_renderable: Optional[Callable[[], RenderableType]] = None, + ) -> None: + assert refresh_per_second > 0, "refresh_per_second must be > 0" + self._renderable = renderable + self.console = console if console is not None else get_console() + self._screen = screen + self._alt_screen = False + + self._redirect_stdout = redirect_stdout + self._redirect_stderr = redirect_stderr + self._restore_stdout: Optional[IO[str]] = None + self._restore_stderr: Optional[IO[str]] = None + + self._lock = RLock() + self.ipy_widget: Optional[Any] = None + self.auto_refresh = auto_refresh + self._started: bool = False + self.transient = True if screen else transient + + self._refresh_thread: Optional[_RefreshThread] = None + self.refresh_per_second = refresh_per_second + + self.vertical_overflow = vertical_overflow + self._get_renderable = get_renderable + self._live_render = LiveRender( + self.get_renderable(), vertical_overflow=vertical_overflow + ) + + @property + def is_started(self) -> bool: + """Check if live display has been started.""" + return self._started + + def get_renderable(self) -> RenderableType: + renderable = ( + self._get_renderable() + if self._get_renderable is not None + else self._renderable + ) + return renderable or "" + + def start(self, refresh: bool = False) -> None: + """Start live rendering display. + + Args: + refresh (bool, optional): Also refresh. Defaults to False. + """ + with self._lock: + if self._started: + return + self.console.set_live(self) + self._started = True + if self._screen: + self._alt_screen = self.console.set_alt_screen(True) + self.console.show_cursor(False) + self._enable_redirect_io() + self.console.push_render_hook(self) + if refresh: + try: + self.refresh() + except Exception: + # If refresh fails, we want to stop the redirection of sys.stderr, + # so the error stacktrace is properly displayed in the terminal. + # (or, if the code that calls Rich captures the exception and wants to display something, + # let this be displayed in the terminal). + self.stop() + raise + if self.auto_refresh: + self._refresh_thread = _RefreshThread(self, self.refresh_per_second) + self._refresh_thread.start() + + def stop(self) -> None: + """Stop live rendering display.""" + with self._lock: + if not self._started: + return + self.console.clear_live() + self._started = False + + if self.auto_refresh and self._refresh_thread is not None: + self._refresh_thread.stop() + self._refresh_thread = None + # allow it to fully render on the last even if overflow + self.vertical_overflow = "visible" + with self.console: + try: + if not self._alt_screen and not self.console.is_jupyter: + self.refresh() + finally: + self._disable_redirect_io() + self.console.pop_render_hook() + if not self._alt_screen and self.console.is_terminal: + self.console.line() + self.console.show_cursor(True) + if self._alt_screen: + self.console.set_alt_screen(False) + + if self.transient and not self._alt_screen: + self.console.control(self._live_render.restore_cursor()) + if self.ipy_widget is not None and self.transient: + self.ipy_widget.close() # pragma: no cover + + def __enter__(self) -> "Live": + self.start(refresh=self._renderable is not None) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.stop() + + def _enable_redirect_io(self) -> None: + """Enable redirecting of stdout / stderr.""" + if self.console.is_terminal or self.console.is_jupyter: + if self._redirect_stdout and not isinstance(sys.stdout, FileProxy): + self._restore_stdout = sys.stdout + sys.stdout = cast("TextIO", FileProxy(self.console, sys.stdout)) + if self._redirect_stderr and not isinstance(sys.stderr, FileProxy): + self._restore_stderr = sys.stderr + sys.stderr = cast("TextIO", FileProxy(self.console, sys.stderr)) + + def _disable_redirect_io(self) -> None: + """Disable redirecting of stdout / stderr.""" + if self._restore_stdout: + sys.stdout = cast("TextIO", self._restore_stdout) + self._restore_stdout = None + if self._restore_stderr: + sys.stderr = cast("TextIO", self._restore_stderr) + self._restore_stderr = None + + @property + def renderable(self) -> RenderableType: + """Get the renderable that is being displayed + + Returns: + RenderableType: Displayed renderable. + """ + renderable = self.get_renderable() + return Screen(renderable) if self._alt_screen else renderable + + def update(self, renderable: RenderableType, *, refresh: bool = False) -> None: + """Update the renderable that is being displayed + + Args: + renderable (RenderableType): New renderable to use. + refresh (bool, optional): Refresh the display. Defaults to False. + """ + if isinstance(renderable, str): + renderable = self.console.render_str(renderable) + with self._lock: + self._renderable = renderable + if refresh: + self.refresh() + + def refresh(self) -> None: + """Update the display of the Live Render.""" + with self._lock: + self._live_render.set_renderable(self.renderable) + if self.console.is_jupyter: # pragma: no cover + try: + from IPython.display import display + from ipywidgets import Output + except ImportError: + import warnings + + warnings.warn('install "ipywidgets" for Jupyter support') + else: + if self.ipy_widget is None: + self.ipy_widget = Output() + display(self.ipy_widget) + + with self.ipy_widget: + self.ipy_widget.clear_output(wait=True) + self.console.print(self._live_render.renderable) + elif self.console.is_terminal and not self.console.is_dumb_terminal: + with self.console: + self.console.print(Control()) + elif ( + not self._started and not self.transient + ): # if it is finished allow files or dumb-terminals to see final result + with self.console: + self.console.print(Control()) + + def process_renderables( + self, renderables: List[ConsoleRenderable] + ) -> List[ConsoleRenderable]: + """Process renderables to restore cursor and display progress.""" + self._live_render.vertical_overflow = self.vertical_overflow + if self.console.is_interactive: + # lock needs acquiring as user can modify live_render renderable at any time unlike in Progress. + with self._lock: + reset = ( + Control.home() + if self._alt_screen + else self._live_render.position_cursor() + ) + renderables = [reset, *renderables, self._live_render] + elif ( + not self._started and not self.transient + ): # if it is finished render the final output for files or dumb_terminals + renderables = [*renderables, self._live_render] + + return renderables + + +if __name__ == "__main__": # pragma: no cover + import random + import time + from itertools import cycle + from typing import Dict, List, Tuple + + from .align import Align + from .console import Console + from .live import Live as Live + from .panel import Panel + from .rule import Rule + from .syntax import Syntax + from .table import Table + + console = Console() + + syntax = Syntax( + '''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''', + "python", + line_numbers=True, + ) + + table = Table("foo", "bar", "baz") + table.add_row("1", "2", "3") + + progress_renderables = [ + "You can make the terminal shorter and taller to see the live table hide" + "Text may be printed while the progress bars are rendering.", + Panel("In fact, [i]any[/i] renderable will work"), + "Such as [magenta]tables[/]...", + table, + "Pretty printed structures...", + {"type": "example", "text": "Pretty printed"}, + "Syntax...", + syntax, + Rule("Give it a try!"), + ] + + examples = cycle(progress_renderables) + + exchanges = [ + "SGD", + "MYR", + "EUR", + "USD", + "AUD", + "JPY", + "CNH", + "HKD", + "CAD", + "INR", + "DKK", + "GBP", + "RUB", + "NZD", + "MXN", + "IDR", + "TWD", + "THB", + "VND", + ] + with Live(console=console) as live_table: + exchange_rate_dict: Dict[Tuple[str, str], float] = {} + + for index in range(100): + select_exchange = exchanges[index % len(exchanges)] + + for exchange in exchanges: + if exchange == select_exchange: + continue + time.sleep(0.4) + if random.randint(0, 10) < 1: + console.log(next(examples)) + exchange_rate_dict[(select_exchange, exchange)] = 200 / ( + (random.random() * 320) + 1 + ) + if len(exchange_rate_dict) > len(exchanges) - 1: + exchange_rate_dict.pop(list(exchange_rate_dict.keys())[0]) + table = Table(title="Exchange Rates") + + table.add_column("Source Currency") + table.add_column("Destination Currency") + table.add_column("Exchange Rate") + + for (source, dest), exchange_rate in exchange_rate_dict.items(): + table.add_row( + source, + dest, + Text( + f"{exchange_rate:.4f}", + style="red" if exchange_rate < 1.0 else "green", + ), + ) + + live_table.update(Align.center(table)) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/live_render.py b/myenv/Lib/site-packages/pip/_vendor/rich/live_render.py new file mode 100644 index 0000000..e20745d --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/live_render.py @@ -0,0 +1,112 @@ +import sys +from typing import Optional, Tuple + +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 +from .console import Console, ConsoleOptions, RenderableType, RenderResult +from .control import Control +from .segment import ControlType, Segment +from .style import StyleType +from .text import Text + +VerticalOverflowMethod = Literal["crop", "ellipsis", "visible"] + + +class LiveRender: + """Creates a renderable that may be updated. + + Args: + renderable (RenderableType): Any renderable object. + style (StyleType, optional): An optional style to apply to the renderable. Defaults to "". + """ + + def __init__( + self, + renderable: RenderableType, + style: StyleType = "", + vertical_overflow: VerticalOverflowMethod = "ellipsis", + ) -> None: + self.renderable = renderable + self.style = style + self.vertical_overflow = vertical_overflow + self._shape: Optional[Tuple[int, int]] = None + + def set_renderable(self, renderable: RenderableType) -> None: + """Set a new renderable. + + Args: + renderable (RenderableType): Any renderable object, including str. + """ + self.renderable = renderable + + def position_cursor(self) -> Control: + """Get control codes to move cursor to beginning of live render. + + Returns: + Control: A control instance that may be printed. + """ + if self._shape is not None: + _, height = self._shape + return Control( + ControlType.CARRIAGE_RETURN, + (ControlType.ERASE_IN_LINE, 2), + *( + ( + (ControlType.CURSOR_UP, 1), + (ControlType.ERASE_IN_LINE, 2), + ) + * (height - 1) + ) + ) + return Control() + + def restore_cursor(self) -> Control: + """Get control codes to clear the render and restore the cursor to its previous position. + + Returns: + Control: A Control instance that may be printed. + """ + if self._shape is not None: + _, height = self._shape + return Control( + ControlType.CARRIAGE_RETURN, + *((ControlType.CURSOR_UP, 1), (ControlType.ERASE_IN_LINE, 2)) * height + ) + return Control() + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + renderable = self.renderable + style = console.get_style(self.style) + lines = console.render_lines(renderable, options, style=style, pad=False) + shape = Segment.get_shape(lines) + + _, height = shape + if height > options.size.height: + if self.vertical_overflow == "crop": + lines = lines[: options.size.height] + shape = Segment.get_shape(lines) + elif self.vertical_overflow == "ellipsis": + lines = lines[: (options.size.height - 1)] + overflow_text = Text( + "...", + overflow="crop", + justify="center", + end="", + style="live.ellipsis", + ) + lines.append(list(console.render(overflow_text))) + shape = Segment.get_shape(lines) + self._shape = shape + + new_line = Segment.line() + for last, line in loop_last(lines): + yield from line + if not last: + yield new_line diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/logging.py b/myenv/Lib/site-packages/pip/_vendor/rich/logging.py new file mode 100644 index 0000000..91368dd --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/logging.py @@ -0,0 +1,289 @@ +import logging +from datetime import datetime +from logging import Handler, LogRecord +from pathlib import Path +from types import ModuleType +from typing import ClassVar, Iterable, List, Optional, Type, Union + +from pip._vendor.rich._null_file import NullFile + +from . import get_console +from ._log_render import FormatTimeCallable, LogRender +from .console import Console, ConsoleRenderable +from .highlighter import Highlighter, ReprHighlighter +from .text import Text +from .traceback import Traceback + + +class RichHandler(Handler): + """A logging handler that renders output with Rich. The time / level / message and file are displayed in columns. + The level is color coded, and the message is syntax highlighted. + + Note: + Be careful when enabling console markup in log messages if you have configured logging for libraries not + under your control. If a dependency writes messages containing square brackets, it may not produce the intended output. + + Args: + level (Union[int, str], optional): Log level. Defaults to logging.NOTSET. + console (:class:`~rich.console.Console`, optional): Optional console instance to write logs. + Default will use a global console instance writing to stdout. + show_time (bool, optional): Show a column for the time. Defaults to True. + omit_repeated_times (bool, optional): Omit repetition of the same time. Defaults to True. + show_level (bool, optional): Show a column for the level. Defaults to True. + show_path (bool, optional): Show the path to the original log call. Defaults to True. + enable_link_path (bool, optional): Enable terminal link of path column to file. Defaults to True. + highlighter (Highlighter, optional): Highlighter to style log messages, or None to use ReprHighlighter. Defaults to None. + markup (bool, optional): Enable console markup in log messages. Defaults to False. + rich_tracebacks (bool, optional): Enable rich tracebacks with syntax highlighting and formatting. Defaults to False. + tracebacks_width (Optional[int], optional): Number of characters used to render tracebacks, or None for full width. Defaults to None. + tracebacks_extra_lines (int, optional): Additional lines of code to render tracebacks, or None for full width. Defaults to None. + tracebacks_theme (str, optional): Override pygments theme used in traceback. + tracebacks_word_wrap (bool, optional): Enable word wrapping of long tracebacks lines. Defaults to True. + tracebacks_show_locals (bool, optional): Enable display of locals in tracebacks. Defaults to False. + tracebacks_suppress (Sequence[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback. + locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to 10. + locals_max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to 80. + 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 %X] ". + keywords (List[str], optional): List of words to highlight instead of ``RichHandler.KEYWORDS``. + """ + + KEYWORDS: ClassVar[Optional[List[str]]] = [ + "GET", + "POST", + "HEAD", + "PUT", + "DELETE", + "OPTIONS", + "TRACE", + "PATCH", + ] + HIGHLIGHTER_CLASS: ClassVar[Type[Highlighter]] = ReprHighlighter + + def __init__( + self, + level: Union[int, str] = logging.NOTSET, + console: Optional[Console] = None, + *, + show_time: bool = True, + omit_repeated_times: bool = True, + show_level: bool = True, + show_path: bool = True, + enable_link_path: bool = True, + highlighter: Optional[Highlighter] = None, + markup: bool = False, + rich_tracebacks: bool = False, + tracebacks_width: Optional[int] = None, + tracebacks_extra_lines: int = 3, + tracebacks_theme: Optional[str] = None, + tracebacks_word_wrap: bool = True, + tracebacks_show_locals: bool = False, + tracebacks_suppress: Iterable[Union[str, ModuleType]] = (), + locals_max_length: int = 10, + locals_max_string: int = 80, + log_time_format: Union[str, FormatTimeCallable] = "[%x %X]", + keywords: Optional[List[str]] = None, + ) -> None: + super().__init__(level=level) + self.console = console or get_console() + self.highlighter = highlighter or self.HIGHLIGHTER_CLASS() + self._log_render = LogRender( + show_time=show_time, + show_level=show_level, + show_path=show_path, + time_format=log_time_format, + omit_repeated_times=omit_repeated_times, + level_width=None, + ) + self.enable_link_path = enable_link_path + self.markup = markup + self.rich_tracebacks = rich_tracebacks + self.tracebacks_width = tracebacks_width + self.tracebacks_extra_lines = tracebacks_extra_lines + self.tracebacks_theme = tracebacks_theme + self.tracebacks_word_wrap = tracebacks_word_wrap + self.tracebacks_show_locals = tracebacks_show_locals + self.tracebacks_suppress = tracebacks_suppress + self.locals_max_length = locals_max_length + self.locals_max_string = locals_max_string + self.keywords = keywords + + def get_level_text(self, record: LogRecord) -> Text: + """Get the level name from the record. + + Args: + record (LogRecord): LogRecord instance. + + Returns: + Text: A tuple of the style and level name. + """ + level_name = record.levelname + level_text = Text.styled( + level_name.ljust(8), f"logging.level.{level_name.lower()}" + ) + return level_text + + def emit(self, record: LogRecord) -> None: + """Invoked by logging.""" + message = self.format(record) + traceback = None + if ( + self.rich_tracebacks + and record.exc_info + and record.exc_info != (None, None, None) + ): + exc_type, exc_value, exc_traceback = record.exc_info + assert exc_type is not None + assert exc_value is not None + traceback = Traceback.from_exception( + exc_type, + exc_value, + exc_traceback, + width=self.tracebacks_width, + extra_lines=self.tracebacks_extra_lines, + theme=self.tracebacks_theme, + word_wrap=self.tracebacks_word_wrap, + show_locals=self.tracebacks_show_locals, + locals_max_length=self.locals_max_length, + locals_max_string=self.locals_max_string, + suppress=self.tracebacks_suppress, + ) + message = record.getMessage() + if self.formatter: + record.message = record.getMessage() + formatter = self.formatter + if hasattr(formatter, "usesTime") and formatter.usesTime(): + record.asctime = formatter.formatTime(record, formatter.datefmt) + message = formatter.formatMessage(record) + + message_renderable = self.render_message(record, message) + log_renderable = self.render( + record=record, traceback=traceback, message_renderable=message_renderable + ) + if isinstance(self.console.file, NullFile): + # Handles pythonw, where stdout/stderr are null, and we return NullFile + # instance from Console.file. In this case, we still want to make a log record + # even though we won't be writing anything to a file. + self.handleError(record) + else: + try: + self.console.print(log_renderable) + except Exception: + self.handleError(record) + + def render_message(self, record: LogRecord, message: str) -> "ConsoleRenderable": + """Render message text in to Text. + + Args: + record (LogRecord): logging Record. + message (str): String containing log message. + + Returns: + ConsoleRenderable: Renderable to display log message. + """ + use_markup = getattr(record, "markup", self.markup) + message_text = Text.from_markup(message) if use_markup else Text(message) + + highlighter = getattr(record, "highlighter", self.highlighter) + if highlighter: + message_text = highlighter(message_text) + + if self.keywords is None: + self.keywords = self.KEYWORDS + + if self.keywords: + message_text.highlight_words(self.keywords, "logging.keyword") + + return message_text + + def render( + self, + *, + record: LogRecord, + traceback: Optional[Traceback], + message_renderable: "ConsoleRenderable", + ) -> "ConsoleRenderable": + """Render log for display. + + Args: + record (LogRecord): logging Record. + traceback (Optional[Traceback]): Traceback instance or None for no Traceback. + message_renderable (ConsoleRenderable): Renderable (typically Text) containing log message contents. + + Returns: + ConsoleRenderable: Renderable to display log. + """ + path = Path(record.pathname).name + level = self.get_level_text(record) + time_format = None if self.formatter is None else self.formatter.datefmt + log_time = datetime.fromtimestamp(record.created) + + log_renderable = self._log_render( + self.console, + [message_renderable] if not traceback else [message_renderable, traceback], + log_time=log_time, + time_format=time_format, + level=level, + path=path, + line_no=record.lineno, + link_path=record.pathname if self.enable_link_path else None, + ) + return log_renderable + + +if __name__ == "__main__": # pragma: no cover + from time import sleep + + FORMAT = "%(message)s" + # FORMAT = "%(asctime)-15s - %(levelname)s - %(message)s" + logging.basicConfig( + level="NOTSET", + format=FORMAT, + datefmt="[%X]", + handlers=[RichHandler(rich_tracebacks=True, tracebacks_show_locals=True)], + ) + log = logging.getLogger("rich") + + log.info("Server starting...") + log.info("Listening on http://127.0.0.1:8080") + sleep(1) + + log.info("GET /index.html 200 1298") + log.info("GET /imgs/backgrounds/back1.jpg 200 54386") + log.info("GET /css/styles.css 200 54386") + log.warning("GET /favicon.ico 404 242") + sleep(1) + + log.debug( + "JSONRPC request\n--> %r\n<-- %r", + { + "version": "1.1", + "method": "confirmFruitPurchase", + "params": [["apple", "orange", "mangoes", "pomelo"], 1.123], + "id": "194521489", + }, + {"version": "1.1", "result": True, "error": None, "id": "194521489"}, + ) + log.debug( + "Loading configuration file /adasd/asdasd/qeqwe/qwrqwrqwr/sdgsdgsdg/werwerwer/dfgerert/ertertert/ertetert/werwerwer" + ) + log.error("Unable to find 'pomelo' in database!") + log.info("POST /jsonrpc/ 200 65532") + log.info("POST /admin/ 401 42234") + log.warning("password was rejected for admin site.") + + def divide() -> None: + number = 1 + divisor = 0 + foos = ["foo"] * 100 + log.debug("in divide") + try: + number / divisor + except: + log.exception("An error of some kind occurred!") + + divide() + sleep(1) + log.critical("Out of memory!") + log.info("Server exited with code=-1") + log.info("[bold]EXITING...[/bold]", extra=dict(markup=True)) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/markup.py b/myenv/Lib/site-packages/pip/_vendor/rich/markup.py new file mode 100644 index 0000000..f617187 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/markup.py @@ -0,0 +1,251 @@ +import re +from ast import literal_eval +from operator import attrgetter +from typing import Callable, Iterable, List, Match, NamedTuple, Optional, Tuple, Union + +from ._emoji_replace import _emoji_replace +from .emoji import EmojiVariant +from .errors import MarkupError +from .style import Style +from .text import Span, Text + +RE_TAGS = re.compile( + r"""((\\*)\[([a-z#/@][^[]*?)])""", + re.VERBOSE, +) + +RE_HANDLER = re.compile(r"^([\w.]*?)(\(.*?\))?$") + + +class Tag(NamedTuple): + """A tag in console markup.""" + + name: str + """The tag name. e.g. 'bold'.""" + parameters: Optional[str] + """Any additional parameters after the name.""" + + def __str__(self) -> str: + return ( + self.name if self.parameters is None else f"{self.name} {self.parameters}" + ) + + @property + def markup(self) -> str: + """Get the string representation of this tag.""" + return ( + f"[{self.name}]" + if self.parameters is None + else f"[{self.name}={self.parameters}]" + ) + + +_ReStringMatch = Match[str] # regex match object +_ReSubCallable = Callable[[_ReStringMatch], str] # Callable invoked by re.sub +_EscapeSubMethod = Callable[[_ReSubCallable, str], str] # Sub method of a compiled re + + +def escape( + markup: str, + _escape: _EscapeSubMethod = re.compile(r"(\\*)(\[[a-z#/@][^[]*?])").sub, +) -> str: + """Escapes text so that it won't be interpreted as markup. + + Args: + markup (str): Content to be inserted in to markup. + + Returns: + str: Markup with square brackets escaped. + """ + + def escape_backslashes(match: Match[str]) -> str: + """Called by re.sub replace matches.""" + backslashes, text = match.groups() + return f"{backslashes}{backslashes}\\{text}" + + markup = _escape(escape_backslashes, markup) + if markup.endswith("\\") and not markup.endswith("\\\\"): + return markup + "\\" + + return markup + + +def _parse(markup: str) -> Iterable[Tuple[int, Optional[str], Optional[Tag]]]: + """Parse markup in to an iterable of tuples of (position, text, tag). + + Args: + markup (str): A string containing console markup + + """ + position = 0 + _divmod = divmod + _Tag = Tag + for match in RE_TAGS.finditer(markup): + full_text, escapes, tag_text = match.groups() + start, end = match.span() + if start > position: + yield start, markup[position:start], None + if escapes: + backslashes, escaped = _divmod(len(escapes), 2) + if backslashes: + # Literal backslashes + yield start, "\\" * backslashes, None + start += backslashes * 2 + if escaped: + # Escape of tag + yield start, full_text[len(escapes) :], None + position = end + continue + text, equals, parameters = tag_text.partition("=") + yield start, None, _Tag(text, parameters if equals else None) + position = end + if position < len(markup): + yield position, markup[position:], None + + +def render( + markup: str, + style: Union[str, Style] = "", + emoji: bool = True, + emoji_variant: Optional[EmojiVariant] = None, +) -> Text: + """Render console markup in to a Text instance. + + Args: + markup (str): A string containing console markup. + style: (Union[str, Style]): The style to use. + emoji (bool, optional): Also render emoji code. Defaults to True. + emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None. + + + Raises: + MarkupError: If there is a syntax error in the markup. + + Returns: + Text: A test instance. + """ + emoji_replace = _emoji_replace + if "[" not in markup: + return Text( + emoji_replace(markup, default_variant=emoji_variant) if emoji else markup, + style=style, + ) + text = Text(style=style) + append = text.append + normalize = Style.normalize + + style_stack: List[Tuple[int, Tag]] = [] + pop = style_stack.pop + + spans: List[Span] = [] + append_span = spans.append + + _Span = Span + _Tag = Tag + + def pop_style(style_name: str) -> Tuple[int, Tag]: + """Pop tag matching given style name.""" + for index, (_, tag) in enumerate(reversed(style_stack), 1): + if tag.name == style_name: + return pop(-index) + raise KeyError(style_name) + + for position, plain_text, tag in _parse(markup): + if plain_text is not None: + # Handle open brace escapes, where the brace is not part of a tag. + plain_text = plain_text.replace("\\[", "[") + append(emoji_replace(plain_text) if emoji else plain_text) + elif tag is not None: + if tag.name.startswith("/"): # Closing tag + style_name = tag.name[1:].strip() + + if style_name: # explicit close + style_name = normalize(style_name) + try: + start, open_tag = pop_style(style_name) + except KeyError: + raise MarkupError( + f"closing tag '{tag.markup}' at position {position} doesn't match any open tag" + ) from None + else: # implicit close + try: + start, open_tag = pop() + except IndexError: + raise MarkupError( + f"closing tag '[/]' at position {position} has nothing to close" + ) from None + + if open_tag.name.startswith("@"): + if open_tag.parameters: + handler_name = "" + parameters = open_tag.parameters.strip() + handler_match = RE_HANDLER.match(parameters) + if handler_match is not None: + handler_name, match_parameters = handler_match.groups() + parameters = ( + "()" if match_parameters is None else match_parameters + ) + + try: + meta_params = literal_eval(parameters) + except SyntaxError as error: + raise MarkupError( + f"error parsing {parameters!r} in {open_tag.parameters!r}; {error.msg}" + ) + except Exception as error: + raise MarkupError( + f"error parsing {open_tag.parameters!r}; {error}" + ) from None + + if handler_name: + meta_params = ( + handler_name, + meta_params + if isinstance(meta_params, tuple) + else (meta_params,), + ) + + else: + meta_params = () + + append_span( + _Span( + start, len(text), Style(meta={open_tag.name: meta_params}) + ) + ) + else: + append_span(_Span(start, len(text), str(open_tag))) + + else: # Opening tag + normalized_tag = _Tag(normalize(tag.name), tag.parameters) + style_stack.append((len(text), normalized_tag)) + + text_length = len(text) + while style_stack: + start, tag = style_stack.pop() + style = str(tag) + if style: + append_span(_Span(start, text_length, style)) + + text.spans = sorted(spans[::-1], key=attrgetter("start")) + return text + + +if __name__ == "__main__": # pragma: no cover + MARKUP = [ + "[red]Hello World[/red]", + "[magenta]Hello [b]World[/b]", + "[bold]Bold[italic] bold and italic [/bold]italic[/italic]", + "Click [link=https://www.willmcgugan.com]here[/link] to visit my Blog", + ":warning-emoji: [bold red blink] DANGER![/]", + ] + + from pip._vendor.rich import print + from pip._vendor.rich.table import Table + + grid = Table("Markup", "Result", padding=(0, 1)) + + for markup in MARKUP: + grid.add_row(Text(markup), markup) + + print(grid) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/measure.py b/myenv/Lib/site-packages/pip/_vendor/rich/measure.py new file mode 100644 index 0000000..a508ffa --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/measure.py @@ -0,0 +1,151 @@ +from operator import itemgetter +from typing import TYPE_CHECKING, Callable, NamedTuple, Optional, Sequence + +from . import errors +from .protocol import is_renderable, rich_cast + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType + + +class Measurement(NamedTuple): + """Stores the minimum and maximum widths (in characters) required to render an object.""" + + minimum: int + """Minimum number of cells required to render.""" + maximum: int + """Maximum number of cells required to render.""" + + @property + def span(self) -> int: + """Get difference between maximum and minimum.""" + return self.maximum - self.minimum + + def normalize(self) -> "Measurement": + """Get measurement that ensures that minimum <= maximum and minimum >= 0 + + Returns: + Measurement: A normalized measurement. + """ + minimum, maximum = self + minimum = min(max(0, minimum), maximum) + return Measurement(max(0, minimum), max(0, max(minimum, maximum))) + + def with_maximum(self, width: int) -> "Measurement": + """Get a RenderableWith where the widths are <= width. + + Args: + width (int): Maximum desired width. + + Returns: + Measurement: New Measurement object. + """ + minimum, maximum = self + return Measurement(min(minimum, width), min(maximum, width)) + + def with_minimum(self, width: int) -> "Measurement": + """Get a RenderableWith where the widths are >= width. + + Args: + width (int): Minimum desired width. + + Returns: + Measurement: New Measurement object. + """ + minimum, maximum = self + width = max(0, width) + return Measurement(max(minimum, width), max(maximum, width)) + + def clamp( + self, min_width: Optional[int] = None, max_width: Optional[int] = None + ) -> "Measurement": + """Clamp a measurement within the specified range. + + Args: + min_width (int): Minimum desired width, or ``None`` for no minimum. Defaults to None. + max_width (int): Maximum desired width, or ``None`` for no maximum. Defaults to None. + + Returns: + Measurement: New Measurement object. + """ + measurement = self + if min_width is not None: + measurement = measurement.with_minimum(min_width) + if max_width is not None: + measurement = measurement.with_maximum(max_width) + return measurement + + @classmethod + def get( + cls, console: "Console", options: "ConsoleOptions", renderable: "RenderableType" + ) -> "Measurement": + """Get a measurement for a renderable. + + Args: + console (~rich.console.Console): Console instance. + options (~rich.console.ConsoleOptions): Console options. + renderable (RenderableType): An object that may be rendered with Rich. + + Raises: + errors.NotRenderableError: If the object is not renderable. + + Returns: + Measurement: Measurement object containing range of character widths required to render the object. + """ + _max_width = options.max_width + if _max_width < 1: + return Measurement(0, 0) + if isinstance(renderable, str): + renderable = console.render_str( + renderable, markup=options.markup, highlight=False + ) + renderable = rich_cast(renderable) + if is_renderable(renderable): + get_console_width: Optional[ + Callable[["Console", "ConsoleOptions"], "Measurement"] + ] = getattr(renderable, "__rich_measure__", None) + if get_console_width is not None: + render_width = ( + get_console_width(console, options) + .normalize() + .with_maximum(_max_width) + ) + if render_width.maximum < 1: + return Measurement(0, 0) + return render_width.normalize() + else: + return Measurement(0, _max_width) + else: + raise errors.NotRenderableError( + f"Unable to get render width for {renderable!r}; " + "a str, Segment, or object with __rich_console__ method is required" + ) + + +def measure_renderables( + console: "Console", + options: "ConsoleOptions", + renderables: Sequence["RenderableType"], +) -> "Measurement": + """Get a measurement that would fit a number of renderables. + + Args: + console (~rich.console.Console): Console instance. + options (~rich.console.ConsoleOptions): Console options. + renderables (Iterable[RenderableType]): One or more renderable objects. + + Returns: + Measurement: Measurement object containing range of character widths required to + contain all given renderables. + """ + if not renderables: + return Measurement(0, 0) + get_measurement = Measurement.get + measurements = [ + get_measurement(console, options, renderable) for renderable in renderables + ] + measured_width = Measurement( + max(measurements, key=itemgetter(0)).minimum, + max(measurements, key=itemgetter(1)).maximum, + ) + return measured_width diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/padding.py b/myenv/Lib/site-packages/pip/_vendor/rich/padding.py new file mode 100644 index 0000000..1b2204f --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/padding.py @@ -0,0 +1,141 @@ +from typing import cast, List, Optional, Tuple, TYPE_CHECKING, Union + +if TYPE_CHECKING: + from .console import ( + Console, + ConsoleOptions, + RenderableType, + RenderResult, + ) +from .jupyter import JupyterMixin +from .measure import Measurement +from .style import Style +from .segment import Segment + + +PaddingDimensions = Union[int, Tuple[int], Tuple[int, int], Tuple[int, int, int, int]] + + +class Padding(JupyterMixin): + """Draw space around content. + + Example: + >>> print(Padding("Hello", (2, 4), style="on blue")) + + Args: + renderable (RenderableType): String or other renderable. + pad (Union[int, Tuple[int]]): Padding for top, right, bottom, and left borders. + May be specified with 1, 2, or 4 integers (CSS style). + style (Union[str, Style], optional): Style for padding characters. Defaults to "none". + expand (bool, optional): Expand padding to fit available width. Defaults to True. + """ + + def __init__( + self, + renderable: "RenderableType", + pad: "PaddingDimensions" = (0, 0, 0, 0), + *, + style: Union[str, Style] = "none", + expand: bool = True, + ): + self.renderable = renderable + self.top, self.right, self.bottom, self.left = self.unpack(pad) + self.style = style + self.expand = expand + + @classmethod + def indent(cls, renderable: "RenderableType", level: int) -> "Padding": + """Make padding instance to render an indent. + + Args: + renderable (RenderableType): String or other renderable. + level (int): Number of characters to indent. + + Returns: + Padding: A Padding instance. + """ + + return Padding(renderable, pad=(0, 0, 0, level), expand=False) + + @staticmethod + def unpack(pad: "PaddingDimensions") -> Tuple[int, int, int, int]: + """Unpack padding specified in CSS style.""" + if isinstance(pad, int): + return (pad, pad, pad, pad) + if len(pad) == 1: + _pad = pad[0] + return (_pad, _pad, _pad, _pad) + if len(pad) == 2: + pad_top, pad_right = cast(Tuple[int, int], pad) + return (pad_top, pad_right, pad_top, pad_right) + if len(pad) == 4: + top, right, bottom, left = cast(Tuple[int, int, int, int], pad) + return (top, right, bottom, left) + raise ValueError(f"1, 2 or 4 integers required for padding; {len(pad)} given") + + def __repr__(self) -> str: + return f"Padding({self.renderable!r}, ({self.top},{self.right},{self.bottom},{self.left}))" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + style = console.get_style(self.style) + if self.expand: + width = options.max_width + else: + width = min( + Measurement.get(console, options, self.renderable).maximum + + self.left + + self.right, + options.max_width, + ) + render_options = options.update_width(width - self.left - self.right) + if render_options.height is not None: + render_options = render_options.update_height( + height=render_options.height - self.top - self.bottom + ) + lines = console.render_lines( + self.renderable, render_options, style=style, pad=True + ) + _Segment = Segment + + left = _Segment(" " * self.left, style) if self.left else None + right = ( + [_Segment(f'{" " * self.right}', style), _Segment.line()] + if self.right + else [_Segment.line()] + ) + blank_line: Optional[List[Segment]] = None + if self.top: + blank_line = [_Segment(f'{" " * width}\n', style)] + yield from blank_line * self.top + if left: + for line in lines: + yield left + yield from line + yield from right + else: + for line in lines: + yield from line + yield from right + if self.bottom: + blank_line = blank_line or [_Segment(f'{" " * width}\n', style)] + yield from blank_line * self.bottom + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + max_width = options.max_width + extra_width = self.left + self.right + if max_width - extra_width < 1: + return Measurement(max_width, max_width) + measure_min, measure_max = Measurement.get(console, options, self.renderable) + measurement = Measurement(measure_min + extra_width, measure_max + extra_width) + measurement = measurement.with_maximum(max_width) + return measurement + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich import print + + print(Padding("Hello, World", (2, 4), style="on blue")) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/pager.py b/myenv/Lib/site-packages/pip/_vendor/rich/pager.py new file mode 100644 index 0000000..a3f7aa6 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/pager.py @@ -0,0 +1,34 @@ +from abc import ABC, abstractmethod +from typing import Any + + +class Pager(ABC): + """Base class for a pager.""" + + @abstractmethod + def show(self, content: str) -> None: + """Show content in pager. + + Args: + content (str): Content to be displayed. + """ + + +class SystemPager(Pager): + """Uses the pager installed on the system.""" + + def _pager(self, content: str) -> Any: #  pragma: no cover + return __import__("pydoc").pager(content) + + def show(self, content: str) -> None: + """Use the same pager used by pydoc.""" + self._pager(content) + + +if __name__ == "__main__": # pragma: no cover + from .__main__ import make_test_card + from .console import Console + + console = Console() + with console.pager(styles=True): + console.print(make_test_card()) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/palette.py b/myenv/Lib/site-packages/pip/_vendor/rich/palette.py new file mode 100644 index 0000000..fa0c4dd --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/palette.py @@ -0,0 +1,100 @@ +from math import sqrt +from functools import lru_cache +from typing import Sequence, Tuple, TYPE_CHECKING + +from .color_triplet import ColorTriplet + +if TYPE_CHECKING: + from pip._vendor.rich.table import Table + + +class Palette: + """A palette of available colors.""" + + def __init__(self, colors: Sequence[Tuple[int, int, int]]): + self._colors = colors + + def __getitem__(self, number: int) -> ColorTriplet: + return ColorTriplet(*self._colors[number]) + + def __rich__(self) -> "Table": + from pip._vendor.rich.color import Color + from pip._vendor.rich.style import Style + from pip._vendor.rich.text import Text + from pip._vendor.rich.table import Table + + table = Table( + "index", + "RGB", + "Color", + title="Palette", + caption=f"{len(self._colors)} colors", + highlight=True, + caption_justify="right", + ) + for index, color in enumerate(self._colors): + table.add_row( + str(index), + repr(color), + Text(" " * 16, style=Style(bgcolor=Color.from_rgb(*color))), + ) + return table + + # This is somewhat inefficient and needs caching + @lru_cache(maxsize=1024) + def match(self, color: Tuple[int, int, int]) -> int: + """Find a color from a palette that most closely matches a given color. + + Args: + color (Tuple[int, int, int]): RGB components in range 0 > 255. + + Returns: + int: Index of closes matching color. + """ + red1, green1, blue1 = color + _sqrt = sqrt + get_color = self._colors.__getitem__ + + def get_color_distance(index: int) -> float: + """Get the distance to a color.""" + red2, green2, blue2 = get_color(index) + red_mean = (red1 + red2) // 2 + red = red1 - red2 + green = green1 - green2 + blue = blue1 - blue2 + return _sqrt( + (((512 + red_mean) * red * red) >> 8) + + 4 * green * green + + (((767 - red_mean) * blue * blue) >> 8) + ) + + min_index = min(range(len(self._colors)), key=get_color_distance) + return min_index + + +if __name__ == "__main__": # pragma: no cover + import colorsys + from typing import Iterable + from pip._vendor.rich.color import Color + from pip._vendor.rich.console import Console, ConsoleOptions + from pip._vendor.rich.segment import Segment + from pip._vendor.rich.style import Style + + class ColorBox: + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> Iterable[Segment]: + height = console.size.height - 3 + for y in range(0, height): + for x in range(options.max_width): + h = x / options.max_width + l = y / (height + 1) + r1, g1, b1 = colorsys.hls_to_rgb(h, l, 1.0) + r2, g2, b2 = colorsys.hls_to_rgb(h, l + (1 / height / 2), 1.0) + bgcolor = Color.from_rgb(r1 * 255, g1 * 255, b1 * 255) + color = Color.from_rgb(r2 * 255, g2 * 255, b2 * 255) + yield Segment("▄", Style(color=color, bgcolor=bgcolor)) + yield Segment.line() + + console = Console() + console.print(ColorBox()) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/panel.py b/myenv/Lib/site-packages/pip/_vendor/rich/panel.py new file mode 100644 index 0000000..95f4c84 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/panel.py @@ -0,0 +1,312 @@ +from typing import TYPE_CHECKING, Optional + +from .align import AlignMethod +from .box import ROUNDED, Box +from .cells import cell_len +from .jupyter import JupyterMixin +from .measure import Measurement, measure_renderables +from .padding import Padding, PaddingDimensions +from .segment import Segment +from .style import Style, StyleType +from .text import Text, TextType + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + + +class Panel(JupyterMixin): + """A console renderable that draws a border around its contents. + + Example: + >>> console.print(Panel("Hello, World!")) + + Args: + renderable (RenderableType): A console renderable object. + box (Box, optional): A Box instance that defines the look of the border (see :ref:`appendix_box`. + Defaults to box.ROUNDED. + safe_box (bool, optional): Disable box characters that don't display on windows legacy terminal with *raster* fonts. Defaults to True. + expand (bool, optional): If True the panel will stretch to fill the console + width, otherwise it will be sized to fit the contents. Defaults to True. + style (str, optional): The style of the panel (border and contents). Defaults to "none". + border_style (str, optional): The style of the border. Defaults to "none". + width (Optional[int], optional): Optional width of panel. Defaults to None to auto-detect. + height (Optional[int], optional): Optional height of panel. Defaults to None to auto-detect. + padding (Optional[PaddingDimensions]): Optional padding around renderable. Defaults to 0. + highlight (bool, optional): Enable automatic highlighting of panel title (if str). Defaults to False. + """ + + def __init__( + self, + renderable: "RenderableType", + box: Box = ROUNDED, + *, + title: Optional[TextType] = None, + title_align: AlignMethod = "center", + subtitle: Optional[TextType] = None, + subtitle_align: AlignMethod = "center", + safe_box: Optional[bool] = None, + expand: bool = True, + style: StyleType = "none", + border_style: StyleType = "none", + width: Optional[int] = None, + height: Optional[int] = None, + padding: PaddingDimensions = (0, 1), + highlight: bool = False, + ) -> None: + self.renderable = renderable + self.box = box + self.title = title + self.title_align: AlignMethod = title_align + self.subtitle = subtitle + self.subtitle_align = subtitle_align + self.safe_box = safe_box + self.expand = expand + self.style = style + self.border_style = border_style + self.width = width + self.height = height + self.padding = padding + self.highlight = highlight + + @classmethod + def fit( + cls, + renderable: "RenderableType", + box: Box = ROUNDED, + *, + title: Optional[TextType] = None, + title_align: AlignMethod = "center", + subtitle: Optional[TextType] = None, + subtitle_align: AlignMethod = "center", + safe_box: Optional[bool] = None, + style: StyleType = "none", + border_style: StyleType = "none", + width: Optional[int] = None, + height: Optional[int] = None, + padding: PaddingDimensions = (0, 1), + highlight: bool = False, + ) -> "Panel": + """An alternative constructor that sets expand=False.""" + return cls( + renderable, + box, + title=title, + title_align=title_align, + subtitle=subtitle, + subtitle_align=subtitle_align, + safe_box=safe_box, + style=style, + border_style=border_style, + width=width, + height=height, + padding=padding, + highlight=highlight, + expand=False, + ) + + @property + def _title(self) -> Optional[Text]: + if self.title: + title_text = ( + Text.from_markup(self.title) + if isinstance(self.title, str) + else self.title.copy() + ) + title_text.end = "" + title_text.plain = title_text.plain.replace("\n", " ") + title_text.no_wrap = True + title_text.expand_tabs() + title_text.pad(1) + return title_text + return None + + @property + def _subtitle(self) -> Optional[Text]: + if self.subtitle: + subtitle_text = ( + Text.from_markup(self.subtitle) + if isinstance(self.subtitle, str) + else self.subtitle.copy() + ) + subtitle_text.end = "" + subtitle_text.plain = subtitle_text.plain.replace("\n", " ") + subtitle_text.no_wrap = True + subtitle_text.expand_tabs() + subtitle_text.pad(1) + return subtitle_text + return None + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + _padding = Padding.unpack(self.padding) + renderable = ( + Padding(self.renderable, _padding) if any(_padding) else self.renderable + ) + style = console.get_style(self.style) + border_style = style + console.get_style(self.border_style) + width = ( + options.max_width + if self.width is None + else min(options.max_width, self.width) + ) + + safe_box: bool = console.safe_box if self.safe_box is None else self.safe_box + box = self.box.substitute(options, safe=safe_box) + + def align_text( + text: Text, width: int, align: str, character: str, style: Style + ) -> Text: + """Gets new aligned text. + + Args: + text (Text): Title or subtitle text. + width (int): Desired width. + align (str): Alignment. + character (str): Character for alignment. + style (Style): Border style + + Returns: + Text: New text instance + """ + text = text.copy() + text.truncate(width) + excess_space = width - cell_len(text.plain) + if excess_space: + if align == "left": + return Text.assemble( + text, + (character * excess_space, style), + no_wrap=True, + end="", + ) + elif align == "center": + left = excess_space // 2 + return Text.assemble( + (character * left, style), + text, + (character * (excess_space - left), style), + no_wrap=True, + end="", + ) + else: + return Text.assemble( + (character * excess_space, style), + text, + no_wrap=True, + end="", + ) + return text + + title_text = self._title + if title_text is not None: + title_text.stylize_before(border_style) + + child_width = ( + width - 2 + if self.expand + else console.measure( + renderable, options=options.update_width(width - 2) + ).maximum + ) + child_height = self.height or options.height or None + if child_height: + child_height -= 2 + if title_text is not None: + child_width = min( + options.max_width - 2, max(child_width, title_text.cell_len + 2) + ) + + width = child_width + 2 + child_options = options.update( + width=child_width, height=child_height, highlight=self.highlight + ) + lines = console.render_lines(renderable, child_options, style=style) + + line_start = Segment(box.mid_left, border_style) + line_end = Segment(f"{box.mid_right}", border_style) + new_line = Segment.line() + if title_text is None or width <= 4: + yield Segment(box.get_top([width - 2]), border_style) + else: + title_text = align_text( + title_text, + width - 4, + self.title_align, + box.top, + border_style, + ) + yield Segment(box.top_left + box.top, border_style) + yield from console.render(title_text, child_options.update_width(width - 4)) + yield Segment(box.top + box.top_right, border_style) + + yield new_line + for line in lines: + yield line_start + yield from line + yield line_end + yield new_line + + subtitle_text = self._subtitle + if subtitle_text is not None: + subtitle_text.stylize_before(border_style) + + if subtitle_text is None or width <= 4: + yield Segment(box.get_bottom([width - 2]), border_style) + else: + subtitle_text = align_text( + subtitle_text, + width - 4, + self.subtitle_align, + box.bottom, + border_style, + ) + yield Segment(box.bottom_left + box.bottom, border_style) + yield from console.render( + subtitle_text, child_options.update_width(width - 4) + ) + yield Segment(box.bottom + box.bottom_right, border_style) + + yield new_line + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + _title = self._title + _, right, _, left = Padding.unpack(self.padding) + padding = left + right + renderables = [self.renderable, _title] if _title else [self.renderable] + + if self.width is None: + width = ( + measure_renderables( + console, + options.update_width(options.max_width - padding - 2), + renderables, + ).maximum + + padding + + 2 + ) + else: + width = self.width + return Measurement(width, width) + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + + c = Console() + + from .box import DOUBLE, ROUNDED + from .padding import Padding + + p = Panel( + "Hello, World!", + title="rich.Panel", + style="white on blue", + box=DOUBLE, + padding=1, + ) + + c.print() + c.print(p) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/pretty.py b/myenv/Lib/site-packages/pip/_vendor/rich/pretty.py new file mode 100644 index 0000000..9b9e3ba --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/pretty.py @@ -0,0 +1,995 @@ +import builtins +import collections +import dataclasses +import inspect +import os +import sys +from array import array +from collections import Counter, UserDict, UserList, defaultdict, deque +from dataclasses import dataclass, fields, is_dataclass +from inspect import isclass +from itertools import islice +from types import MappingProxyType +from typing import ( + TYPE_CHECKING, + Any, + Callable, + DefaultDict, + Dict, + Iterable, + List, + Optional, + Sequence, + Set, + Tuple, + Union, +) + +from pip._vendor.rich.repr import RichReprResult + +try: + import attr as _attr_module + + _has_attrs = hasattr(_attr_module, "ib") +except ImportError: # pragma: no cover + _has_attrs = False + +from . import get_console +from ._loop import loop_last +from ._pick import pick_bool +from .abc import RichRenderable +from .cells import cell_len +from .highlighter import ReprHighlighter +from .jupyter import JupyterMixin, JupyterRenderable +from .measure import Measurement +from .text import Text + +if TYPE_CHECKING: + from .console import ( + Console, + ConsoleOptions, + HighlighterType, + JustifyMethod, + OverflowMethod, + RenderResult, + ) + + +def _is_attr_object(obj: Any) -> bool: + """Check if an object was created with attrs module.""" + return _has_attrs and _attr_module.has(type(obj)) + + +def _get_attr_fields(obj: Any) -> Sequence["_attr_module.Attribute[Any]"]: + """Get fields for an attrs object.""" + return _attr_module.fields(type(obj)) if _has_attrs else [] + + +def _is_dataclass_repr(obj: object) -> bool: + """Check if an instance of a dataclass contains the default repr. + + Args: + obj (object): A dataclass instance. + + Returns: + bool: True if the default repr is used, False if there is a custom repr. + """ + # Digging in to a lot of internals here + # Catching all exceptions in case something is missing on a non CPython implementation + try: + return obj.__repr__.__code__.co_filename == dataclasses.__file__ + except Exception: # pragma: no coverage + return False + + +_dummy_namedtuple = collections.namedtuple("_dummy_namedtuple", []) + + +def _has_default_namedtuple_repr(obj: object) -> bool: + """Check if an instance of namedtuple contains the default repr + + Args: + obj (object): A namedtuple + + Returns: + bool: True if the default repr is used, False if there's a custom repr. + """ + obj_file = None + try: + obj_file = inspect.getfile(obj.__repr__) + except (OSError, TypeError): + # OSError handles case where object is defined in __main__ scope, e.g. REPL - no filename available. + # TypeError trapped defensively, in case of object without filename slips through. + pass + default_repr_file = inspect.getfile(_dummy_namedtuple.__repr__) + return obj_file == default_repr_file + + +def _ipy_display_hook( + value: Any, + console: Optional["Console"] = None, + overflow: "OverflowMethod" = "ignore", + crop: bool = False, + indent_guides: bool = False, + max_length: Optional[int] = None, + max_string: Optional[int] = None, + max_depth: Optional[int] = None, + expand_all: bool = False, +) -> Union[str, None]: + # needed here to prevent circular import: + from .console import ConsoleRenderable + + # always skip rich generated jupyter renderables or None values + if _safe_isinstance(value, JupyterRenderable) or value is None: + return None + + console = console or get_console() + + with console.capture() as capture: + # certain renderables should start on a new line + if _safe_isinstance(value, ConsoleRenderable): + console.line() + console.print( + value + if _safe_isinstance(value, RichRenderable) + else Pretty( + value, + overflow=overflow, + indent_guides=indent_guides, + max_length=max_length, + max_string=max_string, + max_depth=max_depth, + expand_all=expand_all, + margin=12, + ), + crop=crop, + new_line_start=True, + end="", + ) + # strip trailing newline, not usually part of a text repr + # I'm not sure if this should be prevented at a lower level + return capture.get().rstrip("\n") + + +def _safe_isinstance( + obj: object, class_or_tuple: Union[type, Tuple[type, ...]] +) -> bool: + """isinstance can fail in rare cases, for example types with no __class__""" + try: + return isinstance(obj, class_or_tuple) + except Exception: + return False + + +def install( + console: Optional["Console"] = None, + overflow: "OverflowMethod" = "ignore", + crop: bool = False, + indent_guides: bool = False, + max_length: Optional[int] = None, + max_string: Optional[int] = None, + max_depth: Optional[int] = None, + expand_all: bool = False, +) -> None: + """Install automatic pretty printing in the Python REPL. + + Args: + console (Console, optional): Console instance or ``None`` to use global console. Defaults to None. + overflow (Optional[OverflowMethod], optional): Overflow method. Defaults to "ignore". + crop (Optional[bool], optional): Enable cropping of long lines. Defaults to False. + indent_guides (bool, optional): Enable indentation guides. Defaults to False. + max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to None. + max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to None. + max_depth (int, optional): Maximum depth of nested data structures, or None for no maximum. Defaults to None. + expand_all (bool, optional): Expand all containers. Defaults to False. + max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100. + """ + from pip._vendor.rich import get_console + + console = console or get_console() + assert console is not None + + def display_hook(value: Any) -> None: + """Replacement sys.displayhook which prettifies objects with Rich.""" + if value is not None: + assert console is not None + builtins._ = None # type: ignore[attr-defined] + console.print( + value + if _safe_isinstance(value, RichRenderable) + else Pretty( + value, + overflow=overflow, + indent_guides=indent_guides, + max_length=max_length, + max_string=max_string, + max_depth=max_depth, + expand_all=expand_all, + ), + crop=crop, + ) + builtins._ = value # type: ignore[attr-defined] + + try: + ip = get_ipython() # type: ignore[name-defined] + except NameError: + sys.displayhook = display_hook + else: + from IPython.core.formatters import BaseFormatter + + class RichFormatter(BaseFormatter): # type: ignore[misc] + pprint: bool = True + + def __call__(self, value: Any) -> Any: + if self.pprint: + return _ipy_display_hook( + value, + console=get_console(), + overflow=overflow, + indent_guides=indent_guides, + max_length=max_length, + max_string=max_string, + max_depth=max_depth, + expand_all=expand_all, + ) + else: + return repr(value) + + # replace plain text formatter with rich formatter + rich_formatter = RichFormatter() + ip.display_formatter.formatters["text/plain"] = rich_formatter + + +class Pretty(JupyterMixin): + """A rich renderable that pretty prints an object. + + Args: + _object (Any): An object to pretty print. + highlighter (HighlighterType, optional): Highlighter object to apply to result, or None for ReprHighlighter. Defaults to None. + indent_size (int, optional): Number of spaces in indent. Defaults to 4. + justify (JustifyMethod, optional): Justify method, or None for default. Defaults to None. + overflow (OverflowMethod, optional): Overflow method, or None for default. Defaults to None. + no_wrap (Optional[bool], optional): Disable word wrapping. Defaults to False. + indent_guides (bool, optional): Enable indentation guides. Defaults to False. + max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to None. + max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to None. + max_depth (int, optional): Maximum depth of nested data structures, or None for no maximum. Defaults to None. + expand_all (bool, optional): Expand all containers. Defaults to False. + margin (int, optional): Subtrace a margin from width to force containers to expand earlier. Defaults to 0. + insert_line (bool, optional): Insert a new line if the output has multiple new lines. Defaults to False. + """ + + def __init__( + self, + _object: Any, + highlighter: Optional["HighlighterType"] = None, + *, + indent_size: int = 4, + justify: Optional["JustifyMethod"] = None, + overflow: Optional["OverflowMethod"] = None, + no_wrap: Optional[bool] = False, + indent_guides: bool = False, + max_length: Optional[int] = None, + max_string: Optional[int] = None, + max_depth: Optional[int] = None, + expand_all: bool = False, + margin: int = 0, + insert_line: bool = False, + ) -> None: + self._object = _object + self.highlighter = highlighter or ReprHighlighter() + self.indent_size = indent_size + self.justify: Optional["JustifyMethod"] = justify + self.overflow: Optional["OverflowMethod"] = overflow + self.no_wrap = no_wrap + self.indent_guides = indent_guides + self.max_length = max_length + self.max_string = max_string + self.max_depth = max_depth + self.expand_all = expand_all + self.margin = margin + self.insert_line = insert_line + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + pretty_str = pretty_repr( + self._object, + max_width=options.max_width - self.margin, + indent_size=self.indent_size, + max_length=self.max_length, + max_string=self.max_string, + max_depth=self.max_depth, + expand_all=self.expand_all, + ) + pretty_text = Text.from_ansi( + pretty_str, + justify=self.justify or options.justify, + overflow=self.overflow or options.overflow, + no_wrap=pick_bool(self.no_wrap, options.no_wrap), + style="pretty", + ) + pretty_text = ( + self.highlighter(pretty_text) + if pretty_text + else Text( + f"{type(self._object)}.__repr__ returned empty string", + style="dim italic", + ) + ) + if self.indent_guides and not options.ascii_only: + pretty_text = pretty_text.with_indent_guides( + self.indent_size, style="repr.indent" + ) + if self.insert_line and "\n" in pretty_text: + yield "" + yield pretty_text + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + pretty_str = pretty_repr( + self._object, + max_width=options.max_width, + indent_size=self.indent_size, + max_length=self.max_length, + max_string=self.max_string, + max_depth=self.max_depth, + expand_all=self.expand_all, + ) + text_width = ( + max(cell_len(line) for line in pretty_str.splitlines()) if pretty_str else 0 + ) + return Measurement(text_width, text_width) + + +def _get_braces_for_defaultdict(_object: DefaultDict[Any, Any]) -> Tuple[str, str, str]: + return ( + f"defaultdict({_object.default_factory!r}, {{", + "})", + f"defaultdict({_object.default_factory!r}, {{}})", + ) + + +def _get_braces_for_array(_object: "array[Any]") -> Tuple[str, str, str]: + return (f"array({_object.typecode!r}, [", "])", f"array({_object.typecode!r})") + + +_BRACES: Dict[type, Callable[[Any], Tuple[str, str, str]]] = { + os._Environ: lambda _object: ("environ({", "})", "environ({})"), + array: _get_braces_for_array, + defaultdict: _get_braces_for_defaultdict, + Counter: lambda _object: ("Counter({", "})", "Counter()"), + deque: lambda _object: ("deque([", "])", "deque()"), + dict: lambda _object: ("{", "}", "{}"), + UserDict: lambda _object: ("{", "}", "{}"), + frozenset: lambda _object: ("frozenset({", "})", "frozenset()"), + list: lambda _object: ("[", "]", "[]"), + UserList: lambda _object: ("[", "]", "[]"), + set: lambda _object: ("{", "}", "set()"), + tuple: lambda _object: ("(", ")", "()"), + MappingProxyType: lambda _object: ("mappingproxy({", "})", "mappingproxy({})"), +} +_CONTAINERS = tuple(_BRACES.keys()) +_MAPPING_CONTAINERS = (dict, os._Environ, MappingProxyType, UserDict) + + +def is_expandable(obj: Any) -> bool: + """Check if an object may be expanded by pretty print.""" + return ( + _safe_isinstance(obj, _CONTAINERS) + or (is_dataclass(obj)) + or (hasattr(obj, "__rich_repr__")) + or _is_attr_object(obj) + ) and not isclass(obj) + + +@dataclass +class Node: + """A node in a repr tree. May be atomic or a container.""" + + key_repr: str = "" + value_repr: str = "" + open_brace: str = "" + close_brace: str = "" + empty: str = "" + last: bool = False + is_tuple: bool = False + is_namedtuple: bool = False + children: Optional[List["Node"]] = None + key_separator: str = ": " + separator: str = ", " + + def iter_tokens(self) -> Iterable[str]: + """Generate tokens for this node.""" + if self.key_repr: + yield self.key_repr + yield self.key_separator + if self.value_repr: + yield self.value_repr + elif self.children is not None: + if self.children: + yield self.open_brace + if self.is_tuple and not self.is_namedtuple and len(self.children) == 1: + yield from self.children[0].iter_tokens() + yield "," + else: + for child in self.children: + yield from child.iter_tokens() + if not child.last: + yield self.separator + yield self.close_brace + else: + yield self.empty + + def check_length(self, start_length: int, max_length: int) -> bool: + """Check the length fits within a limit. + + Args: + start_length (int): Starting length of the line (indent, prefix, suffix). + max_length (int): Maximum length. + + Returns: + bool: True if the node can be rendered within max length, otherwise False. + """ + total_length = start_length + for token in self.iter_tokens(): + total_length += cell_len(token) + if total_length > max_length: + return False + return True + + def __str__(self) -> str: + repr_text = "".join(self.iter_tokens()) + return repr_text + + def render( + self, max_width: int = 80, indent_size: int = 4, expand_all: bool = False + ) -> str: + """Render the node to a pretty repr. + + Args: + max_width (int, optional): Maximum width of the repr. Defaults to 80. + indent_size (int, optional): Size of indents. Defaults to 4. + expand_all (bool, optional): Expand all levels. Defaults to False. + + Returns: + str: A repr string of the original object. + """ + lines = [_Line(node=self, is_root=True)] + line_no = 0 + while line_no < len(lines): + line = lines[line_no] + if line.expandable and not line.expanded: + if expand_all or not line.check_length(max_width): + lines[line_no : line_no + 1] = line.expand(indent_size) + line_no += 1 + + repr_str = "\n".join(str(line) for line in lines) + return repr_str + + +@dataclass +class _Line: + """A line in repr output.""" + + parent: Optional["_Line"] = None + is_root: bool = False + node: Optional[Node] = None + text: str = "" + suffix: str = "" + whitespace: str = "" + expanded: bool = False + last: bool = False + + @property + def expandable(self) -> bool: + """Check if the line may be expanded.""" + return bool(self.node is not None and self.node.children) + + def check_length(self, max_length: int) -> bool: + """Check this line fits within a given number of cells.""" + start_length = ( + len(self.whitespace) + cell_len(self.text) + cell_len(self.suffix) + ) + assert self.node is not None + return self.node.check_length(start_length, max_length) + + def expand(self, indent_size: int) -> Iterable["_Line"]: + """Expand this line by adding children on their own line.""" + node = self.node + assert node is not None + whitespace = self.whitespace + assert node.children + if node.key_repr: + new_line = yield _Line( + text=f"{node.key_repr}{node.key_separator}{node.open_brace}", + whitespace=whitespace, + ) + else: + new_line = yield _Line(text=node.open_brace, whitespace=whitespace) + child_whitespace = self.whitespace + " " * indent_size + tuple_of_one = node.is_tuple and len(node.children) == 1 + for last, child in loop_last(node.children): + separator = "," if tuple_of_one else node.separator + line = _Line( + parent=new_line, + node=child, + whitespace=child_whitespace, + suffix=separator, + last=last and not tuple_of_one, + ) + yield line + + yield _Line( + text=node.close_brace, + whitespace=whitespace, + suffix=self.suffix, + last=self.last, + ) + + def __str__(self) -> str: + if self.last: + return f"{self.whitespace}{self.text}{self.node or ''}" + else: + return ( + f"{self.whitespace}{self.text}{self.node or ''}{self.suffix.rstrip()}" + ) + + +def _is_namedtuple(obj: Any) -> bool: + """Checks if an object is most likely a namedtuple. It is possible + to craft an object that passes this check and isn't a namedtuple, but + there is only a minuscule chance of this happening unintentionally. + + Args: + obj (Any): The object to test + + Returns: + bool: True if the object is a namedtuple. False otherwise. + """ + try: + fields = getattr(obj, "_fields", None) + except Exception: + # Being very defensive - if we cannot get the attr then its not a namedtuple + return False + return isinstance(obj, tuple) and isinstance(fields, tuple) + + +def traverse( + _object: Any, + max_length: Optional[int] = None, + max_string: Optional[int] = None, + max_depth: Optional[int] = None, +) -> Node: + """Traverse object and generate a tree. + + Args: + _object (Any): Object to be traversed. + max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to None. + max_string (int, optional): Maximum length of string before truncating, or None to disable truncating. + Defaults to None. + max_depth (int, optional): Maximum depth of data structures, or None for no maximum. + Defaults to None. + + Returns: + Node: The root of a tree structure which can be used to render a pretty repr. + """ + + def to_repr(obj: Any) -> str: + """Get repr string for an object, but catch errors.""" + if ( + max_string is not None + and _safe_isinstance(obj, (bytes, str)) + and len(obj) > max_string + ): + truncated = len(obj) - max_string + obj_repr = f"{obj[:max_string]!r}+{truncated}" + else: + try: + obj_repr = repr(obj) + except Exception as error: + obj_repr = f"" + return obj_repr + + visited_ids: Set[int] = set() + push_visited = visited_ids.add + pop_visited = visited_ids.remove + + def _traverse(obj: Any, root: bool = False, depth: int = 0) -> Node: + """Walk the object depth first.""" + + obj_id = id(obj) + if obj_id in visited_ids: + # Recursion detected + return Node(value_repr="...") + + obj_type = type(obj) + children: List[Node] + reached_max_depth = max_depth is not None and depth >= max_depth + + def iter_rich_args(rich_args: Any) -> Iterable[Union[Any, Tuple[str, Any]]]: + for arg in rich_args: + if _safe_isinstance(arg, tuple): + if len(arg) == 3: + key, child, default = arg + if default == child: + continue + yield key, child + elif len(arg) == 2: + key, child = arg + yield key, child + elif len(arg) == 1: + yield arg[0] + else: + yield arg + + try: + fake_attributes = hasattr( + obj, "awehoi234_wdfjwljet234_234wdfoijsdfmmnxpi492" + ) + except Exception: + fake_attributes = False + + rich_repr_result: Optional[RichReprResult] = None + if not fake_attributes: + try: + if hasattr(obj, "__rich_repr__") and not isclass(obj): + rich_repr_result = obj.__rich_repr__() + except Exception: + pass + + if rich_repr_result is not None: + push_visited(obj_id) + angular = getattr(obj.__rich_repr__, "angular", False) + args = list(iter_rich_args(rich_repr_result)) + class_name = obj.__class__.__name__ + + if args: + children = [] + append = children.append + + if reached_max_depth: + if angular: + node = Node(value_repr=f"<{class_name}...>") + else: + node = Node(value_repr=f"{class_name}(...)") + else: + if angular: + node = Node( + open_brace=f"<{class_name} ", + close_brace=">", + children=children, + last=root, + separator=" ", + ) + else: + node = Node( + open_brace=f"{class_name}(", + close_brace=")", + children=children, + last=root, + ) + for last, arg in loop_last(args): + if _safe_isinstance(arg, tuple): + key, child = arg + child_node = _traverse(child, depth=depth + 1) + child_node.last = last + child_node.key_repr = key + child_node.key_separator = "=" + append(child_node) + else: + child_node = _traverse(arg, depth=depth + 1) + child_node.last = last + append(child_node) + else: + node = Node( + value_repr=f"<{class_name}>" if angular else f"{class_name}()", + children=[], + last=root, + ) + pop_visited(obj_id) + elif _is_attr_object(obj) and not fake_attributes: + push_visited(obj_id) + children = [] + append = children.append + + attr_fields = _get_attr_fields(obj) + if attr_fields: + if reached_max_depth: + node = Node(value_repr=f"{obj.__class__.__name__}(...)") + else: + node = Node( + open_brace=f"{obj.__class__.__name__}(", + close_brace=")", + children=children, + last=root, + ) + + def iter_attrs() -> ( + Iterable[Tuple[str, Any, Optional[Callable[[Any], str]]]] + ): + """Iterate over attr fields and values.""" + for attr in attr_fields: + if attr.repr: + try: + value = getattr(obj, attr.name) + except Exception as error: + # Can happen, albeit rarely + yield (attr.name, error, None) + else: + yield ( + attr.name, + value, + attr.repr if callable(attr.repr) else None, + ) + + for last, (name, value, repr_callable) in loop_last(iter_attrs()): + if repr_callable: + child_node = Node(value_repr=str(repr_callable(value))) + else: + child_node = _traverse(value, depth=depth + 1) + child_node.last = last + child_node.key_repr = name + child_node.key_separator = "=" + append(child_node) + else: + node = Node( + value_repr=f"{obj.__class__.__name__}()", children=[], last=root + ) + pop_visited(obj_id) + elif ( + is_dataclass(obj) + and not _safe_isinstance(obj, type) + and not fake_attributes + and _is_dataclass_repr(obj) + ): + push_visited(obj_id) + children = [] + append = children.append + if reached_max_depth: + node = Node(value_repr=f"{obj.__class__.__name__}(...)") + else: + node = Node( + open_brace=f"{obj.__class__.__name__}(", + close_brace=")", + children=children, + last=root, + empty=f"{obj.__class__.__name__}()", + ) + + for last, field in loop_last( + field for field in fields(obj) if field.repr + ): + child_node = _traverse(getattr(obj, field.name), depth=depth + 1) + child_node.key_repr = field.name + child_node.last = last + child_node.key_separator = "=" + append(child_node) + + pop_visited(obj_id) + elif _is_namedtuple(obj) and _has_default_namedtuple_repr(obj): + push_visited(obj_id) + class_name = obj.__class__.__name__ + if reached_max_depth: + # If we've reached the max depth, we still show the class name, but not its contents + node = Node( + value_repr=f"{class_name}(...)", + ) + else: + children = [] + append = children.append + node = Node( + open_brace=f"{class_name}(", + close_brace=")", + children=children, + empty=f"{class_name}()", + ) + for last, (key, value) in loop_last(obj._asdict().items()): + child_node = _traverse(value, depth=depth + 1) + child_node.key_repr = key + child_node.last = last + child_node.key_separator = "=" + append(child_node) + pop_visited(obj_id) + elif _safe_isinstance(obj, _CONTAINERS): + for container_type in _CONTAINERS: + if _safe_isinstance(obj, container_type): + obj_type = container_type + break + + push_visited(obj_id) + + open_brace, close_brace, empty = _BRACES[obj_type](obj) + + if reached_max_depth: + node = Node(value_repr=f"{open_brace}...{close_brace}") + elif obj_type.__repr__ != type(obj).__repr__: + node = Node(value_repr=to_repr(obj), last=root) + elif obj: + children = [] + node = Node( + open_brace=open_brace, + close_brace=close_brace, + children=children, + last=root, + ) + append = children.append + num_items = len(obj) + last_item_index = num_items - 1 + + if _safe_isinstance(obj, _MAPPING_CONTAINERS): + iter_items = iter(obj.items()) + if max_length is not None: + iter_items = islice(iter_items, max_length) + for index, (key, child) in enumerate(iter_items): + child_node = _traverse(child, depth=depth + 1) + child_node.key_repr = to_repr(key) + child_node.last = index == last_item_index + append(child_node) + else: + iter_values = iter(obj) + if max_length is not None: + iter_values = islice(iter_values, max_length) + for index, child in enumerate(iter_values): + child_node = _traverse(child, depth=depth + 1) + child_node.last = index == last_item_index + append(child_node) + if max_length is not None and num_items > max_length: + append(Node(value_repr=f"... +{num_items - max_length}", last=True)) + else: + node = Node(empty=empty, children=[], last=root) + + pop_visited(obj_id) + else: + node = Node(value_repr=to_repr(obj), last=root) + node.is_tuple = _safe_isinstance(obj, tuple) + node.is_namedtuple = _is_namedtuple(obj) + return node + + node = _traverse(_object, root=True) + return node + + +def pretty_repr( + _object: Any, + *, + max_width: int = 80, + indent_size: int = 4, + max_length: Optional[int] = None, + max_string: Optional[int] = None, + max_depth: Optional[int] = None, + expand_all: bool = False, +) -> str: + """Prettify repr string by expanding on to new lines to fit within a given width. + + Args: + _object (Any): Object to repr. + max_width (int, optional): Desired maximum width of repr string. Defaults to 80. + indent_size (int, optional): Number of spaces to indent. Defaults to 4. + max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to None. + max_string (int, optional): Maximum length of string before truncating, or None to disable truncating. + Defaults to None. + max_depth (int, optional): Maximum depth of nested data structure, or None for no depth. + Defaults to None. + expand_all (bool, optional): Expand all containers regardless of available width. Defaults to False. + + Returns: + str: A possibly multi-line representation of the object. + """ + + if _safe_isinstance(_object, Node): + node = _object + else: + node = traverse( + _object, max_length=max_length, max_string=max_string, max_depth=max_depth + ) + repr_str: str = node.render( + max_width=max_width, indent_size=indent_size, expand_all=expand_all + ) + return repr_str + + +def pprint( + _object: Any, + *, + console: Optional["Console"] = None, + indent_guides: bool = True, + max_length: Optional[int] = None, + max_string: Optional[int] = None, + max_depth: Optional[int] = None, + expand_all: bool = False, +) -> None: + """A convenience function for pretty printing. + + Args: + _object (Any): Object to pretty print. + console (Console, optional): Console instance, or None to use default. Defaults to None. + max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to None. + max_string (int, optional): Maximum length of strings before truncating, or None to disable. Defaults to None. + max_depth (int, optional): Maximum depth for nested data structures, or None for unlimited depth. Defaults to None. + indent_guides (bool, optional): Enable indentation guides. Defaults to True. + expand_all (bool, optional): Expand all containers. Defaults to False. + """ + _console = get_console() if console is None else console + _console.print( + Pretty( + _object, + max_length=max_length, + max_string=max_string, + max_depth=max_depth, + indent_guides=indent_guides, + expand_all=expand_all, + overflow="ignore", + ), + soft_wrap=True, + ) + + +if __name__ == "__main__": # pragma: no cover + + class BrokenRepr: + def __repr__(self) -> str: + 1 / 0 + return "this will fail" + + from typing import NamedTuple + + class StockKeepingUnit(NamedTuple): + name: str + description: str + price: float + category: str + reviews: List[str] + + d = defaultdict(int) + d["foo"] = 5 + data = { + "foo": [ + 1, + "Hello World!", + 100.123, + 323.232, + 432324.0, + {5, 6, 7, (1, 2, 3, 4), 8}, + ], + "bar": frozenset({1, 2, 3}), + "defaultdict": defaultdict( + list, {"crumble": ["apple", "rhubarb", "butter", "sugar", "flour"]} + ), + "counter": Counter( + [ + "apple", + "orange", + "pear", + "kumquat", + "kumquat", + "durian" * 100, + ] + ), + "atomic": (False, True, None), + "namedtuple": StockKeepingUnit( + "Sparkling British Spring Water", + "Carbonated spring water", + 0.9, + "water", + ["its amazing!", "its terrible!"], + ), + "Broken": BrokenRepr(), + } + data["foo"].append(data) # type: ignore[attr-defined] + + from pip._vendor.rich import print + + print(Pretty(data, indent_guides=True, max_string=20)) + + class Thing: + def __repr__(self) -> str: + return "Hello\x1b[38;5;239m World!" + + print(Pretty(Thing())) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/progress.py b/myenv/Lib/site-packages/pip/_vendor/rich/progress.py new file mode 100644 index 0000000..2420c24 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/progress.py @@ -0,0 +1,1699 @@ +import io +import sys +import typing +import warnings +from abc import ABC, abstractmethod +from collections import deque +from dataclasses import dataclass, field +from datetime import timedelta +from io import RawIOBase, UnsupportedOperation +from math import ceil +from mmap import mmap +from operator import length_hint +from os import PathLike, stat +from threading import Event, RLock, Thread +from types import TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + ContextManager, + Deque, + Dict, + Generic, + Iterable, + List, + NamedTuple, + NewType, + Optional, + Sequence, + TextIO, + Tuple, + Type, + TypeVar, + Union, +) + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + +from . import filesize, get_console +from .console import Console, Group, JustifyMethod, RenderableType +from .highlighter import Highlighter +from .jupyter import JupyterMixin +from .live import Live +from .progress_bar import ProgressBar +from .spinner import Spinner +from .style import StyleType +from .table import Column, Table +from .text import Text, TextType + +TaskID = NewType("TaskID", int) + +ProgressType = TypeVar("ProgressType") + +GetTimeCallable = Callable[[], float] + + +_I = typing.TypeVar("_I", TextIO, BinaryIO) + + +class _TrackThread(Thread): + """A thread to periodically update progress.""" + + def __init__(self, progress: "Progress", task_id: "TaskID", update_period: float): + self.progress = progress + self.task_id = task_id + self.update_period = update_period + self.done = Event() + + self.completed = 0 + super().__init__() + + def run(self) -> None: + task_id = self.task_id + advance = self.progress.advance + update_period = self.update_period + last_completed = 0 + wait = self.done.wait + while not wait(update_period): + completed = self.completed + if last_completed != completed: + advance(task_id, completed - last_completed) + last_completed = completed + + self.progress.update(self.task_id, completed=self.completed, refresh=True) + + def __enter__(self) -> "_TrackThread": + self.start() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.done.set() + self.join() + + +def track( + sequence: Union[Sequence[ProgressType], Iterable[ProgressType]], + description: str = "Working...", + total: Optional[float] = None, + auto_refresh: bool = True, + console: Optional[Console] = None, + transient: bool = False, + get_time: Optional[Callable[[], float]] = None, + refresh_per_second: float = 10, + style: StyleType = "bar.back", + complete_style: StyleType = "bar.complete", + finished_style: StyleType = "bar.finished", + pulse_style: StyleType = "bar.pulse", + update_period: float = 0.1, + disable: bool = False, + show_speed: bool = True, +) -> Iterable[ProgressType]: + """Track progress by iterating over a sequence. + + Args: + sequence (Iterable[ProgressType]): A sequence (must support "len") you wish to iterate over. + description (str, optional): Description of task show next to progress bar. Defaults to "Working". + total: (float, optional): Total number of steps. Default is len(sequence). + auto_refresh (bool, optional): Automatic refresh, disable to force a refresh after each iteration. Default is True. + transient: (bool, optional): Clear the progress on exit. Defaults to False. + console (Console, optional): Console to write to. Default creates internal Console instance. + refresh_per_second (float): Number of times per second to refresh the progress information. Defaults to 10. + style (StyleType, optional): Style for the bar background. Defaults to "bar.back". + complete_style (StyleType, optional): Style for the completed bar. Defaults to "bar.complete". + finished_style (StyleType, optional): Style for a finished bar. Defaults to "bar.finished". + pulse_style (StyleType, optional): Style for pulsing bars. Defaults to "bar.pulse". + update_period (float, optional): Minimum time (in seconds) between calls to update(). Defaults to 0.1. + disable (bool, optional): Disable display of progress. + show_speed (bool, optional): Show speed if total isn't known. Defaults to True. + Returns: + Iterable[ProgressType]: An iterable of the values in the sequence. + + """ + + columns: List["ProgressColumn"] = ( + [TextColumn("[progress.description]{task.description}")] if description else [] + ) + columns.extend( + ( + BarColumn( + style=style, + complete_style=complete_style, + finished_style=finished_style, + pulse_style=pulse_style, + ), + TaskProgressColumn(show_speed=show_speed), + TimeRemainingColumn(elapsed_when_finished=True), + ) + ) + progress = Progress( + *columns, + auto_refresh=auto_refresh, + console=console, + transient=transient, + get_time=get_time, + refresh_per_second=refresh_per_second or 10, + disable=disable, + ) + + with progress: + yield from progress.track( + sequence, total=total, description=description, update_period=update_period + ) + + +class _Reader(RawIOBase, BinaryIO): + """A reader that tracks progress while it's being read from.""" + + def __init__( + self, + handle: BinaryIO, + progress: "Progress", + task: TaskID, + close_handle: bool = True, + ) -> None: + self.handle = handle + self.progress = progress + self.task = task + self.close_handle = close_handle + self._closed = False + + def __enter__(self) -> "_Reader": + self.handle.__enter__() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.close() + + def __iter__(self) -> BinaryIO: + return self + + def __next__(self) -> bytes: + line = next(self.handle) + self.progress.advance(self.task, advance=len(line)) + return line + + @property + def closed(self) -> bool: + return self._closed + + def fileno(self) -> int: + return self.handle.fileno() + + def isatty(self) -> bool: + return self.handle.isatty() + + @property + def mode(self) -> str: + return self.handle.mode + + @property + def name(self) -> str: + return self.handle.name + + def readable(self) -> bool: + return self.handle.readable() + + def seekable(self) -> bool: + return self.handle.seekable() + + def writable(self) -> bool: + return False + + def read(self, size: int = -1) -> bytes: + block = self.handle.read(size) + self.progress.advance(self.task, advance=len(block)) + return block + + def readinto(self, b: Union[bytearray, memoryview, mmap]): # type: ignore[no-untyped-def, override] + n = self.handle.readinto(b) # type: ignore[attr-defined] + self.progress.advance(self.task, advance=n) + return n + + def readline(self, size: int = -1) -> bytes: # type: ignore[override] + line = self.handle.readline(size) + self.progress.advance(self.task, advance=len(line)) + return line + + def readlines(self, hint: int = -1) -> List[bytes]: + lines = self.handle.readlines(hint) + self.progress.advance(self.task, advance=sum(map(len, lines))) + return lines + + def close(self) -> None: + if self.close_handle: + self.handle.close() + self._closed = True + + def seek(self, offset: int, whence: int = 0) -> int: + pos = self.handle.seek(offset, whence) + self.progress.update(self.task, completed=pos) + return pos + + def tell(self) -> int: + return self.handle.tell() + + def write(self, s: Any) -> int: + raise UnsupportedOperation("write") + + +class _ReadContext(ContextManager[_I], Generic[_I]): + """A utility class to handle a context for both a reader and a progress.""" + + def __init__(self, progress: "Progress", reader: _I) -> None: + self.progress = progress + self.reader: _I = reader + + def __enter__(self) -> _I: + self.progress.start() + return self.reader.__enter__() + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.progress.stop() + self.reader.__exit__(exc_type, exc_val, exc_tb) + + +def wrap_file( + file: BinaryIO, + total: int, + *, + description: str = "Reading...", + auto_refresh: bool = True, + console: Optional[Console] = None, + transient: bool = False, + get_time: Optional[Callable[[], float]] = None, + refresh_per_second: float = 10, + style: StyleType = "bar.back", + complete_style: StyleType = "bar.complete", + finished_style: StyleType = "bar.finished", + pulse_style: StyleType = "bar.pulse", + disable: bool = False, +) -> ContextManager[BinaryIO]: + """Read bytes from a file while tracking progress. + + Args: + file (Union[str, PathLike[str], BinaryIO]): The path to the file to read, or a file-like object in binary mode. + total (int): Total number of bytes to read. + description (str, optional): Description of task show next to progress bar. Defaults to "Reading". + auto_refresh (bool, optional): Automatic refresh, disable to force a refresh after each iteration. Default is True. + transient: (bool, optional): Clear the progress on exit. Defaults to False. + console (Console, optional): Console to write to. Default creates internal Console instance. + refresh_per_second (float): Number of times per second to refresh the progress information. Defaults to 10. + style (StyleType, optional): Style for the bar background. Defaults to "bar.back". + complete_style (StyleType, optional): Style for the completed bar. Defaults to "bar.complete". + finished_style (StyleType, optional): Style for a finished bar. Defaults to "bar.finished". + pulse_style (StyleType, optional): Style for pulsing bars. Defaults to "bar.pulse". + disable (bool, optional): Disable display of progress. + Returns: + ContextManager[BinaryIO]: A context manager yielding a progress reader. + + """ + + columns: List["ProgressColumn"] = ( + [TextColumn("[progress.description]{task.description}")] if description else [] + ) + columns.extend( + ( + BarColumn( + style=style, + complete_style=complete_style, + finished_style=finished_style, + pulse_style=pulse_style, + ), + DownloadColumn(), + TimeRemainingColumn(), + ) + ) + progress = Progress( + *columns, + auto_refresh=auto_refresh, + console=console, + transient=transient, + get_time=get_time, + refresh_per_second=refresh_per_second or 10, + disable=disable, + ) + + reader = progress.wrap_file(file, total=total, description=description) + return _ReadContext(progress, reader) + + +@typing.overload +def open( + file: Union[str, "PathLike[str]", bytes], + mode: Union[Literal["rt"], Literal["r"]], + buffering: int = -1, + encoding: Optional[str] = None, + errors: Optional[str] = None, + newline: Optional[str] = None, + *, + total: Optional[int] = None, + description: str = "Reading...", + auto_refresh: bool = True, + console: Optional[Console] = None, + transient: bool = False, + get_time: Optional[Callable[[], float]] = None, + refresh_per_second: float = 10, + style: StyleType = "bar.back", + complete_style: StyleType = "bar.complete", + finished_style: StyleType = "bar.finished", + pulse_style: StyleType = "bar.pulse", + disable: bool = False, +) -> ContextManager[TextIO]: + pass + + +@typing.overload +def open( + file: Union[str, "PathLike[str]", bytes], + mode: Literal["rb"], + buffering: int = -1, + encoding: Optional[str] = None, + errors: Optional[str] = None, + newline: Optional[str] = None, + *, + total: Optional[int] = None, + description: str = "Reading...", + auto_refresh: bool = True, + console: Optional[Console] = None, + transient: bool = False, + get_time: Optional[Callable[[], float]] = None, + refresh_per_second: float = 10, + style: StyleType = "bar.back", + complete_style: StyleType = "bar.complete", + finished_style: StyleType = "bar.finished", + pulse_style: StyleType = "bar.pulse", + disable: bool = False, +) -> ContextManager[BinaryIO]: + pass + + +def open( + file: Union[str, "PathLike[str]", bytes], + mode: Union[Literal["rb"], Literal["rt"], Literal["r"]] = "r", + buffering: int = -1, + encoding: Optional[str] = None, + errors: Optional[str] = None, + newline: Optional[str] = None, + *, + total: Optional[int] = None, + description: str = "Reading...", + auto_refresh: bool = True, + console: Optional[Console] = None, + transient: bool = False, + get_time: Optional[Callable[[], float]] = None, + refresh_per_second: float = 10, + style: StyleType = "bar.back", + complete_style: StyleType = "bar.complete", + finished_style: StyleType = "bar.finished", + pulse_style: StyleType = "bar.pulse", + disable: bool = False, +) -> Union[ContextManager[BinaryIO], ContextManager[TextIO]]: + """Read bytes from a file while tracking progress. + + Args: + path (Union[str, PathLike[str], BinaryIO]): The path to the file to read, or a file-like object in binary mode. + mode (str): The mode to use to open the file. Only supports "r", "rb" or "rt". + buffering (int): The buffering strategy to use, see :func:`io.open`. + encoding (str, optional): The encoding to use when reading in text mode, see :func:`io.open`. + errors (str, optional): The error handling strategy for decoding errors, see :func:`io.open`. + newline (str, optional): The strategy for handling newlines in text mode, see :func:`io.open` + total: (int, optional): Total number of bytes to read. Must be provided if reading from a file handle. Default for a path is os.stat(file).st_size. + description (str, optional): Description of task show next to progress bar. Defaults to "Reading". + auto_refresh (bool, optional): Automatic refresh, disable to force a refresh after each iteration. Default is True. + transient: (bool, optional): Clear the progress on exit. Defaults to False. + console (Console, optional): Console to write to. Default creates internal Console instance. + refresh_per_second (float): Number of times per second to refresh the progress information. Defaults to 10. + style (StyleType, optional): Style for the bar background. Defaults to "bar.back". + complete_style (StyleType, optional): Style for the completed bar. Defaults to "bar.complete". + finished_style (StyleType, optional): Style for a finished bar. Defaults to "bar.finished". + pulse_style (StyleType, optional): Style for pulsing bars. Defaults to "bar.pulse". + disable (bool, optional): Disable display of progress. + encoding (str, optional): The encoding to use when reading in text mode. + + Returns: + ContextManager[BinaryIO]: A context manager yielding a progress reader. + + """ + + columns: List["ProgressColumn"] = ( + [TextColumn("[progress.description]{task.description}")] if description else [] + ) + columns.extend( + ( + BarColumn( + style=style, + complete_style=complete_style, + finished_style=finished_style, + pulse_style=pulse_style, + ), + DownloadColumn(), + TimeRemainingColumn(), + ) + ) + progress = Progress( + *columns, + auto_refresh=auto_refresh, + console=console, + transient=transient, + get_time=get_time, + refresh_per_second=refresh_per_second or 10, + disable=disable, + ) + + reader = progress.open( + file, + mode=mode, + buffering=buffering, + encoding=encoding, + errors=errors, + newline=newline, + total=total, + description=description, + ) + return _ReadContext(progress, reader) # type: ignore[return-value, type-var] + + +class ProgressColumn(ABC): + """Base class for a widget to use in progress display.""" + + max_refresh: Optional[float] = None + + def __init__(self, table_column: Optional[Column] = None) -> None: + self._table_column = table_column + self._renderable_cache: Dict[TaskID, Tuple[float, RenderableType]] = {} + self._update_time: Optional[float] = None + + def get_table_column(self) -> Column: + """Get a table column, used to build tasks table.""" + return self._table_column or Column() + + def __call__(self, task: "Task") -> RenderableType: + """Called by the Progress object to return a renderable for the given task. + + Args: + task (Task): An object containing information regarding the task. + + Returns: + RenderableType: Anything renderable (including str). + """ + current_time = task.get_time() + if self.max_refresh is not None and not task.completed: + try: + timestamp, renderable = self._renderable_cache[task.id] + except KeyError: + pass + else: + if timestamp + self.max_refresh > current_time: + return renderable + + renderable = self.render(task) + self._renderable_cache[task.id] = (current_time, renderable) + return renderable + + @abstractmethod + def render(self, task: "Task") -> RenderableType: + """Should return a renderable object.""" + + +class RenderableColumn(ProgressColumn): + """A column to insert an arbitrary column. + + Args: + renderable (RenderableType, optional): Any renderable. Defaults to empty string. + """ + + def __init__( + self, renderable: RenderableType = "", *, table_column: Optional[Column] = None + ): + self.renderable = renderable + super().__init__(table_column=table_column) + + def render(self, task: "Task") -> RenderableType: + return self.renderable + + +class SpinnerColumn(ProgressColumn): + """A column with a 'spinner' animation. + + Args: + spinner_name (str, optional): Name of spinner animation. Defaults to "dots". + style (StyleType, optional): Style of spinner. Defaults to "progress.spinner". + speed (float, optional): Speed factor of spinner. Defaults to 1.0. + finished_text (TextType, optional): Text used when task is finished. Defaults to " ". + """ + + def __init__( + self, + spinner_name: str = "dots", + style: Optional[StyleType] = "progress.spinner", + speed: float = 1.0, + finished_text: TextType = " ", + table_column: Optional[Column] = None, + ): + self.spinner = Spinner(spinner_name, style=style, speed=speed) + self.finished_text = ( + Text.from_markup(finished_text) + if isinstance(finished_text, str) + else finished_text + ) + super().__init__(table_column=table_column) + + def set_spinner( + self, + spinner_name: str, + spinner_style: Optional[StyleType] = "progress.spinner", + speed: float = 1.0, + ) -> None: + """Set a new spinner. + + Args: + spinner_name (str): Spinner name, see python -m rich.spinner. + spinner_style (Optional[StyleType], optional): Spinner style. Defaults to "progress.spinner". + speed (float, optional): Speed factor of spinner. Defaults to 1.0. + """ + self.spinner = Spinner(spinner_name, style=spinner_style, speed=speed) + + def render(self, task: "Task") -> RenderableType: + text = ( + self.finished_text + if task.finished + else self.spinner.render(task.get_time()) + ) + return text + + +class TextColumn(ProgressColumn): + """A column containing text.""" + + def __init__( + self, + text_format: str, + style: StyleType = "none", + justify: JustifyMethod = "left", + markup: bool = True, + highlighter: Optional[Highlighter] = None, + table_column: Optional[Column] = None, + ) -> None: + self.text_format = text_format + self.justify: JustifyMethod = justify + self.style = style + self.markup = markup + self.highlighter = highlighter + super().__init__(table_column=table_column or Column(no_wrap=True)) + + def render(self, task: "Task") -> Text: + _text = self.text_format.format(task=task) + if self.markup: + text = Text.from_markup(_text, style=self.style, justify=self.justify) + else: + text = Text(_text, style=self.style, justify=self.justify) + if self.highlighter: + self.highlighter.highlight(text) + return text + + +class BarColumn(ProgressColumn): + """Renders a visual progress bar. + + Args: + bar_width (Optional[int], optional): Width of bar or None for full width. Defaults to 40. + style (StyleType, optional): Style for the bar background. Defaults to "bar.back". + complete_style (StyleType, optional): Style for the completed bar. Defaults to "bar.complete". + finished_style (StyleType, optional): Style for a finished bar. Defaults to "bar.finished". + pulse_style (StyleType, optional): Style for pulsing bars. Defaults to "bar.pulse". + """ + + def __init__( + self, + bar_width: Optional[int] = 40, + style: StyleType = "bar.back", + complete_style: StyleType = "bar.complete", + finished_style: StyleType = "bar.finished", + pulse_style: StyleType = "bar.pulse", + table_column: Optional[Column] = None, + ) -> None: + self.bar_width = bar_width + self.style = style + self.complete_style = complete_style + self.finished_style = finished_style + self.pulse_style = pulse_style + super().__init__(table_column=table_column) + + def render(self, task: "Task") -> ProgressBar: + """Gets a progress bar widget for a task.""" + return ProgressBar( + total=max(0, task.total) if task.total is not None else None, + completed=max(0, task.completed), + width=None if self.bar_width is None else max(1, self.bar_width), + pulse=not task.started, + animation_time=task.get_time(), + style=self.style, + complete_style=self.complete_style, + finished_style=self.finished_style, + pulse_style=self.pulse_style, + ) + + +class TimeElapsedColumn(ProgressColumn): + """Renders time elapsed.""" + + def render(self, task: "Task") -> Text: + """Show time elapsed.""" + elapsed = task.finished_time if task.finished else task.elapsed + if elapsed is None: + return Text("-:--:--", style="progress.elapsed") + delta = timedelta(seconds=max(0, int(elapsed))) + return Text(str(delta), style="progress.elapsed") + + +class TaskProgressColumn(TextColumn): + """Show task progress as a percentage. + + Args: + text_format (str, optional): Format for percentage display. Defaults to "[progress.percentage]{task.percentage:>3.0f}%". + text_format_no_percentage (str, optional): Format if percentage is unknown. Defaults to "". + style (StyleType, optional): Style of output. Defaults to "none". + justify (JustifyMethod, optional): Text justification. Defaults to "left". + markup (bool, optional): Enable markup. Defaults to True. + highlighter (Optional[Highlighter], optional): Highlighter to apply to output. Defaults to None. + table_column (Optional[Column], optional): Table Column to use. Defaults to None. + show_speed (bool, optional): Show speed if total is unknown. Defaults to False. + """ + + def __init__( + self, + text_format: str = "[progress.percentage]{task.percentage:>3.0f}%", + text_format_no_percentage: str = "", + style: StyleType = "none", + justify: JustifyMethod = "left", + markup: bool = True, + highlighter: Optional[Highlighter] = None, + table_column: Optional[Column] = None, + show_speed: bool = False, + ) -> None: + self.text_format_no_percentage = text_format_no_percentage + self.show_speed = show_speed + super().__init__( + text_format=text_format, + style=style, + justify=justify, + markup=markup, + highlighter=highlighter, + table_column=table_column, + ) + + @classmethod + def render_speed(cls, speed: Optional[float]) -> Text: + """Render the speed in iterations per second. + + Args: + task (Task): A Task object. + + Returns: + Text: Text object containing the task speed. + """ + if speed is None: + return Text("", style="progress.percentage") + unit, suffix = filesize.pick_unit_and_suffix( + int(speed), + ["", "×10³", "×10⁶", "×10⁹", "×10¹²"], + 1000, + ) + data_speed = speed / unit + return Text(f"{data_speed:.1f}{suffix} it/s", style="progress.percentage") + + def render(self, task: "Task") -> Text: + if task.total is None and self.show_speed: + return self.render_speed(task.finished_speed or task.speed) + text_format = ( + self.text_format_no_percentage if task.total is None else self.text_format + ) + _text = text_format.format(task=task) + if self.markup: + text = Text.from_markup(_text, style=self.style, justify=self.justify) + else: + text = Text(_text, style=self.style, justify=self.justify) + if self.highlighter: + self.highlighter.highlight(text) + return text + + +class TimeRemainingColumn(ProgressColumn): + """Renders estimated time remaining. + + Args: + compact (bool, optional): Render MM:SS when time remaining is less than an hour. Defaults to False. + elapsed_when_finished (bool, optional): Render time elapsed when the task is finished. Defaults to False. + """ + + # Only refresh twice a second to prevent jitter + max_refresh = 0.5 + + def __init__( + self, + compact: bool = False, + elapsed_when_finished: bool = False, + table_column: Optional[Column] = None, + ): + self.compact = compact + self.elapsed_when_finished = elapsed_when_finished + super().__init__(table_column=table_column) + + def render(self, task: "Task") -> Text: + """Show time remaining.""" + if self.elapsed_when_finished and task.finished: + task_time = task.finished_time + style = "progress.elapsed" + else: + task_time = task.time_remaining + style = "progress.remaining" + + if task.total is None: + return Text("", style=style) + + if task_time is None: + return Text("--:--" if self.compact else "-:--:--", style=style) + + # Based on https://github.com/tqdm/tqdm/blob/master/tqdm/std.py + minutes, seconds = divmod(int(task_time), 60) + hours, minutes = divmod(minutes, 60) + + if self.compact and not hours: + formatted = f"{minutes:02d}:{seconds:02d}" + else: + formatted = f"{hours:d}:{minutes:02d}:{seconds:02d}" + + return Text(formatted, style=style) + + +class FileSizeColumn(ProgressColumn): + """Renders completed filesize.""" + + def render(self, task: "Task") -> Text: + """Show data completed.""" + data_size = filesize.decimal(int(task.completed)) + return Text(data_size, style="progress.filesize") + + +class TotalFileSizeColumn(ProgressColumn): + """Renders total filesize.""" + + def render(self, task: "Task") -> Text: + """Show data completed.""" + data_size = filesize.decimal(int(task.total)) if task.total is not None else "" + return Text(data_size, style="progress.filesize.total") + + +class MofNCompleteColumn(ProgressColumn): + """Renders completed count/total, e.g. ' 10/1000'. + + Best for bounded tasks with int quantities. + + Space pads the completed count so that progress length does not change as task progresses + past powers of 10. + + Args: + separator (str, optional): Text to separate completed and total values. Defaults to "/". + """ + + def __init__(self, separator: str = "/", table_column: Optional[Column] = None): + self.separator = separator + super().__init__(table_column=table_column) + + def render(self, task: "Task") -> Text: + """Show completed/total.""" + completed = int(task.completed) + total = int(task.total) if task.total is not None else "?" + total_width = len(str(total)) + return Text( + f"{completed:{total_width}d}{self.separator}{total}", + style="progress.download", + ) + + +class DownloadColumn(ProgressColumn): + """Renders file size downloaded and total, e.g. '0.5/2.3 GB'. + + Args: + binary_units (bool, optional): Use binary units, KiB, MiB etc. Defaults to False. + """ + + def __init__( + self, binary_units: bool = False, table_column: Optional[Column] = None + ) -> None: + self.binary_units = binary_units + super().__init__(table_column=table_column) + + def render(self, task: "Task") -> Text: + """Calculate common unit for completed and total.""" + completed = int(task.completed) + + unit_and_suffix_calculation_base = ( + int(task.total) if task.total is not None else completed + ) + if self.binary_units: + unit, suffix = filesize.pick_unit_and_suffix( + unit_and_suffix_calculation_base, + ["bytes", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB"], + 1024, + ) + else: + unit, suffix = filesize.pick_unit_and_suffix( + unit_and_suffix_calculation_base, + ["bytes", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"], + 1000, + ) + precision = 0 if unit == 1 else 1 + + completed_ratio = completed / unit + completed_str = f"{completed_ratio:,.{precision}f}" + + if task.total is not None: + total = int(task.total) + total_ratio = total / unit + total_str = f"{total_ratio:,.{precision}f}" + else: + total_str = "?" + + download_status = f"{completed_str}/{total_str} {suffix}" + download_text = Text(download_status, style="progress.download") + return download_text + + +class TransferSpeedColumn(ProgressColumn): + """Renders human readable transfer speed.""" + + def render(self, task: "Task") -> Text: + """Show data transfer speed.""" + speed = task.finished_speed or task.speed + if speed is None: + return Text("?", style="progress.data.speed") + data_speed = filesize.decimal(int(speed)) + return Text(f"{data_speed}/s", style="progress.data.speed") + + +class ProgressSample(NamedTuple): + """Sample of progress for a given time.""" + + timestamp: float + """Timestamp of sample.""" + completed: float + """Number of steps completed.""" + + +@dataclass +class Task: + """Information regarding a progress task. + + This object should be considered read-only outside of the :class:`~Progress` class. + + """ + + id: TaskID + """Task ID associated with this task (used in Progress methods).""" + + description: str + """str: Description of the task.""" + + total: Optional[float] + """Optional[float]: Total number of steps in this task.""" + + completed: float + """float: Number of steps completed""" + + _get_time: GetTimeCallable + """Callable to get the current time.""" + + finished_time: Optional[float] = None + """float: Time task was finished.""" + + visible: bool = True + """bool: Indicates if this task is visible in the progress display.""" + + fields: Dict[str, Any] = field(default_factory=dict) + """dict: Arbitrary fields passed in via Progress.update.""" + + start_time: Optional[float] = field(default=None, init=False, repr=False) + """Optional[float]: Time this task was started, or None if not started.""" + + stop_time: Optional[float] = field(default=None, init=False, repr=False) + """Optional[float]: Time this task was stopped, or None if not stopped.""" + + finished_speed: Optional[float] = None + """Optional[float]: The last speed for a finished task.""" + + _progress: Deque[ProgressSample] = field( + default_factory=lambda: deque(maxlen=1000), init=False, repr=False + ) + + _lock: RLock = field(repr=False, default_factory=RLock) + """Thread lock.""" + + def get_time(self) -> float: + """float: Get the current time, in seconds.""" + return self._get_time() + + @property + def started(self) -> bool: + """bool: Check if the task as started.""" + return self.start_time is not None + + @property + def remaining(self) -> Optional[float]: + """Optional[float]: Get the number of steps remaining, if a non-None total was set.""" + if self.total is None: + return None + return self.total - self.completed + + @property + def elapsed(self) -> Optional[float]: + """Optional[float]: Time elapsed since task was started, or ``None`` if the task hasn't started.""" + if self.start_time is None: + return None + if self.stop_time is not None: + return self.stop_time - self.start_time + return self.get_time() - self.start_time + + @property + def finished(self) -> bool: + """Check if the task has finished.""" + return self.finished_time is not None + + @property + def percentage(self) -> float: + """float: Get progress of task as a percentage. If a None total was set, returns 0""" + if not self.total: + return 0.0 + completed = (self.completed / self.total) * 100.0 + completed = min(100.0, max(0.0, completed)) + return completed + + @property + def speed(self) -> Optional[float]: + """Optional[float]: Get the estimated speed in steps per second.""" + if self.start_time is None: + return None + with self._lock: + progress = self._progress + if not progress: + return None + total_time = progress[-1].timestamp - progress[0].timestamp + if total_time == 0: + return None + iter_progress = iter(progress) + next(iter_progress) + total_completed = sum(sample.completed for sample in iter_progress) + speed = total_completed / total_time + return speed + + @property + def time_remaining(self) -> Optional[float]: + """Optional[float]: Get estimated time to completion, or ``None`` if no data.""" + if self.finished: + return 0.0 + speed = self.speed + if not speed: + return None + remaining = self.remaining + if remaining is None: + return None + estimate = ceil(remaining / speed) + return estimate + + def _reset(self) -> None: + """Reset progress.""" + self._progress.clear() + self.finished_time = None + self.finished_speed = None + + +class Progress(JupyterMixin): + """Renders an auto-updating progress bar(s). + + Args: + console (Console, optional): Optional Console instance. Default will an internal Console instance writing to stdout. + auto_refresh (bool, optional): Enable auto refresh. If disabled, you will need to call `refresh()`. + refresh_per_second (Optional[float], optional): Number of times per second to refresh the progress information or None to use default (10). Defaults to None. + speed_estimate_period: (float, optional): Period (in seconds) used to calculate the speed estimate. Defaults to 30. + transient: (bool, optional): Clear the progress on exit. Defaults to False. + redirect_stdout: (bool, optional): Enable redirection of stdout, so ``print`` may be used. Defaults to True. + redirect_stderr: (bool, optional): Enable redirection of stderr. Defaults to True. + get_time: (Callable, optional): A callable that gets the current time, or None to use Console.get_time. Defaults to None. + disable (bool, optional): Disable progress display. Defaults to False + expand (bool, optional): Expand tasks table to fit width. Defaults to False. + """ + + def __init__( + self, + *columns: Union[str, ProgressColumn], + console: Optional[Console] = None, + auto_refresh: bool = True, + refresh_per_second: float = 10, + speed_estimate_period: float = 30.0, + transient: bool = False, + redirect_stdout: bool = True, + redirect_stderr: bool = True, + get_time: Optional[GetTimeCallable] = None, + disable: bool = False, + expand: bool = False, + ) -> None: + assert refresh_per_second > 0, "refresh_per_second must be > 0" + self._lock = RLock() + self.columns = columns or self.get_default_columns() + self.speed_estimate_period = speed_estimate_period + + self.disable = disable + self.expand = expand + self._tasks: Dict[TaskID, Task] = {} + self._task_index: TaskID = TaskID(0) + self.live = Live( + console=console or get_console(), + auto_refresh=auto_refresh, + refresh_per_second=refresh_per_second, + transient=transient, + redirect_stdout=redirect_stdout, + redirect_stderr=redirect_stderr, + get_renderable=self.get_renderable, + ) + self.get_time = get_time or self.console.get_time + self.print = self.console.print + self.log = self.console.log + + @classmethod + def get_default_columns(cls) -> Tuple[ProgressColumn, ...]: + """Get the default columns used for a new Progress instance: + - a text column for the description (TextColumn) + - the bar itself (BarColumn) + - a text column showing completion percentage (TextColumn) + - an estimated-time-remaining column (TimeRemainingColumn) + If the Progress instance is created without passing a columns argument, + the default columns defined here will be used. + + You can also create a Progress instance using custom columns before + and/or after the defaults, as in this example: + + progress = Progress( + SpinnerColumn(), + *Progress.get_default_columns(), + "Elapsed:", + TimeElapsedColumn(), + ) + + This code shows the creation of a Progress display, containing + a spinner to the left, the default columns, and a labeled elapsed + time column. + """ + return ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + TaskProgressColumn(), + TimeRemainingColumn(), + ) + + @property + def console(self) -> Console: + return self.live.console + + @property + def tasks(self) -> List[Task]: + """Get a list of Task instances.""" + with self._lock: + return list(self._tasks.values()) + + @property + def task_ids(self) -> List[TaskID]: + """A list of task IDs.""" + with self._lock: + return list(self._tasks.keys()) + + @property + def finished(self) -> bool: + """Check if all tasks have been completed.""" + with self._lock: + if not self._tasks: + return True + return all(task.finished for task in self._tasks.values()) + + def start(self) -> None: + """Start the progress display.""" + if not self.disable: + self.live.start(refresh=True) + + def stop(self) -> None: + """Stop the progress display.""" + self.live.stop() + if not self.console.is_interactive: + self.console.print() + + def __enter__(self) -> "Progress": + self.start() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.stop() + + def track( + self, + sequence: Union[Iterable[ProgressType], Sequence[ProgressType]], + total: Optional[float] = None, + task_id: Optional[TaskID] = None, + description: str = "Working...", + update_period: float = 0.1, + ) -> Iterable[ProgressType]: + """Track progress by iterating over a sequence. + + Args: + sequence (Sequence[ProgressType]): A sequence of values you want to iterate over and track progress. + total: (float, optional): Total number of steps. Default is len(sequence). + task_id: (TaskID): Task to track. Default is new task. + description: (str, optional): Description of task, if new task is created. + update_period (float, optional): Minimum time (in seconds) between calls to update(). Defaults to 0.1. + + Returns: + Iterable[ProgressType]: An iterable of values taken from the provided sequence. + """ + if total is None: + total = float(length_hint(sequence)) or None + + if task_id is None: + task_id = self.add_task(description, total=total) + else: + self.update(task_id, total=total) + + if self.live.auto_refresh: + with _TrackThread(self, task_id, update_period) as track_thread: + for value in sequence: + yield value + track_thread.completed += 1 + else: + advance = self.advance + refresh = self.refresh + for value in sequence: + yield value + advance(task_id, 1) + refresh() + + def wrap_file( + self, + file: BinaryIO, + total: Optional[int] = None, + *, + task_id: Optional[TaskID] = None, + description: str = "Reading...", + ) -> BinaryIO: + """Track progress file reading from a binary file. + + Args: + file (BinaryIO): A file-like object opened in binary mode. + total (int, optional): Total number of bytes to read. This must be provided unless a task with a total is also given. + task_id (TaskID): Task to track. Default is new task. + description (str, optional): Description of task, if new task is created. + + Returns: + BinaryIO: A readable file-like object in binary mode. + + Raises: + ValueError: When no total value can be extracted from the arguments or the task. + """ + # attempt to recover the total from the task + total_bytes: Optional[float] = None + if total is not None: + total_bytes = total + elif task_id is not None: + with self._lock: + total_bytes = self._tasks[task_id].total + if total_bytes is None: + raise ValueError( + f"unable to get the total number of bytes, please specify 'total'" + ) + + # update total of task or create new task + if task_id is None: + task_id = self.add_task(description, total=total_bytes) + else: + self.update(task_id, total=total_bytes) + + return _Reader(file, self, task_id, close_handle=False) + + @typing.overload + def open( + self, + file: Union[str, "PathLike[str]", bytes], + mode: Literal["rb"], + buffering: int = -1, + encoding: Optional[str] = None, + errors: Optional[str] = None, + newline: Optional[str] = None, + *, + total: Optional[int] = None, + task_id: Optional[TaskID] = None, + description: str = "Reading...", + ) -> BinaryIO: + pass + + @typing.overload + def open( + self, + file: Union[str, "PathLike[str]", bytes], + mode: Union[Literal["r"], Literal["rt"]], + buffering: int = -1, + encoding: Optional[str] = None, + errors: Optional[str] = None, + newline: Optional[str] = None, + *, + total: Optional[int] = None, + task_id: Optional[TaskID] = None, + description: str = "Reading...", + ) -> TextIO: + pass + + def open( + self, + file: Union[str, "PathLike[str]", bytes], + mode: Union[Literal["rb"], Literal["rt"], Literal["r"]] = "r", + buffering: int = -1, + encoding: Optional[str] = None, + errors: Optional[str] = None, + newline: Optional[str] = None, + *, + total: Optional[int] = None, + task_id: Optional[TaskID] = None, + description: str = "Reading...", + ) -> Union[BinaryIO, TextIO]: + """Track progress while reading from a binary file. + + Args: + path (Union[str, PathLike[str]]): The path to the file to read. + mode (str): The mode to use to open the file. Only supports "r", "rb" or "rt". + buffering (int): The buffering strategy to use, see :func:`io.open`. + encoding (str, optional): The encoding to use when reading in text mode, see :func:`io.open`. + errors (str, optional): The error handling strategy for decoding errors, see :func:`io.open`. + newline (str, optional): The strategy for handling newlines in text mode, see :func:`io.open`. + total (int, optional): Total number of bytes to read. If none given, os.stat(path).st_size is used. + task_id (TaskID): Task to track. Default is new task. + description (str, optional): Description of task, if new task is created. + + Returns: + BinaryIO: A readable file-like object in binary mode. + + Raises: + ValueError: When an invalid mode is given. + """ + # normalize the mode (always rb, rt) + _mode = "".join(sorted(mode, reverse=False)) + if _mode not in ("br", "rt", "r"): + raise ValueError("invalid mode {!r}".format(mode)) + + # patch buffering to provide the same behaviour as the builtin `open` + line_buffering = buffering == 1 + if _mode == "br" and buffering == 1: + warnings.warn( + "line buffering (buffering=1) isn't supported in binary mode, the default buffer size will be used", + RuntimeWarning, + ) + buffering = -1 + elif _mode in ("rt", "r"): + if buffering == 0: + raise ValueError("can't have unbuffered text I/O") + elif buffering == 1: + buffering = -1 + + # attempt to get the total with `os.stat` + if total is None: + total = stat(file).st_size + + # update total of task or create new task + if task_id is None: + task_id = self.add_task(description, total=total) + else: + self.update(task_id, total=total) + + # open the file in binary mode, + handle = io.open(file, "rb", buffering=buffering) + reader = _Reader(handle, self, task_id, close_handle=True) + + # wrap the reader in a `TextIOWrapper` if text mode + if mode in ("r", "rt"): + return io.TextIOWrapper( + reader, + encoding=encoding, + errors=errors, + newline=newline, + line_buffering=line_buffering, + ) + + return reader + + def start_task(self, task_id: TaskID) -> None: + """Start a task. + + Starts a task (used when calculating elapsed time). You may need to call this manually, + if you called ``add_task`` with ``start=False``. + + Args: + task_id (TaskID): ID of task. + """ + with self._lock: + task = self._tasks[task_id] + if task.start_time is None: + task.start_time = self.get_time() + + def stop_task(self, task_id: TaskID) -> None: + """Stop a task. + + This will freeze the elapsed time on the task. + + Args: + task_id (TaskID): ID of task. + """ + with self._lock: + task = self._tasks[task_id] + current_time = self.get_time() + if task.start_time is None: + task.start_time = current_time + task.stop_time = current_time + + def update( + self, + task_id: TaskID, + *, + total: Optional[float] = None, + completed: Optional[float] = None, + advance: Optional[float] = None, + description: Optional[str] = None, + visible: Optional[bool] = None, + refresh: bool = False, + **fields: Any, + ) -> None: + """Update information associated with a task. + + Args: + task_id (TaskID): Task id (returned by add_task). + total (float, optional): Updates task.total if not None. + completed (float, optional): Updates task.completed if not None. + advance (float, optional): Add a value to task.completed if not None. + description (str, optional): Change task description if not None. + visible (bool, optional): Set visible flag if not None. + refresh (bool): Force a refresh of progress information. Default is False. + **fields (Any): Additional data fields required for rendering. + """ + with self._lock: + task = self._tasks[task_id] + completed_start = task.completed + + if total is not None and total != task.total: + task.total = total + task._reset() + if advance is not None: + task.completed += advance + if completed is not None: + task.completed = completed + if description is not None: + task.description = description + if visible is not None: + task.visible = visible + task.fields.update(fields) + update_completed = task.completed - completed_start + + current_time = self.get_time() + old_sample_time = current_time - self.speed_estimate_period + _progress = task._progress + + popleft = _progress.popleft + while _progress and _progress[0].timestamp < old_sample_time: + popleft() + if update_completed > 0: + _progress.append(ProgressSample(current_time, update_completed)) + if ( + task.total is not None + and task.completed >= task.total + and task.finished_time is None + ): + task.finished_time = task.elapsed + + if refresh: + self.refresh() + + def reset( + self, + task_id: TaskID, + *, + start: bool = True, + total: Optional[float] = None, + completed: int = 0, + visible: Optional[bool] = None, + description: Optional[str] = None, + **fields: Any, + ) -> None: + """Reset a task so completed is 0 and the clock is reset. + + Args: + task_id (TaskID): ID of task. + start (bool, optional): Start the task after reset. Defaults to True. + total (float, optional): New total steps in task, or None to use current total. Defaults to None. + completed (int, optional): Number of steps completed. Defaults to 0. + visible (bool, optional): Enable display of the task. Defaults to True. + description (str, optional): Change task description if not None. Defaults to None. + **fields (str): Additional data fields required for rendering. + """ + current_time = self.get_time() + with self._lock: + task = self._tasks[task_id] + task._reset() + task.start_time = current_time if start else None + if total is not None: + task.total = total + task.completed = completed + if visible is not None: + task.visible = visible + if fields: + task.fields = fields + if description is not None: + task.description = description + task.finished_time = None + self.refresh() + + def advance(self, task_id: TaskID, advance: float = 1) -> None: + """Advance task by a number of steps. + + Args: + task_id (TaskID): ID of task. + advance (float): Number of steps to advance. Default is 1. + """ + current_time = self.get_time() + with self._lock: + task = self._tasks[task_id] + completed_start = task.completed + task.completed += advance + update_completed = task.completed - completed_start + old_sample_time = current_time - self.speed_estimate_period + _progress = task._progress + + popleft = _progress.popleft + while _progress and _progress[0].timestamp < old_sample_time: + popleft() + while len(_progress) > 1000: + popleft() + _progress.append(ProgressSample(current_time, update_completed)) + if ( + task.total is not None + and task.completed >= task.total + and task.finished_time is None + ): + task.finished_time = task.elapsed + task.finished_speed = task.speed + + def refresh(self) -> None: + """Refresh (render) the progress information.""" + if not self.disable and self.live.is_started: + self.live.refresh() + + def get_renderable(self) -> RenderableType: + """Get a renderable for the progress display.""" + renderable = Group(*self.get_renderables()) + return renderable + + def get_renderables(self) -> Iterable[RenderableType]: + """Get a number of renderables for the progress display.""" + table = self.make_tasks_table(self.tasks) + yield table + + def make_tasks_table(self, tasks: Iterable[Task]) -> Table: + """Get a table to render the Progress display. + + Args: + tasks (Iterable[Task]): An iterable of Task instances, one per row of the table. + + Returns: + Table: A table instance. + """ + table_columns = ( + ( + Column(no_wrap=True) + if isinstance(_column, str) + else _column.get_table_column().copy() + ) + for _column in self.columns + ) + table = Table.grid(*table_columns, padding=(0, 1), expand=self.expand) + + for task in tasks: + if task.visible: + table.add_row( + *( + ( + column.format(task=task) + if isinstance(column, str) + else column(task) + ) + for column in self.columns + ) + ) + return table + + def __rich__(self) -> RenderableType: + """Makes the Progress class itself renderable.""" + with self._lock: + return self.get_renderable() + + def add_task( + self, + description: str, + start: bool = True, + total: Optional[float] = 100.0, + completed: int = 0, + visible: bool = True, + **fields: Any, + ) -> TaskID: + """Add a new 'task' to the Progress display. + + Args: + description (str): A description of the task. + start (bool, optional): Start the task immediately (to calculate elapsed time). If set to False, + you will need to call `start` manually. Defaults to True. + total (float, optional): Number of total steps in the progress if known. + Set to None to render a pulsing animation. Defaults to 100. + completed (int, optional): Number of steps completed so far. Defaults to 0. + visible (bool, optional): Enable display of the task. Defaults to True. + **fields (str): Additional data fields required for rendering. + + Returns: + TaskID: An ID you can use when calling `update`. + """ + with self._lock: + task = Task( + self._task_index, + description, + total, + completed, + visible=visible, + fields=fields, + _get_time=self.get_time, + _lock=self._lock, + ) + self._tasks[self._task_index] = task + if start: + self.start_task(self._task_index) + new_task_index = self._task_index + self._task_index = TaskID(int(self._task_index) + 1) + self.refresh() + return new_task_index + + def remove_task(self, task_id: TaskID) -> None: + """Delete a task if it exists. + + Args: + task_id (TaskID): A task ID. + + """ + with self._lock: + del self._tasks[task_id] + + +if __name__ == "__main__": # pragma: no coverage + import random + import time + + from .panel import Panel + from .rule import Rule + from .syntax import Syntax + from .table import Table + + syntax = Syntax( + '''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''', + "python", + line_numbers=True, + ) + + table = Table("foo", "bar", "baz") + table.add_row("1", "2", "3") + + progress_renderables = [ + "Text may be printed while the progress bars are rendering.", + Panel("In fact, [i]any[/i] renderable will work"), + "Such as [magenta]tables[/]...", + table, + "Pretty printed structures...", + {"type": "example", "text": "Pretty printed"}, + "Syntax...", + syntax, + Rule("Give it a try!"), + ] + + from itertools import cycle + + examples = cycle(progress_renderables) + + console = Console(record=True) + + with Progress( + SpinnerColumn(), + *Progress.get_default_columns(), + TimeElapsedColumn(), + console=console, + transient=False, + ) as progress: + task1 = progress.add_task("[red]Downloading", total=1000) + task2 = progress.add_task("[green]Processing", total=1000) + task3 = progress.add_task("[yellow]Thinking", total=None) + + while not progress.finished: + progress.update(task1, advance=0.5) + progress.update(task2, advance=0.3) + time.sleep(0.01) + if random.randint(0, 100) < 1: + progress.log(next(examples)) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/progress_bar.py b/myenv/Lib/site-packages/pip/_vendor/rich/progress_bar.py new file mode 100644 index 0000000..a2bf326 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/progress_bar.py @@ -0,0 +1,223 @@ +import math +from functools import lru_cache +from time import monotonic +from typing import Iterable, List, Optional + +from .color import Color, blend_rgb +from .color_triplet import ColorTriplet +from .console import Console, ConsoleOptions, RenderResult +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import Style, StyleType + +# Number of characters before 'pulse' animation repeats +PULSE_SIZE = 20 + + +class ProgressBar(JupyterMixin): + """Renders a (progress) bar. Used by rich.progress. + + Args: + total (float, optional): Number of steps in the bar. Defaults to 100. Set to None to render a pulsing animation. + completed (float, optional): Number of steps completed. Defaults to 0. + width (int, optional): Width of the bar, or ``None`` for maximum width. Defaults to None. + pulse (bool, optional): Enable pulse effect. Defaults to False. Will pulse if a None total was passed. + style (StyleType, optional): Style for the bar background. Defaults to "bar.back". + complete_style (StyleType, optional): Style for the completed bar. Defaults to "bar.complete". + finished_style (StyleType, optional): Style for a finished bar. Defaults to "bar.finished". + pulse_style (StyleType, optional): Style for pulsing bars. Defaults to "bar.pulse". + animation_time (Optional[float], optional): Time in seconds to use for animation, or None to use system time. + """ + + def __init__( + self, + total: Optional[float] = 100.0, + completed: float = 0, + width: Optional[int] = None, + pulse: bool = False, + style: StyleType = "bar.back", + complete_style: StyleType = "bar.complete", + finished_style: StyleType = "bar.finished", + pulse_style: StyleType = "bar.pulse", + animation_time: Optional[float] = None, + ): + self.total = total + self.completed = completed + self.width = width + self.pulse = pulse + self.style = style + self.complete_style = complete_style + self.finished_style = finished_style + self.pulse_style = pulse_style + self.animation_time = animation_time + + self._pulse_segments: Optional[List[Segment]] = None + + def __repr__(self) -> str: + return f"" + + @property + def percentage_completed(self) -> Optional[float]: + """Calculate percentage complete.""" + if self.total is None: + return None + completed = (self.completed / self.total) * 100.0 + completed = min(100, max(0.0, completed)) + return completed + + @lru_cache(maxsize=16) + def _get_pulse_segments( + self, + fore_style: Style, + back_style: Style, + color_system: str, + no_color: bool, + ascii: bool = False, + ) -> List[Segment]: + """Get a list of segments to render a pulse animation. + + Returns: + List[Segment]: A list of segments, one segment per character. + """ + bar = "-" if ascii else "━" + segments: List[Segment] = [] + if color_system not in ("standard", "eight_bit", "truecolor") or no_color: + segments += [Segment(bar, fore_style)] * (PULSE_SIZE // 2) + segments += [Segment(" " if no_color else bar, back_style)] * ( + PULSE_SIZE - (PULSE_SIZE // 2) + ) + return segments + + append = segments.append + fore_color = ( + fore_style.color.get_truecolor() + if fore_style.color + else ColorTriplet(255, 0, 255) + ) + back_color = ( + back_style.color.get_truecolor() + if back_style.color + else ColorTriplet(0, 0, 0) + ) + cos = math.cos + pi = math.pi + _Segment = Segment + _Style = Style + from_triplet = Color.from_triplet + + for index in range(PULSE_SIZE): + position = index / PULSE_SIZE + fade = 0.5 + cos((position * pi * 2)) / 2.0 + color = blend_rgb(fore_color, back_color, cross_fade=fade) + append(_Segment(bar, _Style(color=from_triplet(color)))) + return segments + + def update(self, completed: float, total: Optional[float] = None) -> None: + """Update progress with new values. + + Args: + completed (float): Number of steps completed. + total (float, optional): Total number of steps, or ``None`` to not change. Defaults to None. + """ + self.completed = completed + self.total = total if total is not None else self.total + + def _render_pulse( + self, console: Console, width: int, ascii: bool = False + ) -> Iterable[Segment]: + """Renders the pulse animation. + + Args: + console (Console): Console instance. + width (int): Width in characters of pulse animation. + + Returns: + RenderResult: [description] + + Yields: + Iterator[Segment]: Segments to render pulse + """ + fore_style = console.get_style(self.pulse_style, default="white") + back_style = console.get_style(self.style, default="black") + + pulse_segments = self._get_pulse_segments( + fore_style, back_style, console.color_system, console.no_color, ascii=ascii + ) + segment_count = len(pulse_segments) + current_time = ( + monotonic() if self.animation_time is None else self.animation_time + ) + segments = pulse_segments * (int(width / segment_count) + 2) + offset = int(-current_time * 15) % segment_count + segments = segments[offset : offset + width] + yield from segments + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + width = min(self.width or options.max_width, options.max_width) + ascii = options.legacy_windows or options.ascii_only + should_pulse = self.pulse or self.total is None + if should_pulse: + yield from self._render_pulse(console, width, ascii=ascii) + return + + completed: Optional[float] = ( + min(self.total, max(0, self.completed)) if self.total is not None else None + ) + + bar = "-" if ascii else "━" + half_bar_right = " " if ascii else "╸" + half_bar_left = " " if ascii else "╺" + complete_halves = ( + int(width * 2 * completed / self.total) + if self.total and completed is not None + else width * 2 + ) + bar_count = complete_halves // 2 + half_bar_count = complete_halves % 2 + style = console.get_style(self.style) + is_finished = self.total is None or self.completed >= self.total + complete_style = console.get_style( + self.finished_style if is_finished else self.complete_style + ) + _Segment = Segment + if bar_count: + yield _Segment(bar * bar_count, complete_style) + if half_bar_count: + yield _Segment(half_bar_right * half_bar_count, complete_style) + + if not console.no_color: + remaining_bars = width - bar_count - half_bar_count + if remaining_bars and console.color_system is not None: + if not half_bar_count and bar_count: + yield _Segment(half_bar_left, style) + remaining_bars -= 1 + if remaining_bars: + yield _Segment(bar * remaining_bars, style) + + 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) + ) + + +if __name__ == "__main__": # pragma: no cover + console = Console() + bar = ProgressBar(width=50, total=100) + + import time + + console.show_cursor(False) + for n in range(0, 101, 1): + bar.update(n) + console.print(bar) + console.file.write("\r") + time.sleep(0.05) + console.show_cursor(True) + console.print() diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/prompt.py b/myenv/Lib/site-packages/pip/_vendor/rich/prompt.py new file mode 100644 index 0000000..75ff048 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/prompt.py @@ -0,0 +1,375 @@ +from typing import Any, Generic, List, Optional, TextIO, TypeVar, Union, overload + +from . import get_console +from .console import Console +from .text import Text, TextType + +PromptType = TypeVar("PromptType") +DefaultType = TypeVar("DefaultType") + + +class PromptError(Exception): + """Exception base class for prompt related errors.""" + + +class InvalidResponse(PromptError): + """Exception to indicate a response was invalid. Raise this within process_response() to indicate an error + and provide an error message. + + Args: + message (Union[str, Text]): Error message. + """ + + def __init__(self, message: TextType) -> None: + self.message = message + + def __rich__(self) -> TextType: + return self.message + + +class PromptBase(Generic[PromptType]): + """Ask the user for input until a valid response is received. This is the base class, see one of + the concrete classes for examples. + + Args: + prompt (TextType, optional): Prompt text. Defaults to "". + console (Console, optional): A Console instance or None to use global console. Defaults to None. + password (bool, optional): Enable password input. Defaults to False. + choices (List[str], optional): A list of valid choices. Defaults to None. + show_default (bool, optional): Show default in prompt. Defaults to True. + show_choices (bool, optional): Show choices in prompt. Defaults to True. + """ + + response_type: type = str + + validate_error_message = "[prompt.invalid]Please enter a valid value" + illegal_choice_message = ( + "[prompt.invalid.choice]Please select one of the available options" + ) + prompt_suffix = ": " + + choices: Optional[List[str]] = None + + def __init__( + self, + prompt: TextType = "", + *, + console: Optional[Console] = None, + password: bool = False, + choices: Optional[List[str]] = None, + show_default: bool = True, + show_choices: bool = True, + ) -> None: + self.console = console or get_console() + self.prompt = ( + Text.from_markup(prompt, style="prompt") + if isinstance(prompt, str) + else prompt + ) + self.password = password + if choices is not None: + self.choices = choices + self.show_default = show_default + self.show_choices = show_choices + + @classmethod + @overload + def ask( + cls, + prompt: TextType = "", + *, + console: Optional[Console] = None, + password: bool = False, + choices: Optional[List[str]] = None, + show_default: bool = True, + show_choices: bool = True, + default: DefaultType, + stream: Optional[TextIO] = None, + ) -> Union[DefaultType, PromptType]: + ... + + @classmethod + @overload + def ask( + cls, + prompt: TextType = "", + *, + console: Optional[Console] = None, + password: bool = False, + choices: Optional[List[str]] = None, + show_default: bool = True, + show_choices: bool = True, + stream: Optional[TextIO] = None, + ) -> PromptType: + ... + + @classmethod + def ask( + cls, + prompt: TextType = "", + *, + console: Optional[Console] = None, + password: bool = False, + choices: Optional[List[str]] = None, + show_default: bool = True, + show_choices: bool = True, + default: Any = ..., + stream: Optional[TextIO] = None, + ) -> Any: + """Shortcut to construct and run a prompt loop and return the result. + + Example: + >>> filename = Prompt.ask("Enter a filename") + + Args: + prompt (TextType, optional): Prompt text. Defaults to "". + console (Console, optional): A Console instance or None to use global console. Defaults to None. + password (bool, optional): Enable password input. Defaults to False. + choices (List[str], optional): A list of valid choices. Defaults to None. + show_default (bool, optional): Show default in prompt. Defaults to True. + show_choices (bool, optional): Show choices in prompt. Defaults to True. + stream (TextIO, optional): Optional text file open for reading to get input. Defaults to None. + """ + _prompt = cls( + prompt, + console=console, + password=password, + choices=choices, + show_default=show_default, + show_choices=show_choices, + ) + return _prompt(default=default, stream=stream) + + def render_default(self, default: DefaultType) -> Text: + """Turn the supplied default in to a Text instance. + + Args: + default (DefaultType): Default value. + + Returns: + Text: Text containing rendering of default value. + """ + return Text(f"({default})", "prompt.default") + + def make_prompt(self, default: DefaultType) -> Text: + """Make prompt text. + + Args: + default (DefaultType): Default value. + + Returns: + Text: Text to display in prompt. + """ + prompt = self.prompt.copy() + prompt.end = "" + + if self.show_choices and self.choices: + _choices = "/".join(self.choices) + choices = f"[{_choices}]" + prompt.append(" ") + prompt.append(choices, "prompt.choices") + + if ( + default != ... + and self.show_default + and isinstance(default, (str, self.response_type)) + ): + prompt.append(" ") + _default = self.render_default(default) + prompt.append(_default) + + prompt.append(self.prompt_suffix) + + return prompt + + @classmethod + def get_input( + cls, + console: Console, + prompt: TextType, + password: bool, + stream: Optional[TextIO] = None, + ) -> str: + """Get input from user. + + Args: + console (Console): Console instance. + prompt (TextType): Prompt text. + password (bool): Enable password entry. + + Returns: + str: String from user. + """ + return console.input(prompt, password=password, stream=stream) + + def check_choice(self, value: str) -> bool: + """Check value is in the list of valid choices. + + Args: + value (str): Value entered by user. + + Returns: + bool: True if choice was valid, otherwise False. + """ + assert self.choices is not None + return value.strip() in self.choices + + def process_response(self, value: str) -> PromptType: + """Process response from user, convert to prompt type. + + Args: + value (str): String typed by user. + + Raises: + InvalidResponse: If ``value`` is invalid. + + Returns: + PromptType: The value to be returned from ask method. + """ + value = value.strip() + try: + return_value: PromptType = self.response_type(value) + except ValueError: + raise InvalidResponse(self.validate_error_message) + + if self.choices is not None and not self.check_choice(value): + raise InvalidResponse(self.illegal_choice_message) + + return return_value + + def on_validate_error(self, value: str, error: InvalidResponse) -> None: + """Called to handle validation error. + + Args: + value (str): String entered by user. + error (InvalidResponse): Exception instance the initiated the error. + """ + self.console.print(error) + + def pre_prompt(self) -> None: + """Hook to display something before the prompt.""" + + @overload + def __call__(self, *, stream: Optional[TextIO] = None) -> PromptType: + ... + + @overload + def __call__( + self, *, default: DefaultType, stream: Optional[TextIO] = None + ) -> Union[PromptType, DefaultType]: + ... + + def __call__(self, *, default: Any = ..., stream: Optional[TextIO] = None) -> Any: + """Run the prompt loop. + + Args: + default (Any, optional): Optional default value. + + Returns: + PromptType: Processed value. + """ + while True: + self.pre_prompt() + prompt = self.make_prompt(default) + value = self.get_input(self.console, prompt, self.password, stream=stream) + if value == "" and default != ...: + return default + try: + return_value = self.process_response(value) + except InvalidResponse as error: + self.on_validate_error(value, error) + continue + else: + return return_value + + +class Prompt(PromptBase[str]): + """A prompt that returns a str. + + Example: + >>> name = Prompt.ask("Enter your name") + + + """ + + response_type = str + + +class IntPrompt(PromptBase[int]): + """A prompt that returns an integer. + + Example: + >>> burrito_count = IntPrompt.ask("How many burritos do you want to order") + + """ + + response_type = int + validate_error_message = "[prompt.invalid]Please enter a valid integer number" + + +class FloatPrompt(PromptBase[float]): + """A prompt that returns a float. + + Example: + >>> temperature = FloatPrompt.ask("Enter desired temperature") + + """ + + response_type = float + validate_error_message = "[prompt.invalid]Please enter a number" + + +class Confirm(PromptBase[bool]): + """A yes / no confirmation prompt. + + Example: + >>> if Confirm.ask("Continue"): + run_job() + + """ + + response_type = bool + validate_error_message = "[prompt.invalid]Please enter Y or N" + choices: List[str] = ["y", "n"] + + def render_default(self, default: DefaultType) -> Text: + """Render the default as (y) or (n) rather than True/False.""" + yes, no = self.choices + return Text(f"({yes})" if default else f"({no})", style="prompt.default") + + def process_response(self, value: str) -> bool: + """Convert choices to a bool.""" + value = value.strip().lower() + if value not in self.choices: + raise InvalidResponse(self.validate_error_message) + return value == self.choices[0] + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich import print + + if Confirm.ask("Run [i]prompt[/i] tests?", default=True): + while True: + result = IntPrompt.ask( + ":rocket: Enter a number between [b]1[/b] and [b]10[/b]", default=5 + ) + if result >= 1 and result <= 10: + break + print(":pile_of_poo: [prompt.invalid]Number must be between 1 and 10") + print(f"number={result}") + + while True: + password = Prompt.ask( + "Please enter a password [cyan](must be at least 5 characters)", + password=True, + ) + if len(password) >= 5: + break + print("[prompt.invalid]password too short") + print(f"password={password!r}") + + fruit = Prompt.ask("Enter a fruit", choices=["apple", "orange", "pear"]) + print(f"fruit={fruit!r}") + + else: + print("[b]OK :loudly_crying_face:") diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/protocol.py b/myenv/Lib/site-packages/pip/_vendor/rich/protocol.py new file mode 100644 index 0000000..12ab237 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/protocol.py @@ -0,0 +1,42 @@ +from typing import Any, cast, Set, TYPE_CHECKING +from inspect import isclass + +if TYPE_CHECKING: + from pip._vendor.rich.console import RenderableType + +_GIBBERISH = """aihwerij235234ljsdnp34ksodfipwoe234234jlskjdf""" + + +def is_renderable(check_object: Any) -> bool: + """Check if an object may be rendered by Rich.""" + return ( + isinstance(check_object, str) + or hasattr(check_object, "__rich__") + or hasattr(check_object, "__rich_console__") + ) + + +def rich_cast(renderable: object) -> "RenderableType": + """Cast an object to a renderable by calling __rich__ if present. + + Args: + renderable (object): A potentially renderable object + + Returns: + object: The result of recursively calling __rich__. + """ + from pip._vendor.rich.console import RenderableType + + rich_visited_set: Set[type] = set() # Prevent potential infinite loop + while hasattr(renderable, "__rich__") and not isclass(renderable): + # Detect object which claim to have all the attributes + if hasattr(renderable, _GIBBERISH): + return repr(renderable) + cast_method = getattr(renderable, "__rich__") + renderable = cast_method() + renderable_type = type(renderable) + if renderable_type in rich_visited_set: + break + rich_visited_set.add(renderable_type) + + return cast(RenderableType, renderable) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/py.typed b/myenv/Lib/site-packages/pip/_vendor/rich/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/region.py b/myenv/Lib/site-packages/pip/_vendor/rich/region.py new file mode 100644 index 0000000..75b3631 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/region.py @@ -0,0 +1,10 @@ +from typing import NamedTuple + + +class Region(NamedTuple): + """Defines a rectangular region of the screen.""" + + x: int + y: int + width: int + height: int diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/repr.py b/myenv/Lib/site-packages/pip/_vendor/rich/repr.py new file mode 100644 index 0000000..10efc42 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/repr.py @@ -0,0 +1,149 @@ +import inspect +from functools import partial +from typing import ( + Any, + Callable, + Iterable, + List, + Optional, + Tuple, + Type, + TypeVar, + Union, + overload, +) + +T = TypeVar("T") + + +Result = Iterable[Union[Any, Tuple[Any], Tuple[str, Any], Tuple[str, Any, Any]]] +RichReprResult = Result + + +class ReprError(Exception): + """An error occurred when attempting to build a repr.""" + + +@overload +def auto(cls: Optional[Type[T]]) -> Type[T]: + ... + + +@overload +def auto(*, angular: bool = False) -> Callable[[Type[T]], Type[T]]: + ... + + +def auto( + cls: Optional[Type[T]] = None, *, angular: Optional[bool] = None +) -> Union[Type[T], Callable[[Type[T]], Type[T]]]: + """Class decorator to create __repr__ from __rich_repr__""" + + def do_replace(cls: Type[T], angular: Optional[bool] = None) -> Type[T]: + def auto_repr(self: T) -> str: + """Create repr string from __rich_repr__""" + repr_str: List[str] = [] + append = repr_str.append + + angular: bool = getattr(self.__rich_repr__, "angular", False) # type: ignore[attr-defined] + for arg in self.__rich_repr__(): # type: ignore[attr-defined] + if isinstance(arg, tuple): + if len(arg) == 1: + append(repr(arg[0])) + else: + key, value, *default = arg + if key is None: + append(repr(value)) + else: + if default and default[0] == value: + continue + append(f"{key}={value!r}") + else: + append(repr(arg)) + if angular: + return f"<{self.__class__.__name__} {' '.join(repr_str)}>" + else: + return f"{self.__class__.__name__}({', '.join(repr_str)})" + + def auto_rich_repr(self: Type[T]) -> Result: + """Auto generate __rich_rep__ from signature of __init__""" + try: + signature = inspect.signature(self.__init__) + for name, param in signature.parameters.items(): + if param.kind == param.POSITIONAL_ONLY: + yield getattr(self, name) + elif param.kind in ( + param.POSITIONAL_OR_KEYWORD, + param.KEYWORD_ONLY, + ): + if param.default is param.empty: + yield getattr(self, param.name) + else: + yield param.name, getattr(self, param.name), param.default + except Exception as error: + raise ReprError( + f"Failed to auto generate __rich_repr__; {error}" + ) from None + + if not hasattr(cls, "__rich_repr__"): + auto_rich_repr.__doc__ = "Build a rich repr" + cls.__rich_repr__ = auto_rich_repr # type: ignore[attr-defined] + + auto_repr.__doc__ = "Return repr(self)" + cls.__repr__ = auto_repr # type: ignore[assignment] + if angular is not None: + cls.__rich_repr__.angular = angular # type: ignore[attr-defined] + return cls + + if cls is None: + return partial(do_replace, angular=angular) + else: + return do_replace(cls, angular=angular) + + +@overload +def rich_repr(cls: Optional[Type[T]]) -> Type[T]: + ... + + +@overload +def rich_repr(*, angular: bool = False) -> Callable[[Type[T]], Type[T]]: + ... + + +def rich_repr( + cls: Optional[Type[T]] = None, *, angular: bool = False +) -> Union[Type[T], Callable[[Type[T]], Type[T]]]: + if cls is None: + return auto(angular=angular) + else: + return auto(cls) + + +if __name__ == "__main__": + + @auto + class Foo: + def __rich_repr__(self) -> Result: + yield "foo" + yield "bar", {"shopping": ["eggs", "ham", "pineapple"]} + yield "buy", "hand sanitizer" + + foo = Foo() + from pip._vendor.rich.console import Console + + console = Console() + + console.rule("Standard repr") + console.print(foo) + + console.print(foo, width=60) + console.print(foo, width=30) + + console.rule("Angular repr") + Foo.__rich_repr__.angular = True # type: ignore[attr-defined] + + console.print(foo) + + console.print(foo, width=60) + console.print(foo, width=30) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/rule.py b/myenv/Lib/site-packages/pip/_vendor/rich/rule.py new file mode 100644 index 0000000..fd00ce6 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/rule.py @@ -0,0 +1,130 @@ +from typing import Union + +from .align import AlignMethod +from .cells import cell_len, set_cell_size +from .console import Console, ConsoleOptions, RenderResult +from .jupyter import JupyterMixin +from .measure import Measurement +from .style import Style +from .text import Text + + +class Rule(JupyterMixin): + """A console renderable to draw a horizontal rule (line). + + Args: + title (Union[str, Text], optional): Text to render in the rule. Defaults to "". + characters (str, optional): Character(s) used to draw the line. Defaults to "─". + style (StyleType, optional): Style of Rule. Defaults to "rule.line". + end (str, optional): Character at end of Rule. defaults to "\\\\n" + align (str, optional): How to align the title, one of "left", "center", or "right". Defaults to "center". + """ + + def __init__( + self, + title: Union[str, Text] = "", + *, + characters: str = "─", + style: Union[str, Style] = "rule.line", + end: str = "\n", + align: AlignMethod = "center", + ) -> None: + if cell_len(characters) < 1: + raise ValueError( + "'characters' argument must have a cell width of at least 1" + ) + if align not in ("left", "center", "right"): + raise ValueError( + f'invalid value for align, expected "left", "center", "right" (not {align!r})' + ) + self.title = title + self.characters = characters + self.style = style + self.end = end + self.align = align + + def __repr__(self) -> str: + return f"Rule({self.title!r}, {self.characters!r})" + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + width = options.max_width + + characters = ( + "-" + if (options.ascii_only and not self.characters.isascii()) + else self.characters + ) + + chars_len = cell_len(characters) + if not self.title: + yield self._rule_line(chars_len, width) + return + + if isinstance(self.title, Text): + title_text = self.title + else: + title_text = console.render_str(self.title, style="rule.text") + + title_text.plain = title_text.plain.replace("\n", " ") + title_text.expand_tabs() + + required_space = 4 if self.align == "center" else 2 + truncate_width = max(0, width - required_space) + if not truncate_width: + yield self._rule_line(chars_len, width) + return + + rule_text = Text(end=self.end) + if self.align == "center": + title_text.truncate(truncate_width, overflow="ellipsis") + side_width = (width - cell_len(title_text.plain)) // 2 + left = Text(characters * (side_width // chars_len + 1)) + left.truncate(side_width - 1) + right_length = width - cell_len(left.plain) - cell_len(title_text.plain) + right = Text(characters * (side_width // chars_len + 1)) + right.truncate(right_length) + rule_text.append(left.plain + " ", self.style) + rule_text.append(title_text) + rule_text.append(" " + right.plain, self.style) + elif self.align == "left": + title_text.truncate(truncate_width, overflow="ellipsis") + rule_text.append(title_text) + rule_text.append(" ") + rule_text.append(characters * (width - rule_text.cell_len), self.style) + elif self.align == "right": + title_text.truncate(truncate_width, overflow="ellipsis") + rule_text.append(characters * (width - title_text.cell_len - 1), self.style) + rule_text.append(" ") + rule_text.append(title_text) + + rule_text.plain = set_cell_size(rule_text.plain, width) + yield rule_text + + def _rule_line(self, chars_len: int, width: int) -> Text: + rule_text = Text(self.characters * ((width // chars_len) + 1), self.style) + rule_text.truncate(width) + rule_text.plain = set_cell_size(rule_text.plain, width) + return rule_text + + def __rich_measure__( + self, console: Console, options: ConsoleOptions + ) -> Measurement: + return Measurement(1, 1) + + +if __name__ == "__main__": # pragma: no cover + import sys + + from pip._vendor.rich.console import Console + + try: + text = sys.argv[1] + except IndexError: + text = "Hello, World" + console = Console() + console.print(Rule(title=text)) + + console = Console() + console.print(Rule("foo"), width=4) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/scope.py b/myenv/Lib/site-packages/pip/_vendor/rich/scope.py new file mode 100644 index 0000000..c9d134c --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/scope.py @@ -0,0 +1,86 @@ +from collections.abc import Mapping +from typing import TYPE_CHECKING, Any, Optional, Tuple + +from .highlighter import ReprHighlighter +from .panel import Panel +from .pretty import Pretty +from .table import Table +from .text import Text, TextType + +if TYPE_CHECKING: + from .console import ConsoleRenderable + + +def render_scope( + scope: "Mapping[str, Any]", + *, + title: Optional[TextType] = None, + sort_keys: bool = True, + indent_guides: bool = False, + max_length: Optional[int] = None, + max_string: Optional[int] = None, +) -> "ConsoleRenderable": + """Render python variables in a given scope. + + Args: + scope (Mapping): A mapping containing variable names and values. + title (str, optional): Optional title. Defaults to None. + sort_keys (bool, optional): Enable sorting of items. Defaults to True. + indent_guides (bool, optional): Enable indentation guides. Defaults to False. + max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to None. + max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to None. + + Returns: + ConsoleRenderable: A renderable object. + """ + highlighter = ReprHighlighter() + items_table = Table.grid(padding=(0, 1), expand=False) + items_table.add_column(justify="right") + + def sort_items(item: Tuple[str, Any]) -> Tuple[bool, str]: + """Sort special variables first, then alphabetically.""" + key, _ = item + return (not key.startswith("__"), key.lower()) + + items = sorted(scope.items(), key=sort_items) if sort_keys else scope.items() + for key, value in items: + key_text = Text.assemble( + (key, "scope.key.special" if key.startswith("__") else "scope.key"), + (" =", "scope.equals"), + ) + items_table.add_row( + key_text, + Pretty( + value, + highlighter=highlighter, + indent_guides=indent_guides, + max_length=max_length, + max_string=max_string, + ), + ) + return Panel.fit( + items_table, + title=title, + border_style="scope.border", + padding=(0, 1), + ) + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich import print + + print() + + def test(foo: float, bar: float) -> None: + list_of_things = [1, 2, 3, None, 4, True, False, "Hello World"] + dict_of_things = { + "version": "1.1", + "method": "confirmFruitPurchase", + "params": [["apple", "orange", "mangoes", "pomelo"], 1.123], + "id": "194521489", + } + print(render_scope(locals(), title="[i]locals", sort_keys=False)) + + test(20.3423, 3.1427) + print() diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/screen.py b/myenv/Lib/site-packages/pip/_vendor/rich/screen.py new file mode 100644 index 0000000..7f416e1 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/screen.py @@ -0,0 +1,54 @@ +from typing import Optional, TYPE_CHECKING + +from .segment import Segment +from .style import StyleType +from ._loop import loop_last + + +if TYPE_CHECKING: + from .console import ( + Console, + ConsoleOptions, + RenderResult, + RenderableType, + Group, + ) + + +class Screen: + """A renderable that fills the terminal screen and crops excess. + + Args: + renderable (RenderableType): Child renderable. + style (StyleType, optional): Optional background style. Defaults to None. + """ + + renderable: "RenderableType" + + def __init__( + self, + *renderables: "RenderableType", + style: Optional[StyleType] = None, + application_mode: bool = False, + ) -> None: + from pip._vendor.rich.console import Group + + self.renderable = Group(*renderables) + self.style = style + self.application_mode = application_mode + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + width, height = options.size + style = console.get_style(self.style) if self.style else None + render_options = options.update(width=width, height=height) + lines = console.render_lines( + self.renderable or "", render_options, style=style, pad=True + ) + lines = Segment.set_shape(lines, width, height, style=style) + new_line = Segment("\n\r") if self.application_mode else Segment.line() + for last, line in loop_last(lines): + yield from line + if not last: + yield new_line diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/segment.py b/myenv/Lib/site-packages/pip/_vendor/rich/segment.py new file mode 100644 index 0000000..93edbbd --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/segment.py @@ -0,0 +1,738 @@ +from enum import IntEnum +from functools import lru_cache +from itertools import filterfalse +from logging import getLogger +from operator import attrgetter +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + List, + NamedTuple, + Optional, + Sequence, + Tuple, + Type, + Union, +) + +from .cells import ( + _is_single_cell_widths, + cached_cell_len, + cell_len, + get_character_cell_size, + set_cell_size, +) +from .repr import Result, rich_repr +from .style import Style + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + +log = getLogger("rich") + + +class ControlType(IntEnum): + """Non-printable control codes which typically translate to ANSI codes.""" + + BELL = 1 + CARRIAGE_RETURN = 2 + HOME = 3 + CLEAR = 4 + SHOW_CURSOR = 5 + HIDE_CURSOR = 6 + ENABLE_ALT_SCREEN = 7 + DISABLE_ALT_SCREEN = 8 + CURSOR_UP = 9 + CURSOR_DOWN = 10 + CURSOR_FORWARD = 11 + CURSOR_BACKWARD = 12 + CURSOR_MOVE_TO_COLUMN = 13 + CURSOR_MOVE_TO = 14 + ERASE_IN_LINE = 15 + SET_WINDOW_TITLE = 16 + + +ControlCode = Union[ + Tuple[ControlType], + Tuple[ControlType, Union[int, str]], + Tuple[ControlType, int, int], +] + + +@rich_repr() +class Segment(NamedTuple): + """A piece of text with associated style. Segments are produced by the Console render process and + are ultimately converted in to strings to be written to the terminal. + + Args: + text (str): A piece of text. + style (:class:`~rich.style.Style`, optional): An optional style to apply to the text. + control (Tuple[ControlCode], optional): Optional sequence of control codes. + + Attributes: + cell_length (int): The cell length of this Segment. + """ + + text: str + style: Optional[Style] = None + control: Optional[Sequence[ControlCode]] = None + + @property + def cell_length(self) -> int: + """The number of terminal cells required to display self.text. + + Returns: + int: A number of cells. + """ + text, _style, control = self + return 0 if control else cell_len(text) + + def __rich_repr__(self) -> Result: + yield self.text + if self.control is None: + if self.style is not None: + yield self.style + else: + yield self.style + yield self.control + + def __bool__(self) -> bool: + """Check if the segment contains text.""" + return bool(self.text) + + @property + def is_control(self) -> bool: + """Check if the segment contains control codes.""" + return self.control is not None + + @classmethod + @lru_cache(1024 * 16) + def _split_cells(cls, segment: "Segment", cut: int) -> Tuple["Segment", "Segment"]: + text, style, control = segment + _Segment = Segment + + cell_length = segment.cell_length + if cut >= cell_length: + return segment, _Segment("", style, control) + + cell_size = get_character_cell_size + + pos = int((cut / cell_length) * (len(text) - 1)) + + before = text[:pos] + cell_pos = cell_len(before) + if cell_pos == cut: + return ( + _Segment(before, style, control), + _Segment(text[pos:], style, control), + ) + while pos < len(text): + char = text[pos] + pos += 1 + cell_pos += cell_size(char) + before = text[:pos] + if cell_pos == cut: + return ( + _Segment(before, style, control), + _Segment(text[pos:], style, control), + ) + if cell_pos > cut: + return ( + _Segment(before[: pos - 1] + " ", style, control), + _Segment(" " + text[pos:], style, control), + ) + + raise AssertionError("Will never reach here") + + def split_cells(self, cut: int) -> Tuple["Segment", "Segment"]: + """Split segment in to two segments at the specified column. + + If the cut point falls in the middle of a 2-cell wide character then it is replaced + by two spaces, to preserve the display width of the parent segment. + + Returns: + Tuple[Segment, Segment]: Two segments. + """ + text, style, control = self + + if _is_single_cell_widths(text): + # Fast path with all 1 cell characters + if cut >= len(text): + return self, Segment("", style, control) + return ( + Segment(text[:cut], style, control), + Segment(text[cut:], style, control), + ) + + return self._split_cells(self, cut) + + @classmethod + def line(cls) -> "Segment": + """Make a new line segment.""" + return cls("\n") + + @classmethod + def apply_style( + cls, + segments: Iterable["Segment"], + style: Optional[Style] = None, + post_style: Optional[Style] = None, + ) -> Iterable["Segment"]: + """Apply style(s) to an iterable of segments. + + Returns an iterable of segments where the style is replaced by ``style + segment.style + post_style``. + + Args: + segments (Iterable[Segment]): Segments to process. + style (Style, optional): Base style. Defaults to None. + post_style (Style, optional): Style to apply on top of segment style. Defaults to None. + + Returns: + Iterable[Segments]: A new iterable of segments (possibly the same iterable). + """ + result_segments = segments + if style: + apply = style.__add__ + result_segments = ( + cls(text, None if control else apply(_style), control) + for text, _style, control in result_segments + ) + if post_style: + result_segments = ( + cls( + text, + ( + None + if control + else (_style + post_style if _style else post_style) + ), + control, + ) + for text, _style, control in result_segments + ) + return result_segments + + @classmethod + def filter_control( + cls, segments: Iterable["Segment"], is_control: bool = False + ) -> Iterable["Segment"]: + """Filter segments by ``is_control`` attribute. + + Args: + segments (Iterable[Segment]): An iterable of Segment instances. + is_control (bool, optional): is_control flag to match in search. + + Returns: + Iterable[Segment]: And iterable of Segment instances. + + """ + if is_control: + return filter(attrgetter("control"), segments) + else: + return filterfalse(attrgetter("control"), segments) + + @classmethod + def split_lines(cls, segments: Iterable["Segment"]) -> Iterable[List["Segment"]]: + """Split a sequence of segments in to a list of lines. + + Args: + segments (Iterable[Segment]): Segments potentially containing line feeds. + + Yields: + Iterable[List[Segment]]: Iterable of segment lists, one per line. + """ + line: List[Segment] = [] + append = line.append + + for segment in segments: + if "\n" in segment.text and not segment.control: + text, style, _ = segment + while text: + _text, new_line, text = text.partition("\n") + if _text: + append(cls(_text, style)) + if new_line: + yield line + line = [] + append = line.append + else: + append(segment) + if line: + yield line + + @classmethod + def split_and_crop_lines( + cls, + segments: Iterable["Segment"], + length: int, + style: Optional[Style] = None, + pad: bool = True, + include_new_lines: bool = True, + ) -> Iterable[List["Segment"]]: + """Split segments in to lines, and crop lines greater than a given length. + + Args: + segments (Iterable[Segment]): An iterable of segments, probably + generated from console.render. + length (int): Desired line length. + style (Style, optional): Style to use for any padding. + pad (bool): Enable padding of lines that are less than `length`. + + Returns: + Iterable[List[Segment]]: An iterable of lines of segments. + """ + line: List[Segment] = [] + append = line.append + + adjust_line_length = cls.adjust_line_length + new_line_segment = cls("\n") + + for segment in segments: + if "\n" in segment.text and not segment.control: + text, segment_style, _ = segment + while text: + _text, new_line, text = text.partition("\n") + if _text: + append(cls(_text, segment_style)) + if new_line: + cropped_line = adjust_line_length( + line, length, style=style, pad=pad + ) + if include_new_lines: + cropped_line.append(new_line_segment) + yield cropped_line + line.clear() + else: + append(segment) + if line: + yield adjust_line_length(line, length, style=style, pad=pad) + + @classmethod + def adjust_line_length( + cls, + line: List["Segment"], + length: int, + style: Optional[Style] = None, + pad: bool = True, + ) -> List["Segment"]: + """Adjust a line to a given width (cropping or padding as required). + + Args: + segments (Iterable[Segment]): A list of segments in a single line. + length (int): The desired width of the line. + style (Style, optional): The style of padding if used (space on the end). Defaults to None. + pad (bool, optional): Pad lines with spaces if they are shorter than `length`. Defaults to True. + + Returns: + List[Segment]: A line of segments with the desired length. + """ + line_length = sum(segment.cell_length for segment in line) + new_line: List[Segment] + + if line_length < length: + if pad: + new_line = line + [cls(" " * (length - line_length), style)] + else: + new_line = line[:] + elif line_length > length: + new_line = [] + append = new_line.append + line_length = 0 + for segment in line: + segment_length = segment.cell_length + if line_length + segment_length < length or segment.control: + append(segment) + line_length += segment_length + else: + text, segment_style, _ = segment + text = set_cell_size(text, length - line_length) + append(cls(text, segment_style)) + break + else: + new_line = line[:] + return new_line + + @classmethod + def get_line_length(cls, line: List["Segment"]) -> int: + """Get the length of list of segments. + + Args: + line (List[Segment]): A line encoded as a list of Segments (assumes no '\\\\n' characters), + + Returns: + int: The length of the line. + """ + _cell_len = cell_len + return sum(_cell_len(text) for text, style, control in line if not control) + + @classmethod + def get_shape(cls, lines: List[List["Segment"]]) -> Tuple[int, int]: + """Get the shape (enclosing rectangle) of a list of lines. + + Args: + lines (List[List[Segment]]): A list of lines (no '\\\\n' characters). + + Returns: + Tuple[int, int]: Width and height in characters. + """ + get_line_length = cls.get_line_length + max_width = max(get_line_length(line) for line in lines) if lines else 0 + return (max_width, len(lines)) + + @classmethod + def set_shape( + cls, + lines: List[List["Segment"]], + width: int, + height: Optional[int] = None, + style: Optional[Style] = None, + new_lines: bool = False, + ) -> List[List["Segment"]]: + """Set the shape of a list of lines (enclosing rectangle). + + Args: + lines (List[List[Segment]]): A list of lines. + width (int): Desired width. + height (int, optional): Desired height or None for no change. + style (Style, optional): Style of any padding added. + new_lines (bool, optional): Padded lines should include "\n". Defaults to False. + + Returns: + List[List[Segment]]: New list of lines. + """ + _height = height or len(lines) + + blank = ( + [cls(" " * width + "\n", style)] if new_lines else [cls(" " * width, style)] + ) + + adjust_line_length = cls.adjust_line_length + shaped_lines = lines[:_height] + shaped_lines[:] = [ + adjust_line_length(line, width, style=style) for line in lines + ] + if len(shaped_lines) < _height: + shaped_lines.extend([blank] * (_height - len(shaped_lines))) + return shaped_lines + + @classmethod + def align_top( + cls: Type["Segment"], + lines: List[List["Segment"]], + width: int, + height: int, + style: Style, + new_lines: bool = False, + ) -> List[List["Segment"]]: + """Aligns lines to top (adds extra lines to bottom as required). + + Args: + lines (List[List[Segment]]): A list of lines. + width (int): Desired width. + height (int, optional): Desired height or None for no change. + style (Style): Style of any padding added. + new_lines (bool, optional): Padded lines should include "\n". Defaults to False. + + Returns: + List[List[Segment]]: New list of lines. + """ + extra_lines = height - len(lines) + if not extra_lines: + return lines[:] + lines = lines[:height] + blank = cls(" " * width + "\n", style) if new_lines else cls(" " * width, style) + lines = lines + [[blank]] * extra_lines + return lines + + @classmethod + def align_bottom( + cls: Type["Segment"], + lines: List[List["Segment"]], + width: int, + height: int, + style: Style, + new_lines: bool = False, + ) -> List[List["Segment"]]: + """Aligns render to bottom (adds extra lines above as required). + + Args: + lines (List[List[Segment]]): A list of lines. + width (int): Desired width. + height (int, optional): Desired height or None for no change. + style (Style): Style of any padding added. Defaults to None. + new_lines (bool, optional): Padded lines should include "\n". Defaults to False. + + Returns: + List[List[Segment]]: New list of lines. + """ + extra_lines = height - len(lines) + if not extra_lines: + return lines[:] + lines = lines[:height] + blank = cls(" " * width + "\n", style) if new_lines else cls(" " * width, style) + lines = [[blank]] * extra_lines + lines + return lines + + @classmethod + def align_middle( + cls: Type["Segment"], + lines: List[List["Segment"]], + width: int, + height: int, + style: Style, + new_lines: bool = False, + ) -> List[List["Segment"]]: + """Aligns lines to middle (adds extra lines to above and below as required). + + Args: + lines (List[List[Segment]]): A list of lines. + width (int): Desired width. + height (int, optional): Desired height or None for no change. + style (Style): Style of any padding added. + new_lines (bool, optional): Padded lines should include "\n". Defaults to False. + + Returns: + List[List[Segment]]: New list of lines. + """ + extra_lines = height - len(lines) + if not extra_lines: + return lines[:] + lines = lines[:height] + blank = cls(" " * width + "\n", style) if new_lines else cls(" " * width, style) + top_lines = extra_lines // 2 + bottom_lines = extra_lines - top_lines + lines = [[blank]] * top_lines + lines + [[blank]] * bottom_lines + return lines + + @classmethod + def simplify(cls, segments: Iterable["Segment"]) -> Iterable["Segment"]: + """Simplify an iterable of segments by combining contiguous segments with the same style. + + Args: + segments (Iterable[Segment]): An iterable of segments. + + Returns: + Iterable[Segment]: A possibly smaller iterable of segments that will render the same way. + """ + iter_segments = iter(segments) + try: + last_segment = next(iter_segments) + except StopIteration: + return + + _Segment = Segment + for segment in iter_segments: + if last_segment.style == segment.style and not segment.control: + last_segment = _Segment( + last_segment.text + segment.text, last_segment.style + ) + else: + yield last_segment + last_segment = segment + yield last_segment + + @classmethod + def strip_links(cls, segments: Iterable["Segment"]) -> Iterable["Segment"]: + """Remove all links from an iterable of styles. + + Args: + segments (Iterable[Segment]): An iterable segments. + + Yields: + Segment: Segments with link removed. + """ + for segment in segments: + if segment.control or segment.style is None: + yield segment + else: + text, style, _control = segment + yield cls(text, style.update_link(None) if style else None) + + @classmethod + def strip_styles(cls, segments: Iterable["Segment"]) -> Iterable["Segment"]: + """Remove all styles from an iterable of segments. + + Args: + segments (Iterable[Segment]): An iterable segments. + + Yields: + Segment: Segments with styles replace with None + """ + for text, _style, control in segments: + yield cls(text, None, control) + + @classmethod + def remove_color(cls, segments: Iterable["Segment"]) -> Iterable["Segment"]: + """Remove all color from an iterable of segments. + + Args: + segments (Iterable[Segment]): An iterable segments. + + Yields: + Segment: Segments with colorless style. + """ + + cache: Dict[Style, Style] = {} + for text, style, control in segments: + if style: + colorless_style = cache.get(style) + if colorless_style is None: + colorless_style = style.without_color + cache[style] = colorless_style + yield cls(text, colorless_style, control) + else: + yield cls(text, None, control) + + @classmethod + def divide( + cls, segments: Iterable["Segment"], cuts: Iterable[int] + ) -> Iterable[List["Segment"]]: + """Divides an iterable of segments in to portions. + + Args: + cuts (Iterable[int]): Cell positions where to divide. + + Yields: + [Iterable[List[Segment]]]: An iterable of Segments in List. + """ + split_segments: List["Segment"] = [] + add_segment = split_segments.append + + iter_cuts = iter(cuts) + + while True: + cut = next(iter_cuts, -1) + if cut == -1: + return [] + if cut != 0: + break + yield [] + pos = 0 + + segments_clear = split_segments.clear + segments_copy = split_segments.copy + + _cell_len = cached_cell_len + for segment in segments: + text, _style, control = segment + while text: + end_pos = pos if control else pos + _cell_len(text) + if end_pos < cut: + add_segment(segment) + pos = end_pos + break + + if end_pos == cut: + add_segment(segment) + yield segments_copy() + segments_clear() + pos = end_pos + + cut = next(iter_cuts, -1) + if cut == -1: + if split_segments: + yield segments_copy() + return + + break + + else: + before, segment = segment.split_cells(cut - pos) + text, _style, control = segment + add_segment(before) + yield segments_copy() + segments_clear() + pos = cut + + cut = next(iter_cuts, -1) + if cut == -1: + if split_segments: + yield segments_copy() + return + + yield segments_copy() + + +class Segments: + """A simple renderable to render an iterable of segments. This class may be useful if + you want to print segments outside of a __rich_console__ method. + + Args: + segments (Iterable[Segment]): An iterable of segments. + new_lines (bool, optional): Add new lines between segments. Defaults to False. + """ + + def __init__(self, segments: Iterable[Segment], new_lines: bool = False) -> None: + self.segments = list(segments) + self.new_lines = new_lines + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.new_lines: + line = Segment.line() + for segment in self.segments: + yield segment + yield line + else: + yield from self.segments + + +class SegmentLines: + def __init__(self, lines: Iterable[List[Segment]], new_lines: bool = False) -> None: + """A simple renderable containing a number of lines of segments. May be used as an intermediate + in rendering process. + + Args: + lines (Iterable[List[Segment]]): Lists of segments forming lines. + new_lines (bool, optional): Insert new lines after each line. Defaults to False. + """ + self.lines = list(lines) + self.new_lines = new_lines + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.new_lines: + new_line = Segment.line() + for line in self.lines: + yield from line + yield new_line + else: + for line in self.lines: + yield from line + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + from pip._vendor.rich.syntax import Syntax + from pip._vendor.rich.text import Text + + code = """from rich.console import Console +console = Console() +text = Text.from_markup("Hello, [bold magenta]World[/]!") +console.print(text)""" + + text = Text.from_markup("Hello, [bold magenta]World[/]!") + + console = Console() + + console.rule("rich.Segment") + console.print( + "A Segment is the last step in the Rich render process before generating text with ANSI codes." + ) + console.print("\nConsider the following code:\n") + console.print(Syntax(code, "python", line_numbers=True)) + console.print() + console.print( + "When you call [b]print()[/b], Rich [i]renders[/i] the object in to the following:\n" + ) + fragments = list(console.render(text)) + console.print(fragments) + console.print() + console.print("The Segments are then processed to produce the following output:\n") + console.print(text) + console.print( + "\nYou will only need to know this if you are implementing your own Rich renderables." + ) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/spinner.py b/myenv/Lib/site-packages/pip/_vendor/rich/spinner.py new file mode 100644 index 0000000..91ea630 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/spinner.py @@ -0,0 +1,137 @@ +from typing import cast, List, Optional, TYPE_CHECKING, Union + +from ._spinners import SPINNERS +from .measure import Measurement +from .table import Table +from .text import Text + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult, RenderableType + from .style import StyleType + + +class Spinner: + """A spinner animation. + + Args: + name (str): Name of spinner (run python -m rich.spinner). + text (RenderableType, optional): A renderable to display at the right of the spinner (str or Text typically). Defaults to "". + style (StyleType, optional): Style for spinner animation. Defaults to None. + speed (float, optional): Speed factor for animation. Defaults to 1.0. + + Raises: + KeyError: If name isn't one of the supported spinner animations. + """ + + def __init__( + self, + name: str, + text: "RenderableType" = "", + *, + style: Optional["StyleType"] = None, + speed: float = 1.0, + ) -> None: + try: + spinner = SPINNERS[name] + except KeyError: + raise KeyError(f"no spinner called {name!r}") + self.text: "Union[RenderableType, Text]" = ( + Text.from_markup(text) if isinstance(text, str) else text + ) + self.frames = cast(List[str], spinner["frames"])[:] + self.interval = cast(float, spinner["interval"]) + self.start_time: Optional[float] = None + self.style = style + self.speed = speed + self.frame_no_offset: float = 0.0 + self._update_speed = 0.0 + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + yield self.render(console.get_time()) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + text = self.render(0) + return Measurement.get(console, options, text) + + def render(self, time: float) -> "RenderableType": + """Render the spinner for a given time. + + Args: + time (float): Time in seconds. + + Returns: + RenderableType: A renderable containing animation frame. + """ + if self.start_time is None: + self.start_time = time + + frame_no = ((time - self.start_time) * self.speed) / ( + self.interval / 1000.0 + ) + self.frame_no_offset + frame = Text( + self.frames[int(frame_no) % len(self.frames)], style=self.style or "" + ) + + if self._update_speed: + self.frame_no_offset = frame_no + self.start_time = time + self.speed = self._update_speed + self._update_speed = 0.0 + + if not self.text: + return frame + elif isinstance(self.text, (str, Text)): + return Text.assemble(frame, " ", self.text) + else: + table = Table.grid(padding=1) + table.add_row(frame, self.text) + return table + + def update( + self, + *, + text: "RenderableType" = "", + style: Optional["StyleType"] = None, + speed: Optional[float] = None, + ) -> None: + """Updates attributes of a spinner after it has been started. + + Args: + text (RenderableType, optional): A renderable to display at the right of the spinner (str or Text typically). Defaults to "". + style (StyleType, optional): Style for spinner animation. Defaults to None. + speed (float, optional): Speed factor for animation. Defaults to None. + """ + if text: + self.text = Text.from_markup(text) if isinstance(text, str) else text + if style: + self.style = style + if speed: + self._update_speed = speed + + +if __name__ == "__main__": # pragma: no cover + from time import sleep + + from .columns import Columns + from .panel import Panel + from .live import Live + + all_spinners = Columns( + [ + Spinner(spinner_name, text=Text(repr(spinner_name), style="green")) + for spinner_name in sorted(SPINNERS.keys()) + ], + column_first=True, + expand=True, + ) + + with Live( + Panel(all_spinners, title="Spinners", border_style="blue"), + refresh_per_second=20, + ) as live: + while True: + sleep(0.1) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/status.py b/myenv/Lib/site-packages/pip/_vendor/rich/status.py new file mode 100644 index 0000000..6574483 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/status.py @@ -0,0 +1,131 @@ +from types import TracebackType +from typing import Optional, Type + +from .console import Console, RenderableType +from .jupyter import JupyterMixin +from .live import Live +from .spinner import Spinner +from .style import StyleType + + +class Status(JupyterMixin): + """Displays a status indicator with a 'spinner' animation. + + Args: + status (RenderableType): A status renderable (str or Text typically). + console (Console, optional): Console instance to use, or None for global console. Defaults to None. + 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. + """ + + def __init__( + self, + status: RenderableType, + *, + console: Optional[Console] = None, + spinner: str = "dots", + spinner_style: StyleType = "status.spinner", + speed: float = 1.0, + refresh_per_second: float = 12.5, + ): + self.status = status + self.spinner_style = spinner_style + self.speed = speed + self._spinner = Spinner(spinner, text=status, style=spinner_style, speed=speed) + self._live = Live( + self.renderable, + console=console, + refresh_per_second=refresh_per_second, + transient=True, + ) + + @property + def renderable(self) -> Spinner: + return self._spinner + + @property + def console(self) -> "Console": + """Get the Console used by the Status objects.""" + return self._live.console + + def update( + self, + status: Optional[RenderableType] = None, + *, + spinner: Optional[str] = None, + spinner_style: Optional[StyleType] = None, + speed: Optional[float] = None, + ) -> None: + """Update status. + + Args: + status (Optional[RenderableType], optional): New status renderable or None for no change. Defaults to None. + spinner (Optional[str], optional): New spinner or None for no change. Defaults to None. + spinner_style (Optional[StyleType], optional): New spinner style or None for no change. Defaults to None. + speed (Optional[float], optional): Speed factor for spinner animation or None for no change. Defaults to None. + """ + if status is not None: + self.status = status + if spinner_style is not None: + self.spinner_style = spinner_style + if speed is not None: + self.speed = speed + if spinner is not None: + self._spinner = Spinner( + spinner, text=self.status, style=self.spinner_style, speed=self.speed + ) + self._live.update(self.renderable, refresh=True) + else: + self._spinner.update( + text=self.status, style=self.spinner_style, speed=self.speed + ) + + def start(self) -> None: + """Start the status animation.""" + self._live.start() + + def stop(self) -> None: + """Stop the spinner animation.""" + self._live.stop() + + def __rich__(self) -> RenderableType: + return self.renderable + + def __enter__(self) -> "Status": + self.start() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.stop() + + +if __name__ == "__main__": # pragma: no cover + from time import sleep + + from .console import Console + + console = Console() + with console.status("[magenta]Covid detector booting up") as status: + sleep(3) + console.log("Importing advanced AI") + sleep(3) + console.log("Advanced Covid AI Ready") + sleep(3) + status.update(status="[bold blue] Scanning for Covid", spinner="earth") + sleep(3) + console.log("Found 10,000,000,000 copies of Covid32.exe") + sleep(3) + status.update( + status="[bold red]Moving Covid32.exe to Trash", + spinner="bouncingBall", + spinner_style="yellow", + ) + sleep(5) + console.print("[bold green]Covid deleted successfully") diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/style.py b/myenv/Lib/site-packages/pip/_vendor/rich/style.py new file mode 100644 index 0000000..313c889 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/style.py @@ -0,0 +1,796 @@ +import sys +from functools import lru_cache +from marshal import dumps, loads +from random import randint +from typing import Any, Dict, Iterable, List, Optional, Type, Union, cast + +from . import errors +from .color import Color, ColorParseError, ColorSystem, blend_rgb +from .repr import Result, rich_repr +from .terminal_theme import DEFAULT_TERMINAL_THEME, TerminalTheme + +# Style instances and style definitions are often interchangeable +StyleType = Union[str, "Style"] + + +class _Bit: + """A descriptor to get/set a style attribute bit.""" + + __slots__ = ["bit"] + + def __init__(self, bit_no: int) -> None: + self.bit = 1 << bit_no + + def __get__(self, obj: "Style", objtype: Type["Style"]) -> Optional[bool]: + if obj._set_attributes & self.bit: + return obj._attributes & self.bit != 0 + return None + + +@rich_repr +class Style: + """A terminal style. + + A terminal style consists of a color (`color`), a background color (`bgcolor`), and a number of attributes, such + as bold, italic etc. The attributes have 3 states: they can either be on + (``True``), off (``False``), or not set (``None``). + + Args: + color (Union[Color, str], optional): Color of terminal text. Defaults to None. + bgcolor (Union[Color, str], optional): Color of terminal background. Defaults to None. + bold (bool, optional): Enable bold text. Defaults to None. + dim (bool, optional): Enable dim text. Defaults to None. + italic (bool, optional): Enable italic text. Defaults to None. + underline (bool, optional): Enable underlined text. Defaults to None. + blink (bool, optional): Enabled blinking text. Defaults to None. + blink2 (bool, optional): Enable fast blinking text. Defaults to None. + reverse (bool, optional): Enabled reverse text. Defaults to None. + conceal (bool, optional): Enable concealed text. Defaults to None. + strike (bool, optional): Enable strikethrough text. Defaults to None. + underline2 (bool, optional): Enable doubly underlined text. Defaults to None. + frame (bool, optional): Enable framed text. Defaults to None. + encircle (bool, optional): Enable encircled text. Defaults to None. + overline (bool, optional): Enable overlined text. Defaults to None. + link (str, link): Link URL. Defaults to None. + + """ + + _color: Optional[Color] + _bgcolor: Optional[Color] + _attributes: int + _set_attributes: int + _hash: Optional[int] + _null: bool + _meta: Optional[bytes] + + __slots__ = [ + "_color", + "_bgcolor", + "_attributes", + "_set_attributes", + "_link", + "_link_id", + "_ansi", + "_style_definition", + "_hash", + "_null", + "_meta", + ] + + # maps bits on to SGR parameter + _style_map = { + 0: "1", + 1: "2", + 2: "3", + 3: "4", + 4: "5", + 5: "6", + 6: "7", + 7: "8", + 8: "9", + 9: "21", + 10: "51", + 11: "52", + 12: "53", + } + + STYLE_ATTRIBUTES = { + "dim": "dim", + "d": "dim", + "bold": "bold", + "b": "bold", + "italic": "italic", + "i": "italic", + "underline": "underline", + "u": "underline", + "blink": "blink", + "blink2": "blink2", + "reverse": "reverse", + "r": "reverse", + "conceal": "conceal", + "c": "conceal", + "strike": "strike", + "s": "strike", + "underline2": "underline2", + "uu": "underline2", + "frame": "frame", + "encircle": "encircle", + "overline": "overline", + "o": "overline", + } + + def __init__( + self, + *, + color: Optional[Union[Color, str]] = None, + bgcolor: Optional[Union[Color, str]] = None, + bold: Optional[bool] = None, + dim: Optional[bool] = None, + italic: Optional[bool] = None, + underline: Optional[bool] = None, + blink: Optional[bool] = None, + blink2: Optional[bool] = None, + reverse: Optional[bool] = None, + conceal: Optional[bool] = None, + strike: Optional[bool] = None, + underline2: Optional[bool] = None, + frame: Optional[bool] = None, + encircle: Optional[bool] = None, + overline: Optional[bool] = None, + link: Optional[str] = None, + meta: Optional[Dict[str, Any]] = None, + ): + self._ansi: Optional[str] = None + self._style_definition: Optional[str] = None + + def _make_color(color: Union[Color, str]) -> Color: + return color if isinstance(color, Color) else Color.parse(color) + + self._color = None if color is None else _make_color(color) + self._bgcolor = None if bgcolor is None else _make_color(bgcolor) + self._set_attributes = sum( + ( + bold is not None, + dim is not None and 2, + italic is not None and 4, + underline is not None and 8, + blink is not None and 16, + blink2 is not None and 32, + reverse is not None and 64, + conceal is not None and 128, + strike is not None and 256, + underline2 is not None and 512, + frame is not None and 1024, + encircle is not None and 2048, + overline is not None and 4096, + ) + ) + self._attributes = ( + sum( + ( + bold and 1 or 0, + dim and 2 or 0, + italic and 4 or 0, + underline and 8 or 0, + blink and 16 or 0, + blink2 and 32 or 0, + reverse and 64 or 0, + conceal and 128 or 0, + strike and 256 or 0, + underline2 and 512 or 0, + frame and 1024 or 0, + encircle and 2048 or 0, + overline and 4096 or 0, + ) + ) + if self._set_attributes + else 0 + ) + + self._link = link + self._meta = None if meta is None else dumps(meta) + self._link_id = ( + f"{randint(0, 999999)}{hash(self._meta)}" if (link or meta) else "" + ) + self._hash: Optional[int] = None + self._null = not (self._set_attributes or color or bgcolor or link or meta) + + @classmethod + def null(cls) -> "Style": + """Create an 'null' style, equivalent to Style(), but more performant.""" + return NULL_STYLE + + @classmethod + def from_color( + cls, color: Optional[Color] = None, bgcolor: Optional[Color] = None + ) -> "Style": + """Create a new style with colors and no attributes. + + Returns: + color (Optional[Color]): A (foreground) color, or None for no color. Defaults to None. + bgcolor (Optional[Color]): A (background) color, or None for no color. Defaults to None. + """ + style: Style = cls.__new__(Style) + style._ansi = None + style._style_definition = None + style._color = color + style._bgcolor = bgcolor + style._set_attributes = 0 + style._attributes = 0 + style._link = None + style._link_id = "" + style._meta = None + style._null = not (color or bgcolor) + style._hash = None + return style + + @classmethod + def from_meta(cls, meta: Optional[Dict[str, Any]]) -> "Style": + """Create a new style with meta data. + + Returns: + meta (Optional[Dict[str, Any]]): A dictionary of meta data. Defaults to None. + """ + style: Style = cls.__new__(Style) + style._ansi = None + style._style_definition = None + style._color = None + style._bgcolor = None + style._set_attributes = 0 + style._attributes = 0 + style._link = None + style._meta = dumps(meta) + style._link_id = f"{randint(0, 999999)}{hash(style._meta)}" + style._hash = None + style._null = not (meta) + return style + + @classmethod + def on(cls, meta: Optional[Dict[str, Any]] = None, **handlers: Any) -> "Style": + """Create a blank style with meta information. + + Example: + style = Style.on(click=self.on_click) + + Args: + meta (Optional[Dict[str, Any]], optional): An optional dict of meta information. + **handlers (Any): Keyword arguments are translated in to handlers. + + Returns: + Style: A Style with meta information attached. + """ + meta = {} if meta is None else meta + meta.update({f"@{key}": value for key, value in handlers.items()}) + return cls.from_meta(meta) + + bold = _Bit(0) + dim = _Bit(1) + italic = _Bit(2) + underline = _Bit(3) + blink = _Bit(4) + blink2 = _Bit(5) + reverse = _Bit(6) + conceal = _Bit(7) + strike = _Bit(8) + underline2 = _Bit(9) + frame = _Bit(10) + encircle = _Bit(11) + overline = _Bit(12) + + @property + def link_id(self) -> str: + """Get a link id, used in ansi code for links.""" + return self._link_id + + def __str__(self) -> str: + """Re-generate style definition from attributes.""" + if self._style_definition is None: + attributes: List[str] = [] + append = attributes.append + bits = self._set_attributes + if bits & 0b0000000001111: + if bits & 1: + append("bold" if self.bold else "not bold") + if bits & (1 << 1): + append("dim" if self.dim else "not dim") + if bits & (1 << 2): + append("italic" if self.italic else "not italic") + if bits & (1 << 3): + append("underline" if self.underline else "not underline") + if bits & 0b0000111110000: + if bits & (1 << 4): + append("blink" if self.blink else "not blink") + if bits & (1 << 5): + append("blink2" if self.blink2 else "not blink2") + if bits & (1 << 6): + append("reverse" if self.reverse else "not reverse") + if bits & (1 << 7): + append("conceal" if self.conceal else "not conceal") + if bits & (1 << 8): + append("strike" if self.strike else "not strike") + if bits & 0b1111000000000: + if bits & (1 << 9): + append("underline2" if self.underline2 else "not underline2") + if bits & (1 << 10): + append("frame" if self.frame else "not frame") + if bits & (1 << 11): + append("encircle" if self.encircle else "not encircle") + if bits & (1 << 12): + append("overline" if self.overline else "not overline") + if self._color is not None: + append(self._color.name) + if self._bgcolor is not None: + append("on") + append(self._bgcolor.name) + if self._link: + append("link") + append(self._link) + self._style_definition = " ".join(attributes) or "none" + return self._style_definition + + def __bool__(self) -> bool: + """A Style is false if it has no attributes, colors, or links.""" + return not self._null + + def _make_ansi_codes(self, color_system: ColorSystem) -> str: + """Generate ANSI codes for this style. + + Args: + color_system (ColorSystem): Color system. + + Returns: + str: String containing codes. + """ + + if self._ansi is None: + sgr: List[str] = [] + append = sgr.append + _style_map = self._style_map + attributes = self._attributes & self._set_attributes + if attributes: + if attributes & 1: + append(_style_map[0]) + if attributes & 2: + append(_style_map[1]) + if attributes & 4: + append(_style_map[2]) + if attributes & 8: + append(_style_map[3]) + if attributes & 0b0000111110000: + for bit in range(4, 9): + if attributes & (1 << bit): + append(_style_map[bit]) + if attributes & 0b1111000000000: + for bit in range(9, 13): + if attributes & (1 << bit): + append(_style_map[bit]) + if self._color is not None: + sgr.extend(self._color.downgrade(color_system).get_ansi_codes()) + if self._bgcolor is not None: + sgr.extend( + self._bgcolor.downgrade(color_system).get_ansi_codes( + foreground=False + ) + ) + self._ansi = ";".join(sgr) + return self._ansi + + @classmethod + @lru_cache(maxsize=1024) + def normalize(cls, style: str) -> str: + """Normalize a style definition so that styles with the same effect have the same string + representation. + + Args: + style (str): A style definition. + + Returns: + str: Normal form of style definition. + """ + try: + return str(cls.parse(style)) + except errors.StyleSyntaxError: + return style.strip().lower() + + @classmethod + def pick_first(cls, *values: Optional[StyleType]) -> StyleType: + """Pick first non-None style.""" + for value in values: + if value is not None: + return value + raise ValueError("expected at least one non-None style") + + def __rich_repr__(self) -> Result: + yield "color", self.color, None + yield "bgcolor", self.bgcolor, None + yield "bold", self.bold, None, + yield "dim", self.dim, None, + yield "italic", self.italic, None + yield "underline", self.underline, None, + yield "blink", self.blink, None + yield "blink2", self.blink2, None + yield "reverse", self.reverse, None + yield "conceal", self.conceal, None + yield "strike", self.strike, None + yield "underline2", self.underline2, None + yield "frame", self.frame, None + yield "encircle", self.encircle, None + yield "link", self.link, None + if self._meta: + yield "meta", self.meta + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Style): + return NotImplemented + return self.__hash__() == other.__hash__() + + def __ne__(self, other: Any) -> bool: + if not isinstance(other, Style): + return NotImplemented + return self.__hash__() != other.__hash__() + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + self._hash = hash( + ( + self._color, + self._bgcolor, + self._attributes, + self._set_attributes, + self._link, + self._meta, + ) + ) + return self._hash + + @property + def color(self) -> Optional[Color]: + """The foreground color or None if it is not set.""" + return self._color + + @property + def bgcolor(self) -> Optional[Color]: + """The background color or None if it is not set.""" + return self._bgcolor + + @property + def link(self) -> Optional[str]: + """Link text, if set.""" + return self._link + + @property + def transparent_background(self) -> bool: + """Check if the style specified a transparent background.""" + return self.bgcolor is None or self.bgcolor.is_default + + @property + def background_style(self) -> "Style": + """A Style with background only.""" + return Style(bgcolor=self.bgcolor) + + @property + def meta(self) -> Dict[str, Any]: + """Get meta information (can not be changed after construction).""" + return {} if self._meta is None else cast(Dict[str, Any], loads(self._meta)) + + @property + def without_color(self) -> "Style": + """Get a copy of the style with color removed.""" + if self._null: + return NULL_STYLE + style: Style = self.__new__(Style) + style._ansi = None + style._style_definition = None + style._color = None + style._bgcolor = None + style._attributes = self._attributes + style._set_attributes = self._set_attributes + style._link = self._link + style._link_id = f"{randint(0, 999999)}" if self._link else "" + style._null = False + style._meta = None + style._hash = None + return style + + @classmethod + @lru_cache(maxsize=4096) + def parse(cls, style_definition: str) -> "Style": + """Parse a style definition. + + Args: + style_definition (str): A string containing a style. + + Raises: + errors.StyleSyntaxError: If the style definition syntax is invalid. + + Returns: + `Style`: A Style instance. + """ + if style_definition.strip() == "none" or not style_definition: + return cls.null() + + STYLE_ATTRIBUTES = cls.STYLE_ATTRIBUTES + color: Optional[str] = None + bgcolor: Optional[str] = None + attributes: Dict[str, Optional[Any]] = {} + link: Optional[str] = None + + words = iter(style_definition.split()) + for original_word in words: + word = original_word.lower() + if word == "on": + word = next(words, "") + if not word: + raise errors.StyleSyntaxError("color expected after 'on'") + try: + Color.parse(word) is None + except ColorParseError as error: + raise errors.StyleSyntaxError( + f"unable to parse {word!r} as background color; {error}" + ) from None + bgcolor = word + + elif word == "not": + word = next(words, "") + attribute = STYLE_ATTRIBUTES.get(word) + if attribute is None: + raise errors.StyleSyntaxError( + f"expected style attribute after 'not', found {word!r}" + ) + attributes[attribute] = False + + elif word == "link": + word = next(words, "") + if not word: + raise errors.StyleSyntaxError("URL expected after 'link'") + link = word + + elif word in STYLE_ATTRIBUTES: + attributes[STYLE_ATTRIBUTES[word]] = True + + else: + try: + Color.parse(word) + except ColorParseError as error: + raise errors.StyleSyntaxError( + f"unable to parse {word!r} as color; {error}" + ) from None + color = word + style = Style(color=color, bgcolor=bgcolor, link=link, **attributes) + return style + + @lru_cache(maxsize=1024) + def get_html_style(self, theme: Optional[TerminalTheme] = None) -> str: + """Get a CSS style rule.""" + theme = theme or DEFAULT_TERMINAL_THEME + css: List[str] = [] + append = css.append + + color = self.color + bgcolor = self.bgcolor + if self.reverse: + color, bgcolor = bgcolor, color + if self.dim: + foreground_color = ( + theme.foreground_color if color is None else color.get_truecolor(theme) + ) + color = Color.from_triplet( + blend_rgb(foreground_color, theme.background_color, 0.5) + ) + if color is not None: + theme_color = color.get_truecolor(theme) + append(f"color: {theme_color.hex}") + append(f"text-decoration-color: {theme_color.hex}") + if bgcolor is not None: + theme_color = bgcolor.get_truecolor(theme, foreground=False) + append(f"background-color: {theme_color.hex}") + if self.bold: + append("font-weight: bold") + if self.italic: + append("font-style: italic") + if self.underline: + append("text-decoration: underline") + if self.strike: + append("text-decoration: line-through") + if self.overline: + append("text-decoration: overline") + return "; ".join(css) + + @classmethod + def combine(cls, styles: Iterable["Style"]) -> "Style": + """Combine styles and get result. + + Args: + styles (Iterable[Style]): Styles to combine. + + Returns: + Style: A new style instance. + """ + iter_styles = iter(styles) + return sum(iter_styles, next(iter_styles)) + + @classmethod + def chain(cls, *styles: "Style") -> "Style": + """Combine styles from positional argument in to a single style. + + Args: + *styles (Iterable[Style]): Styles to combine. + + Returns: + Style: A new style instance. + """ + iter_styles = iter(styles) + return sum(iter_styles, next(iter_styles)) + + def copy(self) -> "Style": + """Get a copy of this style. + + Returns: + Style: A new Style instance with identical attributes. + """ + if self._null: + return NULL_STYLE + style: Style = self.__new__(Style) + style._ansi = self._ansi + style._style_definition = self._style_definition + style._color = self._color + style._bgcolor = self._bgcolor + style._attributes = self._attributes + style._set_attributes = self._set_attributes + style._link = self._link + style._link_id = f"{randint(0, 999999)}" if self._link else "" + style._hash = self._hash + style._null = False + style._meta = self._meta + return style + + @lru_cache(maxsize=128) + def clear_meta_and_links(self) -> "Style": + """Get a copy of this style with link and meta information removed. + + Returns: + Style: New style object. + """ + if self._null: + return NULL_STYLE + style: Style = self.__new__(Style) + style._ansi = self._ansi + style._style_definition = self._style_definition + style._color = self._color + style._bgcolor = self._bgcolor + style._attributes = self._attributes + style._set_attributes = self._set_attributes + style._link = None + style._link_id = "" + style._hash = self._hash + style._null = False + style._meta = None + return style + + def update_link(self, link: Optional[str] = None) -> "Style": + """Get a copy with a different value for link. + + Args: + link (str, optional): New value for link. Defaults to None. + + Returns: + Style: A new Style instance. + """ + style: Style = self.__new__(Style) + style._ansi = self._ansi + style._style_definition = self._style_definition + style._color = self._color + style._bgcolor = self._bgcolor + style._attributes = self._attributes + style._set_attributes = self._set_attributes + style._link = link + style._link_id = f"{randint(0, 999999)}" if link else "" + style._hash = None + style._null = False + style._meta = self._meta + return style + + def render( + self, + text: str = "", + *, + color_system: Optional[ColorSystem] = ColorSystem.TRUECOLOR, + legacy_windows: bool = False, + ) -> str: + """Render the ANSI codes for the style. + + Args: + text (str, optional): A string to style. Defaults to "". + color_system (Optional[ColorSystem], optional): Color system to render to. Defaults to ColorSystem.TRUECOLOR. + + Returns: + str: A string containing ANSI style codes. + """ + if not text or color_system is None: + return text + attrs = self._ansi or self._make_ansi_codes(color_system) + rendered = f"\x1b[{attrs}m{text}\x1b[0m" if attrs else text + if self._link and not legacy_windows: + rendered = ( + f"\x1b]8;id={self._link_id};{self._link}\x1b\\{rendered}\x1b]8;;\x1b\\" + ) + return rendered + + def test(self, text: Optional[str] = None) -> None: + """Write text with style directly to terminal. + + This method is for testing purposes only. + + Args: + text (Optional[str], optional): Text to style or None for style name. + + """ + text = text or str(self) + sys.stdout.write(f"{self.render(text)}\n") + + @lru_cache(maxsize=1024) + def _add(self, style: Optional["Style"]) -> "Style": + if style is None or style._null: + return self + if self._null: + return style + new_style: Style = self.__new__(Style) + new_style._ansi = None + new_style._style_definition = None + new_style._color = style._color or self._color + new_style._bgcolor = style._bgcolor or self._bgcolor + new_style._attributes = (self._attributes & ~style._set_attributes) | ( + style._attributes & style._set_attributes + ) + new_style._set_attributes = self._set_attributes | style._set_attributes + new_style._link = style._link or self._link + new_style._link_id = style._link_id or self._link_id + new_style._null = style._null + if self._meta and style._meta: + new_style._meta = dumps({**self.meta, **style.meta}) + else: + new_style._meta = self._meta or style._meta + new_style._hash = None + return new_style + + def __add__(self, style: Optional["Style"]) -> "Style": + combined_style = self._add(style) + return combined_style.copy() if combined_style.link else combined_style + + +NULL_STYLE = Style() + + +class StyleStack: + """A stack of styles.""" + + __slots__ = ["_stack"] + + def __init__(self, default_style: "Style") -> None: + self._stack: List[Style] = [default_style] + + def __repr__(self) -> str: + return f"" + + @property + def current(self) -> Style: + """Get the Style at the top of the stack.""" + return self._stack[-1] + + def push(self, style: Style) -> None: + """Push a new style on to the stack. + + Args: + style (Style): New style to combine with current style. + """ + self._stack.append(self._stack[-1] + style) + + def pop(self) -> Style: + """Pop last style and discard. + + Returns: + Style: New current style (also available as stack.current) + """ + self._stack.pop() + return self._stack[-1] diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/styled.py b/myenv/Lib/site-packages/pip/_vendor/rich/styled.py new file mode 100644 index 0000000..91cd0db --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/styled.py @@ -0,0 +1,42 @@ +from typing import TYPE_CHECKING + +from .measure import Measurement +from .segment import Segment +from .style import StyleType + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult, RenderableType + + +class Styled: + """Apply a style to a renderable. + + Args: + renderable (RenderableType): Any renderable. + style (StyleType): A style to apply across the entire renderable. + """ + + def __init__(self, renderable: "RenderableType", style: "StyleType") -> None: + self.renderable = renderable + self.style = style + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + style = console.get_style(self.style) + rendered_segments = console.render(self.renderable, options) + segments = Segment.apply_style(rendered_segments, style) + return segments + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + return Measurement.get(console, options, self.renderable) + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich import print + from pip._vendor.rich.panel import Panel + + panel = Styled(Panel("hello"), "on blue") + print(panel) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/syntax.py b/myenv/Lib/site-packages/pip/_vendor/rich/syntax.py new file mode 100644 index 0000000..c26fd87 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/syntax.py @@ -0,0 +1,958 @@ +import os.path +import platform +import re +import sys +import textwrap +from abc import ABC, abstractmethod +from pathlib import Path +from typing import ( + Any, + Dict, + Iterable, + List, + NamedTuple, + Optional, + Sequence, + Set, + Tuple, + Type, + Union, +) + +from pip._vendor.pygments.lexer import Lexer +from pip._vendor.pygments.lexers import get_lexer_by_name, guess_lexer_for_filename +from pip._vendor.pygments.style import Style as PygmentsStyle +from pip._vendor.pygments.styles import get_style_by_name +from pip._vendor.pygments.token import ( + Comment, + Error, + Generic, + Keyword, + Name, + Number, + Operator, + String, + Token, + Whitespace, +) +from pip._vendor.pygments.util import ClassNotFound + +from pip._vendor.rich.containers import Lines +from pip._vendor.rich.padding import Padding, PaddingDimensions + +from ._loop import loop_first +from .cells import cell_len +from .color import Color, blend_rgb +from .console import Console, ConsoleOptions, JustifyMethod, RenderResult +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment, Segments +from .style import Style, StyleType +from .text import Text + +TokenType = Tuple[str, ...] + +WINDOWS = platform.system() == "Windows" +DEFAULT_THEME = "monokai" + +# The following styles are based on https://github.com/pygments/pygments/blob/master/pygments/formatters/terminal.py +# A few modifications were made + +ANSI_LIGHT: Dict[TokenType, Style] = { + Token: Style(), + Whitespace: Style(color="white"), + Comment: Style(dim=True), + Comment.Preproc: Style(color="cyan"), + Keyword: Style(color="blue"), + Keyword.Type: Style(color="cyan"), + Operator.Word: Style(color="magenta"), + Name.Builtin: Style(color="cyan"), + Name.Function: Style(color="green"), + Name.Namespace: Style(color="cyan", underline=True), + Name.Class: Style(color="green", underline=True), + Name.Exception: Style(color="cyan"), + Name.Decorator: Style(color="magenta", bold=True), + Name.Variable: Style(color="red"), + Name.Constant: Style(color="red"), + Name.Attribute: Style(color="cyan"), + Name.Tag: Style(color="bright_blue"), + String: Style(color="yellow"), + Number: Style(color="blue"), + Generic.Deleted: Style(color="bright_red"), + Generic.Inserted: Style(color="green"), + Generic.Heading: Style(bold=True), + Generic.Subheading: Style(color="magenta", bold=True), + Generic.Prompt: Style(bold=True), + Generic.Error: Style(color="bright_red"), + Error: Style(color="red", underline=True), +} + +ANSI_DARK: Dict[TokenType, Style] = { + Token: Style(), + Whitespace: Style(color="bright_black"), + Comment: Style(dim=True), + Comment.Preproc: Style(color="bright_cyan"), + Keyword: Style(color="bright_blue"), + Keyword.Type: Style(color="bright_cyan"), + Operator.Word: Style(color="bright_magenta"), + Name.Builtin: Style(color="bright_cyan"), + Name.Function: Style(color="bright_green"), + Name.Namespace: Style(color="bright_cyan", underline=True), + Name.Class: Style(color="bright_green", underline=True), + Name.Exception: Style(color="bright_cyan"), + Name.Decorator: Style(color="bright_magenta", bold=True), + Name.Variable: Style(color="bright_red"), + Name.Constant: Style(color="bright_red"), + Name.Attribute: Style(color="bright_cyan"), + Name.Tag: Style(color="bright_blue"), + String: Style(color="yellow"), + Number: Style(color="bright_blue"), + Generic.Deleted: Style(color="bright_red"), + Generic.Inserted: Style(color="bright_green"), + Generic.Heading: Style(bold=True), + Generic.Subheading: Style(color="bright_magenta", bold=True), + Generic.Prompt: Style(bold=True), + Generic.Error: Style(color="bright_red"), + Error: Style(color="red", underline=True), +} + +RICH_SYNTAX_THEMES = {"ansi_light": ANSI_LIGHT, "ansi_dark": ANSI_DARK} +NUMBERS_COLUMN_DEFAULT_PADDING = 2 + + +class SyntaxTheme(ABC): + """Base class for a syntax theme.""" + + @abstractmethod + def get_style_for_token(self, token_type: TokenType) -> Style: + """Get a style for a given Pygments token.""" + raise NotImplementedError # pragma: no cover + + @abstractmethod + def get_background_style(self) -> Style: + """Get the background color.""" + raise NotImplementedError # pragma: no cover + + +class PygmentsSyntaxTheme(SyntaxTheme): + """Syntax theme that delegates to Pygments theme.""" + + def __init__(self, theme: Union[str, Type[PygmentsStyle]]) -> None: + self._style_cache: Dict[TokenType, Style] = {} + if isinstance(theme, str): + try: + self._pygments_style_class = get_style_by_name(theme) + except ClassNotFound: + self._pygments_style_class = get_style_by_name("default") + else: + self._pygments_style_class = theme + + self._background_color = self._pygments_style_class.background_color + self._background_style = Style(bgcolor=self._background_color) + + def get_style_for_token(self, token_type: TokenType) -> Style: + """Get a style from a Pygments class.""" + try: + return self._style_cache[token_type] + except KeyError: + try: + pygments_style = self._pygments_style_class.style_for_token(token_type) + except KeyError: + style = Style.null() + else: + color = pygments_style["color"] + bgcolor = pygments_style["bgcolor"] + style = Style( + color="#" + color if color else "#000000", + bgcolor="#" + bgcolor if bgcolor else self._background_color, + bold=pygments_style["bold"], + italic=pygments_style["italic"], + underline=pygments_style["underline"], + ) + self._style_cache[token_type] = style + return style + + def get_background_style(self) -> Style: + return self._background_style + + +class ANSISyntaxTheme(SyntaxTheme): + """Syntax theme to use standard colors.""" + + def __init__(self, style_map: Dict[TokenType, Style]) -> None: + self.style_map = style_map + self._missing_style = Style.null() + self._background_style = Style.null() + self._style_cache: Dict[TokenType, Style] = {} + + def get_style_for_token(self, token_type: TokenType) -> Style: + """Look up style in the style map.""" + try: + return self._style_cache[token_type] + except KeyError: + # Styles form a hierarchy + # We need to go from most to least specific + # e.g. ("foo", "bar", "baz") to ("foo", "bar") to ("foo",) + get_style = self.style_map.get + token = tuple(token_type) + style = self._missing_style + while token: + _style = get_style(token) + if _style is not None: + style = _style + break + token = token[:-1] + self._style_cache[token_type] = style + return style + + def get_background_style(self) -> Style: + return self._background_style + + +SyntaxPosition = Tuple[int, int] + + +class _SyntaxHighlightRange(NamedTuple): + """ + A range to highlight in a Syntax object. + `start` and `end` are 2-integers tuples, where the first integer is the line number + (starting from 1) and the second integer is the column index (starting from 0). + """ + + style: StyleType + start: SyntaxPosition + end: SyntaxPosition + + +class Syntax(JupyterMixin): + """Construct a Syntax object to render syntax highlighted code. + + Args: + code (str): Code to highlight. + lexer (Lexer | str): Lexer to use (see https://pygments.org/docs/lexers/) + theme (str, optional): Color theme, aka Pygments style (see https://pygments.org/docs/styles/#getting-a-list-of-available-styles). Defaults to "monokai". + dedent (bool, optional): Enable stripping of initial whitespace. Defaults to False. + line_numbers (bool, optional): Enable rendering of line numbers. Defaults to False. + start_line (int, optional): Starting number for line numbers. Defaults to 1. + line_range (Tuple[int | None, int | None], optional): If given should be a tuple of the start and end line to render. + A value of None in the tuple indicates the range is open in that direction. + highlight_lines (Set[int]): A set of line numbers to highlight. + code_width: Width of code to render (not including line numbers), or ``None`` to use all available width. + tab_size (int, optional): Size of tabs. Defaults to 4. + word_wrap (bool, optional): Enable word wrapping. + background_color (str, optional): Optional background color, or None to use theme color. Defaults to None. + indent_guides (bool, optional): Show indent guides. Defaults to False. + padding (PaddingDimensions): Padding to apply around the syntax. Defaults to 0 (no padding). + """ + + _pygments_style_class: Type[PygmentsStyle] + _theme: SyntaxTheme + + @classmethod + def get_theme(cls, name: Union[str, SyntaxTheme]) -> SyntaxTheme: + """Get a syntax theme instance.""" + if isinstance(name, SyntaxTheme): + return name + theme: SyntaxTheme + if name in RICH_SYNTAX_THEMES: + theme = ANSISyntaxTheme(RICH_SYNTAX_THEMES[name]) + else: + theme = PygmentsSyntaxTheme(name) + return theme + + def __init__( + self, + code: str, + lexer: Union[Lexer, str], + *, + theme: Union[str, SyntaxTheme] = DEFAULT_THEME, + dedent: bool = False, + line_numbers: bool = False, + start_line: int = 1, + line_range: Optional[Tuple[Optional[int], Optional[int]]] = None, + highlight_lines: Optional[Set[int]] = None, + code_width: Optional[int] = None, + tab_size: int = 4, + word_wrap: bool = False, + background_color: Optional[str] = None, + indent_guides: bool = False, + padding: PaddingDimensions = 0, + ) -> None: + self.code = code + self._lexer = lexer + self.dedent = dedent + self.line_numbers = line_numbers + self.start_line = start_line + self.line_range = line_range + self.highlight_lines = highlight_lines or set() + self.code_width = code_width + self.tab_size = tab_size + self.word_wrap = word_wrap + self.background_color = background_color + self.background_style = ( + Style(bgcolor=background_color) if background_color else Style() + ) + self.indent_guides = indent_guides + self.padding = padding + + self._theme = self.get_theme(theme) + self._stylized_ranges: List[_SyntaxHighlightRange] = [] + + @classmethod + def from_path( + cls, + path: str, + encoding: str = "utf-8", + lexer: Optional[Union[Lexer, str]] = None, + theme: Union[str, SyntaxTheme] = DEFAULT_THEME, + dedent: bool = False, + line_numbers: bool = False, + line_range: Optional[Tuple[int, int]] = None, + start_line: int = 1, + highlight_lines: Optional[Set[int]] = None, + code_width: Optional[int] = None, + tab_size: int = 4, + word_wrap: bool = False, + background_color: Optional[str] = None, + indent_guides: bool = False, + padding: PaddingDimensions = 0, + ) -> "Syntax": + """Construct a Syntax object from a file. + + Args: + path (str): Path to file to highlight. + encoding (str): Encoding of file. + lexer (str | Lexer, optional): Lexer to use. If None, lexer will be auto-detected from path/file content. + theme (str, optional): Color theme, aka Pygments style (see https://pygments.org/docs/styles/#getting-a-list-of-available-styles). Defaults to "emacs". + dedent (bool, optional): Enable stripping of initial whitespace. Defaults to True. + line_numbers (bool, optional): Enable rendering of line numbers. Defaults to False. + start_line (int, optional): Starting number for line numbers. Defaults to 1. + line_range (Tuple[int, int], optional): If given should be a tuple of the start and end line to render. + highlight_lines (Set[int]): A set of line numbers to highlight. + code_width: Width of code to render (not including line numbers), or ``None`` to use all available width. + tab_size (int, optional): Size of tabs. Defaults to 4. + word_wrap (bool, optional): Enable word wrapping of code. + background_color (str, optional): Optional background color, or None to use theme color. Defaults to None. + indent_guides (bool, optional): Show indent guides. Defaults to False. + padding (PaddingDimensions): Padding to apply around the syntax. Defaults to 0 (no padding). + + Returns: + [Syntax]: A Syntax object that may be printed to the console + """ + code = Path(path).read_text(encoding=encoding) + + if not lexer: + lexer = cls.guess_lexer(path, code=code) + + return cls( + code, + lexer, + theme=theme, + dedent=dedent, + line_numbers=line_numbers, + line_range=line_range, + start_line=start_line, + highlight_lines=highlight_lines, + code_width=code_width, + tab_size=tab_size, + word_wrap=word_wrap, + background_color=background_color, + indent_guides=indent_guides, + padding=padding, + ) + + @classmethod + def guess_lexer(cls, path: str, code: Optional[str] = None) -> str: + """Guess the alias of the Pygments lexer to use based on a path and an optional string of code. + If code is supplied, it will use a combination of the code and the filename to determine the + best lexer to use. For example, if the file is ``index.html`` and the file contains Django + templating syntax, then "html+django" will be returned. If the file is ``index.html``, and no + templating language is used, the "html" lexer will be used. If no string of code + is supplied, the lexer will be chosen based on the file extension.. + + Args: + path (AnyStr): The path to the file containing the code you wish to know the lexer for. + code (str, optional): Optional string of code that will be used as a fallback if no lexer + is found for the supplied path. + + Returns: + str: The name of the Pygments lexer that best matches the supplied path/code. + """ + lexer: Optional[Lexer] = None + lexer_name = "default" + if code: + try: + lexer = guess_lexer_for_filename(path, code) + except ClassNotFound: + pass + + if not lexer: + try: + _, ext = os.path.splitext(path) + if ext: + extension = ext.lstrip(".").lower() + lexer = get_lexer_by_name(extension) + except ClassNotFound: + pass + + if lexer: + if lexer.aliases: + lexer_name = lexer.aliases[0] + else: + lexer_name = lexer.name + + return lexer_name + + def _get_base_style(self) -> Style: + """Get the base style.""" + default_style = self._theme.get_background_style() + self.background_style + return default_style + + def _get_token_color(self, token_type: TokenType) -> Optional[Color]: + """Get a color (if any) for the given token. + + Args: + token_type (TokenType): A token type tuple from Pygments. + + Returns: + Optional[Color]: Color from theme, or None for no color. + """ + style = self._theme.get_style_for_token(token_type) + return style.color + + @property + def lexer(self) -> Optional[Lexer]: + """The lexer for this syntax, or None if no lexer was found. + + Tries to find the lexer by name if a string was passed to the constructor. + """ + + if isinstance(self._lexer, Lexer): + return self._lexer + try: + return get_lexer_by_name( + self._lexer, + stripnl=False, + ensurenl=True, + tabsize=self.tab_size, + ) + except ClassNotFound: + return None + + @property + def default_lexer(self) -> Lexer: + """A Pygments Lexer to use if one is not specified or invalid.""" + return get_lexer_by_name( + "text", + stripnl=False, + ensurenl=True, + tabsize=self.tab_size, + ) + + def highlight( + self, + code: str, + line_range: Optional[Tuple[Optional[int], Optional[int]]] = None, + ) -> Text: + """Highlight code and return a Text instance. + + Args: + code (str): Code to highlight. + line_range(Tuple[int, int], optional): Optional line range to highlight. + + Returns: + Text: A text instance containing highlighted syntax. + """ + + base_style = self._get_base_style() + justify: JustifyMethod = ( + "default" if base_style.transparent_background else "left" + ) + + text = Text( + justify=justify, + style=base_style, + tab_size=self.tab_size, + no_wrap=not self.word_wrap, + ) + _get_theme_style = self._theme.get_style_for_token + + lexer = self.lexer or self.default_lexer + + if lexer is None: + text.append(code) + else: + if line_range: + # More complicated path to only stylize a portion of the code + # This speeds up further operations as there are less spans to process + line_start, line_end = line_range + + def line_tokenize() -> Iterable[Tuple[Any, str]]: + """Split tokens to one per line.""" + assert lexer # required to make MyPy happy - we know lexer is not None at this point + + for token_type, token in lexer.get_tokens(code): + while token: + line_token, new_line, token = token.partition("\n") + yield token_type, line_token + new_line + + def tokens_to_spans() -> Iterable[Tuple[str, Optional[Style]]]: + """Convert tokens to spans.""" + tokens = iter(line_tokenize()) + line_no = 0 + _line_start = line_start - 1 if line_start else 0 + + # Skip over tokens until line start + while line_no < _line_start: + try: + _token_type, token = next(tokens) + except StopIteration: + break + yield (token, None) + if token.endswith("\n"): + line_no += 1 + # Generate spans until line end + for token_type, token in tokens: + yield (token, _get_theme_style(token_type)) + if token.endswith("\n"): + line_no += 1 + if line_end and line_no >= line_end: + break + + text.append_tokens(tokens_to_spans()) + + else: + text.append_tokens( + (token, _get_theme_style(token_type)) + for token_type, token in lexer.get_tokens(code) + ) + if self.background_color is not None: + text.stylize(f"on {self.background_color}") + + if self._stylized_ranges: + self._apply_stylized_ranges(text) + + return text + + def stylize_range( + self, style: StyleType, start: SyntaxPosition, end: SyntaxPosition + ) -> None: + """ + Adds a custom style on a part of the code, that will be applied to the syntax display when it's rendered. + Line numbers are 1-based, while column indexes are 0-based. + + Args: + style (StyleType): The style to apply. + start (Tuple[int, int]): The start of the range, in the form `[line number, column index]`. + end (Tuple[int, int]): The end of the range, in the form `[line number, column index]`. + """ + self._stylized_ranges.append(_SyntaxHighlightRange(style, start, end)) + + def _get_line_numbers_color(self, blend: float = 0.3) -> Color: + background_style = self._theme.get_background_style() + self.background_style + background_color = background_style.bgcolor + if background_color is None or background_color.is_system_defined: + return Color.default() + foreground_color = self._get_token_color(Token.Text) + if foreground_color is None or foreground_color.is_system_defined: + return foreground_color or Color.default() + new_color = blend_rgb( + background_color.get_truecolor(), + foreground_color.get_truecolor(), + cross_fade=blend, + ) + return Color.from_triplet(new_color) + + @property + def _numbers_column_width(self) -> int: + """Get the number of characters used to render the numbers column.""" + column_width = 0 + if self.line_numbers: + column_width = ( + len(str(self.start_line + self.code.count("\n"))) + + NUMBERS_COLUMN_DEFAULT_PADDING + ) + return column_width + + def _get_number_styles(self, console: Console) -> Tuple[Style, Style, Style]: + """Get background, number, and highlight styles for line numbers.""" + background_style = self._get_base_style() + if background_style.transparent_background: + return Style.null(), Style(dim=True), Style.null() + if console.color_system in ("256", "truecolor"): + number_style = Style.chain( + background_style, + self._theme.get_style_for_token(Token.Text), + Style(color=self._get_line_numbers_color()), + self.background_style, + ) + highlight_number_style = Style.chain( + background_style, + self._theme.get_style_for_token(Token.Text), + Style(bold=True, color=self._get_line_numbers_color(0.9)), + self.background_style, + ) + else: + number_style = background_style + Style(dim=True) + highlight_number_style = background_style + Style(dim=False) + return background_style, number_style, highlight_number_style + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + _, right, _, left = Padding.unpack(self.padding) + padding = left + right + if self.code_width is not None: + width = self.code_width + self._numbers_column_width + padding + 1 + return Measurement(self._numbers_column_width, width) + lines = self.code.splitlines() + width = ( + self._numbers_column_width + + padding + + (max(cell_len(line) for line in lines) if lines else 0) + ) + if self.line_numbers: + width += 1 + return Measurement(self._numbers_column_width, width) + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = Segments(self._get_syntax(console, options)) + if self.padding: + yield Padding( + segments, style=self._theme.get_background_style(), pad=self.padding + ) + else: + yield segments + + def _get_syntax( + self, + console: Console, + options: ConsoleOptions, + ) -> Iterable[Segment]: + """ + Get the Segments for the Syntax object, excluding any vertical/horizontal padding + """ + transparent_background = self._get_base_style().transparent_background + code_width = ( + ( + (options.max_width - self._numbers_column_width - 1) + if self.line_numbers + else options.max_width + ) + if self.code_width is None + else self.code_width + ) + + ends_on_nl, processed_code = self._process_code(self.code) + text = self.highlight(processed_code, self.line_range) + + if not self.line_numbers and not self.word_wrap and not self.line_range: + if not ends_on_nl: + text.remove_suffix("\n") + # Simple case of just rendering text + style = ( + self._get_base_style() + + self._theme.get_style_for_token(Comment) + + Style(dim=True) + + self.background_style + ) + if self.indent_guides and not options.ascii_only: + text = text.with_indent_guides(self.tab_size, style=style) + text.overflow = "crop" + if style.transparent_background: + yield from console.render( + text, options=options.update(width=code_width) + ) + else: + syntax_lines = console.render_lines( + text, + options.update(width=code_width, height=None, justify="left"), + style=self.background_style, + pad=True, + new_lines=True, + ) + for syntax_line in syntax_lines: + yield from syntax_line + return + + start_line, end_line = self.line_range or (None, None) + line_offset = 0 + if start_line: + line_offset = max(0, start_line - 1) + lines: Union[List[Text], Lines] = text.split("\n", allow_blank=ends_on_nl) + if self.line_range: + if line_offset > len(lines): + return + lines = lines[line_offset:end_line] + + if self.indent_guides and not options.ascii_only: + style = ( + self._get_base_style() + + self._theme.get_style_for_token(Comment) + + Style(dim=True) + + self.background_style + ) + lines = ( + Text("\n") + .join(lines) + .with_indent_guides(self.tab_size, style=style + Style(italic=False)) + .split("\n", allow_blank=True) + ) + + numbers_column_width = self._numbers_column_width + render_options = options.update(width=code_width) + + highlight_line = self.highlight_lines.__contains__ + _Segment = Segment + new_line = _Segment("\n") + + line_pointer = "> " if options.legacy_windows else "❱ " + + ( + background_style, + number_style, + highlight_number_style, + ) = self._get_number_styles(console) + + for line_no, line in enumerate(lines, self.start_line + line_offset): + if self.word_wrap: + wrapped_lines = console.render_lines( + line, + render_options.update(height=None, justify="left"), + style=background_style, + pad=not transparent_background, + ) + else: + segments = list(line.render(console, end="")) + if options.no_wrap: + wrapped_lines = [segments] + else: + wrapped_lines = [ + _Segment.adjust_line_length( + segments, + render_options.max_width, + style=background_style, + pad=not transparent_background, + ) + ] + + if self.line_numbers: + wrapped_line_left_pad = _Segment( + " " * numbers_column_width + " ", background_style + ) + for first, wrapped_line in loop_first(wrapped_lines): + if first: + line_column = str(line_no).rjust(numbers_column_width - 2) + " " + if highlight_line(line_no): + yield _Segment(line_pointer, Style(color="red")) + yield _Segment(line_column, highlight_number_style) + else: + yield _Segment(" ", highlight_number_style) + yield _Segment(line_column, number_style) + else: + yield wrapped_line_left_pad + yield from wrapped_line + yield new_line + else: + for wrapped_line in wrapped_lines: + yield from wrapped_line + yield new_line + + def _apply_stylized_ranges(self, text: Text) -> None: + """ + Apply stylized ranges to a text instance, + using the given code to determine the right portion to apply the style to. + + Args: + text (Text): Text instance to apply the style to. + """ + code = text.plain + newlines_offsets = [ + # Let's add outer boundaries at each side of the list: + 0, + # N.B. using "\n" here is much faster than using metacharacters such as "^" or "\Z": + *[ + match.start() + 1 + for match in re.finditer("\n", code, flags=re.MULTILINE) + ], + len(code) + 1, + ] + + for stylized_range in self._stylized_ranges: + start = _get_code_index_for_syntax_position( + newlines_offsets, stylized_range.start + ) + end = _get_code_index_for_syntax_position( + newlines_offsets, stylized_range.end + ) + if start is not None and end is not None: + text.stylize(stylized_range.style, start, end) + + def _process_code(self, code: str) -> Tuple[bool, str]: + """ + Applies various processing to a raw code string + (normalises it so it always ends with a line return, dedents it if necessary, etc.) + + Args: + code (str): The raw code string to process + + Returns: + Tuple[bool, str]: the boolean indicates whether the raw code ends with a line return, + while the string is the processed code. + """ + ends_on_nl = code.endswith("\n") + processed_code = code if ends_on_nl else code + "\n" + processed_code = ( + textwrap.dedent(processed_code) if self.dedent else processed_code + ) + processed_code = processed_code.expandtabs(self.tab_size) + return ends_on_nl, processed_code + + +def _get_code_index_for_syntax_position( + newlines_offsets: Sequence[int], position: SyntaxPosition +) -> Optional[int]: + """ + Returns the index of the code string for the given positions. + + Args: + newlines_offsets (Sequence[int]): The offset of each newline character found in the code snippet. + position (SyntaxPosition): The position to search for. + + Returns: + Optional[int]: The index of the code string for this position, or `None` + if the given position's line number is out of range (if it's the column that is out of range + we silently clamp its value so that it reaches the end of the line) + """ + lines_count = len(newlines_offsets) + + line_number, column_index = position + if line_number > lines_count or len(newlines_offsets) < (line_number + 1): + return None # `line_number` is out of range + line_index = line_number - 1 + line_length = newlines_offsets[line_index + 1] - newlines_offsets[line_index] - 1 + # If `column_index` is out of range: let's silently clamp it: + column_index = min(line_length, column_index) + return newlines_offsets[line_index] + column_index + + +if __name__ == "__main__": # pragma: no cover + import argparse + import sys + + parser = argparse.ArgumentParser( + description="Render syntax to the console with Rich" + ) + parser.add_argument( + "path", + metavar="PATH", + help="path to file, or - for stdin", + ) + parser.add_argument( + "-c", + "--force-color", + dest="force_color", + action="store_true", + default=None, + help="force color for non-terminals", + ) + parser.add_argument( + "-i", + "--indent-guides", + dest="indent_guides", + action="store_true", + default=False, + help="display indent guides", + ) + parser.add_argument( + "-l", + "--line-numbers", + dest="line_numbers", + action="store_true", + help="render line numbers", + ) + parser.add_argument( + "-w", + "--width", + type=int, + dest="width", + default=None, + help="width of output (default will auto-detect)", + ) + parser.add_argument( + "-r", + "--wrap", + dest="word_wrap", + action="store_true", + default=False, + help="word wrap long lines", + ) + parser.add_argument( + "-s", + "--soft-wrap", + action="store_true", + dest="soft_wrap", + default=False, + help="enable soft wrapping mode", + ) + parser.add_argument( + "-t", "--theme", dest="theme", default="monokai", help="pygments theme" + ) + parser.add_argument( + "-b", + "--background-color", + dest="background_color", + default=None, + help="Override background color", + ) + parser.add_argument( + "-x", + "--lexer", + default=None, + dest="lexer_name", + help="Lexer name", + ) + parser.add_argument( + "-p", "--padding", type=int, default=0, dest="padding", help="Padding" + ) + parser.add_argument( + "--highlight-line", + type=int, + default=None, + dest="highlight_line", + help="The line number (not index!) to highlight", + ) + args = parser.parse_args() + + from pip._vendor.rich.console import Console + + console = Console(force_terminal=args.force_color, width=args.width) + + if args.path == "-": + code = sys.stdin.read() + syntax = Syntax( + code=code, + lexer=args.lexer_name, + line_numbers=args.line_numbers, + word_wrap=args.word_wrap, + theme=args.theme, + background_color=args.background_color, + indent_guides=args.indent_guides, + padding=args.padding, + highlight_lines={args.highlight_line}, + ) + else: + syntax = Syntax.from_path( + args.path, + lexer=args.lexer_name, + line_numbers=args.line_numbers, + word_wrap=args.word_wrap, + theme=args.theme, + background_color=args.background_color, + indent_guides=args.indent_guides, + padding=args.padding, + highlight_lines={args.highlight_line}, + ) + console.print(syntax, soft_wrap=args.soft_wrap) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/table.py b/myenv/Lib/site-packages/pip/_vendor/rich/table.py new file mode 100644 index 0000000..43c718e --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/table.py @@ -0,0 +1,1000 @@ +from dataclasses import dataclass, field, replace +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + List, + NamedTuple, + Optional, + Sequence, + Tuple, + Union, +) + +from . import box, errors +from ._loop import loop_first_last, loop_last +from ._pick import pick_bool +from ._ratio import ratio_distribute, ratio_reduce +from .align import VerticalAlignMethod +from .jupyter import JupyterMixin +from .measure import Measurement +from .padding import Padding, PaddingDimensions +from .protocol import is_renderable +from .segment import Segment +from .style import Style, StyleType +from .text import Text, TextType + +if TYPE_CHECKING: + from .console import ( + Console, + ConsoleOptions, + JustifyMethod, + OverflowMethod, + RenderableType, + RenderResult, + ) + + +@dataclass +class Column: + """Defines a column within a ~Table. + + Args: + title (Union[str, Text], optional): The title of the table rendered at the top. Defaults to None. + caption (Union[str, Text], optional): The table caption rendered below. Defaults to None. + width (int, optional): The width in characters of the table, or ``None`` to automatically fit. Defaults to None. + min_width (Optional[int], optional): The minimum width of the table, or ``None`` for no minimum. Defaults to None. + box (box.Box, optional): One of the constants in box.py used to draw the edges (see :ref:`appendix_box`), or ``None`` for no box lines. Defaults to box.HEAVY_HEAD. + safe_box (Optional[bool], optional): Disable box characters that don't display on windows legacy terminal with *raster* fonts. Defaults to True. + padding (PaddingDimensions, optional): Padding for cells (top, right, bottom, left). Defaults to (0, 1). + collapse_padding (bool, optional): Enable collapsing of padding around cells. Defaults to False. + pad_edge (bool, optional): Enable padding of edge cells. Defaults to True. + expand (bool, optional): Expand the table to fit the available space if ``True``, otherwise the table width will be auto-calculated. Defaults to False. + show_header (bool, optional): Show a header row. Defaults to True. + show_footer (bool, optional): Show a footer row. Defaults to False. + show_edge (bool, optional): Draw a box around the outside of the table. Defaults to True. + show_lines (bool, optional): Draw lines between every row. Defaults to False. + leading (bool, optional): Number of blank lines between rows (precludes ``show_lines``). Defaults to 0. + style (Union[str, Style], optional): Default style for the table. Defaults to "none". + row_styles (List[Union, str], optional): Optional list of row styles, if more than one style is given then the styles will alternate. Defaults to None. + header_style (Union[str, Style], optional): Style of the header. Defaults to "table.header". + footer_style (Union[str, Style], optional): Style of the footer. Defaults to "table.footer". + border_style (Union[str, Style], optional): Style of the border. Defaults to None. + title_style (Union[str, Style], optional): Style of the title. Defaults to None. + caption_style (Union[str, Style], optional): Style of the caption. Defaults to None. + title_justify (str, optional): Justify method for title. Defaults to "center". + caption_justify (str, optional): Justify method for caption. Defaults to "center". + highlight (bool, optional): Highlight cell contents (if str). Defaults to False. + """ + + header: "RenderableType" = "" + """RenderableType: Renderable for the header (typically a string)""" + + footer: "RenderableType" = "" + """RenderableType: Renderable for the footer (typically a string)""" + + header_style: StyleType = "" + """StyleType: The style of the header.""" + + footer_style: StyleType = "" + """StyleType: The style of the footer.""" + + style: StyleType = "" + """StyleType: The style of the column.""" + + justify: "JustifyMethod" = "left" + """str: How to justify text within the column ("left", "center", "right", or "full")""" + + vertical: "VerticalAlignMethod" = "top" + """str: How to vertically align content ("top", "middle", or "bottom")""" + + overflow: "OverflowMethod" = "ellipsis" + """str: Overflow method.""" + + width: Optional[int] = None + """Optional[int]: Width of the column, or ``None`` (default) to auto calculate width.""" + + min_width: Optional[int] = None + """Optional[int]: Minimum width of column, or ``None`` for no minimum. Defaults to None.""" + + max_width: Optional[int] = None + """Optional[int]: Maximum width of column, or ``None`` for no maximum. Defaults to None.""" + + ratio: Optional[int] = None + """Optional[int]: Ratio to use when calculating column width, or ``None`` (default) to adapt to column contents.""" + + no_wrap: bool = False + """bool: Prevent wrapping of text within the column. Defaults to ``False``.""" + + _index: int = 0 + """Index of column.""" + + _cells: List["RenderableType"] = field(default_factory=list) + + def copy(self) -> "Column": + """Return a copy of this Column.""" + return replace(self, _cells=[]) + + @property + def cells(self) -> Iterable["RenderableType"]: + """Get all cells in the column, not including header.""" + yield from self._cells + + @property + def flexible(self) -> bool: + """Check if this column is flexible.""" + return self.ratio is not None + + +@dataclass +class Row: + """Information regarding a row.""" + + style: Optional[StyleType] = None + """Style to apply to row.""" + + end_section: bool = False + """Indicated end of section, which will force a line beneath the row.""" + + +class _Cell(NamedTuple): + """A single cell in a table.""" + + style: StyleType + """Style to apply to cell.""" + renderable: "RenderableType" + """Cell renderable.""" + vertical: VerticalAlignMethod + """Cell vertical alignment.""" + + +class Table(JupyterMixin): + """A console renderable to draw a table. + + Args: + *headers (Union[Column, str]): Column headers, either as a string, or :class:`~rich.table.Column` instance. + title (Union[str, Text], optional): The title of the table rendered at the top. Defaults to None. + caption (Union[str, Text], optional): The table caption rendered below. Defaults to None. + width (int, optional): The width in characters of the table, or ``None`` to automatically fit. Defaults to None. + min_width (Optional[int], optional): The minimum width of the table, or ``None`` for no minimum. Defaults to None. + box (box.Box, optional): One of the constants in box.py used to draw the edges (see :ref:`appendix_box`), or ``None`` for no box lines. Defaults to box.HEAVY_HEAD. + safe_box (Optional[bool], optional): Disable box characters that don't display on windows legacy terminal with *raster* fonts. Defaults to True. + padding (PaddingDimensions, optional): Padding for cells (top, right, bottom, left). Defaults to (0, 1). + collapse_padding (bool, optional): Enable collapsing of padding around cells. Defaults to False. + pad_edge (bool, optional): Enable padding of edge cells. Defaults to True. + expand (bool, optional): Expand the table to fit the available space if ``True``, otherwise the table width will be auto-calculated. Defaults to False. + show_header (bool, optional): Show a header row. Defaults to True. + show_footer (bool, optional): Show a footer row. Defaults to False. + show_edge (bool, optional): Draw a box around the outside of the table. Defaults to True. + show_lines (bool, optional): Draw lines between every row. Defaults to False. + leading (bool, optional): Number of blank lines between rows (precludes ``show_lines``). Defaults to 0. + style (Union[str, Style], optional): Default style for the table. Defaults to "none". + row_styles (List[Union, str], optional): Optional list of row styles, if more than one style is given then the styles will alternate. Defaults to None. + header_style (Union[str, Style], optional): Style of the header. Defaults to "table.header". + footer_style (Union[str, Style], optional): Style of the footer. Defaults to "table.footer". + border_style (Union[str, Style], optional): Style of the border. Defaults to None. + title_style (Union[str, Style], optional): Style of the title. Defaults to None. + caption_style (Union[str, Style], optional): Style of the caption. Defaults to None. + title_justify (str, optional): Justify method for title. Defaults to "center". + caption_justify (str, optional): Justify method for caption. Defaults to "center". + highlight (bool, optional): Highlight cell contents (if str). Defaults to False. + """ + + columns: List[Column] + rows: List[Row] + + def __init__( + self, + *headers: Union[Column, str], + title: Optional[TextType] = None, + caption: Optional[TextType] = None, + width: Optional[int] = None, + min_width: Optional[int] = None, + box: Optional[box.Box] = box.HEAVY_HEAD, + safe_box: Optional[bool] = None, + padding: PaddingDimensions = (0, 1), + collapse_padding: bool = False, + pad_edge: bool = True, + expand: bool = False, + show_header: bool = True, + show_footer: bool = False, + show_edge: bool = True, + show_lines: bool = False, + leading: int = 0, + style: StyleType = "none", + row_styles: Optional[Iterable[StyleType]] = None, + header_style: Optional[StyleType] = "table.header", + footer_style: Optional[StyleType] = "table.footer", + border_style: Optional[StyleType] = None, + title_style: Optional[StyleType] = None, + caption_style: Optional[StyleType] = None, + title_justify: "JustifyMethod" = "center", + caption_justify: "JustifyMethod" = "center", + highlight: bool = False, + ) -> None: + self.columns: List[Column] = [] + self.rows: List[Row] = [] + self.title = title + self.caption = caption + self.width = width + self.min_width = min_width + self.box = box + self.safe_box = safe_box + self._padding = Padding.unpack(padding) + self.pad_edge = pad_edge + self._expand = expand + self.show_header = show_header + self.show_footer = show_footer + self.show_edge = show_edge + self.show_lines = show_lines + self.leading = leading + self.collapse_padding = collapse_padding + self.style = style + self.header_style = header_style or "" + self.footer_style = footer_style or "" + self.border_style = border_style + self.title_style = title_style + self.caption_style = caption_style + self.title_justify: "JustifyMethod" = title_justify + self.caption_justify: "JustifyMethod" = caption_justify + self.highlight = highlight + self.row_styles: Sequence[StyleType] = list(row_styles or []) + append_column = self.columns.append + for header in headers: + if isinstance(header, str): + self.add_column(header=header) + else: + header._index = len(self.columns) + append_column(header) + + @classmethod + def grid( + cls, + *headers: Union[Column, str], + padding: PaddingDimensions = 0, + collapse_padding: bool = True, + pad_edge: bool = False, + expand: bool = False, + ) -> "Table": + """Get a table with no lines, headers, or footer. + + Args: + *headers (Union[Column, str]): Column headers, either as a string, or :class:`~rich.table.Column` instance. + padding (PaddingDimensions, optional): Get padding around cells. Defaults to 0. + collapse_padding (bool, optional): Enable collapsing of padding around cells. Defaults to True. + pad_edge (bool, optional): Enable padding around edges of table. Defaults to False. + expand (bool, optional): Expand the table to fit the available space if ``True``, otherwise the table width will be auto-calculated. Defaults to False. + + Returns: + Table: A table instance. + """ + return cls( + *headers, + box=None, + padding=padding, + collapse_padding=collapse_padding, + show_header=False, + show_footer=False, + show_edge=False, + pad_edge=pad_edge, + expand=expand, + ) + + @property + def expand(self) -> bool: + """Setting a non-None self.width implies expand.""" + return self._expand or self.width is not None + + @expand.setter + def expand(self, expand: bool) -> None: + """Set expand.""" + self._expand = expand + + @property + def _extra_width(self) -> int: + """Get extra width to add to cell content.""" + width = 0 + if self.box and self.show_edge: + width += 2 + if self.box: + width += len(self.columns) - 1 + return width + + @property + def row_count(self) -> int: + """Get the current number of rows.""" + return len(self.rows) + + def get_row_style(self, console: "Console", index: int) -> StyleType: + """Get the current row style.""" + style = Style.null() + if self.row_styles: + style += console.get_style(self.row_styles[index % len(self.row_styles)]) + row_style = self.rows[index].style + if row_style is not None: + style += console.get_style(row_style) + return style + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + max_width = options.max_width + if self.width is not None: + max_width = self.width + if max_width < 0: + return Measurement(0, 0) + + extra_width = self._extra_width + max_width = sum( + self._calculate_column_widths( + console, options.update_width(max_width - extra_width) + ) + ) + _measure_column = self._measure_column + + measurements = [ + _measure_column(console, options.update_width(max_width), column) + for column in self.columns + ] + minimum_width = ( + sum(measurement.minimum for measurement in measurements) + extra_width + ) + maximum_width = ( + sum(measurement.maximum for measurement in measurements) + extra_width + if (self.width is None) + else self.width + ) + measurement = Measurement(minimum_width, maximum_width) + measurement = measurement.clamp(self.min_width) + return measurement + + @property + def padding(self) -> Tuple[int, int, int, int]: + """Get cell padding.""" + return self._padding + + @padding.setter + def padding(self, padding: PaddingDimensions) -> "Table": + """Set cell padding.""" + self._padding = Padding.unpack(padding) + return self + + def add_column( + self, + header: "RenderableType" = "", + footer: "RenderableType" = "", + *, + header_style: Optional[StyleType] = None, + footer_style: Optional[StyleType] = None, + style: Optional[StyleType] = None, + justify: "JustifyMethod" = "left", + vertical: "VerticalAlignMethod" = "top", + overflow: "OverflowMethod" = "ellipsis", + width: Optional[int] = None, + min_width: Optional[int] = None, + max_width: Optional[int] = None, + ratio: Optional[int] = None, + no_wrap: bool = False, + ) -> None: + """Add a column to the table. + + Args: + header (RenderableType, optional): Text or renderable for the header. + Defaults to "". + footer (RenderableType, optional): Text or renderable for the footer. + Defaults to "". + header_style (Union[str, Style], optional): Style for the header, or None for default. Defaults to None. + footer_style (Union[str, Style], optional): Style for the footer, or None for default. Defaults to None. + style (Union[str, Style], optional): Style for the column cells, or None for default. Defaults to None. + justify (JustifyMethod, optional): Alignment for cells. Defaults to "left". + vertical (VerticalAlignMethod, optional): Vertical alignment, one of "top", "middle", or "bottom". Defaults to "top". + overflow (OverflowMethod): Overflow method: "crop", "fold", "ellipsis". Defaults to "ellipsis". + width (int, optional): Desired width of column in characters, or None to fit to contents. Defaults to None. + min_width (Optional[int], optional): Minimum width of column, or ``None`` for no minimum. Defaults to None. + max_width (Optional[int], optional): Maximum width of column, or ``None`` for no maximum. Defaults to None. + ratio (int, optional): Flexible ratio for the column (requires ``Table.expand`` or ``Table.width``). Defaults to None. + no_wrap (bool, optional): Set to ``True`` to disable wrapping of this column. + """ + + column = Column( + _index=len(self.columns), + header=header, + footer=footer, + header_style=header_style or "", + footer_style=footer_style or "", + style=style or "", + justify=justify, + vertical=vertical, + overflow=overflow, + width=width, + min_width=min_width, + max_width=max_width, + ratio=ratio, + no_wrap=no_wrap, + ) + self.columns.append(column) + + def add_row( + self, + *renderables: Optional["RenderableType"], + style: Optional[StyleType] = None, + end_section: bool = False, + ) -> None: + """Add a row of renderables. + + Args: + *renderables (None or renderable): Each cell in a row must be a renderable object (including str), + or ``None`` for a blank cell. + style (StyleType, optional): An optional style to apply to the entire row. Defaults to None. + end_section (bool, optional): End a section and draw a line. Defaults to False. + + Raises: + errors.NotRenderableError: If you add something that can't be rendered. + """ + + def add_cell(column: Column, renderable: "RenderableType") -> None: + column._cells.append(renderable) + + cell_renderables: List[Optional["RenderableType"]] = list(renderables) + + columns = self.columns + if len(cell_renderables) < len(columns): + cell_renderables = [ + *cell_renderables, + *[None] * (len(columns) - len(cell_renderables)), + ] + for index, renderable in enumerate(cell_renderables): + if index == len(columns): + column = Column(_index=index) + for _ in self.rows: + add_cell(column, Text("")) + self.columns.append(column) + else: + column = columns[index] + if renderable is None: + add_cell(column, "") + elif is_renderable(renderable): + add_cell(column, renderable) + else: + raise errors.NotRenderableError( + f"unable to render {type(renderable).__name__}; a string or other renderable object is required" + ) + self.rows.append(Row(style=style, end_section=end_section)) + + def add_section(self) -> None: + """Add a new section (draw a line after current row).""" + + if self.rows: + self.rows[-1].end_section = True + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if not self.columns: + yield Segment("\n") + return + + max_width = options.max_width + if self.width is not None: + max_width = self.width + + extra_width = self._extra_width + widths = self._calculate_column_widths( + console, options.update_width(max_width - extra_width) + ) + table_width = sum(widths) + extra_width + + render_options = options.update( + width=table_width, highlight=self.highlight, height=None + ) + + def render_annotation( + text: TextType, style: StyleType, justify: "JustifyMethod" = "center" + ) -> "RenderResult": + render_text = ( + console.render_str(text, style=style, highlight=False) + if isinstance(text, str) + else text + ) + return console.render( + render_text, options=render_options.update(justify=justify) + ) + + if self.title: + yield from render_annotation( + self.title, + style=Style.pick_first(self.title_style, "table.title"), + justify=self.title_justify, + ) + yield from self._render(console, render_options, widths) + if self.caption: + yield from render_annotation( + self.caption, + style=Style.pick_first(self.caption_style, "table.caption"), + justify=self.caption_justify, + ) + + def _calculate_column_widths( + self, console: "Console", options: "ConsoleOptions" + ) -> List[int]: + """Calculate the widths of each column, including padding, not including borders.""" + max_width = options.max_width + columns = self.columns + width_ranges = [ + self._measure_column(console, options, column) for column in columns + ] + widths = [_range.maximum or 1 for _range in width_ranges] + get_padding_width = self._get_padding_width + extra_width = self._extra_width + if self.expand: + ratios = [col.ratio or 0 for col in columns if col.flexible] + if any(ratios): + fixed_widths = [ + 0 if column.flexible else _range.maximum + for _range, column in zip(width_ranges, columns) + ] + flex_minimum = [ + (column.width or 1) + get_padding_width(column._index) + for column in columns + if column.flexible + ] + flexible_width = max_width - sum(fixed_widths) + flex_widths = ratio_distribute(flexible_width, ratios, flex_minimum) + iter_flex_widths = iter(flex_widths) + for index, column in enumerate(columns): + if column.flexible: + widths[index] = fixed_widths[index] + next(iter_flex_widths) + table_width = sum(widths) + + if table_width > max_width: + widths = self._collapse_widths( + widths, + [(column.width is None and not column.no_wrap) for column in columns], + max_width, + ) + table_width = sum(widths) + # last resort, reduce columns evenly + if table_width > max_width: + excess_width = table_width - max_width + widths = ratio_reduce(excess_width, [1] * len(widths), widths, widths) + table_width = sum(widths) + + width_ranges = [ + self._measure_column(console, options.update_width(width), column) + for width, column in zip(widths, columns) + ] + widths = [_range.maximum or 0 for _range in width_ranges] + + if (table_width < max_width and self.expand) or ( + self.min_width is not None and table_width < (self.min_width - extra_width) + ): + _max_width = ( + max_width + if self.min_width is None + else min(self.min_width - extra_width, max_width) + ) + pad_widths = ratio_distribute(_max_width - table_width, widths) + widths = [_width + pad for _width, pad in zip(widths, pad_widths)] + + return widths + + @classmethod + def _collapse_widths( + cls, widths: List[int], wrapable: List[bool], max_width: int + ) -> List[int]: + """Reduce widths so that the total is under max_width. + + Args: + widths (List[int]): List of widths. + wrapable (List[bool]): List of booleans that indicate if a column may shrink. + max_width (int): Maximum width to reduce to. + + Returns: + List[int]: A new list of widths. + """ + total_width = sum(widths) + excess_width = total_width - max_width + if any(wrapable): + while total_width and excess_width > 0: + max_column = max( + width for width, allow_wrap in zip(widths, wrapable) if allow_wrap + ) + second_max_column = max( + width if allow_wrap and width != max_column else 0 + for width, allow_wrap in zip(widths, wrapable) + ) + column_difference = max_column - second_max_column + ratios = [ + (1 if (width == max_column and allow_wrap) else 0) + for width, allow_wrap in zip(widths, wrapable) + ] + if not any(ratios) or not column_difference: + break + max_reduce = [min(excess_width, column_difference)] * len(widths) + widths = ratio_reduce(excess_width, ratios, max_reduce, widths) + + total_width = sum(widths) + excess_width = total_width - max_width + return widths + + def _get_cells( + self, console: "Console", column_index: int, column: Column + ) -> Iterable[_Cell]: + """Get all the cells with padding and optional header.""" + + collapse_padding = self.collapse_padding + pad_edge = self.pad_edge + padding = self.padding + any_padding = any(padding) + + first_column = column_index == 0 + last_column = column_index == len(self.columns) - 1 + + _padding_cache: Dict[Tuple[bool, bool], Tuple[int, int, int, int]] = {} + + def get_padding(first_row: bool, last_row: bool) -> Tuple[int, int, int, int]: + cached = _padding_cache.get((first_row, last_row)) + if cached: + return cached + top, right, bottom, left = padding + + if collapse_padding: + if not first_column: + left = max(0, left - right) + if not last_row: + bottom = max(0, top - bottom) + + if not pad_edge: + if first_column: + left = 0 + if last_column: + right = 0 + if first_row: + top = 0 + if last_row: + bottom = 0 + _padding = (top, right, bottom, left) + _padding_cache[(first_row, last_row)] = _padding + return _padding + + raw_cells: List[Tuple[StyleType, "RenderableType"]] = [] + _append = raw_cells.append + get_style = console.get_style + if self.show_header: + header_style = get_style(self.header_style or "") + get_style( + column.header_style + ) + _append((header_style, column.header)) + cell_style = get_style(column.style or "") + for cell in column.cells: + _append((cell_style, cell)) + if self.show_footer: + footer_style = get_style(self.footer_style or "") + get_style( + column.footer_style + ) + _append((footer_style, column.footer)) + + if any_padding: + _Padding = Padding + for first, last, (style, renderable) in loop_first_last(raw_cells): + yield _Cell( + style, + _Padding(renderable, get_padding(first, last)), + getattr(renderable, "vertical", None) or column.vertical, + ) + else: + for style, renderable in raw_cells: + yield _Cell( + style, + renderable, + getattr(renderable, "vertical", None) or column.vertical, + ) + + def _get_padding_width(self, column_index: int) -> int: + """Get extra width from padding.""" + _, pad_right, _, pad_left = self.padding + if self.collapse_padding: + if column_index > 0: + pad_left = max(0, pad_left - pad_right) + return pad_left + pad_right + + def _measure_column( + self, + console: "Console", + options: "ConsoleOptions", + column: Column, + ) -> Measurement: + """Get the minimum and maximum width of the column.""" + + max_width = options.max_width + if max_width < 1: + return Measurement(0, 0) + + padding_width = self._get_padding_width(column._index) + + if column.width is not None: + # Fixed width column + return Measurement( + column.width + padding_width, column.width + padding_width + ).with_maximum(max_width) + # Flexible column, we need to measure contents + min_widths: List[int] = [] + max_widths: List[int] = [] + append_min = min_widths.append + append_max = max_widths.append + get_render_width = Measurement.get + for cell in self._get_cells(console, column._index, column): + _min, _max = get_render_width(console, options, cell.renderable) + append_min(_min) + append_max(_max) + + measurement = Measurement( + max(min_widths) if min_widths else 1, + max(max_widths) if max_widths else max_width, + ).with_maximum(max_width) + measurement = measurement.clamp( + None if column.min_width is None else column.min_width + padding_width, + None if column.max_width is None else column.max_width + padding_width, + ) + return measurement + + def _render( + self, console: "Console", options: "ConsoleOptions", widths: List[int] + ) -> "RenderResult": + table_style = console.get_style(self.style or "") + + border_style = table_style + console.get_style(self.border_style or "") + _column_cells = ( + self._get_cells(console, column_index, column) + for column_index, column in enumerate(self.columns) + ) + row_cells: List[Tuple[_Cell, ...]] = list(zip(*_column_cells)) + _box = ( + self.box.substitute( + options, safe=pick_bool(self.safe_box, console.safe_box) + ) + if self.box + else None + ) + _box = _box.get_plain_headed_box() if _box and not self.show_header else _box + + new_line = Segment.line() + + columns = self.columns + show_header = self.show_header + show_footer = self.show_footer + show_edge = self.show_edge + show_lines = self.show_lines + leading = self.leading + + _Segment = Segment + if _box: + box_segments = [ + ( + _Segment(_box.head_left, border_style), + _Segment(_box.head_right, border_style), + _Segment(_box.head_vertical, border_style), + ), + ( + _Segment(_box.foot_left, border_style), + _Segment(_box.foot_right, border_style), + _Segment(_box.foot_vertical, border_style), + ), + ( + _Segment(_box.mid_left, border_style), + _Segment(_box.mid_right, border_style), + _Segment(_box.mid_vertical, border_style), + ), + ] + if show_edge: + yield _Segment(_box.get_top(widths), border_style) + yield new_line + else: + box_segments = [] + + get_row_style = self.get_row_style + get_style = console.get_style + + for index, (first, last, row_cell) in enumerate(loop_first_last(row_cells)): + header_row = first and show_header + footer_row = last and show_footer + row = ( + self.rows[index - show_header] + if (not header_row and not footer_row) + else None + ) + max_height = 1 + cells: List[List[List[Segment]]] = [] + if header_row or footer_row: + row_style = Style.null() + else: + row_style = get_style( + get_row_style(console, index - 1 if show_header else index) + ) + for width, cell, column in zip(widths, row_cell, columns): + render_options = options.update( + width=width, + justify=column.justify, + no_wrap=column.no_wrap, + overflow=column.overflow, + height=None, + ) + lines = console.render_lines( + cell.renderable, + render_options, + style=get_style(cell.style) + row_style, + ) + max_height = max(max_height, len(lines)) + cells.append(lines) + + row_height = max(len(cell) for cell in cells) + + def align_cell( + cell: List[List[Segment]], + vertical: "VerticalAlignMethod", + width: int, + style: Style, + ) -> List[List[Segment]]: + if header_row: + vertical = "bottom" + elif footer_row: + vertical = "top" + + if vertical == "top": + return _Segment.align_top(cell, width, row_height, style) + elif vertical == "middle": + return _Segment.align_middle(cell, width, row_height, style) + return _Segment.align_bottom(cell, width, row_height, style) + + cells[:] = [ + _Segment.set_shape( + align_cell( + cell, + _cell.vertical, + width, + get_style(_cell.style) + row_style, + ), + width, + max_height, + ) + for width, _cell, cell, column in zip(widths, row_cell, cells, columns) + ] + + if _box: + if last and show_footer: + yield _Segment( + _box.get_row(widths, "foot", edge=show_edge), border_style + ) + yield new_line + left, right, _divider = box_segments[0 if first else (2 if last else 1)] + + # If the column divider is whitespace also style it with the row background + divider = ( + _divider + if _divider.text.strip() + else _Segment( + _divider.text, row_style.background_style + _divider.style + ) + ) + for line_no in range(max_height): + if show_edge: + yield left + for last_cell, rendered_cell in loop_last(cells): + yield from rendered_cell[line_no] + if not last_cell: + yield divider + if show_edge: + yield right + yield new_line + else: + for line_no in range(max_height): + for rendered_cell in cells: + yield from rendered_cell[line_no] + yield new_line + if _box and first and show_header: + yield _Segment( + _box.get_row(widths, "head", edge=show_edge), border_style + ) + yield new_line + end_section = row and row.end_section + if _box and (show_lines or leading or end_section): + if ( + not last + and not (show_footer and index >= len(row_cells) - 2) + and not (show_header and header_row) + ): + if leading: + yield _Segment( + _box.get_row(widths, "mid", edge=show_edge) * leading, + border_style, + ) + else: + yield _Segment( + _box.get_row(widths, "row", edge=show_edge), border_style + ) + yield new_line + + if _box and show_edge: + yield _Segment(_box.get_bottom(widths), border_style) + yield new_line + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + from pip._vendor.rich.highlighter import ReprHighlighter + from pip._vendor.rich.table import Table as Table + + from ._timer import timer + + with timer("Table render"): + table = Table( + title="Star Wars Movies", + caption="Rich example table", + caption_justify="right", + ) + + table.add_column( + "Released", header_style="bright_cyan", style="cyan", no_wrap=True + ) + table.add_column("Title", style="magenta") + table.add_column("Box Office", justify="right", style="green") + + table.add_row( + "Dec 20, 2019", + "Star Wars: The Rise of Skywalker", + "$952,110,690", + ) + table.add_row("May 25, 2018", "Solo: A Star Wars Story", "$393,151,347") + table.add_row( + "Dec 15, 2017", + "Star Wars Ep. V111: The Last Jedi", + "$1,332,539,889", + style="on black", + end_section=True, + ) + table.add_row( + "Dec 16, 2016", + "Rogue One: A Star Wars Story", + "$1,332,439,889", + ) + + def header(text: str) -> None: + console.print() + console.rule(highlight(text)) + console.print() + + console = Console() + highlight = ReprHighlighter() + header("Example Table") + console.print(table, justify="center") + + table.expand = True + header("expand=True") + console.print(table) + + table.width = 50 + header("width=50") + + console.print(table, justify="center") + + table.width = None + table.expand = False + table.row_styles = ["dim", "none"] + header("row_styles=['dim', 'none']") + + console.print(table, justify="center") + + table.width = None + table.expand = False + table.row_styles = ["dim", "none"] + table.leading = 1 + header("leading=1, row_styles=['dim', 'none']") + console.print(table, justify="center") + + table.width = None + table.expand = False + table.row_styles = ["dim", "none"] + table.show_lines = True + table.leading = 0 + header("show_lines=True, row_styles=['dim', 'none']") + console.print(table, justify="center") diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py b/myenv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py new file mode 100644 index 0000000..565e9d9 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py @@ -0,0 +1,153 @@ +from typing import List, Optional, Tuple + +from .color_triplet import ColorTriplet +from .palette import Palette + +_ColorTuple = Tuple[int, int, int] + + +class TerminalTheme: + """A color theme used when exporting console content. + + Args: + background (Tuple[int, int, int]): The background color. + foreground (Tuple[int, int, int]): The foreground (text) color. + normal (List[Tuple[int, int, int]]): A list of 8 normal intensity colors. + bright (List[Tuple[int, int, int]], optional): A list of 8 bright colors, or None + to repeat normal intensity. Defaults to None. + """ + + def __init__( + self, + background: _ColorTuple, + foreground: _ColorTuple, + normal: List[_ColorTuple], + bright: Optional[List[_ColorTuple]] = None, + ) -> None: + self.background_color = ColorTriplet(*background) + self.foreground_color = ColorTriplet(*foreground) + self.ansi_colors = Palette(normal + (bright or normal)) + + +DEFAULT_TERMINAL_THEME = TerminalTheme( + (255, 255, 255), + (0, 0, 0), + [ + (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), + ], +) + +MONOKAI = TerminalTheme( + (12, 12, 12), + (217, 217, 217), + [ + (26, 26, 26), + (244, 0, 95), + (152, 224, 36), + (253, 151, 31), + (157, 101, 255), + (244, 0, 95), + (88, 209, 235), + (196, 197, 181), + (98, 94, 76), + ], + [ + (244, 0, 95), + (152, 224, 36), + (224, 213, 97), + (157, 101, 255), + (244, 0, 95), + (88, 209, 235), + (246, 246, 239), + ], +) +DIMMED_MONOKAI = TerminalTheme( + (25, 25, 25), + (185, 188, 186), + [ + (58, 61, 67), + (190, 63, 72), + (135, 154, 59), + (197, 166, 53), + (79, 118, 161), + (133, 92, 141), + (87, 143, 164), + (185, 188, 186), + (136, 137, 135), + ], + [ + (251, 0, 31), + (15, 114, 47), + (196, 112, 51), + (24, 109, 227), + (251, 0, 103), + (46, 112, 109), + (253, 255, 185), + ], +) +NIGHT_OWLISH = TerminalTheme( + (255, 255, 255), + (64, 63, 83), + [ + (1, 22, 39), + (211, 66, 62), + (42, 162, 152), + (218, 170, 1), + (72, 118, 214), + (64, 63, 83), + (8, 145, 106), + (122, 129, 129), + (122, 129, 129), + ], + [ + (247, 110, 110), + (73, 208, 197), + (218, 194, 107), + (92, 167, 228), + (105, 112, 152), + (0, 201, 144), + (152, 159, 177), + ], +) + +SVG_EXPORT_THEME = TerminalTheme( + (41, 41, 41), + (197, 200, 198), + [ + (75, 78, 85), + (204, 85, 90), + (152, 168, 75), + (208, 179, 68), + (96, 138, 177), + (152, 114, 159), + (104, 160, 179), + (197, 200, 198), + (154, 155, 153), + ], + [ + (255, 38, 39), + (0, 130, 61), + (208, 132, 66), + (25, 132, 233), + (255, 44, 122), + (57, 130, 128), + (253, 253, 197), + ], +) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/text.py b/myenv/Lib/site-packages/pip/_vendor/rich/text.py new file mode 100644 index 0000000..209aa94 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/text.py @@ -0,0 +1,1357 @@ +import re +from functools import partial, reduce +from math import gcd +from operator import itemgetter +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterable, + List, + NamedTuple, + Optional, + Tuple, + Union, +) + +from ._loop import loop_last +from ._pick import pick_bool +from ._wrap import divide_line +from .align import AlignMethod +from .cells import cell_len, set_cell_size +from .containers import Lines +from .control import strip_control_codes +from .emoji import EmojiVariant +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import Style, StyleType + +if TYPE_CHECKING: # pragma: no cover + from .console import Console, ConsoleOptions, JustifyMethod, OverflowMethod + +DEFAULT_JUSTIFY: "JustifyMethod" = "default" +DEFAULT_OVERFLOW: "OverflowMethod" = "fold" + + +_re_whitespace = re.compile(r"\s+$") + +TextType = Union[str, "Text"] +"""A plain string or a :class:`Text` instance.""" + +GetStyleCallable = Callable[[str], Optional[StyleType]] + + +class Span(NamedTuple): + """A marked up region in some text.""" + + start: int + """Span start index.""" + end: int + """Span end index.""" + style: Union[str, Style] + """Style associated with the span.""" + + def __repr__(self) -> str: + return f"Span({self.start}, {self.end}, {self.style!r})" + + def __bool__(self) -> bool: + return self.end > self.start + + def split(self, offset: int) -> Tuple["Span", Optional["Span"]]: + """Split a span in to 2 from a given offset.""" + + if offset < self.start: + return self, None + if offset >= self.end: + return self, None + + start, end, style = self + span1 = Span(start, min(end, offset), style) + span2 = Span(span1.end, end, style) + return span1, span2 + + def move(self, offset: int) -> "Span": + """Move start and end by a given offset. + + Args: + offset (int): Number of characters to add to start and end. + + Returns: + TextSpan: A new TextSpan with adjusted position. + """ + start, end, style = self + return Span(start + offset, end + offset, style) + + def right_crop(self, offset: int) -> "Span": + """Crop the span at the given offset. + + Args: + offset (int): A value between start and end. + + Returns: + Span: A new (possibly smaller) span. + """ + start, end, style = self + if offset >= end: + return self + return Span(start, min(offset, end), style) + + def extend(self, cells: int) -> "Span": + """Extend the span by the given number of cells. + + Args: + cells (int): Additional space to add to end of span. + + Returns: + Span: A span. + """ + if cells: + start, end, style = self + return Span(start, end + cells, style) + else: + return self + + +class Text(JupyterMixin): + """Text with color / style. + + Args: + text (str, optional): Default unstyled text. Defaults to "". + style (Union[str, Style], optional): Base style for text. Defaults to "". + justify (str, optional): Justify method: "left", "center", "full", "right". Defaults to None. + overflow (str, optional): Overflow method: "crop", "fold", "ellipsis". Defaults to None. + no_wrap (bool, optional): Disable text wrapping, or None for default. Defaults to None. + end (str, optional): Character to end text with. Defaults to "\\\\n". + tab_size (int): Number of spaces per tab, or ``None`` to use ``console.tab_size``. Defaults to None. + spans (List[Span], optional). A list of predefined style spans. Defaults to None. + """ + + __slots__ = [ + "_text", + "style", + "justify", + "overflow", + "no_wrap", + "end", + "tab_size", + "_spans", + "_length", + ] + + def __init__( + self, + text: str = "", + style: Union[str, Style] = "", + *, + justify: Optional["JustifyMethod"] = None, + overflow: Optional["OverflowMethod"] = None, + no_wrap: Optional[bool] = None, + end: str = "\n", + tab_size: Optional[int] = None, + spans: Optional[List[Span]] = None, + ) -> None: + sanitized_text = strip_control_codes(text) + self._text = [sanitized_text] + self.style = style + self.justify: Optional["JustifyMethod"] = justify + self.overflow: Optional["OverflowMethod"] = overflow + self.no_wrap = no_wrap + self.end = end + self.tab_size = tab_size + self._spans: List[Span] = spans or [] + self._length: int = len(sanitized_text) + + def __len__(self) -> int: + return self._length + + def __bool__(self) -> bool: + return bool(self._length) + + def __str__(self) -> str: + return self.plain + + def __repr__(self) -> str: + return f"" + + def __add__(self, other: Any) -> "Text": + if isinstance(other, (str, Text)): + result = self.copy() + result.append(other) + return result + return NotImplemented + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Text): + return NotImplemented + return self.plain == other.plain and self._spans == other._spans + + def __contains__(self, other: object) -> bool: + if isinstance(other, str): + return other in self.plain + elif isinstance(other, Text): + return other.plain in self.plain + return False + + def __getitem__(self, slice: Union[int, slice]) -> "Text": + def get_text_at(offset: int) -> "Text": + _Span = Span + text = Text( + self.plain[offset], + spans=[ + _Span(0, 1, style) + for start, end, style in self._spans + if end > offset >= start + ], + end="", + ) + return text + + if isinstance(slice, int): + return get_text_at(slice) + else: + start, stop, step = slice.indices(len(self.plain)) + if step == 1: + lines = self.divide([start, stop]) + return lines[1] + else: + # This would be a bit of work to implement efficiently + # For now, its not required + raise TypeError("slices with step!=1 are not supported") + + @property + def cell_len(self) -> int: + """Get the number of cells required to render this text.""" + return cell_len(self.plain) + + @property + def markup(self) -> str: + """Get console markup to render this Text. + + Returns: + str: A string potentially creating markup tags. + """ + from .markup import escape + + output: List[str] = [] + + plain = self.plain + markup_spans = [ + (0, False, self.style), + *((span.start, False, span.style) for span in self._spans), + *((span.end, True, span.style) for span in self._spans), + (len(plain), True, self.style), + ] + markup_spans.sort(key=itemgetter(0, 1)) + position = 0 + append = output.append + for offset, closing, style in markup_spans: + if offset > position: + append(escape(plain[position:offset])) + position = offset + if style: + append(f"[/{style}]" if closing else f"[{style}]") + markup = "".join(output) + return markup + + @classmethod + def from_markup( + cls, + text: str, + *, + style: Union[str, Style] = "", + emoji: bool = True, + emoji_variant: Optional[EmojiVariant] = None, + justify: Optional["JustifyMethod"] = None, + overflow: Optional["OverflowMethod"] = None, + end: str = "\n", + ) -> "Text": + """Create Text instance from markup. + + Args: + text (str): A string containing console markup. + style (Union[str, Style], optional): Base style for text. Defaults to "". + emoji (bool, optional): Also render emoji code. Defaults to True. + emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None. + justify (str, optional): Justify method: "left", "center", "full", "right". Defaults to None. + overflow (str, optional): Overflow method: "crop", "fold", "ellipsis". Defaults to None. + end (str, optional): Character to end text with. Defaults to "\\\\n". + + Returns: + Text: A Text instance with markup rendered. + """ + from .markup import render + + rendered_text = render(text, style, emoji=emoji, emoji_variant=emoji_variant) + rendered_text.justify = justify + rendered_text.overflow = overflow + rendered_text.end = end + return rendered_text + + @classmethod + def from_ansi( + cls, + text: str, + *, + style: Union[str, Style] = "", + justify: Optional["JustifyMethod"] = None, + overflow: Optional["OverflowMethod"] = None, + no_wrap: Optional[bool] = None, + end: str = "\n", + tab_size: Optional[int] = 8, + ) -> "Text": + """Create a Text object from a string containing ANSI escape codes. + + Args: + text (str): A string containing escape codes. + style (Union[str, Style], optional): Base style for text. Defaults to "". + justify (str, optional): Justify method: "left", "center", "full", "right". Defaults to None. + overflow (str, optional): Overflow method: "crop", "fold", "ellipsis". Defaults to None. + no_wrap (bool, optional): Disable text wrapping, or None for default. Defaults to None. + end (str, optional): Character to end text with. Defaults to "\\\\n". + tab_size (int): Number of spaces per tab, or ``None`` to use ``console.tab_size``. Defaults to None. + """ + from .ansi import AnsiDecoder + + joiner = Text( + "\n", + justify=justify, + overflow=overflow, + no_wrap=no_wrap, + end=end, + tab_size=tab_size, + style=style, + ) + decoder = AnsiDecoder() + result = joiner.join(line for line in decoder.decode(text)) + return result + + @classmethod + def styled( + cls, + text: str, + style: StyleType = "", + *, + justify: Optional["JustifyMethod"] = None, + overflow: Optional["OverflowMethod"] = None, + ) -> "Text": + """Construct a Text instance with a pre-applied styled. A style applied in this way won't be used + to pad the text when it is justified. + + Args: + text (str): A string containing console markup. + style (Union[str, Style]): Style to apply to the text. Defaults to "". + justify (str, optional): Justify method: "left", "center", "full", "right". Defaults to None. + overflow (str, optional): Overflow method: "crop", "fold", "ellipsis". Defaults to None. + + Returns: + Text: A text instance with a style applied to the entire string. + """ + styled_text = cls(text, justify=justify, overflow=overflow) + styled_text.stylize(style) + return styled_text + + @classmethod + def assemble( + cls, + *parts: Union[str, "Text", Tuple[str, StyleType]], + style: Union[str, Style] = "", + justify: Optional["JustifyMethod"] = None, + overflow: Optional["OverflowMethod"] = None, + no_wrap: Optional[bool] = None, + end: str = "\n", + tab_size: int = 8, + meta: Optional[Dict[str, Any]] = None, + ) -> "Text": + """Construct a text instance by combining a sequence of strings with optional styles. + The positional arguments should be either strings, or a tuple of string + style. + + Args: + style (Union[str, Style], optional): Base style for text. Defaults to "". + justify (str, optional): Justify method: "left", "center", "full", "right". Defaults to None. + overflow (str, optional): Overflow method: "crop", "fold", "ellipsis". Defaults to None. + no_wrap (bool, optional): Disable text wrapping, or None for default. Defaults to None. + end (str, optional): Character to end text with. Defaults to "\\\\n". + tab_size (int): Number of spaces per tab, or ``None`` to use ``console.tab_size``. Defaults to None. + meta (Dict[str, Any], optional). Meta data to apply to text, or None for no meta data. Default to None + + Returns: + Text: A new text instance. + """ + text = cls( + style=style, + justify=justify, + overflow=overflow, + no_wrap=no_wrap, + end=end, + tab_size=tab_size, + ) + append = text.append + _Text = Text + for part in parts: + if isinstance(part, (_Text, str)): + append(part) + else: + append(*part) + if meta: + text.apply_meta(meta) + return text + + @property + def plain(self) -> str: + """Get the text as a single string.""" + if len(self._text) != 1: + self._text[:] = ["".join(self._text)] + return self._text[0] + + @plain.setter + def plain(self, new_text: str) -> None: + """Set the text to a new value.""" + if new_text != self.plain: + sanitized_text = strip_control_codes(new_text) + self._text[:] = [sanitized_text] + old_length = self._length + self._length = len(sanitized_text) + if old_length > self._length: + self._trim_spans() + + @property + def spans(self) -> List[Span]: + """Get a reference to the internal list of spans.""" + return self._spans + + @spans.setter + def spans(self, spans: List[Span]) -> None: + """Set spans.""" + self._spans = spans[:] + + def blank_copy(self, plain: str = "") -> "Text": + """Return a new Text instance with copied metadata (but not the string or spans).""" + copy_self = Text( + plain, + style=self.style, + justify=self.justify, + overflow=self.overflow, + no_wrap=self.no_wrap, + end=self.end, + tab_size=self.tab_size, + ) + return copy_self + + def copy(self) -> "Text": + """Return a copy of this instance.""" + copy_self = Text( + self.plain, + style=self.style, + justify=self.justify, + overflow=self.overflow, + no_wrap=self.no_wrap, + end=self.end, + tab_size=self.tab_size, + ) + copy_self._spans[:] = self._spans + return copy_self + + def stylize( + self, + style: Union[str, Style], + start: int = 0, + end: Optional[int] = None, + ) -> None: + """Apply a style to the text, or a portion of the text. + + Args: + style (Union[str, Style]): Style instance or style definition to apply. + start (int): Start offset (negative indexing is supported). Defaults to 0. + end (Optional[int], optional): End offset (negative indexing is supported), or None for end of text. Defaults to None. + """ + if style: + length = len(self) + if start < 0: + start = length + start + if end is None: + end = length + if end < 0: + end = length + end + if start >= length or end <= start: + # Span not in text or not valid + return + self._spans.append(Span(start, min(length, end), style)) + + def stylize_before( + self, + style: Union[str, Style], + start: int = 0, + end: Optional[int] = None, + ) -> None: + """Apply a style to the text, or a portion of the text. Styles will be applied before other styles already present. + + Args: + style (Union[str, Style]): Style instance or style definition to apply. + start (int): Start offset (negative indexing is supported). Defaults to 0. + end (Optional[int], optional): End offset (negative indexing is supported), or None for end of text. Defaults to None. + """ + if style: + length = len(self) + if start < 0: + start = length + start + if end is None: + end = length + if end < 0: + end = length + end + if start >= length or end <= start: + # Span not in text or not valid + return + self._spans.insert(0, Span(start, min(length, end), style)) + + def apply_meta( + self, meta: Dict[str, Any], start: int = 0, end: Optional[int] = None + ) -> None: + """Apply metadata to the text, or a portion of the text. + + Args: + meta (Dict[str, Any]): A dict of meta information. + start (int): Start offset (negative indexing is supported). Defaults to 0. + end (Optional[int], optional): End offset (negative indexing is supported), or None for end of text. Defaults to None. + + """ + style = Style.from_meta(meta) + self.stylize(style, start=start, end=end) + + def on(self, meta: Optional[Dict[str, Any]] = None, **handlers: Any) -> "Text": + """Apply event handlers (used by Textual project). + + Example: + >>> from rich.text import Text + >>> text = Text("hello world") + >>> text.on(click="view.toggle('world')") + + Args: + meta (Dict[str, Any]): Mapping of meta information. + **handlers: Keyword args are prefixed with "@" to defined handlers. + + Returns: + Text: Self is returned to method may be chained. + """ + meta = {} if meta is None else meta + meta.update({f"@{key}": value for key, value in handlers.items()}) + self.stylize(Style.from_meta(meta)) + return self + + def remove_suffix(self, suffix: str) -> None: + """Remove a suffix if it exists. + + Args: + suffix (str): Suffix to remove. + """ + if self.plain.endswith(suffix): + self.right_crop(len(suffix)) + + def get_style_at_offset(self, console: "Console", offset: int) -> Style: + """Get the style of a character at give offset. + + Args: + console (~Console): Console where text will be rendered. + offset (int): Offset in to text (negative indexing supported) + + Returns: + Style: A Style instance. + """ + # TODO: This is a little inefficient, it is only used by full justify + if offset < 0: + offset = len(self) + offset + get_style = console.get_style + style = get_style(self.style).copy() + for start, end, span_style in self._spans: + if end > offset >= start: + style += get_style(span_style, default="") + return style + + def extend_style(self, spaces: int) -> None: + """Extend the Text given number of spaces where the spaces have the same style as the last character. + + Args: + spaces (int): Number of spaces to add to the Text. + """ + if spaces <= 0: + return + spans = self.spans + new_spaces = " " * spaces + if spans: + end_offset = len(self) + self._spans[:] = [ + span.extend(spaces) if span.end >= end_offset else span + for span in spans + ] + self._text.append(new_spaces) + self._length += spaces + else: + self.plain += new_spaces + + def highlight_regex( + self, + re_highlight: str, + style: Optional[Union[GetStyleCallable, StyleType]] = None, + *, + style_prefix: str = "", + ) -> int: + """Highlight text with a regular expression, where group names are + translated to styles. + + Args: + re_highlight (str): A regular expression. + style (Union[GetStyleCallable, StyleType]): Optional style to apply to whole match, or a callable + which accepts the matched text and returns a style. Defaults to None. + style_prefix (str, optional): Optional prefix to add to style group names. + + Returns: + int: Number of regex matches + """ + count = 0 + append_span = self._spans.append + _Span = Span + plain = self.plain + for match in re.finditer(re_highlight, plain): + get_span = match.span + if style: + start, end = get_span() + match_style = style(plain[start:end]) if callable(style) else style + if match_style is not None and end > start: + append_span(_Span(start, end, match_style)) + + count += 1 + for name in match.groupdict().keys(): + start, end = get_span(name) + if start != -1 and end > start: + append_span(_Span(start, end, f"{style_prefix}{name}")) + return count + + def highlight_words( + self, + words: Iterable[str], + style: Union[str, Style], + *, + case_sensitive: bool = True, + ) -> int: + """Highlight words with a style. + + Args: + words (Iterable[str]): Words to highlight. + style (Union[str, Style]): Style to apply. + case_sensitive (bool, optional): Enable case sensitive matching. Defaults to True. + + Returns: + int: Number of words highlighted. + """ + re_words = "|".join(re.escape(word) for word in words) + add_span = self._spans.append + count = 0 + _Span = Span + for match in re.finditer( + re_words, self.plain, flags=0 if case_sensitive else re.IGNORECASE + ): + start, end = match.span(0) + add_span(_Span(start, end, style)) + count += 1 + return count + + def rstrip(self) -> None: + """Strip whitespace from end of text.""" + self.plain = self.plain.rstrip() + + def rstrip_end(self, size: int) -> None: + """Remove whitespace beyond a certain width at the end of the text. + + Args: + size (int): The desired size of the text. + """ + text_length = len(self) + if text_length > size: + excess = text_length - size + whitespace_match = _re_whitespace.search(self.plain) + if whitespace_match is not None: + whitespace_count = len(whitespace_match.group(0)) + self.right_crop(min(whitespace_count, excess)) + + def set_length(self, new_length: int) -> None: + """Set new length of the text, clipping or padding is required.""" + length = len(self) + if length != new_length: + if length < new_length: + self.pad_right(new_length - length) + else: + self.right_crop(length - new_length) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> Iterable[Segment]: + tab_size: int = console.tab_size if self.tab_size is None else self.tab_size + justify = self.justify or options.justify or DEFAULT_JUSTIFY + + overflow = self.overflow or options.overflow or DEFAULT_OVERFLOW + + lines = self.wrap( + console, + options.max_width, + justify=justify, + overflow=overflow, + tab_size=tab_size or 8, + no_wrap=pick_bool(self.no_wrap, options.no_wrap, False), + ) + all_lines = Text("\n").join(lines) + yield from all_lines.render(console, end=self.end) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + text = self.plain + lines = text.splitlines() + max_text_width = max(cell_len(line) for line in lines) if lines else 0 + words = text.split() + min_text_width = ( + max(cell_len(word) for word in words) if words else max_text_width + ) + return Measurement(min_text_width, max_text_width) + + def render(self, console: "Console", end: str = "") -> Iterable["Segment"]: + """Render the text as Segments. + + Args: + console (Console): Console instance. + end (Optional[str], optional): Optional end character. + + Returns: + Iterable[Segment]: Result of render that may be written to the console. + """ + _Segment = Segment + text = self.plain + if not self._spans: + yield Segment(text) + if end: + yield _Segment(end) + return + get_style = partial(console.get_style, default=Style.null()) + + enumerated_spans = list(enumerate(self._spans, 1)) + style_map = {index: get_style(span.style) for index, span in enumerated_spans} + style_map[0] = get_style(self.style) + + spans = [ + (0, False, 0), + *((span.start, False, index) for index, span in enumerated_spans), + *((span.end, True, index) for index, span in enumerated_spans), + (len(text), True, 0), + ] + spans.sort(key=itemgetter(0, 1)) + + stack: List[int] = [] + stack_append = stack.append + stack_pop = stack.remove + + style_cache: Dict[Tuple[Style, ...], Style] = {} + style_cache_get = style_cache.get + combine = Style.combine + + def get_current_style() -> Style: + """Construct current style from stack.""" + styles = tuple(style_map[_style_id] for _style_id in sorted(stack)) + cached_style = style_cache_get(styles) + if cached_style is not None: + return cached_style + current_style = combine(styles) + style_cache[styles] = current_style + return current_style + + for (offset, leaving, style_id), (next_offset, _, _) in zip(spans, spans[1:]): + if leaving: + stack_pop(style_id) + else: + stack_append(style_id) + if next_offset > offset: + yield _Segment(text[offset:next_offset], get_current_style()) + if end: + yield _Segment(end) + + def join(self, lines: Iterable["Text"]) -> "Text": + """Join text together with this instance as the separator. + + Args: + lines (Iterable[Text]): An iterable of Text instances to join. + + Returns: + Text: A new text instance containing join text. + """ + + new_text = self.blank_copy() + + def iter_text() -> Iterable["Text"]: + if self.plain: + for last, line in loop_last(lines): + yield line + if not last: + yield self + else: + yield from lines + + extend_text = new_text._text.extend + append_span = new_text._spans.append + extend_spans = new_text._spans.extend + offset = 0 + _Span = Span + + for text in iter_text(): + extend_text(text._text) + if text.style: + append_span(_Span(offset, offset + len(text), text.style)) + extend_spans( + _Span(offset + start, offset + end, style) + for start, end, style in text._spans + ) + offset += len(text) + new_text._length = offset + return new_text + + def expand_tabs(self, tab_size: Optional[int] = None) -> None: + """Converts tabs to spaces. + + Args: + tab_size (int, optional): Size of tabs. Defaults to 8. + + """ + if "\t" not in self.plain: + return + if tab_size is None: + tab_size = self.tab_size + if tab_size is None: + tab_size = 8 + + new_text: List[Text] = [] + append = new_text.append + + for line in self.split("\n", include_separator=True): + if "\t" not in line.plain: + append(line) + else: + cell_position = 0 + parts = line.split("\t", include_separator=True) + for part in parts: + if part.plain.endswith("\t"): + part._text[-1] = part._text[-1][:-1] + " " + cell_position += part.cell_len + tab_remainder = cell_position % tab_size + if tab_remainder: + spaces = tab_size - tab_remainder + part.extend_style(spaces) + cell_position += spaces + else: + cell_position += part.cell_len + append(part) + + result = Text("").join(new_text) + + self._text = [result.plain] + self._length = len(self.plain) + self._spans[:] = result._spans + + def truncate( + self, + max_width: int, + *, + overflow: Optional["OverflowMethod"] = None, + pad: bool = False, + ) -> None: + """Truncate text if it is longer that a given width. + + Args: + max_width (int): Maximum number of characters in text. + overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to None, to use self.overflow. + pad (bool, optional): Pad with spaces if the length is less than max_width. Defaults to False. + """ + _overflow = overflow or self.overflow or DEFAULT_OVERFLOW + if _overflow != "ignore": + length = cell_len(self.plain) + if length > max_width: + if _overflow == "ellipsis": + self.plain = set_cell_size(self.plain, max_width - 1) + "…" + else: + self.plain = set_cell_size(self.plain, max_width) + if pad and length < max_width: + spaces = max_width - length + self._text = [f"{self.plain}{' ' * spaces}"] + self._length = len(self.plain) + + def _trim_spans(self) -> None: + """Remove or modify any spans that are over the end of the text.""" + max_offset = len(self.plain) + _Span = Span + self._spans[:] = [ + ( + span + if span.end < max_offset + else _Span(span.start, min(max_offset, span.end), span.style) + ) + for span in self._spans + if span.start < max_offset + ] + + def pad(self, count: int, character: str = " ") -> None: + """Pad left and right with a given number of characters. + + Args: + count (int): Width of padding. + character (str): The character to pad with. Must be a string of length 1. + """ + assert len(character) == 1, "Character must be a string of length 1" + if count: + pad_characters = character * count + self.plain = f"{pad_characters}{self.plain}{pad_characters}" + _Span = Span + self._spans[:] = [ + _Span(start + count, end + count, style) + for start, end, style in self._spans + ] + + def pad_left(self, count: int, character: str = " ") -> None: + """Pad the left with a given character. + + Args: + count (int): Number of characters to pad. + character (str, optional): Character to pad with. Defaults to " ". + """ + assert len(character) == 1, "Character must be a string of length 1" + if count: + self.plain = f"{character * count}{self.plain}" + _Span = Span + self._spans[:] = [ + _Span(start + count, end + count, style) + for start, end, style in self._spans + ] + + def pad_right(self, count: int, character: str = " ") -> None: + """Pad the right with a given character. + + Args: + count (int): Number of characters to pad. + character (str, optional): Character to pad with. Defaults to " ". + """ + assert len(character) == 1, "Character must be a string of length 1" + if count: + self.plain = f"{self.plain}{character * count}" + + def align(self, align: AlignMethod, width: int, character: str = " ") -> None: + """Align text to a given width. + + Args: + align (AlignMethod): One of "left", "center", or "right". + width (int): Desired width. + character (str, optional): Character to pad with. Defaults to " ". + """ + self.truncate(width) + excess_space = width - cell_len(self.plain) + if excess_space: + if align == "left": + self.pad_right(excess_space, character) + elif align == "center": + left = excess_space // 2 + self.pad_left(left, character) + self.pad_right(excess_space - left, character) + else: + self.pad_left(excess_space, character) + + def append( + self, text: Union["Text", str], style: Optional[Union[str, "Style"]] = None + ) -> "Text": + """Add text with an optional style. + + Args: + text (Union[Text, str]): A str or Text to append. + style (str, optional): A style name. Defaults to None. + + Returns: + Text: Returns self for chaining. + """ + + if not isinstance(text, (str, Text)): + raise TypeError("Only str or Text can be appended to Text") + + if len(text): + if isinstance(text, str): + sanitized_text = strip_control_codes(text) + self._text.append(sanitized_text) + offset = len(self) + text_length = len(sanitized_text) + if style: + self._spans.append(Span(offset, offset + text_length, style)) + self._length += text_length + elif isinstance(text, Text): + _Span = Span + if style is not None: + raise ValueError( + "style must not be set when appending Text instance" + ) + text_length = self._length + if text.style: + self._spans.append( + _Span(text_length, text_length + len(text), text.style) + ) + self._text.append(text.plain) + self._spans.extend( + _Span(start + text_length, end + text_length, style) + for start, end, style in text._spans + ) + self._length += len(text) + return self + + def append_text(self, text: "Text") -> "Text": + """Append another Text instance. This method is more performant that Text.append, but + only works for Text. + + Args: + text (Text): The Text instance to append to this instance. + + Returns: + Text: Returns self for chaining. + """ + _Span = Span + text_length = self._length + if text.style: + self._spans.append(_Span(text_length, text_length + len(text), text.style)) + self._text.append(text.plain) + self._spans.extend( + _Span(start + text_length, end + text_length, style) + for start, end, style in text._spans + ) + self._length += len(text) + return self + + def append_tokens( + self, tokens: Iterable[Tuple[str, Optional[StyleType]]] + ) -> "Text": + """Append iterable of str and style. Style may be a Style instance or a str style definition. + + Args: + tokens (Iterable[Tuple[str, Optional[StyleType]]]): An iterable of tuples containing str content and style. + + Returns: + Text: Returns self for chaining. + """ + append_text = self._text.append + append_span = self._spans.append + _Span = Span + offset = len(self) + for content, style in tokens: + append_text(content) + if style: + append_span(_Span(offset, offset + len(content), style)) + offset += len(content) + self._length = offset + return self + + def copy_styles(self, text: "Text") -> None: + """Copy styles from another Text instance. + + Args: + text (Text): A Text instance to copy styles from, must be the same length. + """ + self._spans.extend(text._spans) + + def split( + self, + separator: str = "\n", + *, + include_separator: bool = False, + allow_blank: bool = False, + ) -> Lines: + """Split rich text in to lines, preserving styles. + + Args: + separator (str, optional): String to split on. Defaults to "\\\\n". + include_separator (bool, optional): Include the separator in the lines. Defaults to False. + allow_blank (bool, optional): Return a blank line if the text ends with a separator. Defaults to False. + + Returns: + List[RichText]: A list of rich text, one per line of the original. + """ + assert separator, "separator must not be empty" + + text = self.plain + if separator not in text: + return Lines([self.copy()]) + + if include_separator: + lines = self.divide( + match.end() for match in re.finditer(re.escape(separator), text) + ) + else: + + def flatten_spans() -> Iterable[int]: + for match in re.finditer(re.escape(separator), text): + start, end = match.span() + yield start + yield end + + lines = Lines( + line for line in self.divide(flatten_spans()) if line.plain != separator + ) + + if not allow_blank and text.endswith(separator): + lines.pop() + + return lines + + def divide(self, offsets: Iterable[int]) -> Lines: + """Divide text in to a number of lines at given offsets. + + Args: + offsets (Iterable[int]): Offsets used to divide text. + + Returns: + Lines: New RichText instances between offsets. + """ + _offsets = list(offsets) + + if not _offsets: + return Lines([self.copy()]) + + text = self.plain + text_length = len(text) + divide_offsets = [0, *_offsets, text_length] + line_ranges = list(zip(divide_offsets, divide_offsets[1:])) + + style = self.style + justify = self.justify + overflow = self.overflow + _Text = Text + new_lines = Lines( + _Text( + text[start:end], + style=style, + justify=justify, + overflow=overflow, + ) + for start, end in line_ranges + ) + if not self._spans: + return new_lines + + _line_appends = [line._spans.append for line in new_lines._lines] + line_count = len(line_ranges) + _Span = Span + + for span_start, span_end, style in self._spans: + lower_bound = 0 + upper_bound = line_count + start_line_no = (lower_bound + upper_bound) // 2 + + while True: + line_start, line_end = line_ranges[start_line_no] + if span_start < line_start: + upper_bound = start_line_no - 1 + elif span_start > line_end: + lower_bound = start_line_no + 1 + else: + break + start_line_no = (lower_bound + upper_bound) // 2 + + if span_end < line_end: + end_line_no = start_line_no + else: + end_line_no = lower_bound = start_line_no + upper_bound = line_count + + while True: + line_start, line_end = line_ranges[end_line_no] + if span_end < line_start: + upper_bound = end_line_no - 1 + elif span_end > line_end: + lower_bound = end_line_no + 1 + else: + break + end_line_no = (lower_bound + upper_bound) // 2 + + for line_no in range(start_line_no, end_line_no + 1): + line_start, line_end = line_ranges[line_no] + new_start = max(0, span_start - line_start) + new_end = min(span_end - line_start, line_end - line_start) + if new_end > new_start: + _line_appends[line_no](_Span(new_start, new_end, style)) + + return new_lines + + def right_crop(self, amount: int = 1) -> None: + """Remove a number of characters from the end of the text.""" + max_offset = len(self.plain) - amount + _Span = Span + self._spans[:] = [ + ( + span + if span.end < max_offset + else _Span(span.start, min(max_offset, span.end), span.style) + ) + for span in self._spans + if span.start < max_offset + ] + self._text = [self.plain[:-amount]] + self._length -= amount + + def wrap( + self, + console: "Console", + width: int, + *, + justify: Optional["JustifyMethod"] = None, + overflow: Optional["OverflowMethod"] = None, + tab_size: int = 8, + no_wrap: Optional[bool] = None, + ) -> Lines: + """Word wrap the text. + + Args: + console (Console): Console instance. + width (int): Number of cells available per line. + justify (str, optional): Justify method: "default", "left", "center", "full", "right". Defaults to "default". + overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to None. + tab_size (int, optional): Default tab size. Defaults to 8. + no_wrap (bool, optional): Disable wrapping, Defaults to False. + + Returns: + Lines: Number of lines. + """ + wrap_justify = justify or self.justify or DEFAULT_JUSTIFY + wrap_overflow = overflow or self.overflow or DEFAULT_OVERFLOW + + no_wrap = pick_bool(no_wrap, self.no_wrap, False) or overflow == "ignore" + + lines = Lines() + for line in self.split(allow_blank=True): + if "\t" in line: + line.expand_tabs(tab_size) + if no_wrap: + new_lines = Lines([line]) + else: + offsets = divide_line(str(line), width, fold=wrap_overflow == "fold") + new_lines = line.divide(offsets) + for line in new_lines: + line.rstrip_end(width) + if wrap_justify: + new_lines.justify( + console, width, justify=wrap_justify, overflow=wrap_overflow + ) + for line in new_lines: + line.truncate(width, overflow=wrap_overflow) + lines.extend(new_lines) + return lines + + def fit(self, width: int) -> Lines: + """Fit the text in to given width by chopping in to lines. + + Args: + width (int): Maximum characters in a line. + + Returns: + Lines: Lines container. + """ + lines: Lines = Lines() + append = lines.append + for line in self.split(): + line.set_length(width) + append(line) + return lines + + def detect_indentation(self) -> int: + """Auto-detect indentation of code. + + Returns: + int: Number of spaces used to indent code. + """ + + _indentations = { + len(match.group(1)) + for match in re.finditer(r"^( *)(.*)$", self.plain, flags=re.MULTILINE) + } + + try: + indentation = ( + reduce(gcd, [indent for indent in _indentations if not indent % 2]) or 1 + ) + except TypeError: + indentation = 1 + + return indentation + + def with_indent_guides( + self, + indent_size: Optional[int] = None, + *, + character: str = "│", + style: StyleType = "dim green", + ) -> "Text": + """Adds indent guide lines to text. + + Args: + indent_size (Optional[int]): Size of indentation, or None to auto detect. Defaults to None. + character (str, optional): Character to use for indentation. Defaults to "│". + style (Union[Style, str], optional): Style of indent guides. + + Returns: + Text: New text with indentation guides. + """ + + _indent_size = self.detect_indentation() if indent_size is None else indent_size + + text = self.copy() + text.expand_tabs() + indent_line = f"{character}{' ' * (_indent_size - 1)}" + + re_indent = re.compile(r"^( *)(.*)$") + new_lines: List[Text] = [] + add_line = new_lines.append + blank_lines = 0 + for line in text.split(allow_blank=True): + match = re_indent.match(line.plain) + if not match or not match.group(2): + blank_lines += 1 + continue + indent = match.group(1) + full_indents, remaining_space = divmod(len(indent), _indent_size) + new_indent = f"{indent_line * full_indents}{' ' * remaining_space}" + line.plain = new_indent + line.plain[len(new_indent) :] + line.stylize(style, 0, len(new_indent)) + if blank_lines: + new_lines.extend([Text(new_indent, style=style)] * blank_lines) + blank_lines = 0 + add_line(line) + if blank_lines: + new_lines.extend([Text("", style=style)] * blank_lines) + + new_text = text.blank_copy("\n").join(new_lines) + return new_text + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + text = Text( + """\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n""" + ) + text.highlight_words(["Lorem"], "bold") + text.highlight_words(["ipsum"], "italic") + + console = Console() + + console.rule("justify='left'") + console.print(text, style="red") + console.print() + + console.rule("justify='center'") + console.print(text, style="green", justify="center") + console.print() + + console.rule("justify='right'") + console.print(text, style="blue", justify="right") + console.print() + + console.rule("justify='full'") + console.print(text, style="magenta", justify="full") + console.print() diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/theme.py b/myenv/Lib/site-packages/pip/_vendor/rich/theme.py new file mode 100644 index 0000000..471dfb2 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/theme.py @@ -0,0 +1,115 @@ +import configparser +from typing import Dict, List, IO, Mapping, Optional + +from .default_styles import DEFAULT_STYLES +from .style import Style, StyleType + + +class Theme: + """A container for style information, used by :class:`~rich.console.Console`. + + Args: + styles (Dict[str, Style], optional): A mapping of style names on to styles. Defaults to None for a theme with no styles. + inherit (bool, optional): Inherit default styles. Defaults to True. + """ + + styles: Dict[str, Style] + + def __init__( + self, styles: Optional[Mapping[str, StyleType]] = None, inherit: bool = True + ): + self.styles = DEFAULT_STYLES.copy() if inherit else {} + if styles is not None: + self.styles.update( + { + name: style if isinstance(style, Style) else Style.parse(style) + for name, style in styles.items() + } + ) + + @property + def config(self) -> str: + """Get contents of a config file for this theme.""" + config = "[styles]\n" + "\n".join( + f"{name} = {style}" for name, style in sorted(self.styles.items()) + ) + return config + + @classmethod + def from_file( + cls, config_file: IO[str], source: Optional[str] = None, inherit: bool = True + ) -> "Theme": + """Load a theme from a text mode file. + + Args: + config_file (IO[str]): An open conf file. + source (str, optional): The filename of the open file. Defaults to None. + inherit (bool, optional): Inherit default styles. Defaults to True. + + Returns: + Theme: A New theme instance. + """ + config = configparser.ConfigParser() + config.read_file(config_file, source=source) + styles = {name: Style.parse(value) for name, value in config.items("styles")} + theme = Theme(styles, inherit=inherit) + return theme + + @classmethod + def read( + cls, path: str, inherit: bool = True, encoding: Optional[str] = None + ) -> "Theme": + """Read a theme from a path. + + Args: + path (str): Path to a config file readable by Python configparser module. + inherit (bool, optional): Inherit default styles. Defaults to True. + encoding (str, optional): Encoding of the config file. Defaults to None. + + Returns: + Theme: A new theme instance. + """ + with open(path, "rt", encoding=encoding) as config_file: + return cls.from_file(config_file, source=path, inherit=inherit) + + +class ThemeStackError(Exception): + """Base exception for errors related to the theme stack.""" + + +class ThemeStack: + """A stack of themes. + + Args: + theme (Theme): A theme instance + """ + + def __init__(self, theme: Theme) -> None: + self._entries: List[Dict[str, Style]] = [theme.styles] + self.get = self._entries[-1].get + + def push_theme(self, theme: Theme, inherit: bool = True) -> None: + """Push a theme on the top of the stack. + + Args: + theme (Theme): A Theme instance. + inherit (boolean, optional): Inherit styles from current top of stack. + """ + styles: Dict[str, Style] + styles = ( + {**self._entries[-1], **theme.styles} if inherit else theme.styles.copy() + ) + self._entries.append(styles) + self.get = self._entries[-1].get + + def pop_theme(self) -> None: + """Pop (and discard) the top-most theme.""" + if len(self._entries) == 1: + raise ThemeStackError("Unable to pop base theme") + self._entries.pop() + self.get = self._entries[-1].get + + +if __name__ == "__main__": # pragma: no cover + theme = Theme() + print(theme.config) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/themes.py b/myenv/Lib/site-packages/pip/_vendor/rich/themes.py new file mode 100644 index 0000000..bf6db10 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/themes.py @@ -0,0 +1,5 @@ +from .default_styles import DEFAULT_STYLES +from .theme import Theme + + +DEFAULT = Theme(DEFAULT_STYLES) diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/traceback.py b/myenv/Lib/site-packages/pip/_vendor/rich/traceback.py new file mode 100644 index 0000000..f223ad4 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/traceback.py @@ -0,0 +1,753 @@ +from __future__ import absolute_import + +import linecache +import os +import platform +import sys +from dataclasses import dataclass, field +from traceback import walk_tb +from types import ModuleType, TracebackType +from typing import ( + Any, + Callable, + Dict, + Iterable, + List, + Optional, + Sequence, + Tuple, + Type, + Union, +) + +from pip._vendor.pygments.lexers import guess_lexer_for_filename +from pip._vendor.pygments.token import Comment, Keyword, Name, Number, Operator, String +from pip._vendor.pygments.token import Text as TextToken +from pip._vendor.pygments.token import Token +from pip._vendor.pygments.util import ClassNotFound + +from . import pretty +from ._loop import loop_last +from .columns import Columns +from .console import Console, ConsoleOptions, ConsoleRenderable, RenderResult, group +from .constrain import Constrain +from .highlighter import RegexHighlighter, ReprHighlighter +from .panel import Panel +from .scope import render_scope +from .style import Style +from .syntax import Syntax +from .text import Text +from .theme import Theme + +WINDOWS = platform.system() == "Windows" + +LOCALS_MAX_LENGTH = 10 +LOCALS_MAX_STRING = 80 + + +def install( + *, + console: Optional[Console] = None, + width: Optional[int] = 100, + extra_lines: int = 3, + theme: Optional[str] = None, + word_wrap: bool = False, + show_locals: bool = False, + locals_max_length: int = LOCALS_MAX_LENGTH, + locals_max_string: int = LOCALS_MAX_STRING, + locals_hide_dunder: bool = True, + locals_hide_sunder: Optional[bool] = None, + indent_guides: bool = True, + suppress: Iterable[Union[str, ModuleType]] = (), + max_frames: int = 100, +) -> Callable[[Type[BaseException], BaseException, Optional[TracebackType]], Any]: + """Install a rich traceback handler. + + Once installed, any tracebacks will be printed with syntax highlighting and rich formatting. + + + Args: + console (Optional[Console], optional): Console to write exception to. Default uses internal Console instance. + width (Optional[int], optional): Width (in characters) of traceback. Defaults to 100. + extra_lines (int, optional): Extra lines of code. Defaults to 3. + theme (Optional[str], optional): Pygments theme to use in traceback. Defaults to ``None`` which will pick + a theme appropriate for the platform. + 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. + locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to 10. + locals_max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to 80. + locals_hide_dunder (bool, optional): Hide locals prefixed with double underscore. Defaults to True. + locals_hide_sunder (bool, optional): Hide locals prefixed with single underscore. Defaults to False. + indent_guides (bool, optional): Enable indent guides in code and locals. Defaults to True. + suppress (Sequence[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback. + + Returns: + Callable: The previous exception handler that was replaced. + + """ + traceback_console = Console(stderr=True) if console is None else console + + locals_hide_sunder = ( + True + if (traceback_console.is_jupyter and locals_hide_sunder is None) + else locals_hide_sunder + ) + + def excepthook( + type_: Type[BaseException], + value: BaseException, + traceback: Optional[TracebackType], + ) -> None: + traceback_console.print( + Traceback.from_exception( + type_, + value, + traceback, + width=width, + extra_lines=extra_lines, + theme=theme, + word_wrap=word_wrap, + show_locals=show_locals, + locals_max_length=locals_max_length, + locals_max_string=locals_max_string, + locals_hide_dunder=locals_hide_dunder, + locals_hide_sunder=bool(locals_hide_sunder), + indent_guides=indent_guides, + suppress=suppress, + max_frames=max_frames, + ) + ) + + def ipy_excepthook_closure(ip: Any) -> None: # pragma: no cover + tb_data = {} # store information about showtraceback call + default_showtraceback = ip.showtraceback # keep reference of default traceback + + def ipy_show_traceback(*args: Any, **kwargs: Any) -> None: + """wrap the default ip.showtraceback to store info for ip._showtraceback""" + nonlocal tb_data + tb_data = kwargs + default_showtraceback(*args, **kwargs) + + def ipy_display_traceback( + *args: Any, is_syntax: bool = False, **kwargs: Any + ) -> None: + """Internally called traceback from ip._showtraceback""" + nonlocal tb_data + exc_tuple = ip._get_exc_info() + + # do not display trace on syntax error + tb: Optional[TracebackType] = None if is_syntax else exc_tuple[2] + + # determine correct tb_offset + compiled = tb_data.get("running_compiled_code", False) + tb_offset = tb_data.get("tb_offset", 1 if compiled else 0) + # remove ipython internal frames from trace with tb_offset + for _ in range(tb_offset): + if tb is None: + break + tb = tb.tb_next + + excepthook(exc_tuple[0], exc_tuple[1], tb) + tb_data = {} # clear data upon usage + + # replace _showtraceback instead of showtraceback to allow ipython features such as debugging to work + # this is also what the ipython docs recommends to modify when subclassing InteractiveShell + ip._showtraceback = ipy_display_traceback + # add wrapper to capture tb_data + ip.showtraceback = ipy_show_traceback + ip.showsyntaxerror = lambda *args, **kwargs: ipy_display_traceback( + *args, is_syntax=True, **kwargs + ) + + try: # pragma: no cover + # if within ipython, use customized traceback + ip = get_ipython() # type: ignore[name-defined] + ipy_excepthook_closure(ip) + return sys.excepthook + except Exception: + # otherwise use default system hook + old_excepthook = sys.excepthook + sys.excepthook = excepthook + return old_excepthook + + +@dataclass +class Frame: + filename: str + lineno: int + name: str + line: str = "" + locals: Optional[Dict[str, pretty.Node]] = None + + +@dataclass +class _SyntaxError: + offset: int + filename: str + line: str + lineno: int + msg: str + + +@dataclass +class Stack: + exc_type: str + exc_value: str + syntax_error: Optional[_SyntaxError] = None + is_cause: bool = False + frames: List[Frame] = field(default_factory=list) + + +@dataclass +class Trace: + stacks: List[Stack] + + +class PathHighlighter(RegexHighlighter): + highlights = [r"(?P.*/)(?P.+)"] + + +class Traceback: + """A Console renderable that renders a traceback. + + Args: + trace (Trace, optional): A `Trace` object produced from `extract`. Defaults to None, which uses + the last exception. + width (Optional[int], optional): Number of characters used to traceback. 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. + indent_guides (bool, optional): Enable indent guides in code and locals. Defaults to True. + locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to 10. + locals_max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to 80. + locals_hide_dunder (bool, optional): Hide locals prefixed with double underscore. Defaults to True. + locals_hide_sunder (bool, optional): Hide locals prefixed with single underscore. Defaults to False. + suppress (Sequence[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. + + """ + + LEXERS = { + "": "text", + ".py": "python", + ".pxd": "cython", + ".pyx": "cython", + ".pxi": "pyrex", + } + + def __init__( + self, + trace: Optional[Trace] = None, + *, + width: Optional[int] = 100, + extra_lines: int = 3, + theme: Optional[str] = None, + word_wrap: bool = False, + show_locals: bool = False, + locals_max_length: int = LOCALS_MAX_LENGTH, + locals_max_string: int = LOCALS_MAX_STRING, + locals_hide_dunder: bool = True, + locals_hide_sunder: bool = False, + indent_guides: bool = True, + suppress: Iterable[Union[str, ModuleType]] = (), + max_frames: int = 100, + ): + if trace is None: + exc_type, exc_value, traceback = sys.exc_info() + if exc_type is None or exc_value is None or traceback is None: + raise ValueError( + "Value for 'trace' required if not called in except: block" + ) + trace = self.extract( + exc_type, exc_value, traceback, show_locals=show_locals + ) + self.trace = trace + self.width = width + self.extra_lines = extra_lines + self.theme = Syntax.get_theme(theme or "ansi_dark") + self.word_wrap = word_wrap + self.show_locals = show_locals + self.indent_guides = indent_guides + self.locals_max_length = locals_max_length + self.locals_max_string = locals_max_string + self.locals_hide_dunder = locals_hide_dunder + self.locals_hide_sunder = locals_hide_sunder + + self.suppress: Sequence[str] = [] + for suppress_entity in suppress: + if not isinstance(suppress_entity, str): + assert ( + suppress_entity.__file__ is not None + ), f"{suppress_entity!r} must be a module with '__file__' attribute" + path = os.path.dirname(suppress_entity.__file__) + else: + path = suppress_entity + path = os.path.normpath(os.path.abspath(path)) + self.suppress.append(path) + self.max_frames = max(4, max_frames) if max_frames > 0 else 0 + + @classmethod + def from_exception( + cls, + exc_type: Type[Any], + exc_value: BaseException, + traceback: Optional[TracebackType], + *, + width: Optional[int] = 100, + extra_lines: int = 3, + theme: Optional[str] = None, + word_wrap: bool = False, + show_locals: bool = False, + locals_max_length: int = LOCALS_MAX_LENGTH, + locals_max_string: int = LOCALS_MAX_STRING, + locals_hide_dunder: bool = True, + locals_hide_sunder: bool = False, + indent_guides: bool = True, + suppress: Iterable[Union[str, ModuleType]] = (), + max_frames: int = 100, + ) -> "Traceback": + """Create a traceback from exception info + + Args: + exc_type (Type[BaseException]): Exception type. + exc_value (BaseException): Exception value. + traceback (TracebackType): Python Traceback object. + width (Optional[int], optional): Number of characters used to traceback. 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. + indent_guides (bool, optional): Enable indent guides in code and locals. Defaults to True. + locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to 10. + locals_max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to 80. + locals_hide_dunder (bool, optional): Hide locals prefixed with double underscore. Defaults to True. + locals_hide_sunder (bool, optional): Hide locals prefixed with single underscore. 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. + + Returns: + Traceback: A Traceback instance that may be printed. + """ + rich_traceback = cls.extract( + exc_type, + exc_value, + traceback, + show_locals=show_locals, + locals_max_length=locals_max_length, + locals_max_string=locals_max_string, + locals_hide_dunder=locals_hide_dunder, + locals_hide_sunder=locals_hide_sunder, + ) + + return cls( + rich_traceback, + width=width, + extra_lines=extra_lines, + theme=theme, + word_wrap=word_wrap, + show_locals=show_locals, + indent_guides=indent_guides, + locals_max_length=locals_max_length, + locals_max_string=locals_max_string, + locals_hide_dunder=locals_hide_dunder, + locals_hide_sunder=locals_hide_sunder, + suppress=suppress, + max_frames=max_frames, + ) + + @classmethod + def extract( + cls, + exc_type: Type[BaseException], + exc_value: BaseException, + traceback: Optional[TracebackType], + *, + show_locals: bool = False, + locals_max_length: int = LOCALS_MAX_LENGTH, + locals_max_string: int = LOCALS_MAX_STRING, + locals_hide_dunder: bool = True, + locals_hide_sunder: bool = False, + ) -> Trace: + """Extract traceback information. + + Args: + exc_type (Type[BaseException]): Exception type. + exc_value (BaseException): Exception value. + traceback (TracebackType): Python Traceback object. + show_locals (bool, optional): Enable display of local variables. Defaults to False. + locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. + Defaults to 10. + locals_max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to 80. + locals_hide_dunder (bool, optional): Hide locals prefixed with double underscore. Defaults to True. + locals_hide_sunder (bool, optional): Hide locals prefixed with single underscore. Defaults to False. + + Returns: + Trace: A Trace instance which you can use to construct a `Traceback`. + """ + + stacks: List[Stack] = [] + is_cause = False + + from pip._vendor.rich import _IMPORT_CWD + + def safe_str(_object: Any) -> str: + """Don't allow exceptions from __str__ to propagate.""" + try: + return str(_object) + except Exception: + return "" + + while True: + stack = Stack( + exc_type=safe_str(exc_type.__name__), + exc_value=safe_str(exc_value), + is_cause=is_cause, + ) + + if isinstance(exc_value, SyntaxError): + stack.syntax_error = _SyntaxError( + offset=exc_value.offset or 0, + filename=exc_value.filename or "?", + lineno=exc_value.lineno or 0, + line=exc_value.text or "", + msg=exc_value.msg, + ) + + stacks.append(stack) + append = stack.frames.append + + def get_locals( + iter_locals: Iterable[Tuple[str, object]] + ) -> Iterable[Tuple[str, object]]: + """Extract locals from an iterator of key pairs.""" + if not (locals_hide_dunder or locals_hide_sunder): + yield from iter_locals + return + for key, value in iter_locals: + if locals_hide_dunder and key.startswith("__"): + continue + if locals_hide_sunder and key.startswith("_"): + continue + yield key, value + + for frame_summary, line_no in walk_tb(traceback): + filename = frame_summary.f_code.co_filename + if filename and not filename.startswith("<"): + if not os.path.isabs(filename): + filename = os.path.join(_IMPORT_CWD, filename) + if frame_summary.f_locals.get("_rich_traceback_omit", False): + continue + + frame = Frame( + filename=filename or "?", + lineno=line_no, + name=frame_summary.f_code.co_name, + locals={ + key: pretty.traverse( + value, + max_length=locals_max_length, + max_string=locals_max_string, + ) + for key, value in get_locals(frame_summary.f_locals.items()) + } + if show_locals + else None, + ) + append(frame) + if frame_summary.f_locals.get("_rich_traceback_guard", False): + del stack.frames[:] + + cause = getattr(exc_value, "__cause__", None) + if cause: + exc_type = cause.__class__ + exc_value = cause + # __traceback__ can be None, e.g. for exceptions raised by the + # 'multiprocessing' module + traceback = cause.__traceback__ + is_cause = True + continue + + cause = exc_value.__context__ + if cause and not getattr(exc_value, "__suppress_context__", False): + exc_type = cause.__class__ + exc_value = cause + traceback = cause.__traceback__ + is_cause = False + continue + # No cover, code is reached but coverage doesn't recognize it. + break # pragma: no cover + + trace = Trace(stacks=stacks) + return trace + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + theme = self.theme + background_style = theme.get_background_style() + token_style = theme.get_style_for_token + + traceback_theme = Theme( + { + "pretty": token_style(TextToken), + "pygments.text": token_style(Token), + "pygments.string": token_style(String), + "pygments.function": token_style(Name.Function), + "pygments.number": token_style(Number), + "repr.indent": token_style(Comment) + Style(dim=True), + "repr.str": token_style(String), + "repr.brace": token_style(TextToken) + Style(bold=True), + "repr.number": token_style(Number), + "repr.bool_true": token_style(Keyword.Constant), + "repr.bool_false": token_style(Keyword.Constant), + "repr.none": token_style(Keyword.Constant), + "scope.border": token_style(String.Delimiter), + "scope.equals": token_style(Operator), + "scope.key": token_style(Name), + "scope.key.special": token_style(Name.Constant) + Style(dim=True), + }, + inherit=False, + ) + + highlighter = ReprHighlighter() + for last, stack in loop_last(reversed(self.trace.stacks)): + if stack.frames: + stack_renderable: ConsoleRenderable = Panel( + self._render_stack(stack), + title="[traceback.title]Traceback [dim](most recent call last)", + style=background_style, + border_style="traceback.border", + expand=True, + padding=(0, 1), + ) + stack_renderable = Constrain(stack_renderable, self.width) + with console.use_theme(traceback_theme): + yield stack_renderable + if stack.syntax_error is not None: + with console.use_theme(traceback_theme): + yield Constrain( + Panel( + self._render_syntax_error(stack.syntax_error), + style=background_style, + border_style="traceback.border.syntax_error", + expand=True, + padding=(0, 1), + width=self.width, + ), + self.width, + ) + yield Text.assemble( + (f"{stack.exc_type}: ", "traceback.exc_type"), + highlighter(stack.syntax_error.msg), + ) + elif stack.exc_value: + yield Text.assemble( + (f"{stack.exc_type}: ", "traceback.exc_type"), + highlighter(stack.exc_value), + ) + else: + yield Text.assemble((f"{stack.exc_type}", "traceback.exc_type")) + + if not last: + if stack.is_cause: + yield Text.from_markup( + "\n[i]The above exception was the direct cause of the following exception:\n", + ) + else: + yield Text.from_markup( + "\n[i]During handling of the above exception, another exception occurred:\n", + ) + + @group() + def _render_syntax_error(self, syntax_error: _SyntaxError) -> RenderResult: + highlighter = ReprHighlighter() + path_highlighter = PathHighlighter() + if syntax_error.filename != "": + if os.path.exists(syntax_error.filename): + text = Text.assemble( + (f" {syntax_error.filename}", "pygments.string"), + (":", "pygments.text"), + (str(syntax_error.lineno), "pygments.number"), + style="pygments.text", + ) + yield path_highlighter(text) + syntax_error_text = highlighter(syntax_error.line.rstrip()) + syntax_error_text.no_wrap = True + offset = min(syntax_error.offset - 1, len(syntax_error_text)) + syntax_error_text.stylize("bold underline", offset, offset) + syntax_error_text += Text.from_markup( + "\n" + " " * offset + "[traceback.offset]▲[/]", + style="pygments.text", + ) + yield syntax_error_text + + @classmethod + def _guess_lexer(cls, filename: str, code: str) -> str: + ext = os.path.splitext(filename)[-1] + if not ext: + # No extension, look at first line to see if it is a hashbang + # Note, this is an educated guess and not a guarantee + # If it fails, the only downside is that the code is highlighted strangely + new_line_index = code.index("\n") + first_line = code[:new_line_index] if new_line_index != -1 else code + if first_line.startswith("#!") and "python" in first_line.lower(): + return "python" + try: + return cls.LEXERS.get(ext) or guess_lexer_for_filename(filename, code).name + except ClassNotFound: + return "text" + + @group() + def _render_stack(self, stack: Stack) -> RenderResult: + path_highlighter = PathHighlighter() + theme = self.theme + + def read_code(filename: str) -> str: + """Read files, and cache results on filename. + + Args: + filename (str): Filename to read + + Returns: + str: Contents of file + """ + return "".join(linecache.getlines(filename)) + + def render_locals(frame: Frame) -> Iterable[ConsoleRenderable]: + if frame.locals: + yield render_scope( + frame.locals, + title="locals", + indent_guides=self.indent_guides, + max_length=self.locals_max_length, + max_string=self.locals_max_string, + ) + + exclude_frames: Optional[range] = None + if self.max_frames != 0: + exclude_frames = range( + self.max_frames // 2, + len(stack.frames) - self.max_frames // 2, + ) + + excluded = False + for frame_index, frame in enumerate(stack.frames): + if exclude_frames and frame_index in exclude_frames: + excluded = True + continue + + if excluded: + assert exclude_frames is not None + yield Text( + f"\n... {len(exclude_frames)} frames hidden ...", + justify="center", + style="traceback.error", + ) + excluded = False + + first = frame_index == 0 + frame_filename = frame.filename + suppressed = any(frame_filename.startswith(path) for path in self.suppress) + + if os.path.exists(frame.filename): + text = Text.assemble( + path_highlighter(Text(frame.filename, style="pygments.string")), + (":", "pygments.text"), + (str(frame.lineno), "pygments.number"), + " in ", + (frame.name, "pygments.function"), + style="pygments.text", + ) + else: + text = Text.assemble( + "in ", + (frame.name, "pygments.function"), + (":", "pygments.text"), + (str(frame.lineno), "pygments.number"), + style="pygments.text", + ) + if not frame.filename.startswith("<") and not first: + yield "" + yield text + if frame.filename.startswith("<"): + yield from render_locals(frame) + continue + if not suppressed: + try: + code = read_code(frame.filename) + if not code: + # code may be an empty string if the file doesn't exist, OR + # if the traceback filename is generated dynamically + continue + lexer_name = self._guess_lexer(frame.filename, code) + syntax = Syntax( + code, + lexer_name, + theme=theme, + line_numbers=True, + line_range=( + frame.lineno - self.extra_lines, + frame.lineno + self.extra_lines, + ), + highlight_lines={frame.lineno}, + word_wrap=self.word_wrap, + code_width=88, + indent_guides=self.indent_guides, + dedent=False, + ) + yield "" + except Exception as error: + yield Text.assemble( + (f"\n{error}", "traceback.error"), + ) + else: + yield ( + Columns( + [ + syntax, + *render_locals(frame), + ], + padding=1, + ) + if frame.locals + else syntax + ) + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + + console = Console() + import sys + + def bar(a: Any) -> None: # 这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑 + one = 1 + print(one / a) + + def foo(a: Any) -> None: + _rich_traceback_guard = True + zed = { + "characters": { + "Paul Atreides", + "Vladimir Harkonnen", + "Thufir Hawat", + "Duncan Idaho", + }, + "atomic_types": (None, False, True), + } + bar(a) + + def error() -> None: + try: + try: + foo(0) + except: + slfkjsldkfj # type: ignore[name-defined] + except: + console.print_exception(show_locals=True) + + error() diff --git a/myenv/Lib/site-packages/pip/_vendor/rich/tree.py b/myenv/Lib/site-packages/pip/_vendor/rich/tree.py new file mode 100644 index 0000000..64bc75d --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/rich/tree.py @@ -0,0 +1,249 @@ +from typing import Iterator, List, Optional, Tuple + +from ._loop import loop_first, loop_last +from .console import Console, ConsoleOptions, RenderableType, RenderResult +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import Style, StyleStack, StyleType +from .styled import Styled + + +class Tree(JupyterMixin): + """A renderable for a tree structure. + + Args: + label (RenderableType): The renderable or str for the tree label. + style (StyleType, optional): Style of this tree. Defaults to "tree". + guide_style (StyleType, optional): Style of the guide lines. Defaults to "tree.line". + expanded (bool, optional): Also display children. Defaults to True. + highlight (bool, optional): Highlight renderable (if str). Defaults to False. + """ + + def __init__( + self, + label: RenderableType, + *, + style: StyleType = "tree", + guide_style: StyleType = "tree.line", + expanded: bool = True, + highlight: bool = False, + hide_root: bool = False, + ) -> None: + self.label = label + self.style = style + self.guide_style = guide_style + self.children: List[Tree] = [] + self.expanded = expanded + self.highlight = highlight + self.hide_root = hide_root + + def add( + self, + label: RenderableType, + *, + style: Optional[StyleType] = None, + guide_style: Optional[StyleType] = None, + expanded: bool = True, + highlight: Optional[bool] = False, + ) -> "Tree": + """Add a child tree. + + Args: + label (RenderableType): The renderable or str for the tree label. + style (StyleType, optional): Style of this tree. Defaults to "tree". + guide_style (StyleType, optional): Style of the guide lines. Defaults to "tree.line". + expanded (bool, optional): Also display children. Defaults to True. + highlight (Optional[bool], optional): Highlight renderable (if str). Defaults to False. + + Returns: + Tree: A new child Tree, which may be further modified. + """ + node = Tree( + label, + style=self.style if style is None else style, + guide_style=self.guide_style if guide_style is None else guide_style, + expanded=expanded, + highlight=self.highlight if highlight is None else highlight, + ) + self.children.append(node) + return node + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + stack: List[Iterator[Tuple[bool, Tree]]] = [] + pop = stack.pop + push = stack.append + new_line = Segment.line() + + get_style = console.get_style + null_style = Style.null() + guide_style = get_style(self.guide_style, default="") or null_style + SPACE, CONTINUE, FORK, END = range(4) + + ASCII_GUIDES = (" ", "| ", "+-- ", "`-- ") + TREE_GUIDES = [ + (" ", "│ ", "├── ", "└── "), + (" ", "┃ ", "┣━━ ", "┗━━ "), + (" ", "║ ", "╠══ ", "╚══ "), + ] + _Segment = Segment + + def make_guide(index: int, style: Style) -> Segment: + """Make a Segment for a level of the guide lines.""" + if options.ascii_only: + line = ASCII_GUIDES[index] + else: + guide = 1 if style.bold else (2 if style.underline2 else 0) + line = TREE_GUIDES[0 if options.legacy_windows else guide][index] + return _Segment(line, style) + + levels: List[Segment] = [make_guide(CONTINUE, guide_style)] + push(iter(loop_last([self]))) + + guide_style_stack = StyleStack(get_style(self.guide_style)) + style_stack = StyleStack(get_style(self.style)) + remove_guide_styles = Style(bold=False, underline2=False) + + depth = 0 + + while stack: + stack_node = pop() + try: + last, node = next(stack_node) + except StopIteration: + levels.pop() + if levels: + guide_style = levels[-1].style or null_style + levels[-1] = make_guide(FORK, guide_style) + guide_style_stack.pop() + style_stack.pop() + continue + push(stack_node) + if last: + levels[-1] = make_guide(END, levels[-1].style or null_style) + + guide_style = guide_style_stack.current + get_style(node.guide_style) + style = style_stack.current + get_style(node.style) + prefix = levels[(2 if self.hide_root else 1) :] + renderable_lines = console.render_lines( + Styled(node.label, style), + options.update( + width=options.max_width + - sum(level.cell_length for level in prefix), + highlight=self.highlight, + height=None, + ), + pad=options.justify is not None, + ) + + if not (depth == 0 and self.hide_root): + for first, line in loop_first(renderable_lines): + if prefix: + yield from _Segment.apply_style( + prefix, + style.background_style, + post_style=remove_guide_styles, + ) + yield from line + yield new_line + if first and prefix: + prefix[-1] = make_guide( + SPACE if last else CONTINUE, prefix[-1].style or null_style + ) + + if node.expanded and node.children: + levels[-1] = make_guide( + SPACE if last else CONTINUE, levels[-1].style or null_style + ) + levels.append( + make_guide(END if len(node.children) == 1 else FORK, guide_style) + ) + style_stack.push(get_style(node.style)) + guide_style_stack.push(get_style(node.guide_style)) + push(iter(loop_last(node.children))) + depth += 1 + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + stack: List[Iterator[Tree]] = [iter([self])] + pop = stack.pop + push = stack.append + minimum = 0 + maximum = 0 + measure = Measurement.get + level = 0 + while stack: + iter_tree = pop() + try: + tree = next(iter_tree) + except StopIteration: + level -= 1 + continue + push(iter_tree) + min_measure, max_measure = measure(console, options, tree.label) + indent = level * 4 + minimum = max(min_measure + indent, minimum) + maximum = max(max_measure + indent, maximum) + if tree.expanded and tree.children: + push(iter(tree.children)) + level += 1 + return Measurement(minimum, maximum) + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Group + from pip._vendor.rich.markdown import Markdown + from pip._vendor.rich.panel import Panel + from pip._vendor.rich.syntax import Syntax + from pip._vendor.rich.table import Table + + table = Table(row_styles=["", "dim"]) + + table.add_column("Released", style="cyan", no_wrap=True) + table.add_column("Title", style="magenta") + table.add_column("Box Office", justify="right", style="green") + + table.add_row("Dec 20, 2019", "Star Wars: The Rise of Skywalker", "$952,110,690") + table.add_row("May 25, 2018", "Solo: A Star Wars Story", "$393,151,347") + table.add_row("Dec 15, 2017", "Star Wars Ep. V111: The Last Jedi", "$1,332,539,889") + table.add_row("Dec 16, 2016", "Rogue One: A Star Wars Story", "$1,332,439,889") + + code = """\ +class Segment(NamedTuple): + text: str = "" + style: Optional[Style] = None + is_control: bool = False +""" + syntax = Syntax(code, "python", theme="monokai", line_numbers=True) + + markdown = Markdown( + """\ +### example.md +> Hello, World! +> +> Markdown _all_ the things +""" + ) + + root = Tree("🌲 [b green]Rich Tree", highlight=True, hide_root=True) + + node = root.add(":file_folder: Renderables", guide_style="red") + simple_node = node.add(":file_folder: [bold yellow]Atomic", guide_style="uu green") + simple_node.add(Group("📄 Syntax", syntax)) + simple_node.add(Group("📄 Markdown", Panel(markdown, border_style="green"))) + + containers_node = node.add( + ":file_folder: [bold magenta]Containers", guide_style="bold magenta" + ) + containers_node.expanded = True + panel = Panel.fit("Just a panel", border_style="red") + containers_node.add(Group("📄 Panels", panel)) + + containers_node.add(Group("📄 [b magenta]Table", table)) + + console = Console() + + console.print(root) diff --git a/myenv/Lib/site-packages/pip/_vendor/tomli/__init__.py b/myenv/Lib/site-packages/pip/_vendor/tomli/__init__.py new file mode 100644 index 0000000..4c6ec97 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/tomli/__init__.py @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: MIT +# SPDX-FileCopyrightText: 2021 Taneli Hukkinen +# Licensed to PSF under a Contributor Agreement. + +__all__ = ("loads", "load", "TOMLDecodeError") +__version__ = "2.0.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT + +from ._parser import TOMLDecodeError, load, loads + +# Pretend this exception was created here. +TOMLDecodeError.__module__ = __name__ diff --git a/myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..59c75143364367d4c9552588a09d7ab9f842d08e GIT binary patch literal 412 zcmZ8cJxIeq6u$J5rnI)5TpUC}gbb#(qlk-jt9H>P96YYQLyzW zH@}oAvar-ulQ@Um^}s4+CIEF^fUE*A!@weHfkTVBh4&Y zMjWHgLFZ`EV9}^+&^78FbdMGf7LS$;mazBMkcQ2)n!z== zuVtlN+WWzE!F4Rft);Nqy_6O-p6SpAE_+96SN2JZMG+B;Db(s2tPj?+noG14R&zt9 z=7U|M(@*n~W0u~c-5ZqXx_iREI2Sox|&f8T82_H$y@bDX#;*zyKulCD8taJ^Xl zDlhI4Yo0R?Zpb{{FRsQ@D=V=ECDy)S$mHM1($*o(tEaWGv|6Oq1?_sxo5a0h{d2~_ z%{Ff3f8su|0q?hn4~UJp--CM-?pwunu^IPmxVPYb@5-fZoY*1y@czES_hP5G9_ib~ zE^!0yJH&3W75AOEZ^V6<*dw;#zFXWcZo++!xLMrtDxY7ActE@dBXB>;Y(<{EVz0Oj z_kDQ27xxFmgW`R-w^-8``vapv@z})Kk>E#!7e2G%INI&+YCqO}toLxY;>1JWkW5Gn`zp<+aJV+LywKEiXU)+T=fnss9(tEBTMShE<53WUNz(Hk1}2E5|<(8OqPEaDA? zy?{dR(}9tY=%uo4{XU~&_4~&FUVgt~_xnf3#fcG$JN^EzPXtCXZ!CU4YVrGD=a#8; zQWXUaT5vBSVH1MqIK{Y2TCb(Q4!~!l>mMc%(xHd?MWY7-#V^MZA;>wS!weEKmqz-h z4K{Ada0dAcFFl74v1#w7gem?_K_guQ0MZD3ja?0#RK#-;Fbee&b@&tw7Y*mQ^TK1? zIo@ZCHZss>qvRcy#z!%ZCmA|=heIPl@A%0x!J$Z7w7Z9%Mkm4%?@6Sd1^i&t$F#f{ z&S0xI*mkPTI}r|gpQH>e&BNp4Z3KMHt=?woWV7$derW@m<1;BnDHsqHv&iODakWPx zQt0GFM4ev6M%01Lv|_@5ieb#2(eEEVE48Ay!k<+5Fat|3E;dJsk@89R;q^}Z!Ve;t z;ci)-mu<7QZ#ib#mkcITS=w22`M~UfZyk*Bx9yy>BwjM-Sa7t;#@0`7+c;{^{krxfx zWKA1HVOogj6CEL_VwX12*{Rb~^s+|LIBm)S1AS_zLHQ#Nt)?l%ln`-hPZ}?q76`$kX)${7gHtHeeWV4S(p1ppRGH`d!>4GS>qy~GZX&+ly+&g z0;Q{X?lBJI<<-)%_cL|bxE34WG(<0`#{|jLGHrQ`yY!cL$?=uHhLwv^;um_xZD+K%h2b!E+;_F%Tcg z3%=$ZAI=i|z%b+tP%gcguT-%}!LuWQp`cM9*A|Oon>iFUJ5T>aH^snSieo#~>I_`nN~FBycQ`tW9EWJgz0qP~<}6Y|hx%XRRm} z;4wg--d@cWgWd2L7-z{+56?N>mv_wWxP1TY{j#xYsh7u_-`uX?%GM$iy1KUR+m0mx zvESUT%Pr|DC|H7WpM{AHzExuCYU185wszaOpV&;@HQY~{Y~2>&r)Hi)yQ8~G_-Q3i zVU4YOkMPsoJi;NA)GxwOT+o#f=8I*b0lKj;Xc8Tw5jubwnwklB3!crmTg4*Lg1b$0 ziB{b0(Bo{lJ0|VEV(ETV7xgg=^hQnxBHq!!S#Mvc_r5PAcgg^)fBZ^DIQ8f`# zoiQ9784i=cmJu@`Lx#pe5x+m`V(o9!o=Lh36Pujj(#^h@@seY4+xCCg9W%aftzm-V zkk0FoiNrKK^UHe?Ve$g*h1W`A;1oY)7&d6C2Cw(TAU%TOiVzUR*9GY@7RNX$M%F$0 zw1(?Y(L_<}XtYG_MNZO7$Q!OkfR0$5H?1{EYt2pTx}onUNYt&4oSyJ1iiP(h zz>v8;m!Fw^CT2{Rl*I?)Cts|JwWr<13FGYa2gMa>Pi2C?vOTdQ>1mklTC#AZ)nF#J zqRZAdzc zbtmDtGbIE=;j1JDTlV0KbY~+fu(3B@@?q@FU!gX0rZzLxGbKm{(KyD7CVE;4)Ti>u zfY0174I?LDybCwQtwX&^%%oFDRfAEAQ6}W2S!VbkouCA3cB&;JrqU1vAq0w@zhpvs5y0SS%EA|kaHfW(LSNq%M81N0+w zG%$38elcwX7zi13gakijWWZnoVwyw-7|^2#RiQhnQwlw64FCl?A7OVJI{wL(0V8(Q`-PH$@?t*J#5w`n$u(I^s<@d+06PZh4V>M$tF#)hsMT& zlArKd8b@lFbXYJ6x>S`~2!;LHBqI7pl7M7DTT zuG^Zd+?I52`=GKW?OBsJo%A#V$%_cdU0hjZT)MJ7W=%Uh@kr8v9F+;{mA$bpifo&+ zymG(nX?f3cXuj)Om%Q^}a@!%f^^oj5ly;Y~S?qt^pqQm#WI`HKjQ!(dL7$nCD~YsN z2FQvKLO&z)IDz1GW6pa$72r=qE?Y_>ip+38F`gVBAIVm5#|PA`tg7=Ujvg88?pKPsAAPW|x3l+{zrTCnm^4Tko}_@7kMtA;ghG-;fsX=aYhuDjOlXE^x#%rF>`p?XfW+sw(_Qp%VxpUuxvM*yvxNlQ$K&Z z!fh&7tD~9-!S##yATEA+8^Roc&m!^=-UJawi(KQfXoc`+h9GET!k=lO&LifgpsGADQ5g_8|%_B@Ox)q2vTF1 z=~v+)jnU>YiZ@a4u8abh4W`hMgVQFo85qsTvxeEgPN_W08enNLqEdEgj8!rLTN$&> zwe%pTmQiQH5`SrD*4_gvQAW19$b&)%10=~XG>>|ZoeoMt)xHURm>J_vhoB5cPQ&I2 zstjgL0}1R7hsK}{k3s)6lBTIx4+STg^6E3?5QS%vnbCKZk`pVj@zQS(^W2kx4y_W5mpQnui| zFI`!a=(ut|Zd?SB5U+N<@9`~Gtd-Zbrz$$+;*KRZS6aSQ%oUf#9Bjh%`Nb!*g22DU z1DoGm8I^M2(!>C5jG17SnI+7!0W|m?O`MuG=FG71&KV9nR-QFjXb3h7u8_VmMj}^; zI|W&HN+76WvZ^}6n_$^iZLZ$&2qv2pq%kkepm%tD0yBLwm_Okr>6@rQnxWtV1s4%0 zW-PV9-jFxfMEe!%NC0LBKng6YWPo7i?3^k0s0IBr*R-5MnWAfR=6r?sH&Jnz#0AFQ zZ@Qb3?xwl${MPx7x$`OaX2^R`{__cZSyiIyN`I`Ira5@^*n($0o8|{o6%Wb94?!os z+&9~oD1G0#`qo-+;uvxB7y8+Z_e->Dl1G0T5EIo^=`*7w=hRFEM3@m;HeRHt6jD~2 z3P!))LL@_3mkkC}Gaznl-N!b!sq9u!@sbI5$Q_k6OOygLiQTpAK@OBrEzDSoa`Z8E)ISx0>kZ(hc_=M->iFD1{=ri;)!=I0r+K~&A=waNXegx3W$nci0lt|0V8k4SdxyLIJSOm^ z;CaRVFxf;^v#Br=9Fq>9EySP1Q25L^q%y#IcJ9qsm4vldvBK^N#xp*qIJKBRI6kac zUxDEnvO5;XZ@X?qFmcg^j)g|~L`2=lm{4v-_rnv0j#O9+6&gvxC6mGa)c zzV7{G96xgSaCiSP)kvO;=F&sRoR8$aRGb2+I$U@F5khh-y`^g~N3ZON86n+5qYGbr zX3@QhX2%o%I++C)e0$$Lep@gU+hK0C*^x^{_@WHLmq7=4!3g^)t>Q6kH#Ks<=h!Oz zF~2o`a0yo!wjV`=4K7SoIjj5_s)&wXnvn{A06938LkD;=XR!$Zbr|3-HD}C@jFKsy z%*ukly}t{3z$1OV{oSnlxx=Km0qy>i!QpWU3l&(F$Qv@HI(KOx3^pM8Vblst`p<=> z@1YAG8p-W!B-3_Rx_V8_y{H=J7wYdzxwglIMHQNvO&dfpzUe(jE%a$OLJj>;ivrgTLgDhgmC0{6i-lHkI8+-JMKQ z@nYeB1hyn^)a;F%3k?N(q?4%fv#QMN@u!2*ISCFe-T--VOavAFiD;Y7e43wV_F~xp z^0BrO81P2O%_vhZ^FQ*r7@A2Bpkl?w))q+aWtJ~hv1T$AbxoS2fEbgib~B0VoAh`Q z0hR+J0Vxtb7mA#Q;Xr3r(he-^3t(2wQb@VRgxn;3GKY3yD`RNPO@qt$xZ&q(iR&QLev|X$JQ{NALf4cF98*d0d zIsWq#Z=G1U=V%6X=e}_*d@XqWKDn_Y zG-Rnl)*{Eq1)~p4gCzPO{VoMRKu|yjdMKTOHlhRngveK=1K)3brFFs5tf5+S@4NNy zmdlMtQmzMO>w~vce7|X|Od2Z_!h&&iCgsaefQF>CVQyf->dR7qhB;vYOYs>oxABpb z>rvVI=vSryEj67!?j2uM7cUIyauNnZ7i9kzru=!~dFRVqz6>#?!}JMIifR4@=d@|o zsjha6Z8t?~1$+x4_<$_B&VFzT`2 zg@dnP)S0q>J_pyna|aDEPT9Z9eMK7bCBKQq)6*~@u1sZC>Wej}FJ!GPxbE5))08#8 zFaJ-HidCbC(+;e{ImozBKyP)K0!~)CBr|1-tkxPBS*yjcI8Fovm$d0FJ+D>Y=Z3Sw ztdk(<^ZPGa-qhtHNL8jOw3jS58TF}9F3P8OdLQ!W9poYaT)x4apmi&8#x_KL$Dn&0 zgPl(EvxZqg#22eMYH!BZ*roXzGyQ^@e_$md4j@%hKo*=_L1kt}b^9TH5Uqt!l;gP6 zwuiY(hxfMWPQnL?e62&?PgMuuwSCE*hpx3Jo}L%xJLVsnx4ge@6H-)9;cu3f^Qv*6 zIzz*ypcuqLdM@pjexF)Ir27~X{Cp)!nJ%Ga8gn)fk`$8^7&{e|;*`CM0*QjG;KpRO zCn=2)>wLjYHHtEG;04O^Falpup#aAQrxmXh6B9M1G0Hnm39i7&Fv*PCx@V;n9D!{4 zGAiD?#E!Xv`O?=OiCbq5rps#*XOiVDGyNZ~?fY^0^{@Y= z{>IQdEeksjrPlVz#+qN2ZHQTK!EtNn>`w9~N>p9F_h$Wl$@=>i9NRUIrVZUUPTv@m zeGjHeACjF9L0`5pN7j;ITbZQkF1>ty_WVuv`lNgP{N9v%m#W3X1uSW) z)OifajyJAHP*7kIH z^-Nc+>Owy=<$Zd)B8{qO+G^GuN=v^m zyFkeX-O@RYDko|(4wH@q)wY*sb>kyee2iUMURV z;MSR;b{q#OOEuaUVYE4@YhFe;R^A_N%?d~NLwCx!O9FPuhdV$kN1GV%!v`xQsg_x@ zDigKi!>VdT=2uml$~e2T61nC(iO@)0LnZ5u^ag@LOP%yOy`dmT@c*w6Vc=i9id+VD zMd)sJA5AD3NV$&5)?;^5t4f&D;M_B*lC2jG0-4H5dJ*EsWBX)d^{2PpD;b7JTEAjy z_i%4{9PPEjTV5Vvp6N}85ZJT72tr_t8|L#C{xFw0OGueHC710LVF~^!s>aRCcc3MJ zi%c1CoV(POFFzH)EG!k&Ce_LNi|e}72k0_mOxTqNT?0CF34pFP6<&;rD@(!=i{wbx z1VmVi(p6{GgM?)w{aLjI(&#c;snW^U=miB680;`Hj2UjR3{E5SLaMCw!ePv6Rl2w; z_DrEp4MP{8$5xdl50h8UYc8i-U)T-1RzisHh#diCQQa{!#;}a1>S7hGTXm+YHqRD8 zlzbG~;?~$RNozIP$?|+!E14IkIpd321xJM!x}f*ks#Fv1@0;4UaBppKwC@w%+RGzc z8IImVuL@1LS&W7xR6Rv7lt)#v?=`wGO?F0FqJ~sJHX7Xw?98V%8a%KZs$J5VvyA{S zmCcb)gTx%`7N7#HRxceY$WZ(>9V&?CG)uL}6K&Bvy2))a6d3Vl*9c(JR7npxe$p~P zI|?YSj&^M8BL8aUSIvM(DN!M71QsDFFap;jNvTqk;Ov1lN(3hZ;m{DhVZ;jJj}B}M zx)d8T;;^*?Bfdj`ro!33$CE_C^8{zVjmU~t=S$BfEo;(cl`)$J342qndtyQwD@~mV z+g!a|)+D=|WNTB};!sW0%#}IiUN2kM>uJr9nFdnsEwXjXq8%>LiB7rpP|6P0-S_G3 z^1G3xi>CG}?yV|Edz0{1Bad)paB4y0?{1P64cIJ{AtCT7Fsddw<{~*df&Fnbj6NO) zXWA#09Z%T!^`XpcTvG?`M>KF0yi5aE%?2(@j~#50WPW17aj$H=_f9*qPD>v}>D)%2 zf^Xx>bPRC5qSL6Dv-T#zs+nuA#Ded~>{;2m284Xk z!+h}PYf_$j$$dUHkhT_GcFsEEFj=fxbhW^HaERgIEi4BKsHXkODcQL;#-|<5xbVUb zBKaloD(#N%m7TSjL`@F%?M#*KlAXJBcJN_Ng^(C>?4kMfEUj5_ZG^Zb5R6~`dq`!u zFr9@U5{c-_l??PWV?L~Axvz${3FInRmU8~i~11n5fo^+--o36z)jDZbAw{0@`2gclC zHxSO0YvrBU6~W+=Eo0n_~* zSx&}O6~#f?I(AvnW-8Ubz{F8P$gCMa`XhS$8G^6_0Z9&-i}69FRArcI+x@I_(qAFt zpAh{^AjqMA*l6@(>&&4=XUVtr6Cuo93tE{JI&N0AB&%9vcZ+OoA&OY7ZfB}VRd>(2 zi6X`unWUTVOAXH+G6B#c5;GnklJso3 zw*K9FWzUwB=OI;YE@KY4dfA>E=WmSYWz(zH#*E}(t%*eHhA*-Sd=4o-baQoUa&@ch zX_cL=g%tULRB5~HY+rPg$AhoJ0Wfi5!LgqF!LYR}KJ@Cn-{14fo@?7;y$jAAI@Qkq z`o|lXXzt>Qt7wB2`Cw%Bap@ixB&d_K1zVu1@pM;lKdq|j-YoP;e}Q?^Wh+cwcA1Ju zI7oUv%O@{z%?rvP^}*khe4`GKmo_5@ZCS!kC9`BwLsL@!=nc^ZW=Jq)$cQeIFhZ#t z51F7~$)Gj0k6o{GMZN?ncH~CvdxHUAhvIIJwj!S257}g{j2~rbWveds7t$<>G_7pHl{r zG}jQ4#yVo>Vy-kk)%~7j)uMY%Vh9R2uPHSvCX?yrFpt6uWm~TKl4W~j_a520=hNG( zGTRwhlRDz(zU=}c7Onfu?dpu_?r?T7xjp6Tc-JUf`)D!wFmRRl;Txt7C-*jQ?^wsZ z?JVk8ExcXBQ@F0GWBXlHB3c+IwB_Y)Fk{Zu#~9wj7m-F^dJ93WqN9+0nyV3I=E|>Y zO;Q>~KBieC8xqVEj@r5Ux$re{!LeI5?*1I*=Wmc-qbgI(OACrbuKJ@d7sHVVCdP1i zmWHgjDM-%`myUew;x(E>Gz8yLMFU-!B-*75SjHSWp({dn)TnEdRAY`nsh1$y06jCi zts5w%`g43lVq$btcLry(MuE)H9Rct0u@Ig2;YAL3im0WqpCyiRit9l4qg}oGv3)|_ zdkt^G@Wfdhq7sa#X#6zgs>G(13AGl#T8p}}Ad!HXi?E7?P#wOBYJ{u{ECtSq1@6&O z3PoA)3C;F7Jb}5B3u;10oO-25b~VlHU$od`+rK##Klh$x?bWfHP5Y8f`)*hknhxmJ z?j0%DPT9JXPe%P;2Lv!MulxrnnIBHM9+9n&KplBWi0^;VDLYon z#?>lJ>Be6)gk~Ewl3(saBv<)>38}z^O*CYoh`A1A1Vl0X}~n z$q<7dh}SQ8cfMeY;4LO4$Mt=py!NM+P zto7LDQH$d?a*pa?4B3>m-esqLx*I%(^ zWY^OWGfY-t6JzPw7JhLl*dwr7DbR{xL0OhA+M{T{_SWa<|A=_4dQJn;2Z<*BGoiV; zS)F}m*<&P=ac0=sewT7Fh^W^f;_z`C(nKze{yShpx`FJu_65a~vFs@(F*p($RV>)M zK&Cp{)fI+q>JDRrM{GMCEmo+ak&Y?2-mp-yZ`J`Z z{NW{XGiMfq#yQV|qmj60PwW}lTCKBe&7_c%A#walzwEA)t#!G%;^su-TJ zrVL^7N;eX00D@>=Yi8w{!4Y>xw<2V!#7#tv8oV-}cIKP0LTRd(F`-Kj;ENXa#nn0a z=$*+x`)h$yT8$Z8u_B+9m1ga~6oBUdZJ#X8VO%7HTBj@p7J=+nqYy|*6l7OMAk7z# zb*o68K#Dbc8D*lL<6|&KkK%j}I-MjVZPwxq6FEN<>gwvG59zUva+mgwj08{R8NhuO zrS?vA>ClBu)c{Vig;J^ID}2i&mUjBe0SX8aeYPAmmt;}qqpcLFD5J`mVd=lp3nI*_ zd0c&q^F|m)W?SntEjME)zd?B^AjjYET0k8(f?A3fJ=-mklrF+f zL`KCkYcU6*VCJ3wfyI~)JgZ4Gedx-$IWw$yk6jDPzTHXhZn<)|T)Z3DbNSiXXA?pA zCb@l|ml6CR=NJ+7WRX%B0)05TqoO70Y>D-JP|I}YRPBx=OoN^AHECyQd^G8-kM*Rh zYGS?W2_*3y*m|ldiyQ90E?$3B_VuJn_sh=xI?-72FWEK%?#@?eZWb zR)VG9HFeZ*Z`V|Hz|WkBs&?tv`zBKJR)DatKjXyT`X#L0u6(;zt{>n)&goyd7{pXP z6T`NPS{PLkL+|eYZU0Mr!YSvb!i@ziT ztmJd~Mg|I0PM-B>`oeF4GD|g6md~p*=XfgpxJ(+=?BP^j_!aAvRa!k|{oJn*nPV3$ zvAWuz@&w2lyjVhW0x1YSbz&*#GI0@>26}FovT188IVBhbpaj`nJ(&_Ljg`=kNo9Sh z%zT`gPQ3x%J>hsGXY8ZJH(DDJWgneNE1ORiARMW#z9blk#O)Mk`SdGEbWYORY&8-Ydn7^zU!m<( zWg9N7;eJ+|;?$q9iB;i)id#Q?Q_G>AyqS4&42LAzXnI--1{J&dfPJpgik4Q1tx!>L zfLPEL1Y{w}+aTo1Y!J#9wH7^WVgGvhf@h!X+_&h?S%!s5q3$VKxk%Z92P;Q=7u`9l zxpx$4nyX)MG-+!@U2z;2<;^VlYPB}cZC!9QYgyFgD7~IVoK=M_Wpj_KE5kYI%#bjD zDCOQETX)KcWugD zKX*b_mzyi zWcMc7y6Ho8p?q##%DzQ5Zu#`~B+koXJ2`1%*SFM-UB9{A$7j4TFcx_x-&!0M@f+gG zec;MIfX_u!Pb2qEoug+v_p?Sv&o<#_TX_n%+xB~epL4GLF5%}c6XJP1n`A|%VDCZ% zM@K_?evULlNJ8p`{gYUU1HEGVGc}2o?GDm;0t_Oi=-^RyR)sg*baZT z>CuZLu);XamG=8<2f}%27mA%kv!U^E2?xr7fP~5383xu21>1DvH8qK(4Dcm>`ClVK zI&e-~^}V1^odAlf2c6_fC{!L7o%sNMn|Y&Z0&Jt9k?~MS3Yj!vtOAsO#gl6C>xhE- zOyjUgHd;9J1S^0>jEbc{>IUt}J=QPhq(G80qS&zxFVd*36@4F>7#;J%$iVDDrXg%Y z#gTV7V-Q`CYzX~0Cs2y&1579GWqn|?IpRce0%!&lOPFHn zX;0Rf#QE9+~aAg~-^FkHEXJcW!v@QQ6%lTickf7d3fXu*FH?eHld=N0h<0r5_ED zN+}>^PbvoNfd@4pp4V$(G<-^O;bnf0RULuo{3YrQp~4KeY_*y;-7e#tHHo3b@wvv= z?bo(m7g8;I0 z#m5XoIQRw!*r2hrbGaaok@629l}AXXCbWzT{mV@R+%1azOR>69AFe4jvIw4~O~YYo zNJcUFYeXdqzDJ#EMg&vjEQ+uCg|j{pTyWOE=h#1Ae$Dp_U(fY(Nnej_+^>e8)1}R* z<#}{!Hpkg%0;i;ARqO$vMvNPVz3e$B+0D>+A<&3swbLGxaVZc1TgRbxbi$EvSdEE_K^ONL22pi>yat=^Ntp#UAPi;Zs-;*i`htL5DI z#0Z@X;T@$jBN>TMZPx1P$Lij=uot^SRksgR6*)Z-1{#eGPvD@CQ>+%+PRH6Qwb3~v znMR<#On(rAEf&X5V;c@Tb~)^Q@?m{*_miv+I&=i*P7)TYeL&^jP)74*4Q^xk@=k~$ z(TI_$K}3Fse;GExS)32|Mh4jOkJ-)|HnK*IoTc;J6FKyAamhZ7`7!iI*XK-xdYbWF zhZ_hrgZ8lVRMa(Ol9F&{pp8u1+fEQ5l$w>A=NP9wo>&Du!&JxiRh|gMjUApA-{^9B*)_1 zU@6G-Kvmgu(%T{mnA%4gAI?Tqt6^Ztu$h1nEBQRT1`{z?E{^?z5dQ)NBg9I zqSXIE!GEFP?@UUl(({FUht1s;DA~Kg2LGfAs2Ps$xs3 zXv+_K|7_?+{f|zkw(UicA_GTqSj!&TSsOKs^$Hgw2b z?XA^YWo}ivX}`?X--0g1mH*1_iFc>$)iaiK#hTY_^9?_6CoAy6^Fc{<;=Y?To02t~ zt~Jpv^JLAw8x6^to>a;H8CSZj?zP9}CsK{~Cd=-Xxspuo4au4fsgl+i*RQ;rZ@DYe z1^io0j~C)_@M)vvn@+xha3 zIRw9s@ay=xk2wUlyLba%5*xhD;f7P}c=uANhxepy&Lsi&TezEWhw_PonJg5ubM7@u z4vINBPvue(#ax`(w(Lf1xz)zIm#fTt<#MT;uUc*><*Sy~ujAdULb`h@mIS)5saNkC zagHlJ?}J$v_gg0GvI+O4F20DbVWsF!rRd(ciQR9RRxO+GyzF)Jt;-EX{9%6CYvAu& zwwLpD%bVBmtxFv|*S7Uzp&GAPEi6LSut?K-HFC>Twrrx5cl%qlt~`3 zcQh>e4rU4ik&*%ungUTF7Zs48a3P~`-~d&TAirDm4+R;Gd{qDgZBh6iT{(aHr=4B$ zDBAU7A@0r2%+Aiv%znH2OE4%PXqW%|`owiVLVqU%r@6`mvvG<+=rg1sg-M|_6J;1e zvne*sMY%K^Wz&3=PrIV7v^(lfd!imH=ThFZFY2Q-pAw=1%yFgs=|D69Jh$RW1=DrW zI-tGL5Q|h{QgjyH{3<@+|7dgUP`8C8woFGGo;OzwErH*pMI+DCQT%FX0V#oBb1z+| zQE5TP_#*DRO&%*tFlE2!*|;hFEu?RQi-wsawel0 zvXRs>y5zQbMK)C1OL`-jR&Ad4KGG{{%8+d@A@f>BwcSQOnHkf-hA)M4@r0b1Q2SxT zoz6@>B>Mzfcvr@{+LzK~Bj4LH)X_OS)X{cg*gOQE!^2V+u-cB6c~1^ny1QcSM0#TQ zTIYcuTM{K(rEYlyObZ&J3XbZ%VVMB@96lOkrq$+i*A7?l6Zs!Skv=Fh{B`&@3uy z;((aU80xr+#jK1C*v-4A#z>UN=uNsfOpdkFT|Z%_yT*=|C25mW;uw|_6_T1GIxuTU z?H#5rJ<|-h?aWuNW+9^)qwI_%K;~RyDS2Gaj|i0{9I>RfmJYftvlHwc8r~cabsnnZ z^)Lx8Y!&th6?8yU+sE6*&J)Lvw{^mlW7Vt;T{6UBy3PE6v)h)TXnt5STZqTfOKL@e zFx2=@YEsn3#&i|(&@Ch?r;Hu|z!1bC#B6*F+|Q7SCTpcs1tI6G#6a6(EY{*I-f~%P z%VT*hpCwp+18kI=$t+bY)bQA6@HmHO)mcF+VDg2aQ9&?-%zzm*>y|232T_eJ-kDd! zb3KFSc6e6Us<%R>2k)$z;hFR}9&dgXR^c3+a%N{3g|`|^AFeZej;1M?e$(f8XGJnw zOfL=_6q$+6WWdqf{DKy%Fjm9}IlS^7&5&7dhRp^ua@)1!Ez1Ux~HD5jFf2d!$_uNWl-tNnO>&_vKVh?Zp`M zl4GJVp;pW(8VCXE#Ds>iszbpmWC>ZkBBzoHtygLW<~fVCQ%3(oH#luG9hd;T#9$I7 z$!ojEv6jo~HU}pe^F+m!n#}2j?W0hr#Em>A+qJozk-#MJQlssnd$YY$s*K~hfo)$} z%NP@s^eFNaCALBfde*A)NOZJ$L3&BG9U}utdZ9nVIL&gPq!a55S;Cby{D^KkI5ZXAK1 z{#WP-td|?M2QAUKo6X)^l$q=w(gie{;Bmv;+FJz z=Bvc=zPqWp$n>5<&zdJx^lV)ZMdo_u_bf(MLwkzeJ?q_?*2!J~{l9yW$!mPr=LFX*asKQ?jSa3DKgdAYVL(Q7Ck}B{K$!-2= zAb~^e>bIHwn1I8>|3Z^k+eOMr2VZF+>k>!L1SZ&oBhX1a-bv_JptHTz+T{tQlT$?s z4euu^Tb%BvKTMR_n(X$qsT zPX~-9#AQ@*y2eH|)HS>p-Z7?Yi9`z;q=E0p^+4e;=_qRPxPj0l;+Py^OfXGy@p*9#8AxTQ$;fSA1~nK1#+9(Zmb$PoXLkAq!dkh&q-dIegJv{ z(?f{6VIn3FTBhD46uHMLHt`#TLAkXxM7bx4C|H$~rGNcU?T3-`zeH!P(ZC*2m2aLAKy4?M3xFrtxfkCO>~*HMFk~SgYGM zJvuu%Gg)GJ!Bz4icSE7Sgt!P(@_E2Oy<;FEgxG?AV~5C`XCC!2i1p7MxyNk#H|t^C W8ysS{mnhZ9F@4PA0LSd6`}rSJEt$Rm literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a477300e0dd9cf35fdaa20b1805e46816116bb2b GIT binary patch literal 394 zcmXv}J4gdT5Z%4KoJk~F2!fr0peanyGKe4%5flxm&9M+RxiOyE`>=ZnUYFRIGM$#T zcG@XIda=3d!nIa*fgpC`2I9cHc@O6E<|CKOA{EW|)yrR1KPTcp$drsrirgU!S(qaS zo7mAz%^@bi2sF?e81RL*q<0Uz0_7l8{|DOwwh>IjeCJMl=vyc#m*}|! zAt~c<4fMo?Jz=+jMi0?b^c)T1+vp{FU5>l)O*Dw!=$7)ps=i?Lz-}_?gy6R6kzJ$G z4q(G)^(Je8q`vJJt8H*CPZR^s;dZgAtb#1~>XU89vsxT>#JnB64c#52- dict[str, Any]: + """Parse TOML from a binary file object.""" + b = __fp.read() + try: + s = b.decode() + except AttributeError: + raise TypeError( + "File must be opened in binary mode, e.g. use `open('foo.toml', 'rb')`" + ) from None + return loads(s, parse_float=parse_float) + + +def loads(__s: str, *, parse_float: ParseFloat = float) -> dict[str, Any]: # noqa: C901 + """Parse TOML from a string.""" + + # The spec allows converting "\r\n" to "\n", even in string + # literals. Let's do so to simplify parsing. + src = __s.replace("\r\n", "\n") + pos = 0 + out = Output(NestedDict(), Flags()) + header: Key = () + parse_float = make_safe_parse_float(parse_float) + + # Parse one statement at a time + # (typically means one line in TOML source) + while True: + # 1. Skip line leading whitespace + pos = skip_chars(src, pos, TOML_WS) + + # 2. Parse rules. Expect one of the following: + # - end of file + # - end of line + # - comment + # - key/value pair + # - append dict to list (and move to its namespace) + # - create dict (and move to its namespace) + # Skip trailing whitespace when applicable. + try: + char = src[pos] + except IndexError: + break + if char == "\n": + pos += 1 + continue + if char in KEY_INITIAL_CHARS: + pos = key_value_rule(src, pos, out, header, parse_float) + pos = skip_chars(src, pos, TOML_WS) + elif char == "[": + try: + second_char: str | None = src[pos + 1] + except IndexError: + second_char = None + out.flags.finalize_pending() + if second_char == "[": + pos, header = create_list_rule(src, pos, out) + else: + pos, header = create_dict_rule(src, pos, out) + pos = skip_chars(src, pos, TOML_WS) + elif char != "#": + raise suffixed_err(src, pos, "Invalid statement") + + # 3. Skip comment + pos = skip_comment(src, pos) + + # 4. Expect end of line or end of file + try: + char = src[pos] + except IndexError: + break + if char != "\n": + raise suffixed_err( + src, pos, "Expected newline or end of document after a statement" + ) + pos += 1 + + return out.data.dict + + +class Flags: + """Flags that map to parsed keys/namespaces.""" + + # Marks an immutable namespace (inline array or inline table). + FROZEN = 0 + # Marks a nest that has been explicitly created and can no longer + # be opened using the "[table]" syntax. + EXPLICIT_NEST = 1 + + def __init__(self) -> None: + self._flags: dict[str, dict] = {} + self._pending_flags: set[tuple[Key, int]] = set() + + def add_pending(self, key: Key, flag: int) -> None: + self._pending_flags.add((key, flag)) + + def finalize_pending(self) -> None: + for key, flag in self._pending_flags: + self.set(key, flag, recursive=False) + self._pending_flags.clear() + + def unset_all(self, key: Key) -> None: + cont = self._flags + for k in key[:-1]: + if k not in cont: + return + cont = cont[k]["nested"] + cont.pop(key[-1], None) + + def set(self, key: Key, flag: int, *, recursive: bool) -> None: # noqa: A003 + cont = self._flags + key_parent, key_stem = key[:-1], key[-1] + for k in key_parent: + if k not in cont: + cont[k] = {"flags": set(), "recursive_flags": set(), "nested": {}} + cont = cont[k]["nested"] + if key_stem not in cont: + cont[key_stem] = {"flags": set(), "recursive_flags": set(), "nested": {}} + cont[key_stem]["recursive_flags" if recursive else "flags"].add(flag) + + def is_(self, key: Key, flag: int) -> bool: + if not key: + return False # document root has no flags + cont = self._flags + for k in key[:-1]: + if k not in cont: + return False + inner_cont = cont[k] + if flag in inner_cont["recursive_flags"]: + return True + cont = inner_cont["nested"] + key_stem = key[-1] + if key_stem in cont: + cont = cont[key_stem] + return flag in cont["flags"] or flag in cont["recursive_flags"] + return False + + +class NestedDict: + def __init__(self) -> None: + # The parsed content of the TOML document + self.dict: dict[str, Any] = {} + + def get_or_create_nest( + self, + key: Key, + *, + access_lists: bool = True, + ) -> dict: + cont: Any = self.dict + for k in key: + if k not in cont: + cont[k] = {} + cont = cont[k] + if access_lists and isinstance(cont, list): + cont = cont[-1] + if not isinstance(cont, dict): + raise KeyError("There is no nest behind this key") + return cont + + def append_nest_to_list(self, key: Key) -> None: + cont = self.get_or_create_nest(key[:-1]) + last_key = key[-1] + if last_key in cont: + list_ = cont[last_key] + if not isinstance(list_, list): + raise KeyError("An object other than list found behind this key") + list_.append({}) + else: + cont[last_key] = [{}] + + +class Output(NamedTuple): + data: NestedDict + flags: Flags + + +def skip_chars(src: str, pos: Pos, chars: Iterable[str]) -> Pos: + try: + while src[pos] in chars: + pos += 1 + except IndexError: + pass + return pos + + +def skip_until( + src: str, + pos: Pos, + expect: str, + *, + error_on: frozenset[str], + error_on_eof: bool, +) -> Pos: + try: + new_pos = src.index(expect, pos) + except ValueError: + new_pos = len(src) + if error_on_eof: + raise suffixed_err(src, new_pos, f"Expected {expect!r}") from None + + if not error_on.isdisjoint(src[pos:new_pos]): + while src[pos] not in error_on: + pos += 1 + raise suffixed_err(src, pos, f"Found invalid character {src[pos]!r}") + return new_pos + + +def skip_comment(src: str, pos: Pos) -> Pos: + try: + char: str | None = src[pos] + except IndexError: + char = None + if char == "#": + return skip_until( + src, pos + 1, "\n", error_on=ILLEGAL_COMMENT_CHARS, error_on_eof=False + ) + return pos + + +def skip_comments_and_array_ws(src: str, pos: Pos) -> Pos: + while True: + pos_before_skip = pos + pos = skip_chars(src, pos, TOML_WS_AND_NEWLINE) + pos = skip_comment(src, pos) + if pos == pos_before_skip: + return pos + + +def create_dict_rule(src: str, pos: Pos, out: Output) -> tuple[Pos, Key]: + pos += 1 # Skip "[" + pos = skip_chars(src, pos, TOML_WS) + pos, key = parse_key(src, pos) + + if out.flags.is_(key, Flags.EXPLICIT_NEST) or out.flags.is_(key, Flags.FROZEN): + raise suffixed_err(src, pos, f"Cannot declare {key} twice") + out.flags.set(key, Flags.EXPLICIT_NEST, recursive=False) + try: + out.data.get_or_create_nest(key) + except KeyError: + raise suffixed_err(src, pos, "Cannot overwrite a value") from None + + if not src.startswith("]", pos): + raise suffixed_err(src, pos, "Expected ']' at the end of a table declaration") + return pos + 1, key + + +def create_list_rule(src: str, pos: Pos, out: Output) -> tuple[Pos, Key]: + pos += 2 # Skip "[[" + pos = skip_chars(src, pos, TOML_WS) + pos, key = parse_key(src, pos) + + if out.flags.is_(key, Flags.FROZEN): + raise suffixed_err(src, pos, f"Cannot mutate immutable namespace {key}") + # Free the namespace now that it points to another empty list item... + out.flags.unset_all(key) + # ...but this key precisely is still prohibited from table declaration + out.flags.set(key, Flags.EXPLICIT_NEST, recursive=False) + try: + out.data.append_nest_to_list(key) + except KeyError: + raise suffixed_err(src, pos, "Cannot overwrite a value") from None + + if not src.startswith("]]", pos): + raise suffixed_err(src, pos, "Expected ']]' at the end of an array declaration") + return pos + 2, key + + +def key_value_rule( + src: str, pos: Pos, out: Output, header: Key, parse_float: ParseFloat +) -> Pos: + pos, key, value = parse_key_value_pair(src, pos, parse_float) + key_parent, key_stem = key[:-1], key[-1] + abs_key_parent = header + key_parent + + relative_path_cont_keys = (header + key[:i] for i in range(1, len(key))) + for cont_key in relative_path_cont_keys: + # Check that dotted key syntax does not redefine an existing table + if out.flags.is_(cont_key, Flags.EXPLICIT_NEST): + raise suffixed_err(src, pos, f"Cannot redefine namespace {cont_key}") + # Containers in the relative path can't be opened with the table syntax or + # dotted key/value syntax in following table sections. + out.flags.add_pending(cont_key, Flags.EXPLICIT_NEST) + + if out.flags.is_(abs_key_parent, Flags.FROZEN): + raise suffixed_err( + src, pos, f"Cannot mutate immutable namespace {abs_key_parent}" + ) + + try: + nest = out.data.get_or_create_nest(abs_key_parent) + except KeyError: + raise suffixed_err(src, pos, "Cannot overwrite a value") from None + if key_stem in nest: + raise suffixed_err(src, pos, "Cannot overwrite a value") + # Mark inline table and array namespaces recursively immutable + if isinstance(value, (dict, list)): + out.flags.set(header + key, Flags.FROZEN, recursive=True) + nest[key_stem] = value + return pos + + +def parse_key_value_pair( + src: str, pos: Pos, parse_float: ParseFloat +) -> tuple[Pos, Key, Any]: + pos, key = parse_key(src, pos) + try: + char: str | None = src[pos] + except IndexError: + char = None + if char != "=": + raise suffixed_err(src, pos, "Expected '=' after a key in a key/value pair") + pos += 1 + pos = skip_chars(src, pos, TOML_WS) + pos, value = parse_value(src, pos, parse_float) + return pos, key, value + + +def parse_key(src: str, pos: Pos) -> tuple[Pos, Key]: + pos, key_part = parse_key_part(src, pos) + key: Key = (key_part,) + pos = skip_chars(src, pos, TOML_WS) + while True: + try: + char: str | None = src[pos] + except IndexError: + char = None + if char != ".": + return pos, key + pos += 1 + pos = skip_chars(src, pos, TOML_WS) + pos, key_part = parse_key_part(src, pos) + key += (key_part,) + pos = skip_chars(src, pos, TOML_WS) + + +def parse_key_part(src: str, pos: Pos) -> tuple[Pos, str]: + try: + char: str | None = src[pos] + except IndexError: + char = None + if char in BARE_KEY_CHARS: + start_pos = pos + pos = skip_chars(src, pos, BARE_KEY_CHARS) + return pos, src[start_pos:pos] + if char == "'": + return parse_literal_str(src, pos) + if char == '"': + return parse_one_line_basic_str(src, pos) + raise suffixed_err(src, pos, "Invalid initial character for a key part") + + +def parse_one_line_basic_str(src: str, pos: Pos) -> tuple[Pos, str]: + pos += 1 + return parse_basic_str(src, pos, multiline=False) + + +def parse_array(src: str, pos: Pos, parse_float: ParseFloat) -> tuple[Pos, list]: + pos += 1 + array: list = [] + + pos = skip_comments_and_array_ws(src, pos) + if src.startswith("]", pos): + return pos + 1, array + while True: + pos, val = parse_value(src, pos, parse_float) + array.append(val) + pos = skip_comments_and_array_ws(src, pos) + + c = src[pos : pos + 1] + if c == "]": + return pos + 1, array + if c != ",": + raise suffixed_err(src, pos, "Unclosed array") + pos += 1 + + pos = skip_comments_and_array_ws(src, pos) + if src.startswith("]", pos): + return pos + 1, array + + +def parse_inline_table(src: str, pos: Pos, parse_float: ParseFloat) -> tuple[Pos, dict]: + pos += 1 + nested_dict = NestedDict() + flags = Flags() + + pos = skip_chars(src, pos, TOML_WS) + if src.startswith("}", pos): + return pos + 1, nested_dict.dict + while True: + pos, key, value = parse_key_value_pair(src, pos, parse_float) + key_parent, key_stem = key[:-1], key[-1] + if flags.is_(key, Flags.FROZEN): + raise suffixed_err(src, pos, f"Cannot mutate immutable namespace {key}") + try: + nest = nested_dict.get_or_create_nest(key_parent, access_lists=False) + except KeyError: + raise suffixed_err(src, pos, "Cannot overwrite a value") from None + if key_stem in nest: + raise suffixed_err(src, pos, f"Duplicate inline table key {key_stem!r}") + nest[key_stem] = value + pos = skip_chars(src, pos, TOML_WS) + c = src[pos : pos + 1] + if c == "}": + return pos + 1, nested_dict.dict + if c != ",": + raise suffixed_err(src, pos, "Unclosed inline table") + if isinstance(value, (dict, list)): + flags.set(key, Flags.FROZEN, recursive=True) + pos += 1 + pos = skip_chars(src, pos, TOML_WS) + + +def parse_basic_str_escape( + src: str, pos: Pos, *, multiline: bool = False +) -> tuple[Pos, str]: + escape_id = src[pos : pos + 2] + pos += 2 + if multiline and escape_id in {"\\ ", "\\\t", "\\\n"}: + # Skip whitespace until next non-whitespace character or end of + # the doc. Error if non-whitespace is found before newline. + if escape_id != "\\\n": + pos = skip_chars(src, pos, TOML_WS) + try: + char = src[pos] + except IndexError: + return pos, "" + if char != "\n": + raise suffixed_err(src, pos, "Unescaped '\\' in a string") + pos += 1 + pos = skip_chars(src, pos, TOML_WS_AND_NEWLINE) + return pos, "" + if escape_id == "\\u": + return parse_hex_char(src, pos, 4) + if escape_id == "\\U": + return parse_hex_char(src, pos, 8) + try: + return pos, BASIC_STR_ESCAPE_REPLACEMENTS[escape_id] + except KeyError: + raise suffixed_err(src, pos, "Unescaped '\\' in a string") from None + + +def parse_basic_str_escape_multiline(src: str, pos: Pos) -> tuple[Pos, str]: + return parse_basic_str_escape(src, pos, multiline=True) + + +def parse_hex_char(src: str, pos: Pos, hex_len: int) -> tuple[Pos, str]: + hex_str = src[pos : pos + hex_len] + if len(hex_str) != hex_len or not HEXDIGIT_CHARS.issuperset(hex_str): + raise suffixed_err(src, pos, "Invalid hex value") + pos += hex_len + hex_int = int(hex_str, 16) + if not is_unicode_scalar_value(hex_int): + raise suffixed_err(src, pos, "Escaped character is not a Unicode scalar value") + return pos, chr(hex_int) + + +def parse_literal_str(src: str, pos: Pos) -> tuple[Pos, str]: + pos += 1 # Skip starting apostrophe + start_pos = pos + pos = skip_until( + src, pos, "'", error_on=ILLEGAL_LITERAL_STR_CHARS, error_on_eof=True + ) + return pos + 1, src[start_pos:pos] # Skip ending apostrophe + + +def parse_multiline_str(src: str, pos: Pos, *, literal: bool) -> tuple[Pos, str]: + pos += 3 + if src.startswith("\n", pos): + pos += 1 + + if literal: + delim = "'" + end_pos = skip_until( + src, + pos, + "'''", + error_on=ILLEGAL_MULTILINE_LITERAL_STR_CHARS, + error_on_eof=True, + ) + result = src[pos:end_pos] + pos = end_pos + 3 + else: + delim = '"' + pos, result = parse_basic_str(src, pos, multiline=True) + + # Add at maximum two extra apostrophes/quotes if the end sequence + # is 4 or 5 chars long instead of just 3. + if not src.startswith(delim, pos): + return pos, result + pos += 1 + if not src.startswith(delim, pos): + return pos, result + delim + pos += 1 + return pos, result + (delim * 2) + + +def parse_basic_str(src: str, pos: Pos, *, multiline: bool) -> tuple[Pos, str]: + if multiline: + error_on = ILLEGAL_MULTILINE_BASIC_STR_CHARS + parse_escapes = parse_basic_str_escape_multiline + else: + error_on = ILLEGAL_BASIC_STR_CHARS + parse_escapes = parse_basic_str_escape + result = "" + start_pos = pos + while True: + try: + char = src[pos] + except IndexError: + raise suffixed_err(src, pos, "Unterminated string") from None + if char == '"': + if not multiline: + return pos + 1, result + src[start_pos:pos] + if src.startswith('"""', pos): + return pos + 3, result + src[start_pos:pos] + pos += 1 + continue + if char == "\\": + result += src[start_pos:pos] + pos, parsed_escape = parse_escapes(src, pos) + result += parsed_escape + start_pos = pos + continue + if char in error_on: + raise suffixed_err(src, pos, f"Illegal character {char!r}") + pos += 1 + + +def parse_value( # noqa: C901 + src: str, pos: Pos, parse_float: ParseFloat +) -> tuple[Pos, Any]: + try: + char: str | None = src[pos] + except IndexError: + char = None + + # IMPORTANT: order conditions based on speed of checking and likelihood + + # Basic strings + if char == '"': + if src.startswith('"""', pos): + return parse_multiline_str(src, pos, literal=False) + return parse_one_line_basic_str(src, pos) + + # Literal strings + if char == "'": + if src.startswith("'''", pos): + return parse_multiline_str(src, pos, literal=True) + return parse_literal_str(src, pos) + + # Booleans + if char == "t": + if src.startswith("true", pos): + return pos + 4, True + if char == "f": + if src.startswith("false", pos): + return pos + 5, False + + # Arrays + if char == "[": + return parse_array(src, pos, parse_float) + + # Inline tables + if char == "{": + return parse_inline_table(src, pos, parse_float) + + # Dates and times + datetime_match = RE_DATETIME.match(src, pos) + if datetime_match: + try: + datetime_obj = match_to_datetime(datetime_match) + except ValueError as e: + raise suffixed_err(src, pos, "Invalid date or datetime") from e + return datetime_match.end(), datetime_obj + localtime_match = RE_LOCALTIME.match(src, pos) + if localtime_match: + return localtime_match.end(), match_to_localtime(localtime_match) + + # Integers and "normal" floats. + # The regex will greedily match any type starting with a decimal + # char, so needs to be located after handling of dates and times. + number_match = RE_NUMBER.match(src, pos) + if number_match: + return number_match.end(), match_to_number(number_match, parse_float) + + # Special floats + first_three = src[pos : pos + 3] + if first_three in {"inf", "nan"}: + return pos + 3, parse_float(first_three) + first_four = src[pos : pos + 4] + if first_four in {"-inf", "+inf", "-nan", "+nan"}: + return pos + 4, parse_float(first_four) + + raise suffixed_err(src, pos, "Invalid value") + + +def suffixed_err(src: str, pos: Pos, msg: str) -> TOMLDecodeError: + """Return a `TOMLDecodeError` where error message is suffixed with + coordinates in source.""" + + def coord_repr(src: str, pos: Pos) -> str: + if pos >= len(src): + return "end of document" + line = src.count("\n", 0, pos) + 1 + if line == 1: + column = pos + 1 + else: + column = pos - src.rindex("\n", 0, pos) + return f"line {line}, column {column}" + + return TOMLDecodeError(f"{msg} (at {coord_repr(src, pos)})") + + +def is_unicode_scalar_value(codepoint: int) -> bool: + return (0 <= codepoint <= 55295) or (57344 <= codepoint <= 1114111) + + +def make_safe_parse_float(parse_float: ParseFloat) -> ParseFloat: + """A decorator to make `parse_float` safe. + + `parse_float` must not return dicts or lists, because these types + would be mixed with parsed TOML tables and arrays, thus confusing + the parser. The returned decorated callable raises `ValueError` + instead of returning illegal types. + """ + # The default `float` callable never returns illegal types. Optimize it. + if parse_float is float: # type: ignore[comparison-overlap] + return float + + def safe_parse_float(float_str: str) -> Any: + float_value = parse_float(float_str) + if isinstance(float_value, (dict, list)): + raise ValueError("parse_float must not return dicts or lists") + return float_value + + return safe_parse_float diff --git a/myenv/Lib/site-packages/pip/_vendor/tomli/_re.py b/myenv/Lib/site-packages/pip/_vendor/tomli/_re.py new file mode 100644 index 0000000..994bb74 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/tomli/_re.py @@ -0,0 +1,107 @@ +# SPDX-License-Identifier: MIT +# SPDX-FileCopyrightText: 2021 Taneli Hukkinen +# Licensed to PSF under a Contributor Agreement. + +from __future__ import annotations + +from datetime import date, datetime, time, timedelta, timezone, tzinfo +from functools import lru_cache +import re +from typing import Any + +from ._types import ParseFloat + +# E.g. +# - 00:32:00.999999 +# - 00:32:00 +_TIME_RE_STR = r"([01][0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9])(?:\.([0-9]{1,6})[0-9]*)?" + +RE_NUMBER = re.compile( + r""" +0 +(?: + x[0-9A-Fa-f](?:_?[0-9A-Fa-f])* # hex + | + b[01](?:_?[01])* # bin + | + o[0-7](?:_?[0-7])* # oct +) +| +[+-]?(?:0|[1-9](?:_?[0-9])*) # dec, integer part +(?P + (?:\.[0-9](?:_?[0-9])*)? # optional fractional part + (?:[eE][+-]?[0-9](?:_?[0-9])*)? # optional exponent part +) +""", + flags=re.VERBOSE, +) +RE_LOCALTIME = re.compile(_TIME_RE_STR) +RE_DATETIME = re.compile( + rf""" +([0-9]{{4}})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]) # date, e.g. 1988-10-27 +(?: + [Tt ] + {_TIME_RE_STR} + (?:([Zz])|([+-])([01][0-9]|2[0-3]):([0-5][0-9]))? # optional time offset +)? +""", + flags=re.VERBOSE, +) + + +def match_to_datetime(match: re.Match) -> datetime | date: + """Convert a `RE_DATETIME` match to `datetime.datetime` or `datetime.date`. + + Raises ValueError if the match does not correspond to a valid date + or datetime. + """ + ( + year_str, + month_str, + day_str, + hour_str, + minute_str, + sec_str, + micros_str, + zulu_time, + offset_sign_str, + offset_hour_str, + offset_minute_str, + ) = match.groups() + year, month, day = int(year_str), int(month_str), int(day_str) + if hour_str is None: + return date(year, month, day) + hour, minute, sec = int(hour_str), int(minute_str), int(sec_str) + micros = int(micros_str.ljust(6, "0")) if micros_str else 0 + if offset_sign_str: + tz: tzinfo | None = cached_tz( + offset_hour_str, offset_minute_str, offset_sign_str + ) + elif zulu_time: + tz = timezone.utc + else: # local date-time + tz = None + return datetime(year, month, day, hour, minute, sec, micros, tzinfo=tz) + + +@lru_cache(maxsize=None) +def cached_tz(hour_str: str, minute_str: str, sign_str: str) -> timezone: + sign = 1 if sign_str == "+" else -1 + return timezone( + timedelta( + hours=sign * int(hour_str), + minutes=sign * int(minute_str), + ) + ) + + +def match_to_localtime(match: re.Match) -> time: + hour_str, minute_str, sec_str, micros_str = match.groups() + micros = int(micros_str.ljust(6, "0")) if micros_str else 0 + return time(int(hour_str), int(minute_str), int(sec_str), micros) + + +def match_to_number(match: re.Match, parse_float: ParseFloat) -> Any: + if match.group("floatpart"): + return parse_float(match.group()) + return int(match.group(), 0) diff --git a/myenv/Lib/site-packages/pip/_vendor/tomli/_types.py b/myenv/Lib/site-packages/pip/_vendor/tomli/_types.py new file mode 100644 index 0000000..d949412 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/tomli/_types.py @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: MIT +# SPDX-FileCopyrightText: 2021 Taneli Hukkinen +# Licensed to PSF under a Contributor Agreement. + +from typing import Any, Callable, Tuple + +# Type annotations +ParseFloat = Callable[[str], Any] +Key = Tuple[str, ...] +Pos = int diff --git a/myenv/Lib/site-packages/pip/_vendor/tomli/py.typed b/myenv/Lib/site-packages/pip/_vendor/tomli/py.typed new file mode 100644 index 0000000..7632ecf --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/tomli/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561 diff --git a/myenv/Lib/site-packages/pip/_vendor/truststore/__init__.py b/myenv/Lib/site-packages/pip/_vendor/truststore/__init__.py new file mode 100644 index 0000000..e468bf8 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/truststore/__init__.py @@ -0,0 +1,36 @@ +"""Verify certificates using native system trust stores""" + +import sys as _sys + +if _sys.version_info < (3, 10): + raise ImportError("truststore requires Python 3.10 or later") + +# Detect Python runtimes which don't implement SSLObject.get_unverified_chain() API +# This API only became public in Python 3.13 but was available in CPython and PyPy since 3.10. +if _sys.version_info < (3, 13): + try: + import ssl as _ssl + except ImportError: + raise ImportError("truststore requires the 'ssl' module") + else: + _sslmem = _ssl.MemoryBIO() + _sslobj = _ssl.create_default_context().wrap_bio( + _sslmem, + _sslmem, + ) + try: + while not hasattr(_sslobj, "get_unverified_chain"): + _sslobj = _sslobj._sslobj # type: ignore[attr-defined] + except AttributeError: + raise ImportError( + "truststore requires peer certificate chain APIs to be available" + ) from None + + del _ssl, _sslobj, _sslmem # noqa: F821 + +from ._api import SSLContext, extract_from_ssl, inject_into_ssl # noqa: E402 + +del _api, _sys # type: ignore[name-defined] # noqa: F821 + +__all__ = ["SSLContext", "inject_into_ssl", "extract_from_ssl"] +__version__ = "0.10.0" diff --git a/myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ff62a396f73fcb654a9587827a63423352afa5b GIT binary patch literal 1372 zcmZ`%O>7%Q6rTODz5d%I>(pr@HEgL-u++riN1}=#sa-fkDzvBqiH)Vv+B=Td*&j1I zPGX;EF66)=oLWvGZYUCh8wjZqy&*1Z0*bR-B6>i%nFb^T7v9>j8mZ-J^=9Y2?|t*V zH}hjUoj_pgKji9t5uu0SW@NA**hz;&=q@slh78W&El%SJ--wQ2k5@xj=Mkb3kBDf9 zdr%eHHupd1$N;UyhpZ7T3U$$jJghqF_f9uj$Q*4bXLG~<5u$PK$sCc0vp6vq7fTS#NfC2O|&Jvhc-FDh=7ToVx$pfn;RkW>CVgV5^C1k zYL!rC*37ETh^MwZ(^*p;otYa%_1YdIw#sPBW2(noO1$H+nYZ%%u>k9Fc+H*X2l+u- zrR4pV2{83mo7G)MeQExM1=Xdh1>`i((?L}ls)ETi!f?yk2sN0*z}32LI-TXGaWx5{ zXH}{LtXjOa;;GD4D@4^dbkou+7U|@kM!@Pso%K9xR<&KDWs&3X5#@y-ar^d->#oDd z77NC~QN7A=jk-1la4=>%4FUnvVQv`63sizS8a7Si;5yL-Xm5TYKN-X@Hry)4fdDfL zL>&4Q^yZna0|YfUNUqpTm$Ek~bt#~LA5h@qZxY+3?b6CkAc25Q>>yjE1O|o;Qqx-& z!_`xb(k9iLxMI3Ps9R|SvAXW*jL|?Yf;THIMuta-SZ|s`!J*cH>QJU`Ss*is@kky1 z0-XQ={nZ9{eX;zG2eQk$MYc%!rbAw*@Dj@YXZ~0I*Z%$PhyFMIw`%uJciX@3e^-7H zrmo{=I5=}%FWYV6Y?N=9m9l3tGS}3r>-rk;%1yIbfCC-FrG>{ARKPGAlVLpHYzNY- z!@F6c&w!5bg1kS$^#zXO4$-#NfjEf(N(SaC+62Wzj>8*md8{X9xY6m5F&QU^v=z7bl;qF}` zG6UN(bc~$fJ#iSMUn2NK>p;6vnt2OOu~sB~>t}>Qz+M+y^o3xH5LPG#tj}h!8M*wl zP`ZL&TqMvW=M?CEo3IG*G>p)}(vPum_s2A(K}PlSaVc^v5(`E7o}OJD@mNAUolq+> zrSkBQD4FZ(_=GepC*(w25>4g2FdP#AG8_%bvReBPAPt)aV?P*)3Gq{M(4rRc;drb+ za%>n-LXPlI!k-kSNdE{wB#Kg4loB!@861kLw$6}rDiRCQs;zyvzh9J8FW-}p_DJm` z2~pk~N*q@`{9a(bO%fBsQY>sp4c{#Mp-Sh!3&}W@Kyi>K0mD~&1UkVO zc|-j)<)Fv_wGJ|23r!8OB(;&$eukn=n8siN$cJIXT1O>(2IhK7veMK`)QI&Ib=vw8 zb&3u$qu<&Y8xX?@IgmIm1~w6KZ919}drL-DM+1>qB2M6r9+l*f3{D9}&>eKBc3Dh>5(!DQLK~?NO4X{N$WRMt1~ezN z3`@~yq;E~ja3T_I0T5ob>s6{f;! z(vD4s56Ge<9}Y#u)8gShF|kvMoD>fyCzCgl? zIgjE*hNLQF2>#@akesC+a1`r)z2nm2AC7*&EKAu~*7Fg!`Cqxszu~->ToZ@i-gJjs z|Jhwv$tM)edOqabDJ#4`m%Y$>Jg|Y9cC<0pTUHv<{D$}{0-DU{|7?h9;~k@T4v>?F z7+;a`E3ffw+b5F2oo#&}60_9=h*1W>^dexU#vBrm!CpjSDY_9kB_t*lV}cAxeoPi& zQi4e-Cb+6;jc}@#Dj?D9L0Sx1)dy1&YM1Yq;)6stOQ5(Fq1Hljmii6jLd|@zWX%W6 z+LR@unwoXzU3a+ZJZf=6!|{sM)Q=rotv{!?X6poXhR^(6m`TTBCBxMlR&Ki2Dl&pa zWcy)_KF1g+CQN~aEOk9w9GZsn8KRi6kPD(yy?!rI~<2;>04PoeN3<;csI;h}aR?tZsW z1UwY!JZy(m%Ow_*wcbClY$3epGFE0We|@o0ulL>mHRA(MC9jX-0uO-cw<2|-Q%)#_ zewAUrgf5{>EEme*Pt#Tf_#;{lwa*Ea09gq#-mtL01Dh6>_0z)Q{Ls2JRRO+gp&B^d zy0En-K^<}ltndLL@C6`i0J27?1&h-xwhn&Rf?bykbS>=2g1y9qGvTZj>)_^g0+`xn*;c1`Ny^8DOjEsU|?IW|4|R^+Gh2pU|P z2C*=}x9khzb3Rl`jIi8{L)ZyDMCeEK1M1Qi4m_*?O|KyHixZ^VY?@!1#pVI_lZ)?5J>#{IBiq?7)o*u&;5XpP@kUVgWjAU6=}gApz~Z7SVJO5FpAyzRG|AUBJfAHrAO z)_Q-R$-iT=1WC`;%sgws0+_<;^I*j4Vd`&Hj&r*LGDrKkCmg+LA7P8X6Nn6TDO>RWn|@30E=`Tmz@McXwCRPd3~Xfi<8e6=3k`~}=Vr++Sal0= z{&*-R$j3t`M740ic2{Z!azU$94=>dUdswLfax%&&5I9R*V+oyLv-N^ed;ux6m?`f< zq=@;mv((*^%FD-;l4Ua`D=t~@`f4WYrGuN2r3#j(iWo=HU3b;Q@oDcJ_p>RE@|B(Uep&@pNzbz1KPaJm z<)2U%N70Q_XqC9bMC?v3nib+xc&ZqZJW<}i}tiFrf&JzwsQNe#g%POSye6) z3&#f`a-?$c;l!~xzz=LHD?$& z<4_^L00}7Cm!;^Eit)(h$ZScIQqnZ%E5rYwXizt3*+rEG=P6rh!TBAUmVK13^nAgm zg{W~Y|GA7~-^M&jXxM=;TH93P8zAAvsH>+?3CMapc0tthYt+w#*fmPd45tNm(gh>pW%g zIa4qMwAD-H(3>NIvY!w~NQN8I1IABQOnZS<32i|_m%|W~m-G#p;={*75ZcxSlntFD zAly5TR^$pOgXGVlexYcZ6mQeqqN>SL(`6_cFtKdW*oTItA(;EJTt(D1u@+S7m$MdQ zq3NNdT4-$axQO&v5c@;JQRp-V_o1pDAfyA3$mmBImT(aAqgA;b&1(BSY=e7xFaulK z43;b2$B9Hw^*}u(#7r>@8%@8S?i)F_W#(!LgX@wpwYoYxgGo_c5tytiwm0mMV|gGQ@qQj zo}Te;OmZ8w{*{`KocM5L=(s3FBXZ&i>k_;+uv0=UZK+3c`*;-lXkPA3jV2K|M|<^( zw|?^QjCXaCTTObGwL3xcAfpaXH^0oNdkf(4$r*F5W0@{Ubx?2GVoH7RJBxJ_@LwS; zM(j<7hpf+d8L0yuodjyYPc0M-xKvN^x^KltksxhS+$FAT(ER^;MU~aU|)P;w&d>a7eBGQ#P z&W&54S#FuaExW_5AU#rDeQ@e5jqn&k$r`=TMl*Z{GUEoT*KyZb4<%9*67%G#x{0xd zv~^^()Wn>*;vH;;ZW~!77BA7{ilfZ@kP(+fSi-oOM7%ijj6DRU52f`JsFcykf+4g2 z;FF~Eo{3UN*Fs9^S>!SHEcFATFWJk##wHO=8X?J=yl`JnM2S~G9y)pD3LjwgNegsM zJjjCZaWQ-%9X!b$UeZZuGFooZcsBgcp?Y33!h6P=xm58kO>#>K&nkN|6dlg?cG42V zP66w5e(yLF8q>#;Gz{>Djh=?Q*+w77=q-dVfaEN7udc}m9R!}7U@MJy6u6uqVHqM1 zgM$!&z>v)XDW3txMjK61enjJcz@FrYe65mk!m@_?SC%zyoTX7Dg(wVH@yqb}OKhx5 zeC0Yr;>}M^;$GNmMB~SJ+;8NSGHzzFJo=ml{{r>7#*F@adL1(lr>`v8vp{8`WFNb)&~t~YN4;Mbz%SqlS~ZW!O-c*;P4>sE-@Omz-IpxILeY{PJ=tx&sQ-alb2a` zIQ^5!>l=_UM}_l+v-1YZ^2UcDu&z_dtiOzetAvEi!rd7j7gL^eaG?qw*P#yq$2?w) zfcp?!?JT!i;a1Obn-p%-oZEMC=Y^e@hJR}{_P|d_ClES)lurH(xXac_c7uxrjLH6HUOTq=^K7ZF$7H#nbRCTG@LlTU`o1-TB$Z^B~K$f zv&+@c3dOr3sk_Zz&+>T*1-)ST{385)iu~!zW>d2<(KkFX8`sWh>X0h>lzMa!Lw;Go zRwJhKdj!n!K57(iO;SIGc_Q;(0mRFOrAT6gkBTS7=mNcCcq+?D&4&LUsFqG)^28921P*z-b=X5eDE@`!2X4ErsBEHil3o3~7*!Ds)>+K#hbOD(Mw$R8cq$~{EMo+B$gu?f{m9iCRMfcqvcEeORkUcl`f~MTy;9hiLR4@T=k#2xx==M=h`+YcNKd2W@v)`% z0KWNhbBcvLP%17VzwG#nL%I&kISm>v{N>J~fk=R?PQ#18ny7AiA3eAGg}JpG?mIZv zdCymTNxbZu=zHVDl@n8SN_C6kYq?SMUgf)$(+8AQ9g45xrl9zqOR)e9Ton4h7`Pq5 zIjXR9+n~5sN^1w!ZF(Op0A5(PX3C01YtSg*g+)sz zUVNkXN-zFiiob&siOG(s;>l;P{0Wu?v8;Zweo~(5m^^*81J zv;Mx-!Y-Msta)SWm90|^O6AHF768ZR`!5b$7*HJLpRiDXCb}qPfgDIvYy2T|aLV>h z!S#Y038iUEk~w%Y@&5K(-@eTpB*1gb!F#L=seH(EO)*KP>&D6VM&BL1&2;JYUH2K_ zXo|sp)ld7U`~PO(rvu8yo$q%hUwHAC&np`b5|)u$7#%d*G|AwH2~GNNfgD!(XW0sc ztw4a_WGCVZPVGmyAi`CW@-&KdTGhHVigj33Gs`YjK!$)~{S7~&SU+8lDAprf6Dd!l z2u>EKu@kmH&LEpvwo+jUwPlk%h+>&WY8j$fj40rP3%w(N;#&39>PMlmvd+n#Ye%jg zNl}oUhK|EaM+G@BTumllBdVH-;x{U_)x#)(G5^V+-BKI*4Ki~=`+&mKKGxQkUNnNyrEyt*^<(uFjoUtSj3wg#&_Z*F| zjRbcZW7T7p0i>7nWNt1EICHAtr*RB^+4A~22B@8}^gv3J+$jhecauYgpiTATiN$aX z7HGI_3fI2KeE`)Nks~oUJ&M73(T@O~>K+>Ii$=n{=2S5FO^oW^-rcdMb7%JszH|G& z>sIM!23|VtU{0MFl693qq1hUa=lWyex`E6?aHmw z?MbfezKtpm!X)i;{(D)|CFX&ZTC`*$@#cXK{L3$N-tf<^YFAdZ|NYw8j{Qo<{+U$= z6!(F-vZnjk095aA{th(nbCUCtD;wJUOqOnKK$htCyO8;cx~)Oog5J{F1yuU;nA@zn z9f98J7V1sr2qtvds<6E0-dqMH;OLF^uciX#96Io-Mg;5L8QH8HI(G=i*61nY^ z6)OM-N|WO>WKfQ0EO1Xx?;k~t!PiZOoy+AQEAzGvTHpiYBR@R-dU@u?- zX?g|l*9~LUemo?TuOscc(A9!A_*gR1H=Gc)!(bdc5>5xIUH_^TtmSDEHqI@o96xgT$oVc9d&L!` z^iI)6xC~y@JoVyC;o7s$-DN7~xRP0}TH&fEozr{%8$1=;XAc~dy8`EE(+7(<bW{S%Jc)|!u) z&Lq=0$NJBH1D(Sewq&B|He34<)1GA7|AXngXLZb4OK)3C{|&x_v{4OBQw>+2zft?% z@^_a{hn3asN`3pyegAam)*)~bmF)+W`h#b^mr7;}Ym~y88S3C%ZNn6Mb@>h3d){}w zH!U|i-fy_|{7tX2a<5Xm_pImq$yx6b#k*vN+BxDSFP0Nx~c69n&5qGU-FNQ%0sv5q-ltzih=lt6(1-2f$#25nlI zN;s9NShMA}2GMD=SxOcgOK=?W~;xEl>rh&DwBkCzYsDm4a5|cxs%i z^WJZCH^_lT_Ezn$LjUXi_wRT8ho9SQW(va9zizuy^#VoxEoS6kDkPpx*(mBZ#ZoLC zr2{h}dYSTqKVi>82S(Ht-@S^}0uYrwi_ z3)pDHrH$Gb%K~MPW>{U+u~;4`rzs7^X%^b#fvEBK3rUu$fmEOp;GFPtac-`1p^~`w3Pn7rVtnMfoiUrHC%;K9x>FgM#vMa-=bJOq#5ktThzB18N*E)N=;WULcg`F znX6+h@UwEdc|B`;l?l`XmU`CCmdQN@8c2zQEmuk!IYXd{GY34JCD6>-0xj@sg1zr@7&0Kuo9*muY~xCg;_- z2utrXAXF?q&PGOaLv1goitzLSo>CAho>8u!;8~Sht8oz?AK)nkQH-aF;7O_N<Krt5Ogu)=`3UOu>n#>Qxn&oZ5r46vU_F{HHP|HQs}>6hskDt|2%ox8=qlH>TuZ zmO-DKV=DqvY-M1Y^TO^mF1#+6tFhWI`z#2xUkS^6${q|{gi@Gv2=4rt{L{L zap9KSUX6<|^*sYZ#ncCQGywJcYI`|Vgva;{h+;fO&I7m@fc(0QL5+)W8J+>5;=Yh<0Wbip+SUzDrhyx120wVYF9fOi$aza-aiUTE!A za&U5jiZsQ+*n)jZT@U1Xlw2+E0~tV~+&%L7Bs}IvGK?A*&DQ|5y%dBpU$%<#vDF;2 z@bA_3a*C~aM!B_g`Mi;>1qtmUckvlK==WsI1Y%Xrsc~>OL@8dq8=@3f+6_^P$0!gQ z>KMh=y-Kn5@@@q_&o*#DkT-kh8MYB-^Myjb74l7x53wGu59;e!deuNtP}&Tom)I6A z%mq=Fg}MPKZG}>nqZWRq&Q4CTZJc)DKgl^YhL+62e^K*tilq@R;B0@Dkq>9!iiu)- z*^Xym>QqM4C6AP~vNY_F_f=gW^2~PKrFWLJ)w4dB)51TnZ4b1)x7+{A)+Wd*wQPow}iYg}VL^XyNU9j7vA?HHnOW>eMOG@WPqn zbLXeeiu!QyQam0Njp1PUN{A0GiH2}65=#ybVO2C9yNp%KQVCQo%SG4X5jMEwrA6y} zB*q4#kxP7tUwMp54iwf06I?QwNJN9-cr3}?NCvNQd}MwlxENl7&xa%D63GtjKvAnbt=aU@Uk}B3u~H`CZSI%Ly*X@q8@4YCV62^AvW-vswn|B2kV-L{aE&&Z`s4gRq9U zM~O&02KzrB=dFN8G@Lm%>`d$3+n>#}{!cNQqa=S3()@#0mz7l0X=b$MehU5c?-C zUPu7Ci=ilYgS&Vp#!c~&Yuv^3-SoZm57U1p{Im4^^p8ElSB0DDKTH3Ii$l@SrBHB* z4~3JFtD%dFD_rc_#Z!?>7ZZ^r*SiGs4qfIF7ndSS{V>cJ8|V9z{Bk0hNXB`tA4eZg z^ewH3W;nAUHW+53QN9tz(FDH)Qnz&~&scRQ=nsvQwc)Pufu$=~+49=d2bE2CnM`H- z#?+&-%I%7pjnms@mA9tuPHmNW(?;({+m?#IqiATiZLhg=YSX!?-;Aeg4`u9!-#wo; z9?xsB?&AdR@J(MI^>1q@jat!ojtejIk>twiSpT_|M3P(VhpFKG=%3+XL$AmAtBHOY zsBc~_Q;I~pAEq@EUyiY%B<#rQ(NDp%8?*@9?uy5_J$yNQ#LBDwnaOB09uC3kO>y&~ z^EzYE3B2uh>+?EQ zL_H6hf&6&Rh9U_LXlTp>)Gy9^BJ-Xk(7!Y1&Lu<1<%H*2D7wsfA_-t8vEEgVkN1&g zJf6I{#}q8r$DPul5672Q@Vxsyi6oDSc|N}A@z0zixwG87NUiQ8*O)uchhhmNj-L1u z$CFFzk+={L+K|$fGKvY0w?fncTjg<4#Tvlkhu%oPr@2G|sGZacuwioBL?#@9QQ&6s z7W{ayol73fF)rzs8oZF?MT39FACD!ZODz>o$HH+I=5XQs%s$Z>=DARk3j#tY3SL^C zpXYe7;*-euTI@wfmP|DHXU=j_E|lOzEwFYVbLUQx0ecO68xE-*KONY@O_n~mD9t1o zo|k$On@X1lf%g!3LNpYbh=bX*--u<6#qB)CE9_+ ztW!YYjh2nEfAXbUp$CSlTv_FYC2yn}ThdHzUem1m%yzRk+w2#b{qN4aH@PDjJYYzG<}pWFWp{C zS^GXtAjSK--!SE*{=!*1)u#wm~w<(T7lRKE(>3|kQR0c?Jfs_YytTv!$ znSg=S1&pjdU|KPFjXXA6t=`RjJRk?ccEys32t`xI$bbIT-~T4^zwzV7&;R>BfB%~~ zuURw(gDCL?gTTm9R$PXC4vN-b@Qcf#Xraas46^Ys6g%YeDxYnB5PB9{;f%p`It~YZ zaVg3rIX}lI&vMt0-2pH4U*W=6$pHnR*?1y32OXY{Bo;%-@D;IIYK%=H^ATvlP2X6G z@Ej{Tq?);S@;nM29Q!u)6qk&gN-}5ise`pi08^u0r5-UY@7MQi1~T>g(oD@x_duHI z%r&&aIm|V+rc`GXQo2Qke|>99tpOnjdC$BO$M020T%9}D|l%o z$t8lxI9%}{$SR>A&&~6v0ipxf0cpWHwQZ@%S~>(v$F|X(HFgWe?#<~R4c}Y-cN1`Z ztol5q(do%5?3z2We=>JTU{}S51w}*vh(b_jv_`Aq_ktp%%W$wt%G#6^8t9}VDwGrp z3hRXm!8uTLRwIOW90Sod<_URTSV>+1f&5Y=2C|+9*Q3WHky@yfPpiakP$ZX#qGu6~ zljjl#00r{OqU4V}D-2>7$4d=>$o9fCcobWteX5Z$N;~yZBzdL41IVUHX9}+b$m)2s zL|qsuK5&$IjAeOUBCD0Vwo)1ye->Kx;6@&T1W;BpWvl$!nb*$Tna)^S)~B~^by?e} zU>j97HfOYL8_TlBcEQ;G)WF#F>oa*XWvy60O*UAxNnIn;frGMZzj0nj_JWQ#;XfP$09tbUK2JZbAuW4sWH0Ebr&6%kd` zL+6QKTHwOTJ`ZSRV6TZKfu@1d4SJp=B@tvihY}2Ij&$N);SxQbND?HeSbQbnS>!xl zTn23n`ig=gp1cym56DsT%Q4W};M_x+6i9^kMnSGZV#s^pv#MK8&iC%~n#u9y(axuy zQR#3GVc9T#Q1FmWt)As@VnChFL7Av8oXrCW&<39buDB{6xR4Y{FnGq0HbIU@i{k_y zqNf~gP$AQ`{!GPG+B%ghuex3TM*W69 zXRxIWHJEL9qv6i=OnE1iS<2;0p$h}IN$k1|3gL$*;^$t5qC;Cad@w~Nz=2iBU@4MU z)VjpwkgtZ!DDaTNu~sg}u47G2QNQ;kidxgK+BGfw7|`dG3y@O82GHD;<6r8q7mcXI zd_dzUFn~3t2-2lYSV^Sl6eGjZpjYs&BKRr=Oi2{$GASlOzkc~S@QMaSQ?IWv6kbf! zUw*fKc=vDLOOdw2tp4%QE$H0kXRXVK2djR1*MBtOj}Nq z#?!<&bs9<}J*s~9{8h$?0u3rSWMGp^OJG8J5%oYG-&4Ih{$)gJ1j-S@k&7l=86wbt zJyeoxL~DWrBPo`{C=w{1AkisELUlow<4LV74G~C!jSmCtXOZ^&4@eLN#nG588xqQf ziWsM9+i3rq^)>6)Kc98&7hL-@#tGn{4*mM<6X2juus@}1$1?Wuv~m1zU9}sgT!nkX zkgKZOu;w*p)A+XAw|P9{9@{v!UDukeJ0jE_*@j*mLxN-I-Z3Ci_4bWZpu_;nw)P6v z-pwobty|XV_siS_tV?ioZB}hL2F0>EwV?i?V=P}sx$E+cFog9pA3d>9jw-bt8$9|% z11;sK|2Tmp;wO!hI=@@e^H`?p8 zS2H&Qc2;{BwU6KxP&-hY5iLb#aUKm!{1|*d)1E$iJ~($~ZW=^47K`Wca~VFnrM3#R zug^y=FY}yiY3CyV701(t>+(OTkJhOjS9R9aDY!b<=W-RU+x>6!ub<4-G_L!%822{g zxm)>G_<} zq6Zl86KV}Syw-GJWzu~0rPAkwKM4?e;5u3u76~9~DQ7}1193_b`DFeEmNxagDB@yK z3r$KdpMf<)O3(KcDGCZVRN(;{wg3Z7#oW)s%~D0U4Qud9u%K8QB`o+Y;+l%BQLSBt z{`fyF8dV97SX5im?wC|;j0-4#?FmJ#OIQo#`6`kEQv{Djt~~*4mj-#(@J6D@9t)*b z(;#C9NOhl@_n?GqvPCXSw#g}cm6Y4B8H;)`J8 z9FtINlf^R+Ct307NhxO*x@RdfNK~JG zn#?k0v{@J7R(z|}4#1kN+AU z(mi(`$_gS^B78~z+%`pYNtGsv)cU+tE85jvEq|x=-qrFSaXr+2yoNbZ7fOU9k@LjF zzuN!e^x5MxuLS*PPX+z6)BcmeQ`3_(C)JlX-tV?l8@s%=wjy$VB6^Pucc##Sb;!Fw;t(x*8vPqAYAZlJRq zsP#PeLL8o2!H!kX065Y0iNWDIiIrdhg?C_iog@hyC0x-0eG}U#s2yUXoKa0W<8i@F=44SMd|YkEA;+;l@X}gs3AA(_)!qhEU`i(TtK1 zfm#vEdBq+r7db#WRu%-c3DH_ylE6nF)He!2vf8;z&xuDPM+#-Y`yjW%(>ECI%Gami zEo6N*XLYPk=QVS*t_R;3>e7~u%>!BA^aI~?uCZm~OkSh29olXgy%*1pof5`Qz4uaP z>_VpH#am_D4ei;6eL};&`_B7c$uyj~Wq!Z1W!u@3b@m9(p3UGx=Vv~sY0lP+2sI=3 z&fg!&)EwD3u~XTwVa!?FSxc*6X?-i4?KmQI9C=_l@TiK-Kn**$-g`s^((evig;Wk-LE{>%g|BE9*Hbc#dv6hPNxm zpJ?gweNVO8W_#M&0Ixf0+w{KUTh&rV1=Y}q?v6}|Ao&ERB8RvnGX~61g$U3_OXIIAAy)nIQb!M%@f^|6O zaNWA`miv44->Ki^GR-3&YBe_d6FcQ_sfv^9p`#z3at01$`;Q6z$8y#6AYKp5(oZSP z0K7I;gDuHgpQ~%yIECABV7qA|ec)uK>C`Rjwxc@h7!w?0_m=NRw;U(muWVAc;NnB) z#D{vyRGu{s3C5v&qxajlj7NS6`eVTh(rGr=iB#`s*jB=ugfI^gq|HpVU)MkJ~VMb#*!HmE}6njSrr^BQob(!rl~=rwSHdwoS#uD#aP^%se6nP)ix zrfW~9%qynx)fy;&r)Tno<0?BR?oz{G)CMznh>u3(_Z7nHN#%$q#G-W!OK2n!h;=*8+BO?GCJF=>Rkxuej07TLYZosDM4jG zjmN09uevY9B=@x9sZV(3ybe`JI*&sIK?4>AU5-S@-aV6E1Bl$?1EkVJfSFkA$l{A8 zY$wScXcdvfDH}1HoSpvch2v+Zr$jA?7-BUDVJJ(GGlCDgu;3C3dqEzPJq~1B40&uY zNKF1Uz%9Cpi3N^1h#M)^mn;s3K&*%*MNjEkc#V+zvvFv=RI*yge!|;3v~~`D~ui>bkc( zyVJfSS>KG{o5^$@OB>trcFN?;8k+=T(_6#Y))Ap~E9LO*l=*UH zhj+?`b7j4`vdJgqrXFBSU3n)}vp-vXP^dl#;5j?EB}}HtEY2fQxeKaHigR>R}XzU zm)p&k_OQDVUmsykk_J4px=*Ij1;#|4h=2wYr`0}45CSbTPz5zm@zo|IrZPJs6tqB8 z3tq)uxAd4}_RkP93%a1{;#L}M5wRbG)!^YwQs4nAwMWM`c&j3|Z~k9mHF1@h!PGPY zx(k5lJ~zcB!hB>2X*_xG<=-F>@`M0a5$EA=BM$r*75@$Vp!EmdripS#=srFN5gJ|0 z0XX36ATtuTS2L)bNr@E`&jyL0BmWR9<+epn(V{~sEbsvSo7nLm!Y6@tAz8O8JSy>D z!CL&#K->}$IBCk`QI}BGl_~39pWUu+%hn$f>JQ;F_O;uoH&Scbm0bm*wcT3Q543#xPDLdW<6%Q(D=zxh(OVN_@s zePA8UmDRsx$a;}ila!hDB_MS1*^4YYt z2^6aGj&#TVjAH^gLHTH|awM;#Yz^>K-`<;TJ1n$;Ki*{8+DtSppJ4Un91U+?`=iu1 zQt6(_Ow&=KXaSZ=cebKWsOU@gAI?-9+3@F@2RHm%*2Y|;Z^Qrk8F&KOIG*>xXg+$< zM>$#*tt{<5_|SohjiXh1zWS-@sD9c({iUOJx?9VifQ|4*;SEFjM+5rPqw!TVE`fak zEklwJq6gssmFIkW?$~>Y~j*bB5gi z8MLyA<#6?j2o|=nLXl)WgB-ttD?zA4rA#G?+Vl9&0nrGq?Xam}+A+Yz$CT*ajhE0K z7(d^G=u-Gu!w-^r{)_lo#m`&#`F;E>( z&p_e|NZiN>Jr)`CLLl$q@DwWDqs34RoSk{mjDosUBpQ!{!4ChNKpr!RHH!$r5=A_Q zqngDJaR@dZlpIA5@qYtl$c_{5z(oTQlBRz_mH&dW{emj{1!acBuQX;_^D7EIza$?w zMYsQVYTr&-)5eW#S(8xKlqqYz+boo|ty>>CYrfHXCw%u{wsll!9laOMv`%Dd4`iGN z(^Pp*>%4XSfwu9H*_AVorN?LAD;LI3romb^nVt)#zYr4UE~QV0(?%93szq{f1d7@= zdfzCt9!XQ4yxvZqpl_YaQy6a!OYyytrzHQR1!*N?2Zvy2Z`G_D!5~yopJSXkW)=kP z3eCD5$S}AN8FFR^d@AeGlp|*t?0$k==FcO2*!_Zh53uI_vJtWt={oywsbcdfoOul+I?H?NIut z%zf)drpyB?r!>#G8q!on&fS=%D)UT=ru}qoZ0g-edh~_$*(~D~81EJ{lpC2=bAvkr zlj;7WSkNjkty@e_u5Vn;`F4g6+Vk} z+Jmucr`w0l$UVJj#=GMk+O(|CWtn<`so!GSbDcgl*S6yu*(CW!foa@=Hh>>srCbM& zrYdK2JgZpEoKy^xzA6l1tUA7N76^nrbo_US(m_cZ83wn;R9-JfXt0x zD?@}P-4H?8E->v|OdqJFgX0J-<$HH}ChpI^dpYf!!$M^%hSgl>PXE5mtC(*Qn3gTZ zm+Ku-bKN@w`!~OYdF7yusW~5+8t$PfW30^?3nS_!Bk~B0XN&Q|h6-@h4EN4t0IV@KZYOpl&G z0OcATRC9wnefu^qV!l~mnzxwlTn||oDd*i8J93ZIDs2xJxAl%^y@v!Z$dvAMHOi83 z$mZ~P>8YLroBQ55{Ptl|)eluYq^b)}p2v$o^*K*B#tpgV9*i61Jp9*zY0GO2x?}W? zwF-&NiHx-g&ilA|!zlTMZyARH&)7jVKa@8Q(Vjam=P8IbJKpJjyPG8M&;0p`ADuHN&_DHen18CJG$1iU3Y@T7JD(U{r0Jeqx$}188;yA_X5e+= z)`d4Lc^zh8i`+GLM&1bI2_P(|-u%==YIu#8u25QHdSL8N%s({ewUFM?nV#w(&c94g z(1#Q#Ov_M^2B;5p5Py^pn<%3j#9HSqB3tRp8efnM^4Sdvo@ZGkwaR%X_?&HKDFz&ywo;m!=0JUZB4w$G%1G<1- c`)Je}ptT~6Y0;z$G-*YV1sBfM-+o1)@&F=ZT=bn4- zIp4YSb8T$^!5ICiBh%QjmgkC|Tt=iEW)rayEA*T{h>F{0LIG z&vDYtA;M*AoM0PVab1OYY$Uw|Wy4i@GgWxv%GPhTRAt3Y_-x}AcDxOYX|rX7ncb&y9y*f)nuCrqiWpD85`zZk9fj_6k|)&v?@y`F}h@GPBm}%NU`BD zP00~EWXlKdzZ832iluvF11CS+Hx*z zM*7joR}q@w%sOYqR_Mq!II|mknsatE@W<`2XVb=V!e4k&<#`lBC|%NIzA_Nvd?IbglGF=|=fn z>3Zoqq5M(#OzB4H`_!JCG%Se)D#@lgDy8y8qK&7Hs>3NmHA$=>$)nN;F;WG!5QpPv zicaGu9WzYB)G3LJdVy$=udYJTs%J?^t0QBS*y$jXCS^ryhQCn&@(23&GiuVx!E(bOZzS!`s~nhJn=*3NByS09Di@s7hLgmlzknyeVzXVP|J(w z2kwO;^AmFu^QY!cEv0XVo?nGX;b=J=z1Ca`N0-CbQ27}m{-UDy7 z;+s8fKqcocO`j8K zt9F@w2wZ^oHh?R~BY2WrQv-b&B996a8DeG#6{-*v$fOEo5hP6!95f0x8Ucq;;B?%&vjsQ4g(!6HwN9mRmIxm0I2$gkeIfc(`}yaH3!AOB_3HLw2zDorHKS zVYy+ooQZOFJ}q98^2A^djUZ6=epB{wvB}FI7(GBvqu+zI^Lyv^&L5mRxYWEH6jnox z_rmpyfrY@*Yrlkdo#*cb+gF0oaxi+i<90B9r=g|dMv?Z42h~K@AOf<2fHMbJR)F11 zlrzwCRtWG8Eh=Vo!(?ZXSw%MwyTa_HTZERsf(Nf4Xr%3+(;bXF1H|be`vTC`PRkQQ z?Hr0~zL29k!Sev~h7SeYsZxjBe%b~yeGW*p9*za?002Ly4%?ZvI7%pUwmfFBplTzO zVbb!-dcFW{PFt8(x4tMZY0zub3JeV$?W@MId`C<|CFnJ~mEdhMsl^ZLdd|+T#j|2r z?%^VQSM1YK0U}n9#7bfL-pK39SdR427^v*KV0;Ut;=&l;MUlJ6Z~p>!QSE(?zlAHI zhDtNq(Ydte;{FT!OPz1t+TL42txyK8W(BvEaa)CJ!GWc|i-Q*iD+t8P<6qBSnZ0h7 za@#L)u=-JtAc_iRw=YM?j|1=Q7L_rv9GX2LK8u>1F>VshM%;?%3d=i1 zrOY~Jk|tz@U2?Fr6pz872BOz$aM*{#H8|?S(d~Pm+P=Z*133#a9YU4sNKs)z;}zE? z%OZZlhe(}pbqbA!ywTtliP)UWZAX$Rpv=eO0zxJs4mSgoAtaJ^(JkO2CJjhHViqwC zdP{@m3e8!};~W?9hv6Y+qEzB}ICncePL52Wi!FmUrVdWE(h`2AzMV63iz{>&~I+E=xj z+UcvEH8t(4=@<4_b#O0p--82t!y`T%+|Oh~d%}Z*bxl=fl)a8rwP&-Zu7=LY?YCr$ PG@Sit>tQrN!@~ao#)2-Y literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5448bdf4cff2bf8b90b908cd51a1b97617ab2388 GIT binary patch literal 15793 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 None: + """Injects the :class:`truststore.SSLContext` into the ``ssl`` + module by replacing :class:`ssl.SSLContext`. + """ + setattr(ssl, "SSLContext", SSLContext) + # urllib3 holds on to its own reference of ssl.SSLContext + # so we need to replace that reference too. + try: + import pip._vendor.urllib3.util.ssl_ as urllib3_ssl + + setattr(urllib3_ssl, "SSLContext", SSLContext) + except ImportError: + pass + + +def extract_from_ssl() -> None: + """Restores the :class:`ssl.SSLContext` class to its original state""" + setattr(ssl, "SSLContext", _original_SSLContext) + try: + import pip._vendor.urllib3.util.ssl_ as urllib3_ssl + + urllib3_ssl.SSLContext = _original_SSLContext # type: ignore[assignment] + except ImportError: + pass + + +class SSLContext(_truststore_SSLContext_super_class): # type: ignore[misc] + """SSLContext API that uses system certificates on all platforms""" + + @property # type: ignore[misc] + def __class__(self) -> type: + # Dirty hack to get around isinstance() checks + # for ssl.SSLContext instances in aiohttp/trustme + # when using non-CPython implementations. + return _truststore_SSLContext_dunder_class or SSLContext + + def __init__(self, protocol: int = None) -> None: # type: ignore[assignment] + self._ctx = _original_SSLContext(protocol) + + class TruststoreSSLObject(ssl.SSLObject): + # This object exists because wrap_bio() doesn't + # immediately do the handshake so we need to do + # certificate verifications after SSLObject.do_handshake() + + def do_handshake(self) -> None: + ret = super().do_handshake() + _verify_peercerts(self, server_hostname=self.server_hostname) + return ret + + self._ctx.sslobject_class = TruststoreSSLObject + + def wrap_socket( + self, + sock: socket.socket, + server_side: bool = False, + do_handshake_on_connect: bool = True, + suppress_ragged_eofs: bool = True, + server_hostname: str | None = None, + session: ssl.SSLSession | None = None, + ) -> ssl.SSLSocket: + # Use a context manager here because the + # inner SSLContext holds on to our state + # but also does the actual handshake. + with _configure_context(self._ctx): + ssl_sock = self._ctx.wrap_socket( + sock, + server_side=server_side, + server_hostname=server_hostname, + do_handshake_on_connect=do_handshake_on_connect, + suppress_ragged_eofs=suppress_ragged_eofs, + session=session, + ) + try: + _verify_peercerts(ssl_sock, server_hostname=server_hostname) + except Exception: + ssl_sock.close() + raise + return ssl_sock + + def wrap_bio( + self, + incoming: ssl.MemoryBIO, + outgoing: ssl.MemoryBIO, + server_side: bool = False, + server_hostname: str | None = None, + session: ssl.SSLSession | None = None, + ) -> ssl.SSLObject: + with _configure_context(self._ctx): + ssl_obj = self._ctx.wrap_bio( + incoming, + outgoing, + server_hostname=server_hostname, + server_side=server_side, + session=session, + ) + return ssl_obj + + def load_verify_locations( + self, + cafile: str | bytes | os.PathLike[str] | os.PathLike[bytes] | None = None, + capath: str | bytes | os.PathLike[str] | os.PathLike[bytes] | None = None, + cadata: typing.Union[str, "Buffer", None] = None, + ) -> None: + return self._ctx.load_verify_locations( + cafile=cafile, capath=capath, cadata=cadata + ) + + def load_cert_chain( + self, + certfile: _StrOrBytesPath, + keyfile: _StrOrBytesPath | None = None, + password: _PasswordType | None = None, + ) -> None: + return self._ctx.load_cert_chain( + certfile=certfile, keyfile=keyfile, password=password + ) + + def load_default_certs( + self, purpose: ssl.Purpose = ssl.Purpose.SERVER_AUTH + ) -> None: + return self._ctx.load_default_certs(purpose) + + def set_alpn_protocols(self, alpn_protocols: typing.Iterable[str]) -> None: + return self._ctx.set_alpn_protocols(alpn_protocols) + + def set_npn_protocols(self, npn_protocols: typing.Iterable[str]) -> None: + return self._ctx.set_npn_protocols(npn_protocols) + + def set_ciphers(self, __cipherlist: str) -> None: + return self._ctx.set_ciphers(__cipherlist) + + def get_ciphers(self) -> typing.Any: + return self._ctx.get_ciphers() + + def session_stats(self) -> dict[str, int]: + return self._ctx.session_stats() + + def cert_store_stats(self) -> dict[str, int]: + raise NotImplementedError() + + def set_default_verify_paths(self) -> None: + self._ctx.set_default_verify_paths() + + @typing.overload + def get_ca_certs( + self, binary_form: typing.Literal[False] = ... + ) -> list[typing.Any]: ... + + @typing.overload + def get_ca_certs(self, binary_form: typing.Literal[True] = ...) -> list[bytes]: ... + + @typing.overload + def get_ca_certs(self, binary_form: bool = ...) -> typing.Any: ... + + def get_ca_certs(self, binary_form: bool = False) -> list[typing.Any] | list[bytes]: + raise NotImplementedError() + + @property + def check_hostname(self) -> bool: + return self._ctx.check_hostname + + @check_hostname.setter + def check_hostname(self, value: bool) -> None: + self._ctx.check_hostname = value + + @property + def hostname_checks_common_name(self) -> bool: + return self._ctx.hostname_checks_common_name + + @hostname_checks_common_name.setter + def hostname_checks_common_name(self, value: bool) -> None: + self._ctx.hostname_checks_common_name = value + + @property + def keylog_filename(self) -> str: + return self._ctx.keylog_filename + + @keylog_filename.setter + def keylog_filename(self, value: str) -> None: + self._ctx.keylog_filename = value + + @property + def maximum_version(self) -> ssl.TLSVersion: + return self._ctx.maximum_version + + @maximum_version.setter + def maximum_version(self, value: ssl.TLSVersion) -> None: + _original_super_SSLContext.maximum_version.__set__( # type: ignore[attr-defined] + self._ctx, value + ) + + @property + def minimum_version(self) -> ssl.TLSVersion: + return self._ctx.minimum_version + + @minimum_version.setter + def minimum_version(self, value: ssl.TLSVersion) -> None: + _original_super_SSLContext.minimum_version.__set__( # type: ignore[attr-defined] + self._ctx, value + ) + + @property + def options(self) -> ssl.Options: + return self._ctx.options + + @options.setter + def options(self, value: ssl.Options) -> None: + _original_super_SSLContext.options.__set__( # type: ignore[attr-defined] + self._ctx, value + ) + + @property + def post_handshake_auth(self) -> bool: + return self._ctx.post_handshake_auth + + @post_handshake_auth.setter + def post_handshake_auth(self, value: bool) -> None: + self._ctx.post_handshake_auth = value + + @property + def protocol(self) -> ssl._SSLMethod: + return self._ctx.protocol + + @property + def security_level(self) -> int: + return self._ctx.security_level + + @property + def verify_flags(self) -> ssl.VerifyFlags: + return self._ctx.verify_flags + + @verify_flags.setter + def verify_flags(self, value: ssl.VerifyFlags) -> None: + _original_super_SSLContext.verify_flags.__set__( # type: ignore[attr-defined] + self._ctx, value + ) + + @property + def verify_mode(self) -> ssl.VerifyMode: + return self._ctx.verify_mode + + @verify_mode.setter + def verify_mode(self, value: ssl.VerifyMode) -> None: + _original_super_SSLContext.verify_mode.__set__( # type: ignore[attr-defined] + self._ctx, value + ) + + +# Python 3.13+ makes get_unverified_chain() a public API that only returns DER +# encoded certificates. We detect whether we need to call public_bytes() for 3.10->3.12 +# Pre-3.13 returned None instead of an empty list from get_unverified_chain() +if sys.version_info >= (3, 13): + + def _get_unverified_chain_bytes(sslobj: ssl.SSLObject) -> list[bytes]: + unverified_chain = sslobj.get_unverified_chain() or () # type: ignore[attr-defined] + return [ + cert if isinstance(cert, bytes) else cert.public_bytes(_ssl.ENCODING_DER) + for cert in unverified_chain + ] + +else: + + def _get_unverified_chain_bytes(sslobj: ssl.SSLObject) -> list[bytes]: + unverified_chain = sslobj.get_unverified_chain() or () # type: ignore[attr-defined] + return [cert.public_bytes(_ssl.ENCODING_DER) for cert in unverified_chain] + + +def _verify_peercerts( + sock_or_sslobj: ssl.SSLSocket | ssl.SSLObject, server_hostname: str | None +) -> None: + """ + Verifies the peer certificates from an SSLSocket or SSLObject + against the certificates in the OS trust store. + """ + sslobj: ssl.SSLObject = sock_or_sslobj # type: ignore[assignment] + try: + while not hasattr(sslobj, "get_unverified_chain"): + sslobj = sslobj._sslobj # type: ignore[attr-defined] + except AttributeError: + pass + + cert_bytes = _get_unverified_chain_bytes(sslobj) + _verify_peercerts_impl( + sock_or_sslobj.context, cert_bytes, server_hostname=server_hostname + ) diff --git a/myenv/Lib/site-packages/pip/_vendor/truststore/_macos.py b/myenv/Lib/site-packages/pip/_vendor/truststore/_macos.py new file mode 100644 index 0000000..3450307 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/truststore/_macos.py @@ -0,0 +1,571 @@ +import contextlib +import ctypes +import platform +import ssl +import typing +from ctypes import ( + CDLL, + POINTER, + c_bool, + c_char_p, + c_int32, + c_long, + c_uint32, + c_ulong, + c_void_p, +) +from ctypes.util import find_library + +from ._ssl_constants import _set_ssl_context_verify_mode + +_mac_version = platform.mac_ver()[0] +_mac_version_info = tuple(map(int, _mac_version.split("."))) +if _mac_version_info < (10, 8): + raise ImportError( + f"Only OS X 10.8 and newer are supported, not {_mac_version_info[0]}.{_mac_version_info[1]}" + ) + +_is_macos_version_10_14_or_later = _mac_version_info >= (10, 14) + + +def _load_cdll(name: str, macos10_16_path: str) -> CDLL: + """Loads a CDLL by name, falling back to known path on 10.16+""" + try: + # Big Sur is technically 11 but we use 10.16 due to the Big Sur + # beta being labeled as 10.16. + path: str | None + if _mac_version_info >= (10, 16): + path = macos10_16_path + else: + path = find_library(name) + if not path: + raise OSError # Caught and reraised as 'ImportError' + return CDLL(path, use_errno=True) + except OSError: + raise ImportError(f"The library {name} failed to load") from None + + +Security = _load_cdll( + "Security", "/System/Library/Frameworks/Security.framework/Security" +) +CoreFoundation = _load_cdll( + "CoreFoundation", + "/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation", +) + +Boolean = c_bool +CFIndex = c_long +CFStringEncoding = c_uint32 +CFData = c_void_p +CFString = c_void_p +CFArray = c_void_p +CFMutableArray = c_void_p +CFError = c_void_p +CFType = c_void_p +CFTypeID = c_ulong +CFTypeRef = POINTER(CFType) +CFAllocatorRef = c_void_p + +OSStatus = c_int32 + +CFErrorRef = POINTER(CFError) +CFDataRef = POINTER(CFData) +CFStringRef = POINTER(CFString) +CFArrayRef = POINTER(CFArray) +CFMutableArrayRef = POINTER(CFMutableArray) +CFArrayCallBacks = c_void_p +CFOptionFlags = c_uint32 + +SecCertificateRef = POINTER(c_void_p) +SecPolicyRef = POINTER(c_void_p) +SecTrustRef = POINTER(c_void_p) +SecTrustResultType = c_uint32 +SecTrustOptionFlags = c_uint32 + +try: + Security.SecCertificateCreateWithData.argtypes = [CFAllocatorRef, CFDataRef] + Security.SecCertificateCreateWithData.restype = SecCertificateRef + + Security.SecCertificateCopyData.argtypes = [SecCertificateRef] + Security.SecCertificateCopyData.restype = CFDataRef + + Security.SecCopyErrorMessageString.argtypes = [OSStatus, c_void_p] + Security.SecCopyErrorMessageString.restype = CFStringRef + + Security.SecTrustSetAnchorCertificates.argtypes = [SecTrustRef, CFArrayRef] + Security.SecTrustSetAnchorCertificates.restype = OSStatus + + Security.SecTrustSetAnchorCertificatesOnly.argtypes = [SecTrustRef, Boolean] + Security.SecTrustSetAnchorCertificatesOnly.restype = OSStatus + + Security.SecPolicyCreateRevocation.argtypes = [CFOptionFlags] + Security.SecPolicyCreateRevocation.restype = SecPolicyRef + + Security.SecPolicyCreateSSL.argtypes = [Boolean, CFStringRef] + Security.SecPolicyCreateSSL.restype = SecPolicyRef + + Security.SecTrustCreateWithCertificates.argtypes = [ + CFTypeRef, + CFTypeRef, + POINTER(SecTrustRef), + ] + Security.SecTrustCreateWithCertificates.restype = OSStatus + + Security.SecTrustGetTrustResult.argtypes = [ + SecTrustRef, + POINTER(SecTrustResultType), + ] + Security.SecTrustGetTrustResult.restype = OSStatus + + Security.SecTrustEvaluate.argtypes = [ + SecTrustRef, + POINTER(SecTrustResultType), + ] + Security.SecTrustEvaluate.restype = OSStatus + + Security.SecTrustRef = SecTrustRef # type: ignore[attr-defined] + Security.SecTrustResultType = SecTrustResultType # type: ignore[attr-defined] + Security.OSStatus = OSStatus # type: ignore[attr-defined] + + kSecRevocationUseAnyAvailableMethod = 3 + kSecRevocationRequirePositiveResponse = 8 + + CoreFoundation.CFRelease.argtypes = [CFTypeRef] + CoreFoundation.CFRelease.restype = None + + CoreFoundation.CFGetTypeID.argtypes = [CFTypeRef] + CoreFoundation.CFGetTypeID.restype = CFTypeID + + CoreFoundation.CFStringCreateWithCString.argtypes = [ + CFAllocatorRef, + c_char_p, + CFStringEncoding, + ] + CoreFoundation.CFStringCreateWithCString.restype = CFStringRef + + CoreFoundation.CFStringGetCStringPtr.argtypes = [CFStringRef, CFStringEncoding] + CoreFoundation.CFStringGetCStringPtr.restype = c_char_p + + CoreFoundation.CFStringGetCString.argtypes = [ + CFStringRef, + c_char_p, + CFIndex, + CFStringEncoding, + ] + CoreFoundation.CFStringGetCString.restype = c_bool + + CoreFoundation.CFDataCreate.argtypes = [CFAllocatorRef, c_char_p, CFIndex] + CoreFoundation.CFDataCreate.restype = CFDataRef + + CoreFoundation.CFDataGetLength.argtypes = [CFDataRef] + CoreFoundation.CFDataGetLength.restype = CFIndex + + CoreFoundation.CFDataGetBytePtr.argtypes = [CFDataRef] + CoreFoundation.CFDataGetBytePtr.restype = c_void_p + + CoreFoundation.CFArrayCreate.argtypes = [ + CFAllocatorRef, + POINTER(CFTypeRef), + CFIndex, + CFArrayCallBacks, + ] + CoreFoundation.CFArrayCreate.restype = CFArrayRef + + CoreFoundation.CFArrayCreateMutable.argtypes = [ + CFAllocatorRef, + CFIndex, + CFArrayCallBacks, + ] + CoreFoundation.CFArrayCreateMutable.restype = CFMutableArrayRef + + CoreFoundation.CFArrayAppendValue.argtypes = [CFMutableArrayRef, c_void_p] + CoreFoundation.CFArrayAppendValue.restype = None + + CoreFoundation.CFArrayGetCount.argtypes = [CFArrayRef] + CoreFoundation.CFArrayGetCount.restype = CFIndex + + CoreFoundation.CFArrayGetValueAtIndex.argtypes = [CFArrayRef, CFIndex] + CoreFoundation.CFArrayGetValueAtIndex.restype = c_void_p + + CoreFoundation.CFErrorGetCode.argtypes = [CFErrorRef] + CoreFoundation.CFErrorGetCode.restype = CFIndex + + CoreFoundation.CFErrorCopyDescription.argtypes = [CFErrorRef] + CoreFoundation.CFErrorCopyDescription.restype = CFStringRef + + CoreFoundation.kCFAllocatorDefault = CFAllocatorRef.in_dll( # type: ignore[attr-defined] + CoreFoundation, "kCFAllocatorDefault" + ) + CoreFoundation.kCFTypeArrayCallBacks = c_void_p.in_dll( # type: ignore[attr-defined] + CoreFoundation, "kCFTypeArrayCallBacks" + ) + + CoreFoundation.CFTypeRef = CFTypeRef # type: ignore[attr-defined] + CoreFoundation.CFArrayRef = CFArrayRef # type: ignore[attr-defined] + CoreFoundation.CFStringRef = CFStringRef # type: ignore[attr-defined] + CoreFoundation.CFErrorRef = CFErrorRef # type: ignore[attr-defined] + +except AttributeError as e: + raise ImportError(f"Error initializing ctypes: {e}") from None + +# SecTrustEvaluateWithError is macOS 10.14+ +if _is_macos_version_10_14_or_later: + try: + Security.SecTrustEvaluateWithError.argtypes = [ + SecTrustRef, + POINTER(CFErrorRef), + ] + Security.SecTrustEvaluateWithError.restype = c_bool + except AttributeError as e: + raise ImportError(f"Error initializing ctypes: {e}") from None + + +def _handle_osstatus(result: OSStatus, _: typing.Any, args: typing.Any) -> typing.Any: + """ + Raises an error if the OSStatus value is non-zero. + """ + if int(result) == 0: + return args + + # Returns a CFString which we need to transform + # into a UTF-8 Python string. + error_message_cfstring = None + try: + error_message_cfstring = Security.SecCopyErrorMessageString(result, None) + + # First step is convert the CFString into a C string pointer. + # We try the fast no-copy way first. + error_message_cfstring_c_void_p = ctypes.cast( + error_message_cfstring, ctypes.POINTER(ctypes.c_void_p) + ) + message = CoreFoundation.CFStringGetCStringPtr( + error_message_cfstring_c_void_p, CFConst.kCFStringEncodingUTF8 + ) + + # Quoting the Apple dev docs: + # + # "A pointer to a C string or NULL if the internal + # storage of theString does not allow this to be + # returned efficiently." + # + # So we need to get our hands dirty. + if message is None: + buffer = ctypes.create_string_buffer(1024) + result = CoreFoundation.CFStringGetCString( + error_message_cfstring_c_void_p, + buffer, + 1024, + CFConst.kCFStringEncodingUTF8, + ) + if not result: + raise OSError("Error copying C string from CFStringRef") + message = buffer.value + + finally: + if error_message_cfstring is not None: + CoreFoundation.CFRelease(error_message_cfstring) + + # If no message can be found for this status we come + # up with a generic one that forwards the status code. + if message is None or message == "": + message = f"SecureTransport operation returned a non-zero OSStatus: {result}" + + raise ssl.SSLError(message) + + +Security.SecTrustCreateWithCertificates.errcheck = _handle_osstatus # type: ignore[assignment] +Security.SecTrustSetAnchorCertificates.errcheck = _handle_osstatus # type: ignore[assignment] +Security.SecTrustSetAnchorCertificatesOnly.errcheck = _handle_osstatus # type: ignore[assignment] +Security.SecTrustGetTrustResult.errcheck = _handle_osstatus # type: ignore[assignment] +Security.SecTrustEvaluate.errcheck = _handle_osstatus # type: ignore[assignment] + + +class CFConst: + """CoreFoundation constants""" + + kCFStringEncodingUTF8 = CFStringEncoding(0x08000100) + + errSecIncompleteCertRevocationCheck = -67635 + errSecHostNameMismatch = -67602 + errSecCertificateExpired = -67818 + errSecNotTrusted = -67843 + + +def _bytes_to_cf_data_ref(value: bytes) -> CFDataRef: # type: ignore[valid-type] + return CoreFoundation.CFDataCreate( # type: ignore[no-any-return] + CoreFoundation.kCFAllocatorDefault, value, len(value) + ) + + +def _bytes_to_cf_string(value: bytes) -> CFString: + """ + Given a Python binary data, create a CFString. + The string must be CFReleased by the caller. + """ + c_str = ctypes.c_char_p(value) + cf_str = CoreFoundation.CFStringCreateWithCString( + CoreFoundation.kCFAllocatorDefault, + c_str, + CFConst.kCFStringEncodingUTF8, + ) + return cf_str # type: ignore[no-any-return] + + +def _cf_string_ref_to_str(cf_string_ref: CFStringRef) -> str | None: # type: ignore[valid-type] + """ + Creates a Unicode string from a CFString object. Used entirely for error + reporting. + Yes, it annoys me quite a lot that this function is this complex. + """ + + string = CoreFoundation.CFStringGetCStringPtr( + cf_string_ref, CFConst.kCFStringEncodingUTF8 + ) + if string is None: + buffer = ctypes.create_string_buffer(1024) + result = CoreFoundation.CFStringGetCString( + cf_string_ref, buffer, 1024, CFConst.kCFStringEncodingUTF8 + ) + if not result: + raise OSError("Error copying C string from CFStringRef") + string = buffer.value + if string is not None: + string = string.decode("utf-8") + return string # type: ignore[no-any-return] + + +def _der_certs_to_cf_cert_array(certs: list[bytes]) -> CFMutableArrayRef: # type: ignore[valid-type] + """Builds a CFArray of SecCertificateRefs from a list of DER-encoded certificates. + Responsibility of the caller to call CoreFoundation.CFRelease on the CFArray. + """ + cf_array = CoreFoundation.CFArrayCreateMutable( + CoreFoundation.kCFAllocatorDefault, + 0, + ctypes.byref(CoreFoundation.kCFTypeArrayCallBacks), + ) + if not cf_array: + raise MemoryError("Unable to allocate memory!") + + for cert_data in certs: + cf_data = None + sec_cert_ref = None + try: + cf_data = _bytes_to_cf_data_ref(cert_data) + sec_cert_ref = Security.SecCertificateCreateWithData( + CoreFoundation.kCFAllocatorDefault, cf_data + ) + CoreFoundation.CFArrayAppendValue(cf_array, sec_cert_ref) + finally: + if cf_data: + CoreFoundation.CFRelease(cf_data) + if sec_cert_ref: + CoreFoundation.CFRelease(sec_cert_ref) + + return cf_array # type: ignore[no-any-return] + + +@contextlib.contextmanager +def _configure_context(ctx: ssl.SSLContext) -> typing.Iterator[None]: + check_hostname = ctx.check_hostname + verify_mode = ctx.verify_mode + ctx.check_hostname = False + _set_ssl_context_verify_mode(ctx, ssl.CERT_NONE) + try: + yield + finally: + ctx.check_hostname = check_hostname + _set_ssl_context_verify_mode(ctx, verify_mode) + + +def _verify_peercerts_impl( + ssl_context: ssl.SSLContext, + cert_chain: list[bytes], + server_hostname: str | None = None, +) -> None: + certs = None + policies = None + trust = None + try: + # Only set a hostname on the policy if we're verifying the hostname + # on the leaf certificate. + if server_hostname is not None and ssl_context.check_hostname: + cf_str_hostname = None + try: + cf_str_hostname = _bytes_to_cf_string(server_hostname.encode("ascii")) + ssl_policy = Security.SecPolicyCreateSSL(True, cf_str_hostname) + finally: + if cf_str_hostname: + CoreFoundation.CFRelease(cf_str_hostname) + else: + ssl_policy = Security.SecPolicyCreateSSL(True, None) + + policies = ssl_policy + if ssl_context.verify_flags & ssl.VERIFY_CRL_CHECK_CHAIN: + # Add explicit policy requiring positive revocation checks + policies = CoreFoundation.CFArrayCreateMutable( + CoreFoundation.kCFAllocatorDefault, + 0, + ctypes.byref(CoreFoundation.kCFTypeArrayCallBacks), + ) + CoreFoundation.CFArrayAppendValue(policies, ssl_policy) + CoreFoundation.CFRelease(ssl_policy) + revocation_policy = Security.SecPolicyCreateRevocation( + kSecRevocationUseAnyAvailableMethod + | kSecRevocationRequirePositiveResponse + ) + CoreFoundation.CFArrayAppendValue(policies, revocation_policy) + CoreFoundation.CFRelease(revocation_policy) + elif ssl_context.verify_flags & ssl.VERIFY_CRL_CHECK_LEAF: + raise NotImplementedError("VERIFY_CRL_CHECK_LEAF not implemented for macOS") + + certs = None + try: + certs = _der_certs_to_cf_cert_array(cert_chain) + + # Now that we have certificates loaded and a SecPolicy + # we can finally create a SecTrust object! + trust = Security.SecTrustRef() + Security.SecTrustCreateWithCertificates( + certs, policies, ctypes.byref(trust) + ) + + finally: + # The certs are now being held by SecTrust so we can + # release our handles for the array. + if certs: + CoreFoundation.CFRelease(certs) + + # If there are additional trust anchors to load we need to transform + # the list of DER-encoded certificates into a CFArray. + ctx_ca_certs_der: list[bytes] | None = ssl_context.get_ca_certs( + binary_form=True + ) + if ctx_ca_certs_der: + ctx_ca_certs = None + try: + ctx_ca_certs = _der_certs_to_cf_cert_array(ctx_ca_certs_der) + Security.SecTrustSetAnchorCertificates(trust, ctx_ca_certs) + finally: + if ctx_ca_certs: + CoreFoundation.CFRelease(ctx_ca_certs) + + # We always want system certificates. + Security.SecTrustSetAnchorCertificatesOnly(trust, False) + + # macOS 10.13 and earlier don't support SecTrustEvaluateWithError() + # so we use SecTrustEvaluate() which means we need to construct error + # messages ourselves. + if _is_macos_version_10_14_or_later: + _verify_peercerts_impl_macos_10_14(ssl_context, trust) + else: + _verify_peercerts_impl_macos_10_13(ssl_context, trust) + finally: + if policies: + CoreFoundation.CFRelease(policies) + if trust: + CoreFoundation.CFRelease(trust) + + +def _verify_peercerts_impl_macos_10_13( + ssl_context: ssl.SSLContext, sec_trust_ref: typing.Any +) -> None: + """Verify using 'SecTrustEvaluate' API for macOS 10.13 and earlier. + macOS 10.14 added the 'SecTrustEvaluateWithError' API. + """ + sec_trust_result_type = Security.SecTrustResultType() + Security.SecTrustEvaluate(sec_trust_ref, ctypes.byref(sec_trust_result_type)) + + try: + sec_trust_result_type_as_int = int(sec_trust_result_type.value) + except (ValueError, TypeError): + sec_trust_result_type_as_int = -1 + + # Apple doesn't document these values in their own API docs. + # See: https://github.com/xybp888/iOS-SDKs/blob/master/iPhoneOS13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h#L84 + if ( + ssl_context.verify_mode == ssl.CERT_REQUIRED + and sec_trust_result_type_as_int not in (1, 4) + ): + # Note that we're not able to ignore only hostname errors + # for macOS 10.13 and earlier, so check_hostname=False will + # still return an error. + sec_trust_result_type_to_message = { + 0: "Invalid trust result type", + # 1: "Trust evaluation succeeded", + 2: "User confirmation required", + 3: "User specified that certificate is not trusted", + # 4: "Trust result is unspecified", + 5: "Recoverable trust failure occurred", + 6: "Fatal trust failure occurred", + 7: "Other error occurred, certificate may be revoked", + } + error_message = sec_trust_result_type_to_message.get( + sec_trust_result_type_as_int, + f"Unknown trust result: {sec_trust_result_type_as_int}", + ) + + err = ssl.SSLCertVerificationError(error_message) + err.verify_message = error_message + err.verify_code = sec_trust_result_type_as_int + raise err + + +def _verify_peercerts_impl_macos_10_14( + ssl_context: ssl.SSLContext, sec_trust_ref: typing.Any +) -> None: + """Verify using 'SecTrustEvaluateWithError' API for macOS 10.14+.""" + cf_error = CoreFoundation.CFErrorRef() + sec_trust_eval_result = Security.SecTrustEvaluateWithError( + sec_trust_ref, ctypes.byref(cf_error) + ) + # sec_trust_eval_result is a bool (0 or 1) + # where 1 means that the certs are trusted. + if sec_trust_eval_result == 1: + is_trusted = True + elif sec_trust_eval_result == 0: + is_trusted = False + else: + raise ssl.SSLError( + f"Unknown result from Security.SecTrustEvaluateWithError: {sec_trust_eval_result!r}" + ) + + cf_error_code = 0 + if not is_trusted: + cf_error_code = CoreFoundation.CFErrorGetCode(cf_error) + + # If the error is a known failure that we're + # explicitly okay with from SSLContext configuration + # we can set is_trusted accordingly. + if ssl_context.verify_mode != ssl.CERT_REQUIRED and ( + cf_error_code == CFConst.errSecNotTrusted + or cf_error_code == CFConst.errSecCertificateExpired + ): + is_trusted = True + + # If we're still not trusted then we start to + # construct and raise the SSLCertVerificationError. + if not is_trusted: + cf_error_string_ref = None + try: + cf_error_string_ref = CoreFoundation.CFErrorCopyDescription(cf_error) + + # Can this ever return 'None' if there's a CFError? + cf_error_message = ( + _cf_string_ref_to_str(cf_error_string_ref) + or "Certificate verification failed" + ) + + # TODO: Not sure if we need the SecTrustResultType for anything? + # We only care whether or not it's a success or failure for now. + sec_trust_result_type = Security.SecTrustResultType() + Security.SecTrustGetTrustResult( + sec_trust_ref, ctypes.byref(sec_trust_result_type) + ) + + err = ssl.SSLCertVerificationError(cf_error_message) + err.verify_message = cf_error_message + err.verify_code = cf_error_code + raise err + finally: + if cf_error_string_ref: + CoreFoundation.CFRelease(cf_error_string_ref) diff --git a/myenv/Lib/site-packages/pip/_vendor/truststore/_openssl.py b/myenv/Lib/site-packages/pip/_vendor/truststore/_openssl.py new file mode 100644 index 0000000..9951cf7 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/truststore/_openssl.py @@ -0,0 +1,66 @@ +import contextlib +import os +import re +import ssl +import typing + +# candidates based on https://github.com/tiran/certifi-system-store by Christian Heimes +_CA_FILE_CANDIDATES = [ + # Alpine, Arch, Fedora 34+, OpenWRT, RHEL 9+, BSD + "/etc/ssl/cert.pem", + # Fedora <= 34, RHEL <= 9, CentOS <= 9 + "/etc/pki/tls/cert.pem", + # Debian, Ubuntu (requires ca-certificates) + "/etc/ssl/certs/ca-certificates.crt", + # SUSE + "/etc/ssl/ca-bundle.pem", +] + +_HASHED_CERT_FILENAME_RE = re.compile(r"^[0-9a-fA-F]{8}\.[0-9]$") + + +@contextlib.contextmanager +def _configure_context(ctx: ssl.SSLContext) -> typing.Iterator[None]: + # First, check whether the default locations from OpenSSL + # seem like they will give us a usable set of CA certs. + # ssl.get_default_verify_paths already takes care of: + # - getting cafile from either the SSL_CERT_FILE env var + # or the path configured when OpenSSL was compiled, + # and verifying that that path exists + # - getting capath from either the SSL_CERT_DIR env var + # or the path configured when OpenSSL was compiled, + # and verifying that that path exists + # In addition we'll check whether capath appears to contain certs. + defaults = ssl.get_default_verify_paths() + if defaults.cafile or (defaults.capath and _capath_contains_certs(defaults.capath)): + ctx.set_default_verify_paths() + else: + # cafile from OpenSSL doesn't exist + # and capath from OpenSSL doesn't contain certs. + # Let's search other common locations instead. + for cafile in _CA_FILE_CANDIDATES: + if os.path.isfile(cafile): + ctx.load_verify_locations(cafile=cafile) + break + + yield + + +def _capath_contains_certs(capath: str) -> bool: + """Check whether capath exists and contains certs in the expected format.""" + if not os.path.isdir(capath): + return False + for name in os.listdir(capath): + if _HASHED_CERT_FILENAME_RE.match(name): + return True + return False + + +def _verify_peercerts_impl( + ssl_context: ssl.SSLContext, + cert_chain: list[bytes], + server_hostname: str | None = None, +) -> None: + # This is a no-op because we've enabled SSLContext's built-in + # verification via verify_mode=CERT_REQUIRED, and don't need to repeat it. + pass diff --git a/myenv/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py b/myenv/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py new file mode 100644 index 0000000..b1ee7a3 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py @@ -0,0 +1,31 @@ +import ssl +import sys +import typing + +# Hold on to the original class so we can create it consistently +# even if we inject our own SSLContext into the ssl module. +_original_SSLContext = ssl.SSLContext +_original_super_SSLContext = super(_original_SSLContext, _original_SSLContext) + +# CPython is known to be good, but non-CPython implementations +# may implement SSLContext differently so to be safe we don't +# subclass the SSLContext. + +# This is returned by truststore.SSLContext.__class__() +_truststore_SSLContext_dunder_class: typing.Optional[type] + +# This value is the superclass of truststore.SSLContext. +_truststore_SSLContext_super_class: type + +if sys.implementation.name == "cpython": + _truststore_SSLContext_super_class = _original_SSLContext + _truststore_SSLContext_dunder_class = None +else: + _truststore_SSLContext_super_class = object + _truststore_SSLContext_dunder_class = _original_SSLContext + + +def _set_ssl_context_verify_mode( + ssl_context: ssl.SSLContext, verify_mode: ssl.VerifyMode +) -> None: + _original_super_SSLContext.verify_mode.__set__(ssl_context, verify_mode) # type: ignore[attr-defined] diff --git a/myenv/Lib/site-packages/pip/_vendor/truststore/_windows.py b/myenv/Lib/site-packages/pip/_vendor/truststore/_windows.py new file mode 100644 index 0000000..a9bf9ab --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/truststore/_windows.py @@ -0,0 +1,567 @@ +import contextlib +import ssl +import typing +from ctypes import WinDLL # type: ignore +from ctypes import WinError # type: ignore +from ctypes import ( + POINTER, + Structure, + c_char_p, + c_ulong, + c_void_p, + c_wchar_p, + cast, + create_unicode_buffer, + pointer, + sizeof, +) +from ctypes.wintypes import ( + BOOL, + DWORD, + HANDLE, + LONG, + LPCSTR, + LPCVOID, + LPCWSTR, + LPFILETIME, + LPSTR, + LPWSTR, +) +from typing import TYPE_CHECKING, Any + +from ._ssl_constants import _set_ssl_context_verify_mode + +HCERTCHAINENGINE = HANDLE +HCERTSTORE = HANDLE +HCRYPTPROV_LEGACY = HANDLE + + +class CERT_CONTEXT(Structure): + _fields_ = ( + ("dwCertEncodingType", DWORD), + ("pbCertEncoded", c_void_p), + ("cbCertEncoded", DWORD), + ("pCertInfo", c_void_p), + ("hCertStore", HCERTSTORE), + ) + + +PCERT_CONTEXT = POINTER(CERT_CONTEXT) +PCCERT_CONTEXT = POINTER(PCERT_CONTEXT) + + +class CERT_ENHKEY_USAGE(Structure): + _fields_ = ( + ("cUsageIdentifier", DWORD), + ("rgpszUsageIdentifier", POINTER(LPSTR)), + ) + + +PCERT_ENHKEY_USAGE = POINTER(CERT_ENHKEY_USAGE) + + +class CERT_USAGE_MATCH(Structure): + _fields_ = ( + ("dwType", DWORD), + ("Usage", CERT_ENHKEY_USAGE), + ) + + +class CERT_CHAIN_PARA(Structure): + _fields_ = ( + ("cbSize", DWORD), + ("RequestedUsage", CERT_USAGE_MATCH), + ("RequestedIssuancePolicy", CERT_USAGE_MATCH), + ("dwUrlRetrievalTimeout", DWORD), + ("fCheckRevocationFreshnessTime", BOOL), + ("dwRevocationFreshnessTime", DWORD), + ("pftCacheResync", LPFILETIME), + ("pStrongSignPara", c_void_p), + ("dwStrongSignFlags", DWORD), + ) + + +if TYPE_CHECKING: + PCERT_CHAIN_PARA = pointer[CERT_CHAIN_PARA] # type: ignore[misc] +else: + PCERT_CHAIN_PARA = POINTER(CERT_CHAIN_PARA) + + +class CERT_TRUST_STATUS(Structure): + _fields_ = ( + ("dwErrorStatus", DWORD), + ("dwInfoStatus", DWORD), + ) + + +class CERT_CHAIN_ELEMENT(Structure): + _fields_ = ( + ("cbSize", DWORD), + ("pCertContext", PCERT_CONTEXT), + ("TrustStatus", CERT_TRUST_STATUS), + ("pRevocationInfo", c_void_p), + ("pIssuanceUsage", PCERT_ENHKEY_USAGE), + ("pApplicationUsage", PCERT_ENHKEY_USAGE), + ("pwszExtendedErrorInfo", LPCWSTR), + ) + + +PCERT_CHAIN_ELEMENT = POINTER(CERT_CHAIN_ELEMENT) + + +class CERT_SIMPLE_CHAIN(Structure): + _fields_ = ( + ("cbSize", DWORD), + ("TrustStatus", CERT_TRUST_STATUS), + ("cElement", DWORD), + ("rgpElement", POINTER(PCERT_CHAIN_ELEMENT)), + ("pTrustListInfo", c_void_p), + ("fHasRevocationFreshnessTime", BOOL), + ("dwRevocationFreshnessTime", DWORD), + ) + + +PCERT_SIMPLE_CHAIN = POINTER(CERT_SIMPLE_CHAIN) + + +class CERT_CHAIN_CONTEXT(Structure): + _fields_ = ( + ("cbSize", DWORD), + ("TrustStatus", CERT_TRUST_STATUS), + ("cChain", DWORD), + ("rgpChain", POINTER(PCERT_SIMPLE_CHAIN)), + ("cLowerQualityChainContext", DWORD), + ("rgpLowerQualityChainContext", c_void_p), + ("fHasRevocationFreshnessTime", BOOL), + ("dwRevocationFreshnessTime", DWORD), + ) + + +PCERT_CHAIN_CONTEXT = POINTER(CERT_CHAIN_CONTEXT) +PCCERT_CHAIN_CONTEXT = POINTER(PCERT_CHAIN_CONTEXT) + + +class SSL_EXTRA_CERT_CHAIN_POLICY_PARA(Structure): + _fields_ = ( + ("cbSize", DWORD), + ("dwAuthType", DWORD), + ("fdwChecks", DWORD), + ("pwszServerName", LPCWSTR), + ) + + +class CERT_CHAIN_POLICY_PARA(Structure): + _fields_ = ( + ("cbSize", DWORD), + ("dwFlags", DWORD), + ("pvExtraPolicyPara", c_void_p), + ) + + +PCERT_CHAIN_POLICY_PARA = POINTER(CERT_CHAIN_POLICY_PARA) + + +class CERT_CHAIN_POLICY_STATUS(Structure): + _fields_ = ( + ("cbSize", DWORD), + ("dwError", DWORD), + ("lChainIndex", LONG), + ("lElementIndex", LONG), + ("pvExtraPolicyStatus", c_void_p), + ) + + +PCERT_CHAIN_POLICY_STATUS = POINTER(CERT_CHAIN_POLICY_STATUS) + + +class CERT_CHAIN_ENGINE_CONFIG(Structure): + _fields_ = ( + ("cbSize", DWORD), + ("hRestrictedRoot", HCERTSTORE), + ("hRestrictedTrust", HCERTSTORE), + ("hRestrictedOther", HCERTSTORE), + ("cAdditionalStore", DWORD), + ("rghAdditionalStore", c_void_p), + ("dwFlags", DWORD), + ("dwUrlRetrievalTimeout", DWORD), + ("MaximumCachedCertificates", DWORD), + ("CycleDetectionModulus", DWORD), + ("hExclusiveRoot", HCERTSTORE), + ("hExclusiveTrustedPeople", HCERTSTORE), + ("dwExclusiveFlags", DWORD), + ) + + +PCERT_CHAIN_ENGINE_CONFIG = POINTER(CERT_CHAIN_ENGINE_CONFIG) +PHCERTCHAINENGINE = POINTER(HCERTCHAINENGINE) + +X509_ASN_ENCODING = 0x00000001 +PKCS_7_ASN_ENCODING = 0x00010000 +CERT_STORE_PROV_MEMORY = b"Memory" +CERT_STORE_ADD_USE_EXISTING = 2 +USAGE_MATCH_TYPE_OR = 1 +OID_PKIX_KP_SERVER_AUTH = c_char_p(b"1.3.6.1.5.5.7.3.1") +CERT_CHAIN_REVOCATION_CHECK_END_CERT = 0x10000000 +CERT_CHAIN_REVOCATION_CHECK_CHAIN = 0x20000000 +CERT_CHAIN_POLICY_IGNORE_ALL_NOT_TIME_VALID_FLAGS = 0x00000007 +CERT_CHAIN_POLICY_IGNORE_INVALID_BASIC_CONSTRAINTS_FLAG = 0x00000008 +CERT_CHAIN_POLICY_ALLOW_UNKNOWN_CA_FLAG = 0x00000010 +CERT_CHAIN_POLICY_IGNORE_INVALID_NAME_FLAG = 0x00000040 +CERT_CHAIN_POLICY_IGNORE_WRONG_USAGE_FLAG = 0x00000020 +CERT_CHAIN_POLICY_IGNORE_INVALID_POLICY_FLAG = 0x00000080 +CERT_CHAIN_POLICY_IGNORE_ALL_REV_UNKNOWN_FLAGS = 0x00000F00 +CERT_CHAIN_POLICY_ALLOW_TESTROOT_FLAG = 0x00008000 +CERT_CHAIN_POLICY_TRUST_TESTROOT_FLAG = 0x00004000 +SECURITY_FLAG_IGNORE_CERT_CN_INVALID = 0x00001000 +AUTHTYPE_SERVER = 2 +CERT_CHAIN_POLICY_SSL = 4 +FORMAT_MESSAGE_FROM_SYSTEM = 0x00001000 +FORMAT_MESSAGE_IGNORE_INSERTS = 0x00000200 + +# Flags to set for SSLContext.verify_mode=CERT_NONE +CERT_CHAIN_POLICY_VERIFY_MODE_NONE_FLAGS = ( + CERT_CHAIN_POLICY_IGNORE_ALL_NOT_TIME_VALID_FLAGS + | CERT_CHAIN_POLICY_IGNORE_INVALID_BASIC_CONSTRAINTS_FLAG + | CERT_CHAIN_POLICY_ALLOW_UNKNOWN_CA_FLAG + | CERT_CHAIN_POLICY_IGNORE_INVALID_NAME_FLAG + | CERT_CHAIN_POLICY_IGNORE_WRONG_USAGE_FLAG + | CERT_CHAIN_POLICY_IGNORE_INVALID_POLICY_FLAG + | CERT_CHAIN_POLICY_IGNORE_ALL_REV_UNKNOWN_FLAGS + | CERT_CHAIN_POLICY_ALLOW_TESTROOT_FLAG + | CERT_CHAIN_POLICY_TRUST_TESTROOT_FLAG +) + +wincrypt = WinDLL("crypt32.dll") +kernel32 = WinDLL("kernel32.dll") + + +def _handle_win_error(result: bool, _: Any, args: Any) -> Any: + if not result: + # Note, actually raises OSError after calling GetLastError and FormatMessage + raise WinError() + return args + + +CertCreateCertificateChainEngine = wincrypt.CertCreateCertificateChainEngine +CertCreateCertificateChainEngine.argtypes = ( + PCERT_CHAIN_ENGINE_CONFIG, + PHCERTCHAINENGINE, +) +CertCreateCertificateChainEngine.errcheck = _handle_win_error + +CertOpenStore = wincrypt.CertOpenStore +CertOpenStore.argtypes = (LPCSTR, DWORD, HCRYPTPROV_LEGACY, DWORD, c_void_p) +CertOpenStore.restype = HCERTSTORE +CertOpenStore.errcheck = _handle_win_error + +CertAddEncodedCertificateToStore = wincrypt.CertAddEncodedCertificateToStore +CertAddEncodedCertificateToStore.argtypes = ( + HCERTSTORE, + DWORD, + c_char_p, + DWORD, + DWORD, + PCCERT_CONTEXT, +) +CertAddEncodedCertificateToStore.restype = BOOL + +CertCreateCertificateContext = wincrypt.CertCreateCertificateContext +CertCreateCertificateContext.argtypes = (DWORD, c_char_p, DWORD) +CertCreateCertificateContext.restype = PCERT_CONTEXT +CertCreateCertificateContext.errcheck = _handle_win_error + +CertGetCertificateChain = wincrypt.CertGetCertificateChain +CertGetCertificateChain.argtypes = ( + HCERTCHAINENGINE, + PCERT_CONTEXT, + LPFILETIME, + HCERTSTORE, + PCERT_CHAIN_PARA, + DWORD, + c_void_p, + PCCERT_CHAIN_CONTEXT, +) +CertGetCertificateChain.restype = BOOL +CertGetCertificateChain.errcheck = _handle_win_error + +CertVerifyCertificateChainPolicy = wincrypt.CertVerifyCertificateChainPolicy +CertVerifyCertificateChainPolicy.argtypes = ( + c_ulong, + PCERT_CHAIN_CONTEXT, + PCERT_CHAIN_POLICY_PARA, + PCERT_CHAIN_POLICY_STATUS, +) +CertVerifyCertificateChainPolicy.restype = BOOL + +CertCloseStore = wincrypt.CertCloseStore +CertCloseStore.argtypes = (HCERTSTORE, DWORD) +CertCloseStore.restype = BOOL +CertCloseStore.errcheck = _handle_win_error + +CertFreeCertificateChain = wincrypt.CertFreeCertificateChain +CertFreeCertificateChain.argtypes = (PCERT_CHAIN_CONTEXT,) + +CertFreeCertificateContext = wincrypt.CertFreeCertificateContext +CertFreeCertificateContext.argtypes = (PCERT_CONTEXT,) + +CertFreeCertificateChainEngine = wincrypt.CertFreeCertificateChainEngine +CertFreeCertificateChainEngine.argtypes = (HCERTCHAINENGINE,) + +FormatMessageW = kernel32.FormatMessageW +FormatMessageW.argtypes = ( + DWORD, + LPCVOID, + DWORD, + DWORD, + LPWSTR, + DWORD, + c_void_p, +) +FormatMessageW.restype = DWORD + + +def _verify_peercerts_impl( + ssl_context: ssl.SSLContext, + cert_chain: list[bytes], + server_hostname: str | None = None, +) -> None: + """Verify the cert_chain from the server using Windows APIs.""" + + # If the peer didn't send any certificates then + # we can't do verification. Raise an error. + if not cert_chain: + raise ssl.SSLCertVerificationError("Peer sent no certificates to verify") + + pCertContext = None + hIntermediateCertStore = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, None, 0, None) + try: + # Add intermediate certs to an in-memory cert store + for cert_bytes in cert_chain[1:]: + CertAddEncodedCertificateToStore( + hIntermediateCertStore, + X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, + cert_bytes, + len(cert_bytes), + CERT_STORE_ADD_USE_EXISTING, + None, + ) + + # Cert context for leaf cert + leaf_cert = cert_chain[0] + pCertContext = CertCreateCertificateContext( + X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, leaf_cert, len(leaf_cert) + ) + + # Chain params to match certs for serverAuth extended usage + cert_enhkey_usage = CERT_ENHKEY_USAGE() + cert_enhkey_usage.cUsageIdentifier = 1 + cert_enhkey_usage.rgpszUsageIdentifier = (c_char_p * 1)(OID_PKIX_KP_SERVER_AUTH) + cert_usage_match = CERT_USAGE_MATCH() + cert_usage_match.Usage = cert_enhkey_usage + chain_params = CERT_CHAIN_PARA() + chain_params.RequestedUsage = cert_usage_match + chain_params.cbSize = sizeof(chain_params) + pChainPara = pointer(chain_params) + + if ssl_context.verify_flags & ssl.VERIFY_CRL_CHECK_CHAIN: + chain_flags = CERT_CHAIN_REVOCATION_CHECK_CHAIN + elif ssl_context.verify_flags & ssl.VERIFY_CRL_CHECK_LEAF: + chain_flags = CERT_CHAIN_REVOCATION_CHECK_END_CERT + else: + chain_flags = 0 + + try: + # First attempt to verify using the default Windows system trust roots + # (default chain engine). + _get_and_verify_cert_chain( + ssl_context, + None, + hIntermediateCertStore, + pCertContext, + pChainPara, + server_hostname, + chain_flags=chain_flags, + ) + except ssl.SSLCertVerificationError as e: + # If that fails but custom CA certs have been added + # to the SSLContext using load_verify_locations, + # try verifying using a custom chain engine + # that trusts the custom CA certs. + custom_ca_certs: list[bytes] | None = ssl_context.get_ca_certs( + binary_form=True + ) + if custom_ca_certs: + try: + _verify_using_custom_ca_certs( + ssl_context, + custom_ca_certs, + hIntermediateCertStore, + pCertContext, + pChainPara, + server_hostname, + chain_flags=chain_flags, + ) + # Raise the original error, not the new error. + except ssl.SSLCertVerificationError: + raise e from None + else: + raise + finally: + CertCloseStore(hIntermediateCertStore, 0) + if pCertContext: + CertFreeCertificateContext(pCertContext) + + +def _get_and_verify_cert_chain( + ssl_context: ssl.SSLContext, + hChainEngine: HCERTCHAINENGINE | None, + hIntermediateCertStore: HCERTSTORE, + pPeerCertContext: c_void_p, + pChainPara: PCERT_CHAIN_PARA, # type: ignore[valid-type] + server_hostname: str | None, + chain_flags: int, +) -> None: + ppChainContext = None + try: + # Get cert chain + ppChainContext = pointer(PCERT_CHAIN_CONTEXT()) + CertGetCertificateChain( + hChainEngine, # chain engine + pPeerCertContext, # leaf cert context + None, # current system time + hIntermediateCertStore, # additional in-memory cert store + pChainPara, # chain-building parameters + chain_flags, + None, # reserved + ppChainContext, # the resulting chain context + ) + pChainContext = ppChainContext.contents + + # Verify cert chain + ssl_extra_cert_chain_policy_para = SSL_EXTRA_CERT_CHAIN_POLICY_PARA() + ssl_extra_cert_chain_policy_para.cbSize = sizeof( + ssl_extra_cert_chain_policy_para + ) + ssl_extra_cert_chain_policy_para.dwAuthType = AUTHTYPE_SERVER + ssl_extra_cert_chain_policy_para.fdwChecks = 0 + if ssl_context.check_hostname is False: + ssl_extra_cert_chain_policy_para.fdwChecks = ( + SECURITY_FLAG_IGNORE_CERT_CN_INVALID + ) + if server_hostname: + ssl_extra_cert_chain_policy_para.pwszServerName = c_wchar_p(server_hostname) + + chain_policy = CERT_CHAIN_POLICY_PARA() + chain_policy.pvExtraPolicyPara = cast( + pointer(ssl_extra_cert_chain_policy_para), c_void_p + ) + if ssl_context.verify_mode == ssl.CERT_NONE: + chain_policy.dwFlags |= CERT_CHAIN_POLICY_VERIFY_MODE_NONE_FLAGS + chain_policy.cbSize = sizeof(chain_policy) + + pPolicyPara = pointer(chain_policy) + policy_status = CERT_CHAIN_POLICY_STATUS() + policy_status.cbSize = sizeof(policy_status) + pPolicyStatus = pointer(policy_status) + CertVerifyCertificateChainPolicy( + CERT_CHAIN_POLICY_SSL, + pChainContext, + pPolicyPara, + pPolicyStatus, + ) + + # Check status + error_code = policy_status.dwError + if error_code: + # Try getting a human readable message for an error code. + error_message_buf = create_unicode_buffer(1024) + error_message_chars = FormatMessageW( + FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, + None, + error_code, + 0, + error_message_buf, + sizeof(error_message_buf), + None, + ) + + # See if we received a message for the error, + # otherwise we use a generic error with the + # error code and hope that it's search-able. + if error_message_chars <= 0: + error_message = f"Certificate chain policy error {error_code:#x} [{policy_status.lElementIndex}]" + else: + error_message = error_message_buf.value.strip() + + err = ssl.SSLCertVerificationError(error_message) + err.verify_message = error_message + err.verify_code = error_code + raise err from None + finally: + if ppChainContext: + CertFreeCertificateChain(ppChainContext.contents) + + +def _verify_using_custom_ca_certs( + ssl_context: ssl.SSLContext, + custom_ca_certs: list[bytes], + hIntermediateCertStore: HCERTSTORE, + pPeerCertContext: c_void_p, + pChainPara: PCERT_CHAIN_PARA, # type: ignore[valid-type] + server_hostname: str | None, + chain_flags: int, +) -> None: + hChainEngine = None + hRootCertStore = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, None, 0, None) + try: + # Add custom CA certs to an in-memory cert store + for cert_bytes in custom_ca_certs: + CertAddEncodedCertificateToStore( + hRootCertStore, + X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, + cert_bytes, + len(cert_bytes), + CERT_STORE_ADD_USE_EXISTING, + None, + ) + + # Create a custom cert chain engine which exclusively trusts + # certs from our hRootCertStore + cert_chain_engine_config = CERT_CHAIN_ENGINE_CONFIG() + cert_chain_engine_config.cbSize = sizeof(cert_chain_engine_config) + cert_chain_engine_config.hExclusiveRoot = hRootCertStore + pConfig = pointer(cert_chain_engine_config) + phChainEngine = pointer(HCERTCHAINENGINE()) + CertCreateCertificateChainEngine( + pConfig, + phChainEngine, + ) + hChainEngine = phChainEngine.contents + + # Get and verify a cert chain using the custom chain engine + _get_and_verify_cert_chain( + ssl_context, + hChainEngine, + hIntermediateCertStore, + pPeerCertContext, + pChainPara, + server_hostname, + chain_flags, + ) + finally: + if hChainEngine: + CertFreeCertificateChainEngine(hChainEngine) + CertCloseStore(hRootCertStore, 0) + + +@contextlib.contextmanager +def _configure_context(ctx: ssl.SSLContext) -> typing.Iterator[None]: + check_hostname = ctx.check_hostname + verify_mode = ctx.verify_mode + ctx.check_hostname = False + _set_ssl_context_verify_mode(ctx, ssl.CERT_NONE) + try: + yield + finally: + ctx.check_hostname = check_hostname + _set_ssl_context_verify_mode(ctx, verify_mode) diff --git a/myenv/Lib/site-packages/pip/_vendor/truststore/py.typed b/myenv/Lib/site-packages/pip/_vendor/truststore/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/typing_extensions.py b/myenv/Lib/site-packages/pip/_vendor/typing_extensions.py new file mode 100644 index 0000000..e429384 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/typing_extensions.py @@ -0,0 +1,3641 @@ +import abc +import collections +import collections.abc +import contextlib +import functools +import inspect +import operator +import sys +import types as _types +import typing +import warnings + +__all__ = [ + # Super-special typing primitives. + 'Any', + 'ClassVar', + 'Concatenate', + 'Final', + 'LiteralString', + 'ParamSpec', + 'ParamSpecArgs', + 'ParamSpecKwargs', + 'Self', + 'Type', + 'TypeVar', + 'TypeVarTuple', + 'Unpack', + + # ABCs (from collections.abc). + 'Awaitable', + 'AsyncIterator', + 'AsyncIterable', + 'Coroutine', + 'AsyncGenerator', + 'AsyncContextManager', + 'Buffer', + 'ChainMap', + + # Concrete collection types. + 'ContextManager', + 'Counter', + 'Deque', + 'DefaultDict', + 'NamedTuple', + 'OrderedDict', + 'TypedDict', + + # Structural checks, a.k.a. protocols. + 'SupportsAbs', + 'SupportsBytes', + 'SupportsComplex', + 'SupportsFloat', + 'SupportsIndex', + 'SupportsInt', + 'SupportsRound', + + # One-off things. + 'Annotated', + 'assert_never', + 'assert_type', + 'clear_overloads', + 'dataclass_transform', + 'deprecated', + 'Doc', + 'get_overloads', + 'final', + 'get_args', + 'get_origin', + 'get_original_bases', + 'get_protocol_members', + 'get_type_hints', + 'IntVar', + 'is_protocol', + 'is_typeddict', + 'Literal', + 'NewType', + 'overload', + 'override', + 'Protocol', + 'reveal_type', + 'runtime', + 'runtime_checkable', + 'Text', + 'TypeAlias', + 'TypeAliasType', + 'TypeGuard', + 'TypeIs', + 'TYPE_CHECKING', + 'Never', + 'NoReturn', + 'ReadOnly', + 'Required', + 'NotRequired', + + # Pure aliases, have always been in typing + 'AbstractSet', + 'AnyStr', + 'BinaryIO', + 'Callable', + 'Collection', + 'Container', + 'Dict', + 'ForwardRef', + 'FrozenSet', + 'Generator', + 'Generic', + 'Hashable', + 'IO', + 'ItemsView', + 'Iterable', + 'Iterator', + 'KeysView', + 'List', + 'Mapping', + 'MappingView', + 'Match', + 'MutableMapping', + 'MutableSequence', + 'MutableSet', + 'NoDefault', + 'Optional', + 'Pattern', + 'Reversible', + 'Sequence', + 'Set', + 'Sized', + 'TextIO', + 'Tuple', + 'Union', + 'ValuesView', + 'cast', + 'no_type_check', + 'no_type_check_decorator', +] + +# for backward compatibility +PEP_560 = True +GenericMeta = type +_PEP_696_IMPLEMENTED = sys.version_info >= (3, 13, 0, "beta") + +# The functions below are modified copies of typing internal helpers. +# They are needed by _ProtocolMeta and they provide support for PEP 646. + + +class _Sentinel: + def __repr__(self): + return "" + + +_marker = _Sentinel() + + +if sys.version_info >= (3, 10): + def _should_collect_from_parameters(t): + return isinstance( + t, (typing._GenericAlias, _types.GenericAlias, _types.UnionType) + ) +elif sys.version_info >= (3, 9): + def _should_collect_from_parameters(t): + return isinstance(t, (typing._GenericAlias, _types.GenericAlias)) +else: + def _should_collect_from_parameters(t): + return isinstance(t, typing._GenericAlias) and not t._special + + +NoReturn = typing.NoReturn + +# Some unconstrained type variables. These are used by the container types. +# (These are not for export.) +T = typing.TypeVar('T') # Any type. +KT = typing.TypeVar('KT') # Key type. +VT = typing.TypeVar('VT') # Value type. +T_co = typing.TypeVar('T_co', covariant=True) # Any type covariant containers. +T_contra = typing.TypeVar('T_contra', contravariant=True) # Ditto contravariant. + + +if sys.version_info >= (3, 11): + from typing import Any +else: + + class _AnyMeta(type): + def __instancecheck__(self, obj): + if self is Any: + raise TypeError("typing_extensions.Any cannot be used with isinstance()") + return super().__instancecheck__(obj) + + def __repr__(self): + if self is Any: + return "typing_extensions.Any" + return super().__repr__() + + class Any(metaclass=_AnyMeta): + """Special type indicating an unconstrained type. + - Any is compatible with every type. + - Any assumed to have all methods. + - All values assumed to be instances of Any. + Note that all the above statements are true from the point of view of + static type checkers. At runtime, Any should not be used with instance + checks. + """ + def __new__(cls, *args, **kwargs): + if cls is Any: + raise TypeError("Any cannot be instantiated") + return super().__new__(cls, *args, **kwargs) + + +ClassVar = typing.ClassVar + + +class _ExtensionsSpecialForm(typing._SpecialForm, _root=True): + def __repr__(self): + return 'typing_extensions.' + self._name + + +Final = typing.Final + +if sys.version_info >= (3, 11): + final = typing.final +else: + # @final exists in 3.8+, but we backport it for all versions + # before 3.11 to keep support for the __final__ attribute. + # See https://bugs.python.org/issue46342 + def final(f): + """This decorator can be used to indicate to type checkers that + the decorated method cannot be overridden, and decorated class + cannot be subclassed. For example: + + class Base: + @final + def done(self) -> None: + ... + class Sub(Base): + def done(self) -> None: # Error reported by type checker + ... + @final + class Leaf: + ... + class Other(Leaf): # Error reported by type checker + ... + + There is no runtime checking of these properties. The decorator + sets the ``__final__`` attribute to ``True`` on the decorated object + to allow runtime introspection. + """ + try: + f.__final__ = True + except (AttributeError, TypeError): + # Skip the attribute silently if it is not writable. + # AttributeError happens if the object has __slots__ or a + # read-only property, TypeError if it's a builtin class. + pass + return f + + +def IntVar(name): + return typing.TypeVar(name) + + +# A Literal bug was fixed in 3.11.0, 3.10.1 and 3.9.8 +if sys.version_info >= (3, 10, 1): + Literal = typing.Literal +else: + def _flatten_literal_params(parameters): + """An internal helper for Literal creation: flatten Literals among parameters""" + params = [] + for p in parameters: + if isinstance(p, _LiteralGenericAlias): + params.extend(p.__args__) + else: + params.append(p) + return tuple(params) + + def _value_and_type_iter(params): + for p in params: + yield p, type(p) + + class _LiteralGenericAlias(typing._GenericAlias, _root=True): + def __eq__(self, other): + if not isinstance(other, _LiteralGenericAlias): + return NotImplemented + these_args_deduped = set(_value_and_type_iter(self.__args__)) + other_args_deduped = set(_value_and_type_iter(other.__args__)) + return these_args_deduped == other_args_deduped + + def __hash__(self): + return hash(frozenset(_value_and_type_iter(self.__args__))) + + class _LiteralForm(_ExtensionsSpecialForm, _root=True): + def __init__(self, doc: str): + self._name = 'Literal' + self._doc = self.__doc__ = doc + + def __getitem__(self, parameters): + if not isinstance(parameters, tuple): + parameters = (parameters,) + + parameters = _flatten_literal_params(parameters) + + val_type_pairs = list(_value_and_type_iter(parameters)) + try: + deduped_pairs = set(val_type_pairs) + except TypeError: + # unhashable parameters + pass + else: + # similar logic to typing._deduplicate on Python 3.9+ + if len(deduped_pairs) < len(val_type_pairs): + new_parameters = [] + for pair in val_type_pairs: + if pair in deduped_pairs: + new_parameters.append(pair[0]) + deduped_pairs.remove(pair) + assert not deduped_pairs, deduped_pairs + parameters = tuple(new_parameters) + + return _LiteralGenericAlias(self, parameters) + + Literal = _LiteralForm(doc="""\ + A type that can be used to indicate to type checkers + that the corresponding value has a value literally equivalent + to the provided parameter. For example: + + var: Literal[4] = 4 + + The type checker understands that 'var' is literally equal to + the value 4 and no other value. + + Literal[...] cannot be subclassed. There is no runtime + checking verifying that the parameter is actually a value + instead of a type.""") + + +_overload_dummy = typing._overload_dummy + + +if hasattr(typing, "get_overloads"): # 3.11+ + overload = typing.overload + get_overloads = typing.get_overloads + clear_overloads = typing.clear_overloads +else: + # {module: {qualname: {firstlineno: func}}} + _overload_registry = collections.defaultdict( + functools.partial(collections.defaultdict, dict) + ) + + def overload(func): + """Decorator for overloaded functions/methods. + + In a stub file, place two or more stub definitions for the same + function in a row, each decorated with @overload. For example: + + @overload + def utf8(value: None) -> None: ... + @overload + def utf8(value: bytes) -> bytes: ... + @overload + def utf8(value: str) -> bytes: ... + + In a non-stub file (i.e. a regular .py file), do the same but + follow it with an implementation. The implementation should *not* + be decorated with @overload. For example: + + @overload + def utf8(value: None) -> None: ... + @overload + def utf8(value: bytes) -> bytes: ... + @overload + def utf8(value: str) -> bytes: ... + def utf8(value): + # implementation goes here + + The overloads for a function can be retrieved at runtime using the + get_overloads() function. + """ + # classmethod and staticmethod + f = getattr(func, "__func__", func) + try: + _overload_registry[f.__module__][f.__qualname__][ + f.__code__.co_firstlineno + ] = func + except AttributeError: + # Not a normal function; ignore. + pass + return _overload_dummy + + def get_overloads(func): + """Return all defined overloads for *func* as a sequence.""" + # classmethod and staticmethod + f = getattr(func, "__func__", func) + if f.__module__ not in _overload_registry: + return [] + mod_dict = _overload_registry[f.__module__] + if f.__qualname__ not in mod_dict: + return [] + return list(mod_dict[f.__qualname__].values()) + + def clear_overloads(): + """Clear all overloads in the registry.""" + _overload_registry.clear() + + +# This is not a real generic class. Don't use outside annotations. +Type = typing.Type + +# Various ABCs mimicking those in collections.abc. +# A few are simply re-exported for completeness. +Awaitable = typing.Awaitable +Coroutine = typing.Coroutine +AsyncIterable = typing.AsyncIterable +AsyncIterator = typing.AsyncIterator +Deque = typing.Deque +DefaultDict = typing.DefaultDict +OrderedDict = typing.OrderedDict +Counter = typing.Counter +ChainMap = typing.ChainMap +Text = typing.Text +TYPE_CHECKING = typing.TYPE_CHECKING + + +if sys.version_info >= (3, 13, 0, "beta"): + from typing import AsyncContextManager, AsyncGenerator, ContextManager, Generator +else: + def _is_dunder(attr): + return attr.startswith('__') and attr.endswith('__') + + # Python <3.9 doesn't have typing._SpecialGenericAlias + _special_generic_alias_base = getattr( + typing, "_SpecialGenericAlias", typing._GenericAlias + ) + + class _SpecialGenericAlias(_special_generic_alias_base, _root=True): + def __init__(self, origin, nparams, *, inst=True, name=None, defaults=()): + if _special_generic_alias_base is typing._GenericAlias: + # Python <3.9 + self.__origin__ = origin + self._nparams = nparams + super().__init__(origin, nparams, special=True, inst=inst, name=name) + else: + # Python >= 3.9 + super().__init__(origin, nparams, inst=inst, name=name) + self._defaults = defaults + + def __setattr__(self, attr, val): + allowed_attrs = {'_name', '_inst', '_nparams', '_defaults'} + if _special_generic_alias_base is typing._GenericAlias: + # Python <3.9 + allowed_attrs.add("__origin__") + if _is_dunder(attr) or attr in allowed_attrs: + object.__setattr__(self, attr, val) + else: + setattr(self.__origin__, attr, val) + + @typing._tp_cache + def __getitem__(self, params): + if not isinstance(params, tuple): + params = (params,) + msg = "Parameters to generic types must be types." + params = tuple(typing._type_check(p, msg) for p in params) + if ( + self._defaults + and len(params) < self._nparams + and len(params) + len(self._defaults) >= self._nparams + ): + params = (*params, *self._defaults[len(params) - self._nparams:]) + actual_len = len(params) + + if actual_len != self._nparams: + if self._defaults: + expected = f"at least {self._nparams - len(self._defaults)}" + else: + expected = str(self._nparams) + if not self._nparams: + raise TypeError(f"{self} is not a generic class") + raise TypeError( + f"Too {'many' if actual_len > self._nparams else 'few'}" + f" arguments for {self};" + f" actual {actual_len}, expected {expected}" + ) + return self.copy_with(params) + + _NoneType = type(None) + Generator = _SpecialGenericAlias( + collections.abc.Generator, 3, defaults=(_NoneType, _NoneType) + ) + AsyncGenerator = _SpecialGenericAlias( + collections.abc.AsyncGenerator, 2, defaults=(_NoneType,) + ) + ContextManager = _SpecialGenericAlias( + contextlib.AbstractContextManager, + 2, + name="ContextManager", + defaults=(typing.Optional[bool],) + ) + AsyncContextManager = _SpecialGenericAlias( + contextlib.AbstractAsyncContextManager, + 2, + name="AsyncContextManager", + defaults=(typing.Optional[bool],) + ) + + +_PROTO_ALLOWLIST = { + 'collections.abc': [ + 'Callable', 'Awaitable', 'Iterable', 'Iterator', 'AsyncIterable', + 'Hashable', 'Sized', 'Container', 'Collection', 'Reversible', 'Buffer', + ], + 'contextlib': ['AbstractContextManager', 'AbstractAsyncContextManager'], + 'typing_extensions': ['Buffer'], +} + + +_EXCLUDED_ATTRS = frozenset(typing.EXCLUDED_ATTRIBUTES) | { + "__match_args__", "__protocol_attrs__", "__non_callable_proto_members__", + "__final__", +} + + +def _get_protocol_attrs(cls): + attrs = set() + for base in cls.__mro__[:-1]: # without object + if base.__name__ in {'Protocol', 'Generic'}: + continue + annotations = getattr(base, '__annotations__', {}) + for attr in (*base.__dict__, *annotations): + if (not attr.startswith('_abc_') and attr not in _EXCLUDED_ATTRS): + attrs.add(attr) + return attrs + + +def _caller(depth=2): + try: + return sys._getframe(depth).f_globals.get('__name__', '__main__') + except (AttributeError, ValueError): # For platforms without _getframe() + return None + + +# `__match_args__` attribute was removed from protocol members in 3.13, +# we want to backport this change to older Python versions. +if sys.version_info >= (3, 13): + Protocol = typing.Protocol +else: + def _allow_reckless_class_checks(depth=3): + """Allow instance and class checks for special stdlib modules. + The abc and functools modules indiscriminately call isinstance() and + issubclass() on the whole MRO of a user class, which may contain protocols. + """ + return _caller(depth) in {'abc', 'functools', None} + + def _no_init(self, *args, **kwargs): + if type(self)._is_protocol: + raise TypeError('Protocols cannot be instantiated') + + def _type_check_issubclass_arg_1(arg): + """Raise TypeError if `arg` is not an instance of `type` + in `issubclass(arg, )`. + + In most cases, this is verified by type.__subclasscheck__. + Checking it again unnecessarily would slow down issubclass() checks, + so, we don't perform this check unless we absolutely have to. + + For various error paths, however, + we want to ensure that *this* error message is shown to the user + where relevant, rather than a typing.py-specific error message. + """ + if not isinstance(arg, type): + # Same error message as for issubclass(1, int). + raise TypeError('issubclass() arg 1 must be a class') + + # Inheriting from typing._ProtocolMeta isn't actually desirable, + # but is necessary to allow typing.Protocol and typing_extensions.Protocol + # to mix without getting TypeErrors about "metaclass conflict" + class _ProtocolMeta(type(typing.Protocol)): + # This metaclass is somewhat unfortunate, + # but is necessary for several reasons... + # + # NOTE: DO NOT call super() in any methods in this class + # That would call the methods on typing._ProtocolMeta on Python 3.8-3.11 + # and those are slow + def __new__(mcls, name, bases, namespace, **kwargs): + if name == "Protocol" and len(bases) < 2: + pass + elif {Protocol, typing.Protocol} & set(bases): + for base in bases: + if not ( + base in {object, typing.Generic, Protocol, typing.Protocol} + or base.__name__ in _PROTO_ALLOWLIST.get(base.__module__, []) + or is_protocol(base) + ): + raise TypeError( + f"Protocols can only inherit from other protocols, " + f"got {base!r}" + ) + return abc.ABCMeta.__new__(mcls, name, bases, namespace, **kwargs) + + def __init__(cls, *args, **kwargs): + abc.ABCMeta.__init__(cls, *args, **kwargs) + if getattr(cls, "_is_protocol", False): + cls.__protocol_attrs__ = _get_protocol_attrs(cls) + + def __subclasscheck__(cls, other): + if cls is Protocol: + return type.__subclasscheck__(cls, other) + if ( + getattr(cls, '_is_protocol', False) + and not _allow_reckless_class_checks() + ): + if not getattr(cls, '_is_runtime_protocol', False): + _type_check_issubclass_arg_1(other) + raise TypeError( + "Instance and class checks can only be used with " + "@runtime_checkable protocols" + ) + if ( + # this attribute is set by @runtime_checkable: + cls.__non_callable_proto_members__ + and cls.__dict__.get("__subclasshook__") is _proto_hook + ): + _type_check_issubclass_arg_1(other) + non_method_attrs = sorted(cls.__non_callable_proto_members__) + raise TypeError( + "Protocols with non-method members don't support issubclass()." + f" Non-method members: {str(non_method_attrs)[1:-1]}." + ) + return abc.ABCMeta.__subclasscheck__(cls, other) + + def __instancecheck__(cls, instance): + # We need this method for situations where attributes are + # assigned in __init__. + if cls is Protocol: + return type.__instancecheck__(cls, instance) + if not getattr(cls, "_is_protocol", False): + # i.e., it's a concrete subclass of a protocol + return abc.ABCMeta.__instancecheck__(cls, instance) + + if ( + not getattr(cls, '_is_runtime_protocol', False) and + not _allow_reckless_class_checks() + ): + raise TypeError("Instance and class checks can only be used with" + " @runtime_checkable protocols") + + if abc.ABCMeta.__instancecheck__(cls, instance): + return True + + for attr in cls.__protocol_attrs__: + try: + val = inspect.getattr_static(instance, attr) + except AttributeError: + break + # this attribute is set by @runtime_checkable: + if val is None and attr not in cls.__non_callable_proto_members__: + break + else: + return True + + return False + + def __eq__(cls, other): + # Hack so that typing.Generic.__class_getitem__ + # treats typing_extensions.Protocol + # as equivalent to typing.Protocol + if abc.ABCMeta.__eq__(cls, other) is True: + return True + return cls is Protocol and other is typing.Protocol + + # This has to be defined, or the abc-module cache + # complains about classes with this metaclass being unhashable, + # if we define only __eq__! + def __hash__(cls) -> int: + return type.__hash__(cls) + + @classmethod + def _proto_hook(cls, other): + if not cls.__dict__.get('_is_protocol', False): + return NotImplemented + + for attr in cls.__protocol_attrs__: + for base in other.__mro__: + # Check if the members appears in the class dictionary... + if attr in base.__dict__: + if base.__dict__[attr] is None: + return NotImplemented + break + + # ...or in annotations, if it is a sub-protocol. + annotations = getattr(base, '__annotations__', {}) + if ( + isinstance(annotations, collections.abc.Mapping) + and attr in annotations + and is_protocol(other) + ): + break + else: + return NotImplemented + return True + + class Protocol(typing.Generic, metaclass=_ProtocolMeta): + __doc__ = typing.Protocol.__doc__ + __slots__ = () + _is_protocol = True + _is_runtime_protocol = False + + def __init_subclass__(cls, *args, **kwargs): + super().__init_subclass__(*args, **kwargs) + + # Determine if this is a protocol or a concrete subclass. + if not cls.__dict__.get('_is_protocol', False): + cls._is_protocol = any(b is Protocol for b in cls.__bases__) + + # Set (or override) the protocol subclass hook. + if '__subclasshook__' not in cls.__dict__: + cls.__subclasshook__ = _proto_hook + + # Prohibit instantiation for protocol classes + if cls._is_protocol and cls.__init__ is Protocol.__init__: + cls.__init__ = _no_init + + +if sys.version_info >= (3, 13): + runtime_checkable = typing.runtime_checkable +else: + def runtime_checkable(cls): + """Mark a protocol class as a runtime protocol. + + Such protocol can be used with isinstance() and issubclass(). + Raise TypeError if applied to a non-protocol class. + This allows a simple-minded structural check very similar to + one trick ponies in collections.abc such as Iterable. + + For example:: + + @runtime_checkable + class Closable(Protocol): + def close(self): ... + + assert isinstance(open('/some/file'), Closable) + + Warning: this will check only the presence of the required methods, + not their type signatures! + """ + if not issubclass(cls, typing.Generic) or not getattr(cls, '_is_protocol', False): + raise TypeError(f'@runtime_checkable can be only applied to protocol classes,' + f' got {cls!r}') + cls._is_runtime_protocol = True + + # typing.Protocol classes on <=3.11 break if we execute this block, + # because typing.Protocol classes on <=3.11 don't have a + # `__protocol_attrs__` attribute, and this block relies on the + # `__protocol_attrs__` attribute. Meanwhile, typing.Protocol classes on 3.12.2+ + # break if we *don't* execute this block, because *they* assume that all + # protocol classes have a `__non_callable_proto_members__` attribute + # (which this block sets) + if isinstance(cls, _ProtocolMeta) or sys.version_info >= (3, 12, 2): + # PEP 544 prohibits using issubclass() + # with protocols that have non-method members. + # See gh-113320 for why we compute this attribute here, + # rather than in `_ProtocolMeta.__init__` + cls.__non_callable_proto_members__ = set() + for attr in cls.__protocol_attrs__: + try: + is_callable = callable(getattr(cls, attr, None)) + except Exception as e: + raise TypeError( + f"Failed to determine whether protocol member {attr!r} " + "is a method member" + ) from e + else: + if not is_callable: + cls.__non_callable_proto_members__.add(attr) + + return cls + + +# The "runtime" alias exists for backwards compatibility. +runtime = runtime_checkable + + +# Our version of runtime-checkable protocols is faster on Python 3.8-3.11 +if sys.version_info >= (3, 12): + SupportsInt = typing.SupportsInt + SupportsFloat = typing.SupportsFloat + SupportsComplex = typing.SupportsComplex + SupportsBytes = typing.SupportsBytes + SupportsIndex = typing.SupportsIndex + SupportsAbs = typing.SupportsAbs + SupportsRound = typing.SupportsRound +else: + @runtime_checkable + class SupportsInt(Protocol): + """An ABC with one abstract method __int__.""" + __slots__ = () + + @abc.abstractmethod + def __int__(self) -> int: + pass + + @runtime_checkable + class SupportsFloat(Protocol): + """An ABC with one abstract method __float__.""" + __slots__ = () + + @abc.abstractmethod + def __float__(self) -> float: + pass + + @runtime_checkable + class SupportsComplex(Protocol): + """An ABC with one abstract method __complex__.""" + __slots__ = () + + @abc.abstractmethod + def __complex__(self) -> complex: + pass + + @runtime_checkable + class SupportsBytes(Protocol): + """An ABC with one abstract method __bytes__.""" + __slots__ = () + + @abc.abstractmethod + def __bytes__(self) -> bytes: + pass + + @runtime_checkable + class SupportsIndex(Protocol): + __slots__ = () + + @abc.abstractmethod + def __index__(self) -> int: + pass + + @runtime_checkable + class SupportsAbs(Protocol[T_co]): + """ + An ABC with one abstract method __abs__ that is covariant in its return type. + """ + __slots__ = () + + @abc.abstractmethod + def __abs__(self) -> T_co: + pass + + @runtime_checkable + class SupportsRound(Protocol[T_co]): + """ + An ABC with one abstract method __round__ that is covariant in its return type. + """ + __slots__ = () + + @abc.abstractmethod + def __round__(self, ndigits: int = 0) -> T_co: + pass + + +def _ensure_subclassable(mro_entries): + def inner(func): + if sys.implementation.name == "pypy" and sys.version_info < (3, 9): + cls_dict = { + "__call__": staticmethod(func), + "__mro_entries__": staticmethod(mro_entries) + } + t = type(func.__name__, (), cls_dict) + return functools.update_wrapper(t(), func) + else: + func.__mro_entries__ = mro_entries + return func + return inner + + +# Update this to something like >=3.13.0b1 if and when +# PEP 728 is implemented in CPython +_PEP_728_IMPLEMENTED = False + +if _PEP_728_IMPLEMENTED: + # The standard library TypedDict in Python 3.8 does not store runtime information + # about which (if any) keys are optional. See https://bugs.python.org/issue38834 + # The standard library TypedDict in Python 3.9.0/1 does not honour the "total" + # keyword with old-style TypedDict(). See https://bugs.python.org/issue42059 + # The standard library TypedDict below Python 3.11 does not store runtime + # information about optional and required keys when using Required or NotRequired. + # Generic TypedDicts are also impossible using typing.TypedDict on Python <3.11. + # Aaaand on 3.12 we add __orig_bases__ to TypedDict + # to enable better runtime introspection. + # On 3.13 we deprecate some odd ways of creating TypedDicts. + # Also on 3.13, PEP 705 adds the ReadOnly[] qualifier. + # PEP 728 (still pending) makes more changes. + TypedDict = typing.TypedDict + _TypedDictMeta = typing._TypedDictMeta + is_typeddict = typing.is_typeddict +else: + # 3.10.0 and later + _TAKES_MODULE = "module" in inspect.signature(typing._type_check).parameters + + def _get_typeddict_qualifiers(annotation_type): + while True: + annotation_origin = get_origin(annotation_type) + if annotation_origin is Annotated: + annotation_args = get_args(annotation_type) + if annotation_args: + annotation_type = annotation_args[0] + else: + break + elif annotation_origin is Required: + yield Required + annotation_type, = get_args(annotation_type) + elif annotation_origin is NotRequired: + yield NotRequired + annotation_type, = get_args(annotation_type) + elif annotation_origin is ReadOnly: + yield ReadOnly + annotation_type, = get_args(annotation_type) + else: + break + + class _TypedDictMeta(type): + def __new__(cls, name, bases, ns, *, total=True, closed=False): + """Create new typed dict class object. + + This method is called when TypedDict is subclassed, + or when TypedDict is instantiated. This way + TypedDict supports all three syntax forms described in its docstring. + Subclasses and instances of TypedDict return actual dictionaries. + """ + for base in bases: + if type(base) is not _TypedDictMeta and base is not typing.Generic: + raise TypeError('cannot inherit from both a TypedDict type ' + 'and a non-TypedDict base class') + + if any(issubclass(b, typing.Generic) for b in bases): + generic_base = (typing.Generic,) + else: + generic_base = () + + # typing.py generally doesn't let you inherit from plain Generic, unless + # the name of the class happens to be "Protocol" + tp_dict = type.__new__(_TypedDictMeta, "Protocol", (*generic_base, dict), ns) + tp_dict.__name__ = name + if tp_dict.__qualname__ == "Protocol": + tp_dict.__qualname__ = name + + if not hasattr(tp_dict, '__orig_bases__'): + tp_dict.__orig_bases__ = bases + + annotations = {} + if "__annotations__" in ns: + own_annotations = ns["__annotations__"] + elif "__annotate__" in ns: + # TODO: Use inspect.VALUE here, and make the annotations lazily evaluated + own_annotations = ns["__annotate__"](1) + else: + own_annotations = {} + msg = "TypedDict('Name', {f0: t0, f1: t1, ...}); each t must be a type" + if _TAKES_MODULE: + own_annotations = { + n: typing._type_check(tp, msg, module=tp_dict.__module__) + for n, tp in own_annotations.items() + } + else: + own_annotations = { + n: typing._type_check(tp, msg) + for n, tp in own_annotations.items() + } + required_keys = set() + optional_keys = set() + readonly_keys = set() + mutable_keys = set() + extra_items_type = None + + for base in bases: + base_dict = base.__dict__ + + annotations.update(base_dict.get('__annotations__', {})) + required_keys.update(base_dict.get('__required_keys__', ())) + optional_keys.update(base_dict.get('__optional_keys__', ())) + readonly_keys.update(base_dict.get('__readonly_keys__', ())) + mutable_keys.update(base_dict.get('__mutable_keys__', ())) + base_extra_items_type = base_dict.get('__extra_items__', None) + if base_extra_items_type is not None: + extra_items_type = base_extra_items_type + + if closed and extra_items_type is None: + extra_items_type = Never + if closed and "__extra_items__" in own_annotations: + annotation_type = own_annotations.pop("__extra_items__") + qualifiers = set(_get_typeddict_qualifiers(annotation_type)) + if Required in qualifiers: + raise TypeError( + "Special key __extra_items__ does not support " + "Required" + ) + if NotRequired in qualifiers: + raise TypeError( + "Special key __extra_items__ does not support " + "NotRequired" + ) + extra_items_type = annotation_type + + annotations.update(own_annotations) + for annotation_key, annotation_type in own_annotations.items(): + qualifiers = set(_get_typeddict_qualifiers(annotation_type)) + + if Required in qualifiers: + required_keys.add(annotation_key) + elif NotRequired in qualifiers: + optional_keys.add(annotation_key) + elif total: + required_keys.add(annotation_key) + else: + optional_keys.add(annotation_key) + if ReadOnly in qualifiers: + mutable_keys.discard(annotation_key) + readonly_keys.add(annotation_key) + else: + mutable_keys.add(annotation_key) + readonly_keys.discard(annotation_key) + + tp_dict.__annotations__ = annotations + tp_dict.__required_keys__ = frozenset(required_keys) + tp_dict.__optional_keys__ = frozenset(optional_keys) + tp_dict.__readonly_keys__ = frozenset(readonly_keys) + tp_dict.__mutable_keys__ = frozenset(mutable_keys) + if not hasattr(tp_dict, '__total__'): + tp_dict.__total__ = total + tp_dict.__closed__ = closed + tp_dict.__extra_items__ = extra_items_type + return tp_dict + + __call__ = dict # static method + + def __subclasscheck__(cls, other): + # Typed dicts are only for static structural subtyping. + raise TypeError('TypedDict does not support instance and class checks') + + __instancecheck__ = __subclasscheck__ + + _TypedDict = type.__new__(_TypedDictMeta, 'TypedDict', (), {}) + + @_ensure_subclassable(lambda bases: (_TypedDict,)) + def TypedDict(typename, fields=_marker, /, *, total=True, closed=False, **kwargs): + """A simple typed namespace. At runtime it is equivalent to a plain dict. + + TypedDict creates a dictionary type such that a type checker will expect all + instances to have a certain set of keys, where each key is + associated with a value of a consistent type. This expectation + is not checked at runtime. + + Usage:: + + class Point2D(TypedDict): + x: int + y: int + label: str + + a: Point2D = {'x': 1, 'y': 2, 'label': 'good'} # OK + b: Point2D = {'z': 3, 'label': 'bad'} # Fails type check + + assert Point2D(x=1, y=2, label='first') == dict(x=1, y=2, label='first') + + The type info can be accessed via the Point2D.__annotations__ dict, and + the Point2D.__required_keys__ and Point2D.__optional_keys__ frozensets. + TypedDict supports an additional equivalent form:: + + Point2D = TypedDict('Point2D', {'x': int, 'y': int, 'label': str}) + + By default, all keys must be present in a TypedDict. It is possible + to override this by specifying totality:: + + class Point2D(TypedDict, total=False): + x: int + y: int + + This means that a Point2D TypedDict can have any of the keys omitted. A type + checker is only expected to support a literal False or True as the value of + the total argument. True is the default, and makes all items defined in the + class body be required. + + The Required and NotRequired special forms can also be used to mark + individual keys as being required or not required:: + + class Point2D(TypedDict): + x: int # the "x" key must always be present (Required is the default) + y: NotRequired[int] # the "y" key can be omitted + + See PEP 655 for more details on Required and NotRequired. + """ + if fields is _marker or fields is None: + if fields is _marker: + deprecated_thing = "Failing to pass a value for the 'fields' parameter" + else: + deprecated_thing = "Passing `None` as the 'fields' parameter" + + example = f"`{typename} = TypedDict({typename!r}, {{}})`" + deprecation_msg = ( + f"{deprecated_thing} is deprecated and will be disallowed in " + "Python 3.15. To create a TypedDict class with 0 fields " + "using the functional syntax, pass an empty dictionary, e.g. " + ) + example + "." + warnings.warn(deprecation_msg, DeprecationWarning, stacklevel=2) + if closed is not False and closed is not True: + kwargs["closed"] = closed + closed = False + fields = kwargs + elif kwargs: + raise TypeError("TypedDict takes either a dict or keyword arguments," + " but not both") + if kwargs: + if sys.version_info >= (3, 13): + raise TypeError("TypedDict takes no keyword arguments") + warnings.warn( + "The kwargs-based syntax for TypedDict definitions is deprecated " + "in Python 3.11, will be removed in Python 3.13, and may not be " + "understood by third-party type checkers.", + DeprecationWarning, + stacklevel=2, + ) + + ns = {'__annotations__': dict(fields)} + module = _caller() + if module is not None: + # Setting correct module is necessary to make typed dict classes pickleable. + ns['__module__'] = module + + td = _TypedDictMeta(typename, (), ns, total=total, closed=closed) + td.__orig_bases__ = (TypedDict,) + return td + + if hasattr(typing, "_TypedDictMeta"): + _TYPEDDICT_TYPES = (typing._TypedDictMeta, _TypedDictMeta) + else: + _TYPEDDICT_TYPES = (_TypedDictMeta,) + + def is_typeddict(tp): + """Check if an annotation is a TypedDict class + + For example:: + class Film(TypedDict): + title: str + year: int + + is_typeddict(Film) # => True + is_typeddict(Union[list, str]) # => False + """ + # On 3.8, this would otherwise return True + if hasattr(typing, "TypedDict") and tp is typing.TypedDict: + return False + return isinstance(tp, _TYPEDDICT_TYPES) + + +if hasattr(typing, "assert_type"): + assert_type = typing.assert_type + +else: + def assert_type(val, typ, /): + """Assert (to the type checker) that the value is of the given type. + + When the type checker encounters a call to assert_type(), it + emits an error if the value is not of the specified type:: + + def greet(name: str) -> None: + assert_type(name, str) # ok + assert_type(name, int) # type checker error + + At runtime this returns the first argument unchanged and otherwise + does nothing. + """ + return val + + +if hasattr(typing, "ReadOnly"): # 3.13+ + get_type_hints = typing.get_type_hints +else: # <=3.13 + # replaces _strip_annotations() + def _strip_extras(t): + """Strips Annotated, Required and NotRequired from a given type.""" + if isinstance(t, _AnnotatedAlias): + return _strip_extras(t.__origin__) + if hasattr(t, "__origin__") and t.__origin__ in (Required, NotRequired, ReadOnly): + return _strip_extras(t.__args__[0]) + if isinstance(t, typing._GenericAlias): + stripped_args = tuple(_strip_extras(a) for a in t.__args__) + if stripped_args == t.__args__: + return t + return t.copy_with(stripped_args) + if hasattr(_types, "GenericAlias") and isinstance(t, _types.GenericAlias): + stripped_args = tuple(_strip_extras(a) for a in t.__args__) + if stripped_args == t.__args__: + return t + return _types.GenericAlias(t.__origin__, stripped_args) + if hasattr(_types, "UnionType") and isinstance(t, _types.UnionType): + stripped_args = tuple(_strip_extras(a) for a in t.__args__) + if stripped_args == t.__args__: + return t + return functools.reduce(operator.or_, stripped_args) + + return t + + def get_type_hints(obj, globalns=None, localns=None, include_extras=False): + """Return type hints for an object. + + This is often the same as obj.__annotations__, but it handles + forward references encoded as string literals, adds Optional[t] if a + default value equal to None is set and recursively replaces all + 'Annotated[T, ...]', 'Required[T]' or 'NotRequired[T]' with 'T' + (unless 'include_extras=True'). + + The argument may be a module, class, method, or function. The annotations + are returned as a dictionary. For classes, annotations include also + inherited members. + + TypeError is raised if the argument is not of a type that can contain + annotations, and an empty dictionary is returned if no annotations are + present. + + BEWARE -- the behavior of globalns and localns is counterintuitive + (unless you are familiar with how eval() and exec() work). The + search order is locals first, then globals. + + - If no dict arguments are passed, an attempt is made to use the + globals from obj (or the respective module's globals for classes), + and these are also used as the locals. If the object does not appear + to have globals, an empty dictionary is used. + + - If one dict argument is passed, it is used for both globals and + locals. + + - If two dict arguments are passed, they specify globals and + locals, respectively. + """ + if hasattr(typing, "Annotated"): # 3.9+ + hint = typing.get_type_hints( + obj, globalns=globalns, localns=localns, include_extras=True + ) + else: # 3.8 + hint = typing.get_type_hints(obj, globalns=globalns, localns=localns) + if include_extras: + return hint + return {k: _strip_extras(t) for k, t in hint.items()} + + +# Python 3.9+ has PEP 593 (Annotated) +if hasattr(typing, 'Annotated'): + Annotated = typing.Annotated + # Not exported and not a public API, but needed for get_origin() and get_args() + # to work. + _AnnotatedAlias = typing._AnnotatedAlias +# 3.8 +else: + class _AnnotatedAlias(typing._GenericAlias, _root=True): + """Runtime representation of an annotated type. + + At its core 'Annotated[t, dec1, dec2, ...]' is an alias for the type 't' + with extra annotations. The alias behaves like a normal typing alias, + instantiating is the same as instantiating the underlying type, binding + it to types is also the same. + """ + def __init__(self, origin, metadata): + if isinstance(origin, _AnnotatedAlias): + metadata = origin.__metadata__ + metadata + origin = origin.__origin__ + super().__init__(origin, origin) + self.__metadata__ = metadata + + def copy_with(self, params): + assert len(params) == 1 + new_type = params[0] + return _AnnotatedAlias(new_type, self.__metadata__) + + def __repr__(self): + return (f"typing_extensions.Annotated[{typing._type_repr(self.__origin__)}, " + f"{', '.join(repr(a) for a in self.__metadata__)}]") + + def __reduce__(self): + return operator.getitem, ( + Annotated, (self.__origin__, *self.__metadata__) + ) + + def __eq__(self, other): + if not isinstance(other, _AnnotatedAlias): + return NotImplemented + if self.__origin__ != other.__origin__: + return False + return self.__metadata__ == other.__metadata__ + + def __hash__(self): + return hash((self.__origin__, self.__metadata__)) + + class Annotated: + """Add context specific metadata to a type. + + Example: Annotated[int, runtime_check.Unsigned] indicates to the + hypothetical runtime_check module that this type is an unsigned int. + Every other consumer of this type can ignore this metadata and treat + this type as int. + + The first argument to Annotated must be a valid type (and will be in + the __origin__ field), the remaining arguments are kept as a tuple in + the __extra__ field. + + Details: + + - It's an error to call `Annotated` with less than two arguments. + - Nested Annotated are flattened:: + + Annotated[Annotated[T, Ann1, Ann2], Ann3] == Annotated[T, Ann1, Ann2, Ann3] + + - Instantiating an annotated type is equivalent to instantiating the + underlying type:: + + Annotated[C, Ann1](5) == C(5) + + - Annotated can be used as a generic type alias:: + + Optimized = Annotated[T, runtime.Optimize()] + Optimized[int] == Annotated[int, runtime.Optimize()] + + OptimizedList = Annotated[List[T], runtime.Optimize()] + OptimizedList[int] == Annotated[List[int], runtime.Optimize()] + """ + + __slots__ = () + + def __new__(cls, *args, **kwargs): + raise TypeError("Type Annotated cannot be instantiated.") + + @typing._tp_cache + def __class_getitem__(cls, params): + if not isinstance(params, tuple) or len(params) < 2: + raise TypeError("Annotated[...] should be used " + "with at least two arguments (a type and an " + "annotation).") + allowed_special_forms = (ClassVar, Final) + if get_origin(params[0]) in allowed_special_forms: + origin = params[0] + else: + msg = "Annotated[t, ...]: t must be a type." + origin = typing._type_check(params[0], msg) + metadata = tuple(params[1:]) + return _AnnotatedAlias(origin, metadata) + + def __init_subclass__(cls, *args, **kwargs): + raise TypeError( + f"Cannot subclass {cls.__module__}.Annotated" + ) + +# Python 3.8 has get_origin() and get_args() but those implementations aren't +# Annotated-aware, so we can't use those. Python 3.9's versions don't support +# ParamSpecArgs and ParamSpecKwargs, so only Python 3.10's versions will do. +if sys.version_info[:2] >= (3, 10): + get_origin = typing.get_origin + get_args = typing.get_args +# 3.8-3.9 +else: + try: + # 3.9+ + from typing import _BaseGenericAlias + except ImportError: + _BaseGenericAlias = typing._GenericAlias + try: + # 3.9+ + from typing import GenericAlias as _typing_GenericAlias + except ImportError: + _typing_GenericAlias = typing._GenericAlias + + def get_origin(tp): + """Get the unsubscripted version of a type. + + This supports generic types, Callable, Tuple, Union, Literal, Final, ClassVar + and Annotated. Return None for unsupported types. Examples:: + + get_origin(Literal[42]) is Literal + get_origin(int) is None + get_origin(ClassVar[int]) is ClassVar + get_origin(Generic) is Generic + get_origin(Generic[T]) is Generic + get_origin(Union[T, int]) is Union + get_origin(List[Tuple[T, T]][int]) == list + get_origin(P.args) is P + """ + if isinstance(tp, _AnnotatedAlias): + return Annotated + if isinstance(tp, (typing._GenericAlias, _typing_GenericAlias, _BaseGenericAlias, + ParamSpecArgs, ParamSpecKwargs)): + return tp.__origin__ + if tp is typing.Generic: + return typing.Generic + return None + + def get_args(tp): + """Get type arguments with all substitutions performed. + + For unions, basic simplifications used by Union constructor are performed. + Examples:: + get_args(Dict[str, int]) == (str, int) + get_args(int) == () + get_args(Union[int, Union[T, int], str][int]) == (int, str) + get_args(Union[int, Tuple[T, int]][str]) == (int, Tuple[str, int]) + get_args(Callable[[], T][int]) == ([], int) + """ + if isinstance(tp, _AnnotatedAlias): + return (tp.__origin__, *tp.__metadata__) + if isinstance(tp, (typing._GenericAlias, _typing_GenericAlias)): + if getattr(tp, "_special", False): + return () + res = tp.__args__ + if get_origin(tp) is collections.abc.Callable and res[0] is not Ellipsis: + res = (list(res[:-1]), res[-1]) + return res + return () + + +# 3.10+ +if hasattr(typing, 'TypeAlias'): + TypeAlias = typing.TypeAlias +# 3.9 +elif sys.version_info[:2] >= (3, 9): + @_ExtensionsSpecialForm + def TypeAlias(self, parameters): + """Special marker indicating that an assignment should + be recognized as a proper type alias definition by type + checkers. + + For example:: + + Predicate: TypeAlias = Callable[..., bool] + + It's invalid when used anywhere except as in the example above. + """ + raise TypeError(f"{self} is not subscriptable") +# 3.8 +else: + TypeAlias = _ExtensionsSpecialForm( + 'TypeAlias', + doc="""Special marker indicating that an assignment should + be recognized as a proper type alias definition by type + checkers. + + For example:: + + Predicate: TypeAlias = Callable[..., bool] + + It's invalid when used anywhere except as in the example + above.""" + ) + + +if hasattr(typing, "NoDefault"): + NoDefault = typing.NoDefault +else: + class NoDefaultTypeMeta(type): + def __setattr__(cls, attr, value): + # TypeError is consistent with the behavior of NoneType + raise TypeError( + f"cannot set {attr!r} attribute of immutable type {cls.__name__!r}" + ) + + class NoDefaultType(metaclass=NoDefaultTypeMeta): + """The type of the NoDefault singleton.""" + + __slots__ = () + + def __new__(cls): + return globals().get("NoDefault") or object.__new__(cls) + + def __repr__(self): + return "typing_extensions.NoDefault" + + def __reduce__(self): + return "NoDefault" + + NoDefault = NoDefaultType() + del NoDefaultType, NoDefaultTypeMeta + + +def _set_default(type_param, default): + type_param.has_default = lambda: default is not NoDefault + type_param.__default__ = default + + +def _set_module(typevarlike): + # for pickling: + def_mod = _caller(depth=3) + if def_mod != 'typing_extensions': + typevarlike.__module__ = def_mod + + +class _DefaultMixin: + """Mixin for TypeVarLike defaults.""" + + __slots__ = () + __init__ = _set_default + + +# Classes using this metaclass must provide a _backported_typevarlike ClassVar +class _TypeVarLikeMeta(type): + def __instancecheck__(cls, __instance: Any) -> bool: + return isinstance(__instance, cls._backported_typevarlike) + + +if _PEP_696_IMPLEMENTED: + from typing import TypeVar +else: + # Add default and infer_variance parameters from PEP 696 and 695 + class TypeVar(metaclass=_TypeVarLikeMeta): + """Type variable.""" + + _backported_typevarlike = typing.TypeVar + + def __new__(cls, name, *constraints, bound=None, + covariant=False, contravariant=False, + default=NoDefault, infer_variance=False): + if hasattr(typing, "TypeAliasType"): + # PEP 695 implemented (3.12+), can pass infer_variance to typing.TypeVar + typevar = typing.TypeVar(name, *constraints, bound=bound, + covariant=covariant, contravariant=contravariant, + infer_variance=infer_variance) + else: + typevar = typing.TypeVar(name, *constraints, bound=bound, + covariant=covariant, contravariant=contravariant) + if infer_variance and (covariant or contravariant): + raise ValueError("Variance cannot be specified with infer_variance.") + typevar.__infer_variance__ = infer_variance + + _set_default(typevar, default) + _set_module(typevar) + + def _tvar_prepare_subst(alias, args): + if ( + typevar.has_default() + and alias.__parameters__.index(typevar) == len(args) + ): + args += (typevar.__default__,) + return args + + typevar.__typing_prepare_subst__ = _tvar_prepare_subst + return typevar + + def __init_subclass__(cls) -> None: + raise TypeError(f"type '{__name__}.TypeVar' is not an acceptable base type") + + +# Python 3.10+ has PEP 612 +if hasattr(typing, 'ParamSpecArgs'): + ParamSpecArgs = typing.ParamSpecArgs + ParamSpecKwargs = typing.ParamSpecKwargs +# 3.8-3.9 +else: + class _Immutable: + """Mixin to indicate that object should not be copied.""" + __slots__ = () + + def __copy__(self): + return self + + def __deepcopy__(self, memo): + return self + + class ParamSpecArgs(_Immutable): + """The args for a ParamSpec object. + + Given a ParamSpec object P, P.args is an instance of ParamSpecArgs. + + ParamSpecArgs objects have a reference back to their ParamSpec: + + P.args.__origin__ is P + + This type is meant for runtime introspection and has no special meaning to + static type checkers. + """ + def __init__(self, origin): + self.__origin__ = origin + + def __repr__(self): + return f"{self.__origin__.__name__}.args" + + def __eq__(self, other): + if not isinstance(other, ParamSpecArgs): + return NotImplemented + return self.__origin__ == other.__origin__ + + class ParamSpecKwargs(_Immutable): + """The kwargs for a ParamSpec object. + + Given a ParamSpec object P, P.kwargs is an instance of ParamSpecKwargs. + + ParamSpecKwargs objects have a reference back to their ParamSpec: + + P.kwargs.__origin__ is P + + This type is meant for runtime introspection and has no special meaning to + static type checkers. + """ + def __init__(self, origin): + self.__origin__ = origin + + def __repr__(self): + return f"{self.__origin__.__name__}.kwargs" + + def __eq__(self, other): + if not isinstance(other, ParamSpecKwargs): + return NotImplemented + return self.__origin__ == other.__origin__ + + +if _PEP_696_IMPLEMENTED: + from typing import ParamSpec + +# 3.10+ +elif hasattr(typing, 'ParamSpec'): + + # Add default parameter - PEP 696 + class ParamSpec(metaclass=_TypeVarLikeMeta): + """Parameter specification.""" + + _backported_typevarlike = typing.ParamSpec + + def __new__(cls, name, *, bound=None, + covariant=False, contravariant=False, + infer_variance=False, default=NoDefault): + if hasattr(typing, "TypeAliasType"): + # PEP 695 implemented, can pass infer_variance to typing.TypeVar + paramspec = typing.ParamSpec(name, bound=bound, + covariant=covariant, + contravariant=contravariant, + infer_variance=infer_variance) + else: + paramspec = typing.ParamSpec(name, bound=bound, + covariant=covariant, + contravariant=contravariant) + paramspec.__infer_variance__ = infer_variance + + _set_default(paramspec, default) + _set_module(paramspec) + + def _paramspec_prepare_subst(alias, args): + params = alias.__parameters__ + i = params.index(paramspec) + if i == len(args) and paramspec.has_default(): + args = [*args, paramspec.__default__] + if i >= len(args): + raise TypeError(f"Too few arguments for {alias}") + # Special case where Z[[int, str, bool]] == Z[int, str, bool] in PEP 612. + if len(params) == 1 and not typing._is_param_expr(args[0]): + assert i == 0 + args = (args,) + # Convert lists to tuples to help other libraries cache the results. + elif isinstance(args[i], list): + args = (*args[:i], tuple(args[i]), *args[i + 1:]) + return args + + paramspec.__typing_prepare_subst__ = _paramspec_prepare_subst + return paramspec + + def __init_subclass__(cls) -> None: + raise TypeError(f"type '{__name__}.ParamSpec' is not an acceptable base type") + +# 3.8-3.9 +else: + + # Inherits from list as a workaround for Callable checks in Python < 3.9.2. + class ParamSpec(list, _DefaultMixin): + """Parameter specification variable. + + Usage:: + + P = ParamSpec('P') + + Parameter specification variables exist primarily for the benefit of static + type checkers. They are used to forward the parameter types of one + callable to another callable, a pattern commonly found in higher order + functions and decorators. They are only valid when used in ``Concatenate``, + or s the first argument to ``Callable``. In Python 3.10 and higher, + they are also supported in user-defined Generics at runtime. + See class Generic for more information on generic types. An + example for annotating a decorator:: + + T = TypeVar('T') + P = ParamSpec('P') + + def add_logging(f: Callable[P, T]) -> Callable[P, T]: + '''A type-safe decorator to add logging to a function.''' + def inner(*args: P.args, **kwargs: P.kwargs) -> T: + logging.info(f'{f.__name__} was called') + return f(*args, **kwargs) + return inner + + @add_logging + def add_two(x: float, y: float) -> float: + '''Add two numbers together.''' + return x + y + + Parameter specification variables defined with covariant=True or + contravariant=True can be used to declare covariant or contravariant + generic types. These keyword arguments are valid, but their actual semantics + are yet to be decided. See PEP 612 for details. + + Parameter specification variables can be introspected. e.g.: + + P.__name__ == 'T' + P.__bound__ == None + P.__covariant__ == False + P.__contravariant__ == False + + Note that only parameter specification variables defined in global scope can + be pickled. + """ + + # Trick Generic __parameters__. + __class__ = typing.TypeVar + + @property + def args(self): + return ParamSpecArgs(self) + + @property + def kwargs(self): + return ParamSpecKwargs(self) + + def __init__(self, name, *, bound=None, covariant=False, contravariant=False, + infer_variance=False, default=NoDefault): + list.__init__(self, [self]) + self.__name__ = name + self.__covariant__ = bool(covariant) + self.__contravariant__ = bool(contravariant) + self.__infer_variance__ = bool(infer_variance) + if bound: + self.__bound__ = typing._type_check(bound, 'Bound must be a type.') + else: + self.__bound__ = None + _DefaultMixin.__init__(self, default) + + # for pickling: + def_mod = _caller() + if def_mod != 'typing_extensions': + self.__module__ = def_mod + + def __repr__(self): + if self.__infer_variance__: + prefix = '' + elif self.__covariant__: + prefix = '+' + elif self.__contravariant__: + prefix = '-' + else: + prefix = '~' + return prefix + self.__name__ + + def __hash__(self): + return object.__hash__(self) + + def __eq__(self, other): + return self is other + + def __reduce__(self): + return self.__name__ + + # Hack to get typing._type_check to pass. + def __call__(self, *args, **kwargs): + pass + + +# 3.8-3.9 +if not hasattr(typing, 'Concatenate'): + # Inherits from list as a workaround for Callable checks in Python < 3.9.2. + class _ConcatenateGenericAlias(list): + + # Trick Generic into looking into this for __parameters__. + __class__ = typing._GenericAlias + + # Flag in 3.8. + _special = False + + def __init__(self, origin, args): + super().__init__(args) + self.__origin__ = origin + self.__args__ = args + + def __repr__(self): + _type_repr = typing._type_repr + return (f'{_type_repr(self.__origin__)}' + f'[{", ".join(_type_repr(arg) for arg in self.__args__)}]') + + def __hash__(self): + return hash((self.__origin__, self.__args__)) + + # Hack to get typing._type_check to pass in Generic. + def __call__(self, *args, **kwargs): + pass + + @property + def __parameters__(self): + return tuple( + tp for tp in self.__args__ if isinstance(tp, (typing.TypeVar, ParamSpec)) + ) + + +# 3.8-3.9 +@typing._tp_cache +def _concatenate_getitem(self, parameters): + if parameters == (): + raise TypeError("Cannot take a Concatenate of no types.") + if not isinstance(parameters, tuple): + parameters = (parameters,) + if not isinstance(parameters[-1], ParamSpec): + raise TypeError("The last parameter to Concatenate should be a " + "ParamSpec variable.") + msg = "Concatenate[arg, ...]: each arg must be a type." + parameters = tuple(typing._type_check(p, msg) for p in parameters) + return _ConcatenateGenericAlias(self, parameters) + + +# 3.10+ +if hasattr(typing, 'Concatenate'): + Concatenate = typing.Concatenate + _ConcatenateGenericAlias = typing._ConcatenateGenericAlias +# 3.9 +elif sys.version_info[:2] >= (3, 9): + @_ExtensionsSpecialForm + def Concatenate(self, parameters): + """Used in conjunction with ``ParamSpec`` and ``Callable`` to represent a + higher order function which adds, removes or transforms parameters of a + callable. + + For example:: + + Callable[Concatenate[int, P], int] + + See PEP 612 for detailed information. + """ + return _concatenate_getitem(self, parameters) +# 3.8 +else: + class _ConcatenateForm(_ExtensionsSpecialForm, _root=True): + def __getitem__(self, parameters): + return _concatenate_getitem(self, parameters) + + Concatenate = _ConcatenateForm( + 'Concatenate', + doc="""Used in conjunction with ``ParamSpec`` and ``Callable`` to represent a + higher order function which adds, removes or transforms parameters of a + callable. + + For example:: + + Callable[Concatenate[int, P], int] + + See PEP 612 for detailed information. + """) + +# 3.10+ +if hasattr(typing, 'TypeGuard'): + TypeGuard = typing.TypeGuard +# 3.9 +elif sys.version_info[:2] >= (3, 9): + @_ExtensionsSpecialForm + def TypeGuard(self, parameters): + """Special typing form used to annotate the return type of a user-defined + type guard function. ``TypeGuard`` only accepts a single type argument. + At runtime, functions marked this way should return a boolean. + + ``TypeGuard`` aims to benefit *type narrowing* -- a technique used by static + type checkers to determine a more precise type of an expression within a + program's code flow. Usually type narrowing is done by analyzing + conditional code flow and applying the narrowing to a block of code. The + conditional expression here is sometimes referred to as a "type guard". + + Sometimes it would be convenient to use a user-defined boolean function + as a type guard. Such a function should use ``TypeGuard[...]`` as its + return type to alert static type checkers to this intention. + + Using ``-> TypeGuard`` tells the static type checker that for a given + function: + + 1. The return value is a boolean. + 2. If the return value is ``True``, the type of its argument + is the type inside ``TypeGuard``. + + For example:: + + def is_str(val: Union[str, float]): + # "isinstance" type guard + if isinstance(val, str): + # Type of ``val`` is narrowed to ``str`` + ... + else: + # Else, type of ``val`` is narrowed to ``float``. + ... + + Strict type narrowing is not enforced -- ``TypeB`` need not be a narrower + form of ``TypeA`` (it can even be a wider form) and this may lead to + type-unsafe results. The main reason is to allow for things like + narrowing ``List[object]`` to ``List[str]`` even though the latter is not + a subtype of the former, since ``List`` is invariant. The responsibility of + writing type-safe type guards is left to the user. + + ``TypeGuard`` also works with type variables. For more information, see + PEP 647 (User-Defined Type Guards). + """ + item = typing._type_check(parameters, f'{self} accepts only a single type.') + return typing._GenericAlias(self, (item,)) +# 3.8 +else: + class _TypeGuardForm(_ExtensionsSpecialForm, _root=True): + def __getitem__(self, parameters): + item = typing._type_check(parameters, + f'{self._name} accepts only a single type') + return typing._GenericAlias(self, (item,)) + + TypeGuard = _TypeGuardForm( + 'TypeGuard', + doc="""Special typing form used to annotate the return type of a user-defined + type guard function. ``TypeGuard`` only accepts a single type argument. + At runtime, functions marked this way should return a boolean. + + ``TypeGuard`` aims to benefit *type narrowing* -- a technique used by static + type checkers to determine a more precise type of an expression within a + program's code flow. Usually type narrowing is done by analyzing + conditional code flow and applying the narrowing to a block of code. The + conditional expression here is sometimes referred to as a "type guard". + + Sometimes it would be convenient to use a user-defined boolean function + as a type guard. Such a function should use ``TypeGuard[...]`` as its + return type to alert static type checkers to this intention. + + Using ``-> TypeGuard`` tells the static type checker that for a given + function: + + 1. The return value is a boolean. + 2. If the return value is ``True``, the type of its argument + is the type inside ``TypeGuard``. + + For example:: + + def is_str(val: Union[str, float]): + # "isinstance" type guard + if isinstance(val, str): + # Type of ``val`` is narrowed to ``str`` + ... + else: + # Else, type of ``val`` is narrowed to ``float``. + ... + + Strict type narrowing is not enforced -- ``TypeB`` need not be a narrower + form of ``TypeA`` (it can even be a wider form) and this may lead to + type-unsafe results. The main reason is to allow for things like + narrowing ``List[object]`` to ``List[str]`` even though the latter is not + a subtype of the former, since ``List`` is invariant. The responsibility of + writing type-safe type guards is left to the user. + + ``TypeGuard`` also works with type variables. For more information, see + PEP 647 (User-Defined Type Guards). + """) + +# 3.13+ +if hasattr(typing, 'TypeIs'): + TypeIs = typing.TypeIs +# 3.9 +elif sys.version_info[:2] >= (3, 9): + @_ExtensionsSpecialForm + def TypeIs(self, parameters): + """Special typing form used to annotate the return type of a user-defined + type narrower function. ``TypeIs`` only accepts a single type argument. + At runtime, functions marked this way should return a boolean. + + ``TypeIs`` aims to benefit *type narrowing* -- a technique used by static + type checkers to determine a more precise type of an expression within a + program's code flow. Usually type narrowing is done by analyzing + conditional code flow and applying the narrowing to a block of code. The + conditional expression here is sometimes referred to as a "type guard". + + Sometimes it would be convenient to use a user-defined boolean function + as a type guard. Such a function should use ``TypeIs[...]`` as its + return type to alert static type checkers to this intention. + + Using ``-> TypeIs`` tells the static type checker that for a given + function: + + 1. The return value is a boolean. + 2. If the return value is ``True``, the type of its argument + is the intersection of the type inside ``TypeGuard`` and the argument's + previously known type. + + For example:: + + def is_awaitable(val: object) -> TypeIs[Awaitable[Any]]: + return hasattr(val, '__await__') + + def f(val: Union[int, Awaitable[int]]) -> int: + if is_awaitable(val): + assert_type(val, Awaitable[int]) + else: + assert_type(val, int) + + ``TypeIs`` also works with type variables. For more information, see + PEP 742 (Narrowing types with TypeIs). + """ + item = typing._type_check(parameters, f'{self} accepts only a single type.') + return typing._GenericAlias(self, (item,)) +# 3.8 +else: + class _TypeIsForm(_ExtensionsSpecialForm, _root=True): + def __getitem__(self, parameters): + item = typing._type_check(parameters, + f'{self._name} accepts only a single type') + return typing._GenericAlias(self, (item,)) + + TypeIs = _TypeIsForm( + 'TypeIs', + doc="""Special typing form used to annotate the return type of a user-defined + type narrower function. ``TypeIs`` only accepts a single type argument. + At runtime, functions marked this way should return a boolean. + + ``TypeIs`` aims to benefit *type narrowing* -- a technique used by static + type checkers to determine a more precise type of an expression within a + program's code flow. Usually type narrowing is done by analyzing + conditional code flow and applying the narrowing to a block of code. The + conditional expression here is sometimes referred to as a "type guard". + + Sometimes it would be convenient to use a user-defined boolean function + as a type guard. Such a function should use ``TypeIs[...]`` as its + return type to alert static type checkers to this intention. + + Using ``-> TypeIs`` tells the static type checker that for a given + function: + + 1. The return value is a boolean. + 2. If the return value is ``True``, the type of its argument + is the intersection of the type inside ``TypeGuard`` and the argument's + previously known type. + + For example:: + + def is_awaitable(val: object) -> TypeIs[Awaitable[Any]]: + return hasattr(val, '__await__') + + def f(val: Union[int, Awaitable[int]]) -> int: + if is_awaitable(val): + assert_type(val, Awaitable[int]) + else: + assert_type(val, int) + + ``TypeIs`` also works with type variables. For more information, see + PEP 742 (Narrowing types with TypeIs). + """) + + +# Vendored from cpython typing._SpecialFrom +class _SpecialForm(typing._Final, _root=True): + __slots__ = ('_name', '__doc__', '_getitem') + + def __init__(self, getitem): + self._getitem = getitem + self._name = getitem.__name__ + self.__doc__ = getitem.__doc__ + + def __getattr__(self, item): + if item in {'__name__', '__qualname__'}: + return self._name + + raise AttributeError(item) + + def __mro_entries__(self, bases): + raise TypeError(f"Cannot subclass {self!r}") + + def __repr__(self): + return f'typing_extensions.{self._name}' + + def __reduce__(self): + return self._name + + def __call__(self, *args, **kwds): + raise TypeError(f"Cannot instantiate {self!r}") + + def __or__(self, other): + return typing.Union[self, other] + + def __ror__(self, other): + return typing.Union[other, self] + + def __instancecheck__(self, obj): + raise TypeError(f"{self} cannot be used with isinstance()") + + def __subclasscheck__(self, cls): + raise TypeError(f"{self} cannot be used with issubclass()") + + @typing._tp_cache + def __getitem__(self, parameters): + return self._getitem(self, parameters) + + +if hasattr(typing, "LiteralString"): # 3.11+ + LiteralString = typing.LiteralString +else: + @_SpecialForm + def LiteralString(self, params): + """Represents an arbitrary literal string. + + Example:: + + from pip._vendor.typing_extensions import LiteralString + + def query(sql: LiteralString) -> ...: + ... + + query("SELECT * FROM table") # ok + query(f"SELECT * FROM {input()}") # not ok + + See PEP 675 for details. + + """ + raise TypeError(f"{self} is not subscriptable") + + +if hasattr(typing, "Self"): # 3.11+ + Self = typing.Self +else: + @_SpecialForm + def Self(self, params): + """Used to spell the type of "self" in classes. + + Example:: + + from typing import Self + + class ReturnsSelf: + def parse(self, data: bytes) -> Self: + ... + return self + + """ + + raise TypeError(f"{self} is not subscriptable") + + +if hasattr(typing, "Never"): # 3.11+ + Never = typing.Never +else: + @_SpecialForm + def Never(self, params): + """The bottom type, a type that has no members. + + This can be used to define a function that should never be + called, or a function that never returns:: + + from pip._vendor.typing_extensions import Never + + def never_call_me(arg: Never) -> None: + pass + + def int_or_str(arg: int | str) -> None: + never_call_me(arg) # type checker error + match arg: + case int(): + print("It's an int") + case str(): + print("It's a str") + case _: + never_call_me(arg) # ok, arg is of type Never + + """ + + raise TypeError(f"{self} is not subscriptable") + + +if hasattr(typing, 'Required'): # 3.11+ + Required = typing.Required + NotRequired = typing.NotRequired +elif sys.version_info[:2] >= (3, 9): # 3.9-3.10 + @_ExtensionsSpecialForm + def Required(self, parameters): + """A special typing construct to mark a key of a total=False TypedDict + as required. For example: + + class Movie(TypedDict, total=False): + title: Required[str] + year: int + + m = Movie( + title='The Matrix', # typechecker error if key is omitted + year=1999, + ) + + There is no runtime checking that a required key is actually provided + when instantiating a related TypedDict. + """ + item = typing._type_check(parameters, f'{self._name} accepts only a single type.') + return typing._GenericAlias(self, (item,)) + + @_ExtensionsSpecialForm + def NotRequired(self, parameters): + """A special typing construct to mark a key of a TypedDict as + potentially missing. For example: + + class Movie(TypedDict): + title: str + year: NotRequired[int] + + m = Movie( + title='The Matrix', # typechecker error if key is omitted + year=1999, + ) + """ + item = typing._type_check(parameters, f'{self._name} accepts only a single type.') + return typing._GenericAlias(self, (item,)) + +else: # 3.8 + class _RequiredForm(_ExtensionsSpecialForm, _root=True): + def __getitem__(self, parameters): + item = typing._type_check(parameters, + f'{self._name} accepts only a single type.') + return typing._GenericAlias(self, (item,)) + + Required = _RequiredForm( + 'Required', + doc="""A special typing construct to mark a key of a total=False TypedDict + as required. For example: + + class Movie(TypedDict, total=False): + title: Required[str] + year: int + + m = Movie( + title='The Matrix', # typechecker error if key is omitted + year=1999, + ) + + There is no runtime checking that a required key is actually provided + when instantiating a related TypedDict. + """) + NotRequired = _RequiredForm( + 'NotRequired', + doc="""A special typing construct to mark a key of a TypedDict as + potentially missing. For example: + + class Movie(TypedDict): + title: str + year: NotRequired[int] + + m = Movie( + title='The Matrix', # typechecker error if key is omitted + year=1999, + ) + """) + + +if hasattr(typing, 'ReadOnly'): + ReadOnly = typing.ReadOnly +elif sys.version_info[:2] >= (3, 9): # 3.9-3.12 + @_ExtensionsSpecialForm + def ReadOnly(self, parameters): + """A special typing construct to mark an item of a TypedDict as read-only. + + For example: + + class Movie(TypedDict): + title: ReadOnly[str] + year: int + + def mutate_movie(m: Movie) -> None: + m["year"] = 1992 # allowed + m["title"] = "The Matrix" # typechecker error + + There is no runtime checking for this property. + """ + item = typing._type_check(parameters, f'{self._name} accepts only a single type.') + return typing._GenericAlias(self, (item,)) + +else: # 3.8 + class _ReadOnlyForm(_ExtensionsSpecialForm, _root=True): + def __getitem__(self, parameters): + item = typing._type_check(parameters, + f'{self._name} accepts only a single type.') + return typing._GenericAlias(self, (item,)) + + ReadOnly = _ReadOnlyForm( + 'ReadOnly', + doc="""A special typing construct to mark a key of a TypedDict as read-only. + + For example: + + class Movie(TypedDict): + title: ReadOnly[str] + year: int + + def mutate_movie(m: Movie) -> None: + m["year"] = 1992 # allowed + m["title"] = "The Matrix" # typechecker error + + There is no runtime checking for this propery. + """) + + +_UNPACK_DOC = """\ +Type unpack operator. + +The type unpack operator takes the child types from some container type, +such as `tuple[int, str]` or a `TypeVarTuple`, and 'pulls them out'. For +example: + + # For some generic class `Foo`: + Foo[Unpack[tuple[int, str]]] # Equivalent to Foo[int, str] + + Ts = TypeVarTuple('Ts') + # Specifies that `Bar` is generic in an arbitrary number of types. + # (Think of `Ts` as a tuple of an arbitrary number of individual + # `TypeVar`s, which the `Unpack` is 'pulling out' directly into the + # `Generic[]`.) + class Bar(Generic[Unpack[Ts]]): ... + Bar[int] # Valid + Bar[int, str] # Also valid + +From Python 3.11, this can also be done using the `*` operator: + + Foo[*tuple[int, str]] + class Bar(Generic[*Ts]): ... + +The operator can also be used along with a `TypedDict` to annotate +`**kwargs` in a function signature. For instance: + + class Movie(TypedDict): + name: str + year: int + + # This function expects two keyword arguments - *name* of type `str` and + # *year* of type `int`. + def foo(**kwargs: Unpack[Movie]): ... + +Note that there is only some runtime checking of this operator. Not +everything the runtime allows may be accepted by static type checkers. + +For more information, see PEP 646 and PEP 692. +""" + + +if sys.version_info >= (3, 12): # PEP 692 changed the repr of Unpack[] + Unpack = typing.Unpack + + def _is_unpack(obj): + return get_origin(obj) is Unpack + +elif sys.version_info[:2] >= (3, 9): # 3.9+ + class _UnpackSpecialForm(_ExtensionsSpecialForm, _root=True): + def __init__(self, getitem): + super().__init__(getitem) + self.__doc__ = _UNPACK_DOC + + class _UnpackAlias(typing._GenericAlias, _root=True): + __class__ = typing.TypeVar + + @property + def __typing_unpacked_tuple_args__(self): + assert self.__origin__ is Unpack + assert len(self.__args__) == 1 + arg, = self.__args__ + if isinstance(arg, (typing._GenericAlias, _types.GenericAlias)): + if arg.__origin__ is not tuple: + raise TypeError("Unpack[...] must be used with a tuple type") + return arg.__args__ + return None + + @_UnpackSpecialForm + def Unpack(self, parameters): + item = typing._type_check(parameters, f'{self._name} accepts only a single type.') + return _UnpackAlias(self, (item,)) + + def _is_unpack(obj): + return isinstance(obj, _UnpackAlias) + +else: # 3.8 + class _UnpackAlias(typing._GenericAlias, _root=True): + __class__ = typing.TypeVar + + class _UnpackForm(_ExtensionsSpecialForm, _root=True): + def __getitem__(self, parameters): + item = typing._type_check(parameters, + f'{self._name} accepts only a single type.') + return _UnpackAlias(self, (item,)) + + Unpack = _UnpackForm('Unpack', doc=_UNPACK_DOC) + + def _is_unpack(obj): + return isinstance(obj, _UnpackAlias) + + +if _PEP_696_IMPLEMENTED: + from typing import TypeVarTuple + +elif hasattr(typing, "TypeVarTuple"): # 3.11+ + + def _unpack_args(*args): + newargs = [] + for arg in args: + subargs = getattr(arg, '__typing_unpacked_tuple_args__', None) + if subargs is not None and not (subargs and subargs[-1] is ...): + newargs.extend(subargs) + else: + newargs.append(arg) + return newargs + + # Add default parameter - PEP 696 + class TypeVarTuple(metaclass=_TypeVarLikeMeta): + """Type variable tuple.""" + + _backported_typevarlike = typing.TypeVarTuple + + def __new__(cls, name, *, default=NoDefault): + tvt = typing.TypeVarTuple(name) + _set_default(tvt, default) + _set_module(tvt) + + def _typevartuple_prepare_subst(alias, args): + params = alias.__parameters__ + typevartuple_index = params.index(tvt) + for param in params[typevartuple_index + 1:]: + if isinstance(param, TypeVarTuple): + raise TypeError( + f"More than one TypeVarTuple parameter in {alias}" + ) + + alen = len(args) + plen = len(params) + left = typevartuple_index + right = plen - typevartuple_index - 1 + var_tuple_index = None + fillarg = None + for k, arg in enumerate(args): + if not isinstance(arg, type): + subargs = getattr(arg, '__typing_unpacked_tuple_args__', None) + if subargs and len(subargs) == 2 and subargs[-1] is ...: + if var_tuple_index is not None: + raise TypeError( + "More than one unpacked " + "arbitrary-length tuple argument" + ) + var_tuple_index = k + fillarg = subargs[0] + if var_tuple_index is not None: + left = min(left, var_tuple_index) + right = min(right, alen - var_tuple_index - 1) + elif left + right > alen: + raise TypeError(f"Too few arguments for {alias};" + f" actual {alen}, expected at least {plen - 1}") + if left == alen - right and tvt.has_default(): + replacement = _unpack_args(tvt.__default__) + else: + replacement = args[left: alen - right] + + return ( + *args[:left], + *([fillarg] * (typevartuple_index - left)), + replacement, + *([fillarg] * (plen - right - left - typevartuple_index - 1)), + *args[alen - right:], + ) + + tvt.__typing_prepare_subst__ = _typevartuple_prepare_subst + return tvt + + def __init_subclass__(self, *args, **kwds): + raise TypeError("Cannot subclass special typing classes") + +else: # <=3.10 + class TypeVarTuple(_DefaultMixin): + """Type variable tuple. + + Usage:: + + Ts = TypeVarTuple('Ts') + + In the same way that a normal type variable is a stand-in for a single + type such as ``int``, a type variable *tuple* is a stand-in for a *tuple* + type such as ``Tuple[int, str]``. + + Type variable tuples can be used in ``Generic`` declarations. + Consider the following example:: + + class Array(Generic[*Ts]): ... + + The ``Ts`` type variable tuple here behaves like ``tuple[T1, T2]``, + where ``T1`` and ``T2`` are type variables. To use these type variables + as type parameters of ``Array``, we must *unpack* the type variable tuple using + the star operator: ``*Ts``. The signature of ``Array`` then behaves + as if we had simply written ``class Array(Generic[T1, T2]): ...``. + In contrast to ``Generic[T1, T2]``, however, ``Generic[*Shape]`` allows + us to parameterise the class with an *arbitrary* number of type parameters. + + Type variable tuples can be used anywhere a normal ``TypeVar`` can. + This includes class definitions, as shown above, as well as function + signatures and variable annotations:: + + class Array(Generic[*Ts]): + + def __init__(self, shape: Tuple[*Ts]): + self._shape: Tuple[*Ts] = shape + + def get_shape(self) -> Tuple[*Ts]: + return self._shape + + shape = (Height(480), Width(640)) + x: Array[Height, Width] = Array(shape) + y = abs(x) # Inferred type is Array[Height, Width] + z = x + x # ... is Array[Height, Width] + x.get_shape() # ... is tuple[Height, Width] + + """ + + # Trick Generic __parameters__. + __class__ = typing.TypeVar + + def __iter__(self): + yield self.__unpacked__ + + def __init__(self, name, *, default=NoDefault): + self.__name__ = name + _DefaultMixin.__init__(self, default) + + # for pickling: + def_mod = _caller() + if def_mod != 'typing_extensions': + self.__module__ = def_mod + + self.__unpacked__ = Unpack[self] + + def __repr__(self): + return self.__name__ + + def __hash__(self): + return object.__hash__(self) + + def __eq__(self, other): + return self is other + + def __reduce__(self): + return self.__name__ + + def __init_subclass__(self, *args, **kwds): + if '_root' not in kwds: + raise TypeError("Cannot subclass special typing classes") + + +if hasattr(typing, "reveal_type"): # 3.11+ + reveal_type = typing.reveal_type +else: # <=3.10 + def reveal_type(obj: T, /) -> T: + """Reveal the inferred type of a variable. + + When a static type checker encounters a call to ``reveal_type()``, + it will emit the inferred type of the argument:: + + x: int = 1 + reveal_type(x) + + Running a static type checker (e.g., ``mypy``) on this example + will produce output similar to 'Revealed type is "builtins.int"'. + + At runtime, the function prints the runtime type of the + argument and returns it unchanged. + + """ + print(f"Runtime type is {type(obj).__name__!r}", file=sys.stderr) + return obj + + +if hasattr(typing, "_ASSERT_NEVER_REPR_MAX_LENGTH"): # 3.11+ + _ASSERT_NEVER_REPR_MAX_LENGTH = typing._ASSERT_NEVER_REPR_MAX_LENGTH +else: # <=3.10 + _ASSERT_NEVER_REPR_MAX_LENGTH = 100 + + +if hasattr(typing, "assert_never"): # 3.11+ + assert_never = typing.assert_never +else: # <=3.10 + def assert_never(arg: Never, /) -> Never: + """Assert to the type checker that a line of code is unreachable. + + Example:: + + def int_or_str(arg: int | str) -> None: + match arg: + case int(): + print("It's an int") + case str(): + print("It's a str") + case _: + assert_never(arg) + + If a type checker finds that a call to assert_never() is + reachable, it will emit an error. + + At runtime, this throws an exception when called. + + """ + value = repr(arg) + if len(value) > _ASSERT_NEVER_REPR_MAX_LENGTH: + value = value[:_ASSERT_NEVER_REPR_MAX_LENGTH] + '...' + raise AssertionError(f"Expected code to be unreachable, but got: {value}") + + +if sys.version_info >= (3, 12): # 3.12+ + # dataclass_transform exists in 3.11 but lacks the frozen_default parameter + dataclass_transform = typing.dataclass_transform +else: # <=3.11 + def dataclass_transform( + *, + eq_default: bool = True, + order_default: bool = False, + kw_only_default: bool = False, + frozen_default: bool = False, + field_specifiers: typing.Tuple[ + typing.Union[typing.Type[typing.Any], typing.Callable[..., typing.Any]], + ... + ] = (), + **kwargs: typing.Any, + ) -> typing.Callable[[T], T]: + """Decorator that marks a function, class, or metaclass as providing + dataclass-like behavior. + + Example: + + from pip._vendor.typing_extensions import dataclass_transform + + _T = TypeVar("_T") + + # Used on a decorator function + @dataclass_transform() + def create_model(cls: type[_T]) -> type[_T]: + ... + return cls + + @create_model + class CustomerModel: + id: int + name: str + + # Used on a base class + @dataclass_transform() + class ModelBase: ... + + class CustomerModel(ModelBase): + id: int + name: str + + # Used on a metaclass + @dataclass_transform() + class ModelMeta(type): ... + + class ModelBase(metaclass=ModelMeta): ... + + class CustomerModel(ModelBase): + id: int + name: str + + Each of the ``CustomerModel`` classes defined in this example will now + behave similarly to a dataclass created with the ``@dataclasses.dataclass`` + decorator. For example, the type checker will synthesize an ``__init__`` + method. + + The arguments to this decorator can be used to customize this behavior: + - ``eq_default`` indicates whether the ``eq`` parameter is assumed to be + True or False if it is omitted by the caller. + - ``order_default`` indicates whether the ``order`` parameter is + assumed to be True or False if it is omitted by the caller. + - ``kw_only_default`` indicates whether the ``kw_only`` parameter is + assumed to be True or False if it is omitted by the caller. + - ``frozen_default`` indicates whether the ``frozen`` parameter is + assumed to be True or False if it is omitted by the caller. + - ``field_specifiers`` specifies a static list of supported classes + or functions that describe fields, similar to ``dataclasses.field()``. + + At runtime, this decorator records its arguments in the + ``__dataclass_transform__`` attribute on the decorated object. + + See PEP 681 for details. + + """ + def decorator(cls_or_fn): + cls_or_fn.__dataclass_transform__ = { + "eq_default": eq_default, + "order_default": order_default, + "kw_only_default": kw_only_default, + "frozen_default": frozen_default, + "field_specifiers": field_specifiers, + "kwargs": kwargs, + } + return cls_or_fn + return decorator + + +if hasattr(typing, "override"): # 3.12+ + override = typing.override +else: # <=3.11 + _F = typing.TypeVar("_F", bound=typing.Callable[..., typing.Any]) + + def override(arg: _F, /) -> _F: + """Indicate that a method is intended to override a method in a base class. + + Usage: + + class Base: + def method(self) -> None: + pass + + class Child(Base): + @override + def method(self) -> None: + super().method() + + When this decorator is applied to a method, the type checker will + validate that it overrides a method with the same name on a base class. + This helps prevent bugs that may occur when a base class is changed + without an equivalent change to a child class. + + There is no runtime checking of these properties. The decorator + sets the ``__override__`` attribute to ``True`` on the decorated object + to allow runtime introspection. + + See PEP 698 for details. + + """ + try: + arg.__override__ = True + except (AttributeError, TypeError): + # Skip the attribute silently if it is not writable. + # AttributeError happens if the object has __slots__ or a + # read-only property, TypeError if it's a builtin class. + pass + return arg + + +if hasattr(warnings, "deprecated"): + deprecated = warnings.deprecated +else: + _T = typing.TypeVar("_T") + + class deprecated: + """Indicate that a class, function or overload is deprecated. + + When this decorator is applied to an object, the type checker + will generate a diagnostic on usage of the deprecated object. + + Usage: + + @deprecated("Use B instead") + class A: + pass + + @deprecated("Use g instead") + def f(): + pass + + @overload + @deprecated("int support is deprecated") + def g(x: int) -> int: ... + @overload + def g(x: str) -> int: ... + + The warning specified by *category* will be emitted at runtime + on use of deprecated objects. For functions, that happens on calls; + for classes, on instantiation and on creation of subclasses. + If the *category* is ``None``, no warning is emitted at runtime. + The *stacklevel* determines where the + warning is emitted. If it is ``1`` (the default), the warning + is emitted at the direct caller of the deprecated object; if it + is higher, it is emitted further up the stack. + Static type checker behavior is not affected by the *category* + and *stacklevel* arguments. + + The deprecation message passed to the decorator is saved in the + ``__deprecated__`` attribute on the decorated object. + If applied to an overload, the decorator + must be after the ``@overload`` decorator for the attribute to + exist on the overload as returned by ``get_overloads()``. + + See PEP 702 for details. + + """ + def __init__( + self, + message: str, + /, + *, + category: typing.Optional[typing.Type[Warning]] = DeprecationWarning, + stacklevel: int = 1, + ) -> None: + if not isinstance(message, str): + raise TypeError( + "Expected an object of type str for 'message', not " + f"{type(message).__name__!r}" + ) + self.message = message + self.category = category + self.stacklevel = stacklevel + + def __call__(self, arg: _T, /) -> _T: + # Make sure the inner functions created below don't + # retain a reference to self. + msg = self.message + category = self.category + stacklevel = self.stacklevel + if category is None: + arg.__deprecated__ = msg + return arg + elif isinstance(arg, type): + import functools + from types import MethodType + + original_new = arg.__new__ + + @functools.wraps(original_new) + def __new__(cls, *args, **kwargs): + if cls is arg: + warnings.warn(msg, category=category, stacklevel=stacklevel + 1) + if original_new is not object.__new__: + return original_new(cls, *args, **kwargs) + # Mirrors a similar check in object.__new__. + elif cls.__init__ is object.__init__ and (args or kwargs): + raise TypeError(f"{cls.__name__}() takes no arguments") + else: + return original_new(cls) + + arg.__new__ = staticmethod(__new__) + + original_init_subclass = arg.__init_subclass__ + # We need slightly different behavior if __init_subclass__ + # is a bound method (likely if it was implemented in Python) + if isinstance(original_init_subclass, MethodType): + original_init_subclass = original_init_subclass.__func__ + + @functools.wraps(original_init_subclass) + def __init_subclass__(*args, **kwargs): + warnings.warn(msg, category=category, stacklevel=stacklevel + 1) + return original_init_subclass(*args, **kwargs) + + arg.__init_subclass__ = classmethod(__init_subclass__) + # Or otherwise, which likely means it's a builtin such as + # object's implementation of __init_subclass__. + else: + @functools.wraps(original_init_subclass) + def __init_subclass__(*args, **kwargs): + warnings.warn(msg, category=category, stacklevel=stacklevel + 1) + return original_init_subclass(*args, **kwargs) + + arg.__init_subclass__ = __init_subclass__ + + arg.__deprecated__ = __new__.__deprecated__ = msg + __init_subclass__.__deprecated__ = msg + return arg + elif callable(arg): + import functools + + @functools.wraps(arg) + def wrapper(*args, **kwargs): + warnings.warn(msg, category=category, stacklevel=stacklevel + 1) + return arg(*args, **kwargs) + + arg.__deprecated__ = wrapper.__deprecated__ = msg + return wrapper + else: + raise TypeError( + "@deprecated decorator with non-None category must be applied to " + f"a class or callable, not {arg!r}" + ) + + +# We have to do some monkey patching to deal with the dual nature of +# Unpack/TypeVarTuple: +# - We want Unpack to be a kind of TypeVar so it gets accepted in +# Generic[Unpack[Ts]] +# - We want it to *not* be treated as a TypeVar for the purposes of +# counting generic parameters, so that when we subscript a generic, +# the runtime doesn't try to substitute the Unpack with the subscripted type. +if not hasattr(typing, "TypeVarTuple"): + def _check_generic(cls, parameters, elen=_marker): + """Check correct count for parameters of a generic cls (internal helper). + + This gives a nice error message in case of count mismatch. + """ + if not elen: + raise TypeError(f"{cls} is not a generic class") + if elen is _marker: + if not hasattr(cls, "__parameters__") or not cls.__parameters__: + raise TypeError(f"{cls} is not a generic class") + elen = len(cls.__parameters__) + alen = len(parameters) + if alen != elen: + expect_val = elen + if hasattr(cls, "__parameters__"): + parameters = [p for p in cls.__parameters__ if not _is_unpack(p)] + num_tv_tuples = sum(isinstance(p, TypeVarTuple) for p in parameters) + if (num_tv_tuples > 0) and (alen >= elen - num_tv_tuples): + return + + # deal with TypeVarLike defaults + # required TypeVarLikes cannot appear after a defaulted one. + if alen < elen: + # since we validate TypeVarLike default in _collect_type_vars + # or _collect_parameters we can safely check parameters[alen] + if ( + getattr(parameters[alen], '__default__', NoDefault) + is not NoDefault + ): + return + + num_default_tv = sum(getattr(p, '__default__', NoDefault) + is not NoDefault for p in parameters) + + elen -= num_default_tv + + expect_val = f"at least {elen}" + + things = "arguments" if sys.version_info >= (3, 10) else "parameters" + raise TypeError(f"Too {'many' if alen > elen else 'few'} {things}" + f" for {cls}; actual {alen}, expected {expect_val}") +else: + # Python 3.11+ + + def _check_generic(cls, parameters, elen): + """Check correct count for parameters of a generic cls (internal helper). + + This gives a nice error message in case of count mismatch. + """ + if not elen: + raise TypeError(f"{cls} is not a generic class") + alen = len(parameters) + if alen != elen: + expect_val = elen + if hasattr(cls, "__parameters__"): + parameters = [p for p in cls.__parameters__ if not _is_unpack(p)] + + # deal with TypeVarLike defaults + # required TypeVarLikes cannot appear after a defaulted one. + if alen < elen: + # since we validate TypeVarLike default in _collect_type_vars + # or _collect_parameters we can safely check parameters[alen] + if ( + getattr(parameters[alen], '__default__', NoDefault) + is not NoDefault + ): + return + + num_default_tv = sum(getattr(p, '__default__', NoDefault) + is not NoDefault for p in parameters) + + elen -= num_default_tv + + expect_val = f"at least {elen}" + + raise TypeError(f"Too {'many' if alen > elen else 'few'} arguments" + f" for {cls}; actual {alen}, expected {expect_val}") + +if not _PEP_696_IMPLEMENTED: + typing._check_generic = _check_generic + + +def _has_generic_or_protocol_as_origin() -> bool: + try: + frame = sys._getframe(2) + # - Catch AttributeError: not all Python implementations have sys._getframe() + # - Catch ValueError: maybe we're called from an unexpected module + # and the call stack isn't deep enough + except (AttributeError, ValueError): + return False # err on the side of leniency + else: + # If we somehow get invoked from outside typing.py, + # also err on the side of leniency + if frame.f_globals.get("__name__") != "typing": + return False + origin = frame.f_locals.get("origin") + # Cannot use "in" because origin may be an object with a buggy __eq__ that + # throws an error. + return origin is typing.Generic or origin is Protocol or origin is typing.Protocol + + +_TYPEVARTUPLE_TYPES = {TypeVarTuple, getattr(typing, "TypeVarTuple", None)} + + +def _is_unpacked_typevartuple(x) -> bool: + if get_origin(x) is not Unpack: + return False + args = get_args(x) + return ( + bool(args) + and len(args) == 1 + and type(args[0]) in _TYPEVARTUPLE_TYPES + ) + + +# Python 3.11+ _collect_type_vars was renamed to _collect_parameters +if hasattr(typing, '_collect_type_vars'): + def _collect_type_vars(types, typevar_types=None): + """Collect all type variable contained in types in order of + first appearance (lexicographic order). For example:: + + _collect_type_vars((T, List[S, T])) == (T, S) + """ + if typevar_types is None: + typevar_types = typing.TypeVar + tvars = [] + + # A required TypeVarLike cannot appear after a TypeVarLike with a default + # if it was a direct call to `Generic[]` or `Protocol[]` + enforce_default_ordering = _has_generic_or_protocol_as_origin() + default_encountered = False + + # Also, a TypeVarLike with a default cannot appear after a TypeVarTuple + type_var_tuple_encountered = False + + for t in types: + if _is_unpacked_typevartuple(t): + type_var_tuple_encountered = True + elif isinstance(t, typevar_types) and t not in tvars: + if enforce_default_ordering: + has_default = getattr(t, '__default__', NoDefault) is not NoDefault + if has_default: + if type_var_tuple_encountered: + raise TypeError('Type parameter with a default' + ' follows TypeVarTuple') + default_encountered = True + elif default_encountered: + raise TypeError(f'Type parameter {t!r} without a default' + ' follows type parameter with a default') + + tvars.append(t) + if _should_collect_from_parameters(t): + tvars.extend([t for t in t.__parameters__ if t not in tvars]) + return tuple(tvars) + + typing._collect_type_vars = _collect_type_vars +else: + def _collect_parameters(args): + """Collect all type variables and parameter specifications in args + in order of first appearance (lexicographic order). + + For example:: + + assert _collect_parameters((T, Callable[P, T])) == (T, P) + """ + parameters = [] + + # A required TypeVarLike cannot appear after a TypeVarLike with default + # if it was a direct call to `Generic[]` or `Protocol[]` + enforce_default_ordering = _has_generic_or_protocol_as_origin() + default_encountered = False + + # Also, a TypeVarLike with a default cannot appear after a TypeVarTuple + type_var_tuple_encountered = False + + for t in args: + if isinstance(t, type): + # We don't want __parameters__ descriptor of a bare Python class. + pass + elif isinstance(t, tuple): + # `t` might be a tuple, when `ParamSpec` is substituted with + # `[T, int]`, or `[int, *Ts]`, etc. + for x in t: + for collected in _collect_parameters([x]): + if collected not in parameters: + parameters.append(collected) + elif hasattr(t, '__typing_subst__'): + if t not in parameters: + if enforce_default_ordering: + has_default = ( + getattr(t, '__default__', NoDefault) is not NoDefault + ) + + if type_var_tuple_encountered and has_default: + raise TypeError('Type parameter with a default' + ' follows TypeVarTuple') + + if has_default: + default_encountered = True + elif default_encountered: + raise TypeError(f'Type parameter {t!r} without a default' + ' follows type parameter with a default') + + parameters.append(t) + else: + if _is_unpacked_typevartuple(t): + type_var_tuple_encountered = True + for x in getattr(t, '__parameters__', ()): + if x not in parameters: + parameters.append(x) + + return tuple(parameters) + + if not _PEP_696_IMPLEMENTED: + typing._collect_parameters = _collect_parameters + +# Backport typing.NamedTuple as it exists in Python 3.13. +# In 3.11, the ability to define generic `NamedTuple`s was supported. +# This was explicitly disallowed in 3.9-3.10, and only half-worked in <=3.8. +# On 3.12, we added __orig_bases__ to call-based NamedTuples +# On 3.13, we deprecated kwargs-based NamedTuples +if sys.version_info >= (3, 13): + NamedTuple = typing.NamedTuple +else: + def _make_nmtuple(name, types, module, defaults=()): + fields = [n for n, t in types] + annotations = {n: typing._type_check(t, f"field {n} annotation must be a type") + for n, t in types} + nm_tpl = collections.namedtuple(name, fields, + defaults=defaults, module=module) + nm_tpl.__annotations__ = nm_tpl.__new__.__annotations__ = annotations + # The `_field_types` attribute was removed in 3.9; + # in earlier versions, it is the same as the `__annotations__` attribute + if sys.version_info < (3, 9): + nm_tpl._field_types = annotations + return nm_tpl + + _prohibited_namedtuple_fields = typing._prohibited + _special_namedtuple_fields = frozenset({'__module__', '__name__', '__annotations__'}) + + class _NamedTupleMeta(type): + def __new__(cls, typename, bases, ns): + assert _NamedTuple in bases + for base in bases: + if base is not _NamedTuple and base is not typing.Generic: + raise TypeError( + 'can only inherit from a NamedTuple type and Generic') + bases = tuple(tuple if base is _NamedTuple else base for base in bases) + if "__annotations__" in ns: + types = ns["__annotations__"] + elif "__annotate__" in ns: + # TODO: Use inspect.VALUE here, and make the annotations lazily evaluated + types = ns["__annotate__"](1) + else: + types = {} + default_names = [] + for field_name in types: + if field_name in ns: + default_names.append(field_name) + elif default_names: + raise TypeError(f"Non-default namedtuple field {field_name} " + f"cannot follow default field" + f"{'s' if len(default_names) > 1 else ''} " + f"{', '.join(default_names)}") + nm_tpl = _make_nmtuple( + typename, types.items(), + defaults=[ns[n] for n in default_names], + module=ns['__module__'] + ) + nm_tpl.__bases__ = bases + if typing.Generic in bases: + if hasattr(typing, '_generic_class_getitem'): # 3.12+ + nm_tpl.__class_getitem__ = classmethod(typing._generic_class_getitem) + else: + class_getitem = typing.Generic.__class_getitem__.__func__ + nm_tpl.__class_getitem__ = classmethod(class_getitem) + # update from user namespace without overriding special namedtuple attributes + for key, val in ns.items(): + if key in _prohibited_namedtuple_fields: + raise AttributeError("Cannot overwrite NamedTuple attribute " + key) + elif key not in _special_namedtuple_fields: + if key not in nm_tpl._fields: + setattr(nm_tpl, key, ns[key]) + try: + set_name = type(val).__set_name__ + except AttributeError: + pass + else: + try: + set_name(val, nm_tpl, key) + except BaseException as e: + msg = ( + f"Error calling __set_name__ on {type(val).__name__!r} " + f"instance {key!r} in {typename!r}" + ) + # BaseException.add_note() existed on py311, + # but the __set_name__ machinery didn't start + # using add_note() until py312. + # Making sure exceptions are raised in the same way + # as in "normal" classes seems most important here. + if sys.version_info >= (3, 12): + e.add_note(msg) + raise + else: + raise RuntimeError(msg) from e + + if typing.Generic in bases: + nm_tpl.__init_subclass__() + return nm_tpl + + _NamedTuple = type.__new__(_NamedTupleMeta, 'NamedTuple', (), {}) + + def _namedtuple_mro_entries(bases): + assert NamedTuple in bases + return (_NamedTuple,) + + @_ensure_subclassable(_namedtuple_mro_entries) + def NamedTuple(typename, fields=_marker, /, **kwargs): + """Typed version of namedtuple. + + Usage:: + + class Employee(NamedTuple): + name: str + id: int + + This is equivalent to:: + + Employee = collections.namedtuple('Employee', ['name', 'id']) + + The resulting class has an extra __annotations__ attribute, giving a + dict that maps field names to types. (The field names are also in + the _fields attribute, which is part of the namedtuple API.) + An alternative equivalent functional syntax is also accepted:: + + Employee = NamedTuple('Employee', [('name', str), ('id', int)]) + """ + if fields is _marker: + if kwargs: + deprecated_thing = "Creating NamedTuple classes using keyword arguments" + deprecation_msg = ( + "{name} is deprecated and will be disallowed in Python {remove}. " + "Use the class-based or functional syntax instead." + ) + else: + deprecated_thing = "Failing to pass a value for the 'fields' parameter" + example = f"`{typename} = NamedTuple({typename!r}, [])`" + deprecation_msg = ( + "{name} is deprecated and will be disallowed in Python {remove}. " + "To create a NamedTuple class with 0 fields " + "using the functional syntax, " + "pass an empty list, e.g. " + ) + example + "." + elif fields is None: + if kwargs: + raise TypeError( + "Cannot pass `None` as the 'fields' parameter " + "and also specify fields using keyword arguments" + ) + else: + deprecated_thing = "Passing `None` as the 'fields' parameter" + example = f"`{typename} = NamedTuple({typename!r}, [])`" + deprecation_msg = ( + "{name} is deprecated and will be disallowed in Python {remove}. " + "To create a NamedTuple class with 0 fields " + "using the functional syntax, " + "pass an empty list, e.g. " + ) + example + "." + elif kwargs: + raise TypeError("Either list of fields or keywords" + " can be provided to NamedTuple, not both") + if fields is _marker or fields is None: + warnings.warn( + deprecation_msg.format(name=deprecated_thing, remove="3.15"), + DeprecationWarning, + stacklevel=2, + ) + fields = kwargs.items() + nt = _make_nmtuple(typename, fields, module=_caller()) + nt.__orig_bases__ = (NamedTuple,) + return nt + + +if hasattr(collections.abc, "Buffer"): + Buffer = collections.abc.Buffer +else: + class Buffer(abc.ABC): # noqa: B024 + """Base class for classes that implement the buffer protocol. + + The buffer protocol allows Python objects to expose a low-level + memory buffer interface. Before Python 3.12, it is not possible + to implement the buffer protocol in pure Python code, or even + to check whether a class implements the buffer protocol. In + Python 3.12 and higher, the ``__buffer__`` method allows access + to the buffer protocol from Python code, and the + ``collections.abc.Buffer`` ABC allows checking whether a class + implements the buffer protocol. + + To indicate support for the buffer protocol in earlier versions, + inherit from this ABC, either in a stub file or at runtime, + or use ABC registration. This ABC provides no methods, because + there is no Python-accessible methods shared by pre-3.12 buffer + classes. It is useful primarily for static checks. + + """ + + # As a courtesy, register the most common stdlib buffer classes. + Buffer.register(memoryview) + Buffer.register(bytearray) + Buffer.register(bytes) + + +# Backport of types.get_original_bases, available on 3.12+ in CPython +if hasattr(_types, "get_original_bases"): + get_original_bases = _types.get_original_bases +else: + def get_original_bases(cls, /): + """Return the class's "original" bases prior to modification by `__mro_entries__`. + + Examples:: + + from typing import TypeVar, Generic + from pip._vendor.typing_extensions import NamedTuple, TypedDict + + T = TypeVar("T") + class Foo(Generic[T]): ... + class Bar(Foo[int], float): ... + class Baz(list[str]): ... + Eggs = NamedTuple("Eggs", [("a", int), ("b", str)]) + Spam = TypedDict("Spam", {"a": int, "b": str}) + + assert get_original_bases(Bar) == (Foo[int], float) + assert get_original_bases(Baz) == (list[str],) + assert get_original_bases(Eggs) == (NamedTuple,) + assert get_original_bases(Spam) == (TypedDict,) + assert get_original_bases(int) == (object,) + """ + try: + return cls.__dict__.get("__orig_bases__", cls.__bases__) + except AttributeError: + raise TypeError( + f'Expected an instance of type, not {type(cls).__name__!r}' + ) from None + + +# NewType is a class on Python 3.10+, making it pickleable +# The error message for subclassing instances of NewType was improved on 3.11+ +if sys.version_info >= (3, 11): + NewType = typing.NewType +else: + class NewType: + """NewType creates simple unique types with almost zero + runtime overhead. NewType(name, tp) is considered a subtype of tp + by static type checkers. At runtime, NewType(name, tp) returns + a dummy callable that simply returns its argument. Usage:: + UserId = NewType('UserId', int) + def name_by_id(user_id: UserId) -> str: + ... + UserId('user') # Fails type check + name_by_id(42) # Fails type check + name_by_id(UserId(42)) # OK + num = UserId(5) + 1 # type: int + """ + + def __call__(self, obj, /): + return obj + + def __init__(self, name, tp): + self.__qualname__ = name + if '.' in name: + name = name.rpartition('.')[-1] + self.__name__ = name + self.__supertype__ = tp + def_mod = _caller() + if def_mod != 'typing_extensions': + self.__module__ = def_mod + + def __mro_entries__(self, bases): + # We defined __mro_entries__ to get a better error message + # if a user attempts to subclass a NewType instance. bpo-46170 + supercls_name = self.__name__ + + class Dummy: + def __init_subclass__(cls): + subcls_name = cls.__name__ + raise TypeError( + f"Cannot subclass an instance of NewType. " + f"Perhaps you were looking for: " + f"`{subcls_name} = NewType({subcls_name!r}, {supercls_name})`" + ) + + return (Dummy,) + + def __repr__(self): + return f'{self.__module__}.{self.__qualname__}' + + def __reduce__(self): + return self.__qualname__ + + if sys.version_info >= (3, 10): + # PEP 604 methods + # It doesn't make sense to have these methods on Python <3.10 + + def __or__(self, other): + return typing.Union[self, other] + + def __ror__(self, other): + return typing.Union[other, self] + + +if hasattr(typing, "TypeAliasType"): + TypeAliasType = typing.TypeAliasType +else: + def _is_unionable(obj): + """Corresponds to is_unionable() in unionobject.c in CPython.""" + return obj is None or isinstance(obj, ( + type, + _types.GenericAlias, + _types.UnionType, + TypeAliasType, + )) + + class TypeAliasType: + """Create named, parameterized type aliases. + + This provides a backport of the new `type` statement in Python 3.12: + + type ListOrSet[T] = list[T] | set[T] + + is equivalent to: + + T = TypeVar("T") + ListOrSet = TypeAliasType("ListOrSet", list[T] | set[T], type_params=(T,)) + + The name ListOrSet can then be used as an alias for the type it refers to. + + The type_params argument should contain all the type parameters used + in the value of the type alias. If the alias is not generic, this + argument is omitted. + + Static type checkers should only support type aliases declared using + TypeAliasType that follow these rules: + + - The first argument (the name) must be a string literal. + - The TypeAliasType instance must be immediately assigned to a variable + of the same name. (For example, 'X = TypeAliasType("Y", int)' is invalid, + as is 'X, Y = TypeAliasType("X", int), TypeAliasType("Y", int)'). + + """ + + def __init__(self, name: str, value, *, type_params=()): + if not isinstance(name, str): + raise TypeError("TypeAliasType name must be a string") + self.__value__ = value + self.__type_params__ = type_params + + parameters = [] + for type_param in type_params: + if isinstance(type_param, TypeVarTuple): + parameters.extend(type_param) + else: + parameters.append(type_param) + self.__parameters__ = tuple(parameters) + def_mod = _caller() + if def_mod != 'typing_extensions': + self.__module__ = def_mod + # Setting this attribute closes the TypeAliasType from further modification + self.__name__ = name + + def __setattr__(self, name: str, value: object, /) -> None: + if hasattr(self, "__name__"): + self._raise_attribute_error(name) + super().__setattr__(name, value) + + def __delattr__(self, name: str, /) -> Never: + self._raise_attribute_error(name) + + def _raise_attribute_error(self, name: str) -> Never: + # Match the Python 3.12 error messages exactly + if name == "__name__": + raise AttributeError("readonly attribute") + elif name in {"__value__", "__type_params__", "__parameters__", "__module__"}: + raise AttributeError( + f"attribute '{name}' of 'typing.TypeAliasType' objects " + "is not writable" + ) + else: + raise AttributeError( + f"'typing.TypeAliasType' object has no attribute '{name}'" + ) + + def __repr__(self) -> str: + return self.__name__ + + def __getitem__(self, parameters): + if not isinstance(parameters, tuple): + parameters = (parameters,) + parameters = [ + typing._type_check( + item, f'Subscripting {self.__name__} requires a type.' + ) + for item in parameters + ] + return typing._GenericAlias(self, tuple(parameters)) + + def __reduce__(self): + return self.__name__ + + def __init_subclass__(cls, *args, **kwargs): + raise TypeError( + "type 'typing_extensions.TypeAliasType' is not an acceptable base type" + ) + + # The presence of this method convinces typing._type_check + # that TypeAliasTypes are types. + def __call__(self): + raise TypeError("Type alias is not callable") + + if sys.version_info >= (3, 10): + def __or__(self, right): + # For forward compatibility with 3.12, reject Unions + # that are not accepted by the built-in Union. + if not _is_unionable(right): + return NotImplemented + return typing.Union[self, right] + + def __ror__(self, left): + if not _is_unionable(left): + return NotImplemented + return typing.Union[left, self] + + +if hasattr(typing, "is_protocol"): + is_protocol = typing.is_protocol + get_protocol_members = typing.get_protocol_members +else: + def is_protocol(tp: type, /) -> bool: + """Return True if the given type is a Protocol. + + Example:: + + >>> from typing_extensions import Protocol, is_protocol + >>> class P(Protocol): + ... def a(self) -> str: ... + ... b: int + >>> is_protocol(P) + True + >>> is_protocol(int) + False + """ + return ( + isinstance(tp, type) + and getattr(tp, '_is_protocol', False) + and tp is not Protocol + and tp is not typing.Protocol + ) + + def get_protocol_members(tp: type, /) -> typing.FrozenSet[str]: + """Return the set of members defined in a Protocol. + + Example:: + + >>> from typing_extensions import Protocol, get_protocol_members + >>> class P(Protocol): + ... def a(self) -> str: ... + ... b: int + >>> get_protocol_members(P) + frozenset({'a', 'b'}) + + Raise a TypeError for arguments that are not Protocols. + """ + if not is_protocol(tp): + raise TypeError(f'{tp!r} is not a Protocol') + if hasattr(tp, '__protocol_attrs__'): + return frozenset(tp.__protocol_attrs__) + return frozenset(_get_protocol_attrs(tp)) + + +if hasattr(typing, "Doc"): + Doc = typing.Doc +else: + class Doc: + """Define the documentation of a type annotation using ``Annotated``, to be + used in class attributes, function and method parameters, return values, + and variables. + + The value should be a positional-only string literal to allow static tools + like editors and documentation generators to use it. + + This complements docstrings. + + The string value passed is available in the attribute ``documentation``. + + Example:: + + >>> from typing_extensions import Annotated, Doc + >>> def hi(to: Annotated[str, Doc("Who to say hi to")]) -> None: ... + """ + def __init__(self, documentation: str, /) -> None: + self.documentation = documentation + + def __repr__(self) -> str: + return f"Doc({self.documentation!r})" + + def __hash__(self) -> int: + return hash(self.documentation) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Doc): + return NotImplemented + return self.documentation == other.documentation + + +_CapsuleType = getattr(_types, "CapsuleType", None) + +if _CapsuleType is None: + try: + import _socket + except ImportError: + pass + else: + _CAPI = getattr(_socket, "CAPI", None) + if _CAPI is not None: + _CapsuleType = type(_CAPI) + +if _CapsuleType is not None: + CapsuleType = _CapsuleType + __all__.append("CapsuleType") + + +# Aliases for items that have always been in typing. +# Explicitly assign these (rather than using `from typing import *` at the top), +# so that we get a CI error if one of these is deleted from typing.py +# in a future version of Python +AbstractSet = typing.AbstractSet +AnyStr = typing.AnyStr +BinaryIO = typing.BinaryIO +Callable = typing.Callable +Collection = typing.Collection +Container = typing.Container +Dict = typing.Dict +ForwardRef = typing.ForwardRef +FrozenSet = typing.FrozenSet +Generic = typing.Generic +Hashable = typing.Hashable +IO = typing.IO +ItemsView = typing.ItemsView +Iterable = typing.Iterable +Iterator = typing.Iterator +KeysView = typing.KeysView +List = typing.List +Mapping = typing.Mapping +MappingView = typing.MappingView +Match = typing.Match +MutableMapping = typing.MutableMapping +MutableSequence = typing.MutableSequence +MutableSet = typing.MutableSet +Optional = typing.Optional +Pattern = typing.Pattern +Reversible = typing.Reversible +Sequence = typing.Sequence +Set = typing.Set +Sized = typing.Sized +TextIO = typing.TextIO +Tuple = typing.Tuple +Union = typing.Union +ValuesView = typing.ValuesView +cast = typing.cast +no_type_check = typing.no_type_check +no_type_check_decorator = typing.no_type_check_decorator diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/__init__.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/__init__.py new file mode 100644 index 0000000..c6fa382 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/__init__.py @@ -0,0 +1,102 @@ +""" +Python HTTP library with thread-safe connection pooling, file post support, user friendly, and more +""" +from __future__ import absolute_import + +# Set default logging handler to avoid "No handler found" warnings. +import logging +import warnings +from logging import NullHandler + +from . import exceptions +from ._version import __version__ +from .connectionpool import HTTPConnectionPool, HTTPSConnectionPool, connection_from_url +from .filepost import encode_multipart_formdata +from .poolmanager import PoolManager, ProxyManager, proxy_from_url +from .response import HTTPResponse +from .util.request import make_headers +from .util.retry import Retry +from .util.timeout import Timeout +from .util.url import get_host + +# === NOTE TO REPACKAGERS AND VENDORS === +# Please delete this block, this logic is only +# for urllib3 being distributed via PyPI. +# See: https://github.com/urllib3/urllib3/issues/2680 +try: + import urllib3_secure_extra # type: ignore # noqa: F401 +except ImportError: + pass +else: + warnings.warn( + "'urllib3[secure]' extra is deprecated and will be removed " + "in a future release of urllib3 2.x. Read more in this issue: " + "https://github.com/urllib3/urllib3/issues/2680", + category=DeprecationWarning, + stacklevel=2, + ) + +__author__ = "Andrey Petrov (andrey.petrov@shazow.net)" +__license__ = "MIT" +__version__ = __version__ + +__all__ = ( + "HTTPConnectionPool", + "HTTPSConnectionPool", + "PoolManager", + "ProxyManager", + "HTTPResponse", + "Retry", + "Timeout", + "add_stderr_logger", + "connection_from_url", + "disable_warnings", + "encode_multipart_formdata", + "get_host", + "make_headers", + "proxy_from_url", +) + +logging.getLogger(__name__).addHandler(NullHandler()) + + +def add_stderr_logger(level=logging.DEBUG): + """ + Helper for quickly adding a StreamHandler to the logger. Useful for + debugging. + + Returns the handler after adding it. + """ + # This method needs to be in this __init__.py to get the __name__ correct + # even if urllib3 is vendored within another package. + logger = logging.getLogger(__name__) + handler = logging.StreamHandler() + handler.setFormatter(logging.Formatter("%(asctime)s %(levelname)s %(message)s")) + logger.addHandler(handler) + logger.setLevel(level) + logger.debug("Added a stderr logging handler to logger: %s", __name__) + return handler + + +# ... Clean up. +del NullHandler + + +# All warning filters *must* be appended unless you're really certain that they +# shouldn't be: otherwise, it's very hard for users to use most Python +# mechanisms to silence them. +# SecurityWarning's always go off by default. +warnings.simplefilter("always", exceptions.SecurityWarning, append=True) +# SubjectAltNameWarning's should go off once per host +warnings.simplefilter("default", exceptions.SubjectAltNameWarning, append=True) +# InsecurePlatformWarning's don't vary between requests, so we keep it default. +warnings.simplefilter("default", exceptions.InsecurePlatformWarning, append=True) +# SNIMissingWarnings should go off only once. +warnings.simplefilter("default", exceptions.SNIMissingWarning, append=True) + + +def disable_warnings(category=exceptions.HTTPWarning): + """ + Helper for quickly disabling all urllib3 warnings. + """ + warnings.simplefilter("ignore", category) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..20f11c61712f0da7d7aae609d3d8352d977499f4 GIT binary patch literal 3433 zcmb7GO>7&-6`m!R{~{?-q9t0kys{-(Ol`__-69p7xU%I$cJ)_FX`Kz*#gaQDSDxiE zv%8Y0+5lY?^`!?N3Zw-B)J4%l;T+mqivmFkq(F*ZNLT{ZO@$OFdhm^{VxZ`$Z@*)o-PrRB>^ue4@@e{um5CaY$AVDo8h8#Xf!dgU(Xgy+&78Rq8E<|El zT#P$>nDlCWVxN`}6I#F6@8}|AKud~AhwmXLv_Wyu;iF_oONl9mkCBtwusH1SadJvK zEuQ93sO{y5IO0K=UwhTPT6a`>v7q$5mw4)J>%hKWJgW?d=P-DzB*ihX^se3RTDTmZ zc*?c;wIx^A9l^@?v?IFfIJVPrca6&xIOW6-IWhf~&+&5A)pti_5C_)2-IZNV8G0|( z_55?KPlEMb*QPsu0c){q<#J!ZI_uhW$D`KZ-}kz6E(dWLhPYg+de0#|I)1APVb#+-FYL3dZDr~4`Nia(k%gRMVE?^qIRVF9-#dV2}(`Fsw>Nr{)F0GB6biRK;b5R4)i}SrIgy;_!3kQJS;ka?a3+WnxLy zn8hOKB8wIwbFh?P`kW;M=)!n2k1OmrgRPLHbxaMABq{B+6U@~c2M#TRKXyOUtsGZ& zy_O18*CdM)*e-?3d0oMhW)V}Z$kdbyI@J`}lwtD-+ipQF%SBA>o@J_UR$VDpVbbB9 zdf2IVuu%a&G3?x<$@j2Sf~bMJAp7oMlU9KVtg0H;Efd&a5t~v8qPF#`^WYCe{3~x6 zIB!w>-SYz8G^s48hM?dI#d+DpiW9^Ql@K9^1&TF&9dv40kcEO}f)(fpmJKZE1);N_ za5=M?5$=E+PW0Jovjm%}hGF4pp=6pBV|r?;2#;*#GI?E_>KGo3&PrqI^4DIz^c=7Y zr9F0#c~jJB)eak`oWDo#Iwo6_Gi8P1s;~?f)z^hdct#L26-WGrQIfaxjZ7JvY1_MS zYc(CCLD-Fk80ldIAQRCzBYlh{fY^PqqDY1bF{BdFi|`PXVXWP&sD_*)SlW{7=*lXn#^+&th8S@_-A?&!kP1J8ZW z8oSf6?~t|AB#urioO_Nta_By{#v*d;yYD%&f`#kYcOM;D!D4yrQ#^<6*SS5M=UG8% z@79mP0(^6rR9N}yRCwD`;f1RLyaWUqa&5%~EYLbtDwsMX6c*Z#lM&u9aKR$X(Ah`9 zIjdL%yG+=Tp$IHmHXM^uyUqo7U2bcs4>=4x6ypvIOP?Ffrl4M7Z+|BMW zu=yI`foy_@cBspS!P`y%>>w}U6FDbK6)Hna?#WrL zip%TSc{P_cR1;sUKovqjjBG`%OaVfc6`dYbuq3Hv)s&=6rAmk3Xop+_##jSVL!Ty4 zEZK~XG@>K#Za#}n)?WJ?$gy*c*tuu1@!IRVe5A<_HTa=-2b-yv8mX7+U%K-wwX)5x z?(*R#pKS2S$Hi@a1f)kx50@U_+~!X*e*WQnz3q7_6Mn4^*|zD{k%kOLx+>gfTS)?x_{`H<#l5g*X zAvARmGRRso>&Ol=+7Y%!YxlB4aLZuQ4$@BBa?scAu}qa@D1O_*V9n6f4tG@0!5nbz ztYOs&ovaPjL1ztw(?MZ-pc7cB-Owbbo!LB#rJb1Vv@~er-)RH59l7QF1>B@mrz|3} z1-~K`q5~bDsCf)s6$FTxObEp36u3oCGcw8?^v&M9{>JO=?4DwZ_zLTzs#$gSPp(+G zHTZ3rA?6|!yQ?0&1sk)DyG&#gP)lpjq@1ZmQL_>RM^b>Tqf$r|1sZY@L z2D-k7&hDX!J#-qT_RvVHC&KwZ=FhYsixRcDM+*-ZS{_g6>n%S@jP3RhyomUH{#GxF zy<7|L#`m5XrjIb>U%u-3=KEYL<3Fy;`_gRu#LV7dz>Eo z`NGc@_EDVcZ%rUyZ!3nl6SZIyB^xODxb!646s8-(^aodV(A?iq@?b`Na?`FXJCqD=Df1Q1QPXGV_ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4773009cb89c28f8abf334bc2e88020f4531afa8 GIT binary patch literal 16392 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f2d9a6164707863138294166824cf58b9702c02 GIT binary patch literal 246 zcmX@j%ge<81lcE5G8};PV-N=h7@>^M96-i&h7^VdoYacc82`Lfm!izF)R+qkE^N54@xs1~ z?H6`j*r{-_@nX}3eHV7e8091;CB_#NB_@|-W+%qvR;K2a#rR|<#S~|jr0NzVCTAz6 zrxwQ)WESWHEzC>FFVZh9%E`%0G6wO%4$v#8yv1RYo1apelWJGQ26P0-1H~Z!ePCu} PWPHFU-pF0V0^|Y!6Ld~% literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..188cb17fb37479a7a34499cb472156d6ebdf215b GIT binary patch literal 20431 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 j8~0-$xllkR$O7wtvkD{u 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 v8cMb2h!)U=f3>zQeQECFFB_ur8NbS*>LV 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3749f22afab0aabd1be7b7fa54264d3fa9b0e9a GIT binary patch literal 4040 zcmbVPZEO?C8J_j$#&+V^hVT(S_AVjC5IZGY50dgBdI4QH0=?4ysO6Kh_KwLWYpsM7V{Rh8~vRaKQLTh5hqFGy6RRryEBRVx4b&aT%^ z($Lb5v@`F_zVptz^L{=1`_@(uf;REH?y*t}LXX+RYW6y@b{B}-NJ0{)pbQt|I7ZtP zTg+yR_L$um9We)tcEy=-#azJSkerG;!^e1ob}20xPt0S`ZpEAN#e5vHA#5MtZ5`Mg zCH_8V&ZL%IK*ZW4&rKBbOJ3;PB_H$wsZDCV$;E;NTiE}EF^4(bFD5lr$y1z=GdY#e zi?HVYR)Jz|_|g+55$3+{;H!D8(Q`6ZB$(SZ`8o_-a>|*f>B#XX?7LG;pw*l}u*J0n z=x!rgR}G8Ltlu$&M zQP@6p(IY^+lqUktBt=3*O_Q@%ltM&<+fcATa840ZID@lPNUKE1$QevkRnelUF;&%Y zBB|!Hl1K_sL(r3UI7WAhT1u9~ZkmKB^+H5$zobpNJrB-=q3KRnv&(9NK)c+|f0fq#G1zyBlK$DR*8pY;E{ zt>*8Wd2_|vHh=6#$Cg8#w@<%+dhu8-bhyMXdqXpq)?g<}HQWIv%=lgKto;GHw-C3% zU5bb{9OizVA|3zPVT!0>W-jZc5Tj;Wzh2~q&^w0_nzl7vvuL9YXKI|~EZTm`-G=zR zwUc@+N#j0?YK}$Qk5Qd7;y?xN7xrsh*f#Y;!!L#@CL+axI*EypW>KU?J;s~M`5cQn zO;BWw3Tj$7IMFLih6S1j_tOOM6G4(wRO>ZJ#-st4v2`$|fV&Qk{-AEVXkGC7U>&U= za}m7JBZF^iRLrKZ?qEVq|7!uCAn;@~-N8u0Vo>*{iJD26T7>Po%apBivhFlV7Tpj! zWE&yXegFiW7*+@MK5bIOVmcFz{;%=gs^`{|pA7rw28Is9OR7C4n!getNj&0Z` z8Wkj*BRB?6VmxC#Jid` z6i``K#}r3}VX!$CrCuSgVPTLl4UYc1xkh`1Yh!Y13^E?gldSgg9wyWc{y#djnJ_n4 zj#=#}JZp!bGc!REy#rAfhsdAirfo&8XiHo1*a}gGSd`u4F5W};?7A)bb)B2gxk+t< zZ?>Gcg0uK~j+~m>*ZgiRdO}fCqN1IOHr@}yv05i|hPPJy1J$nMcV1gKvLKcN~e10Nmz z_~eHtKkZoRI$rY+RQQ2Ev(szdo{FP~bij^OBXProRXTP_YZqa4eNb8f#f&@Sp^V39 zjdiXWoXrFd$@@3p6855PoJro)nkir6irf_BiTm|}V~reYCi7wg6>KG|Xx|D+SlTt^ z0bkoDHDEgJpaE;O=%7K1Zj=`46H*}nGnPt6N6nfwItob;@Ezn!EM)Qum2)DYeE{q-5lN(?Ffu%Hmf^gNNbBir z5IDq4y=D)3pyC;A2+C(uzA0S*eAukwxX}A@DLlOKBn$pE&l*k(S(OS}4yR-|2{JjT zpM{S!QKVq)5U$CJA|$cE@*RU4lKHg_rR&MR2^Z>6ZxhS|%)q{J$`y$m&{{nji{n<$ z6wjuS2vA#H-8UO*oIId~+XzdO23|C9fbP7;AO>NuU3ZzZ-bMg=0&EzA>IC2xFbSBz zNL0FA&Qkcxprj5_D85b;w2;F(e+AP?QOV=5%gA0N#6&uhs#GBR*_lV!+?P_b6fnE7 z#{deZ*~~1r3ma~dXm~(^ncO)2IP5+RkM>vSAm?=;UubS%W@y>%uef)tgkG(Mx=Z|O zplk8m9|MO=&Sl;=@0s;{aHJetJYL=2TMI>&_~k zK)>*HKk~KDpPxNnrc1s(kIaM1$G+e@pYBD$-lqa`w!C-#-SfAumiH{~tOgF%{D+qu zy{n;)%8r50-mLBzs)f$ZTzKU5&!3zmllV v)Y4JvnBP0Qw|uSEvVW1Qw!AvydggL-+n#L;a7UjV^mAYPs=JE|8(;h{4&SyM literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db3aa63f561860e2a1aa320722376321c6b94cc9 GIT binary patch literal 20457 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 Tw=KT#L|~cKNz8d0Tbln1E_<0a literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b3169731a66a02e7c8725455a77adf8e972334d GIT binary patch literal 7322 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 NH0{6O=$ self._maxsize: + _key, evicted_value = self._container.popitem(last=False) + + if self.dispose_func and evicted_value is not _Null: + self.dispose_func(evicted_value) + + def __delitem__(self, key): + with self.lock: + value = self._container.pop(key) + + if self.dispose_func: + self.dispose_func(value) + + def __len__(self): + with self.lock: + return len(self._container) + + def __iter__(self): + raise NotImplementedError( + "Iteration over this class is unlikely to be threadsafe." + ) + + def clear(self): + with self.lock: + # Copy pointers to all values, then wipe the mapping + values = list(itervalues(self._container)) + self._container.clear() + + if self.dispose_func: + for value in values: + self.dispose_func(value) + + def keys(self): + with self.lock: + return list(iterkeys(self._container)) + + +class HTTPHeaderDict(MutableMapping): + """ + :param headers: + An iterable of field-value pairs. Must not contain multiple field names + when compared case-insensitively. + + :param kwargs: + Additional field-value pairs to pass in to ``dict.update``. + + A ``dict`` like container for storing HTTP Headers. + + Field names are stored and compared case-insensitively in compliance with + RFC 7230. Iteration provides the first case-sensitive key seen for each + case-insensitive pair. + + Using ``__setitem__`` syntax overwrites fields that compare equal + case-insensitively in order to maintain ``dict``'s api. For fields that + compare equal, instead create a new ``HTTPHeaderDict`` and use ``.add`` + in a loop. + + If multiple fields that are equal case-insensitively are passed to the + constructor or ``.update``, the behavior is undefined and some will be + lost. + + >>> headers = HTTPHeaderDict() + >>> headers.add('Set-Cookie', 'foo=bar') + >>> headers.add('set-cookie', 'baz=quxx') + >>> headers['content-length'] = '7' + >>> headers['SET-cookie'] + 'foo=bar, baz=quxx' + >>> headers['Content-Length'] + '7' + """ + + def __init__(self, headers=None, **kwargs): + super(HTTPHeaderDict, self).__init__() + self._container = OrderedDict() + if headers is not None: + if isinstance(headers, HTTPHeaderDict): + self._copy_from(headers) + else: + self.extend(headers) + if kwargs: + self.extend(kwargs) + + def __setitem__(self, key, val): + self._container[key.lower()] = [key, val] + return self._container[key.lower()] + + def __getitem__(self, key): + val = self._container[key.lower()] + return ", ".join(val[1:]) + + def __delitem__(self, key): + del self._container[key.lower()] + + def __contains__(self, key): + return key.lower() in self._container + + def __eq__(self, other): + if not isinstance(other, Mapping) and not hasattr(other, "keys"): + return False + if not isinstance(other, type(self)): + other = type(self)(other) + return dict((k.lower(), v) for k, v in self.itermerged()) == dict( + (k.lower(), v) for k, v in other.itermerged() + ) + + def __ne__(self, other): + return not self.__eq__(other) + + if six.PY2: # Python 2 + iterkeys = MutableMapping.iterkeys + itervalues = MutableMapping.itervalues + + __marker = object() + + def __len__(self): + return len(self._container) + + def __iter__(self): + # Only provide the originally cased names + for vals in self._container.values(): + yield vals[0] + + def pop(self, key, default=__marker): + """D.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. + """ + # Using the MutableMapping function directly fails due to the private marker. + # Using ordinary dict.pop would expose the internal structures. + # So let's reinvent the wheel. + try: + value = self[key] + except KeyError: + if default is self.__marker: + raise + return default + else: + del self[key] + return value + + def discard(self, key): + try: + del self[key] + except KeyError: + pass + + def add(self, key, val): + """Adds a (name, value) pair, doesn't overwrite the value if it already + exists. + + >>> headers = HTTPHeaderDict(foo='bar') + >>> headers.add('Foo', 'baz') + >>> headers['foo'] + 'bar, baz' + """ + key_lower = key.lower() + new_vals = [key, val] + # Keep the common case aka no item present as fast as possible + vals = self._container.setdefault(key_lower, new_vals) + if new_vals is not vals: + vals.append(val) + + def extend(self, *args, **kwargs): + """Generic import function for any type of header-like object. + Adapted version of MutableMapping.update in order to insert items + with self.add instead of self.__setitem__ + """ + if len(args) > 1: + raise TypeError( + "extend() takes at most 1 positional " + "arguments ({0} given)".format(len(args)) + ) + other = args[0] if len(args) >= 1 else () + + if isinstance(other, HTTPHeaderDict): + for key, val in other.iteritems(): + self.add(key, val) + elif isinstance(other, Mapping): + for key in other: + self.add(key, other[key]) + elif hasattr(other, "keys"): + for key in other.keys(): + self.add(key, other[key]) + else: + for key, value in other: + self.add(key, value) + + for key, value in kwargs.items(): + self.add(key, value) + + def getlist(self, key, default=__marker): + """Returns a list of all the values for the named field. Returns an + empty list if the key doesn't exist.""" + try: + vals = self._container[key.lower()] + except KeyError: + if default is self.__marker: + return [] + return default + else: + return vals[1:] + + def _prepare_for_method_change(self): + """ + Remove content-specific header fields before changing the request + method to GET or HEAD according to RFC 9110, Section 15.4. + """ + content_specific_headers = [ + "Content-Encoding", + "Content-Language", + "Content-Location", + "Content-Type", + "Content-Length", + "Digest", + "Last-Modified", + ] + for header in content_specific_headers: + self.discard(header) + return self + + # Backwards compatibility for httplib + getheaders = getlist + getallmatchingheaders = getlist + iget = getlist + + # Backwards compatibility for http.cookiejar + get_all = getlist + + def __repr__(self): + return "%s(%s)" % (type(self).__name__, dict(self.itermerged())) + + def _copy_from(self, other): + for key in other: + val = other.getlist(key) + if isinstance(val, list): + # Don't need to convert tuples + val = list(val) + self._container[key.lower()] = [key] + val + + def copy(self): + clone = type(self)() + clone._copy_from(self) + return clone + + def iteritems(self): + """Iterate over all header lines, including duplicate ones.""" + for key in self: + vals = self._container[key.lower()] + for val in vals[1:]: + yield vals[0], val + + def itermerged(self): + """Iterate over all headers, merging duplicate ones together.""" + for key in self: + val = self._container[key.lower()] + yield val[0], ", ".join(val[1:]) + + def items(self): + return list(self.iteritems()) + + @classmethod + def from_httplib(cls, message): # Python 2 + """Read headers from a Python 2 httplib message object.""" + # python2.7 does not expose a proper API for exporting multiheaders + # efficiently. This function re-reads raw lines from the message + # object and extracts the multiheaders properly. + obs_fold_continued_leaders = (" ", "\t") + headers = [] + + for line in message.headers: + if line.startswith(obs_fold_continued_leaders): + if not headers: + # We received a header line that starts with OWS as described + # in RFC-7230 S3.2.4. This indicates a multiline header, but + # there exists no previous header to which we can attach it. + raise InvalidHeader( + "Header continuation with no previous header: %s" % line + ) + else: + key, value = headers[-1] + headers[-1] = (key, value + " " + line.strip()) + continue + + key, value = line.split(":", 1) + headers.append((key, value.strip())) + + return cls(headers) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/_version.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/_version.py new file mode 100644 index 0000000..d49df2a --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/_version.py @@ -0,0 +1,2 @@ +# This file is protected via CODEOWNERS +__version__ = "1.26.20" diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/connection.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/connection.py new file mode 100644 index 0000000..de35b63 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/connection.py @@ -0,0 +1,572 @@ +from __future__ import absolute_import + +import datetime +import logging +import os +import re +import socket +import warnings +from socket import error as SocketError +from socket import timeout as SocketTimeout + +from .packages import six +from .packages.six.moves.http_client import HTTPConnection as _HTTPConnection +from .packages.six.moves.http_client import HTTPException # noqa: F401 +from .util.proxy import create_proxy_ssl_context + +try: # Compiled with SSL? + import ssl + + BaseSSLError = ssl.SSLError +except (ImportError, AttributeError): # Platform-specific: No SSL. + ssl = None + + class BaseSSLError(BaseException): + pass + + +try: + # Python 3: not a no-op, we're adding this to the namespace so it can be imported. + ConnectionError = ConnectionError +except NameError: + # Python 2 + class ConnectionError(Exception): + pass + + +try: # Python 3: + # Not a no-op, we're adding this to the namespace so it can be imported. + BrokenPipeError = BrokenPipeError +except NameError: # Python 2: + + class BrokenPipeError(Exception): + pass + + +from ._collections import HTTPHeaderDict # noqa (historical, removed in v2) +from ._version import __version__ +from .exceptions import ( + ConnectTimeoutError, + NewConnectionError, + SubjectAltNameWarning, + SystemTimeWarning, +) +from .util import SKIP_HEADER, SKIPPABLE_HEADERS, connection +from .util.ssl_ import ( + assert_fingerprint, + create_urllib3_context, + is_ipaddress, + resolve_cert_reqs, + resolve_ssl_version, + ssl_wrap_socket, +) +from .util.ssl_match_hostname import CertificateError, match_hostname + +log = logging.getLogger(__name__) + +port_by_scheme = {"http": 80, "https": 443} + +# When it comes time to update this value as a part of regular maintenance +# (ie test_recent_date is failing) update it to ~6 months before the current date. +RECENT_DATE = datetime.date(2024, 1, 1) + +_CONTAINS_CONTROL_CHAR_RE = re.compile(r"[^-!#$%&'*+.^_`|~0-9a-zA-Z]") + + +class HTTPConnection(_HTTPConnection, object): + """ + Based on :class:`http.client.HTTPConnection` but provides an extra constructor + backwards-compatibility layer between older and newer Pythons. + + Additional keyword parameters are used to configure attributes of the connection. + Accepted parameters include: + + - ``strict``: See the documentation on :class:`urllib3.connectionpool.HTTPConnectionPool` + - ``source_address``: Set the source address for the current connection. + - ``socket_options``: Set specific options on the underlying socket. If not specified, then + defaults are loaded from ``HTTPConnection.default_socket_options`` which includes disabling + Nagle's algorithm (sets TCP_NODELAY to 1) unless the connection is behind a proxy. + + For example, if you wish to enable TCP Keep Alive in addition to the defaults, + you might pass: + + .. code-block:: python + + HTTPConnection.default_socket_options + [ + (socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1), + ] + + Or you may want to disable the defaults by passing an empty list (e.g., ``[]``). + """ + + default_port = port_by_scheme["http"] + + #: Disable Nagle's algorithm by default. + #: ``[(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)]`` + default_socket_options = [(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)] + + #: Whether this connection verifies the host's certificate. + is_verified = False + + #: Whether this proxy connection (if used) verifies the proxy host's + #: certificate. + proxy_is_verified = None + + def __init__(self, *args, **kw): + if not six.PY2: + kw.pop("strict", None) + + # Pre-set source_address. + self.source_address = kw.get("source_address") + + #: The socket options provided by the user. If no options are + #: provided, we use the default options. + self.socket_options = kw.pop("socket_options", self.default_socket_options) + + # Proxy options provided by the user. + self.proxy = kw.pop("proxy", None) + self.proxy_config = kw.pop("proxy_config", None) + + _HTTPConnection.__init__(self, *args, **kw) + + @property + def host(self): + """ + Getter method to remove any trailing dots that indicate the hostname is an FQDN. + + In general, SSL certificates don't include the trailing dot indicating a + fully-qualified domain name, and thus, they don't validate properly when + checked against a domain name that includes the dot. In addition, some + servers may not expect to receive the trailing dot when provided. + + However, the hostname with trailing dot is critical to DNS resolution; doing a + lookup with the trailing dot will properly only resolve the appropriate FQDN, + whereas a lookup without a trailing dot will search the system's search domain + list. Thus, it's important to keep the original host around for use only in + those cases where it's appropriate (i.e., when doing DNS lookup to establish the + actual TCP connection across which we're going to send HTTP requests). + """ + return self._dns_host.rstrip(".") + + @host.setter + def host(self, value): + """ + Setter for the `host` property. + + We assume that only urllib3 uses the _dns_host attribute; httplib itself + only uses `host`, and it seems reasonable that other libraries follow suit. + """ + self._dns_host = value + + def _new_conn(self): + """Establish a socket connection and set nodelay settings on it. + + :return: New socket connection. + """ + extra_kw = {} + if self.source_address: + extra_kw["source_address"] = self.source_address + + if self.socket_options: + extra_kw["socket_options"] = self.socket_options + + try: + conn = connection.create_connection( + (self._dns_host, self.port), self.timeout, **extra_kw + ) + + except SocketTimeout: + raise ConnectTimeoutError( + self, + "Connection to %s timed out. (connect timeout=%s)" + % (self.host, self.timeout), + ) + + except SocketError as e: + raise NewConnectionError( + self, "Failed to establish a new connection: %s" % e + ) + + return conn + + def _is_using_tunnel(self): + # Google App Engine's httplib does not define _tunnel_host + return getattr(self, "_tunnel_host", None) + + def _prepare_conn(self, conn): + self.sock = conn + if self._is_using_tunnel(): + # TODO: Fix tunnel so it doesn't depend on self.sock state. + self._tunnel() + # Mark this connection as not reusable + self.auto_open = 0 + + def connect(self): + conn = self._new_conn() + self._prepare_conn(conn) + + def putrequest(self, method, url, *args, **kwargs): + """ """ + # Empty docstring because the indentation of CPython's implementation + # is broken but we don't want this method in our documentation. + match = _CONTAINS_CONTROL_CHAR_RE.search(method) + if match: + raise ValueError( + "Method cannot contain non-token characters %r (found at least %r)" + % (method, match.group()) + ) + + return _HTTPConnection.putrequest(self, method, url, *args, **kwargs) + + def putheader(self, header, *values): + """ """ + if not any(isinstance(v, str) and v == SKIP_HEADER for v in values): + _HTTPConnection.putheader(self, header, *values) + elif six.ensure_str(header.lower()) not in SKIPPABLE_HEADERS: + raise ValueError( + "urllib3.util.SKIP_HEADER only supports '%s'" + % ("', '".join(map(str.title, sorted(SKIPPABLE_HEADERS))),) + ) + + def request(self, method, url, body=None, headers=None): + # Update the inner socket's timeout value to send the request. + # This only triggers if the connection is re-used. + if getattr(self, "sock", None) is not None: + self.sock.settimeout(self.timeout) + + if headers is None: + headers = {} + else: + # Avoid modifying the headers passed into .request() + headers = headers.copy() + if "user-agent" not in (six.ensure_str(k.lower()) for k in headers): + headers["User-Agent"] = _get_default_user_agent() + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + + def request_chunked(self, method, url, body=None, headers=None): + """ + Alternative to the common request method, which sends the + body with chunked encoding and not as one block + """ + headers = headers or {} + header_keys = set([six.ensure_str(k.lower()) for k in headers]) + skip_accept_encoding = "accept-encoding" in header_keys + skip_host = "host" in header_keys + self.putrequest( + method, url, skip_accept_encoding=skip_accept_encoding, skip_host=skip_host + ) + if "user-agent" not in header_keys: + self.putheader("User-Agent", _get_default_user_agent()) + for header, value in headers.items(): + self.putheader(header, value) + if "transfer-encoding" not in header_keys: + self.putheader("Transfer-Encoding", "chunked") + self.endheaders() + + if body is not None: + stringish_types = six.string_types + (bytes,) + if isinstance(body, stringish_types): + body = (body,) + for chunk in body: + if not chunk: + continue + if not isinstance(chunk, bytes): + chunk = chunk.encode("utf8") + len_str = hex(len(chunk))[2:] + to_send = bytearray(len_str.encode()) + to_send += b"\r\n" + to_send += chunk + to_send += b"\r\n" + self.send(to_send) + + # After the if clause, to always have a closed body + self.send(b"0\r\n\r\n") + + +class HTTPSConnection(HTTPConnection): + """ + Many of the parameters to this constructor are passed to the underlying SSL + socket by means of :py:func:`urllib3.util.ssl_wrap_socket`. + """ + + default_port = port_by_scheme["https"] + + cert_reqs = None + ca_certs = None + ca_cert_dir = None + ca_cert_data = None + ssl_version = None + assert_fingerprint = None + tls_in_tls_required = False + + def __init__( + self, + host, + port=None, + key_file=None, + cert_file=None, + key_password=None, + strict=None, + timeout=socket._GLOBAL_DEFAULT_TIMEOUT, + ssl_context=None, + server_hostname=None, + **kw + ): + + HTTPConnection.__init__(self, host, port, strict=strict, timeout=timeout, **kw) + + self.key_file = key_file + self.cert_file = cert_file + self.key_password = key_password + self.ssl_context = ssl_context + self.server_hostname = server_hostname + + # Required property for Google AppEngine 1.9.0 which otherwise causes + # HTTPS requests to go out as HTTP. (See Issue #356) + self._protocol = "https" + + def set_cert( + self, + key_file=None, + cert_file=None, + cert_reqs=None, + key_password=None, + ca_certs=None, + assert_hostname=None, + assert_fingerprint=None, + ca_cert_dir=None, + ca_cert_data=None, + ): + """ + This method should only be called once, before the connection is used. + """ + # If cert_reqs is not provided we'll assume CERT_REQUIRED unless we also + # have an SSLContext object in which case we'll use its verify_mode. + if cert_reqs is None: + if self.ssl_context is not None: + cert_reqs = self.ssl_context.verify_mode + else: + cert_reqs = resolve_cert_reqs(None) + + self.key_file = key_file + self.cert_file = cert_file + self.cert_reqs = cert_reqs + self.key_password = key_password + self.assert_hostname = assert_hostname + self.assert_fingerprint = assert_fingerprint + self.ca_certs = ca_certs and os.path.expanduser(ca_certs) + self.ca_cert_dir = ca_cert_dir and os.path.expanduser(ca_cert_dir) + self.ca_cert_data = ca_cert_data + + def connect(self): + # Add certificate verification + self.sock = conn = self._new_conn() + hostname = self.host + tls_in_tls = False + + if self._is_using_tunnel(): + if self.tls_in_tls_required: + self.sock = conn = self._connect_tls_proxy(hostname, conn) + tls_in_tls = True + + # Calls self._set_hostport(), so self.host is + # self._tunnel_host below. + self._tunnel() + # Mark this connection as not reusable + self.auto_open = 0 + + # Override the host with the one we're requesting data from. + hostname = self._tunnel_host + + server_hostname = hostname + if self.server_hostname is not None: + server_hostname = self.server_hostname + + is_time_off = datetime.date.today() < RECENT_DATE + if is_time_off: + warnings.warn( + ( + "System time is way off (before {0}). This will probably " + "lead to SSL verification errors" + ).format(RECENT_DATE), + SystemTimeWarning, + ) + + # Wrap socket using verification with the root certs in + # trusted_root_certs + default_ssl_context = False + if self.ssl_context is None: + default_ssl_context = True + self.ssl_context = create_urllib3_context( + ssl_version=resolve_ssl_version(self.ssl_version), + cert_reqs=resolve_cert_reqs(self.cert_reqs), + ) + + context = self.ssl_context + context.verify_mode = resolve_cert_reqs(self.cert_reqs) + + # Try to load OS default certs if none are given. + # Works well on Windows (requires Python3.4+) + if ( + not self.ca_certs + and not self.ca_cert_dir + and not self.ca_cert_data + and default_ssl_context + and hasattr(context, "load_default_certs") + ): + context.load_default_certs() + + self.sock = ssl_wrap_socket( + sock=conn, + keyfile=self.key_file, + certfile=self.cert_file, + key_password=self.key_password, + ca_certs=self.ca_certs, + ca_cert_dir=self.ca_cert_dir, + ca_cert_data=self.ca_cert_data, + server_hostname=server_hostname, + ssl_context=context, + tls_in_tls=tls_in_tls, + ) + + # If we're using all defaults and the connection + # is TLSv1 or TLSv1.1 we throw a DeprecationWarning + # for the host. + if ( + default_ssl_context + and self.ssl_version is None + and hasattr(self.sock, "version") + and self.sock.version() in {"TLSv1", "TLSv1.1"} + ): # Defensive: + warnings.warn( + "Negotiating TLSv1/TLSv1.1 by default is deprecated " + "and will be disabled in urllib3 v2.0.0. Connecting to " + "'%s' with '%s' can be enabled by explicitly opting-in " + "with 'ssl_version'" % (self.host, self.sock.version()), + DeprecationWarning, + ) + + if self.assert_fingerprint: + assert_fingerprint( + self.sock.getpeercert(binary_form=True), self.assert_fingerprint + ) + elif ( + context.verify_mode != ssl.CERT_NONE + and not getattr(context, "check_hostname", False) + and self.assert_hostname is not False + ): + # While urllib3 attempts to always turn off hostname matching from + # the TLS library, this cannot always be done. So we check whether + # the TLS Library still thinks it's matching hostnames. + cert = self.sock.getpeercert() + if not cert.get("subjectAltName", ()): + warnings.warn( + ( + "Certificate for {0} has no `subjectAltName`, falling back to check for a " + "`commonName` for now. This feature is being removed by major browsers and " + "deprecated by RFC 2818. (See https://github.com/urllib3/urllib3/issues/497 " + "for details.)".format(hostname) + ), + SubjectAltNameWarning, + ) + _match_hostname(cert, self.assert_hostname or server_hostname) + + self.is_verified = ( + context.verify_mode == ssl.CERT_REQUIRED + or self.assert_fingerprint is not None + ) + + def _connect_tls_proxy(self, hostname, conn): + """ + Establish a TLS connection to the proxy using the provided SSL context. + """ + proxy_config = self.proxy_config + ssl_context = proxy_config.ssl_context + if ssl_context: + # If the user provided a proxy context, we assume CA and client + # certificates have already been set + return ssl_wrap_socket( + sock=conn, + server_hostname=hostname, + ssl_context=ssl_context, + ) + + ssl_context = create_proxy_ssl_context( + self.ssl_version, + self.cert_reqs, + self.ca_certs, + self.ca_cert_dir, + self.ca_cert_data, + ) + + # If no cert was provided, use only the default options for server + # certificate validation + socket = ssl_wrap_socket( + sock=conn, + ca_certs=self.ca_certs, + ca_cert_dir=self.ca_cert_dir, + ca_cert_data=self.ca_cert_data, + server_hostname=hostname, + ssl_context=ssl_context, + ) + + if ssl_context.verify_mode != ssl.CERT_NONE and not getattr( + ssl_context, "check_hostname", False + ): + # While urllib3 attempts to always turn off hostname matching from + # the TLS library, this cannot always be done. So we check whether + # the TLS Library still thinks it's matching hostnames. + cert = socket.getpeercert() + if not cert.get("subjectAltName", ()): + warnings.warn( + ( + "Certificate for {0} has no `subjectAltName`, falling back to check for a " + "`commonName` for now. This feature is being removed by major browsers and " + "deprecated by RFC 2818. (See https://github.com/urllib3/urllib3/issues/497 " + "for details.)".format(hostname) + ), + SubjectAltNameWarning, + ) + _match_hostname(cert, hostname) + + self.proxy_is_verified = ssl_context.verify_mode == ssl.CERT_REQUIRED + return socket + + +def _match_hostname(cert, asserted_hostname): + # Our upstream implementation of ssl.match_hostname() + # only applies this normalization to IP addresses so it doesn't + # match DNS SANs so we do the same thing! + stripped_hostname = asserted_hostname.strip("u[]") + if is_ipaddress(stripped_hostname): + asserted_hostname = stripped_hostname + + try: + match_hostname(cert, asserted_hostname) + except CertificateError as e: + log.warning( + "Certificate did not match expected hostname: %s. Certificate: %s", + asserted_hostname, + cert, + ) + # Add cert to exception and reraise so client code can inspect + # the cert when catching the exception, if they want to + e._peer_cert = cert + raise + + +def _get_default_user_agent(): + return "python-urllib3/%s" % __version__ + + +class DummyConnection(object): + """Used to detect a failed ConnectionCls import.""" + + pass + + +if not ssl: + HTTPSConnection = DummyConnection # noqa: F811 + + +VerifiedHTTPSConnection = HTTPSConnection diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py new file mode 100644 index 0000000..0872ed7 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py @@ -0,0 +1,1140 @@ +from __future__ import absolute_import + +import errno +import logging +import re +import socket +import sys +import warnings +from socket import error as SocketError +from socket import timeout as SocketTimeout + +from ._collections import HTTPHeaderDict +from .connection import ( + BaseSSLError, + BrokenPipeError, + DummyConnection, + HTTPConnection, + HTTPException, + HTTPSConnection, + VerifiedHTTPSConnection, + port_by_scheme, +) +from .exceptions import ( + ClosedPoolError, + EmptyPoolError, + HeaderParsingError, + HostChangedError, + InsecureRequestWarning, + LocationValueError, + MaxRetryError, + NewConnectionError, + ProtocolError, + ProxyError, + ReadTimeoutError, + SSLError, + TimeoutError, +) +from .packages import six +from .packages.six.moves import queue +from .request import RequestMethods +from .response import HTTPResponse +from .util.connection import is_connection_dropped +from .util.proxy import connection_requires_http_tunnel +from .util.queue import LifoQueue +from .util.request import set_file_position +from .util.response import assert_header_parsing +from .util.retry import Retry +from .util.ssl_match_hostname import CertificateError +from .util.timeout import Timeout +from .util.url import Url, _encode_target +from .util.url import _normalize_host as normalize_host +from .util.url import get_host, parse_url + +try: # Platform-specific: Python 3 + import weakref + + weakref_finalize = weakref.finalize +except AttributeError: # Platform-specific: Python 2 + from .packages.backports.weakref_finalize import weakref_finalize + +xrange = six.moves.xrange + +log = logging.getLogger(__name__) + +_Default = object() + + +# Pool objects +class ConnectionPool(object): + """ + Base class for all connection pools, such as + :class:`.HTTPConnectionPool` and :class:`.HTTPSConnectionPool`. + + .. note:: + ConnectionPool.urlopen() does not normalize or percent-encode target URIs + which is useful if your target server doesn't support percent-encoded + target URIs. + """ + + scheme = None + QueueCls = LifoQueue + + def __init__(self, host, port=None): + if not host: + raise LocationValueError("No host specified.") + + self.host = _normalize_host(host, scheme=self.scheme) + self._proxy_host = host.lower() + self.port = port + + def __str__(self): + return "%s(host=%r, port=%r)" % (type(self).__name__, self.host, self.port) + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + self.close() + # Return False to re-raise any potential exceptions + return False + + def close(self): + """ + Close all pooled connections and disable the pool. + """ + pass + + +# This is taken from http://hg.python.org/cpython/file/7aaba721ebc0/Lib/socket.py#l252 +_blocking_errnos = {errno.EAGAIN, errno.EWOULDBLOCK} + + +class HTTPConnectionPool(ConnectionPool, RequestMethods): + """ + Thread-safe connection pool for one host. + + :param host: + Host used for this HTTP Connection (e.g. "localhost"), passed into + :class:`http.client.HTTPConnection`. + + :param port: + Port used for this HTTP Connection (None is equivalent to 80), passed + into :class:`http.client.HTTPConnection`. + + :param strict: + Causes BadStatusLine to be raised if the status line can't be parsed + as a valid HTTP/1.0 or 1.1 status line, passed into + :class:`http.client.HTTPConnection`. + + .. note:: + Only works in Python 2. This parameter is ignored in Python 3. + + :param timeout: + Socket timeout in seconds for each individual connection. This can + be a float or integer, which sets the timeout for the HTTP request, + or an instance of :class:`urllib3.util.Timeout` which gives you more + fine-grained control over request timeouts. After the constructor has + been parsed, this is always a `urllib3.util.Timeout` object. + + :param maxsize: + Number of connections to save that can be reused. More than 1 is useful + in multithreaded situations. If ``block`` is set to False, more + connections will be created but they will not be saved once they've + been used. + + :param block: + If set to True, no more than ``maxsize`` connections will be used at + a time. When no free connections are available, the call will block + until a connection has been released. This is a useful side effect for + particular multithreaded situations where one does not want to use more + than maxsize connections per host to prevent flooding. + + :param headers: + Headers to include with all requests, unless other headers are given + explicitly. + + :param retries: + Retry configuration to use by default with requests in this pool. + + :param _proxy: + Parsed proxy URL, should not be used directly, instead, see + :class:`urllib3.ProxyManager` + + :param _proxy_headers: + A dictionary with proxy headers, should not be used directly, + instead, see :class:`urllib3.ProxyManager` + + :param \\**conn_kw: + Additional parameters are used to create fresh :class:`urllib3.connection.HTTPConnection`, + :class:`urllib3.connection.HTTPSConnection` instances. + """ + + scheme = "http" + ConnectionCls = HTTPConnection + ResponseCls = HTTPResponse + + def __init__( + self, + host, + port=None, + strict=False, + timeout=Timeout.DEFAULT_TIMEOUT, + maxsize=1, + block=False, + headers=None, + retries=None, + _proxy=None, + _proxy_headers=None, + _proxy_config=None, + **conn_kw + ): + ConnectionPool.__init__(self, host, port) + RequestMethods.__init__(self, headers) + + self.strict = strict + + if not isinstance(timeout, Timeout): + timeout = Timeout.from_float(timeout) + + if retries is None: + retries = Retry.DEFAULT + + self.timeout = timeout + self.retries = retries + + self.pool = self.QueueCls(maxsize) + self.block = block + + self.proxy = _proxy + self.proxy_headers = _proxy_headers or {} + self.proxy_config = _proxy_config + + # Fill the queue up so that doing get() on it will block properly + for _ in xrange(maxsize): + self.pool.put(None) + + # These are mostly for testing and debugging purposes. + self.num_connections = 0 + self.num_requests = 0 + self.conn_kw = conn_kw + + if self.proxy: + # Enable Nagle's algorithm for proxies, to avoid packet fragmentation. + # We cannot know if the user has added default socket options, so we cannot replace the + # list. + self.conn_kw.setdefault("socket_options", []) + + self.conn_kw["proxy"] = self.proxy + self.conn_kw["proxy_config"] = self.proxy_config + + # Do not pass 'self' as callback to 'finalize'. + # Then the 'finalize' would keep an endless living (leak) to self. + # By just passing a reference to the pool allows the garbage collector + # to free self if nobody else has a reference to it. + pool = self.pool + + # Close all the HTTPConnections in the pool before the + # HTTPConnectionPool object is garbage collected. + weakref_finalize(self, _close_pool_connections, pool) + + def _new_conn(self): + """ + Return a fresh :class:`HTTPConnection`. + """ + self.num_connections += 1 + log.debug( + "Starting new HTTP connection (%d): %s:%s", + self.num_connections, + self.host, + self.port or "80", + ) + + conn = self.ConnectionCls( + host=self.host, + port=self.port, + timeout=self.timeout.connect_timeout, + strict=self.strict, + **self.conn_kw + ) + return conn + + def _get_conn(self, timeout=None): + """ + Get a connection. Will return a pooled connection if one is available. + + If no connections are available and :prop:`.block` is ``False``, then a + fresh connection is returned. + + :param timeout: + Seconds to wait before giving up and raising + :class:`urllib3.exceptions.EmptyPoolError` if the pool is empty and + :prop:`.block` is ``True``. + """ + conn = None + try: + conn = self.pool.get(block=self.block, timeout=timeout) + + except AttributeError: # self.pool is None + raise ClosedPoolError(self, "Pool is closed.") + + except queue.Empty: + if self.block: + raise EmptyPoolError( + self, + "Pool reached maximum size and no more connections are allowed.", + ) + pass # Oh well, we'll create a new connection then + + # If this is a persistent connection, check if it got disconnected + if conn and is_connection_dropped(conn): + log.debug("Resetting dropped connection: %s", self.host) + conn.close() + if getattr(conn, "auto_open", 1) == 0: + # This is a proxied connection that has been mutated by + # http.client._tunnel() and cannot be reused (since it would + # attempt to bypass the proxy) + conn = None + + return conn or self._new_conn() + + def _put_conn(self, conn): + """ + Put a connection back into the pool. + + :param conn: + Connection object for the current host and port as returned by + :meth:`._new_conn` or :meth:`._get_conn`. + + If the pool is already full, the connection is closed and discarded + because we exceeded maxsize. If connections are discarded frequently, + then maxsize should be increased. + + If the pool is closed, then the connection will be closed and discarded. + """ + try: + self.pool.put(conn, block=False) + return # Everything is dandy, done. + except AttributeError: + # self.pool is None. + pass + except queue.Full: + # This should never happen if self.block == True + log.warning( + "Connection pool is full, discarding connection: %s. Connection pool size: %s", + self.host, + self.pool.qsize(), + ) + # Connection never got put back into the pool, close it. + if conn: + conn.close() + + def _validate_conn(self, conn): + """ + Called right before a request is made, after the socket is created. + """ + pass + + def _prepare_proxy(self, conn): + # Nothing to do for HTTP connections. + pass + + def _get_timeout(self, timeout): + """Helper that always returns a :class:`urllib3.util.Timeout`""" + if timeout is _Default: + return self.timeout.clone() + + if isinstance(timeout, Timeout): + return timeout.clone() + else: + # User passed us an int/float. This is for backwards compatibility, + # can be removed later + return Timeout.from_float(timeout) + + def _raise_timeout(self, err, url, timeout_value): + """Is the error actually a timeout? Will raise a ReadTimeout or pass""" + + if isinstance(err, SocketTimeout): + raise ReadTimeoutError( + self, url, "Read timed out. (read timeout=%s)" % timeout_value + ) + + # See the above comment about EAGAIN in Python 3. In Python 2 we have + # to specifically catch it and throw the timeout error + if hasattr(err, "errno") and err.errno in _blocking_errnos: + raise ReadTimeoutError( + self, url, "Read timed out. (read timeout=%s)" % timeout_value + ) + + # Catch possible read timeouts thrown as SSL errors. If not the + # case, rethrow the original. We need to do this because of: + # http://bugs.python.org/issue10272 + if "timed out" in str(err) or "did not complete (read)" in str( + err + ): # Python < 2.7.4 + raise ReadTimeoutError( + self, url, "Read timed out. (read timeout=%s)" % timeout_value + ) + + def _make_request( + self, conn, method, url, timeout=_Default, chunked=False, **httplib_request_kw + ): + """ + Perform a request on a given urllib connection object taken from our + pool. + + :param conn: + a connection from one of our connection pools + + :param timeout: + Socket timeout in seconds for the request. This can be a + float or integer, which will set the same timeout value for + the socket connect and the socket read, or an instance of + :class:`urllib3.util.Timeout`, which gives you more fine-grained + control over your timeouts. + """ + self.num_requests += 1 + + timeout_obj = self._get_timeout(timeout) + timeout_obj.start_connect() + conn.timeout = Timeout.resolve_default_timeout(timeout_obj.connect_timeout) + + # Trigger any extra validation we need to do. + try: + self._validate_conn(conn) + except (SocketTimeout, BaseSSLError) as e: + # Py2 raises this as a BaseSSLError, Py3 raises it as socket timeout. + self._raise_timeout(err=e, url=url, timeout_value=conn.timeout) + raise + + # conn.request() calls http.client.*.request, not the method in + # urllib3.request. It also calls makefile (recv) on the socket. + try: + if chunked: + conn.request_chunked(method, url, **httplib_request_kw) + else: + conn.request(method, url, **httplib_request_kw) + + # We are swallowing BrokenPipeError (errno.EPIPE) since the server is + # legitimately able to close the connection after sending a valid response. + # With this behaviour, the received response is still readable. + except BrokenPipeError: + # Python 3 + pass + except IOError as e: + # Python 2 and macOS/Linux + # EPIPE and ESHUTDOWN are BrokenPipeError on Python 2, and EPROTOTYPE/ECONNRESET are needed on macOS + # https://erickt.github.io/blog/2014/11/19/adventures-in-debugging-a-potential-osx-kernel-bug/ + if e.errno not in { + errno.EPIPE, + errno.ESHUTDOWN, + errno.EPROTOTYPE, + errno.ECONNRESET, + }: + raise + + # Reset the timeout for the recv() on the socket + read_timeout = timeout_obj.read_timeout + + # App Engine doesn't have a sock attr + if getattr(conn, "sock", None): + # In Python 3 socket.py will catch EAGAIN and return None when you + # try and read into the file pointer created by http.client, which + # instead raises a BadStatusLine exception. Instead of catching + # the exception and assuming all BadStatusLine exceptions are read + # timeouts, check for a zero timeout before making the request. + if read_timeout == 0: + raise ReadTimeoutError( + self, url, "Read timed out. (read timeout=%s)" % read_timeout + ) + if read_timeout is Timeout.DEFAULT_TIMEOUT: + conn.sock.settimeout(socket.getdefaulttimeout()) + else: # None or a value + conn.sock.settimeout(read_timeout) + + # Receive the response from the server + try: + try: + # Python 2.7, use buffering of HTTP responses + httplib_response = conn.getresponse(buffering=True) + except TypeError: + # Python 3 + try: + httplib_response = conn.getresponse() + except BaseException as e: + # Remove the TypeError from the exception chain in + # Python 3 (including for exceptions like SystemExit). + # Otherwise it looks like a bug in the code. + six.raise_from(e, None) + except (SocketTimeout, BaseSSLError, SocketError) as e: + self._raise_timeout(err=e, url=url, timeout_value=read_timeout) + raise + + # AppEngine doesn't have a version attr. + http_version = getattr(conn, "_http_vsn_str", "HTTP/?") + log.debug( + '%s://%s:%s "%s %s %s" %s %s', + self.scheme, + self.host, + self.port, + method, + url, + http_version, + httplib_response.status, + httplib_response.length, + ) + + try: + assert_header_parsing(httplib_response.msg) + except (HeaderParsingError, TypeError) as hpe: # Platform-specific: Python 3 + log.warning( + "Failed to parse headers (url=%s): %s", + self._absolute_url(url), + hpe, + exc_info=True, + ) + + return httplib_response + + def _absolute_url(self, path): + return Url(scheme=self.scheme, host=self.host, port=self.port, path=path).url + + def close(self): + """ + Close all pooled connections and disable the pool. + """ + if self.pool is None: + return + # Disable access to the pool + old_pool, self.pool = self.pool, None + + # Close all the HTTPConnections in the pool. + _close_pool_connections(old_pool) + + def is_same_host(self, url): + """ + Check if the given ``url`` is a member of the same host as this + connection pool. + """ + if url.startswith("/"): + return True + + # TODO: Add optional support for socket.gethostbyname checking. + scheme, host, port = get_host(url) + if host is not None: + host = _normalize_host(host, scheme=scheme) + + # Use explicit default port for comparison when none is given + if self.port and not port: + port = port_by_scheme.get(scheme) + elif not self.port and port == port_by_scheme.get(scheme): + port = None + + return (scheme, host, port) == (self.scheme, self.host, self.port) + + def urlopen( + self, + method, + url, + body=None, + headers=None, + retries=None, + redirect=True, + assert_same_host=True, + timeout=_Default, + pool_timeout=None, + release_conn=None, + chunked=False, + body_pos=None, + **response_kw + ): + """ + Get a connection from the pool and perform an HTTP request. This is the + lowest level call for making a request, so you'll need to specify all + the raw details. + + .. note:: + + More commonly, it's appropriate to use a convenience method provided + by :class:`.RequestMethods`, such as :meth:`request`. + + .. note:: + + `release_conn` will only behave as expected if + `preload_content=False` because we want to make + `preload_content=False` the default behaviour someday soon without + breaking backwards compatibility. + + :param method: + HTTP request method (such as GET, POST, PUT, etc.) + + :param url: + The URL to perform the request on. + + :param body: + Data to send in the request body, either :class:`str`, :class:`bytes`, + an iterable of :class:`str`/:class:`bytes`, or a file-like object. + + :param headers: + Dictionary of custom headers to send, such as User-Agent, + If-None-Match, etc. If None, pool headers are used. If provided, + these headers completely replace any pool-specific headers. + + :param retries: + Configure the number of retries to allow before raising a + :class:`~urllib3.exceptions.MaxRetryError` exception. + + Pass ``None`` to retry until you receive a response. Pass a + :class:`~urllib3.util.retry.Retry` object for fine-grained control + over different types of retries. + Pass an integer number to retry connection errors that many times, + but no other types of errors. Pass zero to never retry. + + If ``False``, then retries are disabled and any exception is raised + immediately. Also, instead of raising a MaxRetryError on redirects, + the redirect response will be returned. + + :type retries: :class:`~urllib3.util.retry.Retry`, False, or an int. + + :param redirect: + If True, automatically handle redirects (status codes 301, 302, + 303, 307, 308). Each redirect counts as a retry. Disabling retries + will disable redirect, too. + + :param assert_same_host: + If ``True``, will make sure that the host of the pool requests is + consistent else will raise HostChangedError. When ``False``, you can + use the pool on an HTTP proxy and request foreign hosts. + + :param timeout: + If specified, overrides the default timeout for this one + request. It may be a float (in seconds) or an instance of + :class:`urllib3.util.Timeout`. + + :param pool_timeout: + If set and the pool is set to block=True, then this method will + block for ``pool_timeout`` seconds and raise EmptyPoolError if no + connection is available within the time period. + + :param release_conn: + If False, then the urlopen call will not release the connection + back into the pool once a response is received (but will release if + you read the entire contents of the response such as when + `preload_content=True`). This is useful if you're not preloading + the response's content immediately. You will need to call + ``r.release_conn()`` on the response ``r`` to return the connection + back into the pool. If None, it takes the value of + ``response_kw.get('preload_content', True)``. + + :param chunked: + If True, urllib3 will send the body using chunked transfer + encoding. Otherwise, urllib3 will send the body using the standard + content-length form. Defaults to False. + + :param int body_pos: + Position to seek to in file-like body in the event of a retry or + redirect. Typically this won't need to be set because urllib3 will + auto-populate the value when needed. + + :param \\**response_kw: + Additional parameters are passed to + :meth:`urllib3.response.HTTPResponse.from_httplib` + """ + + parsed_url = parse_url(url) + destination_scheme = parsed_url.scheme + + if headers is None: + headers = self.headers + + if not isinstance(retries, Retry): + retries = Retry.from_int(retries, redirect=redirect, default=self.retries) + + if release_conn is None: + release_conn = response_kw.get("preload_content", True) + + # Check host + if assert_same_host and not self.is_same_host(url): + raise HostChangedError(self, url, retries) + + # Ensure that the URL we're connecting to is properly encoded + if url.startswith("/"): + url = six.ensure_str(_encode_target(url)) + else: + url = six.ensure_str(parsed_url.url) + + conn = None + + # Track whether `conn` needs to be released before + # returning/raising/recursing. Update this variable if necessary, and + # leave `release_conn` constant throughout the function. That way, if + # the function recurses, the original value of `release_conn` will be + # passed down into the recursive call, and its value will be respected. + # + # See issue #651 [1] for details. + # + # [1] + release_this_conn = release_conn + + http_tunnel_required = connection_requires_http_tunnel( + self.proxy, self.proxy_config, destination_scheme + ) + + # Merge the proxy headers. Only done when not using HTTP CONNECT. We + # have to copy the headers dict so we can safely change it without those + # changes being reflected in anyone else's copy. + if not http_tunnel_required: + headers = headers.copy() + headers.update(self.proxy_headers) + + # Must keep the exception bound to a separate variable or else Python 3 + # complains about UnboundLocalError. + err = None + + # Keep track of whether we cleanly exited the except block. This + # ensures we do proper cleanup in finally. + clean_exit = False + + # Rewind body position, if needed. Record current position + # for future rewinds in the event of a redirect/retry. + body_pos = set_file_position(body, body_pos) + + try: + # Request a connection from the queue. + timeout_obj = self._get_timeout(timeout) + conn = self._get_conn(timeout=pool_timeout) + + conn.timeout = timeout_obj.connect_timeout + + is_new_proxy_conn = self.proxy is not None and not getattr( + conn, "sock", None + ) + if is_new_proxy_conn and http_tunnel_required: + self._prepare_proxy(conn) + + # Make the request on the httplib connection object. + httplib_response = self._make_request( + conn, + method, + url, + timeout=timeout_obj, + body=body, + headers=headers, + chunked=chunked, + ) + + # If we're going to release the connection in ``finally:``, then + # the response doesn't need to know about the connection. Otherwise + # it will also try to release it and we'll have a double-release + # mess. + response_conn = conn if not release_conn else None + + # Pass method to Response for length checking + response_kw["request_method"] = method + + # Import httplib's response into our own wrapper object + response = self.ResponseCls.from_httplib( + httplib_response, + pool=self, + connection=response_conn, + retries=retries, + **response_kw + ) + + # Everything went great! + clean_exit = True + + except EmptyPoolError: + # Didn't get a connection from the pool, no need to clean up + clean_exit = True + release_this_conn = False + raise + + except ( + TimeoutError, + HTTPException, + SocketError, + ProtocolError, + BaseSSLError, + SSLError, + CertificateError, + ) as e: + # Discard the connection for these exceptions. It will be + # replaced during the next _get_conn() call. + clean_exit = False + + def _is_ssl_error_message_from_http_proxy(ssl_error): + # We're trying to detect the message 'WRONG_VERSION_NUMBER' but + # SSLErrors are kinda all over the place when it comes to the message, + # so we try to cover our bases here! + message = " ".join(re.split("[^a-z]", str(ssl_error).lower())) + return ( + "wrong version number" in message + or "unknown protocol" in message + or "record layer failure" in message + ) + + # Try to detect a common user error with proxies which is to + # set an HTTP proxy to be HTTPS when it should be 'http://' + # (ie {'http': 'http://proxy', 'https': 'https://proxy'}) + # Instead we add a nice error message and point to a URL. + if ( + isinstance(e, BaseSSLError) + and self.proxy + and _is_ssl_error_message_from_http_proxy(e) + and conn.proxy + and conn.proxy.scheme == "https" + ): + e = ProxyError( + "Your proxy appears to only use HTTP and not HTTPS, " + "try changing your proxy URL to be HTTP. See: " + "https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html" + "#https-proxy-error-http-proxy", + SSLError(e), + ) + elif isinstance(e, (BaseSSLError, CertificateError)): + e = SSLError(e) + elif isinstance(e, (SocketError, NewConnectionError)) and self.proxy: + e = ProxyError("Cannot connect to proxy.", e) + elif isinstance(e, (SocketError, HTTPException)): + e = ProtocolError("Connection aborted.", e) + + retries = retries.increment( + method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2] + ) + retries.sleep() + + # Keep track of the error for the retry warning. + err = e + + finally: + if not clean_exit: + # We hit some kind of exception, handled or otherwise. We need + # to throw the connection away unless explicitly told not to. + # Close the connection, set the variable to None, and make sure + # we put the None back in the pool to avoid leaking it. + conn = conn and conn.close() + release_this_conn = True + + if release_this_conn: + # Put the connection back to be reused. If the connection is + # expired then it will be None, which will get replaced with a + # fresh connection during _get_conn. + self._put_conn(conn) + + if not conn: + # Try again + log.warning( + "Retrying (%r) after connection broken by '%r': %s", retries, err, url + ) + return self.urlopen( + method, + url, + body, + headers, + retries, + redirect, + assert_same_host, + timeout=timeout, + pool_timeout=pool_timeout, + release_conn=release_conn, + chunked=chunked, + body_pos=body_pos, + **response_kw + ) + + # Handle redirect? + redirect_location = redirect and response.get_redirect_location() + if redirect_location: + if response.status == 303: + # Change the method according to RFC 9110, Section 15.4.4. + method = "GET" + # And lose the body not to transfer anything sensitive. + body = None + headers = HTTPHeaderDict(headers)._prepare_for_method_change() + + try: + retries = retries.increment(method, url, response=response, _pool=self) + except MaxRetryError: + if retries.raise_on_redirect: + response.drain_conn() + raise + return response + + response.drain_conn() + retries.sleep_for_retry(response) + log.debug("Redirecting %s -> %s", url, redirect_location) + return self.urlopen( + method, + redirect_location, + body, + headers, + retries=retries, + redirect=redirect, + assert_same_host=assert_same_host, + timeout=timeout, + pool_timeout=pool_timeout, + release_conn=release_conn, + chunked=chunked, + body_pos=body_pos, + **response_kw + ) + + # Check if we should retry the HTTP response. + has_retry_after = bool(response.headers.get("Retry-After")) + if retries.is_retry(method, response.status, has_retry_after): + try: + retries = retries.increment(method, url, response=response, _pool=self) + except MaxRetryError: + if retries.raise_on_status: + response.drain_conn() + raise + return response + + response.drain_conn() + retries.sleep(response) + log.debug("Retry: %s", url) + return self.urlopen( + method, + url, + body, + headers, + retries=retries, + redirect=redirect, + assert_same_host=assert_same_host, + timeout=timeout, + pool_timeout=pool_timeout, + release_conn=release_conn, + chunked=chunked, + body_pos=body_pos, + **response_kw + ) + + return response + + +class HTTPSConnectionPool(HTTPConnectionPool): + """ + Same as :class:`.HTTPConnectionPool`, but HTTPS. + + :class:`.HTTPSConnection` uses one of ``assert_fingerprint``, + ``assert_hostname`` and ``host`` in this order to verify connections. + If ``assert_hostname`` is False, no verification is done. + + The ``key_file``, ``cert_file``, ``cert_reqs``, ``ca_certs``, + ``ca_cert_dir``, ``ssl_version``, ``key_password`` are only used if :mod:`ssl` + is available and are fed into :meth:`urllib3.util.ssl_wrap_socket` to upgrade + the connection socket into an SSL socket. + """ + + scheme = "https" + ConnectionCls = HTTPSConnection + + def __init__( + self, + host, + port=None, + strict=False, + timeout=Timeout.DEFAULT_TIMEOUT, + maxsize=1, + block=False, + headers=None, + retries=None, + _proxy=None, + _proxy_headers=None, + key_file=None, + cert_file=None, + cert_reqs=None, + key_password=None, + ca_certs=None, + ssl_version=None, + assert_hostname=None, + assert_fingerprint=None, + ca_cert_dir=None, + **conn_kw + ): + + HTTPConnectionPool.__init__( + self, + host, + port, + strict, + timeout, + maxsize, + block, + headers, + retries, + _proxy, + _proxy_headers, + **conn_kw + ) + + self.key_file = key_file + self.cert_file = cert_file + self.cert_reqs = cert_reqs + self.key_password = key_password + self.ca_certs = ca_certs + self.ca_cert_dir = ca_cert_dir + self.ssl_version = ssl_version + self.assert_hostname = assert_hostname + self.assert_fingerprint = assert_fingerprint + + def _prepare_conn(self, conn): + """ + Prepare the ``connection`` for :meth:`urllib3.util.ssl_wrap_socket` + and establish the tunnel if proxy is used. + """ + + if isinstance(conn, VerifiedHTTPSConnection): + conn.set_cert( + key_file=self.key_file, + key_password=self.key_password, + cert_file=self.cert_file, + cert_reqs=self.cert_reqs, + ca_certs=self.ca_certs, + ca_cert_dir=self.ca_cert_dir, + assert_hostname=self.assert_hostname, + assert_fingerprint=self.assert_fingerprint, + ) + conn.ssl_version = self.ssl_version + return conn + + def _prepare_proxy(self, conn): + """ + Establishes a tunnel connection through HTTP CONNECT. + + Tunnel connection is established early because otherwise httplib would + improperly set Host: header to proxy's IP:port. + """ + + conn.set_tunnel(self._proxy_host, self.port, self.proxy_headers) + + if self.proxy.scheme == "https": + conn.tls_in_tls_required = True + + conn.connect() + + def _new_conn(self): + """ + Return a fresh :class:`http.client.HTTPSConnection`. + """ + self.num_connections += 1 + log.debug( + "Starting new HTTPS connection (%d): %s:%s", + self.num_connections, + self.host, + self.port or "443", + ) + + if not self.ConnectionCls or self.ConnectionCls is DummyConnection: + raise SSLError( + "Can't connect to HTTPS URL because the SSL module is not available." + ) + + actual_host = self.host + actual_port = self.port + if self.proxy is not None: + actual_host = self.proxy.host + actual_port = self.proxy.port + + conn = self.ConnectionCls( + host=actual_host, + port=actual_port, + timeout=self.timeout.connect_timeout, + strict=self.strict, + cert_file=self.cert_file, + key_file=self.key_file, + key_password=self.key_password, + **self.conn_kw + ) + + return self._prepare_conn(conn) + + def _validate_conn(self, conn): + """ + Called right before a request is made, after the socket is created. + """ + super(HTTPSConnectionPool, self)._validate_conn(conn) + + # Force connect early to allow us to validate the connection. + if not getattr(conn, "sock", None): # AppEngine might not have `.sock` + conn.connect() + + if not conn.is_verified: + warnings.warn( + ( + "Unverified HTTPS request is being made to host '%s'. " + "Adding certificate verification is strongly advised. See: " + "https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html" + "#ssl-warnings" % conn.host + ), + InsecureRequestWarning, + ) + + if getattr(conn, "proxy_is_verified", None) is False: + warnings.warn( + ( + "Unverified HTTPS connection done to an HTTPS proxy. " + "Adding certificate verification is strongly advised. See: " + "https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html" + "#ssl-warnings" + ), + InsecureRequestWarning, + ) + + +def connection_from_url(url, **kw): + """ + Given a url, return an :class:`.ConnectionPool` instance of its host. + + This is a shortcut for not having to parse out the scheme, host, and port + of the url before creating an :class:`.ConnectionPool` instance. + + :param url: + Absolute URL string that must include the scheme. Port is optional. + + :param \\**kw: + Passes additional parameters to the constructor of the appropriate + :class:`.ConnectionPool`. Useful for specifying things like + timeout, maxsize, headers, etc. + + Example:: + + >>> conn = connection_from_url('http://google.com/') + >>> r = conn.request('GET', '/') + """ + scheme, host, port = get_host(url) + port = port or port_by_scheme.get(scheme, 80) + if scheme == "https": + return HTTPSConnectionPool(host, port=port, **kw) + else: + return HTTPConnectionPool(host, port=port, **kw) + + +def _normalize_host(host, scheme): + """ + Normalize hosts for comparisons and use with sockets. + """ + + host = normalize_host(host, scheme) + + # httplib doesn't like it when we include brackets in IPv6 addresses + # Specifically, if we include brackets but also pass the port then + # httplib crazily doubles up the square brackets on the Host header. + # Instead, we need to make sure we never pass ``None`` as the port. + # However, for backward compatibility reasons we can't actually + # *assert* that. See http://bugs.python.org/issue28539 + if host.startswith("[") and host.endswith("]"): + host = host[1:-1] + return host + + +def _close_pool_connections(pool): + """Drains a queue of connections and closes each one.""" + try: + while True: + conn = pool.get(block=False) + if conn: + conn.close() + except queue.Empty: + pass # Done. diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..61bfdab415348a3f2fca072eb81ab352866d28a8 GIT binary patch literal 226 zcmX@j%ge<81lcE5GC=fW5P=Rpvj9b=GgLBYGWxA#C}INgK7-VJtpgIyRxzQ)sYS&x zi8-kisWJX}sV+sCWvMY27F^hHVdI5;7uzrFxUf^V!Z literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0514b3f153803ae7ffe8e4ab457305af6dcfb364 GIT binary patch literal 1876 zcmdT_-)kI29G}^{+?{uqwuvFMLC;B}#w+m_q9jmiA(~4msn?RE3gKYc+nL<$Wp8(x znLBfNN<~oc#kVL3DhN{YVnC=O7GK4eP2)pZd=PvP-)f@oerNAT(Y0|b*UfUH4Qndjuq$O@OZKvFTI*(&iL!6|y3t}T^|;>T zj$>C|(JjxF+^*=4ff!vv3Vu7x0?a;W{uDq&+ccQdytv=W#ZNSiJ2fi z!;_FWoxBCeY@^f2 z;xa~+H?118*2$X3p;{p-Cm16&DSdHS*Dc3u(n8hqstzkyUPJGTqEpWjx{$CglT*Ei zJ*p56&E2|HEM2=^DjG|-ODoskEQTq+Eo+`TJ)4h3dWM=O!em!+o&cUB5xLSi962h# z(dCYxg;W+UK_G0Qzt5oT`46u?$Si(Z`KyO10697;UrU&|H)J^^um7P zMMc%*Nvfb$$8SoFZPdnjZ8I~^e9kOWGFn*ZV0jWyIC|oMHX5yl;OC*pMYx1QyoG+t zoQuAgPlidufW2rK9e=2^GTJE}6GZD%?;cxtn7Y#WU0vm4kX3#Zc?geU7~{V*4aW~t f2&WGc7|$N0lK2Kb7>VKWgKP{>9%eN>6n*_)=Hjm& literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10ea9a4105cf81a9978cd527f39b2eef968590f4 GIT binary patch literal 11592 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb2f1567a72ac64c6d58e8237f6e5b8a2d8301e7 GIT binary patch literal 35529 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 K{NDv8xc?t4ocksK literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0a19c659c0b71ff0250f2c0c1e9b6359c3e7d53 GIT binary patch literal 7539 zcmb_hZEPIJd7i!9(&Z_LNx3`0ve!B4HV9=HZ72*Zkwj)pF7KiE*lvU&=iILQ6k+6 z@t?l$?Cu>&QK|!UWzOx)JM(_eJI}2DEffk6cxL}~&-70^2>B1}xKEw)vNpjHa+4?| zMHEi)Xk6Bl@^HkDJznEeJpB4Je>RW`ayTZ!dwnVd?}Fmj!r4eFl5I#euzo;m%tlku zY%CRH{h(Htji=(-rc@K_*K5t$mQ)LS4{5F0wp3eHQhTc1L%vCr@O7d@XyilQ)-Tn; zMjK$Xk#^9A4+Up@2OE#Vc#KA?vv;!5IE*&YSar0MjW)w*3vH>6b}jI`2^IDby$du# zYrQEiSmgz+eJLMDJcN2@8eE6few8}v`_NYDn3)O;?jNyc2Ekk?IVDz8iD&mMp2JW{Wy z)R3n1d{&xQ&1p3knA0^)oqRSaZRF=HHSBf$2b|wwsVAM2=oORZP==JBatMh7QaYyu zn3Mrvm6vEPJqe1bCP0|&LKpnf(Y(b-03O+zNuHgn-H#G-B^mOi3it0MnN>em#&gs-h zN~cXJtr_`1)npVlmDjZVyqbH}5#UZA3

>zL=Omhc3v#^vFJ@U4MG8uP>QQPD~`K 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a41793c190c591c562d14c302bc88d3cc41c2ef GIT binary patch literal 17455 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 + + 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. +""" +from __future__ import absolute_import + +import platform +from ctypes import ( + CDLL, + CFUNCTYPE, + POINTER, + c_bool, + c_byte, + c_char_p, + c_int32, + c_long, + c_size_t, + c_uint32, + c_ulong, + c_void_p, +) +from ctypes.util import find_library + +from ...packages.six import raise_from + +if platform.system() != "Darwin": + raise ImportError("Only macOS is supported") + +version = platform.mac_ver()[0] +version_info = tuple(map(int, version.split("."))) +if version_info < (10, 8): + raise OSError( + "Only OS X 10.8 and newer are supported, not %s.%s" + % (version_info[0], version_info[1]) + ) + + +def load_cdll(name, macos10_16_path): + """Loads a CDLL by name, falling back to known path on 10.16+""" + try: + # Big Sur is technically 11 but we use 10.16 due to the Big Sur + # beta being labeled as 10.16. + if version_info >= (10, 16): + path = macos10_16_path + else: + path = find_library(name) + if not path: + raise OSError # Caught and reraised as 'ImportError' + return CDLL(path, use_errno=True) + except OSError: + raise_from(ImportError("The library %s failed to load" % name), None) + + +Security = load_cdll( + "Security", "/System/Library/Frameworks/Security.framework/Security" +) +CoreFoundation = load_cdll( + "CoreFoundation", + "/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation", +) + + +Boolean = c_bool +CFIndex = c_long +CFStringEncoding = c_uint32 +CFData = c_void_p +CFString = c_void_p +CFArray = c_void_p +CFMutableArray = c_void_p +CFDictionary = c_void_p +CFError = c_void_p +CFType = c_void_p +CFTypeID = c_ulong + +CFTypeRef = POINTER(CFType) +CFAllocatorRef = c_void_p + +OSStatus = c_int32 + +CFDataRef = POINTER(CFData) +CFStringRef = POINTER(CFString) +CFArrayRef = POINTER(CFArray) +CFMutableArrayRef = POINTER(CFMutableArray) +CFDictionaryRef = POINTER(CFDictionary) +CFArrayCallBacks = c_void_p +CFDictionaryKeyCallBacks = c_void_p +CFDictionaryValueCallBacks = c_void_p + +SecCertificateRef = POINTER(c_void_p) +SecExternalFormat = c_uint32 +SecExternalItemType = c_uint32 +SecIdentityRef = POINTER(c_void_p) +SecItemImportExportFlags = c_uint32 +SecItemImportExportKeyParameters = c_void_p +SecKeychainRef = POINTER(c_void_p) +SSLProtocol = c_uint32 +SSLCipherSuite = c_uint32 +SSLContextRef = POINTER(c_void_p) +SecTrustRef = POINTER(c_void_p) +SSLConnectionRef = c_uint32 +SecTrustResultType = c_uint32 +SecTrustOptionFlags = c_uint32 +SSLProtocolSide = c_uint32 +SSLConnectionType = c_uint32 +SSLSessionOption = c_uint32 + + +try: + Security.SecItemImport.argtypes = [ + CFDataRef, + CFStringRef, + POINTER(SecExternalFormat), + POINTER(SecExternalItemType), + SecItemImportExportFlags, + POINTER(SecItemImportExportKeyParameters), + SecKeychainRef, + POINTER(CFArrayRef), + ] + Security.SecItemImport.restype = OSStatus + + Security.SecCertificateGetTypeID.argtypes = [] + Security.SecCertificateGetTypeID.restype = CFTypeID + + Security.SecIdentityGetTypeID.argtypes = [] + Security.SecIdentityGetTypeID.restype = CFTypeID + + Security.SecKeyGetTypeID.argtypes = [] + Security.SecKeyGetTypeID.restype = CFTypeID + + Security.SecCertificateCreateWithData.argtypes = [CFAllocatorRef, CFDataRef] + Security.SecCertificateCreateWithData.restype = SecCertificateRef + + Security.SecCertificateCopyData.argtypes = [SecCertificateRef] + Security.SecCertificateCopyData.restype = CFDataRef + + Security.SecCopyErrorMessageString.argtypes = [OSStatus, c_void_p] + Security.SecCopyErrorMessageString.restype = CFStringRef + + Security.SecIdentityCreateWithCertificate.argtypes = [ + CFTypeRef, + SecCertificateRef, + POINTER(SecIdentityRef), + ] + Security.SecIdentityCreateWithCertificate.restype = OSStatus + + Security.SecKeychainCreate.argtypes = [ + c_char_p, + c_uint32, + c_void_p, + Boolean, + c_void_p, + POINTER(SecKeychainRef), + ] + Security.SecKeychainCreate.restype = OSStatus + + Security.SecKeychainDelete.argtypes = [SecKeychainRef] + Security.SecKeychainDelete.restype = OSStatus + + Security.SecPKCS12Import.argtypes = [ + CFDataRef, + CFDictionaryRef, + POINTER(CFArrayRef), + ] + Security.SecPKCS12Import.restype = OSStatus + + SSLReadFunc = CFUNCTYPE(OSStatus, SSLConnectionRef, c_void_p, POINTER(c_size_t)) + SSLWriteFunc = CFUNCTYPE( + OSStatus, SSLConnectionRef, POINTER(c_byte), POINTER(c_size_t) + ) + + Security.SSLSetIOFuncs.argtypes = [SSLContextRef, SSLReadFunc, SSLWriteFunc] + Security.SSLSetIOFuncs.restype = OSStatus + + Security.SSLSetPeerID.argtypes = [SSLContextRef, c_char_p, c_size_t] + Security.SSLSetPeerID.restype = OSStatus + + Security.SSLSetCertificate.argtypes = [SSLContextRef, CFArrayRef] + Security.SSLSetCertificate.restype = OSStatus + + Security.SSLSetCertificateAuthorities.argtypes = [SSLContextRef, CFTypeRef, Boolean] + Security.SSLSetCertificateAuthorities.restype = OSStatus + + Security.SSLSetConnection.argtypes = [SSLContextRef, SSLConnectionRef] + Security.SSLSetConnection.restype = OSStatus + + Security.SSLSetPeerDomainName.argtypes = [SSLContextRef, c_char_p, c_size_t] + Security.SSLSetPeerDomainName.restype = OSStatus + + Security.SSLHandshake.argtypes = [SSLContextRef] + Security.SSLHandshake.restype = OSStatus + + Security.SSLRead.argtypes = [SSLContextRef, c_char_p, c_size_t, POINTER(c_size_t)] + Security.SSLRead.restype = OSStatus + + Security.SSLWrite.argtypes = [SSLContextRef, c_char_p, c_size_t, POINTER(c_size_t)] + Security.SSLWrite.restype = OSStatus + + Security.SSLClose.argtypes = [SSLContextRef] + Security.SSLClose.restype = OSStatus + + Security.SSLGetNumberSupportedCiphers.argtypes = [SSLContextRef, POINTER(c_size_t)] + Security.SSLGetNumberSupportedCiphers.restype = OSStatus + + Security.SSLGetSupportedCiphers.argtypes = [ + SSLContextRef, + POINTER(SSLCipherSuite), + POINTER(c_size_t), + ] + Security.SSLGetSupportedCiphers.restype = OSStatus + + Security.SSLSetEnabledCiphers.argtypes = [ + SSLContextRef, + POINTER(SSLCipherSuite), + c_size_t, + ] + Security.SSLSetEnabledCiphers.restype = OSStatus + + Security.SSLGetNumberEnabledCiphers.argtype = [SSLContextRef, POINTER(c_size_t)] + Security.SSLGetNumberEnabledCiphers.restype = OSStatus + + Security.SSLGetEnabledCiphers.argtypes = [ + SSLContextRef, + POINTER(SSLCipherSuite), + POINTER(c_size_t), + ] + Security.SSLGetEnabledCiphers.restype = OSStatus + + Security.SSLGetNegotiatedCipher.argtypes = [SSLContextRef, POINTER(SSLCipherSuite)] + Security.SSLGetNegotiatedCipher.restype = OSStatus + + Security.SSLGetNegotiatedProtocolVersion.argtypes = [ + SSLContextRef, + POINTER(SSLProtocol), + ] + Security.SSLGetNegotiatedProtocolVersion.restype = OSStatus + + Security.SSLCopyPeerTrust.argtypes = [SSLContextRef, POINTER(SecTrustRef)] + Security.SSLCopyPeerTrust.restype = OSStatus + + Security.SecTrustSetAnchorCertificates.argtypes = [SecTrustRef, CFArrayRef] + Security.SecTrustSetAnchorCertificates.restype = OSStatus + + Security.SecTrustSetAnchorCertificatesOnly.argstypes = [SecTrustRef, Boolean] + Security.SecTrustSetAnchorCertificatesOnly.restype = OSStatus + + Security.SecTrustEvaluate.argtypes = [SecTrustRef, POINTER(SecTrustResultType)] + Security.SecTrustEvaluate.restype = OSStatus + + Security.SecTrustGetCertificateCount.argtypes = [SecTrustRef] + Security.SecTrustGetCertificateCount.restype = CFIndex + + Security.SecTrustGetCertificateAtIndex.argtypes = [SecTrustRef, CFIndex] + Security.SecTrustGetCertificateAtIndex.restype = SecCertificateRef + + Security.SSLCreateContext.argtypes = [ + CFAllocatorRef, + SSLProtocolSide, + SSLConnectionType, + ] + Security.SSLCreateContext.restype = SSLContextRef + + Security.SSLSetSessionOption.argtypes = [SSLContextRef, SSLSessionOption, Boolean] + Security.SSLSetSessionOption.restype = OSStatus + + Security.SSLSetProtocolVersionMin.argtypes = [SSLContextRef, SSLProtocol] + Security.SSLSetProtocolVersionMin.restype = OSStatus + + Security.SSLSetProtocolVersionMax.argtypes = [SSLContextRef, SSLProtocol] + Security.SSLSetProtocolVersionMax.restype = OSStatus + + try: + Security.SSLSetALPNProtocols.argtypes = [SSLContextRef, CFArrayRef] + Security.SSLSetALPNProtocols.restype = OSStatus + except AttributeError: + # Supported only in 10.12+ + pass + + Security.SecCopyErrorMessageString.argtypes = [OSStatus, c_void_p] + Security.SecCopyErrorMessageString.restype = CFStringRef + + Security.SSLReadFunc = SSLReadFunc + Security.SSLWriteFunc = SSLWriteFunc + Security.SSLContextRef = SSLContextRef + Security.SSLProtocol = SSLProtocol + Security.SSLCipherSuite = SSLCipherSuite + Security.SecIdentityRef = SecIdentityRef + Security.SecKeychainRef = SecKeychainRef + Security.SecTrustRef = SecTrustRef + Security.SecTrustResultType = SecTrustResultType + Security.SecExternalFormat = SecExternalFormat + Security.OSStatus = OSStatus + + Security.kSecImportExportPassphrase = CFStringRef.in_dll( + Security, "kSecImportExportPassphrase" + ) + Security.kSecImportItemIdentity = CFStringRef.in_dll( + Security, "kSecImportItemIdentity" + ) + + # CoreFoundation time! + CoreFoundation.CFRetain.argtypes = [CFTypeRef] + CoreFoundation.CFRetain.restype = CFTypeRef + + CoreFoundation.CFRelease.argtypes = [CFTypeRef] + CoreFoundation.CFRelease.restype = None + + CoreFoundation.CFGetTypeID.argtypes = [CFTypeRef] + CoreFoundation.CFGetTypeID.restype = CFTypeID + + CoreFoundation.CFStringCreateWithCString.argtypes = [ + CFAllocatorRef, + c_char_p, + CFStringEncoding, + ] + CoreFoundation.CFStringCreateWithCString.restype = CFStringRef + + CoreFoundation.CFStringGetCStringPtr.argtypes = [CFStringRef, CFStringEncoding] + CoreFoundation.CFStringGetCStringPtr.restype = c_char_p + + CoreFoundation.CFStringGetCString.argtypes = [ + CFStringRef, + c_char_p, + CFIndex, + CFStringEncoding, + ] + CoreFoundation.CFStringGetCString.restype = c_bool + + CoreFoundation.CFDataCreate.argtypes = [CFAllocatorRef, c_char_p, CFIndex] + CoreFoundation.CFDataCreate.restype = CFDataRef + + CoreFoundation.CFDataGetLength.argtypes = [CFDataRef] + CoreFoundation.CFDataGetLength.restype = CFIndex + + CoreFoundation.CFDataGetBytePtr.argtypes = [CFDataRef] + CoreFoundation.CFDataGetBytePtr.restype = c_void_p + + CoreFoundation.CFDictionaryCreate.argtypes = [ + CFAllocatorRef, + POINTER(CFTypeRef), + POINTER(CFTypeRef), + CFIndex, + CFDictionaryKeyCallBacks, + CFDictionaryValueCallBacks, + ] + CoreFoundation.CFDictionaryCreate.restype = CFDictionaryRef + + CoreFoundation.CFDictionaryGetValue.argtypes = [CFDictionaryRef, CFTypeRef] + CoreFoundation.CFDictionaryGetValue.restype = CFTypeRef + + CoreFoundation.CFArrayCreate.argtypes = [ + CFAllocatorRef, + POINTER(CFTypeRef), + CFIndex, + CFArrayCallBacks, + ] + CoreFoundation.CFArrayCreate.restype = CFArrayRef + + CoreFoundation.CFArrayCreateMutable.argtypes = [ + CFAllocatorRef, + CFIndex, + CFArrayCallBacks, + ] + CoreFoundation.CFArrayCreateMutable.restype = CFMutableArrayRef + + CoreFoundation.CFArrayAppendValue.argtypes = [CFMutableArrayRef, c_void_p] + CoreFoundation.CFArrayAppendValue.restype = None + + CoreFoundation.CFArrayGetCount.argtypes = [CFArrayRef] + CoreFoundation.CFArrayGetCount.restype = CFIndex + + CoreFoundation.CFArrayGetValueAtIndex.argtypes = [CFArrayRef, CFIndex] + CoreFoundation.CFArrayGetValueAtIndex.restype = c_void_p + + CoreFoundation.kCFAllocatorDefault = CFAllocatorRef.in_dll( + CoreFoundation, "kCFAllocatorDefault" + ) + CoreFoundation.kCFTypeArrayCallBacks = c_void_p.in_dll( + CoreFoundation, "kCFTypeArrayCallBacks" + ) + CoreFoundation.kCFTypeDictionaryKeyCallBacks = c_void_p.in_dll( + CoreFoundation, "kCFTypeDictionaryKeyCallBacks" + ) + CoreFoundation.kCFTypeDictionaryValueCallBacks = c_void_p.in_dll( + CoreFoundation, "kCFTypeDictionaryValueCallBacks" + ) + + CoreFoundation.CFTypeRef = CFTypeRef + CoreFoundation.CFArrayRef = CFArrayRef + CoreFoundation.CFStringRef = CFStringRef + CoreFoundation.CFDictionaryRef = CFDictionaryRef + +except (AttributeError): + raise ImportError("Error initializing ctypes") + + +class CFConst(object): + """ + A class object that acts as essentially a namespace for CoreFoundation + constants. + """ + + kCFStringEncodingUTF8 = CFStringEncoding(0x08000100) + + +class SecurityConst(object): + """ + A class object that acts as essentially a namespace for Security constants. + """ + + kSSLSessionOptionBreakOnServerAuth = 0 + + kSSLProtocol2 = 1 + kSSLProtocol3 = 2 + kTLSProtocol1 = 4 + kTLSProtocol11 = 7 + kTLSProtocol12 = 8 + # SecureTransport does not support TLS 1.3 even if there's a constant for it + kTLSProtocol13 = 10 + kTLSProtocolMaxSupported = 999 + + kSSLClientSide = 1 + kSSLStreamType = 0 + + kSecFormatPEMSequence = 10 + + kSecTrustResultInvalid = 0 + kSecTrustResultProceed = 1 + # This gap is present on purpose: this was kSecTrustResultConfirm, which + # is deprecated. + kSecTrustResultDeny = 3 + kSecTrustResultUnspecified = 4 + kSecTrustResultRecoverableTrustFailure = 5 + kSecTrustResultFatalTrustFailure = 6 + kSecTrustResultOtherError = 7 + + errSSLProtocol = -9800 + errSSLWouldBlock = -9803 + errSSLClosedGraceful = -9805 + errSSLClosedNoNotify = -9816 + errSSLClosedAbort = -9806 + + errSSLXCertChainInvalid = -9807 + errSSLCrypto = -9809 + errSSLInternal = -9810 + errSSLCertExpired = -9814 + errSSLCertNotYetValid = -9815 + errSSLUnknownRootCert = -9812 + errSSLNoRootCert = -9813 + errSSLHostNameMismatch = -9843 + errSSLPeerHandshakeFail = -9824 + errSSLPeerUserCancelled = -9839 + errSSLWeakPeerEphemeralDHKey = -9850 + errSSLServerAuthCompleted = -9841 + errSSLRecordOverflow = -9847 + + errSecVerifyFailed = -67808 + errSecNoTrustSettings = -25263 + errSecItemNotFound = -25300 + errSecInvalidTrustSettings = -25262 + + # Cipher suites. We only pick the ones our default cipher string allows. + # Source: https://developer.apple.com/documentation/security/1550981-ssl_cipher_suite_values + TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 = 0xC02C + TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 = 0xC030 + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 = 0xC02B + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 0xC02F + TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 = 0xCCA9 + TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 = 0xCCA8 + TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 = 0x009F + TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 = 0x009E + TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 = 0xC024 + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 = 0xC028 + TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA = 0xC00A + TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA = 0xC014 + TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 = 0x006B + TLS_DHE_RSA_WITH_AES_256_CBC_SHA = 0x0039 + TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 = 0xC023 + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 = 0xC027 + TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA = 0xC009 + TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA = 0xC013 + TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 = 0x0067 + TLS_DHE_RSA_WITH_AES_128_CBC_SHA = 0x0033 + TLS_RSA_WITH_AES_256_GCM_SHA384 = 0x009D + TLS_RSA_WITH_AES_128_GCM_SHA256 = 0x009C + TLS_RSA_WITH_AES_256_CBC_SHA256 = 0x003D + TLS_RSA_WITH_AES_128_CBC_SHA256 = 0x003C + TLS_RSA_WITH_AES_256_CBC_SHA = 0x0035 + TLS_RSA_WITH_AES_128_CBC_SHA = 0x002F + TLS_AES_128_GCM_SHA256 = 0x1301 + TLS_AES_256_GCM_SHA384 = 0x1302 + TLS_AES_128_CCM_8_SHA256 = 0x1305 + TLS_AES_128_CCM_SHA256 = 0x1304 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py new file mode 100644 index 0000000..fa0b245 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py @@ -0,0 +1,397 @@ +""" +Low-level helpers for the SecureTransport bindings. + +These are Python functions that are not directly related to the high-level APIs +but are necessary to get them to work. They include a whole bunch of low-level +CoreFoundation messing about and memory management. The concerns in this module +are almost entirely about trying to avoid memory leaks and providing +appropriate and useful assistance to the higher-level code. +""" +import base64 +import ctypes +import itertools +import os +import re +import ssl +import struct +import tempfile + +from .bindings import CFConst, CoreFoundation, Security + +# This regular expression is used to grab PEM data out of a PEM bundle. +_PEM_CERTS_RE = re.compile( + b"-----BEGIN CERTIFICATE-----\n(.*?)\n-----END CERTIFICATE-----", re.DOTALL +) + + +def _cf_data_from_bytes(bytestring): + """ + Given a bytestring, create a CFData object from it. This CFData object must + be CFReleased by the caller. + """ + return CoreFoundation.CFDataCreate( + CoreFoundation.kCFAllocatorDefault, bytestring, len(bytestring) + ) + + +def _cf_dictionary_from_tuples(tuples): + """ + Given a list of Python tuples, create an associated CFDictionary. + """ + dictionary_size = len(tuples) + + # We need to get the dictionary keys and values out in the same order. + keys = (t[0] for t in tuples) + values = (t[1] for t in tuples) + cf_keys = (CoreFoundation.CFTypeRef * dictionary_size)(*keys) + cf_values = (CoreFoundation.CFTypeRef * dictionary_size)(*values) + + return CoreFoundation.CFDictionaryCreate( + CoreFoundation.kCFAllocatorDefault, + cf_keys, + cf_values, + dictionary_size, + CoreFoundation.kCFTypeDictionaryKeyCallBacks, + CoreFoundation.kCFTypeDictionaryValueCallBacks, + ) + + +def _cfstr(py_bstr): + """ + Given a Python binary data, create a CFString. + The string must be CFReleased by the caller. + """ + c_str = ctypes.c_char_p(py_bstr) + cf_str = CoreFoundation.CFStringCreateWithCString( + CoreFoundation.kCFAllocatorDefault, + c_str, + CFConst.kCFStringEncodingUTF8, + ) + return cf_str + + +def _create_cfstring_array(lst): + """ + Given a list of Python binary data, create an associated CFMutableArray. + The array must be CFReleased by the caller. + + Raises an ssl.SSLError on failure. + """ + cf_arr = None + try: + cf_arr = CoreFoundation.CFArrayCreateMutable( + CoreFoundation.kCFAllocatorDefault, + 0, + ctypes.byref(CoreFoundation.kCFTypeArrayCallBacks), + ) + if not cf_arr: + raise MemoryError("Unable to allocate memory!") + for item in lst: + cf_str = _cfstr(item) + if not cf_str: + raise MemoryError("Unable to allocate memory!") + try: + CoreFoundation.CFArrayAppendValue(cf_arr, cf_str) + finally: + CoreFoundation.CFRelease(cf_str) + except BaseException as e: + if cf_arr: + CoreFoundation.CFRelease(cf_arr) + raise ssl.SSLError("Unable to allocate array: %s" % (e,)) + return cf_arr + + +def _cf_string_to_unicode(value): + """ + Creates a Unicode string from a CFString object. Used entirely for error + reporting. + + Yes, it annoys me quite a lot that this function is this complex. + """ + value_as_void_p = ctypes.cast(value, ctypes.POINTER(ctypes.c_void_p)) + + string = CoreFoundation.CFStringGetCStringPtr( + value_as_void_p, CFConst.kCFStringEncodingUTF8 + ) + if string is None: + buffer = ctypes.create_string_buffer(1024) + result = CoreFoundation.CFStringGetCString( + value_as_void_p, buffer, 1024, CFConst.kCFStringEncodingUTF8 + ) + if not result: + raise OSError("Error copying C string from CFStringRef") + string = buffer.value + if string is not None: + string = string.decode("utf-8") + return string + + +def _assert_no_error(error, exception_class=None): + """ + Checks the return code and throws an exception if there is an error to + report + """ + if error == 0: + return + + cf_error_string = Security.SecCopyErrorMessageString(error, None) + output = _cf_string_to_unicode(cf_error_string) + CoreFoundation.CFRelease(cf_error_string) + + if output is None or output == u"": + output = u"OSStatus %s" % error + + if exception_class is None: + exception_class = ssl.SSLError + + raise exception_class(output) + + +def _cert_array_from_pem(pem_bundle): + """ + Given a bundle of certs in PEM format, turns them into a CFArray of certs + that can be used to validate a cert chain. + """ + # Normalize the PEM bundle's line endings. + pem_bundle = pem_bundle.replace(b"\r\n", b"\n") + + der_certs = [ + base64.b64decode(match.group(1)) for match in _PEM_CERTS_RE.finditer(pem_bundle) + ] + if not der_certs: + raise ssl.SSLError("No root certificates specified") + + cert_array = CoreFoundation.CFArrayCreateMutable( + CoreFoundation.kCFAllocatorDefault, + 0, + ctypes.byref(CoreFoundation.kCFTypeArrayCallBacks), + ) + if not cert_array: + raise ssl.SSLError("Unable to allocate memory!") + + try: + for der_bytes in der_certs: + certdata = _cf_data_from_bytes(der_bytes) + if not certdata: + raise ssl.SSLError("Unable to allocate memory!") + cert = Security.SecCertificateCreateWithData( + CoreFoundation.kCFAllocatorDefault, certdata + ) + CoreFoundation.CFRelease(certdata) + if not cert: + raise ssl.SSLError("Unable to build cert object!") + + CoreFoundation.CFArrayAppendValue(cert_array, cert) + CoreFoundation.CFRelease(cert) + except Exception: + # We need to free the array before the exception bubbles further. + # We only want to do that if an error occurs: otherwise, the caller + # should free. + CoreFoundation.CFRelease(cert_array) + raise + + return cert_array + + +def _is_cert(item): + """ + Returns True if a given CFTypeRef is a certificate. + """ + expected = Security.SecCertificateGetTypeID() + return CoreFoundation.CFGetTypeID(item) == expected + + +def _is_identity(item): + """ + Returns True if a given CFTypeRef is an identity. + """ + expected = Security.SecIdentityGetTypeID() + return CoreFoundation.CFGetTypeID(item) == expected + + +def _temporary_keychain(): + """ + This function creates a temporary Mac keychain that we can use to work with + credentials. This keychain uses a one-time password and a temporary file to + store the data. We expect to have one keychain per socket. The returned + SecKeychainRef must be freed by the caller, including calling + SecKeychainDelete. + + Returns a tuple of the SecKeychainRef and the path to the temporary + directory that contains it. + """ + # Unfortunately, SecKeychainCreate requires a path to a keychain. This + # means we cannot use mkstemp to use a generic temporary file. Instead, + # we're going to create a temporary directory and a filename to use there. + # This filename will be 8 random bytes expanded into base64. We also need + # some random bytes to password-protect the keychain we're creating, so we + # ask for 40 random bytes. + random_bytes = os.urandom(40) + filename = base64.b16encode(random_bytes[:8]).decode("utf-8") + password = base64.b16encode(random_bytes[8:]) # Must be valid UTF-8 + tempdirectory = tempfile.mkdtemp() + + keychain_path = os.path.join(tempdirectory, filename).encode("utf-8") + + # We now want to create the keychain itself. + keychain = Security.SecKeychainRef() + status = Security.SecKeychainCreate( + keychain_path, len(password), password, False, None, ctypes.byref(keychain) + ) + _assert_no_error(status) + + # Having created the keychain, we want to pass it off to the caller. + return keychain, tempdirectory + + +def _load_items_from_file(keychain, path): + """ + Given a single file, loads all the trust objects from it into arrays and + the keychain. + Returns a tuple of lists: the first list is a list of identities, the + second a list of certs. + """ + certificates = [] + identities = [] + result_array = None + + with open(path, "rb") as f: + raw_filedata = f.read() + + try: + filedata = CoreFoundation.CFDataCreate( + CoreFoundation.kCFAllocatorDefault, raw_filedata, len(raw_filedata) + ) + result_array = CoreFoundation.CFArrayRef() + result = Security.SecItemImport( + filedata, # cert data + None, # Filename, leaving it out for now + None, # What the type of the file is, we don't care + None, # what's in the file, we don't care + 0, # import flags + None, # key params, can include passphrase in the future + keychain, # The keychain to insert into + ctypes.byref(result_array), # Results + ) + _assert_no_error(result) + + # A CFArray is not very useful to us as an intermediary + # representation, so we are going to extract the objects we want + # and then free the array. We don't need to keep hold of keys: the + # keychain already has them! + result_count = CoreFoundation.CFArrayGetCount(result_array) + for index in range(result_count): + item = CoreFoundation.CFArrayGetValueAtIndex(result_array, index) + item = ctypes.cast(item, CoreFoundation.CFTypeRef) + + if _is_cert(item): + CoreFoundation.CFRetain(item) + certificates.append(item) + elif _is_identity(item): + CoreFoundation.CFRetain(item) + identities.append(item) + finally: + if result_array: + CoreFoundation.CFRelease(result_array) + + CoreFoundation.CFRelease(filedata) + + return (identities, certificates) + + +def _load_client_cert_chain(keychain, *paths): + """ + Load certificates and maybe keys from a number of files. Has the end goal + of returning a CFArray containing one SecIdentityRef, and then zero or more + SecCertificateRef objects, suitable for use as a client certificate trust + chain. + """ + # Ok, the strategy. + # + # This relies on knowing that macOS will not give you a SecIdentityRef + # unless you have imported a key into a keychain. This is a somewhat + # artificial limitation of macOS (for example, it doesn't necessarily + # affect iOS), but there is nothing inside Security.framework that lets you + # get a SecIdentityRef without having a key in a keychain. + # + # So the policy here is we take all the files and iterate them in order. + # Each one will use SecItemImport to have one or more objects loaded from + # it. We will also point at a keychain that macOS can use to work with the + # private key. + # + # Once we have all the objects, we'll check what we actually have. If we + # already have a SecIdentityRef in hand, fab: we'll use that. Otherwise, + # we'll take the first certificate (which we assume to be our leaf) and + # ask the keychain to give us a SecIdentityRef with that cert's associated + # key. + # + # We'll then return a CFArray containing the trust chain: one + # SecIdentityRef and then zero-or-more SecCertificateRef objects. The + # responsibility for freeing this CFArray will be with the caller. This + # CFArray must remain alive for the entire connection, so in practice it + # will be stored with a single SSLSocket, along with the reference to the + # keychain. + certificates = [] + identities = [] + + # Filter out bad paths. + paths = (path for path in paths if path) + + try: + for file_path in paths: + new_identities, new_certs = _load_items_from_file(keychain, file_path) + identities.extend(new_identities) + certificates.extend(new_certs) + + # Ok, we have everything. The question is: do we have an identity? If + # not, we want to grab one from the first cert we have. + if not identities: + new_identity = Security.SecIdentityRef() + status = Security.SecIdentityCreateWithCertificate( + keychain, certificates[0], ctypes.byref(new_identity) + ) + _assert_no_error(status) + identities.append(new_identity) + + # We now want to release the original certificate, as we no longer + # need it. + CoreFoundation.CFRelease(certificates.pop(0)) + + # We now need to build a new CFArray that holds the trust chain. + trust_chain = CoreFoundation.CFArrayCreateMutable( + CoreFoundation.kCFAllocatorDefault, + 0, + ctypes.byref(CoreFoundation.kCFTypeArrayCallBacks), + ) + for item in itertools.chain(identities, certificates): + # ArrayAppendValue does a CFRetain on the item. That's fine, + # because the finally block will release our other refs to them. + CoreFoundation.CFArrayAppendValue(trust_chain, item) + + return trust_chain + finally: + for obj in itertools.chain(identities, certificates): + CoreFoundation.CFRelease(obj) + + +TLS_PROTOCOL_VERSIONS = { + "SSLv2": (0, 2), + "SSLv3": (3, 0), + "TLSv1": (3, 1), + "TLSv1.1": (3, 2), + "TLSv1.2": (3, 3), +} + + +def _build_tls_unknown_ca_alert(version): + """ + Builds a TLS alert record for an unknown CA. + """ + ver_maj, ver_min = TLS_PROTOCOL_VERSIONS[version] + severity_fatal = 0x02 + description_unknown_ca = 0x30 + msg = struct.pack(">BB", severity_fatal, description_unknown_ca) + msg_len = len(msg) + record_type_alert = 0x15 + record = struct.pack(">BBBH", record_type_alert, ver_maj, ver_min, msg_len) + msg + return record diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py new file mode 100644 index 0000000..1717ee2 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py @@ -0,0 +1,314 @@ +""" +This module provides a pool manager that uses Google App Engine's +`URLFetch Service `_. + +Example usage:: + + from pip._vendor.urllib3 import PoolManager + from pip._vendor.urllib3.contrib.appengine import AppEngineManager, is_appengine_sandbox + + if is_appengine_sandbox(): + # AppEngineManager uses AppEngine's URLFetch API behind the scenes + http = AppEngineManager() + else: + # PoolManager uses a socket-level API behind the scenes + http = PoolManager() + + r = http.request('GET', 'https://google.com/') + +There are `limitations `_ to the URLFetch service and it may not be +the best choice for your application. There are three options for using +urllib3 on Google App Engine: + +1. You can use :class:`AppEngineManager` with URLFetch. URLFetch is + cost-effective in many circumstances as long as your usage is within the + limitations. +2. You can use a normal :class:`~urllib3.PoolManager` by enabling sockets. + Sockets also have `limitations and restrictions + `_ and have a lower free quota than URLFetch. + To use sockets, be sure to specify the following in your ``app.yaml``:: + + env_variables: + GAE_USE_SOCKETS_HTTPLIB : 'true' + +3. If you are using `App Engine Flexible +`_, you can use the standard +:class:`PoolManager` without any configuration or special environment variables. +""" + +from __future__ import absolute_import + +import io +import logging +import warnings + +from ..exceptions import ( + HTTPError, + HTTPWarning, + MaxRetryError, + ProtocolError, + SSLError, + TimeoutError, +) +from ..packages.six.moves.urllib.parse import urljoin +from ..request import RequestMethods +from ..response import HTTPResponse +from ..util.retry import Retry +from ..util.timeout import Timeout +from . import _appengine_environ + +try: + from google.appengine.api import urlfetch +except ImportError: + urlfetch = None + + +log = logging.getLogger(__name__) + + +class AppEnginePlatformWarning(HTTPWarning): + pass + + +class AppEnginePlatformError(HTTPError): + pass + + +class AppEngineManager(RequestMethods): + """ + Connection manager for Google App Engine sandbox applications. + + This manager uses the URLFetch service directly instead of using the + emulated httplib, and is subject to URLFetch limitations as described in + the App Engine documentation `here + `_. + + Notably it will raise an :class:`AppEnginePlatformError` if: + * URLFetch is not available. + * If you attempt to use this on App Engine Flexible, as full socket + support is available. + * If a request size is more than 10 megabytes. + * If a response size is more than 32 megabytes. + * If you use an unsupported request method such as OPTIONS. + + Beyond those cases, it will raise normal urllib3 errors. + """ + + def __init__( + self, + headers=None, + retries=None, + validate_certificate=True, + urlfetch_retries=True, + ): + if not urlfetch: + raise AppEnginePlatformError( + "URLFetch is not available in this environment." + ) + + warnings.warn( + "urllib3 is using URLFetch on Google App Engine sandbox instead " + "of sockets. To use sockets directly instead of URLFetch see " + "https://urllib3.readthedocs.io/en/1.26.x/reference/urllib3.contrib.html.", + AppEnginePlatformWarning, + ) + + RequestMethods.__init__(self, headers) + self.validate_certificate = validate_certificate + self.urlfetch_retries = urlfetch_retries + + self.retries = retries or Retry.DEFAULT + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + # Return False to re-raise any potential exceptions + return False + + def urlopen( + self, + method, + url, + body=None, + headers=None, + retries=None, + redirect=True, + timeout=Timeout.DEFAULT_TIMEOUT, + **response_kw + ): + + retries = self._get_retries(retries, redirect) + + try: + follow_redirects = redirect and retries.redirect != 0 and retries.total + response = urlfetch.fetch( + url, + payload=body, + method=method, + headers=headers or {}, + allow_truncated=False, + follow_redirects=self.urlfetch_retries and follow_redirects, + deadline=self._get_absolute_timeout(timeout), + validate_certificate=self.validate_certificate, + ) + except urlfetch.DeadlineExceededError as e: + raise TimeoutError(self, e) + + except urlfetch.InvalidURLError as e: + if "too large" in str(e): + raise AppEnginePlatformError( + "URLFetch request too large, URLFetch only " + "supports requests up to 10mb in size.", + e, + ) + raise ProtocolError(e) + + except urlfetch.DownloadError as e: + if "Too many redirects" in str(e): + raise MaxRetryError(self, url, reason=e) + raise ProtocolError(e) + + except urlfetch.ResponseTooLargeError as e: + raise AppEnginePlatformError( + "URLFetch response too large, URLFetch only supports" + "responses up to 32mb in size.", + e, + ) + + except urlfetch.SSLCertificateError as e: + raise SSLError(e) + + except urlfetch.InvalidMethodError as e: + raise AppEnginePlatformError( + "URLFetch does not support method: %s" % method, e + ) + + http_response = self._urlfetch_response_to_http_response( + response, retries=retries, **response_kw + ) + + # Handle redirect? + redirect_location = redirect and http_response.get_redirect_location() + if redirect_location: + # Check for redirect response + if self.urlfetch_retries and retries.raise_on_redirect: + raise MaxRetryError(self, url, "too many redirects") + else: + if http_response.status == 303: + method = "GET" + + try: + retries = retries.increment( + method, url, response=http_response, _pool=self + ) + except MaxRetryError: + if retries.raise_on_redirect: + raise MaxRetryError(self, url, "too many redirects") + return http_response + + retries.sleep_for_retry(http_response) + log.debug("Redirecting %s -> %s", url, redirect_location) + redirect_url = urljoin(url, redirect_location) + return self.urlopen( + method, + redirect_url, + body, + headers, + retries=retries, + redirect=redirect, + timeout=timeout, + **response_kw + ) + + # Check if we should retry the HTTP response. + has_retry_after = bool(http_response.headers.get("Retry-After")) + if retries.is_retry(method, http_response.status, has_retry_after): + retries = retries.increment(method, url, response=http_response, _pool=self) + log.debug("Retry: %s", url) + retries.sleep(http_response) + return self.urlopen( + method, + url, + body=body, + headers=headers, + retries=retries, + redirect=redirect, + timeout=timeout, + **response_kw + ) + + return http_response + + def _urlfetch_response_to_http_response(self, urlfetch_resp, **response_kw): + + if is_prod_appengine(): + # Production GAE handles deflate encoding automatically, but does + # not remove the encoding header. + content_encoding = urlfetch_resp.headers.get("content-encoding") + + if content_encoding == "deflate": + del urlfetch_resp.headers["content-encoding"] + + transfer_encoding = urlfetch_resp.headers.get("transfer-encoding") + # We have a full response's content, + # so let's make sure we don't report ourselves as chunked data. + if transfer_encoding == "chunked": + encodings = transfer_encoding.split(",") + encodings.remove("chunked") + urlfetch_resp.headers["transfer-encoding"] = ",".join(encodings) + + original_response = HTTPResponse( + # In order for decoding to work, we must present the content as + # a file-like object. + body=io.BytesIO(urlfetch_resp.content), + msg=urlfetch_resp.header_msg, + headers=urlfetch_resp.headers, + status=urlfetch_resp.status_code, + **response_kw + ) + + return HTTPResponse( + body=io.BytesIO(urlfetch_resp.content), + headers=urlfetch_resp.headers, + status=urlfetch_resp.status_code, + original_response=original_response, + **response_kw + ) + + def _get_absolute_timeout(self, timeout): + if timeout is Timeout.DEFAULT_TIMEOUT: + return None # Defer to URLFetch's default. + if isinstance(timeout, Timeout): + if timeout._read is not None or timeout._connect is not None: + warnings.warn( + "URLFetch does not support granular timeout settings, " + "reverting to total or default URLFetch timeout.", + AppEnginePlatformWarning, + ) + return timeout.total + return timeout + + def _get_retries(self, retries, redirect): + if not isinstance(retries, Retry): + retries = Retry.from_int(retries, redirect=redirect, default=self.retries) + + if retries.connect or retries.read or retries.redirect: + warnings.warn( + "URLFetch only supports total retries and does not " + "recognize connect, read, or redirect retry parameters.", + AppEnginePlatformWarning, + ) + + return retries + + +# Alias methods from _appengine_environ to maintain public API interface. + +is_appengine = _appengine_environ.is_appengine +is_appengine_sandbox = _appengine_environ.is_appengine_sandbox +is_local_appengine = _appengine_environ.is_local_appengine +is_prod_appengine = _appengine_environ.is_prod_appengine +is_prod_appengine_mvms = _appengine_environ.is_prod_appengine_mvms diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py new file mode 100644 index 0000000..4716657 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py @@ -0,0 +1,130 @@ +""" +NTLM authenticating pool, contributed by erikcederstran + +Issue #10, see: http://code.google.com/p/urllib3/issues/detail?id=10 +""" +from __future__ import absolute_import + +import warnings +from logging import getLogger + +from ntlm import ntlm + +from .. import HTTPSConnectionPool +from ..packages.six.moves.http_client import HTTPSConnection + +warnings.warn( + "The 'urllib3.contrib.ntlmpool' module is deprecated and will be removed " + "in urllib3 v2.0 release, urllib3 is not able to support it properly due " + "to reasons listed in issue: https://github.com/urllib3/urllib3/issues/2282. " + "If you are a user of this module please comment in the mentioned issue.", + DeprecationWarning, +) + +log = getLogger(__name__) + + +class NTLMConnectionPool(HTTPSConnectionPool): + """ + Implements an NTLM authentication version of an urllib3 connection pool + """ + + scheme = "https" + + def __init__(self, user, pw, authurl, *args, **kwargs): + """ + authurl is a random URL on the server that is protected by NTLM. + user is the Windows user, probably in the DOMAIN\\username format. + pw is the password for the user. + """ + super(NTLMConnectionPool, self).__init__(*args, **kwargs) + self.authurl = authurl + self.rawuser = user + user_parts = user.split("\\", 1) + self.domain = user_parts[0].upper() + self.user = user_parts[1] + self.pw = pw + + def _new_conn(self): + # Performs the NTLM handshake that secures the connection. The socket + # must be kept open while requests are performed. + self.num_connections += 1 + log.debug( + "Starting NTLM HTTPS connection no. %d: https://%s%s", + self.num_connections, + self.host, + self.authurl, + ) + + headers = {"Connection": "Keep-Alive"} + req_header = "Authorization" + resp_header = "www-authenticate" + + conn = HTTPSConnection(host=self.host, port=self.port) + + # Send negotiation message + headers[req_header] = "NTLM %s" % ntlm.create_NTLM_NEGOTIATE_MESSAGE( + self.rawuser + ) + log.debug("Request headers: %s", headers) + conn.request("GET", self.authurl, None, headers) + res = conn.getresponse() + reshdr = dict(res.headers) + log.debug("Response status: %s %s", res.status, res.reason) + log.debug("Response headers: %s", reshdr) + log.debug("Response data: %s [...]", res.read(100)) + + # Remove the reference to the socket, so that it can not be closed by + # the response object (we want to keep the socket open) + res.fp = None + + # Server should respond with a challenge message + auth_header_values = reshdr[resp_header].split(", ") + auth_header_value = None + for s in auth_header_values: + if s[:5] == "NTLM ": + auth_header_value = s[5:] + if auth_header_value is None: + raise Exception( + "Unexpected %s response header: %s" % (resp_header, reshdr[resp_header]) + ) + + # Send authentication message + ServerChallenge, NegotiateFlags = ntlm.parse_NTLM_CHALLENGE_MESSAGE( + auth_header_value + ) + auth_msg = ntlm.create_NTLM_AUTHENTICATE_MESSAGE( + ServerChallenge, self.user, self.domain, self.pw, NegotiateFlags + ) + headers[req_header] = "NTLM %s" % auth_msg + log.debug("Request headers: %s", headers) + conn.request("GET", self.authurl, None, headers) + res = conn.getresponse() + log.debug("Response status: %s %s", res.status, res.reason) + log.debug("Response headers: %s", dict(res.headers)) + log.debug("Response data: %s [...]", res.read()[:100]) + if res.status != 200: + if res.status == 401: + raise Exception("Server rejected request: wrong username or password") + raise Exception("Wrong server response: %s %s" % (res.status, res.reason)) + + res.fp = None + log.debug("Connection established") + return conn + + def urlopen( + self, + method, + url, + body=None, + headers=None, + retries=3, + redirect=True, + assert_same_host=True, + ): + if headers is None: + headers = {} + headers["Connection"] = "Keep-Alive" + return super(NTLMConnectionPool, self).urlopen( + method, url, body, headers, retries, redirect, assert_same_host + ) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py new file mode 100644 index 0000000..19e4aa9 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py @@ -0,0 +1,518 @@ +""" +TLS with SNI_-support for Python 2. Follow these instructions if you would +like to verify TLS certificates in Python 2. Note, the default libraries do +*not* do certificate checking; you need to do additional work to validate +certificates yourself. + +This needs the following packages installed: + +* `pyOpenSSL`_ (tested with 16.0.0) +* `cryptography`_ (minimum 1.3.4, from pyopenssl) +* `idna`_ (minimum 2.0, from cryptography) + +However, pyopenssl depends on cryptography, which depends on idna, so while we +use all three directly here we end up having relatively few packages required. + +You can install them with the following command: + +.. code-block:: bash + + $ python -m pip install pyopenssl cryptography idna + +To activate certificate checking, call +:func:`~urllib3.contrib.pyopenssl.inject_into_urllib3` from your Python code +before you begin making HTTP requests. This can be done in a ``sitecustomize`` +module, or at any other time before your application begins using ``urllib3``, +like this: + +.. code-block:: python + + try: + import pip._vendor.urllib3.contrib.pyopenssl as pyopenssl + pyopenssl.inject_into_urllib3() + except ImportError: + pass + +Now you can use :mod:`urllib3` as you normally would, and it will support SNI +when the required modules are installed. + +Activating this module also has the positive side effect of disabling SSL/TLS +compression in Python 2 (see `CRIME attack`_). + +.. _sni: https://en.wikipedia.org/wiki/Server_Name_Indication +.. _crime attack: https://en.wikipedia.org/wiki/CRIME_(security_exploit) +.. _pyopenssl: https://www.pyopenssl.org +.. _cryptography: https://cryptography.io +.. _idna: https://github.com/kjd/idna +""" +from __future__ import absolute_import + +import OpenSSL.crypto +import OpenSSL.SSL +from cryptography import x509 +from cryptography.hazmat.backends.openssl import backend as openssl_backend + +try: + from cryptography.x509 import UnsupportedExtension +except ImportError: + # UnsupportedExtension is gone in cryptography >= 2.1.0 + class UnsupportedExtension(Exception): + pass + + +from io import BytesIO +from socket import error as SocketError +from socket import timeout + +try: # Platform-specific: Python 2 + from socket import _fileobject +except ImportError: # Platform-specific: Python 3 + _fileobject = None + from ..packages.backports.makefile import backport_makefile + +import logging +import ssl +import sys +import warnings + +from .. import util +from ..packages import six +from ..util.ssl_ import PROTOCOL_TLS_CLIENT + +warnings.warn( + "'urllib3.contrib.pyopenssl' module is deprecated and will be removed " + "in a future release of urllib3 2.x. Read more in this issue: " + "https://github.com/urllib3/urllib3/issues/2680", + category=DeprecationWarning, + stacklevel=2, +) + +__all__ = ["inject_into_urllib3", "extract_from_urllib3"] + +# SNI always works. +HAS_SNI = True + +# Map from urllib3 to PyOpenSSL compatible parameter-values. +_openssl_versions = { + util.PROTOCOL_TLS: OpenSSL.SSL.SSLv23_METHOD, + PROTOCOL_TLS_CLIENT: OpenSSL.SSL.SSLv23_METHOD, + ssl.PROTOCOL_TLSv1: OpenSSL.SSL.TLSv1_METHOD, +} + +if hasattr(ssl, "PROTOCOL_SSLv3") and hasattr(OpenSSL.SSL, "SSLv3_METHOD"): + _openssl_versions[ssl.PROTOCOL_SSLv3] = OpenSSL.SSL.SSLv3_METHOD + +if hasattr(ssl, "PROTOCOL_TLSv1_1") and hasattr(OpenSSL.SSL, "TLSv1_1_METHOD"): + _openssl_versions[ssl.PROTOCOL_TLSv1_1] = OpenSSL.SSL.TLSv1_1_METHOD + +if hasattr(ssl, "PROTOCOL_TLSv1_2") and hasattr(OpenSSL.SSL, "TLSv1_2_METHOD"): + _openssl_versions[ssl.PROTOCOL_TLSv1_2] = OpenSSL.SSL.TLSv1_2_METHOD + + +_stdlib_to_openssl_verify = { + ssl.CERT_NONE: OpenSSL.SSL.VERIFY_NONE, + ssl.CERT_OPTIONAL: OpenSSL.SSL.VERIFY_PEER, + ssl.CERT_REQUIRED: OpenSSL.SSL.VERIFY_PEER + + OpenSSL.SSL.VERIFY_FAIL_IF_NO_PEER_CERT, +} +_openssl_to_stdlib_verify = dict((v, k) for k, v in _stdlib_to_openssl_verify.items()) + +# OpenSSL will only write 16K at a time +SSL_WRITE_BLOCKSIZE = 16384 + +orig_util_HAS_SNI = util.HAS_SNI +orig_util_SSLContext = util.ssl_.SSLContext + + +log = logging.getLogger(__name__) + + +def inject_into_urllib3(): + "Monkey-patch urllib3 with PyOpenSSL-backed SSL-support." + + _validate_dependencies_met() + + util.SSLContext = PyOpenSSLContext + util.ssl_.SSLContext = PyOpenSSLContext + util.HAS_SNI = HAS_SNI + util.ssl_.HAS_SNI = HAS_SNI + util.IS_PYOPENSSL = True + util.ssl_.IS_PYOPENSSL = True + + +def extract_from_urllib3(): + "Undo monkey-patching by :func:`inject_into_urllib3`." + + util.SSLContext = orig_util_SSLContext + util.ssl_.SSLContext = orig_util_SSLContext + util.HAS_SNI = orig_util_HAS_SNI + util.ssl_.HAS_SNI = orig_util_HAS_SNI + util.IS_PYOPENSSL = False + util.ssl_.IS_PYOPENSSL = False + + +def _validate_dependencies_met(): + """ + Verifies that PyOpenSSL's package-level dependencies have been met. + Throws `ImportError` if they are not met. + """ + # Method added in `cryptography==1.1`; not available in older versions + from cryptography.x509.extensions import Extensions + + if getattr(Extensions, "get_extension_for_class", None) is None: + raise ImportError( + "'cryptography' module missing required functionality. " + "Try upgrading to v1.3.4 or newer." + ) + + # pyOpenSSL 0.14 and above use cryptography for OpenSSL bindings. The _x509 + # attribute is only present on those versions. + from OpenSSL.crypto import X509 + + x509 = X509() + if getattr(x509, "_x509", None) is None: + raise ImportError( + "'pyOpenSSL' module missing required functionality. " + "Try upgrading to v0.14 or newer." + ) + + +def _dnsname_to_stdlib(name): + """ + Converts a dNSName SubjectAlternativeName field to the form used by the + standard library on the given Python version. + + Cryptography produces a dNSName as a unicode string that was idna-decoded + from ASCII bytes. We need to idna-encode that string to get it back, and + then on Python 3 we also need to convert to unicode via UTF-8 (the stdlib + uses PyUnicode_FromStringAndSize on it, which decodes via UTF-8). + + If the name cannot be idna-encoded then we return None signalling that + the name given should be skipped. + """ + + def idna_encode(name): + """ + Borrowed wholesale from the Python Cryptography Project. It turns out + that we can't just safely call `idna.encode`: it can explode for + wildcard names. This avoids that problem. + """ + from pip._vendor import idna + + try: + for prefix in [u"*.", u"."]: + if name.startswith(prefix): + name = name[len(prefix) :] + return prefix.encode("ascii") + idna.encode(name) + return idna.encode(name) + except idna.core.IDNAError: + return None + + # Don't send IPv6 addresses through the IDNA encoder. + if ":" in name: + return name + + name = idna_encode(name) + if name is None: + return None + elif sys.version_info >= (3, 0): + name = name.decode("utf-8") + return name + + +def get_subj_alt_name(peer_cert): + """ + Given an PyOpenSSL certificate, provides all the subject alternative names. + """ + # Pass the cert to cryptography, which has much better APIs for this. + if hasattr(peer_cert, "to_cryptography"): + cert = peer_cert.to_cryptography() + else: + der = OpenSSL.crypto.dump_certificate(OpenSSL.crypto.FILETYPE_ASN1, peer_cert) + cert = x509.load_der_x509_certificate(der, openssl_backend) + + # We want to find the SAN extension. Ask Cryptography to locate it (it's + # faster than looping in Python) + try: + ext = cert.extensions.get_extension_for_class(x509.SubjectAlternativeName).value + except x509.ExtensionNotFound: + # No such extension, return the empty list. + return [] + except ( + x509.DuplicateExtension, + UnsupportedExtension, + x509.UnsupportedGeneralNameType, + UnicodeError, + ) as e: + # A problem has been found with the quality of the certificate. Assume + # no SAN field is present. + log.warning( + "A problem was encountered with the certificate that prevented " + "urllib3 from finding the SubjectAlternativeName field. This can " + "affect certificate validation. The error was %s", + e, + ) + return [] + + # We want to return dNSName and iPAddress fields. We need to cast the IPs + # back to strings because the match_hostname function wants them as + # strings. + # Sadly the DNS names need to be idna encoded and then, on Python 3, UTF-8 + # decoded. This is pretty frustrating, but that's what the standard library + # does with certificates, and so we need to attempt to do the same. + # We also want to skip over names which cannot be idna encoded. + names = [ + ("DNS", name) + for name in map(_dnsname_to_stdlib, ext.get_values_for_type(x509.DNSName)) + if name is not None + ] + names.extend( + ("IP Address", str(name)) for name in ext.get_values_for_type(x509.IPAddress) + ) + + return names + + +class WrappedSocket(object): + """API-compatibility wrapper for Python OpenSSL's Connection-class. + + Note: _makefile_refs, _drop() and _reuse() are needed for the garbage + collector of pypy. + """ + + def __init__(self, connection, socket, suppress_ragged_eofs=True): + self.connection = connection + self.socket = socket + self.suppress_ragged_eofs = suppress_ragged_eofs + self._makefile_refs = 0 + self._closed = False + + def fileno(self): + return self.socket.fileno() + + # Copy-pasted from Python 3.5 source code + def _decref_socketios(self): + if self._makefile_refs > 0: + self._makefile_refs -= 1 + if self._closed: + self.close() + + def recv(self, *args, **kwargs): + try: + data = self.connection.recv(*args, **kwargs) + except OpenSSL.SSL.SysCallError as e: + if self.suppress_ragged_eofs and e.args == (-1, "Unexpected EOF"): + return b"" + else: + raise SocketError(str(e)) + except OpenSSL.SSL.ZeroReturnError: + if self.connection.get_shutdown() == OpenSSL.SSL.RECEIVED_SHUTDOWN: + return b"" + else: + raise + except OpenSSL.SSL.WantReadError: + if not util.wait_for_read(self.socket, self.socket.gettimeout()): + raise timeout("The read operation timed out") + else: + return self.recv(*args, **kwargs) + + # TLS 1.3 post-handshake authentication + except OpenSSL.SSL.Error as e: + raise ssl.SSLError("read error: %r" % e) + else: + return data + + def recv_into(self, *args, **kwargs): + try: + return self.connection.recv_into(*args, **kwargs) + except OpenSSL.SSL.SysCallError as e: + if self.suppress_ragged_eofs and e.args == (-1, "Unexpected EOF"): + return 0 + else: + raise SocketError(str(e)) + except OpenSSL.SSL.ZeroReturnError: + if self.connection.get_shutdown() == OpenSSL.SSL.RECEIVED_SHUTDOWN: + return 0 + else: + raise + except OpenSSL.SSL.WantReadError: + if not util.wait_for_read(self.socket, self.socket.gettimeout()): + raise timeout("The read operation timed out") + else: + return self.recv_into(*args, **kwargs) + + # TLS 1.3 post-handshake authentication + except OpenSSL.SSL.Error as e: + raise ssl.SSLError("read error: %r" % e) + + def settimeout(self, timeout): + return self.socket.settimeout(timeout) + + def _send_until_done(self, data): + while True: + try: + return self.connection.send(data) + except OpenSSL.SSL.WantWriteError: + if not util.wait_for_write(self.socket, self.socket.gettimeout()): + raise timeout() + continue + except OpenSSL.SSL.SysCallError as e: + raise SocketError(str(e)) + + def sendall(self, data): + total_sent = 0 + while total_sent < len(data): + sent = self._send_until_done( + data[total_sent : total_sent + SSL_WRITE_BLOCKSIZE] + ) + total_sent += sent + + def shutdown(self): + # FIXME rethrow compatible exceptions should we ever use this + self.connection.shutdown() + + def close(self): + if self._makefile_refs < 1: + try: + self._closed = True + return self.connection.close() + except OpenSSL.SSL.Error: + return + else: + self._makefile_refs -= 1 + + def getpeercert(self, binary_form=False): + x509 = self.connection.get_peer_certificate() + + if not x509: + return x509 + + if binary_form: + return OpenSSL.crypto.dump_certificate(OpenSSL.crypto.FILETYPE_ASN1, x509) + + return { + "subject": ((("commonName", x509.get_subject().CN),),), + "subjectAltName": get_subj_alt_name(x509), + } + + def version(self): + return self.connection.get_protocol_version_name() + + def _reuse(self): + self._makefile_refs += 1 + + def _drop(self): + if self._makefile_refs < 1: + self.close() + else: + self._makefile_refs -= 1 + + +if _fileobject: # Platform-specific: Python 2 + + def makefile(self, mode, bufsize=-1): + self._makefile_refs += 1 + return _fileobject(self, mode, bufsize, close=True) + +else: # Platform-specific: Python 3 + makefile = backport_makefile + +WrappedSocket.makefile = makefile + + +class PyOpenSSLContext(object): + """ + I am a wrapper class for the PyOpenSSL ``Context`` object. I am responsible + for translating the interface of the standard library ``SSLContext`` object + to calls into PyOpenSSL. + """ + + def __init__(self, protocol): + self.protocol = _openssl_versions[protocol] + self._ctx = OpenSSL.SSL.Context(self.protocol) + self._options = 0 + self.check_hostname = False + + @property + def options(self): + return self._options + + @options.setter + def options(self, value): + self._options = value + self._ctx.set_options(value) + + @property + def verify_mode(self): + return _openssl_to_stdlib_verify[self._ctx.get_verify_mode()] + + @verify_mode.setter + def verify_mode(self, value): + self._ctx.set_verify(_stdlib_to_openssl_verify[value], _verify_callback) + + def set_default_verify_paths(self): + self._ctx.set_default_verify_paths() + + def set_ciphers(self, ciphers): + if isinstance(ciphers, six.text_type): + ciphers = ciphers.encode("utf-8") + self._ctx.set_cipher_list(ciphers) + + def load_verify_locations(self, cafile=None, capath=None, cadata=None): + if cafile is not None: + cafile = cafile.encode("utf-8") + if capath is not None: + capath = capath.encode("utf-8") + try: + self._ctx.load_verify_locations(cafile, capath) + if cadata is not None: + self._ctx.load_verify_locations(BytesIO(cadata)) + except OpenSSL.SSL.Error as e: + raise ssl.SSLError("unable to load trusted certificates: %r" % e) + + def load_cert_chain(self, certfile, keyfile=None, password=None): + self._ctx.use_certificate_chain_file(certfile) + if password is not None: + if not isinstance(password, six.binary_type): + password = password.encode("utf-8") + self._ctx.set_passwd_cb(lambda *_: password) + self._ctx.use_privatekey_file(keyfile or certfile) + + def set_alpn_protocols(self, protocols): + protocols = [six.ensure_binary(p) for p in protocols] + return self._ctx.set_alpn_protos(protocols) + + def wrap_socket( + self, + sock, + server_side=False, + do_handshake_on_connect=True, + suppress_ragged_eofs=True, + server_hostname=None, + ): + cnx = OpenSSL.SSL.Connection(self._ctx, sock) + + if isinstance(server_hostname, six.text_type): # Platform-specific: Python 3 + server_hostname = server_hostname.encode("utf-8") + + if server_hostname is not None: + cnx.set_tlsext_host_name(server_hostname) + + cnx.set_connect_state() + + while True: + try: + cnx.do_handshake() + except OpenSSL.SSL.WantReadError: + if not util.wait_for_read(sock, sock.gettimeout()): + raise timeout("select timed out") + continue + except OpenSSL.SSL.Error as e: + raise ssl.SSLError("bad handshake: %r" % e) + break + + return WrappedSocket(cnx, sock) + + +def _verify_callback(cnx, x509, err_no, err_depth, return_code): + return err_no == 0 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py new file mode 100644 index 0000000..722ee4e --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py @@ -0,0 +1,920 @@ +""" +SecureTranport support for urllib3 via ctypes. + +This makes platform-native TLS available to urllib3 users on macOS without the +use of a compiler. This is an important feature because the Python Package +Index is moving to become a TLSv1.2-or-higher server, and the default OpenSSL +that ships with macOS is not capable of doing TLSv1.2. The only way to resolve +this is to give macOS users an alternative solution to the problem, and that +solution is to use SecureTransport. + +We use ctypes here because this solution must not require a compiler. That's +because pip is not allowed to require a compiler either. + +This is not intended to be a seriously long-term solution to this problem. +The hope is that PEP 543 will eventually solve this issue for us, at which +point we can retire this contrib module. But in the short term, we need to +solve the impending tire fire that is Python on Mac without this kind of +contrib module. So...here we are. + +To use this module, simply import and inject it:: + + import pip._vendor.urllib3.contrib.securetransport as securetransport + securetransport.inject_into_urllib3() + +Happy TLSing! + +This code is a bastardised version of the code found in Will Bond's oscrypto +library. An enormous debt is owed to him for blazing this trail for us. For +that reason, this code should be considered to be covered both by urllib3's +license and by oscrypto's: + +.. code-block:: + + Copyright (c) 2015-2016 Will Bond + + 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. +""" +from __future__ import absolute_import + +import contextlib +import ctypes +import errno +import os.path +import shutil +import socket +import ssl +import struct +import threading +import weakref + +from .. import util +from ..packages import six +from ..util.ssl_ import PROTOCOL_TLS_CLIENT +from ._securetransport.bindings import CoreFoundation, Security, SecurityConst +from ._securetransport.low_level import ( + _assert_no_error, + _build_tls_unknown_ca_alert, + _cert_array_from_pem, + _create_cfstring_array, + _load_client_cert_chain, + _temporary_keychain, +) + +try: # Platform-specific: Python 2 + from socket import _fileobject +except ImportError: # Platform-specific: Python 3 + _fileobject = None + from ..packages.backports.makefile import backport_makefile + +__all__ = ["inject_into_urllib3", "extract_from_urllib3"] + +# SNI always works +HAS_SNI = True + +orig_util_HAS_SNI = util.HAS_SNI +orig_util_SSLContext = util.ssl_.SSLContext + +# This dictionary is used by the read callback to obtain a handle to the +# calling wrapped socket. This is a pretty silly approach, but for now it'll +# do. I feel like I should be able to smuggle a handle to the wrapped socket +# directly in the SSLConnectionRef, but for now this approach will work I +# guess. +# +# We need to lock around this structure for inserts, but we don't do it for +# reads/writes in the callbacks. The reasoning here goes as follows: +# +# 1. It is not possible to call into the callbacks before the dictionary is +# populated, so once in the callback the id must be in the dictionary. +# 2. The callbacks don't mutate the dictionary, they only read from it, and +# so cannot conflict with any of the insertions. +# +# This is good: if we had to lock in the callbacks we'd drastically slow down +# the performance of this code. +_connection_refs = weakref.WeakValueDictionary() +_connection_ref_lock = threading.Lock() + +# Limit writes to 16kB. This is OpenSSL's limit, but we'll cargo-cult it over +# for no better reason than we need *a* limit, and this one is right there. +SSL_WRITE_BLOCKSIZE = 16384 + +# This is our equivalent of util.ssl_.DEFAULT_CIPHERS, but expanded out to +# individual cipher suites. We need to do this because this is how +# SecureTransport wants them. +CIPHER_SUITES = [ + SecurityConst.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, + SecurityConst.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, + SecurityConst.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, + SecurityConst.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, + SecurityConst.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, + SecurityConst.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, + SecurityConst.TLS_DHE_RSA_WITH_AES_256_GCM_SHA384, + SecurityConst.TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, + SecurityConst.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, + SecurityConst.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, + SecurityConst.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, + SecurityConst.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, + SecurityConst.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, + SecurityConst.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, + SecurityConst.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, + SecurityConst.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, + SecurityConst.TLS_DHE_RSA_WITH_AES_256_CBC_SHA256, + SecurityConst.TLS_DHE_RSA_WITH_AES_256_CBC_SHA, + SecurityConst.TLS_DHE_RSA_WITH_AES_128_CBC_SHA256, + SecurityConst.TLS_DHE_RSA_WITH_AES_128_CBC_SHA, + SecurityConst.TLS_AES_256_GCM_SHA384, + SecurityConst.TLS_AES_128_GCM_SHA256, + SecurityConst.TLS_RSA_WITH_AES_256_GCM_SHA384, + SecurityConst.TLS_RSA_WITH_AES_128_GCM_SHA256, + SecurityConst.TLS_AES_128_CCM_8_SHA256, + SecurityConst.TLS_AES_128_CCM_SHA256, + SecurityConst.TLS_RSA_WITH_AES_256_CBC_SHA256, + SecurityConst.TLS_RSA_WITH_AES_128_CBC_SHA256, + SecurityConst.TLS_RSA_WITH_AES_256_CBC_SHA, + SecurityConst.TLS_RSA_WITH_AES_128_CBC_SHA, +] + +# Basically this is simple: for PROTOCOL_SSLv23 we turn it into a low of +# TLSv1 and a high of TLSv1.2. For everything else, we pin to that version. +# TLSv1 to 1.2 are supported on macOS 10.8+ +_protocol_to_min_max = { + util.PROTOCOL_TLS: (SecurityConst.kTLSProtocol1, SecurityConst.kTLSProtocol12), + PROTOCOL_TLS_CLIENT: (SecurityConst.kTLSProtocol1, SecurityConst.kTLSProtocol12), +} + +if hasattr(ssl, "PROTOCOL_SSLv2"): + _protocol_to_min_max[ssl.PROTOCOL_SSLv2] = ( + SecurityConst.kSSLProtocol2, + SecurityConst.kSSLProtocol2, + ) +if hasattr(ssl, "PROTOCOL_SSLv3"): + _protocol_to_min_max[ssl.PROTOCOL_SSLv3] = ( + SecurityConst.kSSLProtocol3, + SecurityConst.kSSLProtocol3, + ) +if hasattr(ssl, "PROTOCOL_TLSv1"): + _protocol_to_min_max[ssl.PROTOCOL_TLSv1] = ( + SecurityConst.kTLSProtocol1, + SecurityConst.kTLSProtocol1, + ) +if hasattr(ssl, "PROTOCOL_TLSv1_1"): + _protocol_to_min_max[ssl.PROTOCOL_TLSv1_1] = ( + SecurityConst.kTLSProtocol11, + SecurityConst.kTLSProtocol11, + ) +if hasattr(ssl, "PROTOCOL_TLSv1_2"): + _protocol_to_min_max[ssl.PROTOCOL_TLSv1_2] = ( + SecurityConst.kTLSProtocol12, + SecurityConst.kTLSProtocol12, + ) + + +def inject_into_urllib3(): + """ + Monkey-patch urllib3 with SecureTransport-backed SSL-support. + """ + util.SSLContext = SecureTransportContext + util.ssl_.SSLContext = SecureTransportContext + util.HAS_SNI = HAS_SNI + util.ssl_.HAS_SNI = HAS_SNI + util.IS_SECURETRANSPORT = True + util.ssl_.IS_SECURETRANSPORT = True + + +def extract_from_urllib3(): + """ + Undo monkey-patching by :func:`inject_into_urllib3`. + """ + util.SSLContext = orig_util_SSLContext + util.ssl_.SSLContext = orig_util_SSLContext + util.HAS_SNI = orig_util_HAS_SNI + util.ssl_.HAS_SNI = orig_util_HAS_SNI + util.IS_SECURETRANSPORT = False + util.ssl_.IS_SECURETRANSPORT = False + + +def _read_callback(connection_id, data_buffer, data_length_pointer): + """ + SecureTransport read callback. This is called by ST to request that data + be returned from the socket. + """ + wrapped_socket = None + try: + wrapped_socket = _connection_refs.get(connection_id) + if wrapped_socket is None: + return SecurityConst.errSSLInternal + base_socket = wrapped_socket.socket + + requested_length = data_length_pointer[0] + + timeout = wrapped_socket.gettimeout() + error = None + read_count = 0 + + try: + while read_count < requested_length: + if timeout is None or timeout >= 0: + if not util.wait_for_read(base_socket, timeout): + raise socket.error(errno.EAGAIN, "timed out") + + remaining = requested_length - read_count + buffer = (ctypes.c_char * remaining).from_address( + data_buffer + read_count + ) + chunk_size = base_socket.recv_into(buffer, remaining) + read_count += chunk_size + if not chunk_size: + if not read_count: + return SecurityConst.errSSLClosedGraceful + break + except (socket.error) as e: + error = e.errno + + if error is not None and error != errno.EAGAIN: + data_length_pointer[0] = read_count + if error == errno.ECONNRESET or error == errno.EPIPE: + return SecurityConst.errSSLClosedAbort + raise + + data_length_pointer[0] = read_count + + if read_count != requested_length: + return SecurityConst.errSSLWouldBlock + + return 0 + except Exception as e: + if wrapped_socket is not None: + wrapped_socket._exception = e + return SecurityConst.errSSLInternal + + +def _write_callback(connection_id, data_buffer, data_length_pointer): + """ + SecureTransport write callback. This is called by ST to request that data + actually be sent on the network. + """ + wrapped_socket = None + try: + wrapped_socket = _connection_refs.get(connection_id) + if wrapped_socket is None: + return SecurityConst.errSSLInternal + base_socket = wrapped_socket.socket + + bytes_to_write = data_length_pointer[0] + data = ctypes.string_at(data_buffer, bytes_to_write) + + timeout = wrapped_socket.gettimeout() + error = None + sent = 0 + + try: + while sent < bytes_to_write: + if timeout is None or timeout >= 0: + if not util.wait_for_write(base_socket, timeout): + raise socket.error(errno.EAGAIN, "timed out") + chunk_sent = base_socket.send(data) + sent += chunk_sent + + # This has some needless copying here, but I'm not sure there's + # much value in optimising this data path. + data = data[chunk_sent:] + except (socket.error) as e: + error = e.errno + + if error is not None and error != errno.EAGAIN: + data_length_pointer[0] = sent + if error == errno.ECONNRESET or error == errno.EPIPE: + return SecurityConst.errSSLClosedAbort + raise + + data_length_pointer[0] = sent + + if sent != bytes_to_write: + return SecurityConst.errSSLWouldBlock + + return 0 + except Exception as e: + if wrapped_socket is not None: + wrapped_socket._exception = e + return SecurityConst.errSSLInternal + + +# We need to keep these two objects references alive: if they get GC'd while +# in use then SecureTransport could attempt to call a function that is in freed +# memory. That would be...uh...bad. Yeah, that's the word. Bad. +_read_callback_pointer = Security.SSLReadFunc(_read_callback) +_write_callback_pointer = Security.SSLWriteFunc(_write_callback) + + +class WrappedSocket(object): + """ + API-compatibility wrapper for Python's OpenSSL wrapped socket object. + + Note: _makefile_refs, _drop(), and _reuse() are needed for the garbage + collector of PyPy. + """ + + def __init__(self, socket): + self.socket = socket + self.context = None + self._makefile_refs = 0 + self._closed = False + self._exception = None + self._keychain = None + self._keychain_dir = None + self._client_cert_chain = None + + # We save off the previously-configured timeout and then set it to + # zero. This is done because we use select and friends to handle the + # timeouts, but if we leave the timeout set on the lower socket then + # Python will "kindly" call select on that socket again for us. Avoid + # that by forcing the timeout to zero. + self._timeout = self.socket.gettimeout() + self.socket.settimeout(0) + + @contextlib.contextmanager + def _raise_on_error(self): + """ + A context manager that can be used to wrap calls that do I/O from + SecureTransport. If any of the I/O callbacks hit an exception, this + context manager will correctly propagate the exception after the fact. + This avoids silently swallowing those exceptions. + + It also correctly forces the socket closed. + """ + self._exception = None + + # We explicitly don't catch around this yield because in the unlikely + # event that an exception was hit in the block we don't want to swallow + # it. + yield + if self._exception is not None: + exception, self._exception = self._exception, None + self.close() + raise exception + + def _set_ciphers(self): + """ + Sets up the allowed ciphers. By default this matches the set in + util.ssl_.DEFAULT_CIPHERS, at least as supported by macOS. This is done + custom and doesn't allow changing at this time, mostly because parsing + OpenSSL cipher strings is going to be a freaking nightmare. + """ + ciphers = (Security.SSLCipherSuite * len(CIPHER_SUITES))(*CIPHER_SUITES) + result = Security.SSLSetEnabledCiphers( + self.context, ciphers, len(CIPHER_SUITES) + ) + _assert_no_error(result) + + def _set_alpn_protocols(self, protocols): + """ + Sets up the ALPN protocols on the context. + """ + if not protocols: + return + protocols_arr = _create_cfstring_array(protocols) + try: + result = Security.SSLSetALPNProtocols(self.context, protocols_arr) + _assert_no_error(result) + finally: + CoreFoundation.CFRelease(protocols_arr) + + def _custom_validate(self, verify, trust_bundle): + """ + Called when we have set custom validation. We do this in two cases: + first, when cert validation is entirely disabled; and second, when + using a custom trust DB. + Raises an SSLError if the connection is not trusted. + """ + # If we disabled cert validation, just say: cool. + if not verify: + return + + successes = ( + SecurityConst.kSecTrustResultUnspecified, + SecurityConst.kSecTrustResultProceed, + ) + try: + trust_result = self._evaluate_trust(trust_bundle) + if trust_result in successes: + return + reason = "error code: %d" % (trust_result,) + except Exception as e: + # Do not trust on error + reason = "exception: %r" % (e,) + + # SecureTransport does not send an alert nor shuts down the connection. + rec = _build_tls_unknown_ca_alert(self.version()) + self.socket.sendall(rec) + # close the connection immediately + # l_onoff = 1, activate linger + # l_linger = 0, linger for 0 seoncds + opts = struct.pack("ii", 1, 0) + self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_LINGER, opts) + self.close() + raise ssl.SSLError("certificate verify failed, %s" % reason) + + def _evaluate_trust(self, trust_bundle): + # We want data in memory, so load it up. + if os.path.isfile(trust_bundle): + with open(trust_bundle, "rb") as f: + trust_bundle = f.read() + + cert_array = None + trust = Security.SecTrustRef() + + try: + # Get a CFArray that contains the certs we want. + cert_array = _cert_array_from_pem(trust_bundle) + + # Ok, now the hard part. We want to get the SecTrustRef that ST has + # created for this connection, shove our CAs into it, tell ST to + # ignore everything else it knows, and then ask if it can build a + # chain. This is a buuuunch of code. + result = Security.SSLCopyPeerTrust(self.context, ctypes.byref(trust)) + _assert_no_error(result) + if not trust: + raise ssl.SSLError("Failed to copy trust reference") + + result = Security.SecTrustSetAnchorCertificates(trust, cert_array) + _assert_no_error(result) + + result = Security.SecTrustSetAnchorCertificatesOnly(trust, True) + _assert_no_error(result) + + trust_result = Security.SecTrustResultType() + result = Security.SecTrustEvaluate(trust, ctypes.byref(trust_result)) + _assert_no_error(result) + finally: + if trust: + CoreFoundation.CFRelease(trust) + + if cert_array is not None: + CoreFoundation.CFRelease(cert_array) + + return trust_result.value + + def handshake( + self, + server_hostname, + verify, + trust_bundle, + min_version, + max_version, + client_cert, + client_key, + client_key_passphrase, + alpn_protocols, + ): + """ + Actually performs the TLS handshake. This is run automatically by + wrapped socket, and shouldn't be needed in user code. + """ + # First, we do the initial bits of connection setup. We need to create + # a context, set its I/O funcs, and set the connection reference. + self.context = Security.SSLCreateContext( + None, SecurityConst.kSSLClientSide, SecurityConst.kSSLStreamType + ) + result = Security.SSLSetIOFuncs( + self.context, _read_callback_pointer, _write_callback_pointer + ) + _assert_no_error(result) + + # Here we need to compute the handle to use. We do this by taking the + # id of self modulo 2**31 - 1. If this is already in the dictionary, we + # just keep incrementing by one until we find a free space. + with _connection_ref_lock: + handle = id(self) % 2147483647 + while handle in _connection_refs: + handle = (handle + 1) % 2147483647 + _connection_refs[handle] = self + + result = Security.SSLSetConnection(self.context, handle) + _assert_no_error(result) + + # If we have a server hostname, we should set that too. + if server_hostname: + if not isinstance(server_hostname, bytes): + server_hostname = server_hostname.encode("utf-8") + + result = Security.SSLSetPeerDomainName( + self.context, server_hostname, len(server_hostname) + ) + _assert_no_error(result) + + # Setup the ciphers. + self._set_ciphers() + + # Setup the ALPN protocols. + self._set_alpn_protocols(alpn_protocols) + + # Set the minimum and maximum TLS versions. + result = Security.SSLSetProtocolVersionMin(self.context, min_version) + _assert_no_error(result) + + result = Security.SSLSetProtocolVersionMax(self.context, max_version) + _assert_no_error(result) + + # If there's a trust DB, we need to use it. We do that by telling + # SecureTransport to break on server auth. We also do that if we don't + # want to validate the certs at all: we just won't actually do any + # authing in that case. + if not verify or trust_bundle is not None: + result = Security.SSLSetSessionOption( + self.context, SecurityConst.kSSLSessionOptionBreakOnServerAuth, True + ) + _assert_no_error(result) + + # If there's a client cert, we need to use it. + if client_cert: + self._keychain, self._keychain_dir = _temporary_keychain() + self._client_cert_chain = _load_client_cert_chain( + self._keychain, client_cert, client_key + ) + result = Security.SSLSetCertificate(self.context, self._client_cert_chain) + _assert_no_error(result) + + while True: + with self._raise_on_error(): + result = Security.SSLHandshake(self.context) + + if result == SecurityConst.errSSLWouldBlock: + raise socket.timeout("handshake timed out") + elif result == SecurityConst.errSSLServerAuthCompleted: + self._custom_validate(verify, trust_bundle) + continue + else: + _assert_no_error(result) + break + + def fileno(self): + return self.socket.fileno() + + # Copy-pasted from Python 3.5 source code + def _decref_socketios(self): + if self._makefile_refs > 0: + self._makefile_refs -= 1 + if self._closed: + self.close() + + def recv(self, bufsiz): + buffer = ctypes.create_string_buffer(bufsiz) + bytes_read = self.recv_into(buffer, bufsiz) + data = buffer[:bytes_read] + return data + + def recv_into(self, buffer, nbytes=None): + # Read short on EOF. + if self._closed: + return 0 + + if nbytes is None: + nbytes = len(buffer) + + buffer = (ctypes.c_char * nbytes).from_buffer(buffer) + processed_bytes = ctypes.c_size_t(0) + + with self._raise_on_error(): + result = Security.SSLRead( + self.context, buffer, nbytes, ctypes.byref(processed_bytes) + ) + + # There are some result codes that we want to treat as "not always + # errors". Specifically, those are errSSLWouldBlock, + # errSSLClosedGraceful, and errSSLClosedNoNotify. + if result == SecurityConst.errSSLWouldBlock: + # If we didn't process any bytes, then this was just a time out. + # However, we can get errSSLWouldBlock in situations when we *did* + # read some data, and in those cases we should just read "short" + # and return. + if processed_bytes.value == 0: + # Timed out, no data read. + raise socket.timeout("recv timed out") + elif result in ( + SecurityConst.errSSLClosedGraceful, + SecurityConst.errSSLClosedNoNotify, + ): + # The remote peer has closed this connection. We should do so as + # well. Note that we don't actually return here because in + # principle this could actually be fired along with return data. + # It's unlikely though. + self.close() + else: + _assert_no_error(result) + + # Ok, we read and probably succeeded. We should return whatever data + # was actually read. + return processed_bytes.value + + def settimeout(self, timeout): + self._timeout = timeout + + def gettimeout(self): + return self._timeout + + def send(self, data): + processed_bytes = ctypes.c_size_t(0) + + with self._raise_on_error(): + result = Security.SSLWrite( + self.context, data, len(data), ctypes.byref(processed_bytes) + ) + + if result == SecurityConst.errSSLWouldBlock and processed_bytes.value == 0: + # Timed out + raise socket.timeout("send timed out") + else: + _assert_no_error(result) + + # We sent, and probably succeeded. Tell them how much we sent. + return processed_bytes.value + + def sendall(self, data): + total_sent = 0 + while total_sent < len(data): + sent = self.send(data[total_sent : total_sent + SSL_WRITE_BLOCKSIZE]) + total_sent += sent + + def shutdown(self): + with self._raise_on_error(): + Security.SSLClose(self.context) + + def close(self): + # TODO: should I do clean shutdown here? Do I have to? + if self._makefile_refs < 1: + self._closed = True + if self.context: + CoreFoundation.CFRelease(self.context) + self.context = None + if self._client_cert_chain: + CoreFoundation.CFRelease(self._client_cert_chain) + self._client_cert_chain = None + if self._keychain: + Security.SecKeychainDelete(self._keychain) + CoreFoundation.CFRelease(self._keychain) + shutil.rmtree(self._keychain_dir) + self._keychain = self._keychain_dir = None + return self.socket.close() + else: + self._makefile_refs -= 1 + + def getpeercert(self, binary_form=False): + # Urgh, annoying. + # + # Here's how we do this: + # + # 1. Call SSLCopyPeerTrust to get hold of the trust object for this + # connection. + # 2. Call SecTrustGetCertificateAtIndex for index 0 to get the leaf. + # 3. To get the CN, call SecCertificateCopyCommonName and process that + # string so that it's of the appropriate type. + # 4. To get the SAN, we need to do something a bit more complex: + # a. Call SecCertificateCopyValues to get the data, requesting + # kSecOIDSubjectAltName. + # b. Mess about with this dictionary to try to get the SANs out. + # + # This is gross. Really gross. It's going to be a few hundred LoC extra + # just to repeat something that SecureTransport can *already do*. So my + # operating assumption at this time is that what we want to do is + # instead to just flag to urllib3 that it shouldn't do its own hostname + # validation when using SecureTransport. + if not binary_form: + raise ValueError("SecureTransport only supports dumping binary certs") + trust = Security.SecTrustRef() + certdata = None + der_bytes = None + + try: + # Grab the trust store. + result = Security.SSLCopyPeerTrust(self.context, ctypes.byref(trust)) + _assert_no_error(result) + if not trust: + # Probably we haven't done the handshake yet. No biggie. + return None + + cert_count = Security.SecTrustGetCertificateCount(trust) + if not cert_count: + # Also a case that might happen if we haven't handshaked. + # Handshook? Handshaken? + return None + + leaf = Security.SecTrustGetCertificateAtIndex(trust, 0) + assert leaf + + # Ok, now we want the DER bytes. + certdata = Security.SecCertificateCopyData(leaf) + assert certdata + + data_length = CoreFoundation.CFDataGetLength(certdata) + data_buffer = CoreFoundation.CFDataGetBytePtr(certdata) + der_bytes = ctypes.string_at(data_buffer, data_length) + finally: + if certdata: + CoreFoundation.CFRelease(certdata) + if trust: + CoreFoundation.CFRelease(trust) + + return der_bytes + + def version(self): + protocol = Security.SSLProtocol() + result = Security.SSLGetNegotiatedProtocolVersion( + self.context, ctypes.byref(protocol) + ) + _assert_no_error(result) + if protocol.value == SecurityConst.kTLSProtocol13: + raise ssl.SSLError("SecureTransport does not support TLS 1.3") + elif protocol.value == SecurityConst.kTLSProtocol12: + return "TLSv1.2" + elif protocol.value == SecurityConst.kTLSProtocol11: + return "TLSv1.1" + elif protocol.value == SecurityConst.kTLSProtocol1: + return "TLSv1" + elif protocol.value == SecurityConst.kSSLProtocol3: + return "SSLv3" + elif protocol.value == SecurityConst.kSSLProtocol2: + return "SSLv2" + else: + raise ssl.SSLError("Unknown TLS version: %r" % protocol) + + def _reuse(self): + self._makefile_refs += 1 + + def _drop(self): + if self._makefile_refs < 1: + self.close() + else: + self._makefile_refs -= 1 + + +if _fileobject: # Platform-specific: Python 2 + + def makefile(self, mode, bufsize=-1): + self._makefile_refs += 1 + return _fileobject(self, mode, bufsize, close=True) + +else: # Platform-specific: Python 3 + + def makefile(self, mode="r", buffering=None, *args, **kwargs): + # We disable buffering with SecureTransport because it conflicts with + # the buffering that ST does internally (see issue #1153 for more). + buffering = 0 + return backport_makefile(self, mode, buffering, *args, **kwargs) + + +WrappedSocket.makefile = makefile + + +class SecureTransportContext(object): + """ + I am a wrapper class for the SecureTransport library, to translate the + interface of the standard library ``SSLContext`` object to calls into + SecureTransport. + """ + + def __init__(self, protocol): + self._min_version, self._max_version = _protocol_to_min_max[protocol] + self._options = 0 + self._verify = False + self._trust_bundle = None + self._client_cert = None + self._client_key = None + self._client_key_passphrase = None + self._alpn_protocols = None + + @property + def check_hostname(self): + """ + SecureTransport cannot have its hostname checking disabled. For more, + see the comment on getpeercert() in this file. + """ + return True + + @check_hostname.setter + def check_hostname(self, value): + """ + SecureTransport cannot have its hostname checking disabled. For more, + see the comment on getpeercert() in this file. + """ + pass + + @property + def options(self): + # TODO: Well, crap. + # + # So this is the bit of the code that is the most likely to cause us + # trouble. Essentially we need to enumerate all of the SSL options that + # users might want to use and try to see if we can sensibly translate + # them, or whether we should just ignore them. + return self._options + + @options.setter + def options(self, value): + # TODO: Update in line with above. + self._options = value + + @property + def verify_mode(self): + return ssl.CERT_REQUIRED if self._verify else ssl.CERT_NONE + + @verify_mode.setter + def verify_mode(self, value): + self._verify = True if value == ssl.CERT_REQUIRED else False + + def set_default_verify_paths(self): + # So, this has to do something a bit weird. Specifically, what it does + # is nothing. + # + # This means that, if we had previously had load_verify_locations + # called, this does not undo that. We need to do that because it turns + # out that the rest of the urllib3 code will attempt to load the + # default verify paths if it hasn't been told about any paths, even if + # the context itself was sometime earlier. We resolve that by just + # ignoring it. + pass + + def load_default_certs(self): + return self.set_default_verify_paths() + + def set_ciphers(self, ciphers): + # For now, we just require the default cipher string. + if ciphers != util.ssl_.DEFAULT_CIPHERS: + raise ValueError("SecureTransport doesn't support custom cipher strings") + + def load_verify_locations(self, cafile=None, capath=None, cadata=None): + # OK, we only really support cadata and cafile. + if capath is not None: + raise ValueError("SecureTransport does not support cert directories") + + # Raise if cafile does not exist. + if cafile is not None: + with open(cafile): + pass + + self._trust_bundle = cafile or cadata + + def load_cert_chain(self, certfile, keyfile=None, password=None): + self._client_cert = certfile + self._client_key = keyfile + self._client_cert_passphrase = password + + def set_alpn_protocols(self, protocols): + """ + Sets the ALPN protocols that will later be set on the context. + + Raises a NotImplementedError if ALPN is not supported. + """ + if not hasattr(Security, "SSLSetALPNProtocols"): + raise NotImplementedError( + "SecureTransport supports ALPN only in macOS 10.12+" + ) + self._alpn_protocols = [six.ensure_binary(p) for p in protocols] + + def wrap_socket( + self, + sock, + server_side=False, + do_handshake_on_connect=True, + suppress_ragged_eofs=True, + server_hostname=None, + ): + # So, what do we do here? Firstly, we assert some properties. This is a + # stripped down shim, so there is some functionality we don't support. + # See PEP 543 for the real deal. + assert not server_side + assert do_handshake_on_connect + assert suppress_ragged_eofs + + # Ok, we're good to go. Now we want to create the wrapped socket object + # and store it in the appropriate place. + wrapped_socket = WrappedSocket(sock) + + # Now we can handshake + wrapped_socket.handshake( + server_hostname, + self._verify, + self._trust_bundle, + self._min_version, + self._max_version, + self._client_cert, + self._client_key, + self._client_key_passphrase, + self._alpn_protocols, + ) + return wrapped_socket diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py new file mode 100644 index 0000000..c326e80 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py @@ -0,0 +1,216 @@ +# -*- coding: utf-8 -*- +""" +This module contains provisional support for SOCKS proxies from within +urllib3. This module supports SOCKS4, SOCKS4A (an extension of SOCKS4), and +SOCKS5. To enable its functionality, either install PySocks or install this +module with the ``socks`` extra. + +The SOCKS implementation supports the full range of urllib3 features. It also +supports the following SOCKS features: + +- SOCKS4A (``proxy_url='socks4a://...``) +- SOCKS4 (``proxy_url='socks4://...``) +- SOCKS5 with remote DNS (``proxy_url='socks5h://...``) +- SOCKS5 with local DNS (``proxy_url='socks5://...``) +- Usernames and passwords for the SOCKS proxy + +.. note:: + It is recommended to use ``socks5h://`` or ``socks4a://`` schemes in + your ``proxy_url`` to ensure that DNS resolution is done from the remote + server instead of client-side when connecting to a domain name. + +SOCKS4 supports IPv4 and domain names with the SOCKS4A extension. SOCKS5 +supports IPv4, IPv6, and domain names. + +When connecting to a SOCKS4 proxy the ``username`` portion of the ``proxy_url`` +will be sent as the ``userid`` section of the SOCKS request: + +.. code-block:: python + + proxy_url="socks4a://@proxy-host" + +When connecting to a SOCKS5 proxy the ``username`` and ``password`` portion +of the ``proxy_url`` will be sent as the username/password to authenticate +with the proxy: + +.. code-block:: python + + proxy_url="socks5h://:@proxy-host" + +""" +from __future__ import absolute_import + +try: + import socks +except ImportError: + import warnings + + from ..exceptions import DependencyWarning + + warnings.warn( + ( + "SOCKS support in urllib3 requires the installation of optional " + "dependencies: specifically, PySocks. For more information, see " + "https://urllib3.readthedocs.io/en/1.26.x/contrib.html#socks-proxies" + ), + DependencyWarning, + ) + raise + +from socket import error as SocketError +from socket import timeout as SocketTimeout + +from ..connection import HTTPConnection, HTTPSConnection +from ..connectionpool import HTTPConnectionPool, HTTPSConnectionPool +from ..exceptions import ConnectTimeoutError, NewConnectionError +from ..poolmanager import PoolManager +from ..util.url import parse_url + +try: + import ssl +except ImportError: + ssl = None + + +class SOCKSConnection(HTTPConnection): + """ + A plain-text HTTP connection that connects via a SOCKS proxy. + """ + + def __init__(self, *args, **kwargs): + self._socks_options = kwargs.pop("_socks_options") + super(SOCKSConnection, self).__init__(*args, **kwargs) + + def _new_conn(self): + """ + Establish a new connection via the SOCKS proxy. + """ + extra_kw = {} + if self.source_address: + extra_kw["source_address"] = self.source_address + + if self.socket_options: + extra_kw["socket_options"] = self.socket_options + + try: + conn = socks.create_connection( + (self.host, self.port), + proxy_type=self._socks_options["socks_version"], + proxy_addr=self._socks_options["proxy_host"], + proxy_port=self._socks_options["proxy_port"], + proxy_username=self._socks_options["username"], + proxy_password=self._socks_options["password"], + proxy_rdns=self._socks_options["rdns"], + timeout=self.timeout, + **extra_kw + ) + + except SocketTimeout: + raise ConnectTimeoutError( + self, + "Connection to %s timed out. (connect timeout=%s)" + % (self.host, self.timeout), + ) + + except socks.ProxyError as e: + # This is fragile as hell, but it seems to be the only way to raise + # useful errors here. + if e.socket_err: + error = e.socket_err + if isinstance(error, SocketTimeout): + raise ConnectTimeoutError( + self, + "Connection to %s timed out. (connect timeout=%s)" + % (self.host, self.timeout), + ) + else: + raise NewConnectionError( + self, "Failed to establish a new connection: %s" % error + ) + else: + raise NewConnectionError( + self, "Failed to establish a new connection: %s" % e + ) + + except SocketError as e: # Defensive: PySocks should catch all these. + raise NewConnectionError( + self, "Failed to establish a new connection: %s" % e + ) + + return conn + + +# We don't need to duplicate the Verified/Unverified distinction from +# urllib3/connection.py here because the HTTPSConnection will already have been +# correctly set to either the Verified or Unverified form by that module. This +# means the SOCKSHTTPSConnection will automatically be the correct type. +class SOCKSHTTPSConnection(SOCKSConnection, HTTPSConnection): + pass + + +class SOCKSHTTPConnectionPool(HTTPConnectionPool): + ConnectionCls = SOCKSConnection + + +class SOCKSHTTPSConnectionPool(HTTPSConnectionPool): + ConnectionCls = SOCKSHTTPSConnection + + +class SOCKSProxyManager(PoolManager): + """ + A version of the urllib3 ProxyManager that routes connections via the + defined SOCKS proxy. + """ + + pool_classes_by_scheme = { + "http": SOCKSHTTPConnectionPool, + "https": SOCKSHTTPSConnectionPool, + } + + def __init__( + self, + proxy_url, + username=None, + password=None, + num_pools=10, + headers=None, + **connection_pool_kw + ): + parsed = parse_url(proxy_url) + + if username is None and password is None and parsed.auth is not None: + split = parsed.auth.split(":") + if len(split) == 2: + username, password = split + if parsed.scheme == "socks5": + socks_version = socks.PROXY_TYPE_SOCKS5 + rdns = False + elif parsed.scheme == "socks5h": + socks_version = socks.PROXY_TYPE_SOCKS5 + rdns = True + elif parsed.scheme == "socks4": + socks_version = socks.PROXY_TYPE_SOCKS4 + rdns = False + elif parsed.scheme == "socks4a": + socks_version = socks.PROXY_TYPE_SOCKS4 + rdns = True + else: + raise ValueError("Unable to determine SOCKS version from %s" % proxy_url) + + self.proxy_url = proxy_url + + socks_options = { + "socks_version": socks_version, + "proxy_host": parsed.host, + "proxy_port": parsed.port, + "username": username, + "password": password, + "rdns": rdns, + } + connection_pool_kw["_socks_options"] = socks_options + + super(SOCKSProxyManager, self).__init__( + num_pools, headers, **connection_pool_kw + ) + + self.pool_classes_by_scheme = SOCKSProxyManager.pool_classes_by_scheme diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py new file mode 100644 index 0000000..cba6f3f --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py @@ -0,0 +1,323 @@ +from __future__ import absolute_import + +from .packages.six.moves.http_client import IncompleteRead as httplib_IncompleteRead + +# Base Exceptions + + +class HTTPError(Exception): + """Base exception used by this module.""" + + pass + + +class HTTPWarning(Warning): + """Base warning used by this module.""" + + pass + + +class PoolError(HTTPError): + """Base exception for errors caused within a pool.""" + + def __init__(self, pool, message): + self.pool = pool + HTTPError.__init__(self, "%s: %s" % (pool, message)) + + def __reduce__(self): + # For pickling purposes. + return self.__class__, (None, None) + + +class RequestError(PoolError): + """Base exception for PoolErrors that have associated URLs.""" + + def __init__(self, pool, url, message): + self.url = url + PoolError.__init__(self, pool, message) + + def __reduce__(self): + # For pickling purposes. + return self.__class__, (None, self.url, None) + + +class SSLError(HTTPError): + """Raised when SSL certificate fails in an HTTPS connection.""" + + pass + + +class ProxyError(HTTPError): + """Raised when the connection to a proxy fails.""" + + def __init__(self, message, error, *args): + super(ProxyError, self).__init__(message, error, *args) + self.original_error = error + + +class DecodeError(HTTPError): + """Raised when automatic decoding based on Content-Type fails.""" + + pass + + +class ProtocolError(HTTPError): + """Raised when something unexpected happens mid-request/response.""" + + pass + + +#: Renamed to ProtocolError but aliased for backwards compatibility. +ConnectionError = ProtocolError + + +# Leaf Exceptions + + +class MaxRetryError(RequestError): + """Raised when the maximum number of retries is exceeded. + + :param pool: The connection pool + :type pool: :class:`~urllib3.connectionpool.HTTPConnectionPool` + :param string url: The requested Url + :param exceptions.Exception reason: The underlying error + + """ + + def __init__(self, pool, url, reason=None): + self.reason = reason + + message = "Max retries exceeded with url: %s (Caused by %r)" % (url, reason) + + RequestError.__init__(self, pool, url, message) + + +class HostChangedError(RequestError): + """Raised when an existing pool gets a request for a foreign host.""" + + def __init__(self, pool, url, retries=3): + message = "Tried to open a foreign host with url: %s" % url + RequestError.__init__(self, pool, url, message) + self.retries = retries + + +class TimeoutStateError(HTTPError): + """Raised when passing an invalid state to a timeout""" + + pass + + +class TimeoutError(HTTPError): + """Raised when a socket timeout error occurs. + + Catching this error will catch both :exc:`ReadTimeoutErrors + ` and :exc:`ConnectTimeoutErrors `. + """ + + pass + + +class ReadTimeoutError(TimeoutError, RequestError): + """Raised when a socket timeout occurs while receiving data from a server""" + + pass + + +# This timeout error does not have a URL attached and needs to inherit from the +# base HTTPError +class ConnectTimeoutError(TimeoutError): + """Raised when a socket timeout occurs while connecting to a server""" + + pass + + +class NewConnectionError(ConnectTimeoutError, PoolError): + """Raised when we fail to establish a new connection. Usually ECONNREFUSED.""" + + pass + + +class EmptyPoolError(PoolError): + """Raised when a pool runs out of connections and no more are allowed.""" + + pass + + +class ClosedPoolError(PoolError): + """Raised when a request enters a pool after the pool has been closed.""" + + pass + + +class LocationValueError(ValueError, HTTPError): + """Raised when there is something wrong with a given URL input.""" + + pass + + +class LocationParseError(LocationValueError): + """Raised when get_host or similar fails to parse the URL input.""" + + def __init__(self, location): + message = "Failed to parse: %s" % location + HTTPError.__init__(self, message) + + self.location = location + + +class URLSchemeUnknown(LocationValueError): + """Raised when a URL input has an unsupported scheme.""" + + def __init__(self, scheme): + message = "Not supported URL scheme %s" % scheme + super(URLSchemeUnknown, self).__init__(message) + + self.scheme = scheme + + +class ResponseError(HTTPError): + """Used as a container for an error reason supplied in a MaxRetryError.""" + + GENERIC_ERROR = "too many error responses" + SPECIFIC_ERROR = "too many {status_code} error responses" + + +class SecurityWarning(HTTPWarning): + """Warned when performing security reducing actions""" + + pass + + +class SubjectAltNameWarning(SecurityWarning): + """Warned when connecting to a host with a certificate missing a SAN.""" + + pass + + +class InsecureRequestWarning(SecurityWarning): + """Warned when making an unverified HTTPS request.""" + + pass + + +class SystemTimeWarning(SecurityWarning): + """Warned when system time is suspected to be wrong""" + + pass + + +class InsecurePlatformWarning(SecurityWarning): + """Warned when certain TLS/SSL configuration is not available on a platform.""" + + pass + + +class SNIMissingWarning(HTTPWarning): + """Warned when making a HTTPS request without SNI available.""" + + pass + + +class DependencyWarning(HTTPWarning): + """ + Warned when an attempt is made to import a module with missing optional + dependencies. + """ + + pass + + +class ResponseNotChunked(ProtocolError, ValueError): + """Response needs to be chunked in order to read it as chunks.""" + + pass + + +class BodyNotHttplibCompatible(HTTPError): + """ + Body should be :class:`http.client.HTTPResponse` like + (have an fp attribute which returns raw chunks) for read_chunked(). + """ + + pass + + +class IncompleteRead(HTTPError, httplib_IncompleteRead): + """ + Response length doesn't match expected Content-Length + + Subclass of :class:`http.client.IncompleteRead` to allow int value + for ``partial`` to avoid creating large objects on streamed reads. + """ + + def __init__(self, partial, expected): + super(IncompleteRead, self).__init__(partial, expected) + + def __repr__(self): + return "IncompleteRead(%i bytes read, %i more expected)" % ( + self.partial, + self.expected, + ) + + +class InvalidChunkLength(HTTPError, httplib_IncompleteRead): + """Invalid chunk length in a chunked response.""" + + def __init__(self, response, length): + super(InvalidChunkLength, self).__init__( + response.tell(), response.length_remaining + ) + self.response = response + self.length = length + + def __repr__(self): + return "InvalidChunkLength(got length %r, %i bytes read)" % ( + self.length, + self.partial, + ) + + +class InvalidHeader(HTTPError): + """The header provided was somehow invalid.""" + + pass + + +class ProxySchemeUnknown(AssertionError, URLSchemeUnknown): + """ProxyManager does not support the supplied scheme""" + + # TODO(t-8ch): Stop inheriting from AssertionError in v2.0. + + def __init__(self, scheme): + # 'localhost' is here because our URL parser parses + # localhost:8080 -> scheme=localhost, remove if we fix this. + if scheme == "localhost": + scheme = None + if scheme is None: + message = "Proxy URL had no scheme, should start with http:// or https://" + else: + message = ( + "Proxy URL had unsupported scheme %s, should use http:// or https://" + % scheme + ) + super(ProxySchemeUnknown, self).__init__(message) + + +class ProxySchemeUnsupported(ValueError): + """Fetching HTTPS resources through HTTPS proxies is unsupported""" + + pass + + +class HeaderParsingError(HTTPError): + """Raised by assert_header_parsing, but we convert it to a log.warning statement.""" + + def __init__(self, defects, unparsed_data): + message = "%s, unparsed data: %r" % (defects or "Unknown", unparsed_data) + super(HeaderParsingError, self).__init__(message) + + +class UnrewindableBodyError(HTTPError): + """urllib3 encountered an error when trying to rewind a body""" + + pass diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/fields.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/fields.py new file mode 100644 index 0000000..9d630f4 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/fields.py @@ -0,0 +1,274 @@ +from __future__ import absolute_import + +import email.utils +import mimetypes +import re + +from .packages import six + + +def guess_content_type(filename, default="application/octet-stream"): + """ + Guess the "Content-Type" of a file. + + :param filename: + The filename to guess the "Content-Type" of using :mod:`mimetypes`. + :param default: + If no "Content-Type" can be guessed, default to `default`. + """ + if filename: + return mimetypes.guess_type(filename)[0] or default + return default + + +def format_header_param_rfc2231(name, value): + """ + Helper function to format and quote a single header parameter using the + strategy defined in RFC 2231. + + Particularly useful for header parameters which might contain + non-ASCII values, like file names. This follows + `RFC 2388 Section 4.4 `_. + + :param name: + The name of the parameter, a string expected to be ASCII only. + :param value: + The value of the parameter, provided as ``bytes`` or `str``. + :ret: + An RFC-2231-formatted unicode string. + """ + if isinstance(value, six.binary_type): + value = value.decode("utf-8") + + if not any(ch in value for ch in '"\\\r\n'): + result = u'%s="%s"' % (name, value) + try: + result.encode("ascii") + except (UnicodeEncodeError, UnicodeDecodeError): + pass + else: + return result + + if six.PY2: # Python 2: + value = value.encode("utf-8") + + # encode_rfc2231 accepts an encoded string and returns an ascii-encoded + # string in Python 2 but accepts and returns unicode strings in Python 3 + value = email.utils.encode_rfc2231(value, "utf-8") + value = "%s*=%s" % (name, value) + + if six.PY2: # Python 2: + value = value.decode("utf-8") + + return value + + +_HTML5_REPLACEMENTS = { + u"\u0022": u"%22", + # Replace "\" with "\\". + u"\u005C": u"\u005C\u005C", +} + +# All control characters from 0x00 to 0x1F *except* 0x1B. +_HTML5_REPLACEMENTS.update( + { + six.unichr(cc): u"%{:02X}".format(cc) + for cc in range(0x00, 0x1F + 1) + if cc not in (0x1B,) + } +) + + +def _replace_multiple(value, needles_and_replacements): + def replacer(match): + return needles_and_replacements[match.group(0)] + + pattern = re.compile( + r"|".join([re.escape(needle) for needle in needles_and_replacements.keys()]) + ) + + result = pattern.sub(replacer, value) + + return result + + +def format_header_param_html5(name, value): + """ + Helper function to format and quote a single header parameter using the + HTML5 strategy. + + Particularly useful for header parameters which might contain + non-ASCII values, like file names. This follows the `HTML5 Working Draft + Section 4.10.22.7`_ and matches the behavior of curl and modern browsers. + + .. _HTML5 Working Draft Section 4.10.22.7: + https://w3c.github.io/html/sec-forms.html#multipart-form-data + + :param name: + The name of the parameter, a string expected to be ASCII only. + :param value: + The value of the parameter, provided as ``bytes`` or `str``. + :ret: + A unicode string, stripped of troublesome characters. + """ + if isinstance(value, six.binary_type): + value = value.decode("utf-8") + + value = _replace_multiple(value, _HTML5_REPLACEMENTS) + + return u'%s="%s"' % (name, value) + + +# For backwards-compatibility. +format_header_param = format_header_param_html5 + + +class RequestField(object): + """ + A data container for request body parameters. + + :param name: + The name of this request field. Must be unicode. + :param data: + The data/value body. + :param filename: + An optional filename of the request field. Must be unicode. + :param headers: + An optional dict-like object of headers to initially use for the field. + :param header_formatter: + An optional callable that is used to encode and format the headers. By + default, this is :func:`format_header_param_html5`. + """ + + def __init__( + self, + name, + data, + filename=None, + headers=None, + header_formatter=format_header_param_html5, + ): + self._name = name + self._filename = filename + self.data = data + self.headers = {} + if headers: + self.headers = dict(headers) + self.header_formatter = header_formatter + + @classmethod + def from_tuples(cls, fieldname, value, header_formatter=format_header_param_html5): + """ + A :class:`~urllib3.fields.RequestField` factory from old-style tuple parameters. + + Supports constructing :class:`~urllib3.fields.RequestField` from + parameter of key/value strings AND key/filetuple. A filetuple is a + (filename, data, MIME type) tuple where the MIME type is optional. + For example:: + + 'foo': 'bar', + 'fakefile': ('foofile.txt', 'contents of foofile'), + 'realfile': ('barfile.txt', open('realfile').read()), + 'typedfile': ('bazfile.bin', open('bazfile').read(), 'image/jpeg'), + 'nonamefile': 'contents of nonamefile field', + + Field names and filenames must be unicode. + """ + if isinstance(value, tuple): + if len(value) == 3: + filename, data, content_type = value + else: + filename, data = value + content_type = guess_content_type(filename) + else: + filename = None + content_type = None + data = value + + request_param = cls( + fieldname, data, filename=filename, header_formatter=header_formatter + ) + request_param.make_multipart(content_type=content_type) + + return request_param + + def _render_part(self, name, value): + """ + Overridable helper function to format a single header parameter. By + default, this calls ``self.header_formatter``. + + :param name: + The name of the parameter, a string expected to be ASCII only. + :param value: + The value of the parameter, provided as a unicode string. + """ + + return self.header_formatter(name, value) + + def _render_parts(self, header_parts): + """ + Helper function to format and quote a single header. + + Useful for single headers that are composed of multiple items. E.g., + 'Content-Disposition' fields. + + :param header_parts: + A sequence of (k, v) tuples or a :class:`dict` of (k, v) to format + as `k1="v1"; k2="v2"; ...`. + """ + parts = [] + iterable = header_parts + if isinstance(header_parts, dict): + iterable = header_parts.items() + + for name, value in iterable: + if value is not None: + parts.append(self._render_part(name, value)) + + return u"; ".join(parts) + + def render_headers(self): + """ + Renders the headers for this request field. + """ + lines = [] + + sort_keys = ["Content-Disposition", "Content-Type", "Content-Location"] + for sort_key in sort_keys: + if self.headers.get(sort_key, False): + lines.append(u"%s: %s" % (sort_key, self.headers[sort_key])) + + for header_name, header_value in self.headers.items(): + if header_name not in sort_keys: + if header_value: + lines.append(u"%s: %s" % (header_name, header_value)) + + lines.append(u"\r\n") + return u"\r\n".join(lines) + + def make_multipart( + self, content_disposition=None, content_type=None, content_location=None + ): + """ + Makes this request field into a multipart request field. + + This method overrides "Content-Disposition", "Content-Type" and + "Content-Location" headers to the request parameter. + + :param content_type: + The 'Content-Type' of the request body. + :param content_location: + The 'Content-Location' of the request body. + + """ + self.headers["Content-Disposition"] = content_disposition or u"form-data" + self.headers["Content-Disposition"] += u"; ".join( + [ + u"", + self._render_parts( + ((u"name", self._name), (u"filename", self._filename)) + ), + ] + ) + self.headers["Content-Type"] = content_type + self.headers["Content-Location"] = content_location diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/filepost.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/filepost.py new file mode 100644 index 0000000..36c9252 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/filepost.py @@ -0,0 +1,98 @@ +from __future__ import absolute_import + +import binascii +import codecs +import os +from io import BytesIO + +from .fields import RequestField +from .packages import six +from .packages.six import b + +writer = codecs.lookup("utf-8")[3] + + +def choose_boundary(): + """ + Our embarrassingly-simple replacement for mimetools.choose_boundary. + """ + boundary = binascii.hexlify(os.urandom(16)) + if not six.PY2: + boundary = boundary.decode("ascii") + return boundary + + +def iter_field_objects(fields): + """ + Iterate over fields. + + Supports list of (k, v) tuples and dicts, and lists of + :class:`~urllib3.fields.RequestField`. + + """ + if isinstance(fields, dict): + i = six.iteritems(fields) + else: + i = iter(fields) + + for field in i: + if isinstance(field, RequestField): + yield field + else: + yield RequestField.from_tuples(*field) + + +def iter_fields(fields): + """ + .. deprecated:: 1.6 + + Iterate over fields. + + The addition of :class:`~urllib3.fields.RequestField` makes this function + obsolete. Instead, use :func:`iter_field_objects`, which returns + :class:`~urllib3.fields.RequestField` objects. + + Supports list of (k, v) tuples and dicts. + """ + if isinstance(fields, dict): + return ((k, v) for k, v in six.iteritems(fields)) + + return ((k, v) for k, v in fields) + + +def encode_multipart_formdata(fields, boundary=None): + """ + Encode a dictionary of ``fields`` using the multipart/form-data MIME format. + + :param fields: + Dictionary of fields or list of (key, :class:`~urllib3.fields.RequestField`). + + :param boundary: + If not specified, then a random boundary will be generated using + :func:`urllib3.filepost.choose_boundary`. + """ + body = BytesIO() + if boundary is None: + boundary = choose_boundary() + + for field in iter_field_objects(fields): + body.write(b("--%s\r\n" % (boundary))) + + writer(body).write(field.render_headers()) + data = field.data + + if isinstance(data, int): + data = str(data) # Backwards compatibility + + if isinstance(data, six.text_type): + writer(body).write(data) + else: + body.write(data) + + body.write(b"\r\n") + + body.write(b("--%s--\r\n" % (boundary))) + + content_type = str("multipart/form-data; boundary=%s" % boundary) + + return body.getvalue(), content_type diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..95b45e48e8e17ff90cc472d6c21c82017c0fe771 GIT binary patch literal 227 zcmX@j%ge<81lcE5GC=fW5P=Rpvj9b=GgLBYGWxA#C}INgK7-VJtp^g$RxzQ)sYS&x zi8-kisWJX}sV+sCWvMY27F^hHVdI5;7uzrFxUf^D`Ew@h7pL1L5z>gjEsy$%s>_ZC9p^w literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77ec41936efff90e747f85842d045c14cb5a96de GIT binary patch literal 41283 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 pg`c#TFH{R3t?^tCEgxG<yu<|ee*>#?WC8#H literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cab4b4fc6808689a821e5291edf61a51b765af8d GIT binary patch literal 237 zcmX@j%ge<81lcE5GC=fW5P=Rpvj9b=GgLBYGWxA#C}INgK7-VJ?F16eRxzQ)sYS&x zi8-kisWJX}sV+sCWvMY27F^hHVdI5;7uzrFxUf^`7nKz2$H!;pWtPOp>lIYq;;_lhPbtkwwJTx;x{DEri$RQ!%#4hTMa)1J09|)X A9smFU literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0fc418759b09bee77240b346ba740dc4733ee38d GIT binary patch literal 1853 zcmZuyO>7fK6rNqLckNyO6ENkc8qx}4L=!<;p`r>kkc6hBfJkW6V98l~$H~U)U2Aq7 zlW2|H2&s;G2`8dfNRfJ>%7xxqRpQWF)ytZwin9ubswZw#q33qS_B!s*v+Q|)-<$W| zycz!z4vThKGs3Ewb@i~6=mVQuDX zR`EUdd48*m!r9CcsPc-RuJ;&|G|T2gpeopc$=STgehi2g-|`A5LN#a$*l!0F|4JAD zBJnMWYfBb6o;KOQ4sLZ0rz+Yc@?vid9WNz7aXB{A&CzCStP-rUHmisQg2yo{;Kf{Q zje#e%*N*1^@r>F5Q|hT!I;heXrvStS$C4HFSl0BHn zfv?B45MHg4PIhT`tp^qJd=J)tqU-=>ZD|VhU=jzu9%oCo&*p6Z7T4BPLpEcFGTpw| zp(&6Gty~fzA#Zk}k^kR;&10k39qGaM23w%Zv~ripx(s%i%1T((mt;*3@nW>k=p!U92Idcc@YfD2yIL45faAxs;ya;mIn%lSOQNP(tB#=mI7 zV%fA{7Qw8l%Xm2@xjqwFuK1~}mC+c+2F9&iA{p<7W-!W|E~^^uq0zDNkvo&qnJah3 z$H#7GrY2^`+{l&A4!37+$tv!Vk*uH|c?PQ%k;BvIo;7iE2Fs-q5jk37D(rG5((<^E zmJw{{OfIk+KzhzlD90n3o9PNVs%WZ?T%khZQHwz8YP+;cA_}=eqq;uAxO_XB%UNV! zlgvG!r_`lC*NEoorSu&WVKXgj=pIVn)X^wbmr&Z-be=ljInNqjINv)zz{cl|Rp*)W zWBP(7XXQ)@%Q;Ie$m!xT(wEYcYBp_>65lD2*Gry9X1b)7hB8Y?R}4H<#+s&Phlf1l zQ1>Yu@)|u@T6W`}y4!x-PZFeQn}g(ZYv6SVgrarp%lE&EK9|nCh#dWC+Ii#pc4X2C zOg1C&_33({cCEuaj|^-kH}2N1?MjJ<^A2~?kxn+lvGvjV-P(9F5+ep7(hNk`hu0!? zp_kti6YKA8B)7#=wX01ou)`&vbIFbK4erFRT(T*|9N}oQ??^pJ*!A_=)eyXWQ|MYy567 z)~gO~$1kk$zeSJKBlXI^4RwB32sfjL>)|~qydxcNNXIwEH$Qrke>%S{U9OEbV|}&J z2NO*xTD!ha+6Geo))l!yDCKvBOhz$snGB{cip#hE16m{BYV@}NzeNoA6txCEAY)Y4 s&}Dpvi1comZ<3!^K89ib;CP1Hj{rt|0gk^4fC=Uk=C$uM6KmoB2CEMB=f@F9w%9=4vbN0bzsvMp7y6FZ4xSGJO_V_V)`r(HxCW|f>UKD82W`DHkAJW!B%+y5< z-9LNI3`tQU-Ns&EFTgwJzRo@O-tV4s?%}Vit33qL_^&!fe^*b)Cs-&XN1oU?1H>{> z$RJS|g^e;3>>$e^%|*FE&ie9$Jbd}6V?r1dpv^JD3_4lzC87wIprpEPb2hg@cY+H! zlZt0p4v$a9siAkzsPZ^fBT__*$x$t-dM=hFkLN_8yJ(E6;$J3=(RfTeC|n?%nTmz?i(N7u z(c#lIK7&+9q^dDRW4b7dVL2MLcofD_i;K-soEg=^qvDJfjf%sn)mK%ZQUwWy$3#sR zM`SuIk3dsA8U+zlrCWSsRLu)Qbwf0?3Dv?$kv|T@S%H&gi0ZT)osta|773#6MM+Bp zwHV1Ur6@2Wj;i`p)aVxbB8EzVH}J#iEfXlJtn3$Iq{RWJ(_$ky-`ErgRapK&Jf?PA zJ^lvQgj^CLX9q&O>5`5-&~xH1(*+AB$4o06mX7Plnn(YT>Y5_N(&8z|dnOOTy>Y3R#3ta?a}siF(poWrYIco@WGx!V^2}3^^|SFWWsb<+d$nQ++O(UDDNeb ztv_?wO+on*x)ZW+UQq%`2oFC${5A$*&zDJxjA8Azq<4YpB~fP1k#dX`lvYU}7$uYx z^W^RPDT1G z8$ZkFXhd*?WrDC;!4U;?5u?HG3tY)qV}aiM7FGabHf0f@Z|i2C0+k|1f!wlE+*d0l zNQfJtxPUi80kc7(>WHSpEmsw3Ml(hw8-ngCs}{px_{qY|Go`@R5w5H)?Ph#`P@qXje+X} zYua?g3;g|t=9Po1{I!b<{1tDuz7am|!e?jecVeqN)Kq16 zHsk01j;584_2#ZjbJx8c`=G{?-QB*xU-ez~EgBhDYc}}onyc|YUAryh4}|mh0nrFS zwBjw;_-Du-hx)P7djkD1rNAjEAaRaOvGg#Y0ncPx(z{raVk_MWs4XIPbC8C;izwZ! zw=t}de`3DPoF@q;!Gzf4;HiiRe$2FGfnwr>Ovgo82L&rDXdCi&VAJxH+Q^qJt&V3J z2Nh3eG|<_$-4M}i41@&w3`}owlkrKwjy^hNDDj!tHkgDsx*K~j5^aO8jyqKf6SPc^ zfr;Jp3XVDp**wV!Bv60#;^m9${sq?*`1}1IoW6DX?*3QqJeR3Ep7tKkainR_!XfLV!^P_j>`_@+2b}}r$qu@3 z`RAAvGt1BbLsCp7ULW%ALRmM~T2Gmx71=Qlr-d(T(nTN}WYS?P21BBX!mRmMjET~Ws+PC6GP*g(>k0u++ zl#1QZk0VAPtALez{yhtP)>nJi*STmcrZ{hfgapU6ki|f04GrM~~?6||P z?S3U&->_1Dqv?9nYX5tuZk~GI_~7fezJ9moi+6_8b$w}XAD~D)ws8DUpy=N~ivI@` z*=VR>QlA7PThRb&eG;oNq@DCrmx?a6Xa)vA93d)GmhUoC+5;?l*mzccOXEEg9=wZui;^0fFfijG@~Dd;xPYhFvQ zRlu6H^se%y>!b0hs8aH9lHs`nj>;|G+6oH~CO;gHM=fU}#9CWp+X>wFyflXXJmAvZ@fmIm4KAv`k?0qXW^TmC;0Gyt3-_Xd{RNA`~D+vYS*GuKyimmQP)ViAv`0!`U~eWb?4IFa}VlXxF4ureB+vDJL*l6S<%px&SB|!#FZ}={d=j)39H)MAmAT4>xe*d(-+~9~5M1Fo2EFTwo;7o& z4&H-ogk55lywfI1t%mDpRGt`C9|OW3G!0yJbPVUoD!=+yH=XZQ|6{dvVi=DcR}&#y zM?(Mv=gmL%bO=~ND1-|~b(4vhjAk-tbRM{XN1r!lf$eiA+y1P06orXc!hnn4{_J}P zZXQ?1|24+LS+Zo&llRDdq6RRDg_r>M9JJxDRC ziXn(O4rb!s4s3=&DtYy^1>BHgprM@897Mu5IY>phQk>4jLMd*n7;vaCmUk0)lJW(~ z;WF@#ae5$Z@;Z5kx$>sMmCROrZ=@Jn^9^>aWpj=KwaFXpVLLJKNUYRB=pKd`cvGx2 zhQX+9siYO7RNGR4_qPc{-XvF~88XYgNoJUK^7K;9kOG$wKk!;UKI5|=H0(&&bi?B~ zhEZh2bSj#TlpTpduaUlnSqEgM`_?+s{ zLk@ZZi&a#$E2NPy{R^ydPD0=hqO$ZPlyp2|yoL5Pq|H!FHkaSLLYydpWBv;=@R~fN zp>?4u$F{m#v;NwvbMMamCeZYtZpZS`rK8_H2EmcV)7ko+%daoJ{@pX#=3R?U2&-fp zb}fEmt?Q-ruD-inec52=dhmrz@P&K9BP-7AbBEU&_pUYeeB2VuHa?SW+ocn--#dHrY^J3*UEiB->CNpX4K2A2($#GRe4hQ--<%E9 zF1wf9->U)-CeZTVpH`FB&PRmVapZnu%MIUk-;cNtytll!efJs<=QybTA6U*~hyPLk z0xbDb-}5Is$j@JLp6DgNU}}K=Mel)=ZQMt@SfD==8Km1dq&viZo}-6gP^j6m&9nw+ zS__%!lq4k{2BVBvwH;dP;M^EdGr+0UO-DFB6*DNt0I7upj2xPR{ojHer3+%)9?bS( zb^trLAO;VSQuiWus0!o1BKBWPHoEYu5k4M4;N%B+6` z*(LIjbvs;MlX#;c$GBdE^ruCzwY8%yR)E_#U#Xz?pv2b>XE0);mb7>q2?jWJKAwTO%AD?*Q#rCv|4o!S)gni<)Qfg!$^E&3jWA} zNIXS1mY&B9--q@y6HODIlNDp4U&eaek8K-ex{liM{A2X1(290f?}iNU#4rze2g85n mCCr{rNZ>cb^IOvJpz4{lXV<**Q{i=%X" % (type(self).__name__, id(self)) + else: + return "<%s object at %#x; for %r at %#x>" % ( + type(self).__name__, + id(self), + type(obj).__name__, + id(obj), + ) + + @classmethod + def _select_for_exit(cls): + # Return live finalizers marked for exit, oldest first + L = [(f, i) for (f, i) in cls._registry.items() if i.atexit] + L.sort(key=lambda item: item[1].index) + return [f for (f, i) in L] + + @classmethod + def _exitfunc(cls): + # At shutdown invoke finalizers for which atexit is true. + # This is called once all other non-daemonic threads have been + # joined. + reenable_gc = False + try: + if cls._registry: + import gc + + if gc.isenabled(): + reenable_gc = True + gc.disable() + pending = None + while True: + if pending is None or weakref_finalize._dirty: + pending = cls._select_for_exit() + weakref_finalize._dirty = False + if not pending: + break + f = pending.pop() + try: + # gc is disabled, so (assuming no daemonic + # threads) the following is the only line in + # this function which might trigger creation + # of a new finalizer + f() + except Exception: + sys.excepthook(*sys.exc_info()) + assert f not in cls._registry + finally: + # prevent any more finalizers from executing during shutdown + weakref_finalize._shutdown = True + if reenable_gc: + gc.enable() diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py new file mode 100644 index 0000000..f099a3d --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py @@ -0,0 +1,1076 @@ +# Copyright (c) 2010-2020 Benjamin Peterson +# +# 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. + +"""Utilities for writing code that runs on Python 2 and 3""" + +from __future__ import absolute_import + +import functools +import itertools +import operator +import sys +import types + +__author__ = "Benjamin Peterson " +__version__ = "1.16.0" + + +# Useful for very coarse version differentiation. +PY2 = sys.version_info[0] == 2 +PY3 = sys.version_info[0] == 3 +PY34 = sys.version_info[0:2] >= (3, 4) + +if PY3: + string_types = (str,) + integer_types = (int,) + class_types = (type,) + text_type = str + binary_type = bytes + + MAXSIZE = sys.maxsize +else: + string_types = (basestring,) + integer_types = (int, long) + class_types = (type, types.ClassType) + text_type = unicode + binary_type = str + + if sys.platform.startswith("java"): + # Jython always uses 32 bits. + MAXSIZE = int((1 << 31) - 1) + else: + # It's possible to have sizeof(long) != sizeof(Py_ssize_t). + class X(object): + def __len__(self): + return 1 << 31 + + try: + len(X()) + except OverflowError: + # 32-bit + MAXSIZE = int((1 << 31) - 1) + else: + # 64-bit + MAXSIZE = int((1 << 63) - 1) + del X + +if PY34: + from importlib.util import spec_from_loader +else: + spec_from_loader = None + + +def _add_doc(func, doc): + """Add documentation to a function.""" + func.__doc__ = doc + + +def _import_module(name): + """Import module, returning the module after the last dot.""" + __import__(name) + return sys.modules[name] + + +class _LazyDescr(object): + def __init__(self, name): + self.name = name + + def __get__(self, obj, tp): + result = self._resolve() + setattr(obj, self.name, result) # Invokes __set__. + try: + # This is a bit ugly, but it avoids running this again by + # removing this descriptor. + delattr(obj.__class__, self.name) + except AttributeError: + pass + return result + + +class MovedModule(_LazyDescr): + def __init__(self, name, old, new=None): + super(MovedModule, self).__init__(name) + if PY3: + if new is None: + new = name + self.mod = new + else: + self.mod = old + + def _resolve(self): + return _import_module(self.mod) + + def __getattr__(self, attr): + _module = self._resolve() + value = getattr(_module, attr) + setattr(self, attr, value) + return value + + +class _LazyModule(types.ModuleType): + def __init__(self, name): + super(_LazyModule, self).__init__(name) + self.__doc__ = self.__class__.__doc__ + + def __dir__(self): + attrs = ["__doc__", "__name__"] + attrs += [attr.name for attr in self._moved_attributes] + return attrs + + # Subclasses should override this + _moved_attributes = [] + + +class MovedAttribute(_LazyDescr): + def __init__(self, name, old_mod, new_mod, old_attr=None, new_attr=None): + super(MovedAttribute, self).__init__(name) + if PY3: + if new_mod is None: + new_mod = name + self.mod = new_mod + if new_attr is None: + if old_attr is None: + new_attr = name + else: + new_attr = old_attr + self.attr = new_attr + else: + self.mod = old_mod + if old_attr is None: + old_attr = name + self.attr = old_attr + + def _resolve(self): + module = _import_module(self.mod) + return getattr(module, self.attr) + + +class _SixMetaPathImporter(object): + + """ + A meta path importer to import six.moves and its submodules. + + This class implements a PEP302 finder and loader. It should be compatible + with Python 2.5 and all existing versions of Python3 + """ + + def __init__(self, six_module_name): + self.name = six_module_name + self.known_modules = {} + + def _add_module(self, mod, *fullnames): + for fullname in fullnames: + self.known_modules[self.name + "." + fullname] = mod + + def _get_module(self, fullname): + return self.known_modules[self.name + "." + fullname] + + def find_module(self, fullname, path=None): + if fullname in self.known_modules: + return self + return None + + def find_spec(self, fullname, path, target=None): + if fullname in self.known_modules: + return spec_from_loader(fullname, self) + return None + + def __get_module(self, fullname): + try: + return self.known_modules[fullname] + except KeyError: + raise ImportError("This loader does not know module " + fullname) + + def load_module(self, fullname): + try: + # in case of a reload + return sys.modules[fullname] + except KeyError: + pass + mod = self.__get_module(fullname) + if isinstance(mod, MovedModule): + mod = mod._resolve() + else: + mod.__loader__ = self + sys.modules[fullname] = mod + return mod + + def is_package(self, fullname): + """ + Return true, if the named module is a package. + + We need this method to get correct spec objects with + Python 3.4 (see PEP451) + """ + return hasattr(self.__get_module(fullname), "__path__") + + def get_code(self, fullname): + """Return None + + Required, if is_package is implemented""" + self.__get_module(fullname) # eventually raises ImportError + return None + + get_source = get_code # same as get_code + + def create_module(self, spec): + return self.load_module(spec.name) + + def exec_module(self, module): + pass + + +_importer = _SixMetaPathImporter(__name__) + + +class _MovedItems(_LazyModule): + + """Lazy loading of moved objects""" + + __path__ = [] # mark as package + + +_moved_attributes = [ + MovedAttribute("cStringIO", "cStringIO", "io", "StringIO"), + MovedAttribute("filter", "itertools", "builtins", "ifilter", "filter"), + MovedAttribute( + "filterfalse", "itertools", "itertools", "ifilterfalse", "filterfalse" + ), + MovedAttribute("input", "__builtin__", "builtins", "raw_input", "input"), + MovedAttribute("intern", "__builtin__", "sys"), + MovedAttribute("map", "itertools", "builtins", "imap", "map"), + MovedAttribute("getcwd", "os", "os", "getcwdu", "getcwd"), + MovedAttribute("getcwdb", "os", "os", "getcwd", "getcwdb"), + MovedAttribute("getoutput", "commands", "subprocess"), + MovedAttribute("range", "__builtin__", "builtins", "xrange", "range"), + MovedAttribute( + "reload_module", "__builtin__", "importlib" if PY34 else "imp", "reload" + ), + MovedAttribute("reduce", "__builtin__", "functools"), + MovedAttribute("shlex_quote", "pipes", "shlex", "quote"), + MovedAttribute("StringIO", "StringIO", "io"), + MovedAttribute("UserDict", "UserDict", "collections"), + MovedAttribute("UserList", "UserList", "collections"), + MovedAttribute("UserString", "UserString", "collections"), + MovedAttribute("xrange", "__builtin__", "builtins", "xrange", "range"), + MovedAttribute("zip", "itertools", "builtins", "izip", "zip"), + MovedAttribute( + "zip_longest", "itertools", "itertools", "izip_longest", "zip_longest" + ), + MovedModule("builtins", "__builtin__"), + MovedModule("configparser", "ConfigParser"), + MovedModule( + "collections_abc", + "collections", + "collections.abc" if sys.version_info >= (3, 3) else "collections", + ), + MovedModule("copyreg", "copy_reg"), + MovedModule("dbm_gnu", "gdbm", "dbm.gnu"), + MovedModule("dbm_ndbm", "dbm", "dbm.ndbm"), + MovedModule( + "_dummy_thread", + "dummy_thread", + "_dummy_thread" if sys.version_info < (3, 9) else "_thread", + ), + MovedModule("http_cookiejar", "cookielib", "http.cookiejar"), + MovedModule("http_cookies", "Cookie", "http.cookies"), + MovedModule("html_entities", "htmlentitydefs", "html.entities"), + MovedModule("html_parser", "HTMLParser", "html.parser"), + MovedModule("http_client", "httplib", "http.client"), + MovedModule("email_mime_base", "email.MIMEBase", "email.mime.base"), + MovedModule("email_mime_image", "email.MIMEImage", "email.mime.image"), + MovedModule("email_mime_multipart", "email.MIMEMultipart", "email.mime.multipart"), + MovedModule( + "email_mime_nonmultipart", "email.MIMENonMultipart", "email.mime.nonmultipart" + ), + MovedModule("email_mime_text", "email.MIMEText", "email.mime.text"), + MovedModule("BaseHTTPServer", "BaseHTTPServer", "http.server"), + MovedModule("CGIHTTPServer", "CGIHTTPServer", "http.server"), + MovedModule("SimpleHTTPServer", "SimpleHTTPServer", "http.server"), + MovedModule("cPickle", "cPickle", "pickle"), + MovedModule("queue", "Queue"), + MovedModule("reprlib", "repr"), + MovedModule("socketserver", "SocketServer"), + MovedModule("_thread", "thread", "_thread"), + MovedModule("tkinter", "Tkinter"), + MovedModule("tkinter_dialog", "Dialog", "tkinter.dialog"), + MovedModule("tkinter_filedialog", "FileDialog", "tkinter.filedialog"), + MovedModule("tkinter_scrolledtext", "ScrolledText", "tkinter.scrolledtext"), + MovedModule("tkinter_simpledialog", "SimpleDialog", "tkinter.simpledialog"), + MovedModule("tkinter_tix", "Tix", "tkinter.tix"), + MovedModule("tkinter_ttk", "ttk", "tkinter.ttk"), + MovedModule("tkinter_constants", "Tkconstants", "tkinter.constants"), + MovedModule("tkinter_dnd", "Tkdnd", "tkinter.dnd"), + MovedModule("tkinter_colorchooser", "tkColorChooser", "tkinter.colorchooser"), + MovedModule("tkinter_commondialog", "tkCommonDialog", "tkinter.commondialog"), + MovedModule("tkinter_tkfiledialog", "tkFileDialog", "tkinter.filedialog"), + MovedModule("tkinter_font", "tkFont", "tkinter.font"), + MovedModule("tkinter_messagebox", "tkMessageBox", "tkinter.messagebox"), + MovedModule("tkinter_tksimpledialog", "tkSimpleDialog", "tkinter.simpledialog"), + MovedModule("urllib_parse", __name__ + ".moves.urllib_parse", "urllib.parse"), + MovedModule("urllib_error", __name__ + ".moves.urllib_error", "urllib.error"), + MovedModule("urllib", __name__ + ".moves.urllib", __name__ + ".moves.urllib"), + MovedModule("urllib_robotparser", "robotparser", "urllib.robotparser"), + MovedModule("xmlrpc_client", "xmlrpclib", "xmlrpc.client"), + MovedModule("xmlrpc_server", "SimpleXMLRPCServer", "xmlrpc.server"), +] +# Add windows specific modules. +if sys.platform == "win32": + _moved_attributes += [ + MovedModule("winreg", "_winreg"), + ] + +for attr in _moved_attributes: + setattr(_MovedItems, attr.name, attr) + if isinstance(attr, MovedModule): + _importer._add_module(attr, "moves." + attr.name) +del attr + +_MovedItems._moved_attributes = _moved_attributes + +moves = _MovedItems(__name__ + ".moves") +_importer._add_module(moves, "moves") + + +class Module_six_moves_urllib_parse(_LazyModule): + + """Lazy loading of moved objects in six.moves.urllib_parse""" + + +_urllib_parse_moved_attributes = [ + MovedAttribute("ParseResult", "urlparse", "urllib.parse"), + MovedAttribute("SplitResult", "urlparse", "urllib.parse"), + MovedAttribute("parse_qs", "urlparse", "urllib.parse"), + MovedAttribute("parse_qsl", "urlparse", "urllib.parse"), + MovedAttribute("urldefrag", "urlparse", "urllib.parse"), + MovedAttribute("urljoin", "urlparse", "urllib.parse"), + MovedAttribute("urlparse", "urlparse", "urllib.parse"), + MovedAttribute("urlsplit", "urlparse", "urllib.parse"), + MovedAttribute("urlunparse", "urlparse", "urllib.parse"), + MovedAttribute("urlunsplit", "urlparse", "urllib.parse"), + MovedAttribute("quote", "urllib", "urllib.parse"), + MovedAttribute("quote_plus", "urllib", "urllib.parse"), + MovedAttribute("unquote", "urllib", "urllib.parse"), + MovedAttribute("unquote_plus", "urllib", "urllib.parse"), + MovedAttribute( + "unquote_to_bytes", "urllib", "urllib.parse", "unquote", "unquote_to_bytes" + ), + MovedAttribute("urlencode", "urllib", "urllib.parse"), + MovedAttribute("splitquery", "urllib", "urllib.parse"), + MovedAttribute("splittag", "urllib", "urllib.parse"), + MovedAttribute("splituser", "urllib", "urllib.parse"), + MovedAttribute("splitvalue", "urllib", "urllib.parse"), + MovedAttribute("uses_fragment", "urlparse", "urllib.parse"), + MovedAttribute("uses_netloc", "urlparse", "urllib.parse"), + MovedAttribute("uses_params", "urlparse", "urllib.parse"), + MovedAttribute("uses_query", "urlparse", "urllib.parse"), + MovedAttribute("uses_relative", "urlparse", "urllib.parse"), +] +for attr in _urllib_parse_moved_attributes: + setattr(Module_six_moves_urllib_parse, attr.name, attr) +del attr + +Module_six_moves_urllib_parse._moved_attributes = _urllib_parse_moved_attributes + +_importer._add_module( + Module_six_moves_urllib_parse(__name__ + ".moves.urllib_parse"), + "moves.urllib_parse", + "moves.urllib.parse", +) + + +class Module_six_moves_urllib_error(_LazyModule): + + """Lazy loading of moved objects in six.moves.urllib_error""" + + +_urllib_error_moved_attributes = [ + MovedAttribute("URLError", "urllib2", "urllib.error"), + MovedAttribute("HTTPError", "urllib2", "urllib.error"), + MovedAttribute("ContentTooShortError", "urllib", "urllib.error"), +] +for attr in _urllib_error_moved_attributes: + setattr(Module_six_moves_urllib_error, attr.name, attr) +del attr + +Module_six_moves_urllib_error._moved_attributes = _urllib_error_moved_attributes + +_importer._add_module( + Module_six_moves_urllib_error(__name__ + ".moves.urllib.error"), + "moves.urllib_error", + "moves.urllib.error", +) + + +class Module_six_moves_urllib_request(_LazyModule): + + """Lazy loading of moved objects in six.moves.urllib_request""" + + +_urllib_request_moved_attributes = [ + MovedAttribute("urlopen", "urllib2", "urllib.request"), + MovedAttribute("install_opener", "urllib2", "urllib.request"), + MovedAttribute("build_opener", "urllib2", "urllib.request"), + MovedAttribute("pathname2url", "urllib", "urllib.request"), + MovedAttribute("url2pathname", "urllib", "urllib.request"), + MovedAttribute("getproxies", "urllib", "urllib.request"), + MovedAttribute("Request", "urllib2", "urllib.request"), + MovedAttribute("OpenerDirector", "urllib2", "urllib.request"), + MovedAttribute("HTTPDefaultErrorHandler", "urllib2", "urllib.request"), + MovedAttribute("HTTPRedirectHandler", "urllib2", "urllib.request"), + MovedAttribute("HTTPCookieProcessor", "urllib2", "urllib.request"), + MovedAttribute("ProxyHandler", "urllib2", "urllib.request"), + MovedAttribute("BaseHandler", "urllib2", "urllib.request"), + MovedAttribute("HTTPPasswordMgr", "urllib2", "urllib.request"), + MovedAttribute("HTTPPasswordMgrWithDefaultRealm", "urllib2", "urllib.request"), + MovedAttribute("AbstractBasicAuthHandler", "urllib2", "urllib.request"), + MovedAttribute("HTTPBasicAuthHandler", "urllib2", "urllib.request"), + MovedAttribute("ProxyBasicAuthHandler", "urllib2", "urllib.request"), + MovedAttribute("AbstractDigestAuthHandler", "urllib2", "urllib.request"), + MovedAttribute("HTTPDigestAuthHandler", "urllib2", "urllib.request"), + MovedAttribute("ProxyDigestAuthHandler", "urllib2", "urllib.request"), + MovedAttribute("HTTPHandler", "urllib2", "urllib.request"), + MovedAttribute("HTTPSHandler", "urllib2", "urllib.request"), + MovedAttribute("FileHandler", "urllib2", "urllib.request"), + MovedAttribute("FTPHandler", "urllib2", "urllib.request"), + MovedAttribute("CacheFTPHandler", "urllib2", "urllib.request"), + MovedAttribute("UnknownHandler", "urllib2", "urllib.request"), + MovedAttribute("HTTPErrorProcessor", "urllib2", "urllib.request"), + MovedAttribute("urlretrieve", "urllib", "urllib.request"), + MovedAttribute("urlcleanup", "urllib", "urllib.request"), + MovedAttribute("URLopener", "urllib", "urllib.request"), + MovedAttribute("FancyURLopener", "urllib", "urllib.request"), + MovedAttribute("proxy_bypass", "urllib", "urllib.request"), + MovedAttribute("parse_http_list", "urllib2", "urllib.request"), + MovedAttribute("parse_keqv_list", "urllib2", "urllib.request"), +] +for attr in _urllib_request_moved_attributes: + setattr(Module_six_moves_urllib_request, attr.name, attr) +del attr + +Module_six_moves_urllib_request._moved_attributes = _urllib_request_moved_attributes + +_importer._add_module( + Module_six_moves_urllib_request(__name__ + ".moves.urllib.request"), + "moves.urllib_request", + "moves.urllib.request", +) + + +class Module_six_moves_urllib_response(_LazyModule): + + """Lazy loading of moved objects in six.moves.urllib_response""" + + +_urllib_response_moved_attributes = [ + MovedAttribute("addbase", "urllib", "urllib.response"), + MovedAttribute("addclosehook", "urllib", "urllib.response"), + MovedAttribute("addinfo", "urllib", "urllib.response"), + MovedAttribute("addinfourl", "urllib", "urllib.response"), +] +for attr in _urllib_response_moved_attributes: + setattr(Module_six_moves_urllib_response, attr.name, attr) +del attr + +Module_six_moves_urllib_response._moved_attributes = _urllib_response_moved_attributes + +_importer._add_module( + Module_six_moves_urllib_response(__name__ + ".moves.urllib.response"), + "moves.urllib_response", + "moves.urllib.response", +) + + +class Module_six_moves_urllib_robotparser(_LazyModule): + + """Lazy loading of moved objects in six.moves.urllib_robotparser""" + + +_urllib_robotparser_moved_attributes = [ + MovedAttribute("RobotFileParser", "robotparser", "urllib.robotparser"), +] +for attr in _urllib_robotparser_moved_attributes: + setattr(Module_six_moves_urllib_robotparser, attr.name, attr) +del attr + +Module_six_moves_urllib_robotparser._moved_attributes = ( + _urllib_robotparser_moved_attributes +) + +_importer._add_module( + Module_six_moves_urllib_robotparser(__name__ + ".moves.urllib.robotparser"), + "moves.urllib_robotparser", + "moves.urllib.robotparser", +) + + +class Module_six_moves_urllib(types.ModuleType): + + """Create a six.moves.urllib namespace that resembles the Python 3 namespace""" + + __path__ = [] # mark as package + parse = _importer._get_module("moves.urllib_parse") + error = _importer._get_module("moves.urllib_error") + request = _importer._get_module("moves.urllib_request") + response = _importer._get_module("moves.urllib_response") + robotparser = _importer._get_module("moves.urllib_robotparser") + + def __dir__(self): + return ["parse", "error", "request", "response", "robotparser"] + + +_importer._add_module( + Module_six_moves_urllib(__name__ + ".moves.urllib"), "moves.urllib" +) + + +def add_move(move): + """Add an item to six.moves.""" + setattr(_MovedItems, move.name, move) + + +def remove_move(name): + """Remove item from six.moves.""" + try: + delattr(_MovedItems, name) + except AttributeError: + try: + del moves.__dict__[name] + except KeyError: + raise AttributeError("no such move, %r" % (name,)) + + +if PY3: + _meth_func = "__func__" + _meth_self = "__self__" + + _func_closure = "__closure__" + _func_code = "__code__" + _func_defaults = "__defaults__" + _func_globals = "__globals__" +else: + _meth_func = "im_func" + _meth_self = "im_self" + + _func_closure = "func_closure" + _func_code = "func_code" + _func_defaults = "func_defaults" + _func_globals = "func_globals" + + +try: + advance_iterator = next +except NameError: + + def advance_iterator(it): + return it.next() + + +next = advance_iterator + + +try: + callable = callable +except NameError: + + def callable(obj): + return any("__call__" in klass.__dict__ for klass in type(obj).__mro__) + + +if PY3: + + def get_unbound_function(unbound): + return unbound + + create_bound_method = types.MethodType + + def create_unbound_method(func, cls): + return func + + Iterator = object +else: + + def get_unbound_function(unbound): + return unbound.im_func + + def create_bound_method(func, obj): + return types.MethodType(func, obj, obj.__class__) + + def create_unbound_method(func, cls): + return types.MethodType(func, None, cls) + + class Iterator(object): + def next(self): + return type(self).__next__(self) + + callable = callable +_add_doc( + get_unbound_function, """Get the function out of a possibly unbound function""" +) + + +get_method_function = operator.attrgetter(_meth_func) +get_method_self = operator.attrgetter(_meth_self) +get_function_closure = operator.attrgetter(_func_closure) +get_function_code = operator.attrgetter(_func_code) +get_function_defaults = operator.attrgetter(_func_defaults) +get_function_globals = operator.attrgetter(_func_globals) + + +if PY3: + + def iterkeys(d, **kw): + return iter(d.keys(**kw)) + + def itervalues(d, **kw): + return iter(d.values(**kw)) + + def iteritems(d, **kw): + return iter(d.items(**kw)) + + def iterlists(d, **kw): + return iter(d.lists(**kw)) + + viewkeys = operator.methodcaller("keys") + + viewvalues = operator.methodcaller("values") + + viewitems = operator.methodcaller("items") +else: + + def iterkeys(d, **kw): + return d.iterkeys(**kw) + + def itervalues(d, **kw): + return d.itervalues(**kw) + + def iteritems(d, **kw): + return d.iteritems(**kw) + + def iterlists(d, **kw): + return d.iterlists(**kw) + + viewkeys = operator.methodcaller("viewkeys") + + viewvalues = operator.methodcaller("viewvalues") + + viewitems = operator.methodcaller("viewitems") + +_add_doc(iterkeys, "Return an iterator over the keys of a dictionary.") +_add_doc(itervalues, "Return an iterator over the values of a dictionary.") +_add_doc(iteritems, "Return an iterator over the (key, value) pairs of a dictionary.") +_add_doc( + iterlists, "Return an iterator over the (key, [values]) pairs of a dictionary." +) + + +if PY3: + + def b(s): + return s.encode("latin-1") + + def u(s): + return s + + unichr = chr + import struct + + int2byte = struct.Struct(">B").pack + del struct + byte2int = operator.itemgetter(0) + indexbytes = operator.getitem + iterbytes = iter + import io + + StringIO = io.StringIO + BytesIO = io.BytesIO + del io + _assertCountEqual = "assertCountEqual" + if sys.version_info[1] <= 1: + _assertRaisesRegex = "assertRaisesRegexp" + _assertRegex = "assertRegexpMatches" + _assertNotRegex = "assertNotRegexpMatches" + else: + _assertRaisesRegex = "assertRaisesRegex" + _assertRegex = "assertRegex" + _assertNotRegex = "assertNotRegex" +else: + + def b(s): + return s + + # Workaround for standalone backslash + + def u(s): + return unicode(s.replace(r"\\", r"\\\\"), "unicode_escape") + + unichr = unichr + int2byte = chr + + def byte2int(bs): + return ord(bs[0]) + + def indexbytes(buf, i): + return ord(buf[i]) + + iterbytes = functools.partial(itertools.imap, ord) + import StringIO + + StringIO = BytesIO = StringIO.StringIO + _assertCountEqual = "assertItemsEqual" + _assertRaisesRegex = "assertRaisesRegexp" + _assertRegex = "assertRegexpMatches" + _assertNotRegex = "assertNotRegexpMatches" +_add_doc(b, """Byte literal""") +_add_doc(u, """Text literal""") + + +def assertCountEqual(self, *args, **kwargs): + return getattr(self, _assertCountEqual)(*args, **kwargs) + + +def assertRaisesRegex(self, *args, **kwargs): + return getattr(self, _assertRaisesRegex)(*args, **kwargs) + + +def assertRegex(self, *args, **kwargs): + return getattr(self, _assertRegex)(*args, **kwargs) + + +def assertNotRegex(self, *args, **kwargs): + return getattr(self, _assertNotRegex)(*args, **kwargs) + + +if PY3: + exec_ = getattr(moves.builtins, "exec") + + def reraise(tp, value, tb=None): + try: + if value is None: + value = tp() + if value.__traceback__ is not tb: + raise value.with_traceback(tb) + raise value + finally: + value = None + tb = None + +else: + + def exec_(_code_, _globs_=None, _locs_=None): + """Execute code in a namespace.""" + if _globs_ is None: + frame = sys._getframe(1) + _globs_ = frame.f_globals + if _locs_ is None: + _locs_ = frame.f_locals + del frame + elif _locs_ is None: + _locs_ = _globs_ + exec ("""exec _code_ in _globs_, _locs_""") + + exec_( + """def reraise(tp, value, tb=None): + try: + raise tp, value, tb + finally: + tb = None +""" + ) + + +if sys.version_info[:2] > (3,): + exec_( + """def raise_from(value, from_value): + try: + raise value from from_value + finally: + value = None +""" + ) +else: + + def raise_from(value, from_value): + raise value + + +print_ = getattr(moves.builtins, "print", None) +if print_ is None: + + def print_(*args, **kwargs): + """The new-style print function for Python 2.4 and 2.5.""" + fp = kwargs.pop("file", sys.stdout) + if fp is None: + return + + def write(data): + if not isinstance(data, basestring): + data = str(data) + # If the file has an encoding, encode unicode with it. + if ( + isinstance(fp, file) + and isinstance(data, unicode) + and fp.encoding is not None + ): + errors = getattr(fp, "errors", None) + if errors is None: + errors = "strict" + data = data.encode(fp.encoding, errors) + fp.write(data) + + want_unicode = False + sep = kwargs.pop("sep", None) + if sep is not None: + if isinstance(sep, unicode): + want_unicode = True + elif not isinstance(sep, str): + raise TypeError("sep must be None or a string") + end = kwargs.pop("end", None) + if end is not None: + if isinstance(end, unicode): + want_unicode = True + elif not isinstance(end, str): + raise TypeError("end must be None or a string") + if kwargs: + raise TypeError("invalid keyword arguments to print()") + if not want_unicode: + for arg in args: + if isinstance(arg, unicode): + want_unicode = True + break + if want_unicode: + newline = unicode("\n") + space = unicode(" ") + else: + newline = "\n" + space = " " + if sep is None: + sep = space + if end is None: + end = newline + for i, arg in enumerate(args): + if i: + write(sep) + write(arg) + write(end) + + +if sys.version_info[:2] < (3, 3): + _print = print_ + + def print_(*args, **kwargs): + fp = kwargs.get("file", sys.stdout) + flush = kwargs.pop("flush", False) + _print(*args, **kwargs) + if flush and fp is not None: + fp.flush() + + +_add_doc(reraise, """Reraise an exception.""") + +if sys.version_info[0:2] < (3, 4): + # This does exactly the same what the :func:`py3:functools.update_wrapper` + # function does on Python versions after 3.2. It sets the ``__wrapped__`` + # attribute on ``wrapper`` object and it doesn't raise an error if any of + # the attributes mentioned in ``assigned`` and ``updated`` are missing on + # ``wrapped`` object. + def _update_wrapper( + wrapper, + wrapped, + assigned=functools.WRAPPER_ASSIGNMENTS, + updated=functools.WRAPPER_UPDATES, + ): + for attr in assigned: + try: + value = getattr(wrapped, attr) + except AttributeError: + continue + else: + setattr(wrapper, attr, value) + for attr in updated: + getattr(wrapper, attr).update(getattr(wrapped, attr, {})) + wrapper.__wrapped__ = wrapped + return wrapper + + _update_wrapper.__doc__ = functools.update_wrapper.__doc__ + + def wraps( + wrapped, + assigned=functools.WRAPPER_ASSIGNMENTS, + updated=functools.WRAPPER_UPDATES, + ): + return functools.partial( + _update_wrapper, wrapped=wrapped, assigned=assigned, updated=updated + ) + + wraps.__doc__ = functools.wraps.__doc__ + +else: + wraps = functools.wraps + + +def with_metaclass(meta, *bases): + """Create a base class with a metaclass.""" + # This requires a bit of explanation: the basic idea is to make a dummy + # metaclass for one level of class instantiation that replaces itself with + # the actual metaclass. + class metaclass(type): + def __new__(cls, name, this_bases, d): + if sys.version_info[:2] >= (3, 7): + # This version introduced PEP 560 that requires a bit + # of extra care (we mimic what is done by __build_class__). + resolved_bases = types.resolve_bases(bases) + if resolved_bases is not bases: + d["__orig_bases__"] = bases + else: + resolved_bases = bases + return meta(name, resolved_bases, d) + + @classmethod + def __prepare__(cls, name, this_bases): + return meta.__prepare__(name, bases) + + return type.__new__(metaclass, "temporary_class", (), {}) + + +def add_metaclass(metaclass): + """Class decorator for creating a class with a metaclass.""" + + def wrapper(cls): + orig_vars = cls.__dict__.copy() + slots = orig_vars.get("__slots__") + if slots is not None: + if isinstance(slots, str): + slots = [slots] + for slots_var in slots: + orig_vars.pop(slots_var) + orig_vars.pop("__dict__", None) + orig_vars.pop("__weakref__", None) + if hasattr(cls, "__qualname__"): + orig_vars["__qualname__"] = cls.__qualname__ + return metaclass(cls.__name__, cls.__bases__, orig_vars) + + return wrapper + + +def ensure_binary(s, encoding="utf-8", errors="strict"): + """Coerce **s** to six.binary_type. + + For Python 2: + - `unicode` -> encoded to `str` + - `str` -> `str` + + For Python 3: + - `str` -> encoded to `bytes` + - `bytes` -> `bytes` + """ + if isinstance(s, binary_type): + return s + if isinstance(s, text_type): + return s.encode(encoding, errors) + raise TypeError("not expecting type '%s'" % type(s)) + + +def ensure_str(s, encoding="utf-8", errors="strict"): + """Coerce *s* to `str`. + + For Python 2: + - `unicode` -> encoded to `str` + - `str` -> `str` + + For Python 3: + - `str` -> `str` + - `bytes` -> decoded to `str` + """ + # Optimization: Fast return for the common case. + if type(s) is str: + return s + if PY2 and isinstance(s, text_type): + return s.encode(encoding, errors) + elif PY3 and isinstance(s, binary_type): + return s.decode(encoding, errors) + elif not isinstance(s, (text_type, binary_type)): + raise TypeError("not expecting type '%s'" % type(s)) + return s + + +def ensure_text(s, encoding="utf-8", errors="strict"): + """Coerce *s* to six.text_type. + + For Python 2: + - `unicode` -> `unicode` + - `str` -> `unicode` + + For Python 3: + - `str` -> `str` + - `bytes` -> decoded to `str` + """ + if isinstance(s, binary_type): + return s.decode(encoding, errors) + elif isinstance(s, text_type): + return s + else: + raise TypeError("not expecting type '%s'" % type(s)) + + +def python_2_unicode_compatible(klass): + """ + A class decorator that defines __unicode__ and __str__ methods under Python 2. + Under Python 3 it does nothing. + + To support Python 2 and 3 with a single code base, define a __str__ method + returning text and apply this decorator to the class. + """ + if PY2: + if "__str__" not in klass.__dict__: + raise ValueError( + "@python_2_unicode_compatible cannot be applied " + "to %s because it doesn't define __str__()." % klass.__name__ + ) + klass.__unicode__ = klass.__str__ + klass.__str__ = lambda self: self.__unicode__().encode("utf-8") + return klass + + +# Complete the moves implementation. +# This code is at the end of this module to speed up module loading. +# Turn this module into a package. +__path__ = [] # required for PEP 302 and PEP 451 +__package__ = __name__ # see PEP 366 @ReservedAssignment +if globals().get("__spec__") is not None: + __spec__.submodule_search_locations = [] # PEP 451 @UndefinedVariable +# Remove other six meta path importers, since they cause problems. This can +# happen if six is removed from sys.modules and then reloaded. (Setuptools does +# this for some reason.) +if sys.meta_path: + for i, importer in enumerate(sys.meta_path): + # Here's some real nastiness: Another "instance" of the six module might + # be floating around. Therefore, we can't use isinstance() to check for + # the six meta path importer, since the other six instance will have + # inserted an importer with different class. + if ( + type(importer).__name__ == "_SixMetaPathImporter" + and importer.name == __name__ + ): + del sys.meta_path[i] + break + del i, importer +# Finally, add the importer to the meta path import hook. +sys.meta_path.append(_importer) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py new file mode 100644 index 0000000..fb51bf7 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py @@ -0,0 +1,540 @@ +from __future__ import absolute_import + +import collections +import functools +import logging + +from ._collections import HTTPHeaderDict, RecentlyUsedContainer +from .connectionpool import HTTPConnectionPool, HTTPSConnectionPool, port_by_scheme +from .exceptions import ( + LocationValueError, + MaxRetryError, + ProxySchemeUnknown, + ProxySchemeUnsupported, + URLSchemeUnknown, +) +from .packages import six +from .packages.six.moves.urllib.parse import urljoin +from .request import RequestMethods +from .util.proxy import connection_requires_http_tunnel +from .util.retry import Retry +from .util.url import parse_url + +__all__ = ["PoolManager", "ProxyManager", "proxy_from_url"] + + +log = logging.getLogger(__name__) + +SSL_KEYWORDS = ( + "key_file", + "cert_file", + "cert_reqs", + "ca_certs", + "ssl_version", + "ca_cert_dir", + "ssl_context", + "key_password", + "server_hostname", +) + +# All known keyword arguments that could be provided to the pool manager, its +# pools, or the underlying connections. This is used to construct a pool key. +_key_fields = ( + "key_scheme", # str + "key_host", # str + "key_port", # int + "key_timeout", # int or float or Timeout + "key_retries", # int or Retry + "key_strict", # bool + "key_block", # bool + "key_source_address", # str + "key_key_file", # str + "key_key_password", # str + "key_cert_file", # str + "key_cert_reqs", # str + "key_ca_certs", # str + "key_ssl_version", # str + "key_ca_cert_dir", # str + "key_ssl_context", # instance of ssl.SSLContext or urllib3.util.ssl_.SSLContext + "key_maxsize", # int + "key_headers", # dict + "key__proxy", # parsed proxy url + "key__proxy_headers", # dict + "key__proxy_config", # class + "key_socket_options", # list of (level (int), optname (int), value (int or str)) tuples + "key__socks_options", # dict + "key_assert_hostname", # bool or string + "key_assert_fingerprint", # str + "key_server_hostname", # str +) + +#: The namedtuple class used to construct keys for the connection pool. +#: All custom key schemes should include the fields in this key at a minimum. +PoolKey = collections.namedtuple("PoolKey", _key_fields) + +_proxy_config_fields = ("ssl_context", "use_forwarding_for_https") +ProxyConfig = collections.namedtuple("ProxyConfig", _proxy_config_fields) + + +def _default_key_normalizer(key_class, request_context): + """ + Create a pool key out of a request context dictionary. + + According to RFC 3986, both the scheme and host are case-insensitive. + Therefore, this function normalizes both before constructing the pool + key for an HTTPS request. If you wish to change this behaviour, provide + alternate callables to ``key_fn_by_scheme``. + + :param key_class: + The class to use when constructing the key. This should be a namedtuple + with the ``scheme`` and ``host`` keys at a minimum. + :type key_class: namedtuple + :param request_context: + A dictionary-like object that contain the context for a request. + :type request_context: dict + + :return: A namedtuple that can be used as a connection pool key. + :rtype: PoolKey + """ + # Since we mutate the dictionary, make a copy first + context = request_context.copy() + context["scheme"] = context["scheme"].lower() + context["host"] = context["host"].lower() + + # These are both dictionaries and need to be transformed into frozensets + for key in ("headers", "_proxy_headers", "_socks_options"): + if key in context and context[key] is not None: + context[key] = frozenset(context[key].items()) + + # The socket_options key may be a list and needs to be transformed into a + # tuple. + socket_opts = context.get("socket_options") + if socket_opts is not None: + context["socket_options"] = tuple(socket_opts) + + # Map the kwargs to the names in the namedtuple - this is necessary since + # namedtuples can't have fields starting with '_'. + for key in list(context.keys()): + context["key_" + key] = context.pop(key) + + # Default to ``None`` for keys missing from the context + for field in key_class._fields: + if field not in context: + context[field] = None + + return key_class(**context) + + +#: A dictionary that maps a scheme to a callable that creates a pool key. +#: This can be used to alter the way pool keys are constructed, if desired. +#: Each PoolManager makes a copy of this dictionary so they can be configured +#: globally here, or individually on the instance. +key_fn_by_scheme = { + "http": functools.partial(_default_key_normalizer, PoolKey), + "https": functools.partial(_default_key_normalizer, PoolKey), +} + +pool_classes_by_scheme = {"http": HTTPConnectionPool, "https": HTTPSConnectionPool} + + +class PoolManager(RequestMethods): + """ + Allows for arbitrary requests while transparently keeping track of + necessary connection pools for you. + + :param num_pools: + Number of connection pools to cache before discarding the least + recently used pool. + + :param headers: + Headers to include with all requests, unless other headers are given + explicitly. + + :param \\**connection_pool_kw: + Additional parameters are used to create fresh + :class:`urllib3.connectionpool.ConnectionPool` instances. + + Example:: + + >>> manager = PoolManager(num_pools=2) + >>> r = manager.request('GET', 'http://google.com/') + >>> r = manager.request('GET', 'http://google.com/mail') + >>> r = manager.request('GET', 'http://yahoo.com/') + >>> len(manager.pools) + 2 + + """ + + proxy = None + proxy_config = None + + def __init__(self, num_pools=10, headers=None, **connection_pool_kw): + RequestMethods.__init__(self, headers) + self.connection_pool_kw = connection_pool_kw + self.pools = RecentlyUsedContainer(num_pools) + + # Locally set the pool classes and keys so other PoolManagers can + # override them. + self.pool_classes_by_scheme = pool_classes_by_scheme + self.key_fn_by_scheme = key_fn_by_scheme.copy() + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + self.clear() + # Return False to re-raise any potential exceptions + return False + + def _new_pool(self, scheme, host, port, request_context=None): + """ + Create a new :class:`urllib3.connectionpool.ConnectionPool` based on host, port, scheme, and + any additional pool keyword arguments. + + If ``request_context`` is provided, it is provided as keyword arguments + to the pool class used. This method is used to actually create the + connection pools handed out by :meth:`connection_from_url` and + companion methods. It is intended to be overridden for customization. + """ + pool_cls = self.pool_classes_by_scheme[scheme] + if request_context is None: + request_context = self.connection_pool_kw.copy() + + # Although the context has everything necessary to create the pool, + # this function has historically only used the scheme, host, and port + # in the positional args. When an API change is acceptable these can + # be removed. + for key in ("scheme", "host", "port"): + request_context.pop(key, None) + + if scheme == "http": + for kw in SSL_KEYWORDS: + request_context.pop(kw, None) + + return pool_cls(host, port, **request_context) + + def clear(self): + """ + Empty our store of pools and direct them all to close. + + This will not affect in-flight connections, but they will not be + re-used after completion. + """ + self.pools.clear() + + def connection_from_host(self, host, port=None, scheme="http", pool_kwargs=None): + """ + Get a :class:`urllib3.connectionpool.ConnectionPool` based on the host, port, and scheme. + + If ``port`` isn't given, it will be derived from the ``scheme`` using + ``urllib3.connectionpool.port_by_scheme``. If ``pool_kwargs`` is + provided, it is merged with the instance's ``connection_pool_kw`` + variable and used to create the new connection pool, if one is + needed. + """ + + if not host: + raise LocationValueError("No host specified.") + + request_context = self._merge_pool_kwargs(pool_kwargs) + request_context["scheme"] = scheme or "http" + if not port: + port = port_by_scheme.get(request_context["scheme"].lower(), 80) + request_context["port"] = port + request_context["host"] = host + + return self.connection_from_context(request_context) + + def connection_from_context(self, request_context): + """ + Get a :class:`urllib3.connectionpool.ConnectionPool` based on the request context. + + ``request_context`` must at least contain the ``scheme`` key and its + value must be a key in ``key_fn_by_scheme`` instance variable. + """ + scheme = request_context["scheme"].lower() + pool_key_constructor = self.key_fn_by_scheme.get(scheme) + if not pool_key_constructor: + raise URLSchemeUnknown(scheme) + pool_key = pool_key_constructor(request_context) + + return self.connection_from_pool_key(pool_key, request_context=request_context) + + def connection_from_pool_key(self, pool_key, request_context=None): + """ + Get a :class:`urllib3.connectionpool.ConnectionPool` based on the provided pool key. + + ``pool_key`` should be a namedtuple that only contains immutable + objects. At a minimum it must have the ``scheme``, ``host``, and + ``port`` fields. + """ + with self.pools.lock: + # If the scheme, host, or port doesn't match existing open + # connections, open a new ConnectionPool. + pool = self.pools.get(pool_key) + if pool: + return pool + + # Make a fresh ConnectionPool of the desired type + scheme = request_context["scheme"] + host = request_context["host"] + port = request_context["port"] + pool = self._new_pool(scheme, host, port, request_context=request_context) + self.pools[pool_key] = pool + + return pool + + def connection_from_url(self, url, pool_kwargs=None): + """ + Similar to :func:`urllib3.connectionpool.connection_from_url`. + + If ``pool_kwargs`` is not provided and a new pool needs to be + constructed, ``self.connection_pool_kw`` is used to initialize + the :class:`urllib3.connectionpool.ConnectionPool`. If ``pool_kwargs`` + is provided, it is used instead. Note that if a new pool does not + need to be created for the request, the provided ``pool_kwargs`` are + not used. + """ + u = parse_url(url) + return self.connection_from_host( + u.host, port=u.port, scheme=u.scheme, pool_kwargs=pool_kwargs + ) + + def _merge_pool_kwargs(self, override): + """ + Merge a dictionary of override values for self.connection_pool_kw. + + This does not modify self.connection_pool_kw and returns a new dict. + Any keys in the override dictionary with a value of ``None`` are + removed from the merged dictionary. + """ + base_pool_kwargs = self.connection_pool_kw.copy() + if override: + for key, value in override.items(): + if value is None: + try: + del base_pool_kwargs[key] + except KeyError: + pass + else: + base_pool_kwargs[key] = value + return base_pool_kwargs + + def _proxy_requires_url_absolute_form(self, parsed_url): + """ + Indicates if the proxy requires the complete destination URL in the + request. Normally this is only needed when not using an HTTP CONNECT + tunnel. + """ + if self.proxy is None: + return False + + return not connection_requires_http_tunnel( + self.proxy, self.proxy_config, parsed_url.scheme + ) + + def _validate_proxy_scheme_url_selection(self, url_scheme): + """ + Validates that were not attempting to do TLS in TLS connections on + Python2 or with unsupported SSL implementations. + """ + if self.proxy is None or url_scheme != "https": + return + + if self.proxy.scheme != "https": + return + + if six.PY2 and not self.proxy_config.use_forwarding_for_https: + raise ProxySchemeUnsupported( + "Contacting HTTPS destinations through HTTPS proxies " + "'via CONNECT tunnels' is not supported in Python 2" + ) + + def urlopen(self, method, url, redirect=True, **kw): + """ + Same as :meth:`urllib3.HTTPConnectionPool.urlopen` + with custom cross-host redirect logic and only sends the request-uri + portion of the ``url``. + + The given ``url`` parameter must be absolute, such that an appropriate + :class:`urllib3.connectionpool.ConnectionPool` can be chosen for it. + """ + u = parse_url(url) + self._validate_proxy_scheme_url_selection(u.scheme) + + conn = self.connection_from_host(u.host, port=u.port, scheme=u.scheme) + + kw["assert_same_host"] = False + kw["redirect"] = False + + if "headers" not in kw: + kw["headers"] = self.headers.copy() + + if self._proxy_requires_url_absolute_form(u): + response = conn.urlopen(method, url, **kw) + else: + response = conn.urlopen(method, u.request_uri, **kw) + + redirect_location = redirect and response.get_redirect_location() + if not redirect_location: + return response + + # Support relative URLs for redirecting. + redirect_location = urljoin(url, redirect_location) + + if response.status == 303: + # Change the method according to RFC 9110, Section 15.4.4. + method = "GET" + # And lose the body not to transfer anything sensitive. + kw["body"] = None + kw["headers"] = HTTPHeaderDict(kw["headers"])._prepare_for_method_change() + + retries = kw.get("retries") + if not isinstance(retries, Retry): + retries = Retry.from_int(retries, redirect=redirect) + + # Strip headers marked as unsafe to forward to the redirected location. + # Check remove_headers_on_redirect to avoid a potential network call within + # conn.is_same_host() which may use socket.gethostbyname() in the future. + if retries.remove_headers_on_redirect and not conn.is_same_host( + redirect_location + ): + headers = list(six.iterkeys(kw["headers"])) + for header in headers: + if header.lower() in retries.remove_headers_on_redirect: + kw["headers"].pop(header, None) + + try: + retries = retries.increment(method, url, response=response, _pool=conn) + except MaxRetryError: + if retries.raise_on_redirect: + response.drain_conn() + raise + return response + + kw["retries"] = retries + kw["redirect"] = redirect + + log.info("Redirecting %s -> %s", url, redirect_location) + + response.drain_conn() + return self.urlopen(method, redirect_location, **kw) + + +class ProxyManager(PoolManager): + """ + Behaves just like :class:`PoolManager`, but sends all requests through + the defined proxy, using the CONNECT method for HTTPS URLs. + + :param proxy_url: + The URL of the proxy to be used. + + :param proxy_headers: + A dictionary containing headers that will be sent to the proxy. In case + of HTTP they are being sent with each request, while in the + HTTPS/CONNECT case they are sent only once. Could be used for proxy + authentication. + + :param proxy_ssl_context: + The proxy SSL context is used to establish the TLS connection to the + proxy when using HTTPS proxies. + + :param use_forwarding_for_https: + (Defaults to False) If set to True will forward requests to the HTTPS + proxy to be made on behalf of the client instead of creating a TLS + tunnel via the CONNECT method. **Enabling this flag means that request + and response headers and content will be visible from the HTTPS proxy** + whereas tunneling keeps request and response headers and content + private. IP address, target hostname, SNI, and port are always visible + to an HTTPS proxy even when this flag is disabled. + + Example: + >>> proxy = urllib3.ProxyManager('http://localhost:3128/') + >>> r1 = proxy.request('GET', 'http://google.com/') + >>> r2 = proxy.request('GET', 'http://httpbin.org/') + >>> len(proxy.pools) + 1 + >>> r3 = proxy.request('GET', 'https://httpbin.org/') + >>> r4 = proxy.request('GET', 'https://twitter.com/') + >>> len(proxy.pools) + 3 + + """ + + def __init__( + self, + proxy_url, + num_pools=10, + headers=None, + proxy_headers=None, + proxy_ssl_context=None, + use_forwarding_for_https=False, + **connection_pool_kw + ): + + if isinstance(proxy_url, HTTPConnectionPool): + proxy_url = "%s://%s:%i" % ( + proxy_url.scheme, + proxy_url.host, + proxy_url.port, + ) + proxy = parse_url(proxy_url) + + if proxy.scheme not in ("http", "https"): + raise ProxySchemeUnknown(proxy.scheme) + + if not proxy.port: + port = port_by_scheme.get(proxy.scheme, 80) + proxy = proxy._replace(port=port) + + self.proxy = proxy + self.proxy_headers = proxy_headers or {} + self.proxy_ssl_context = proxy_ssl_context + self.proxy_config = ProxyConfig(proxy_ssl_context, use_forwarding_for_https) + + connection_pool_kw["_proxy"] = self.proxy + connection_pool_kw["_proxy_headers"] = self.proxy_headers + connection_pool_kw["_proxy_config"] = self.proxy_config + + super(ProxyManager, self).__init__(num_pools, headers, **connection_pool_kw) + + def connection_from_host(self, host, port=None, scheme="http", pool_kwargs=None): + if scheme == "https": + return super(ProxyManager, self).connection_from_host( + host, port, scheme, pool_kwargs=pool_kwargs + ) + + return super(ProxyManager, self).connection_from_host( + self.proxy.host, self.proxy.port, self.proxy.scheme, pool_kwargs=pool_kwargs + ) + + def _set_proxy_headers(self, url, headers=None): + """ + Sets headers needed by proxies: specifically, the Accept and Host + headers. Only sets headers not provided by the user. + """ + headers_ = {"Accept": "*/*"} + + netloc = parse_url(url).netloc + if netloc: + headers_["Host"] = netloc + + if headers: + headers_.update(headers) + return headers_ + + def urlopen(self, method, url, redirect=True, **kw): + "Same as HTTP(S)ConnectionPool.urlopen, ``url`` must be absolute." + u = parse_url(url) + if not connection_requires_http_tunnel(self.proxy, self.proxy_config, u.scheme): + # For connections using HTTP CONNECT, httplib sets the necessary + # headers on the CONNECT to the proxy. If we're not using CONNECT, + # we'll definitely need to set 'Host' at the very least. + headers = kw.get("headers", self.headers) + kw["headers"] = self._set_proxy_headers(url, headers) + + return super(ProxyManager, self).urlopen(method, url, redirect=redirect, **kw) + + +def proxy_from_url(url, **kw): + return ProxyManager(proxy_url=url, **kw) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/request.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/request.py new file mode 100644 index 0000000..3b4cf99 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/request.py @@ -0,0 +1,191 @@ +from __future__ import absolute_import + +import sys + +from .filepost import encode_multipart_formdata +from .packages import six +from .packages.six.moves.urllib.parse import urlencode + +__all__ = ["RequestMethods"] + + +class RequestMethods(object): + """ + Convenience mixin for classes who implement a :meth:`urlopen` method, such + as :class:`urllib3.HTTPConnectionPool` and + :class:`urllib3.PoolManager`. + + Provides behavior for making common types of HTTP request methods and + decides which type of request field encoding to use. + + Specifically, + + :meth:`.request_encode_url` is for sending requests whose fields are + encoded in the URL (such as GET, HEAD, DELETE). + + :meth:`.request_encode_body` is for sending requests whose fields are + encoded in the *body* of the request using multipart or www-form-urlencoded + (such as for POST, PUT, PATCH). + + :meth:`.request` is for making any kind of request, it will look up the + appropriate encoding format and use one of the above two methods to make + the request. + + Initializer parameters: + + :param headers: + Headers to include with all requests, unless other headers are given + explicitly. + """ + + _encode_url_methods = {"DELETE", "GET", "HEAD", "OPTIONS"} + + def __init__(self, headers=None): + self.headers = headers or {} + + def urlopen( + self, + method, + url, + body=None, + headers=None, + encode_multipart=True, + multipart_boundary=None, + **kw + ): # Abstract + raise NotImplementedError( + "Classes extending RequestMethods must implement " + "their own ``urlopen`` method." + ) + + def request(self, method, url, fields=None, headers=None, **urlopen_kw): + """ + Make a request using :meth:`urlopen` with the appropriate encoding of + ``fields`` based on the ``method`` used. + + This is a convenience method that requires the least amount of manual + effort. It can be used in most situations, while still having the + option to drop down to more specific methods when necessary, such as + :meth:`request_encode_url`, :meth:`request_encode_body`, + or even the lowest level :meth:`urlopen`. + """ + method = method.upper() + + urlopen_kw["request_url"] = url + + if method in self._encode_url_methods: + return self.request_encode_url( + method, url, fields=fields, headers=headers, **urlopen_kw + ) + else: + return self.request_encode_body( + method, url, fields=fields, headers=headers, **urlopen_kw + ) + + def request_encode_url(self, method, url, fields=None, headers=None, **urlopen_kw): + """ + Make a request using :meth:`urlopen` with the ``fields`` encoded in + the url. This is useful for request methods like GET, HEAD, DELETE, etc. + """ + if headers is None: + headers = self.headers + + extra_kw = {"headers": headers} + extra_kw.update(urlopen_kw) + + if fields: + url += "?" + urlencode(fields) + + return self.urlopen(method, url, **extra_kw) + + def request_encode_body( + self, + method, + url, + fields=None, + headers=None, + encode_multipart=True, + multipart_boundary=None, + **urlopen_kw + ): + """ + Make a request using :meth:`urlopen` with the ``fields`` encoded in + the body. This is useful for request methods like POST, PUT, PATCH, etc. + + When ``encode_multipart=True`` (default), then + :func:`urllib3.encode_multipart_formdata` is used to encode + the payload with the appropriate content type. Otherwise + :func:`urllib.parse.urlencode` is used with the + 'application/x-www-form-urlencoded' content type. + + Multipart encoding must be used when posting files, and it's reasonably + safe to use it in other times too. However, it may break request + signing, such as with OAuth. + + Supports an optional ``fields`` parameter of key/value strings AND + key/filetuple. A filetuple is a (filename, data, MIME type) tuple where + the MIME type is optional. For example:: + + fields = { + 'foo': 'bar', + 'fakefile': ('foofile.txt', 'contents of foofile'), + 'realfile': ('barfile.txt', open('realfile').read()), + 'typedfile': ('bazfile.bin', open('bazfile').read(), + 'image/jpeg'), + 'nonamefile': 'contents of nonamefile field', + } + + When uploading a file, providing a filename (the first parameter of the + tuple) is optional but recommended to best mimic behavior of browsers. + + Note that if ``headers`` are supplied, the 'Content-Type' header will + be overwritten because it depends on the dynamic random boundary string + which is used to compose the body of the request. The random boundary + string can be explicitly set with the ``multipart_boundary`` parameter. + """ + if headers is None: + headers = self.headers + + extra_kw = {"headers": {}} + + if fields: + if "body" in urlopen_kw: + raise TypeError( + "request got values for both 'fields' and 'body', can only specify one." + ) + + if encode_multipart: + body, content_type = encode_multipart_formdata( + fields, boundary=multipart_boundary + ) + else: + body, content_type = ( + urlencode(fields), + "application/x-www-form-urlencoded", + ) + + extra_kw["body"] = body + extra_kw["headers"] = {"Content-Type": content_type} + + extra_kw["headers"].update(headers) + extra_kw.update(urlopen_kw) + + return self.urlopen(method, url, **extra_kw) + + +if not six.PY2: + + class RequestModule(sys.modules[__name__].__class__): + def __call__(self, *args, **kwargs): + """ + If user tries to call this module directly urllib3 v2.x style raise an error to the user + suggesting they may need urllib3 v2 + """ + raise TypeError( + "'module' object is not callable\n" + "urllib3.request() method is not supported in this release, " + "upgrade to urllib3 v2 to use it\n" + "see https://urllib3.readthedocs.io/en/stable/v2-migration-guide.html" + ) + + sys.modules[__name__].__class__ = RequestModule diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/response.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/response.py new file mode 100644 index 0000000..8909f84 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/response.py @@ -0,0 +1,879 @@ +from __future__ import absolute_import + +import io +import logging +import sys +import warnings +import zlib +from contextlib import contextmanager +from socket import error as SocketError +from socket import timeout as SocketTimeout + +brotli = None + +from . import util +from ._collections import HTTPHeaderDict +from .connection import BaseSSLError, HTTPException +from .exceptions import ( + BodyNotHttplibCompatible, + DecodeError, + HTTPError, + IncompleteRead, + InvalidChunkLength, + InvalidHeader, + ProtocolError, + ReadTimeoutError, + ResponseNotChunked, + SSLError, +) +from .packages import six +from .util.response import is_fp_closed, is_response_to_head + +log = logging.getLogger(__name__) + + +class DeflateDecoder(object): + def __init__(self): + self._first_try = True + self._data = b"" + self._obj = zlib.decompressobj() + + def __getattr__(self, name): + return getattr(self._obj, name) + + def decompress(self, data): + if not data: + return data + + if not self._first_try: + return self._obj.decompress(data) + + self._data += data + try: + decompressed = self._obj.decompress(data) + if decompressed: + self._first_try = False + self._data = None + return decompressed + except zlib.error: + self._first_try = False + self._obj = zlib.decompressobj(-zlib.MAX_WBITS) + try: + return self.decompress(self._data) + finally: + self._data = None + + +class GzipDecoderState(object): + + FIRST_MEMBER = 0 + OTHER_MEMBERS = 1 + SWALLOW_DATA = 2 + + +class GzipDecoder(object): + def __init__(self): + self._obj = zlib.decompressobj(16 + zlib.MAX_WBITS) + self._state = GzipDecoderState.FIRST_MEMBER + + def __getattr__(self, name): + return getattr(self._obj, name) + + def decompress(self, data): + ret = bytearray() + if self._state == GzipDecoderState.SWALLOW_DATA or not data: + return bytes(ret) + while True: + try: + ret += self._obj.decompress(data) + except zlib.error: + previous_state = self._state + # Ignore data after the first error + self._state = GzipDecoderState.SWALLOW_DATA + if previous_state == GzipDecoderState.OTHER_MEMBERS: + # Allow trailing garbage acceptable in other gzip clients + return bytes(ret) + raise + data = self._obj.unused_data + if not data: + return bytes(ret) + self._state = GzipDecoderState.OTHER_MEMBERS + self._obj = zlib.decompressobj(16 + zlib.MAX_WBITS) + + +if brotli is not None: + + class BrotliDecoder(object): + # Supports both 'brotlipy' and 'Brotli' packages + # since they share an import name. The top branches + # are for 'brotlipy' and bottom branches for 'Brotli' + def __init__(self): + self._obj = brotli.Decompressor() + if hasattr(self._obj, "decompress"): + self.decompress = self._obj.decompress + else: + self.decompress = self._obj.process + + def flush(self): + if hasattr(self._obj, "flush"): + return self._obj.flush() + return b"" + + +class MultiDecoder(object): + """ + From RFC7231: + If one or more encodings have been applied to a representation, the + sender that applied the encodings MUST generate a Content-Encoding + header field that lists the content codings in the order in which + they were applied. + """ + + def __init__(self, modes): + self._decoders = [_get_decoder(m.strip()) for m in modes.split(",")] + + def flush(self): + return self._decoders[0].flush() + + def decompress(self, data): + for d in reversed(self._decoders): + data = d.decompress(data) + return data + + +def _get_decoder(mode): + if "," in mode: + return MultiDecoder(mode) + + if mode == "gzip": + return GzipDecoder() + + if brotli is not None and mode == "br": + return BrotliDecoder() + + return DeflateDecoder() + + +class HTTPResponse(io.IOBase): + """ + HTTP Response container. + + Backwards-compatible with :class:`http.client.HTTPResponse` but the response ``body`` is + loaded and decoded on-demand when the ``data`` property is accessed. This + class is also compatible with the Python standard library's :mod:`io` + module, and can hence be treated as a readable object in the context of that + framework. + + Extra parameters for behaviour not present in :class:`http.client.HTTPResponse`: + + :param preload_content: + If True, the response's body will be preloaded during construction. + + :param decode_content: + If True, will attempt to decode the body based on the + 'content-encoding' header. + + :param original_response: + When this HTTPResponse wrapper is generated from an :class:`http.client.HTTPResponse` + object, it's convenient to include the original for debug purposes. It's + otherwise unused. + + :param retries: + The retries contains the last :class:`~urllib3.util.retry.Retry` that + was used during the request. + + :param enforce_content_length: + Enforce content length checking. Body returned by server must match + value of Content-Length header, if present. Otherwise, raise error. + """ + + CONTENT_DECODERS = ["gzip", "deflate"] + if brotli is not None: + CONTENT_DECODERS += ["br"] + REDIRECT_STATUSES = [301, 302, 303, 307, 308] + + def __init__( + self, + body="", + headers=None, + status=0, + version=0, + reason=None, + strict=0, + preload_content=True, + decode_content=True, + original_response=None, + pool=None, + connection=None, + msg=None, + retries=None, + enforce_content_length=False, + request_method=None, + request_url=None, + auto_close=True, + ): + + if isinstance(headers, HTTPHeaderDict): + self.headers = headers + else: + self.headers = HTTPHeaderDict(headers) + self.status = status + self.version = version + self.reason = reason + self.strict = strict + self.decode_content = decode_content + self.retries = retries + self.enforce_content_length = enforce_content_length + self.auto_close = auto_close + + self._decoder = None + self._body = None + self._fp = None + self._original_response = original_response + self._fp_bytes_read = 0 + self.msg = msg + self._request_url = request_url + + if body and isinstance(body, (six.string_types, bytes)): + self._body = body + + self._pool = pool + self._connection = connection + + if hasattr(body, "read"): + self._fp = body + + # Are we using the chunked-style of transfer encoding? + self.chunked = False + self.chunk_left = None + tr_enc = self.headers.get("transfer-encoding", "").lower() + # Don't incur the penalty of creating a list and then discarding it + encodings = (enc.strip() for enc in tr_enc.split(",")) + if "chunked" in encodings: + self.chunked = True + + # Determine length of response + self.length_remaining = self._init_length(request_method) + + # If requested, preload the body. + if preload_content and not self._body: + self._body = self.read(decode_content=decode_content) + + def get_redirect_location(self): + """ + Should we redirect and where to? + + :returns: Truthy redirect location string if we got a redirect status + code and valid location. ``None`` if redirect status and no + location. ``False`` if not a redirect status code. + """ + if self.status in self.REDIRECT_STATUSES: + return self.headers.get("location") + + return False + + def release_conn(self): + if not self._pool or not self._connection: + return + + self._pool._put_conn(self._connection) + self._connection = None + + def drain_conn(self): + """ + Read and discard any remaining HTTP response data in the response connection. + + Unread data in the HTTPResponse connection blocks the connection from being released back to the pool. + """ + try: + self.read() + except (HTTPError, SocketError, BaseSSLError, HTTPException): + pass + + @property + def data(self): + # For backwards-compat with earlier urllib3 0.4 and earlier. + if self._body: + return self._body + + if self._fp: + return self.read(cache_content=True) + + @property + def connection(self): + return self._connection + + def isclosed(self): + return is_fp_closed(self._fp) + + def tell(self): + """ + Obtain the number of bytes pulled over the wire so far. May differ from + the amount of content returned by :meth:``urllib3.response.HTTPResponse.read`` + if bytes are encoded on the wire (e.g, compressed). + """ + return self._fp_bytes_read + + def _init_length(self, request_method): + """ + Set initial length value for Response content if available. + """ + length = self.headers.get("content-length") + + if length is not None: + if self.chunked: + # This Response will fail with an IncompleteRead if it can't be + # received as chunked. This method falls back to attempt reading + # the response before raising an exception. + log.warning( + "Received response with both Content-Length and " + "Transfer-Encoding set. This is expressly forbidden " + "by RFC 7230 sec 3.3.2. Ignoring Content-Length and " + "attempting to process response as Transfer-Encoding: " + "chunked." + ) + return None + + try: + # RFC 7230 section 3.3.2 specifies multiple content lengths can + # be sent in a single Content-Length header + # (e.g. Content-Length: 42, 42). This line ensures the values + # are all valid ints and that as long as the `set` length is 1, + # all values are the same. Otherwise, the header is invalid. + lengths = set([int(val) for val in length.split(",")]) + if len(lengths) > 1: + raise InvalidHeader( + "Content-Length contained multiple " + "unmatching values (%s)" % length + ) + length = lengths.pop() + except ValueError: + length = None + else: + if length < 0: + length = None + + # Convert status to int for comparison + # In some cases, httplib returns a status of "_UNKNOWN" + try: + status = int(self.status) + except ValueError: + status = 0 + + # Check for responses that shouldn't include a body + if status in (204, 304) or 100 <= status < 200 or request_method == "HEAD": + length = 0 + + return length + + def _init_decoder(self): + """ + Set-up the _decoder attribute if necessary. + """ + # Note: content-encoding value should be case-insensitive, per RFC 7230 + # Section 3.2 + content_encoding = self.headers.get("content-encoding", "").lower() + if self._decoder is None: + if content_encoding in self.CONTENT_DECODERS: + self._decoder = _get_decoder(content_encoding) + elif "," in content_encoding: + encodings = [ + e.strip() + for e in content_encoding.split(",") + if e.strip() in self.CONTENT_DECODERS + ] + if len(encodings): + self._decoder = _get_decoder(content_encoding) + + DECODER_ERROR_CLASSES = (IOError, zlib.error) + if brotli is not None: + DECODER_ERROR_CLASSES += (brotli.error,) + + def _decode(self, data, decode_content, flush_decoder): + """ + Decode the data passed in and potentially flush the decoder. + """ + if not decode_content: + return data + + try: + if self._decoder: + data = self._decoder.decompress(data) + except self.DECODER_ERROR_CLASSES as e: + content_encoding = self.headers.get("content-encoding", "").lower() + raise DecodeError( + "Received response with content-encoding: %s, but " + "failed to decode it." % content_encoding, + e, + ) + if flush_decoder: + data += self._flush_decoder() + + return data + + def _flush_decoder(self): + """ + Flushes the decoder. Should only be called if the decoder is actually + being used. + """ + if self._decoder: + buf = self._decoder.decompress(b"") + return buf + self._decoder.flush() + + return b"" + + @contextmanager + def _error_catcher(self): + """ + Catch low-level python exceptions, instead re-raising urllib3 + variants, so that low-level exceptions are not leaked in the + high-level api. + + On exit, release the connection back to the pool. + """ + clean_exit = False + + try: + try: + yield + + except SocketTimeout: + # FIXME: Ideally we'd like to include the url in the ReadTimeoutError but + # there is yet no clean way to get at it from this context. + raise ReadTimeoutError(self._pool, None, "Read timed out.") + + except BaseSSLError as e: + # FIXME: Is there a better way to differentiate between SSLErrors? + if "read operation timed out" not in str(e): + # SSL errors related to framing/MAC get wrapped and reraised here + raise SSLError(e) + + raise ReadTimeoutError(self._pool, None, "Read timed out.") + + except (HTTPException, SocketError) as e: + # This includes IncompleteRead. + raise ProtocolError("Connection broken: %r" % e, e) + + # If no exception is thrown, we should avoid cleaning up + # unnecessarily. + clean_exit = True + finally: + # If we didn't terminate cleanly, we need to throw away our + # connection. + if not clean_exit: + # The response may not be closed but we're not going to use it + # anymore so close it now to ensure that the connection is + # released back to the pool. + if self._original_response: + self._original_response.close() + + # Closing the response may not actually be sufficient to close + # everything, so if we have a hold of the connection close that + # too. + if self._connection: + self._connection.close() + + # If we hold the original response but it's closed now, we should + # return the connection back to the pool. + if self._original_response and self._original_response.isclosed(): + self.release_conn() + + def _fp_read(self, amt): + """ + Read a response with the thought that reading the number of bytes + larger than can fit in a 32-bit int at a time via SSL in some + known cases leads to an overflow error that has to be prevented + if `amt` or `self.length_remaining` indicate that a problem may + happen. + + The known cases: + * 3.8 <= CPython < 3.9.7 because of a bug + https://github.com/urllib3/urllib3/issues/2513#issuecomment-1152559900. + * urllib3 injected with pyOpenSSL-backed SSL-support. + * CPython < 3.10 only when `amt` does not fit 32-bit int. + """ + assert self._fp + c_int_max = 2 ** 31 - 1 + if ( + ( + (amt and amt > c_int_max) + or (self.length_remaining and self.length_remaining > c_int_max) + ) + and not util.IS_SECURETRANSPORT + and (util.IS_PYOPENSSL or sys.version_info < (3, 10)) + ): + buffer = io.BytesIO() + # Besides `max_chunk_amt` being a maximum chunk size, it + # affects memory overhead of reading a response by this + # method in CPython. + # `c_int_max` equal to 2 GiB - 1 byte is the actual maximum + # chunk size that does not lead to an overflow error, but + # 256 MiB is a compromise. + max_chunk_amt = 2 ** 28 + while amt is None or amt != 0: + if amt is not None: + chunk_amt = min(amt, max_chunk_amt) + amt -= chunk_amt + else: + chunk_amt = max_chunk_amt + data = self._fp.read(chunk_amt) + if not data: + break + buffer.write(data) + del data # to reduce peak memory usage by `max_chunk_amt`. + return buffer.getvalue() + else: + # StringIO doesn't like amt=None + return self._fp.read(amt) if amt is not None else self._fp.read() + + def read(self, amt=None, decode_content=None, cache_content=False): + """ + Similar to :meth:`http.client.HTTPResponse.read`, but with two additional + parameters: ``decode_content`` and ``cache_content``. + + :param amt: + How much of the content to read. If specified, caching is skipped + because it doesn't make sense to cache partial content as the full + response. + + :param decode_content: + If True, will attempt to decode the body based on the + 'content-encoding' header. + + :param cache_content: + If True, will save the returned data such that the same result is + returned despite of the state of the underlying file object. This + is useful if you want the ``.data`` property to continue working + after having ``.read()`` the file object. (Overridden if ``amt`` is + set.) + """ + self._init_decoder() + if decode_content is None: + decode_content = self.decode_content + + if self._fp is None: + return + + flush_decoder = False + fp_closed = getattr(self._fp, "closed", False) + + with self._error_catcher(): + data = self._fp_read(amt) if not fp_closed else b"" + if amt is None: + flush_decoder = True + else: + cache_content = False + if ( + amt != 0 and not data + ): # Platform-specific: Buggy versions of Python. + # Close the connection when no data is returned + # + # This is redundant to what httplib/http.client _should_ + # already do. However, versions of python released before + # December 15, 2012 (http://bugs.python.org/issue16298) do + # not properly close the connection in all cases. There is + # no harm in redundantly calling close. + self._fp.close() + flush_decoder = True + if self.enforce_content_length and self.length_remaining not in ( + 0, + None, + ): + # This is an edge case that httplib failed to cover due + # to concerns of backward compatibility. We're + # addressing it here to make sure IncompleteRead is + # raised during streaming, so all calls with incorrect + # Content-Length are caught. + raise IncompleteRead(self._fp_bytes_read, self.length_remaining) + + if data: + self._fp_bytes_read += len(data) + if self.length_remaining is not None: + self.length_remaining -= len(data) + + data = self._decode(data, decode_content, flush_decoder) + + if cache_content: + self._body = data + + return data + + def stream(self, amt=2 ** 16, decode_content=None): + """ + A generator wrapper for the read() method. A call will block until + ``amt`` bytes have been read from the connection or until the + connection is closed. + + :param amt: + How much of the content to read. The generator will return up to + much data per iteration, but may return less. This is particularly + likely when using compressed data. However, the empty string will + never be returned. + + :param decode_content: + If True, will attempt to decode the body based on the + 'content-encoding' header. + """ + if self.chunked and self.supports_chunked_reads(): + for line in self.read_chunked(amt, decode_content=decode_content): + yield line + else: + while not is_fp_closed(self._fp): + data = self.read(amt=amt, decode_content=decode_content) + + if data: + yield data + + @classmethod + def from_httplib(ResponseCls, r, **response_kw): + """ + Given an :class:`http.client.HTTPResponse` instance ``r``, return a + corresponding :class:`urllib3.response.HTTPResponse` object. + + Remaining parameters are passed to the HTTPResponse constructor, along + with ``original_response=r``. + """ + headers = r.msg + + if not isinstance(headers, HTTPHeaderDict): + if six.PY2: + # Python 2.7 + headers = HTTPHeaderDict.from_httplib(headers) + else: + headers = HTTPHeaderDict(headers.items()) + + # HTTPResponse objects in Python 3 don't have a .strict attribute + strict = getattr(r, "strict", 0) + resp = ResponseCls( + body=r, + headers=headers, + status=r.status, + version=r.version, + reason=r.reason, + strict=strict, + original_response=r, + **response_kw + ) + return resp + + # Backwards-compatibility methods for http.client.HTTPResponse + def getheaders(self): + warnings.warn( + "HTTPResponse.getheaders() is deprecated and will be removed " + "in urllib3 v2.1.0. Instead access HTTPResponse.headers directly.", + category=DeprecationWarning, + stacklevel=2, + ) + return self.headers + + def getheader(self, name, default=None): + warnings.warn( + "HTTPResponse.getheader() is deprecated and will be removed " + "in urllib3 v2.1.0. Instead use HTTPResponse.headers.get(name, default).", + category=DeprecationWarning, + stacklevel=2, + ) + return self.headers.get(name, default) + + # Backwards compatibility for http.cookiejar + def info(self): + return self.headers + + # Overrides from io.IOBase + def close(self): + if not self.closed: + self._fp.close() + + if self._connection: + self._connection.close() + + if not self.auto_close: + io.IOBase.close(self) + + @property + def closed(self): + if not self.auto_close: + return io.IOBase.closed.__get__(self) + elif self._fp is None: + return True + elif hasattr(self._fp, "isclosed"): + return self._fp.isclosed() + elif hasattr(self._fp, "closed"): + return self._fp.closed + else: + return True + + def fileno(self): + if self._fp is None: + raise IOError("HTTPResponse has no file to get a fileno from") + elif hasattr(self._fp, "fileno"): + return self._fp.fileno() + else: + raise IOError( + "The file-like object this HTTPResponse is wrapped " + "around has no file descriptor" + ) + + def flush(self): + if ( + self._fp is not None + and hasattr(self._fp, "flush") + and not getattr(self._fp, "closed", False) + ): + return self._fp.flush() + + def readable(self): + # This method is required for `io` module compatibility. + return True + + def readinto(self, b): + # This method is required for `io` module compatibility. + temp = self.read(len(b)) + if len(temp) == 0: + return 0 + else: + b[: len(temp)] = temp + return len(temp) + + def supports_chunked_reads(self): + """ + Checks if the underlying file-like object looks like a + :class:`http.client.HTTPResponse` object. We do this by testing for + the fp attribute. If it is present we assume it returns raw chunks as + processed by read_chunked(). + """ + return hasattr(self._fp, "fp") + + def _update_chunk_length(self): + # First, we'll figure out length of a chunk and then + # we'll try to read it from socket. + if self.chunk_left is not None: + return + line = self._fp.fp.readline() + line = line.split(b";", 1)[0] + try: + self.chunk_left = int(line, 16) + except ValueError: + # Invalid chunked protocol response, abort. + self.close() + raise InvalidChunkLength(self, line) + + def _handle_chunk(self, amt): + returned_chunk = None + if amt is None: + chunk = self._fp._safe_read(self.chunk_left) + returned_chunk = chunk + self._fp._safe_read(2) # Toss the CRLF at the end of the chunk. + self.chunk_left = None + elif amt < self.chunk_left: + value = self._fp._safe_read(amt) + self.chunk_left = self.chunk_left - amt + returned_chunk = value + elif amt == self.chunk_left: + value = self._fp._safe_read(amt) + self._fp._safe_read(2) # Toss the CRLF at the end of the chunk. + self.chunk_left = None + returned_chunk = value + else: # amt > self.chunk_left + returned_chunk = self._fp._safe_read(self.chunk_left) + self._fp._safe_read(2) # Toss the CRLF at the end of the chunk. + self.chunk_left = None + return returned_chunk + + def read_chunked(self, amt=None, decode_content=None): + """ + Similar to :meth:`HTTPResponse.read`, but with an additional + parameter: ``decode_content``. + + :param amt: + How much of the content to read. If specified, caching is skipped + because it doesn't make sense to cache partial content as the full + response. + + :param decode_content: + If True, will attempt to decode the body based on the + 'content-encoding' header. + """ + self._init_decoder() + # FIXME: Rewrite this method and make it a class with a better structured logic. + if not self.chunked: + raise ResponseNotChunked( + "Response is not chunked. " + "Header 'transfer-encoding: chunked' is missing." + ) + if not self.supports_chunked_reads(): + raise BodyNotHttplibCompatible( + "Body should be http.client.HTTPResponse like. " + "It should have have an fp attribute which returns raw chunks." + ) + + with self._error_catcher(): + # Don't bother reading the body of a HEAD request. + if self._original_response and is_response_to_head(self._original_response): + self._original_response.close() + return + + # If a response is already read and closed + # then return immediately. + if self._fp.fp is None: + return + + while True: + self._update_chunk_length() + if self.chunk_left == 0: + break + chunk = self._handle_chunk(amt) + decoded = self._decode( + chunk, decode_content=decode_content, flush_decoder=False + ) + if decoded: + yield decoded + + if decode_content: + # On CPython and PyPy, we should never need to flush the + # decoder. However, on Jython we *might* need to, so + # lets defensively do it anyway. + decoded = self._flush_decoder() + if decoded: # Platform-specific: Jython. + yield decoded + + # Chunk content ends with \r\n: discard it. + while True: + line = self._fp.fp.readline() + if not line: + # Some sites may not end with '\r\n'. + break + if line == b"\r\n": + break + + # We read everything; close the "file". + if self._original_response: + self._original_response.close() + + def geturl(self): + """ + Returns the URL that was the source of this response. + If the request that generated this response redirected, this method + will return the final redirect location. + """ + if self.retries is not None and len(self.retries.history): + return self.retries.history[-1].redirect_location + else: + return self._request_url + + def __iter__(self): + buffer = [] + for chunk in self.stream(decode_content=True): + if b"\n" in chunk: + chunk = chunk.split(b"\n") + yield b"".join(buffer) + chunk[0] + b"\n" + for x in chunk[1:-1]: + yield x + b"\n" + if chunk[-1]: + buffer = [chunk[-1]] + else: + buffer = [] + else: + buffer.append(chunk) + if buffer: + yield b"".join(buffer) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py new file mode 100644 index 0000000..4547fc5 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py @@ -0,0 +1,49 @@ +from __future__ import absolute_import + +# For backwards compatibility, provide imports that used to be here. +from .connection import is_connection_dropped +from .request import SKIP_HEADER, SKIPPABLE_HEADERS, make_headers +from .response import is_fp_closed +from .retry import Retry +from .ssl_ import ( + ALPN_PROTOCOLS, + HAS_SNI, + IS_PYOPENSSL, + IS_SECURETRANSPORT, + PROTOCOL_TLS, + SSLContext, + assert_fingerprint, + resolve_cert_reqs, + resolve_ssl_version, + ssl_wrap_socket, +) +from .timeout import Timeout, current_time +from .url import Url, get_host, parse_url, split_first +from .wait import wait_for_read, wait_for_write + +__all__ = ( + "HAS_SNI", + "IS_PYOPENSSL", + "IS_SECURETRANSPORT", + "SSLContext", + "PROTOCOL_TLS", + "ALPN_PROTOCOLS", + "Retry", + "Timeout", + "Url", + "assert_fingerprint", + "current_time", + "is_connection_dropped", + "is_fp_closed", + "get_host", + "parse_url", + "make_headers", + "resolve_cert_reqs", + "resolve_ssl_version", + "split_first", + "ssl_wrap_socket", + "wait_for_read", + "wait_for_write", + "SKIP_HEADER", + "SKIPPABLE_HEADERS", +) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..11ceaf5f115835e979965ce94f3e43351246abe2 GIT binary patch literal 1174 zcmZ9L&ube;6vt=vYxP@}{3CMgBu-jF)Y1rA$f2|a)e*#0NJ1+gIxGxp?bu#4v%8&{ zwPSipd+49gYp=bv&_hch_tJ|@Zv)1Mo^lI>kZb3y;|My35AVI%nfZR-%>G@gm5~|q zzurIoK8Mi1kX(<<+u+r2CioHg$hR2c7Pc(pXZ$S7@GQ=zagOD99_M)h7r2e>w3cT@ zUc#j`F0eAM;7S_XtjcS+#_PDw8@Rz&@Ct9@CU4;uU&X6@4X^Qayv{f9M*4k`-QaE9 z=9_pk%}eYi-@;pb8*lSl_!hs7Z>RM#yTf4tY8BbF#i z0v<;~y|Aw8>wzS*C=BUL1yM+R5ydg}J6TXl2hTuL`JhYRh^8srvax?qI7kZ2th+dlqqy_ zI=e5JE*?=ujw7jbDfWbEvly9q6Vk~ zRsan^1pseQtOITUnt%;J9#8_b0h@p#paob3+ytxvwgB6J0>CyHcHYxvLJkv^2ug^^ znwl;zZ#+Ff+ooFym1?;zJwz8x|Kcb#tp*7?FW^p7u{sA`yb}LEYpJW$Uut716f|lZ zI%`^ec4yhM-wL60s`_hoLgl6hu}2WE%= E0NwRUQ~&?~ literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8db020a78bfc6bd514b83e8be1d4dc31a4c76ea6 GIT binary patch literal 4775 zcmaJ_T}&L;6~6Pc|I5xUiy@AGxHLHSVggQ_(3IGXh=D*tup4k&6Ov`vnT3Jboz

    4wL^Uwz>MXD<*wN+cGRi&t@5~)>RAfS3PveigQAM!>pk*xHgJ$HU~ zv1Rp&z4y-jIrp4%&;8Ch{G+Zeh@i~=y>?5>dAP=yjI_<`ZE48KlFW)Ukzk}W5G;lECkneX6j^8N^<(t~HX(dTKN5^7h?Bae<_$Ti zWO5oYhQDO(iTb3N%gNa(B`YW8>}7>$Sy)~_q@_ed(XtmrqRV}RXaq(%UAgilC7)o; zgTvYn#KI_4iqWr;5iK<<8`eUzZVtwhX^kX_EJ`VdAIb>wz>n(fej2J<$f(X0L3k?h=|~ z5?-+tjtOEYZ^}lVWOY1B@-kM^*qD}aO3P;D6qOY#I+lnA>X5LQm9RdosX2>u3k|fTKA@Rk5hfi3J@Ki+?;Z(J!jHJTZX{&Ei0n z4NDf66rKkD)rVvwa;gA)Wv8$~#H@)ddfd{*uy%4K4Iyd~C5AKFq zcM;<`@Tt(S!$JFvPDQ^JZbk10PI13xPI0NKEy9EkewMv|0?N6CifA0#5?}HZ`I)Ni z!y2bZ%(^p5Vz8oW@$NhVTya;Fc!?`{4f>+2vhK7cUjV^gdh#Ph;@!OrGN>}FGE?vN zYHg7(dWt?H>W<7bxV>7t?#S7T-kt}U{6+sb@KOqtf~8O?T&e@^BJgT!=TxcHXcPm* zU@=sE^%0}VohwF)ocqEVc=7vqdBR;&Yx4}~D>8GaHsbb*RgD4_)>?JMovXFQs#alD zWTv?`DV71;;Zf1Mz!tsNnSD}XcSo(2yzbuX3}BVtodK*m1~)-X(ke65 zlpZOD;0{P&GxJ`ATv}39KPmPSaO2_~oKV&D40dakM z16HPFoX%%05bnVEvE)vO__=3{d=5};V&cTKrW@@+3cS>rB_<{k|NlIUF91AS=m)%L zISTipY7uC20Im&NxGozqu`yS7K-HPY;2`!1qGWYL1ja2IlQO`li~$_w4A7<^tGSK^ z1R6}^EU2b>5TLrA&*i{NNEGC48dIt^DXLhK(_&r)IJaRJ0~Z!STb1CMCJVTmDyw_K zR%r*Iva`wAGhy)rhvcc#vW{=lwLD45$?EM;7C=75z?r;mP#-5^Tf15s+v>GdYtf=k zVxR0F+@t~yQq*CWO&L3sfs&<)j5zCRyN1NJm+8r3dVLrUI({5e2MAY)Phmq=Royz~ z{0P+_aBqD%!Z|LAd2611>+NBaSEQ^sf8_Wv{dhYD?;)$0>b^h;8k&YxEju;eLOm83 zq>@c*j`IYTv(8FY(TzmC8H9@@hCZhl)22r^h>|nwMOD@2WGOi%D#^5%QPhIz1vAwo z*$iLIDzsz8I)uWk86={j%gHp+G6Y^IGQIZIn4x{=o1u~O=Uz{ajK0~|^M)Bug8Gy8 zvZQT~y4jR`b?E#nJwwUfzW$zzL!-&j!8iKOUmOJ%sTEj$*yO3|O`oGx(<9U1%=B0x zN+N3doQoiJl#$58_fEg*GpwG-)0;4PdIKg0luWN9EeDU-WW}`Ur#p;7PBuL`q8XYQ zNQqf+`C>*kSzWX|zsblt#T@z`_ZLD3%~%S;KnOf*c0f+U_%ZnDW8m(}Xr~p`A6$5? z+`HHcuJ^rb3)fckZQmjAz{~SX^Q)~}Lh~YD2}a82_JSyax9VET{X4wJ6Rh~d%b}&v zO8>V1&|Vlt8}A4$n?lQ4>uvsa`uFKOT?3n41OF5T7rDwar#AgD z`5iVEID9vL@YdOzXV>c2et0{-6@Ou|ch8IJ@EX6C-44I-nb7#N^qr$;HsMb=Q;9a* z5^f4>zU}CVPlY4&GjKDo+OZu?RKn5ap{1eK`t9)HO1$YuukRc|(bt%rcH|G0uT>(k z#lRQA=yLl~`$kjuR`8__{-p^;SO)XC8LbiD6r&&S@zz825NEgtBnXaMIH>fLGl zalZ>Hh+JqC4mEgt@aQF$g;-|BUAwO>vOh))x)JA50n(0P2q3BLQX2vzPjI%m_*{eM zprg}Mz-laGAxGiEswC*>--4=)D!vG4&>#6+XoQROH!bqZ!jiBW|HOafD-K1Q?!zjS zqLo`{5M?p{CUhXpaL3Wiei5C~(!TV8ME9+wPx+Bj0&jFX z02-icP9w8evHb;@y&+$raA!g3K1688bJH@o4g1NRwV!53Pk-{_@W_R}bCf6rUDqQ( zNN-WF5`vse0B18;#J$5K0OcY{O(0Ijy(<(r0_ zR(e_u?A-M9MsqcU^2|T~xU^I+=nza`09(h`W}RELQJCC!n$3D0vxr4?RsYkaX#g zS736EE}&HzeHIcReG(eV0|3JQC-3+=Hhmr2zEd#tg|F_tYuB&sggt?ngS78A{-XKk z&0Fzj7kepa4lWI@7^~k~QMSVv&}(tvD?jpwDY6Hbf;YmIP`rHp!CnYO4?^Mm~?&vV_~&nDt#Fqur}A=#IcNkWmpv3&X%i85)c zEGWC;>$cnWyNRal)_MAW3@gvIGhTWip}B$OzigX3x4ao{{i2Stw{g? literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f59743090aa5142bd6a9d968a1b3f1b28bfb0bd7 GIT binary patch literal 1580 zcmZ8hO-v+36t0?{9vT>y*%`#iifb#n%Op5t{X3x9J+MC-HUnX2J&;K{HPZz&^mLC^ z)ySAOL1UsvZ|rf88a(JtW3qSSrH9>wr9&c#r@djoyRWKyfLKXay{h;3z3T7PpCcnf z2*$=AZ?4_RA@sN0^hYKYPNqTFK{m3ni`sY@w=>I`wzjNcG>B~7*1o~ZStVsb(z}^T z?ga*yiWZNz7$t&Q0drla`L5OSJwdlbe3?=1yPMQ%Q6?-#KjU$!f5f?KZBoV^->bE> zJ{VXf9=ShRf@ueZXd8ENn6Wb(QwT9Bqjk{yf7qJRkA|3ygm}GQ)de%@+s#&VatmM& znJ|{92$;vsIt!@jte9erntU~}%SEF?TQ z4H!`fSD4>6JHGF>iAPo`t9H5$NkQ)|U%pA%*~-l`NWWduAKJiC=RpNL60 zaq&Xl6eX7&fcyD(3)Z>W#zPKdX%Lrg(Z+&DZ!>3;HloMT&(SZ@lis({uhDO2@2lR| z(Ua)+#yc))605@q{KyT`Xm_c%*|_gC8{84}?G9;ez-{qH$LY)f2|e3qGbwjx0^ztb z3LIQ!{2BmE=^**5=%C86L;wnxjRLwXeEcR%+vs=#8JDAh^7GNL;~X-sJo$~~j}=-!?&d5|wZ&zJY}H}>*3j+AY_Z~_rfOP6yxpjDGr_zr{}BxJj(ANCidYIv6sPU^|mQRR*exy*hGkqIY2=(>BzUF-0O+}1C{Q>m* z7Y)UMd(@-AL)jm|vK11zBB8Dcy)B6<-vHTGz6UfS+`BH!CZ(P<+H`Dco6W9lAr%Z* z!>URGE)8FJ9OA+A$D`=_#J190>QUhpoyogkvUnzcL_7egh!Bj8!LE{HMX4!CjnN{B zQ#_nXmhG@Of3_ilB)L=YT>b#yAPja%MkuEbT|!=oGPPt^K>Zec{4Pw}==2gQRSw6l z|1kV??7hR{*WE4y|#b+VA8q~1eftV3-`O9Lk4l0q-RZ3#V82!y;Er&?>Z^32M3 z7n3-_keE=MoVLeajW6x3rI35bMN24Y)fNh&hungK4(OZrH&5SuGt$$k zsS4m&eRARJ0|xMdoO0-6V-%q=03Uo7f(^dnt08MEw!+BPLba{g8UwDh@?PcgVisDy z&afvG_!NA78+?Ont;yq6ns`ah(n|%=Vwoy~jXjp>YY9(yv#2YO3TTYx z5C*`(W^^p-t079PG~ z)pOcC9<4jqgJnksUH(DrHCMfxTsm9}cwV0!)@Ps9=k9CYR7Mzu=HZ6XA;EIdX3-d+hMQ~?T4=vH z_Q!JG06|wp&<(Q`F@;m6hCCW8B5D*c+%*~WdH>`QYI%gR@+86*{8pQO_|ahT(c**K zsrkNm7lUtSwuqSlyq#5xxW6$rS;>__uV9Nr=>Rjsi(^!@H%_|!caG3T zpR|;x5w_r0b8@$`Q+aNl9hzsqz3_`UQxHGAYgk3{9=V7ApLlsE#}b#M)wmN|ELU36 zdm4qtntPKUr;2_Z^YRn|QmviZ?eFw=Z|&TAR+~x3OqVP(GhH|G+T3-sitDyJeiD*B z>AGu)7Zw>oXC$bRppA<&1n(j2LB8Rff-oscP{l`5dK(TDrdzKJICp*oOrJS0nBEu> z6zizkIw5F5W|ntdXyi_p?mYf6=G&chE{juBKmY1drsp4gcG^v%L~_66okt5IGuY%m za+!Ih*xFTb5fdbwr2ot-l`-}^O#cn%{)E}TRO8;|yO&>RbN?7s)_AB7s*kF#0nNPA Ezmv@)ssI20 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a237ee8e713fbf4611ef95747673d06b467d8b0 GIT binary patch literal 4211 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 B7=Zu) literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b46f24ac8208ebbedfbc06d379d0a2c0e95d9c28 GIT binary patch literal 21750 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

    9O4&?R@EIYG}!8`t*`@MbZz0c%&pP_>8 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ömvLb#?L`CkaWv$i%{S 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef49fdb609ada7425029329e1d14fac1c52d1359 GIT binary patch literal 5079 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 Tm0k1x#D1P*1D`OMQ-b~%`fy04 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b2a5985cfd9a0e10762dad47082ddeeb391e87e GIT binary patch literal 11167 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..07f1c78278cf5a9cae69a203095dac5a9e968a10 GIT binary patch literal 15813 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 literal 0 HcmV?d00001 diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py new file mode 100644 index 0000000..6af1138 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py @@ -0,0 +1,149 @@ +from __future__ import absolute_import + +import socket + +from ..contrib import _appengine_environ +from ..exceptions import LocationParseError +from ..packages import six +from .wait import NoWayToWaitForSocketError, wait_for_read + + +def is_connection_dropped(conn): # Platform-specific + """ + Returns True if the connection is dropped and should be closed. + + :param conn: + :class:`http.client.HTTPConnection` object. + + Note: For platforms like AppEngine, this will always return ``False`` to + let the platform handle connection recycling transparently for us. + """ + sock = getattr(conn, "sock", False) + if sock is False: # Platform-specific: AppEngine + return False + if sock is None: # Connection already closed (such as by httplib). + return True + try: + # Returns True if readable, which here means it's been dropped + return wait_for_read(sock, timeout=0.0) + except NoWayToWaitForSocketError: # Platform-specific: AppEngine + return False + + +# This function is copied from socket.py in the Python 2.7 standard +# library test suite. Added to its signature is only `socket_options`. +# One additional modification is that we avoid binding to IPv6 servers +# discovered in DNS if the system doesn't have IPv6 functionality. +def create_connection( + address, + timeout=socket._GLOBAL_DEFAULT_TIMEOUT, + source_address=None, + socket_options=None, +): + """Connect to *address* and return the socket object. + + Convenience function. Connect to *address* (a 2-tuple ``(host, + port)``) and return the socket object. Passing the optional + *timeout* parameter will set the timeout on the socket instance + before attempting to connect. If no *timeout* is supplied, the + global default timeout setting returned by :func:`socket.getdefaulttimeout` + is used. If *source_address* is set it must be a tuple of (host, port) + for the socket to bind as a source address before making the connection. + An host of '' or port 0 tells the OS to use the default. + """ + + host, port = address + if host.startswith("["): + host = host.strip("[]") + err = None + + # Using the value from allowed_gai_family() in the context of getaddrinfo lets + # us select whether to work with IPv4 DNS records, IPv6 records, or both. + # The original create_connection function always returns all records. + family = allowed_gai_family() + + try: + host.encode("idna") + except UnicodeError: + return six.raise_from( + LocationParseError(u"'%s', label empty or too long" % host), None + ) + + for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM): + af, socktype, proto, canonname, sa = res + sock = None + try: + sock = socket.socket(af, socktype, proto) + + # If provided, set socket level options before connecting. + _set_socket_options(sock, socket_options) + + if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT: + sock.settimeout(timeout) + if source_address: + sock.bind(source_address) + sock.connect(sa) + return sock + + except socket.error as e: + err = e + if sock is not None: + sock.close() + sock = None + + if err is not None: + raise err + + raise socket.error("getaddrinfo returns an empty list") + + +def _set_socket_options(sock, options): + if options is None: + return + + for opt in options: + sock.setsockopt(*opt) + + +def allowed_gai_family(): + """This function is designed to work in the context of + getaddrinfo, where family=socket.AF_UNSPEC is the default and + will perform a DNS search for both IPv6 and IPv4 records.""" + + family = socket.AF_INET + if HAS_IPV6: + family = socket.AF_UNSPEC + return family + + +def _has_ipv6(host): + """Returns True if the system can bind an IPv6 address.""" + sock = None + has_ipv6 = False + + # App Engine doesn't support IPV6 sockets and actually has a quota on the + # number of sockets that can be used, so just early out here instead of + # creating a socket needlessly. + # See https://github.com/urllib3/urllib3/issues/1446 + if _appengine_environ.is_appengine_sandbox(): + return False + + if socket.has_ipv6: + # has_ipv6 returns true if cPython was compiled with IPv6 support. + # It does not tell us if the system has IPv6 support enabled. To + # determine that we must bind to an IPv6 address. + # https://github.com/urllib3/urllib3/pull/611 + # https://bugs.python.org/issue658327 + try: + sock = socket.socket(socket.AF_INET6) + sock.bind((host, 0)) + has_ipv6 = True + except Exception: + pass + + if sock: + sock.close() + return has_ipv6 + + +HAS_IPV6 = _has_ipv6("::1") diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py new file mode 100644 index 0000000..2199cc7 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py @@ -0,0 +1,57 @@ +from .ssl_ import create_urllib3_context, resolve_cert_reqs, resolve_ssl_version + + +def connection_requires_http_tunnel( + proxy_url=None, proxy_config=None, destination_scheme=None +): + """ + Returns True if the connection requires an HTTP CONNECT through the proxy. + + :param URL proxy_url: + URL of the proxy. + :param ProxyConfig proxy_config: + Proxy configuration from poolmanager.py + :param str destination_scheme: + The scheme of the destination. (i.e https, http, etc) + """ + # If we're not using a proxy, no way to use a tunnel. + if proxy_url is None: + return False + + # HTTP destinations never require tunneling, we always forward. + if destination_scheme == "http": + return False + + # Support for forwarding with HTTPS proxies and HTTPS destinations. + if ( + proxy_url.scheme == "https" + and proxy_config + and proxy_config.use_forwarding_for_https + ): + return False + + # Otherwise always use a tunnel. + return True + + +def create_proxy_ssl_context( + ssl_version, cert_reqs, ca_certs=None, ca_cert_dir=None, ca_cert_data=None +): + """ + Generates a default proxy ssl context if one hasn't been provided by the + user. + """ + ssl_context = create_urllib3_context( + ssl_version=resolve_ssl_version(ssl_version), + cert_reqs=resolve_cert_reqs(cert_reqs), + ) + + if ( + not ca_certs + and not ca_cert_dir + and not ca_cert_data + and hasattr(ssl_context, "load_default_certs") + ): + ssl_context.load_default_certs() + + return ssl_context diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py new file mode 100644 index 0000000..4178410 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py @@ -0,0 +1,22 @@ +import collections + +from ..packages import six +from ..packages.six.moves import queue + +if six.PY2: + # Queue is imported for side effects on MS Windows. See issue #229. + import Queue as _unused_module_Queue # noqa: F401 + + +class LifoQueue(queue.Queue): + def _init(self, _): + self.queue = collections.deque() + + def _qsize(self, len=len): + return len(self.queue) + + def _put(self, item): + self.queue.append(item) + + def _get(self): + return self.queue.pop() diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/request.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/request.py new file mode 100644 index 0000000..330766e --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/request.py @@ -0,0 +1,137 @@ +from __future__ import absolute_import + +from base64 import b64encode + +from ..exceptions import UnrewindableBodyError +from ..packages.six import b, integer_types + +# Pass as a value within ``headers`` to skip +# emitting some HTTP headers that are added automatically. +# The only headers that are supported are ``Accept-Encoding``, +# ``Host``, and ``User-Agent``. +SKIP_HEADER = "@@@SKIP_HEADER@@@" +SKIPPABLE_HEADERS = frozenset(["accept-encoding", "host", "user-agent"]) + +ACCEPT_ENCODING = "gzip,deflate" + +_FAILEDTELL = object() + + +def make_headers( + keep_alive=None, + accept_encoding=None, + user_agent=None, + basic_auth=None, + proxy_basic_auth=None, + disable_cache=None, +): + """ + Shortcuts for generating request headers. + + :param keep_alive: + If ``True``, adds 'connection: keep-alive' header. + + :param accept_encoding: + Can be a boolean, list, or string. + ``True`` translates to 'gzip,deflate'. + List will get joined by comma. + String will be used as provided. + + :param user_agent: + String representing the user-agent you want, such as + "python-urllib3/0.6" + + :param basic_auth: + Colon-separated username:password string for 'authorization: basic ...' + auth header. + + :param proxy_basic_auth: + Colon-separated username:password string for 'proxy-authorization: basic ...' + auth header. + + :param disable_cache: + If ``True``, adds 'cache-control: no-cache' header. + + Example:: + + >>> make_headers(keep_alive=True, user_agent="Batman/1.0") + {'connection': 'keep-alive', 'user-agent': 'Batman/1.0'} + >>> make_headers(accept_encoding=True) + {'accept-encoding': 'gzip,deflate'} + """ + headers = {} + if accept_encoding: + if isinstance(accept_encoding, str): + pass + elif isinstance(accept_encoding, list): + accept_encoding = ",".join(accept_encoding) + else: + accept_encoding = ACCEPT_ENCODING + headers["accept-encoding"] = accept_encoding + + if user_agent: + headers["user-agent"] = user_agent + + if keep_alive: + headers["connection"] = "keep-alive" + + if basic_auth: + headers["authorization"] = "Basic " + b64encode(b(basic_auth)).decode("utf-8") + + if proxy_basic_auth: + headers["proxy-authorization"] = "Basic " + b64encode( + b(proxy_basic_auth) + ).decode("utf-8") + + if disable_cache: + headers["cache-control"] = "no-cache" + + return headers + + +def set_file_position(body, pos): + """ + If a position is provided, move file to that point. + Otherwise, we'll attempt to record a position for future use. + """ + if pos is not None: + rewind_body(body, pos) + elif getattr(body, "tell", None) is not None: + try: + pos = body.tell() + except (IOError, OSError): + # This differentiates from None, allowing us to catch + # a failed `tell()` later when trying to rewind the body. + pos = _FAILEDTELL + + return pos + + +def rewind_body(body, body_pos): + """ + Attempt to rewind body to a certain position. + Primarily used for request redirects and retries. + + :param body: + File-like object that supports seek. + + :param int pos: + Position to seek to in file. + """ + body_seek = getattr(body, "seek", None) + if body_seek is not None and isinstance(body_pos, integer_types): + try: + body_seek(body_pos) + except (IOError, OSError): + raise UnrewindableBodyError( + "An error occurred when rewinding request body for redirect/retry." + ) + elif body_pos is _FAILEDTELL: + raise UnrewindableBodyError( + "Unable to record file position for rewinding " + "request body during a redirect/retry." + ) + else: + raise ValueError( + "body_pos must be of type integer, instead it was %s." % type(body_pos) + ) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/response.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/response.py new file mode 100644 index 0000000..5ea609c --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/response.py @@ -0,0 +1,107 @@ +from __future__ import absolute_import + +from email.errors import MultipartInvariantViolationDefect, StartBoundaryNotFoundDefect + +from ..exceptions import HeaderParsingError +from ..packages.six.moves import http_client as httplib + + +def is_fp_closed(obj): + """ + Checks whether a given file-like object is closed. + + :param obj: + The file-like object to check. + """ + + try: + # Check `isclosed()` first, in case Python3 doesn't set `closed`. + # GH Issue #928 + return obj.isclosed() + except AttributeError: + pass + + try: + # Check via the official file-like-object way. + return obj.closed + except AttributeError: + pass + + try: + # Check if the object is a container for another file-like object that + # gets released on exhaustion (e.g. HTTPResponse). + return obj.fp is None + except AttributeError: + pass + + raise ValueError("Unable to determine whether fp is closed.") + + +def assert_header_parsing(headers): + """ + Asserts whether all headers have been successfully parsed. + Extracts encountered errors from the result of parsing headers. + + Only works on Python 3. + + :param http.client.HTTPMessage headers: Headers to verify. + + :raises urllib3.exceptions.HeaderParsingError: + If parsing errors are found. + """ + + # This will fail silently if we pass in the wrong kind of parameter. + # To make debugging easier add an explicit check. + if not isinstance(headers, httplib.HTTPMessage): + raise TypeError("expected httplib.Message, got {0}.".format(type(headers))) + + defects = getattr(headers, "defects", None) + get_payload = getattr(headers, "get_payload", None) + + unparsed_data = None + if get_payload: + # get_payload is actually email.message.Message.get_payload; + # we're only interested in the result if it's not a multipart message + if not headers.is_multipart(): + payload = get_payload() + + if isinstance(payload, (bytes, str)): + unparsed_data = payload + if defects: + # httplib is assuming a response body is available + # when parsing headers even when httplib only sends + # header data to parse_headers() This results in + # defects on multipart responses in particular. + # See: https://github.com/urllib3/urllib3/issues/800 + + # So we ignore the following defects: + # - StartBoundaryNotFoundDefect: + # The claimed start boundary was never found. + # - MultipartInvariantViolationDefect: + # A message claimed to be a multipart but no subparts were found. + defects = [ + defect + for defect in defects + if not isinstance( + defect, (StartBoundaryNotFoundDefect, MultipartInvariantViolationDefect) + ) + ] + + if defects or unparsed_data: + raise HeaderParsingError(defects=defects, unparsed_data=unparsed_data) + + +def is_response_to_head(response): + """ + Checks whether the request of a response has been a HEAD-request. + Handles the quirks of AppEngine. + + :param http.client.HTTPResponse response: + Response to check if the originating request + used 'HEAD' as a method. + """ + # FIXME: Can we do this somehow without accessing private httplib _method? + method = response._method + if isinstance(method, int): # Platform-specific: Appengine + return method == 3 + return method.upper() == "HEAD" diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py new file mode 100644 index 0000000..9a1e90d --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py @@ -0,0 +1,622 @@ +from __future__ import absolute_import + +import email +import logging +import re +import time +import warnings +from collections import namedtuple +from itertools import takewhile + +from ..exceptions import ( + ConnectTimeoutError, + InvalidHeader, + MaxRetryError, + ProtocolError, + ProxyError, + ReadTimeoutError, + ResponseError, +) +from ..packages import six + +log = logging.getLogger(__name__) + + +# Data structure for representing the metadata of requests that result in a retry. +RequestHistory = namedtuple( + "RequestHistory", ["method", "url", "error", "status", "redirect_location"] +) + + +# TODO: In v2 we can remove this sentinel and metaclass with deprecated options. +_Default = object() + + +class _RetryMeta(type): + @property + def DEFAULT_METHOD_WHITELIST(cls): + warnings.warn( + "Using 'Retry.DEFAULT_METHOD_WHITELIST' is deprecated and " + "will be removed in v2.0. Use 'Retry.DEFAULT_ALLOWED_METHODS' instead", + DeprecationWarning, + ) + return cls.DEFAULT_ALLOWED_METHODS + + @DEFAULT_METHOD_WHITELIST.setter + def DEFAULT_METHOD_WHITELIST(cls, value): + warnings.warn( + "Using 'Retry.DEFAULT_METHOD_WHITELIST' is deprecated and " + "will be removed in v2.0. Use 'Retry.DEFAULT_ALLOWED_METHODS' instead", + DeprecationWarning, + ) + cls.DEFAULT_ALLOWED_METHODS = value + + @property + def DEFAULT_REDIRECT_HEADERS_BLACKLIST(cls): + warnings.warn( + "Using 'Retry.DEFAULT_REDIRECT_HEADERS_BLACKLIST' is deprecated and " + "will be removed in v2.0. Use 'Retry.DEFAULT_REMOVE_HEADERS_ON_REDIRECT' instead", + DeprecationWarning, + ) + return cls.DEFAULT_REMOVE_HEADERS_ON_REDIRECT + + @DEFAULT_REDIRECT_HEADERS_BLACKLIST.setter + def DEFAULT_REDIRECT_HEADERS_BLACKLIST(cls, value): + warnings.warn( + "Using 'Retry.DEFAULT_REDIRECT_HEADERS_BLACKLIST' is deprecated and " + "will be removed in v2.0. Use 'Retry.DEFAULT_REMOVE_HEADERS_ON_REDIRECT' instead", + DeprecationWarning, + ) + cls.DEFAULT_REMOVE_HEADERS_ON_REDIRECT = value + + @property + def BACKOFF_MAX(cls): + warnings.warn( + "Using 'Retry.BACKOFF_MAX' is deprecated and " + "will be removed in v2.0. Use 'Retry.DEFAULT_BACKOFF_MAX' instead", + DeprecationWarning, + ) + return cls.DEFAULT_BACKOFF_MAX + + @BACKOFF_MAX.setter + def BACKOFF_MAX(cls, value): + warnings.warn( + "Using 'Retry.BACKOFF_MAX' is deprecated and " + "will be removed in v2.0. Use 'Retry.DEFAULT_BACKOFF_MAX' instead", + DeprecationWarning, + ) + cls.DEFAULT_BACKOFF_MAX = value + + +@six.add_metaclass(_RetryMeta) +class Retry(object): + """Retry configuration. + + Each retry attempt will create a new Retry object with updated values, so + they can be safely reused. + + Retries can be defined as a default for a pool:: + + retries = Retry(connect=5, read=2, redirect=5) + http = PoolManager(retries=retries) + response = http.request('GET', 'http://example.com/') + + Or per-request (which overrides the default for the pool):: + + response = http.request('GET', 'http://example.com/', retries=Retry(10)) + + Retries can be disabled by passing ``False``:: + + response = http.request('GET', 'http://example.com/', retries=False) + + Errors will be wrapped in :class:`~urllib3.exceptions.MaxRetryError` unless + retries are disabled, in which case the causing exception will be raised. + + :param int total: + Total number of retries to allow. Takes precedence over other counts. + + Set to ``None`` to remove this constraint and fall back on other + counts. + + Set to ``0`` to fail on the first retry. + + Set to ``False`` to disable and imply ``raise_on_redirect=False``. + + :param int connect: + How many connection-related errors to retry on. + + These are errors raised before the request is sent to the remote server, + which we assume has not triggered the server to process the request. + + Set to ``0`` to fail on the first retry of this type. + + :param int read: + How many times to retry on read errors. + + These errors are raised after the request was sent to the server, so the + request may have side-effects. + + Set to ``0`` to fail on the first retry of this type. + + :param int redirect: + How many redirects to perform. Limit this to avoid infinite redirect + loops. + + A redirect is a HTTP response with a status code 301, 302, 303, 307 or + 308. + + Set to ``0`` to fail on the first retry of this type. + + Set to ``False`` to disable and imply ``raise_on_redirect=False``. + + :param int status: + How many times to retry on bad status codes. + + These are retries made on responses, where status code matches + ``status_forcelist``. + + Set to ``0`` to fail on the first retry of this type. + + :param int other: + How many times to retry on other errors. + + Other errors are errors that are not connect, read, redirect or status errors. + These errors might be raised after the request was sent to the server, so the + request might have side-effects. + + Set to ``0`` to fail on the first retry of this type. + + If ``total`` is not set, it's a good idea to set this to 0 to account + for unexpected edge cases and avoid infinite retry loops. + + :param iterable allowed_methods: + Set of uppercased HTTP method verbs that we should retry on. + + By default, we only retry on methods which are considered to be + idempotent (multiple requests with the same parameters end with the + same state). See :attr:`Retry.DEFAULT_ALLOWED_METHODS`. + + Set to a ``False`` value to retry on any verb. + + .. warning:: + + Previously this parameter was named ``method_whitelist``, that + usage is deprecated in v1.26.0 and will be removed in v2.0. + + :param iterable status_forcelist: + A set of integer HTTP status codes that we should force a retry on. + A retry is initiated if the request method is in ``allowed_methods`` + and the response status code is in ``status_forcelist``. + + By default, this is disabled with ``None``. + + :param float backoff_factor: + A backoff factor to apply between attempts after the second try + (most errors are resolved immediately by a second try without a + delay). urllib3 will sleep for:: + + {backoff factor} * (2 ** ({number of total retries} - 1)) + + seconds. If the backoff_factor is 0.1, then :func:`.sleep` will sleep + for [0.0s, 0.2s, 0.4s, ...] between retries. It will never be longer + than :attr:`Retry.DEFAULT_BACKOFF_MAX`. + + By default, backoff is disabled (set to 0). + + :param bool raise_on_redirect: Whether, if the number of redirects is + exhausted, to raise a MaxRetryError, or to return a response with a + response code in the 3xx range. + + :param bool raise_on_status: Similar meaning to ``raise_on_redirect``: + whether we should raise an exception, or return a response, + if status falls in ``status_forcelist`` range and retries have + been exhausted. + + :param tuple history: The history of the request encountered during + each call to :meth:`~Retry.increment`. The list is in the order + the requests occurred. Each list item is of class :class:`RequestHistory`. + + :param bool respect_retry_after_header: + Whether to respect Retry-After header on status codes defined as + :attr:`Retry.RETRY_AFTER_STATUS_CODES` or not. + + :param iterable remove_headers_on_redirect: + Sequence of headers to remove from the request when a response + indicating a redirect is returned before firing off the redirected + request. + """ + + #: Default methods to be used for ``allowed_methods`` + DEFAULT_ALLOWED_METHODS = frozenset( + ["HEAD", "GET", "PUT", "DELETE", "OPTIONS", "TRACE"] + ) + + #: Default status codes to be used for ``status_forcelist`` + RETRY_AFTER_STATUS_CODES = frozenset([413, 429, 503]) + + #: Default headers to be used for ``remove_headers_on_redirect`` + DEFAULT_REMOVE_HEADERS_ON_REDIRECT = frozenset( + ["Cookie", "Authorization", "Proxy-Authorization"] + ) + + #: Maximum backoff time. + DEFAULT_BACKOFF_MAX = 120 + + def __init__( + self, + total=10, + connect=None, + read=None, + redirect=None, + status=None, + other=None, + allowed_methods=_Default, + status_forcelist=None, + backoff_factor=0, + raise_on_redirect=True, + raise_on_status=True, + history=None, + respect_retry_after_header=True, + remove_headers_on_redirect=_Default, + # TODO: Deprecated, remove in v2.0 + method_whitelist=_Default, + ): + + if method_whitelist is not _Default: + if allowed_methods is not _Default: + raise ValueError( + "Using both 'allowed_methods' and " + "'method_whitelist' together is not allowed. " + "Instead only use 'allowed_methods'" + ) + warnings.warn( + "Using 'method_whitelist' with Retry is deprecated and " + "will be removed in v2.0. Use 'allowed_methods' instead", + DeprecationWarning, + stacklevel=2, + ) + allowed_methods = method_whitelist + if allowed_methods is _Default: + allowed_methods = self.DEFAULT_ALLOWED_METHODS + if remove_headers_on_redirect is _Default: + remove_headers_on_redirect = self.DEFAULT_REMOVE_HEADERS_ON_REDIRECT + + self.total = total + self.connect = connect + self.read = read + self.status = status + self.other = other + + if redirect is False or total is False: + redirect = 0 + raise_on_redirect = False + + self.redirect = redirect + self.status_forcelist = status_forcelist or set() + self.allowed_methods = allowed_methods + self.backoff_factor = backoff_factor + self.raise_on_redirect = raise_on_redirect + self.raise_on_status = raise_on_status + self.history = history or tuple() + self.respect_retry_after_header = respect_retry_after_header + self.remove_headers_on_redirect = frozenset( + [h.lower() for h in remove_headers_on_redirect] + ) + + def new(self, **kw): + params = dict( + total=self.total, + connect=self.connect, + read=self.read, + redirect=self.redirect, + status=self.status, + other=self.other, + status_forcelist=self.status_forcelist, + backoff_factor=self.backoff_factor, + raise_on_redirect=self.raise_on_redirect, + raise_on_status=self.raise_on_status, + history=self.history, + remove_headers_on_redirect=self.remove_headers_on_redirect, + respect_retry_after_header=self.respect_retry_after_header, + ) + + # TODO: If already given in **kw we use what's given to us + # If not given we need to figure out what to pass. We decide + # based on whether our class has the 'method_whitelist' property + # and if so we pass the deprecated 'method_whitelist' otherwise + # we use 'allowed_methods'. Remove in v2.0 + if "method_whitelist" not in kw and "allowed_methods" not in kw: + if "method_whitelist" in self.__dict__: + warnings.warn( + "Using 'method_whitelist' with Retry is deprecated and " + "will be removed in v2.0. Use 'allowed_methods' instead", + DeprecationWarning, + ) + params["method_whitelist"] = self.allowed_methods + else: + params["allowed_methods"] = self.allowed_methods + + params.update(kw) + return type(self)(**params) + + @classmethod + def from_int(cls, retries, redirect=True, default=None): + """Backwards-compatibility for the old retries format.""" + if retries is None: + retries = default if default is not None else cls.DEFAULT + + if isinstance(retries, Retry): + return retries + + redirect = bool(redirect) and None + new_retries = cls(retries, redirect=redirect) + log.debug("Converted retries value: %r -> %r", retries, new_retries) + return new_retries + + def get_backoff_time(self): + """Formula for computing the current backoff + + :rtype: float + """ + # We want to consider only the last consecutive errors sequence (Ignore redirects). + consecutive_errors_len = len( + list( + takewhile(lambda x: x.redirect_location is None, reversed(self.history)) + ) + ) + if consecutive_errors_len <= 1: + return 0 + + backoff_value = self.backoff_factor * (2 ** (consecutive_errors_len - 1)) + return min(self.DEFAULT_BACKOFF_MAX, backoff_value) + + def parse_retry_after(self, retry_after): + # Whitespace: https://tools.ietf.org/html/rfc7230#section-3.2.4 + if re.match(r"^\s*[0-9]+\s*$", retry_after): + seconds = int(retry_after) + else: + retry_date_tuple = email.utils.parsedate_tz(retry_after) + if retry_date_tuple is None: + raise InvalidHeader("Invalid Retry-After header: %s" % retry_after) + if retry_date_tuple[9] is None: # Python 2 + # Assume UTC if no timezone was specified + # On Python2.7, parsedate_tz returns None for a timezone offset + # instead of 0 if no timezone is given, where mktime_tz treats + # a None timezone offset as local time. + retry_date_tuple = retry_date_tuple[:9] + (0,) + retry_date_tuple[10:] + + retry_date = email.utils.mktime_tz(retry_date_tuple) + seconds = retry_date - time.time() + + if seconds < 0: + seconds = 0 + + return seconds + + def get_retry_after(self, response): + """Get the value of Retry-After in seconds.""" + + retry_after = response.headers.get("Retry-After") + + if retry_after is None: + return None + + return self.parse_retry_after(retry_after) + + def sleep_for_retry(self, response=None): + retry_after = self.get_retry_after(response) + if retry_after: + time.sleep(retry_after) + return True + + return False + + def _sleep_backoff(self): + backoff = self.get_backoff_time() + if backoff <= 0: + return + time.sleep(backoff) + + def sleep(self, response=None): + """Sleep between retry attempts. + + This method will respect a server's ``Retry-After`` response header + and sleep the duration of the time requested. If that is not present, it + will use an exponential backoff. By default, the backoff factor is 0 and + this method will return immediately. + """ + + if self.respect_retry_after_header and response: + slept = self.sleep_for_retry(response) + if slept: + return + + self._sleep_backoff() + + def _is_connection_error(self, err): + """Errors when we're fairly sure that the server did not receive the + request, so it should be safe to retry. + """ + if isinstance(err, ProxyError): + err = err.original_error + return isinstance(err, ConnectTimeoutError) + + def _is_read_error(self, err): + """Errors that occur after the request has been started, so we should + assume that the server began processing it. + """ + return isinstance(err, (ReadTimeoutError, ProtocolError)) + + def _is_method_retryable(self, method): + """Checks if a given HTTP method should be retried upon, depending if + it is included in the allowed_methods + """ + # TODO: For now favor if the Retry implementation sets its own method_whitelist + # property outside of our constructor to avoid breaking custom implementations. + if "method_whitelist" in self.__dict__: + warnings.warn( + "Using 'method_whitelist' with Retry is deprecated and " + "will be removed in v2.0. Use 'allowed_methods' instead", + DeprecationWarning, + ) + allowed_methods = self.method_whitelist + else: + allowed_methods = self.allowed_methods + + if allowed_methods and method.upper() not in allowed_methods: + return False + return True + + def is_retry(self, method, status_code, has_retry_after=False): + """Is this method/status code retryable? (Based on allowlists and control + variables such as the number of total retries to allow, whether to + respect the Retry-After header, whether this header is present, and + whether the returned status code is on the list of status codes to + be retried upon on the presence of the aforementioned header) + """ + if not self._is_method_retryable(method): + return False + + if self.status_forcelist and status_code in self.status_forcelist: + return True + + return ( + self.total + and self.respect_retry_after_header + and has_retry_after + and (status_code in self.RETRY_AFTER_STATUS_CODES) + ) + + def is_exhausted(self): + """Are we out of retries?""" + retry_counts = ( + self.total, + self.connect, + self.read, + self.redirect, + self.status, + self.other, + ) + retry_counts = list(filter(None, retry_counts)) + if not retry_counts: + return False + + return min(retry_counts) < 0 + + def increment( + self, + method=None, + url=None, + response=None, + error=None, + _pool=None, + _stacktrace=None, + ): + """Return a new Retry object with incremented retry counters. + + :param response: A response object, or None, if the server did not + return a response. + :type response: :class:`~urllib3.response.HTTPResponse` + :param Exception error: An error encountered during the request, or + None if the response was received successfully. + + :return: A new ``Retry`` object. + """ + if self.total is False and error: + # Disabled, indicate to re-raise the error. + raise six.reraise(type(error), error, _stacktrace) + + total = self.total + if total is not None: + total -= 1 + + connect = self.connect + read = self.read + redirect = self.redirect + status_count = self.status + other = self.other + cause = "unknown" + status = None + redirect_location = None + + if error and self._is_connection_error(error): + # Connect retry? + if connect is False: + raise six.reraise(type(error), error, _stacktrace) + elif connect is not None: + connect -= 1 + + elif error and self._is_read_error(error): + # Read retry? + if read is False or not self._is_method_retryable(method): + raise six.reraise(type(error), error, _stacktrace) + elif read is not None: + read -= 1 + + elif error: + # Other retry? + if other is not None: + other -= 1 + + elif response and response.get_redirect_location(): + # Redirect retry? + if redirect is not None: + redirect -= 1 + cause = "too many redirects" + redirect_location = response.get_redirect_location() + status = response.status + + else: + # Incrementing because of a server error like a 500 in + # status_forcelist and the given method is in the allowed_methods + cause = ResponseError.GENERIC_ERROR + if response and response.status: + if status_count is not None: + status_count -= 1 + cause = ResponseError.SPECIFIC_ERROR.format(status_code=response.status) + status = response.status + + history = self.history + ( + RequestHistory(method, url, error, status, redirect_location), + ) + + new_retry = self.new( + total=total, + connect=connect, + read=read, + redirect=redirect, + status=status_count, + other=other, + history=history, + ) + + if new_retry.is_exhausted(): + raise MaxRetryError(_pool, url, error or ResponseError(cause)) + + log.debug("Incremented Retry for (url='%s'): %r", url, new_retry) + + return new_retry + + def __repr__(self): + return ( + "{cls.__name__}(total={self.total}, connect={self.connect}, " + "read={self.read}, redirect={self.redirect}, status={self.status})" + ).format(cls=type(self), self=self) + + def __getattr__(self, item): + if item == "method_whitelist": + # TODO: Remove this deprecated alias in v2.0 + warnings.warn( + "Using 'method_whitelist' with Retry is deprecated and " + "will be removed in v2.0. Use 'allowed_methods' instead", + DeprecationWarning, + ) + return self.allowed_methods + try: + return getattr(super(Retry, self), item) + except AttributeError: + return getattr(Retry, item) + + +# For backwards compatibility (equivalent to pre-v1.9): +Retry.DEFAULT = Retry(3) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py new file mode 100644 index 0000000..0a6a0e0 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py @@ -0,0 +1,504 @@ +from __future__ import absolute_import + +import hashlib +import hmac +import os +import sys +import warnings +from binascii import hexlify, unhexlify + +from ..exceptions import ( + InsecurePlatformWarning, + ProxySchemeUnsupported, + SNIMissingWarning, + SSLError, +) +from ..packages import six +from .url import BRACELESS_IPV6_ADDRZ_RE, IPV4_RE + +SSLContext = None +SSLTransport = None +HAS_SNI = False +IS_PYOPENSSL = False +IS_SECURETRANSPORT = False +ALPN_PROTOCOLS = ["http/1.1"] + +# Maps the length of a digest to a possible hash function producing this digest +HASHFUNC_MAP = { + length: getattr(hashlib, algorithm, None) + for length, algorithm in ((32, "md5"), (40, "sha1"), (64, "sha256")) +} + + +def _const_compare_digest_backport(a, b): + """ + Compare two digests of equal length in constant time. + + The digests must be of type str/bytes. + Returns True if the digests match, and False otherwise. + """ + result = abs(len(a) - len(b)) + for left, right in zip(bytearray(a), bytearray(b)): + result |= left ^ right + return result == 0 + + +_const_compare_digest = getattr(hmac, "compare_digest", _const_compare_digest_backport) + +try: # Test for SSL features + import ssl + from ssl import CERT_REQUIRED, wrap_socket +except ImportError: + pass + +try: + from ssl import HAS_SNI # Has SNI? +except ImportError: + pass + +try: + from .ssltransport import SSLTransport +except ImportError: + pass + + +try: # Platform-specific: Python 3.6 + from ssl import PROTOCOL_TLS + + PROTOCOL_SSLv23 = PROTOCOL_TLS +except ImportError: + try: + from ssl import PROTOCOL_SSLv23 as PROTOCOL_TLS + + PROTOCOL_SSLv23 = PROTOCOL_TLS + except ImportError: + PROTOCOL_SSLv23 = PROTOCOL_TLS = 2 + +try: + from ssl import PROTOCOL_TLS_CLIENT +except ImportError: + PROTOCOL_TLS_CLIENT = PROTOCOL_TLS + + +try: + from ssl import OP_NO_COMPRESSION, OP_NO_SSLv2, OP_NO_SSLv3 +except ImportError: + OP_NO_SSLv2, OP_NO_SSLv3 = 0x1000000, 0x2000000 + OP_NO_COMPRESSION = 0x20000 + + +try: # OP_NO_TICKET was added in Python 3.6 + from ssl import OP_NO_TICKET +except ImportError: + OP_NO_TICKET = 0x4000 + + +# A secure default. +# Sources for more information on TLS ciphers: +# +# - https://wiki.mozilla.org/Security/Server_Side_TLS +# - https://www.ssllabs.com/projects/best-practices/index.html +# - https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/ +# +# The general intent is: +# - prefer cipher suites that offer perfect forward secrecy (DHE/ECDHE), +# - prefer ECDHE over DHE for better performance, +# - prefer any AES-GCM and ChaCha20 over any AES-CBC for better performance and +# security, +# - prefer AES-GCM over ChaCha20 because hardware-accelerated AES is common, +# - disable NULL authentication, MD5 MACs, DSS, and other +# insecure ciphers for security reasons. +# - NOTE: TLS 1.3 cipher suites are managed through a different interface +# not exposed by CPython (yet!) and are enabled by default if they're available. +DEFAULT_CIPHERS = ":".join( + [ + "ECDHE+AESGCM", + "ECDHE+CHACHA20", + "DHE+AESGCM", + "DHE+CHACHA20", + "ECDH+AESGCM", + "DH+AESGCM", + "ECDH+AES", + "DH+AES", + "RSA+AESGCM", + "RSA+AES", + "!aNULL", + "!eNULL", + "!MD5", + "!DSS", + ] +) + +try: + from ssl import SSLContext # Modern SSL? +except ImportError: + + class SSLContext(object): # Platform-specific: Python 2 + def __init__(self, protocol_version): + self.protocol = protocol_version + # Use default values from a real SSLContext + self.check_hostname = False + self.verify_mode = ssl.CERT_NONE + self.ca_certs = None + self.options = 0 + self.certfile = None + self.keyfile = None + self.ciphers = None + + def load_cert_chain(self, certfile, keyfile): + self.certfile = certfile + self.keyfile = keyfile + + def load_verify_locations(self, cafile=None, capath=None, cadata=None): + self.ca_certs = cafile + + if capath is not None: + raise SSLError("CA directories not supported in older Pythons") + + if cadata is not None: + raise SSLError("CA data not supported in older Pythons") + + def set_ciphers(self, cipher_suite): + self.ciphers = cipher_suite + + def wrap_socket(self, socket, server_hostname=None, server_side=False): + warnings.warn( + "A true SSLContext object is not available. This prevents " + "urllib3 from configuring SSL appropriately and may cause " + "certain SSL connections to fail. You can upgrade to a newer " + "version of Python to solve this. For more information, see " + "https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html" + "#ssl-warnings", + InsecurePlatformWarning, + ) + kwargs = { + "keyfile": self.keyfile, + "certfile": self.certfile, + "ca_certs": self.ca_certs, + "cert_reqs": self.verify_mode, + "ssl_version": self.protocol, + "server_side": server_side, + } + return wrap_socket(socket, ciphers=self.ciphers, **kwargs) + + +def assert_fingerprint(cert, fingerprint): + """ + Checks if given fingerprint matches the supplied certificate. + + :param cert: + Certificate as bytes object. + :param fingerprint: + Fingerprint as string of hexdigits, can be interspersed by colons. + """ + + fingerprint = fingerprint.replace(":", "").lower() + digest_length = len(fingerprint) + if digest_length not in HASHFUNC_MAP: + raise SSLError("Fingerprint of invalid length: {0}".format(fingerprint)) + hashfunc = HASHFUNC_MAP.get(digest_length) + if hashfunc is None: + raise SSLError( + "Hash function implementation unavailable for fingerprint length: {0}".format( + digest_length + ) + ) + + # We need encode() here for py32; works on py2 and p33. + fingerprint_bytes = unhexlify(fingerprint.encode()) + + cert_digest = hashfunc(cert).digest() + + if not _const_compare_digest(cert_digest, fingerprint_bytes): + raise SSLError( + 'Fingerprints did not match. Expected "{0}", got "{1}".'.format( + fingerprint, hexlify(cert_digest) + ) + ) + + +def resolve_cert_reqs(candidate): + """ + Resolves the argument to a numeric constant, which can be passed to + the wrap_socket function/method from the ssl module. + Defaults to :data:`ssl.CERT_REQUIRED`. + If given a string it is assumed to be the name of the constant in the + :mod:`ssl` module or its abbreviation. + (So you can specify `REQUIRED` instead of `CERT_REQUIRED`. + If it's neither `None` nor a string we assume it is already the numeric + constant which can directly be passed to wrap_socket. + """ + if candidate is None: + return CERT_REQUIRED + + if isinstance(candidate, str): + res = getattr(ssl, candidate, None) + if res is None: + res = getattr(ssl, "CERT_" + candidate) + return res + + return candidate + + +def resolve_ssl_version(candidate): + """ + like resolve_cert_reqs + """ + if candidate is None: + return PROTOCOL_TLS + + if isinstance(candidate, str): + res = getattr(ssl, candidate, None) + if res is None: + res = getattr(ssl, "PROTOCOL_" + candidate) + return res + + return candidate + + +def create_urllib3_context( + ssl_version=None, cert_reqs=None, options=None, ciphers=None +): + """All arguments have the same meaning as ``ssl_wrap_socket``. + + By default, this function does a lot of the same work that + ``ssl.create_default_context`` does on Python 3.4+. It: + + - Disables SSLv2, SSLv3, and compression + - Sets a restricted set of server ciphers + + If you wish to enable SSLv3, you can do:: + + from pip._vendor.urllib3.util import ssl_ + context = ssl_.create_urllib3_context() + context.options &= ~ssl_.OP_NO_SSLv3 + + You can do the same to enable compression (substituting ``COMPRESSION`` + for ``SSLv3`` in the last line above). + + :param ssl_version: + The desired protocol version to use. This will default to + PROTOCOL_SSLv23 which will negotiate the highest protocol that both + the server and your installation of OpenSSL support. + :param cert_reqs: + Whether to require the certificate verification. This defaults to + ``ssl.CERT_REQUIRED``. + :param options: + Specific OpenSSL options. These default to ``ssl.OP_NO_SSLv2``, + ``ssl.OP_NO_SSLv3``, ``ssl.OP_NO_COMPRESSION``, and ``ssl.OP_NO_TICKET``. + :param ciphers: + Which cipher suites to allow the server to select. + :returns: + Constructed SSLContext object with specified options + :rtype: SSLContext + """ + # PROTOCOL_TLS is deprecated in Python 3.10 + if not ssl_version or ssl_version == PROTOCOL_TLS: + ssl_version = PROTOCOL_TLS_CLIENT + + context = SSLContext(ssl_version) + + context.set_ciphers(ciphers or DEFAULT_CIPHERS) + + # Setting the default here, as we may have no ssl module on import + cert_reqs = ssl.CERT_REQUIRED if cert_reqs is None else cert_reqs + + if options is None: + options = 0 + # SSLv2 is easily broken and is considered harmful and dangerous + options |= OP_NO_SSLv2 + # SSLv3 has several problems and is now dangerous + options |= OP_NO_SSLv3 + # Disable compression to prevent CRIME attacks for OpenSSL 1.0+ + # (issue #309) + options |= OP_NO_COMPRESSION + # TLSv1.2 only. Unless set explicitly, do not request tickets. + # This may save some bandwidth on wire, and although the ticket is encrypted, + # there is a risk associated with it being on wire, + # if the server is not rotating its ticketing keys properly. + options |= OP_NO_TICKET + + context.options |= options + + # Enable post-handshake authentication for TLS 1.3, see GH #1634. PHA is + # necessary for conditional client cert authentication with TLS 1.3. + # The attribute is None for OpenSSL <= 1.1.0 or does not exist in older + # versions of Python. We only enable on Python 3.7.4+ or if certificate + # verification is enabled to work around Python issue #37428 + # See: https://bugs.python.org/issue37428 + if (cert_reqs == ssl.CERT_REQUIRED or sys.version_info >= (3, 7, 4)) and getattr( + context, "post_handshake_auth", None + ) is not None: + context.post_handshake_auth = True + + def disable_check_hostname(): + if ( + getattr(context, "check_hostname", None) is not None + ): # Platform-specific: Python 3.2 + # We do our own verification, including fingerprints and alternative + # hostnames. So disable it here + context.check_hostname = False + + # The order of the below lines setting verify_mode and check_hostname + # matter due to safe-guards SSLContext has to prevent an SSLContext with + # check_hostname=True, verify_mode=NONE/OPTIONAL. This is made even more + # complex because we don't know whether PROTOCOL_TLS_CLIENT will be used + # or not so we don't know the initial state of the freshly created SSLContext. + if cert_reqs == ssl.CERT_REQUIRED: + context.verify_mode = cert_reqs + disable_check_hostname() + else: + disable_check_hostname() + context.verify_mode = cert_reqs + + # Enable logging of TLS session keys via defacto standard environment variable + # 'SSLKEYLOGFILE', if the feature is available (Python 3.8+). Skip empty values. + if hasattr(context, "keylog_filename"): + sslkeylogfile = os.environ.get("SSLKEYLOGFILE") + if sslkeylogfile: + context.keylog_filename = sslkeylogfile + + return context + + +def ssl_wrap_socket( + sock, + keyfile=None, + certfile=None, + cert_reqs=None, + ca_certs=None, + server_hostname=None, + ssl_version=None, + ciphers=None, + ssl_context=None, + ca_cert_dir=None, + key_password=None, + ca_cert_data=None, + tls_in_tls=False, +): + """ + All arguments except for server_hostname, ssl_context, and ca_cert_dir have + the same meaning as they do when using :func:`ssl.wrap_socket`. + + :param server_hostname: + When SNI is supported, the expected hostname of the certificate + :param ssl_context: + A pre-made :class:`SSLContext` object. If none is provided, one will + be created using :func:`create_urllib3_context`. + :param ciphers: + A string of ciphers we wish the client to support. + :param ca_cert_dir: + A directory containing CA certificates in multiple separate files, as + supported by OpenSSL's -CApath flag or the capath argument to + SSLContext.load_verify_locations(). + :param key_password: + Optional password if the keyfile is encrypted. + :param ca_cert_data: + Optional string containing CA certificates in PEM format suitable for + passing as the cadata parameter to SSLContext.load_verify_locations() + :param tls_in_tls: + Use SSLTransport to wrap the existing socket. + """ + context = ssl_context + if context is None: + # Note: This branch of code and all the variables in it are no longer + # used by urllib3 itself. We should consider deprecating and removing + # this code. + context = create_urllib3_context(ssl_version, cert_reqs, ciphers=ciphers) + + if ca_certs or ca_cert_dir or ca_cert_data: + try: + context.load_verify_locations(ca_certs, ca_cert_dir, ca_cert_data) + except (IOError, OSError) as e: + raise SSLError(e) + + elif ssl_context is None and hasattr(context, "load_default_certs"): + # try to load OS default certs; works well on Windows (require Python3.4+) + context.load_default_certs() + + # Attempt to detect if we get the goofy behavior of the + # keyfile being encrypted and OpenSSL asking for the + # passphrase via the terminal and instead error out. + if keyfile and key_password is None and _is_key_file_encrypted(keyfile): + raise SSLError("Client private key is encrypted, password is required") + + if certfile: + if key_password is None: + context.load_cert_chain(certfile, keyfile) + else: + context.load_cert_chain(certfile, keyfile, key_password) + + try: + if hasattr(context, "set_alpn_protocols"): + context.set_alpn_protocols(ALPN_PROTOCOLS) + except NotImplementedError: # Defensive: in CI, we always have set_alpn_protocols + pass + + # If we detect server_hostname is an IP address then the SNI + # extension should not be used according to RFC3546 Section 3.1 + use_sni_hostname = server_hostname and not is_ipaddress(server_hostname) + # SecureTransport uses server_hostname in certificate verification. + send_sni = (use_sni_hostname and HAS_SNI) or ( + IS_SECURETRANSPORT and server_hostname + ) + # Do not warn the user if server_hostname is an invalid SNI hostname. + if not HAS_SNI and use_sni_hostname: + warnings.warn( + "An HTTPS request has been made, but the SNI (Server Name " + "Indication) extension to TLS is not available on this platform. " + "This may cause the server to present an incorrect TLS " + "certificate, which can cause validation failures. You can upgrade to " + "a newer version of Python to solve this. For more information, see " + "https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html" + "#ssl-warnings", + SNIMissingWarning, + ) + + if send_sni: + ssl_sock = _ssl_wrap_socket_impl( + sock, context, tls_in_tls, server_hostname=server_hostname + ) + else: + ssl_sock = _ssl_wrap_socket_impl(sock, context, tls_in_tls) + return ssl_sock + + +def is_ipaddress(hostname): + """Detects whether the hostname given is an IPv4 or IPv6 address. + Also detects IPv6 addresses with Zone IDs. + + :param str hostname: Hostname to examine. + :return: True if the hostname is an IP address, False otherwise. + """ + if not six.PY2 and isinstance(hostname, bytes): + # IDN A-label bytes are ASCII compatible. + hostname = hostname.decode("ascii") + return bool(IPV4_RE.match(hostname) or BRACELESS_IPV6_ADDRZ_RE.match(hostname)) + + +def _is_key_file_encrypted(key_file): + """Detects if a key file is encrypted or not.""" + with open(key_file, "r") as f: + for line in f: + # Look for Proc-Type: 4,ENCRYPTED + if "ENCRYPTED" in line: + return True + + return False + + +def _ssl_wrap_socket_impl(sock, ssl_context, tls_in_tls, server_hostname=None): + if tls_in_tls: + if not SSLTransport: + # Import error, ssl is not available. + raise ProxySchemeUnsupported( + "TLS in TLS requires support for the 'ssl' module" + ) + + SSLTransport._validate_ssl_context_for_tls_in_tls(ssl_context) + return SSLTransport(sock, ssl_context, server_hostname) + + if server_hostname: + return ssl_context.wrap_socket(sock, server_hostname=server_hostname) + else: + return ssl_context.wrap_socket(sock) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py new file mode 100644 index 0000000..1dd950c --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py @@ -0,0 +1,159 @@ +"""The match_hostname() function from Python 3.3.3, essential when using SSL.""" + +# Note: This file is under the PSF license as the code comes from the python +# stdlib. http://docs.python.org/3/license.html + +import re +import sys + +# ipaddress has been backported to 2.6+ in pypi. If it is installed on the +# system, use it to handle IPAddress ServerAltnames (this was added in +# python-3.5) otherwise only do DNS matching. This allows +# util.ssl_match_hostname to continue to be used in Python 2.7. +try: + import ipaddress +except ImportError: + ipaddress = None + +__version__ = "3.5.0.1" + + +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 + + # Ported from python3-syntax: + # leftmost, *remainder = dn.split(r'.') + parts = dn.split(r".") + leftmost = parts[0] + remainder = 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 _to_unicode(obj): + if isinstance(obj, str) and sys.version_info < (3,): + # ignored flake8 # F821 to support python 2.7 function + obj = unicode(obj, encoding="ascii", errors="strict") # noqa: F821 + return obj + + +def _ipaddress_match(ipname, host_ip): + """Exact matching of IP addresses. + + RFC 6125 explicitly doesn't define an algorithm for this + (section 1.7.2 - "Out of Scope"). + """ + # OpenSSL may add a trailing newline to a subjectAltName's IP address + # Divergence from upstream: ipaddress can't handle byte str + ip = ipaddress.ip_address(_to_unicode(ipname).rstrip()) + return ip == host_ip + + +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" + ) + try: + # Divergence from upstream: ipaddress can't handle byte str + host_ip = ipaddress.ip_address(_to_unicode(hostname)) + except (UnicodeError, ValueError): + # ValueError: Not an IP address (common case) + # UnicodeError: Divergence from upstream: Have to deal with ipaddress not taking + # byte strings. addresses should be all ascii, so we consider it not + # an ipaddress in this case + host_ip = None + except AttributeError: + # Divergence from upstream: Make ipaddress library optional + if ipaddress is None: + host_ip = None + else: # Defensive + raise + dnsnames = [] + san = cert.get("subjectAltName", ()) + for key, value in san: + if key == "DNS": + if host_ip is None and _dnsname_match(value, hostname): + return + dnsnames.append(value) + elif key == "IP Address": + if host_ip is not None and _ipaddress_match(value, host_ip): + 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" + ) diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py new file mode 100644 index 0000000..4a7105d --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py @@ -0,0 +1,221 @@ +import io +import socket +import ssl + +from ..exceptions import ProxySchemeUnsupported +from ..packages import six + +SSL_BLOCKSIZE = 16384 + + +class SSLTransport: + """ + The SSLTransport wraps an existing socket and establishes an SSL connection. + + Contrary to Python's implementation of SSLSocket, it allows you to chain + multiple TLS connections together. It's particularly useful if you need to + implement TLS within TLS. + + The class supports most of the socket API operations. + """ + + @staticmethod + def _validate_ssl_context_for_tls_in_tls(ssl_context): + """ + Raises a ProxySchemeUnsupported if the provided ssl_context can't be used + for TLS in TLS. + + The only requirement is that the ssl_context provides the 'wrap_bio' + methods. + """ + + if not hasattr(ssl_context, "wrap_bio"): + if six.PY2: + raise ProxySchemeUnsupported( + "TLS in TLS requires SSLContext.wrap_bio() which isn't " + "supported on Python 2" + ) + else: + raise ProxySchemeUnsupported( + "TLS in TLS requires SSLContext.wrap_bio() which isn't " + "available on non-native SSLContext" + ) + + def __init__( + self, socket, ssl_context, server_hostname=None, suppress_ragged_eofs=True + ): + """ + Create an SSLTransport around socket using the provided ssl_context. + """ + self.incoming = ssl.MemoryBIO() + self.outgoing = ssl.MemoryBIO() + + self.suppress_ragged_eofs = suppress_ragged_eofs + self.socket = socket + + self.sslobj = ssl_context.wrap_bio( + self.incoming, self.outgoing, server_hostname=server_hostname + ) + + # Perform initial handshake. + self._ssl_io_loop(self.sslobj.do_handshake) + + def __enter__(self): + return self + + def __exit__(self, *_): + self.close() + + def fileno(self): + return self.socket.fileno() + + def read(self, len=1024, buffer=None): + return self._wrap_ssl_read(len, buffer) + + def recv(self, len=1024, flags=0): + if flags != 0: + raise ValueError("non-zero flags not allowed in calls to recv") + return self._wrap_ssl_read(len) + + def recv_into(self, buffer, nbytes=None, flags=0): + if flags != 0: + raise ValueError("non-zero flags not allowed in calls to recv_into") + if buffer and (nbytes is None): + nbytes = len(buffer) + elif nbytes is None: + nbytes = 1024 + return self.read(nbytes, buffer) + + def sendall(self, data, flags=0): + if flags != 0: + raise ValueError("non-zero flags not allowed in calls to sendall") + count = 0 + with memoryview(data) as view, view.cast("B") as byte_view: + amount = len(byte_view) + while count < amount: + v = self.send(byte_view[count:]) + count += v + + def send(self, data, flags=0): + if flags != 0: + raise ValueError("non-zero flags not allowed in calls to send") + response = self._ssl_io_loop(self.sslobj.write, data) + return response + + def makefile( + self, mode="r", buffering=None, encoding=None, errors=None, newline=None + ): + """ + Python's httpclient uses makefile and buffered io when reading HTTP + messages and we need to support it. + + This is unfortunately a copy and paste of socket.py makefile with small + changes to point to the socket directly. + """ + if not set(mode) <= {"r", "w", "b"}: + raise ValueError("invalid mode %r (only r, w, b allowed)" % (mode,)) + + writing = "w" in mode + reading = "r" in mode or not writing + assert reading or writing + binary = "b" in mode + rawmode = "" + if reading: + rawmode += "r" + if writing: + rawmode += "w" + raw = socket.SocketIO(self, rawmode) + self.socket._io_refs += 1 + if buffering is None: + buffering = -1 + if buffering < 0: + buffering = io.DEFAULT_BUFFER_SIZE + if buffering == 0: + if not binary: + raise ValueError("unbuffered streams must be binary") + return raw + if reading and writing: + buffer = io.BufferedRWPair(raw, raw, buffering) + elif reading: + buffer = io.BufferedReader(raw, buffering) + else: + assert writing + buffer = io.BufferedWriter(raw, buffering) + if binary: + return buffer + text = io.TextIOWrapper(buffer, encoding, errors, newline) + text.mode = mode + return text + + def unwrap(self): + self._ssl_io_loop(self.sslobj.unwrap) + + def close(self): + self.socket.close() + + def getpeercert(self, binary_form=False): + return self.sslobj.getpeercert(binary_form) + + def version(self): + return self.sslobj.version() + + def cipher(self): + return self.sslobj.cipher() + + def selected_alpn_protocol(self): + return self.sslobj.selected_alpn_protocol() + + def selected_npn_protocol(self): + return self.sslobj.selected_npn_protocol() + + def shared_ciphers(self): + return self.sslobj.shared_ciphers() + + def compression(self): + return self.sslobj.compression() + + def settimeout(self, value): + self.socket.settimeout(value) + + def gettimeout(self): + return self.socket.gettimeout() + + def _decref_socketios(self): + self.socket._decref_socketios() + + def _wrap_ssl_read(self, len, buffer=None): + try: + return self._ssl_io_loop(self.sslobj.read, len, buffer) + except ssl.SSLError as e: + if e.errno == ssl.SSL_ERROR_EOF and self.suppress_ragged_eofs: + return 0 # eof, return 0. + else: + raise + + def _ssl_io_loop(self, func, *args): + """Performs an I/O loop between incoming/outgoing and the socket.""" + should_loop = True + ret = None + + while should_loop: + errno = None + try: + ret = func(*args) + except ssl.SSLError as e: + if e.errno not in (ssl.SSL_ERROR_WANT_READ, ssl.SSL_ERROR_WANT_WRITE): + # WANT_READ, and WANT_WRITE are expected, others are not. + raise e + errno = e.errno + + buf = self.outgoing.read() + self.socket.sendall(buf) + + if errno is None: + should_loop = False + elif errno == ssl.SSL_ERROR_WANT_READ: + buf = self.socket.recv(SSL_BLOCKSIZE) + if buf: + self.incoming.write(buf) + else: + self.incoming.write_eof() + return ret diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py new file mode 100644 index 0000000..78e18a6 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py @@ -0,0 +1,271 @@ +from __future__ import absolute_import + +import time + +# The default socket timeout, used by httplib to indicate that no timeout was; specified by the user +from socket import _GLOBAL_DEFAULT_TIMEOUT, getdefaulttimeout + +from ..exceptions import TimeoutStateError + +# A sentinel value to indicate that no timeout was specified by the user in +# urllib3 +_Default = object() + + +# Use time.monotonic if available. +current_time = getattr(time, "monotonic", time.time) + + +class Timeout(object): + """Timeout configuration. + + Timeouts can be defined as a default for a pool: + + .. code-block:: python + + timeout = Timeout(connect=2.0, read=7.0) + http = PoolManager(timeout=timeout) + response = http.request('GET', 'http://example.com/') + + Or per-request (which overrides the default for the pool): + + .. code-block:: python + + response = http.request('GET', 'http://example.com/', timeout=Timeout(10)) + + Timeouts can be disabled by setting all the parameters to ``None``: + + .. code-block:: python + + no_timeout = Timeout(connect=None, read=None) + response = http.request('GET', 'http://example.com/, timeout=no_timeout) + + + :param total: + This combines the connect and read timeouts into one; the read timeout + will be set to the time leftover from the connect attempt. In the + event that both a connect timeout and a total are specified, or a read + timeout and a total are specified, the shorter timeout will be applied. + + Defaults to None. + + :type total: int, float, or None + + :param connect: + The maximum amount of time (in seconds) to wait for a connection + attempt to a server to succeed. Omitting the parameter will default the + connect timeout to the system default, probably `the global default + timeout in socket.py + `_. + None will set an infinite timeout for connection attempts. + + :type connect: int, float, or None + + :param read: + The maximum amount of time (in seconds) to wait between consecutive + read operations for a response from the server. Omitting the parameter + will default the read timeout to the system default, probably `the + global default timeout in socket.py + `_. + None will set an infinite timeout. + + :type read: int, float, or None + + .. note:: + + Many factors can affect the total amount of time for urllib3 to return + an HTTP response. + + For example, Python's DNS resolver does not obey the timeout specified + on the socket. Other factors that can affect total request time include + high CPU load, high swap, the program running at a low priority level, + or other behaviors. + + In addition, the read and total timeouts only measure the time between + read operations on the socket connecting the client and the server, + not the total amount of time for the request to return a complete + response. For most requests, the timeout is raised because the server + has not sent the first byte in the specified time. This is not always + the case; if a server streams one byte every fifteen seconds, a timeout + of 20 seconds will not trigger, even though the request will take + several minutes to complete. + + If your goal is to cut off any request after a set amount of wall clock + time, consider having a second "watcher" thread to cut off a slow + request. + """ + + #: A sentinel object representing the default timeout value + DEFAULT_TIMEOUT = _GLOBAL_DEFAULT_TIMEOUT + + def __init__(self, total=None, connect=_Default, read=_Default): + self._connect = self._validate_timeout(connect, "connect") + self._read = self._validate_timeout(read, "read") + self.total = self._validate_timeout(total, "total") + self._start_connect = None + + def __repr__(self): + return "%s(connect=%r, read=%r, total=%r)" % ( + type(self).__name__, + self._connect, + self._read, + self.total, + ) + + # __str__ provided for backwards compatibility + __str__ = __repr__ + + @classmethod + def resolve_default_timeout(cls, timeout): + return getdefaulttimeout() if timeout is cls.DEFAULT_TIMEOUT else timeout + + @classmethod + def _validate_timeout(cls, value, name): + """Check that a timeout attribute is valid. + + :param value: The timeout value to validate + :param name: The name of the timeout attribute to validate. This is + used to specify in error messages. + :return: The validated and casted version of the given value. + :raises ValueError: If it is a numeric value less than or equal to + zero, or the type is not an integer, float, or None. + """ + if value is _Default: + return cls.DEFAULT_TIMEOUT + + if value is None or value is cls.DEFAULT_TIMEOUT: + return value + + if isinstance(value, bool): + raise ValueError( + "Timeout cannot be a boolean value. It must " + "be an int, float or None." + ) + try: + float(value) + except (TypeError, ValueError): + raise ValueError( + "Timeout value %s was %s, but it must be an " + "int, float or None." % (name, value) + ) + + try: + if value <= 0: + raise ValueError( + "Attempted to set %s timeout to %s, but the " + "timeout cannot be set to a value less " + "than or equal to 0." % (name, value) + ) + except TypeError: + # Python 3 + raise ValueError( + "Timeout value %s was %s, but it must be an " + "int, float or None." % (name, value) + ) + + return value + + @classmethod + def from_float(cls, timeout): + """Create a new Timeout from a legacy timeout value. + + The timeout value used by httplib.py sets the same timeout on the + connect(), and recv() socket requests. This creates a :class:`Timeout` + object that sets the individual timeouts to the ``timeout`` value + passed to this function. + + :param timeout: The legacy timeout value. + :type timeout: integer, float, sentinel default object, or None + :return: Timeout object + :rtype: :class:`Timeout` + """ + return Timeout(read=timeout, connect=timeout) + + def clone(self): + """Create a copy of the timeout object + + Timeout properties are stored per-pool but each request needs a fresh + Timeout object to ensure each one has its own start/stop configured. + + :return: a copy of the timeout object + :rtype: :class:`Timeout` + """ + # We can't use copy.deepcopy because that will also create a new object + # for _GLOBAL_DEFAULT_TIMEOUT, which socket.py uses as a sentinel to + # detect the user default. + return Timeout(connect=self._connect, read=self._read, total=self.total) + + def start_connect(self): + """Start the timeout clock, used during a connect() attempt + + :raises urllib3.exceptions.TimeoutStateError: if you attempt + to start a timer that has been started already. + """ + if self._start_connect is not None: + raise TimeoutStateError("Timeout timer has already been started.") + self._start_connect = current_time() + return self._start_connect + + def get_connect_duration(self): + """Gets the time elapsed since the call to :meth:`start_connect`. + + :return: Elapsed time in seconds. + :rtype: float + :raises urllib3.exceptions.TimeoutStateError: if you attempt + to get duration for a timer that hasn't been started. + """ + if self._start_connect is None: + raise TimeoutStateError( + "Can't get connect duration for timer that has not started." + ) + return current_time() - self._start_connect + + @property + def connect_timeout(self): + """Get the value to use when setting a connection timeout. + + This will be a positive float or integer, the value None + (never timeout), or the default system timeout. + + :return: Connect timeout. + :rtype: int, float, :attr:`Timeout.DEFAULT_TIMEOUT` or None + """ + if self.total is None: + return self._connect + + if self._connect is None or self._connect is self.DEFAULT_TIMEOUT: + return self.total + + return min(self._connect, self.total) + + @property + def read_timeout(self): + """Get the value for the read timeout. + + This assumes some time has elapsed in the connection timeout and + computes the read timeout appropriately. + + If self.total is set, the read timeout is dependent on the amount of + time taken by the connect timeout. If the connection time has not been + established, a :exc:`~urllib3.exceptions.TimeoutStateError` will be + raised. + + :return: Value to use for the read timeout. + :rtype: int, float, :attr:`Timeout.DEFAULT_TIMEOUT` or None + :raises urllib3.exceptions.TimeoutStateError: If :meth:`start_connect` + has not yet been called on this object. + """ + if ( + self.total is not None + and self.total is not self.DEFAULT_TIMEOUT + and self._read is not None + and self._read is not self.DEFAULT_TIMEOUT + ): + # In case the connect timeout has not yet been established. + if self._start_connect is None: + return self._read + return max(0, min(self.total - self.get_connect_duration(), self._read)) + elif self.total is not None and self.total is not self.DEFAULT_TIMEOUT: + return max(0, self.total - self.get_connect_duration()) + else: + return self._read diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/url.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/url.py new file mode 100644 index 0000000..a960b2f --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/url.py @@ -0,0 +1,435 @@ +from __future__ import absolute_import + +import re +from collections import namedtuple + +from ..exceptions import LocationParseError +from ..packages import six + +url_attrs = ["scheme", "auth", "host", "port", "path", "query", "fragment"] + +# We only want to normalize urls with an HTTP(S) scheme. +# urllib3 infers URLs without a scheme (None) to be http. +NORMALIZABLE_SCHEMES = ("http", "https", None) + +# Almost all of these patterns were derived from the +# 'rfc3986' module: https://github.com/python-hyper/rfc3986 +PERCENT_RE = re.compile(r"%[a-fA-F0-9]{2}") +SCHEME_RE = re.compile(r"^(?:[a-zA-Z][a-zA-Z0-9+-]*:|/)") +URI_RE = re.compile( + r"^(?:([a-zA-Z][a-zA-Z0-9+.-]*):)?" + r"(?://([^\\/?#]*))?" + r"([^?#]*)" + r"(?:\?([^#]*))?" + r"(?:#(.*))?$", + re.UNICODE | re.DOTALL, +) + +IPV4_PAT = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}" +HEX_PAT = "[0-9A-Fa-f]{1,4}" +LS32_PAT = "(?:{hex}:{hex}|{ipv4})".format(hex=HEX_PAT, ipv4=IPV4_PAT) +_subs = {"hex": HEX_PAT, "ls32": LS32_PAT} +_variations = [ + # 6( h16 ":" ) ls32 + "(?:%(hex)s:){6}%(ls32)s", + # "::" 5( h16 ":" ) ls32 + "::(?:%(hex)s:){5}%(ls32)s", + # [ h16 ] "::" 4( h16 ":" ) ls32 + "(?:%(hex)s)?::(?:%(hex)s:){4}%(ls32)s", + # [ *1( h16 ":" ) h16 ] "::" 3( h16 ":" ) ls32 + "(?:(?:%(hex)s:)?%(hex)s)?::(?:%(hex)s:){3}%(ls32)s", + # [ *2( h16 ":" ) h16 ] "::" 2( h16 ":" ) ls32 + "(?:(?:%(hex)s:){0,2}%(hex)s)?::(?:%(hex)s:){2}%(ls32)s", + # [ *3( h16 ":" ) h16 ] "::" h16 ":" ls32 + "(?:(?:%(hex)s:){0,3}%(hex)s)?::%(hex)s:%(ls32)s", + # [ *4( h16 ":" ) h16 ] "::" ls32 + "(?:(?:%(hex)s:){0,4}%(hex)s)?::%(ls32)s", + # [ *5( h16 ":" ) h16 ] "::" h16 + "(?:(?:%(hex)s:){0,5}%(hex)s)?::%(hex)s", + # [ *6( h16 ":" ) h16 ] "::" + "(?:(?:%(hex)s:){0,6}%(hex)s)?::", +] + +UNRESERVED_PAT = r"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._\-~" +IPV6_PAT = "(?:" + "|".join([x % _subs for x in _variations]) + ")" +ZONE_ID_PAT = "(?:%25|%)(?:[" + UNRESERVED_PAT + "]|%[a-fA-F0-9]{2})+" +IPV6_ADDRZ_PAT = r"\[" + IPV6_PAT + r"(?:" + ZONE_ID_PAT + r")?\]" +REG_NAME_PAT = r"(?:[^\[\]%:/?#]|%[a-fA-F0-9]{2})*" +TARGET_RE = re.compile(r"^(/[^?#]*)(?:\?([^#]*))?(?:#.*)?$") + +IPV4_RE = re.compile("^" + IPV4_PAT + "$") +IPV6_RE = re.compile("^" + IPV6_PAT + "$") +IPV6_ADDRZ_RE = re.compile("^" + IPV6_ADDRZ_PAT + "$") +BRACELESS_IPV6_ADDRZ_RE = re.compile("^" + IPV6_ADDRZ_PAT[2:-2] + "$") +ZONE_ID_RE = re.compile("(" + ZONE_ID_PAT + r")\]$") + +_HOST_PORT_PAT = ("^(%s|%s|%s)(?::0*?(|0|[1-9][0-9]{0,4}))?$") % ( + REG_NAME_PAT, + IPV4_PAT, + IPV6_ADDRZ_PAT, +) +_HOST_PORT_RE = re.compile(_HOST_PORT_PAT, re.UNICODE | re.DOTALL) + +UNRESERVED_CHARS = set( + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._-~" +) +SUB_DELIM_CHARS = set("!$&'()*+,;=") +USERINFO_CHARS = UNRESERVED_CHARS | SUB_DELIM_CHARS | {":"} +PATH_CHARS = USERINFO_CHARS | {"@", "/"} +QUERY_CHARS = FRAGMENT_CHARS = PATH_CHARS | {"?"} + + +class Url(namedtuple("Url", url_attrs)): + """ + Data structure for representing an HTTP URL. Used as a return value for + :func:`parse_url`. Both the scheme and host are normalized as they are + both case-insensitive according to RFC 3986. + """ + + __slots__ = () + + def __new__( + cls, + scheme=None, + auth=None, + host=None, + port=None, + path=None, + query=None, + fragment=None, + ): + if path and not path.startswith("/"): + path = "/" + path + if scheme is not None: + scheme = scheme.lower() + return super(Url, cls).__new__( + cls, scheme, auth, host, port, path, query, fragment + ) + + @property + def hostname(self): + """For backwards-compatibility with urlparse. We're nice like that.""" + return self.host + + @property + def request_uri(self): + """Absolute path including the query string.""" + uri = self.path or "/" + + if self.query is not None: + uri += "?" + self.query + + return uri + + @property + def netloc(self): + """Network location including host and port""" + if self.port: + return "%s:%d" % (self.host, self.port) + return self.host + + @property + def url(self): + """ + Convert self into a url + + This function should more or less round-trip with :func:`.parse_url`. The + returned url may not be exactly the same as the url inputted to + :func:`.parse_url`, but it should be equivalent by the RFC (e.g., urls + with a blank port will have : removed). + + Example: :: + + >>> U = parse_url('http://google.com/mail/') + >>> U.url + 'http://google.com/mail/' + >>> Url('http', 'username:password', 'host.com', 80, + ... '/path', 'query', 'fragment').url + 'http://username:password@host.com:80/path?query#fragment' + """ + scheme, auth, host, port, path, query, fragment = self + url = u"" + + # We use "is not None" we want things to happen with empty strings (or 0 port) + if scheme is not None: + url += scheme + u"://" + if auth is not None: + url += auth + u"@" + if host is not None: + url += host + if port is not None: + url += u":" + str(port) + if path is not None: + url += path + if query is not None: + url += u"?" + query + if fragment is not None: + url += u"#" + fragment + + return url + + def __str__(self): + return self.url + + +def split_first(s, delims): + """ + .. deprecated:: 1.25 + + Given a string and an iterable of delimiters, split on the first found + delimiter. Return two split parts and the matched delimiter. + + If not found, then the first part is the full input string. + + Example:: + + >>> split_first('foo/bar?baz', '?/=') + ('foo', 'bar?baz', '/') + >>> split_first('foo/bar?baz', '123') + ('foo/bar?baz', '', None) + + Scales linearly with number of delims. Not ideal for large number of delims. + """ + min_idx = None + min_delim = None + for d in delims: + idx = s.find(d) + if idx < 0: + continue + + if min_idx is None or idx < min_idx: + min_idx = idx + min_delim = d + + if min_idx is None or min_idx < 0: + return s, "", None + + return s[:min_idx], s[min_idx + 1 :], min_delim + + +def _encode_invalid_chars(component, allowed_chars, encoding="utf-8"): + """Percent-encodes a URI component without reapplying + onto an already percent-encoded component. + """ + if component is None: + return component + + component = six.ensure_text(component) + + # Normalize existing percent-encoded bytes. + # Try to see if the component we're encoding is already percent-encoded + # so we can skip all '%' characters but still encode all others. + component, percent_encodings = PERCENT_RE.subn( + lambda match: match.group(0).upper(), component + ) + + uri_bytes = component.encode("utf-8", "surrogatepass") + is_percent_encoded = percent_encodings == uri_bytes.count(b"%") + encoded_component = bytearray() + + for i in range(0, len(uri_bytes)): + # Will return a single character bytestring on both Python 2 & 3 + byte = uri_bytes[i : i + 1] + byte_ord = ord(byte) + if (is_percent_encoded and byte == b"%") or ( + byte_ord < 128 and byte.decode() in allowed_chars + ): + encoded_component += byte + continue + encoded_component.extend(b"%" + (hex(byte_ord)[2:].encode().zfill(2).upper())) + + return encoded_component.decode(encoding) + + +def _remove_path_dot_segments(path): + # See http://tools.ietf.org/html/rfc3986#section-5.2.4 for pseudo-code + segments = path.split("/") # Turn the path into a list of segments + output = [] # Initialize the variable to use to store output + + for segment in segments: + # '.' is the current directory, so ignore it, it is superfluous + if segment == ".": + continue + # Anything other than '..', should be appended to the output + elif segment != "..": + output.append(segment) + # In this case segment == '..', if we can, we should pop the last + # element + elif output: + output.pop() + + # If the path starts with '/' and the output is empty or the first string + # is non-empty + if path.startswith("/") and (not output or output[0]): + output.insert(0, "") + + # If the path starts with '/.' or '/..' ensure we add one more empty + # string to add a trailing '/' + if path.endswith(("/.", "/..")): + output.append("") + + return "/".join(output) + + +def _normalize_host(host, scheme): + if host: + if isinstance(host, six.binary_type): + host = six.ensure_str(host) + + if scheme in NORMALIZABLE_SCHEMES: + is_ipv6 = IPV6_ADDRZ_RE.match(host) + if is_ipv6: + # IPv6 hosts of the form 'a::b%zone' are encoded in a URL as + # such per RFC 6874: 'a::b%25zone'. Unquote the ZoneID + # separator as necessary to return a valid RFC 4007 scoped IP. + match = ZONE_ID_RE.search(host) + if match: + start, end = match.span(1) + zone_id = host[start:end] + + if zone_id.startswith("%25") and zone_id != "%25": + zone_id = zone_id[3:] + else: + zone_id = zone_id[1:] + zone_id = "%" + _encode_invalid_chars(zone_id, UNRESERVED_CHARS) + return host[:start].lower() + zone_id + host[end:] + else: + return host.lower() + elif not IPV4_RE.match(host): + return six.ensure_str( + b".".join([_idna_encode(label) for label in host.split(".")]) + ) + return host + + +def _idna_encode(name): + if name and any(ord(x) >= 128 for x in name): + try: + from pip._vendor import idna + except ImportError: + six.raise_from( + LocationParseError("Unable to parse URL without the 'idna' module"), + None, + ) + try: + return idna.encode(name.lower(), strict=True, std3_rules=True) + except idna.IDNAError: + six.raise_from( + LocationParseError(u"Name '%s' is not a valid IDNA label" % name), None + ) + return name.lower().encode("ascii") + + +def _encode_target(target): + """Percent-encodes a request target so that there are no invalid characters""" + path, query = TARGET_RE.match(target).groups() + target = _encode_invalid_chars(path, PATH_CHARS) + query = _encode_invalid_chars(query, QUERY_CHARS) + if query is not None: + target += "?" + query + return target + + +def parse_url(url): + """ + Given a url, return a parsed :class:`.Url` namedtuple. Best-effort is + performed to parse incomplete urls. Fields not provided will be None. + This parser is RFC 3986 and RFC 6874 compliant. + + The parser logic and helper functions are based heavily on + work done in the ``rfc3986`` module. + + :param str url: URL to parse into a :class:`.Url` namedtuple. + + Partly backwards-compatible with :mod:`urlparse`. + + Example:: + + >>> parse_url('http://google.com/mail/') + Url(scheme='http', host='google.com', port=None, path='/mail/', ...) + >>> parse_url('google.com:80') + Url(scheme=None, host='google.com', port=80, path=None, ...) + >>> parse_url('/foo?bar') + Url(scheme=None, host=None, port=None, path='/foo', query='bar', ...) + """ + if not url: + # Empty + return Url() + + source_url = url + if not SCHEME_RE.search(url): + url = "//" + url + + try: + scheme, authority, path, query, fragment = URI_RE.match(url).groups() + normalize_uri = scheme is None or scheme.lower() in NORMALIZABLE_SCHEMES + + if scheme: + scheme = scheme.lower() + + if authority: + auth, _, host_port = authority.rpartition("@") + auth = auth or None + host, port = _HOST_PORT_RE.match(host_port).groups() + if auth and normalize_uri: + auth = _encode_invalid_chars(auth, USERINFO_CHARS) + if port == "": + port = None + else: + auth, host, port = None, None, None + + if port is not None: + port = int(port) + if not (0 <= port <= 65535): + raise LocationParseError(url) + + host = _normalize_host(host, scheme) + + if normalize_uri and path: + path = _remove_path_dot_segments(path) + path = _encode_invalid_chars(path, PATH_CHARS) + if normalize_uri and query: + query = _encode_invalid_chars(query, QUERY_CHARS) + if normalize_uri and fragment: + fragment = _encode_invalid_chars(fragment, FRAGMENT_CHARS) + + except (ValueError, AttributeError): + return six.raise_from(LocationParseError(source_url), None) + + # For the sake of backwards compatibility we put empty + # string values for path if there are any defined values + # beyond the path in the URL. + # TODO: Remove this when we break backwards compatibility. + if not path: + if query is not None or fragment is not None: + path = "" + else: + path = None + + # Ensure that each part of the URL is a `str` for + # backwards compatibility. + if isinstance(url, six.text_type): + ensure_func = six.ensure_text + else: + ensure_func = six.ensure_str + + def ensure_type(x): + return x if x is None else ensure_func(x) + + return Url( + scheme=ensure_type(scheme), + auth=ensure_type(auth), + host=ensure_type(host), + port=port, + path=ensure_type(path), + query=ensure_type(query), + fragment=ensure_type(fragment), + ) + + +def get_host(url): + """ + Deprecated. Use :func:`parse_url` instead. + """ + p = parse_url(url) + return p.scheme or "http", p.hostname, p.port diff --git a/myenv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py new file mode 100644 index 0000000..21b4590 --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py @@ -0,0 +1,152 @@ +import errno +import select +import sys +from functools import partial + +try: + from time import monotonic +except ImportError: + from time import time as monotonic + +__all__ = ["NoWayToWaitForSocketError", "wait_for_read", "wait_for_write"] + + +class NoWayToWaitForSocketError(Exception): + pass + + +# How should we wait on sockets? +# +# There are two types of APIs you can use for waiting on sockets: the fancy +# modern stateful APIs like epoll/kqueue, and the older stateless APIs like +# select/poll. The stateful APIs are more efficient when you have a lots of +# sockets to keep track of, because you can set them up once and then use them +# lots of times. But we only ever want to wait on a single socket at a time +# and don't want to keep track of state, so the stateless APIs are actually +# more efficient. So we want to use select() or poll(). +# +# Now, how do we choose between select() and poll()? On traditional Unixes, +# select() has a strange calling convention that makes it slow, or fail +# altogether, for high-numbered file descriptors. The point of poll() is to fix +# that, so on Unixes, we prefer poll(). +# +# On Windows, there is no poll() (or at least Python doesn't provide a wrapper +# for it), but that's OK, because on Windows, select() doesn't have this +# strange calling convention; plain select() works fine. +# +# So: on Windows we use select(), and everywhere else we use poll(). We also +# fall back to select() in case poll() is somehow broken or missing. + +if sys.version_info >= (3, 5): + # Modern Python, that retries syscalls by default + def _retry_on_intr(fn, timeout): + return fn(timeout) + +else: + # Old and broken Pythons. + def _retry_on_intr(fn, timeout): + if timeout is None: + deadline = float("inf") + else: + deadline = monotonic() + timeout + + while True: + try: + return fn(timeout) + # OSError for 3 <= pyver < 3.5, select.error for pyver <= 2.7 + except (OSError, select.error) as e: + # 'e.args[0]' incantation works for both OSError and select.error + if e.args[0] != errno.EINTR: + raise + else: + timeout = deadline - monotonic() + if timeout < 0: + timeout = 0 + if timeout == float("inf"): + timeout = None + continue + + +def select_wait_for_socket(sock, read=False, write=False, timeout=None): + if not read and not write: + raise RuntimeError("must specify at least one of read=True, write=True") + rcheck = [] + wcheck = [] + if read: + rcheck.append(sock) + if write: + wcheck.append(sock) + # When doing a non-blocking connect, most systems signal success by + # marking the socket writable. Windows, though, signals success by marked + # it as "exceptional". We paper over the difference by checking the write + # sockets for both conditions. (The stdlib selectors module does the same + # thing.) + fn = partial(select.select, rcheck, wcheck, wcheck) + rready, wready, xready = _retry_on_intr(fn, timeout) + return bool(rready or wready or xready) + + +def poll_wait_for_socket(sock, read=False, write=False, timeout=None): + if not read and not write: + raise RuntimeError("must specify at least one of read=True, write=True") + mask = 0 + if read: + mask |= select.POLLIN + if write: + mask |= select.POLLOUT + poll_obj = select.poll() + poll_obj.register(sock, mask) + + # For some reason, poll() takes timeout in milliseconds + def do_poll(t): + if t is not None: + t *= 1000 + return poll_obj.poll(t) + + return bool(_retry_on_intr(do_poll, timeout)) + + +def null_wait_for_socket(*args, **kwargs): + raise NoWayToWaitForSocketError("no select-equivalent available") + + +def _have_working_poll(): + # Apparently some systems have a select.poll that fails as soon as you try + # to use it, either due to strange configuration or broken monkeypatching + # from libraries like eventlet/greenlet. + try: + poll_obj = select.poll() + _retry_on_intr(poll_obj.poll, 0) + except (AttributeError, OSError): + return False + else: + return True + + +def wait_for_socket(*args, **kwargs): + # We delay choosing which implementation to use until the first time we're + # called. We could do it at import time, but then we might make the wrong + # decision if someone goes wild with monkeypatching select.poll after + # we're imported. + global wait_for_socket + if _have_working_poll(): + wait_for_socket = poll_wait_for_socket + elif hasattr(select, "select"): + wait_for_socket = select_wait_for_socket + else: # Platform-specific: Appengine. + wait_for_socket = null_wait_for_socket + return wait_for_socket(*args, **kwargs) + + +def wait_for_read(sock, timeout=None): + """Waits for reading to be available on a given socket. + Returns True if the socket is readable, or False if the timeout expired. + """ + return wait_for_socket(sock, read=True, timeout=timeout) + + +def wait_for_write(sock, timeout=None): + """Waits for writing to be available on a given socket. + Returns True if the socket is readable, or False if the timeout expired. + """ + return wait_for_socket(sock, write=True, timeout=timeout) diff --git a/myenv/Lib/site-packages/pip/_vendor/vendor.txt b/myenv/Lib/site-packages/pip/_vendor/vendor.txt new file mode 100644 index 0000000..2ba053a --- /dev/null +++ b/myenv/Lib/site-packages/pip/_vendor/vendor.txt @@ -0,0 +1,18 @@ +CacheControl==0.14.0 +distlib==0.3.9 +distro==1.9.0 +msgpack==1.0.8 +packaging==24.1 +platformdirs==4.2.2 +pyproject-hooks==1.0.0 +requests==2.32.3 + certifi==2024.8.30 + idna==3.7 + urllib3==1.26.20 +rich==13.7.1 + pygments==2.18.0 + typing_extensions==4.12.2 +resolvelib==1.0.1 +setuptools==70.3.0 +tomli==2.0.1 +truststore==0.10.0 diff --git a/myenv/Lib/site-packages/pip/py.typed b/myenv/Lib/site-packages/pip/py.typed new file mode 100644 index 0000000..493b53e --- /dev/null +++ b/myenv/Lib/site-packages/pip/py.typed @@ -0,0 +1,4 @@ +pip is a command line program. While it is implemented in Python, and so is +available for import, you must not use pip's internal APIs in this way. Typing +information is provided as a convenience only and is not a guarantee. Expect +unannounced changes to the API and types in releases. diff --git a/myenv/Scripts/Activate.ps1 b/myenv/Scripts/Activate.ps1 new file mode 100644 index 0000000..afb1bc4 --- /dev/null +++ b/myenv/Scripts/Activate.ps1 @@ -0,0 +1,546 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } + $env:VIRTUAL_ENV_PROMPT = $Prompt +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" + +# SIG # Begin signature block +# MII3ewYJKoZIhvcNAQcCoII3bDCCN2gCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBnL745ElCYk8vk +# dBtMuQhLeWJ3ZGfzKW4DHCYzAn+QB6CCG9IwggXMMIIDtKADAgECAhBUmNLR1FsZ +# lUgTecgRwIeZMA0GCSqGSIb3DQEBDAUAMHcxCzAJBgNVBAYTAlVTMR4wHAYDVQQK +# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xSDBGBgNVBAMTP01pY3Jvc29mdCBJZGVu +# dGl0eSBWZXJpZmljYXRpb24gUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAy +# MDAeFw0yMDA0MTYxODM2MTZaFw00NTA0MTYxODQ0NDBaMHcxCzAJBgNVBAYTAlVT +# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xSDBGBgNVBAMTP01pY3Jv +# c29mdCBJZGVudGl0eSBWZXJpZmljYXRpb24gUm9vdCBDZXJ0aWZpY2F0ZSBBdXRo +# b3JpdHkgMjAyMDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALORKgeD +# Bmf9np3gx8C3pOZCBH8Ppttf+9Va10Wg+3cL8IDzpm1aTXlT2KCGhFdFIMeiVPvH +# or+Kx24186IVxC9O40qFlkkN/76Z2BT2vCcH7kKbK/ULkgbk/WkTZaiRcvKYhOuD +# PQ7k13ESSCHLDe32R0m3m/nJxxe2hE//uKya13NnSYXjhr03QNAlhtTetcJtYmrV +# qXi8LW9J+eVsFBT9FMfTZRY33stuvF4pjf1imxUs1gXmuYkyM6Nix9fWUmcIxC70 +# ViueC4fM7Ke0pqrrBc0ZV6U6CwQnHJFnni1iLS8evtrAIMsEGcoz+4m+mOJyoHI1 +# vnnhnINv5G0Xb5DzPQCGdTiO0OBJmrvb0/gwytVXiGhNctO/bX9x2P29Da6SZEi3 +# W295JrXNm5UhhNHvDzI9e1eM80UHTHzgXhgONXaLbZ7LNnSrBfjgc10yVpRnlyUK +# xjU9lJfnwUSLgP3B+PR0GeUw9gb7IVc+BhyLaxWGJ0l7gpPKWeh1R+g/OPTHU3mg +# trTiXFHvvV84wRPmeAyVWi7FQFkozA8kwOy6CXcjmTimthzax7ogttc32H83rwjj +# O3HbbnMbfZlysOSGM1l0tRYAe1BtxoYT2v3EOYI9JACaYNq6lMAFUSw0rFCZE4e7 +# swWAsk0wAly4JoNdtGNz764jlU9gKL431VulAgMBAAGjVDBSMA4GA1UdDwEB/wQE +# AwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTIftJqhSobyhmYBAcnz1AQ +# T2ioojAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQwFAAOCAgEAr2rd5hnn +# LZRDGU7L6VCVZKUDkQKL4jaAOxWiUsIWGbZqWl10QzD0m/9gdAmxIR6QFm3FJI9c +# Zohj9E/MffISTEAQiwGf2qnIrvKVG8+dBetJPnSgaFvlVixlHIJ+U9pW2UYXeZJF +# xBA2CFIpF8svpvJ+1Gkkih6PsHMNzBxKq7Kq7aeRYwFkIqgyuH4yKLNncy2RtNwx +# AQv3Rwqm8ddK7VZgxCwIo3tAsLx0J1KH1r6I3TeKiW5niB31yV2g/rarOoDXGpc8 +# FzYiQR6sTdWD5jw4vU8w6VSp07YEwzJ2YbuwGMUrGLPAgNW3lbBeUU0i/OxYqujY +# lLSlLu2S3ucYfCFX3VVj979tzR/SpncocMfiWzpbCNJbTsgAlrPhgzavhgplXHT2 +# 6ux6anSg8Evu75SjrFDyh+3XOjCDyft9V77l4/hByuVkrrOj7FjshZrM77nq81YY +# uVxzmq/FdxeDWds3GhhyVKVB0rYjdaNDmuV3fJZ5t0GNv+zcgKCf0Xd1WF81E+Al +# GmcLfc4l+gcK5GEh2NQc5QfGNpn0ltDGFf5Ozdeui53bFv0ExpK91IjmqaOqu/dk +# ODtfzAzQNb50GQOmxapMomE2gj4d8yu8l13bS3g7LfU772Aj6PXsCyM2la+YZr9T +# 03u4aUoqlmZpxJTG9F9urJh4iIAGXKKy7aIwggb+MIIE5qADAgECAhMzAAE6wJsA +# snAfNTDUAAAAATrAMA0GCSqGSIb3DQEBDAUAMFoxCzAJBgNVBAYTAlVTMR4wHAYD +# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKzApBgNVBAMTIk1pY3Jvc29mdCBJ +# RCBWZXJpZmllZCBDUyBFT0MgQ0EgMDIwHhcNMjQxMjAzMDk0MTAzWhcNMjQxMjA2 +# MDk0MTAzWjB8MQswCQYDVQQGEwJVUzEPMA0GA1UECBMGT3JlZ29uMRIwEAYDVQQH +# EwlCZWF2ZXJ0b24xIzAhBgNVBAoTGlB5dGhvbiBTb2Z0d2FyZSBGb3VuZGF0aW9u +# MSMwIQYDVQQDExpQeXRob24gU29mdHdhcmUgRm91bmRhdGlvbjCCAaIwDQYJKoZI +# hvcNAQEBBQADggGPADCCAYoCggGBAOb6O8bNcUcKFE6vSWXiMf3/EALRFfo4QQDq +# m/XTiKG7GeHjRzVGTGhooTagMmKc4m52JNEPsQxCwXYCcTz9bRt/I+CYfHcqIAKL +# Ga46L/7a7T6qFF0tcAX15uMED8xwApWO8GP4wYxGS/a0GD3OGpl2qsZmw0lKFm+f +# rD8ip4F4z6KrnmsVlC0qMdCndPH+2NAstO7k+ArRhqDvsu5Jt39O2M7LuaX6loEp +# 43CWmkr7i+cLlkNbRx5hBrN/8MJQDhnprS2a6y+3PGLNDDUvN9Yb9UMZFwu5xcjM +# AP8VqdQYmgdz7PZDlIncayelUgxG1Zdx6CWqngNOKpc4lkTKzxf3Q8m+awDXCw7L +# 18jWlFL1Jki2khRmU4HhPzKf2WcgQCHtUPekmvnNUeNFT3TZsxXyhXuDTmB+BOV7 +# TpUO594HbMIhdktkdZ2mA/mcKPN4NnYJy55pUmwQIOuqPY1dlR+nv2ko466xxd8x +# pUO3R/pAse5WXaNx6fy9jj0ChNuNmQIDAQABo4ICGTCCAhUwDAYDVR0TAQH/BAIw +# ADAOBgNVHQ8BAf8EBAMCB4AwPAYDVR0lBDUwMwYKKwYBBAGCN2EBAAYIKwYBBQUH +# AwMGGysGAQQBgjdhgqKNuwqmkohkgZH0oEWCk/3hbzAdBgNVHQ4EFgQUJrRvpIJJ +# B/SCh4T20kb8yCbcj7MwHwYDVR0jBBgwFoAUZZ9RzoVofy+KRYiq3acxux4NAF4w +# ZwYDVR0fBGAwXjBcoFqgWIZWaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w +# cy9jcmwvTWljcm9zb2Z0JTIwSUQlMjBWZXJpZmllZCUyMENTJTIwRU9DJTIwQ0El +# MjAwMi5jcmwwgaUGCCsGAQUFBwEBBIGYMIGVMGQGCCsGAQUFBzAChlhodHRwOi8v +# d3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMElEJTIw +# VmVyaWZpZWQlMjBDUyUyMEVPQyUyMENBJTIwMDIuY3J0MC0GCCsGAQUFBzABhiFo +# dHRwOi8vb25lb2NzcC5taWNyb3NvZnQuY29tL29jc3AwZgYDVR0gBF8wXTBRBgwr +# BgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0cDovL3d3dy5taWNyb3NvZnQu +# Y29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMAgGBmeBDAEEATANBgkqhkiG +# 9w0BAQwFAAOCAgEAvsdWH8gSPoZt5yblw1MghytJmjs6zeME3/iAYXPzcwwXfB08 +# RLMesfF0svS4P1GEdP+CcIIqFl7/48ECI4eregPZjypMWhqPQQWuT8+gMDiWRtYj +# KGEhu+faY+U8Bqv/OrRRS6MHNAoJAGH3t/oxeLXTaeW1URtswm+gvEx+K9KFpHP9 +# j1mF0wh4wuVvUJAGYc4KpcorLk7P9vQTLCDmFZi08HMcRYQURHEpskWiSS4czpfv +# ImpRPD5RbIqkQnK7M5wX8X+cI/0hCUb0TjIuxBo92FU726ivQ2vqpzuuRo2Uw1wR +# hzerJI2Bilj66tBzPNn02EZt978Ju/f6+N7b0tFD0kSz1DwTYAR3eK9CwRxIXCGf +# 2rrHz/T9ATSlF71xw2g0R5HBPaJKaySj7PXIU5Nq9sEVCuUSJmNmiZRdBkF76LKH +# mg3cCM5QbgpKfnc46Hi6I7D9q8F1XF0IJwRgP/fwDquWnkTHOoWC9nA0+eLedlAh +# oKYQGEKzAdNLdXdWyUNTjnUKhEXLQgPyDPP9ZLHK+jjQwc6ptwPoX3uuSHtrNmnu +# EIFibcHCp6JVIIu5B94xKS99hGXhaxbuaOMyCvTEVmoLMxAWpF1lVyUUTgj9Lr4W +# /qdqUE+7a1QTDLLswxY8djZCJejn0pDLoKoNfjaeIaRKXXrRs2BND+qKDaowggda +# MIIFQqADAgECAhMzAAAABft6XDITYd9dAAAAAAAFMA0GCSqGSIb3DQEBDAUAMGMx +# CzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xNDAy +# BgNVBAMTK01pY3Jvc29mdCBJRCBWZXJpZmllZCBDb2RlIFNpZ25pbmcgUENBIDIw +# MjEwHhcNMjEwNDEzMTczMTUzWhcNMjYwNDEzMTczMTUzWjBaMQswCQYDVQQGEwJV +# UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSswKQYDVQQDEyJNaWNy +# b3NvZnQgSUQgVmVyaWZpZWQgQ1MgRU9DIENBIDAyMIICIjANBgkqhkiG9w0BAQEF +# AAOCAg8AMIICCgKCAgEA0hqZfD8ykKTA6CDbWvshmBpDoBf7Lv132RVuSqVwQO3a +# ALLkuRnnTIoRmMGo0fIMQrtwR6UHB06xdqOkAfqB6exubXTHu44+duHUCdE4ngjE +# LBQyluMuSOnHaEdveIbt31OhMEX/4nQkph4+Ah0eR4H2sTRrVKmKrlOoQlhia73Q +# g2dHoitcX1uT1vW3Knpt9Mt76H7ZHbLNspMZLkWBabKMl6BdaWZXYpPGdS+qY80g +# DaNCvFq0d10UMu7xHesIqXpTDT3Q3AeOxSylSTc/74P3og9j3OuemEFauFzL55t1 +# MvpadEhQmD8uFMxFv/iZOjwvcdY1zhanVLLyplz13/NzSoU3QjhPdqAGhRIwh/YD +# zo3jCdVJgWQRrW83P3qWFFkxNiME2iO4IuYgj7RwseGwv7I9cxOyaHihKMdT9Neo +# SjpSNzVnKKGcYMtOdMtKFqoV7Cim2m84GmIYZTBorR/Po9iwlasTYKFpGZqdWKyY +# nJO2FV8oMmWkIK1iagLLgEt6ZaR0rk/1jUYssyTiRqWr84Qs3XL/V5KUBEtUEQfQ +# /4RtnI09uFFUIGJZV9mD/xOUksWodGrCQSem6Hy261xMJAHqTqMuDKgwi8xk/mfl +# r7yhXPL73SOULmu1Aqu4I7Gpe6QwNW2TtQBxM3vtSTmdPW6rK5y0gED51RjsyK0C +# AwEAAaOCAg4wggIKMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADAd +# BgNVHQ4EFgQUZZ9RzoVofy+KRYiq3acxux4NAF4wVAYDVR0gBE0wSzBJBgRVHSAA +# MEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMv +# RG9jcy9SZXBvc2l0b3J5Lmh0bTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTAS +# BgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFNlBKbAPD2Ns72nX9c0pnqRI +# ajDmMHAGA1UdHwRpMGcwZaBjoGGGX2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9w +# a2lvcHMvY3JsL01pY3Jvc29mdCUyMElEJTIwVmVyaWZpZWQlMjBDb2RlJTIwU2ln +# bmluZyUyMFBDQSUyMDIwMjEuY3JsMIGuBggrBgEFBQcBAQSBoTCBnjBtBggrBgEF +# BQcwAoZhaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNy +# b3NvZnQlMjBJRCUyMFZlcmlmaWVkJTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAy +# MDIxLmNydDAtBggrBgEFBQcwAYYhaHR0cDovL29uZW9jc3AubWljcm9zb2Z0LmNv +# bS9vY3NwMA0GCSqGSIb3DQEBDAUAA4ICAQBFSWDUd08X4g5HzvVfrB1SiV8pk6XP +# HT9jPkCmvU/uvBzmZRAjYk2gKYR3pXoStRJaJ/lhjC5Dq/2R7P1YRZHCDYyK0zvS +# RMdE6YQtgGjmsdhzD0nCS6hVVcgfmNQscPJ1WHxbvG5EQgYQ0ZED1FN0MOPQzWe1 +# zbH5Va0dSxtnodBVRjnyDYEm7sNEcvJHTG3eXzAyd00E5KDCsEl4z5O0mvXqwaH2 +# PS0200E6P4WqLwgs/NmUu5+Aa8Lw/2En2VkIW7Pkir4Un1jG6+tj/ehuqgFyUPPC +# h6kbnvk48bisi/zPjAVkj7qErr7fSYICCzJ4s4YUNVVHgdoFn2xbW7ZfBT3QA9zf +# hq9u4ExXbrVD5rxXSTFEUg2gzQq9JHxsdHyMfcCKLFQOXODSzcYeLpCd+r6GcoDB +# ToyPdKccjC6mAq6+/hiMDnpvKUIHpyYEzWUeattyKXtMf+QrJeQ+ny5jBL+xqdOO +# PEz3dg7qn8/oprUrUbGLBv9fWm18fWXdAv1PCtLL/acMLtHoyeSVMKQYqDHb3Qm0 +# uQ+NQ0YE4kUxSQa+W/cCzYAI32uN0nb9M4Mr1pj4bJZidNkM4JyYqezohILxYkgH +# bboJQISrQWrm5RYdyhKBpptJ9JJn0Z63LjdnzlOUxjlsAbQir2Wmz/OJE703BbHm +# QZRwzPx1vu7S5zCCB54wggWGoAMCAQICEzMAAAAHh6M0o3uljhwAAAAAAAcwDQYJ +# KoZIhvcNAQEMBQAwdzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29mdCBD +# b3Jwb3JhdGlvbjFIMEYGA1UEAxM/TWljcm9zb2Z0IElkZW50aXR5IFZlcmlmaWNh +# dGlvbiBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDIwMB4XDTIxMDQwMTIw +# MDUyMFoXDTM2MDQwMTIwMTUyMFowYzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1p +# Y3Jvc29mdCBDb3Jwb3JhdGlvbjE0MDIGA1UEAxMrTWljcm9zb2Z0IElEIFZlcmlm +# aWVkIENvZGUgU2lnbmluZyBQQ0EgMjAyMTCCAiIwDQYJKoZIhvcNAQEBBQADggIP +# ADCCAgoCggIBALLwwK8ZiCji3VR6TElsaQhVCbRS/3pK+MHrJSj3Zxd3KU3rlfL3 +# qrZilYKJNqztA9OQacr1AwoNcHbKBLbsQAhBnIB34zxf52bDpIO3NJlfIaTE/xrw +# eLoQ71lzCHkD7A4As1Bs076Iu+mA6cQzsYYH/Cbl1icwQ6C65rU4V9NQhNUwgrx9 +# rGQ//h890Q8JdjLLw0nV+ayQ2Fbkd242o9kH82RZsH3HEyqjAB5a8+Ae2nPIPc8s +# ZU6ZE7iRrRZywRmrKDp5+TcmJX9MRff241UaOBs4NmHOyke8oU1TYrkxh+YeHgfW +# o5tTgkoSMoayqoDpHOLJs+qG8Tvh8SnifW2Jj3+ii11TS8/FGngEaNAWrbyfNrC6 +# 9oKpRQXY9bGH6jn9NEJv9weFxhTwyvx9OJLXmRGbAUXN1U9nf4lXezky6Uh/cgjk +# Vd6CGUAf0K+Jw+GE/5VpIVbcNr9rNE50Sbmy/4RTCEGvOq3GhjITbCa4crCzTTHg +# YYjHs1NbOc6brH+eKpWLtr+bGecy9CrwQyx7S/BfYJ+ozst7+yZtG2wR461uckFu +# 0t+gCwLdN0A6cFtSRtR8bvxVFyWwTtgMMFRuBa3vmUOTnfKLsLefRaQcVTgRnzeL +# zdpt32cdYKp+dhr2ogc+qM6K4CBI5/j4VFyC4QFeUP2YAidLtvpXRRo3AgMBAAGj +# ggI1MIICMTAOBgNVHQ8BAf8EBAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0O +# BBYEFNlBKbAPD2Ns72nX9c0pnqRIajDmMFQGA1UdIARNMEswSQYEVR0gADBBMD8G +# CCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3Mv +# UmVwb3NpdG9yeS5odG0wGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwDwYDVR0T +# AQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTIftJqhSobyhmYBAcnz1AQT2ioojCBhAYD +# VR0fBH0wezB5oHegdYZzaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9j +# cmwvTWljcm9zb2Z0JTIwSWRlbnRpdHklMjBWZXJpZmljYXRpb24lMjBSb290JTIw +# Q2VydGlmaWNhdGUlMjBBdXRob3JpdHklMjAyMDIwLmNybDCBwwYIKwYBBQUHAQEE +# gbYwgbMwgYEGCCsGAQUFBzAChnVodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp +# b3BzL2NlcnRzL01pY3Jvc29mdCUyMElkZW50aXR5JTIwVmVyaWZpY2F0aW9uJTIw +# Um9vdCUyMENlcnRpZmljYXRlJTIwQXV0aG9yaXR5JTIwMjAyMC5jcnQwLQYIKwYB +# BQUHMAGGIWh0dHA6Ly9vbmVvY3NwLm1pY3Jvc29mdC5jb20vb2NzcDANBgkqhkiG +# 9w0BAQwFAAOCAgEAfyUqnv7Uq+rdZgrbVyNMul5skONbhls5fccPlmIbzi+OwVdP +# Q4H55v7VOInnmezQEeW4LqK0wja+fBznANbXLB0KrdMCbHQpbLvG6UA/Xv2pfpVI +# E1CRFfNF4XKO8XYEa3oW8oVH+KZHgIQRIwAbyFKQ9iyj4aOWeAzwk+f9E5StNp5T +# 8FG7/VEURIVWArbAzPt9ThVN3w1fAZkF7+YU9kbq1bCR2YD+MtunSQ1Rft6XG7b4 +# e0ejRA7mB2IoX5hNh3UEauY0byxNRG+fT2MCEhQl9g2i2fs6VOG19CNep7SquKaB +# jhWmirYyANb0RJSLWjinMLXNOAga10n8i9jqeprzSMU5ODmrMCJE12xS/NWShg/t +# uLjAsKP6SzYZ+1Ry358ZTFcx0FS/mx2vSoU8s8HRvy+rnXqyUJ9HBqS0DErVLjQw +# K8VtsBdekBmdTbQVoCgPCqr+PDPB3xajYnzevs7eidBsM71PINK2BoE2UfMwxCCX +# 3mccFgx6UsQeRSdVVVNSyALQe6PT12418xon2iDGE81OGCreLzDcMAZnrUAx4XQL +# Uz6ZTl65yPUiOh3k7Yww94lDf+8oG2oZmDh5O1Qe38E+M3vhKwmzIeoB1dVLlz4i +# 3IpaDcR+iuGjH2TdaC1ZOmBXiCRKJLj4DT2uhJ04ji+tHD6n58vhavFIrmcxghr/ +# MIIa+wIBATBxMFoxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y +# cG9yYXRpb24xKzApBgNVBAMTIk1pY3Jvc29mdCBJRCBWZXJpZmllZCBDUyBFT0Mg +# Q0EgMDICEzMAATrAmwCycB81MNQAAAABOsAwDQYJYIZIAWUDBAIBBQCggcgwGQYJ +# KoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQB +# gjcCARUwLwYJKoZIhvcNAQkEMSIEIGcBno/ti9PCrR9sXrajsTvlHQvGxbk63JiI +# URJByQuGMFwGCisGAQQBgjcCAQwxTjBMoEaARABCAHUAaQBsAHQAOgAgAFIAZQBs +# AGUAYQBzAGUAXwB2ADMALgAxADIALgA4AF8AMgAwADIANAAxADIAMAAzAC4AMAAx +# oQKAADANBgkqhkiG9w0BAQEFAASCAYA12ir0FCUD2IvWiy7MqsqAciOsLhTQmvF0 +# /jSGXaCIrGUzlySVKbuQ47XFYcT5xIoz7ChRS/OvrKCJ0eTjFHn7osTLM4BrKZFi +# G0CwUrFom77qPC4XQQY238IGPMiJZCza+PbrXun7tGNqJSH4uCybQMnB1XH3W9qy +# o3Mn89gnba36QesJ8wl5no+HvIS0LnylhzvDcqdO3yI/EC22XJ/f/XENtDIRI+nC +# nwFuo22Ez2ElzjpFtn9kLyA0/Z8Q6SEcboSbpu6daFBgFe6Ztfrs2ga8C4BRgale +# NJJjL9EqnuHQmMC6TctFqw6bMdQi1OhJsKOaPrp3jWY1np+1jI7X+jcrJ0ZYrTpN +# iH5tIgbYarDF6D2HA8Tka5vfKtG7Q2KBOWH9PqJIAjwHCr0XaIQa1NbkAYFmsVMH +# 4MJluljUeMx3Gh9wfCx1R9485sNAFp+Triawf20YtgbTXPw+e0gzjE8vGDBht6i7 +# +8Yrqbq00uH3Y+JtjWAis+oi8ZrMPDGhghgUMIIYEAYKKwYBBAGCNwMDATGCGAAw +# ghf8BgkqhkiG9w0BBwKgghftMIIX6QIBAzEPMA0GCWCGSAFlAwQCAQUAMIIBYgYL +# KoZIhvcNAQkQAQSgggFRBIIBTTCCAUkCAQEGCisGAQQBhFkKAwEwMTANBglghkgB +# ZQMEAgEFAAQgZFXp7g3d1kespGffVXL6HjYsxYd3bAR3mRUetFkYstkCBmdEaWXk +# sRgTMjAyNDEyMDMyMDE0MzIuODM2WjAEgAIB9KCB4aSB3jCB2zELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFt +# ZXJpY2EgT3BlcmF0aW9uczEnMCUGA1UECxMeblNoaWVsZCBUU1MgRVNOOjc4MDAt +# MDVFMC1EOTQ3MTUwMwYDVQQDEyxNaWNyb3NvZnQgUHVibGljIFJTQSBUaW1lIFN0 +# YW1waW5nIEF1dGhvcml0eaCCDyEwggeCMIIFaqADAgECAhMzAAAABeXPD/9mLsmH +# AAAAAAAFMA0GCSqGSIb3DQEBDAUAMHcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVN +# aWNyb3NvZnQgQ29ycG9yYXRpb24xSDBGBgNVBAMTP01pY3Jvc29mdCBJZGVudGl0 +# eSBWZXJpZmljYXRpb24gUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAyMDAe +# Fw0yMDExMTkyMDMyMzFaFw0zNTExMTkyMDQyMzFaMGExCzAJBgNVBAYTAlVTMR4w +# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29m +# dCBQdWJsaWMgUlNBIFRpbWVzdGFtcGluZyBDQSAyMDIwMIICIjANBgkqhkiG9w0B +# AQEFAAOCAg8AMIICCgKCAgEAnnznUmP94MWfBX1jtQYioxwe1+eXM9ETBb1lRkd3 +# kcFdcG9/sqtDlwxKoVIcaqDb+omFio5DHC4RBcbyQHjXCwMk/l3TOYtgoBjxnG/e +# ViS4sOx8y4gSq8Zg49REAf5huXhIkQRKe3Qxs8Sgp02KHAznEa/Ssah8nWo5hJM1 +# xznkRsFPu6rfDHeZeG1Wa1wISvlkpOQooTULFm809Z0ZYlQ8Lp7i5F9YciFlyAKw +# n6yjN/kR4fkquUWfGmMopNq/B8U/pdoZkZZQbxNlqJOiBGgCWpx69uKqKhTPVi3g +# VErnc/qi+dR8A2MiAz0kN0nh7SqINGbmw5OIRC0EsZ31WF3Uxp3GgZwetEKxLms7 +# 3KG/Z+MkeuaVDQQheangOEMGJ4pQZH55ngI0Tdy1bi69INBV5Kn2HVJo9XxRYR/J +# PGAaM6xGl57Ei95HUw9NV/uC3yFjrhc087qLJQawSC3xzY/EXzsT4I7sDbxOmM2r +# l4uKK6eEpurRduOQ2hTkmG1hSuWYBunFGNv21Kt4N20AKmbeuSnGnsBCd2cjRKG7 +# 9+TX+sTehawOoxfeOO/jR7wo3liwkGdzPJYHgnJ54UxbckF914AqHOiEV7xTnD1a +# 69w/UTxwjEugpIPMIIE67SFZ2PMo27xjlLAHWW3l1CEAFjLNHd3EQ79PUr8FUXet +# Xr0CAwEAAaOCAhswggIXMA4GA1UdDwEB/wQEAwIBhjAQBgkrBgEEAYI3FQEEAwIB +# ADAdBgNVHQ4EFgQUa2koOjUvSGNAz3vYr0npPtk92yEwVAYDVR0gBE0wSzBJBgRV +# HSAAMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lv +# cHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkr +# BgEEAYI3FAIEDB4KAFMAdQBiAEMAQTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQY +# MBaAFMh+0mqFKhvKGZgEByfPUBBPaKiiMIGEBgNVHR8EfTB7MHmgd6B1hnNodHRw +# Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBJZGVu +# dGl0eSUyMFZlcmlmaWNhdGlvbiUyMFJvb3QlMjBDZXJ0aWZpY2F0ZSUyMEF1dGhv +# cml0eSUyMDIwMjAuY3JsMIGUBggrBgEFBQcBAQSBhzCBhDCBgQYIKwYBBQUHMAKG +# dWh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0 +# JTIwSWRlbnRpdHklMjBWZXJpZmljYXRpb24lMjBSb290JTIwQ2VydGlmaWNhdGUl +# MjBBdXRob3JpdHklMjAyMDIwLmNydDANBgkqhkiG9w0BAQwFAAOCAgEAX4h2x35t +# tVoVdedMeGj6TuHYRJklFaW4sTQ5r+k77iB79cSLNe+GzRjv4pVjJviceW6AF6yc +# WoEYR0LYhaa0ozJLU5Yi+LCmcrdovkl53DNt4EXs87KDogYb9eGEndSpZ5ZM74LN +# vVzY0/nPISHz0Xva71QjD4h+8z2XMOZzY7YQ0Psw+etyNZ1CesufU211rLslLKsO +# 8F2aBs2cIo1k+aHOhrw9xw6JCWONNboZ497mwYW5EfN0W3zL5s3ad4Xtm7yFM7Uj +# rhc0aqy3xL7D5FR2J7x9cLWMq7eb0oYioXhqV2tgFqbKHeDick+P8tHYIFovIP7Y +# G4ZkJWag1H91KlELGWi3SLv10o4KGag42pswjybTi4toQcC/irAodDW8HNtX+cbz +# 0sMptFJK+KObAnDFHEsukxD+7jFfEV9Hh/+CSxKRsmnuiovCWIOb+H7DRon9Tlxy +# diFhvu88o0w35JkNbJxTk4MhF/KgaXn0GxdH8elEa2Imq45gaa8D+mTm8LWVydt4 +# ytxYP/bqjN49D9NZ81coE6aQWm88TwIf4R4YZbOpMKN0CyejaPNN41LGXHeCUMYm +# Bx3PkP8ADHD1J2Cr/6tjuOOCztfp+o9Nc+ZoIAkpUcA/X2gSMkgHAPUvIdtoSAHE +# UKiBhI6JQivRepyvWcl+JYbYbBh7pmgAXVswggeXMIIFf6ADAgECAhMzAAAAO4pp +# Wb4UBWRxAAAAAAA7MA0GCSqGSIb3DQEBDAUAMGExCzAJBgNVBAYTAlVTMR4wHAYD +# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBQ +# dWJsaWMgUlNBIFRpbWVzdGFtcGluZyBDQSAyMDIwMB4XDTI0MDIxNTIwMzYxMloX +# DTI1MDIxNTIwMzYxMlowgdsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xJTAjBgNVBAsTHE1pY3Jvc29mdCBBbWVyaWNhIE9wZXJhdGlvbnMxJzAl +# BgNVBAsTHm5TaGllbGQgVFNTIEVTTjo3ODAwLTA1RTAtRDk0NzE1MDMGA1UEAxMs +# TWljcm9zb2Z0IFB1YmxpYyBSU0EgVGltZSBTdGFtcGluZyBBdXRob3JpdHkwggIi +# MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCoN2tZV70ADgeArSKowvN7sD1W +# j9d2dKDzNsSpQZSD3kwUftP9qC4o/eDvvzx/AzPtJpkW5JpDqYKGIk3NSyyWFlY1 +# 2loL6mhkRO8K3lLLgZ9wAr68z+1W0NLs0Bd48QUtLfckAiToekndsqKFP28jZOKB +# U43nW2SiLEL1Wo2JUHFW5Crw16Bkms3b8U9etQKcErNDgTbUnxFbc73Dr47el6pp +# sy6ZMFK7aWzryjKZZfJwS1EmgT2CTQ4XY9qj2Fd9y3gSWNlP+XrGyCiPQ3oQ5cdr +# 9Ms59najNa0WxHbR7B8DPIxXRDxCmdQxHw3HL9N8SC017cvwA4hEuBMfix2gC7xi +# DyM+pTkl28BZ1ANnBznEMZs9rbHtKQpyz2bsNO0RYRP+xrIZtWduvwCWEB6k2H5U +# HSYErMUTm2T4VOQeGsjPRFco+t/5spFqPBsUr/774i4Z+fAfD91D1DFgiK5CVZgg +# k1StKFVDfQSKU5YRXI/TaM4bVocAW3S9rVgpQXCcWI/WJEBxYZn6SJ5dE45VlCwy +# C7HEZvCOrtM02rELlCcXbGdICL3FltPh9A2ZsDw0HA6/7NXF3mhyZ37yQ3sprS/M +# glb5ddY3/KL7nyCfehVuQDjFD2S/h7FCkM1tFFOJnHrn+UHaBsWS/LjyKdBLSK26 +# D/C6RPbM6m5MqeJQIwIDAQABo4IByzCCAccwHQYDVR0OBBYEFBmDkSnO3Ykx3QWs +# 933wkNmnHPEVMB8GA1UdIwQYMBaAFGtpKDo1L0hjQM972K9J6T7ZPdshMGwGA1Ud +# HwRlMGMwYaBfoF2GW2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY3Js +# L01pY3Jvc29mdCUyMFB1YmxpYyUyMFJTQSUyMFRpbWVzdGFtcGluZyUyMENBJTIw +# MjAyMC5jcmwweQYIKwYBBQUHAQEEbTBrMGkGCCsGAQUFBzAChl1odHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFB1YmxpYyUy +# MFJTQSUyMFRpbWVzdGFtcGluZyUyMENBJTIwMjAyMC5jcnQwDAYDVR0TAQH/BAIw +# ADAWBgNVHSUBAf8EDDAKBggrBgEFBQcDCDAOBgNVHQ8BAf8EBAMCB4AwZgYDVR0g +# BF8wXTBRBgwrBgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0cDovL3d3dy5t +# aWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1JlcG9zaXRvcnkuaHRtMAgGBmeBDAEE +# AjANBgkqhkiG9w0BAQwFAAOCAgEAKrAu6dFJYu6BKhLMdAxnEMzeKzJOMunyOeCM +# X9VC/meVFudURy3RKZMYUq0YFqQ0BsmfufswGszwfSnqaq116/fomiYokxBDQU/r +# 2u8sXod6NfSaD8/xx/pAFSU28YFYJh46+wdlR30wgf+8uJJMlpZ90fGiZ2crTw0K +# ZJWWSg53MlXTalBP7ZepnoVp9NmcRD9CDw+3IdkjzH1yCnfjbWp0HfBJdv7WJVlc +# nRM45MYqUX1x+5LCeeDnBw2pTj3cDKPNNtNhb8BHRcTJSH84tjVRTtpCtc1XZE5u +# +u0g1tCzLSm7AmR+SZjoClyzinuQuqk/8kx6YRow7Y8wBiZjP5LfriRreaDGpm97 +# efzhkwVKcsZsKnw007GhPRQWz52fSgMsRzg6rWx6MRBv3c+kBcefgLVVEI3gguge +# j9NwDXUnmH+DC6ir5NTQ3ZVLhwA2Fjbn+rctcXeozP5g/CS9Qx4C8RpkvyZGvBEB +# DyNFdU9r2HyMvFP/NaUCI0xC7oLde5FONeRFI01itSXk1N7R80JUW7jqRKvy7Ueq +# g6T6PwWfAd/R+vh7oQXhLH98dPJMODz3cdCtw5MeAnfcfUDEE8b6mzJK5iLJbnKY +# IQ+o9T/AcS0A1yCiClaBZBTociaFT5JStvCe7CDzvUWVBY375ezQ+l6M3tTzy63G +# pBDohSMxggdGMIIHQgIBATB4MGExCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBQdWJsaWMgUlNB +# IFRpbWVzdGFtcGluZyBDQSAyMDIwAhMzAAAAO4ppWb4UBWRxAAAAAAA7MA0GCWCG +# SAFlAwQCAQUAoIIEnzARBgsqhkiG9w0BCRACDzECBQAwGgYJKoZIhvcNAQkDMQ0G +# CyqGSIb3DQEJEAEEMBwGCSqGSIb3DQEJBTEPFw0yNDEyMDMyMDE0MzJaMC8GCSqG +# SIb3DQEJBDEiBCBNv25RRNMkG3WBRCPMirWBBK5bDR5n2jrt3NxatbZRRjCBuQYL +# KoZIhvcNAQkQAi8xgakwgaYwgaMwgaAEIJPbJzLEniYkzwpcwDrQSswJJ/yvXnr9 +# 1KPiO2/Blq7cMHwwZaRjMGExCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBQdWJsaWMgUlNBIFRp +# bWVzdGFtcGluZyBDQSAyMDIwAhMzAAAAO4ppWb4UBWRxAAAAAAA7MIIDYQYLKoZI +# hvcNAQkQAhIxggNQMIIDTKGCA0gwggNEMIICLAIBATCCAQmhgeGkgd4wgdsxCzAJ +# BgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25k +# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJTAjBgNVBAsTHE1pY3Jv +# c29mdCBBbWVyaWNhIE9wZXJhdGlvbnMxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVT +# Tjo3ODAwLTA1RTAtRDk0NzE1MDMGA1UEAxMsTWljcm9zb2Z0IFB1YmxpYyBSU0Eg +# VGltZSBTdGFtcGluZyBBdXRob3JpdHmiIwoBATAHBgUrDgMCGgMVAClO3IQMdSPc +# u/l/uN44JqTQiG/3oGcwZaRjMGExCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBQdWJsaWMgUlNB +# IFRpbWVzdGFtcGluZyBDQSAyMDIwMA0GCSqGSIb3DQEBCwUAAgUA6vlz6jAiGA8y +# MDI0MTIwMzEyMTEyMloYDzIwMjQxMjA0MTIxMTIyWjB3MD0GCisGAQQBhFkKBAEx +# LzAtMAoCBQDq+XPqAgEAMAoCAQACAiVbAgH/MAcCAQACAhKYMAoCBQDq+sVqAgEA +# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI +# AgEAAgMBhqAwDQYJKoZIhvcNAQELBQADggEBALcfsg+u49h09/2fVfz+1Oa0FPvl +# IbwTVUeWlo8UR47kMKA9YMmJ6keO8V0AZFgm2gpw7makh+I1YuB94yqAdmD927Y+ +# W/mDiAT8+42WeSa73vAM0vg0ec6fwS03d+R312Cz0qgZ6MfzqmHOQqSpmxX2hMrF +# fGwmZPaAgUwBovI0Hlv5L5Y4hUOF1nP0OOdkJYpqUJNv7Zf/i7cwJ2cUNHdrakld +# W/2arqSCAC9sduzylh2SYCkvrOgAy/AkAHlazB3iaX1KptwZj8yaK6IfXE9nlMy5 +# lMpyDoqyU2nBQaqxcJ2tFAnTqT5LNrDan1XtSTXokbRfZ52wUeNv02NIy7cwDQYJ +# KoZIhvcNAQEBBQAEggIAKSKc+LD6QvnR4RvbNgzgxW9+v7RnkF3ymYnzljaCs++W +# zZVRZxTGF1+ploDbpD9MvJiLgOqO5B5ROh2hfs3GtPBsC8vWek4glRhzja9HCTZT +# WBjsqT7zCj/cemZXBr91bImFKawdxy1PL+YeWYQieQ6f+nMRZzL9HT4qqXTuwrHt +# GbG7yUJvau7AT2jynHPZhQTO8vkHHyMbs2CXxO5D/SyDtqpszYJyCAl+V/jgaZZl +# KGN4Vyfh4fLCaTOGSpoAp1qQBICuHcT+3ZdZpUFbr9hyqBCgAGshqNGwEcjrPGc/ +# Sisb0AsTjGAJL9bprQ+94InpaRNdKFj2PwNZ3A02+Re8rWAdcH2vQ/NW7fDSD0aE +# MO26CnK7J+XG1HwVjsqivX/4XS5R1MVIMswcbSUiaouTAN33h5m/vsEMFFG46Qv2 +# wJYHr/5QzzqrRsMkuDMqECUBrfJXrIQhwiG8paMMv//91XHniJj8vfB8a1EWQLA3 +# +xqOcI9WGdLKzMSmalAOu3LE9PaVdeESNA8pp7EzmbgkzgkJ/uL/+c8ZQvxpXx6K +# DA4vpw2utiUATCPB1J8R+TXkLiSoIZUNNPzF3OndLm91Teziwgd9X2sWrfaBJh5r +# 70oKaRn7atZnxen4l5eUcas0WvsgM0Pb55UfhlPZeX1YC1bX2jpoYUblRMc6bCY= +# SIG # End signature block diff --git a/myenv/Scripts/activate b/myenv/Scripts/activate new file mode 100644 index 0000000..ef21b06 --- /dev/null +++ b/myenv/Scripts/activate @@ -0,0 +1,71 @@ +# This file must be used with "source bin/activate" *from bash* +# You cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # Call hash to forget past locations. Without forgetting + # past locations the $PATH changes we made may not be respected. + # See "man bash" for more details. hash is usually a builtin of your shell + hash -r 2> /dev/null + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + unset VIRTUAL_ENV_PROMPT + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +# on Windows, a path can contain colons and backslashes and has to be converted: +if [ "${OSTYPE:-}" = "cygwin" ] || [ "${OSTYPE:-}" = "msys" ] ; then + # transform D:\path\to\venv to /d/path/to/venv on MSYS + # and to /cygdrive/d/path/to/venv on Cygwin + export VIRTUAL_ENV=$(cygpath 'C:\Users\alexe\OneDrive\Рабочий стол\2laba_practika\myenv') +else + # use the path as-is + export VIRTUAL_ENV='C:\Users\alexe\OneDrive\Рабочий стол\2laba_practika\myenv' +fi + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/"Scripts":$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1='(myenv) '"${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT='(myenv) ' + export VIRTUAL_ENV_PROMPT +fi + +# Call hash to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +hash -r 2> /dev/null diff --git a/myenv/Scripts/activate.bat b/myenv/Scripts/activate.bat new file mode 100644 index 0000000..c7c1f12 --- /dev/null +++ b/myenv/Scripts/activate.bat @@ -0,0 +1,34 @@ +@echo off + +rem This file is UTF-8 encoded, so we need to update the current code page while executing it +for /f "tokens=2 delims=:." %%a in ('"%SystemRoot%\System32\chcp.com"') do ( + set _OLD_CODEPAGE=%%a +) +if defined _OLD_CODEPAGE ( + "%SystemRoot%\System32\chcp.com" 65001 > nul +) + +set "VIRTUAL_ENV=C:\Users\alexe\OneDrive\Рабочий стол\2laba_practika\myenv" + +if not defined PROMPT set PROMPT=$P$G + +if defined _OLD_VIRTUAL_PROMPT set PROMPT=%_OLD_VIRTUAL_PROMPT% +if defined _OLD_VIRTUAL_PYTHONHOME set PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME% + +set _OLD_VIRTUAL_PROMPT=%PROMPT% +set PROMPT=(myenv) %PROMPT% + +if defined PYTHONHOME set _OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME% +set PYTHONHOME= + +if defined _OLD_VIRTUAL_PATH set PATH=%_OLD_VIRTUAL_PATH% +if not defined _OLD_VIRTUAL_PATH set _OLD_VIRTUAL_PATH=%PATH% + +set "PATH=%VIRTUAL_ENV%\Scripts;%PATH%" +set "VIRTUAL_ENV_PROMPT=(myenv) " + +:END +if defined _OLD_CODEPAGE ( + "%SystemRoot%\System32\chcp.com" %_OLD_CODEPAGE% > nul + set _OLD_CODEPAGE= +) diff --git a/myenv/Scripts/deactivate.bat b/myenv/Scripts/deactivate.bat new file mode 100644 index 0000000..62a39a7 --- /dev/null +++ b/myenv/Scripts/deactivate.bat @@ -0,0 +1,22 @@ +@echo off + +if defined _OLD_VIRTUAL_PROMPT ( + set "PROMPT=%_OLD_VIRTUAL_PROMPT%" +) +set _OLD_VIRTUAL_PROMPT= + +if defined _OLD_VIRTUAL_PYTHONHOME ( + set "PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%" + set _OLD_VIRTUAL_PYTHONHOME= +) + +if defined _OLD_VIRTUAL_PATH ( + set "PATH=%_OLD_VIRTUAL_PATH%" +) + +set _OLD_VIRTUAL_PATH= + +set VIRTUAL_ENV= +set VIRTUAL_ENV_PROMPT= + +:END diff --git a/myenv/Scripts/pip.exe b/myenv/Scripts/pip.exe new file mode 100644 index 0000000000000000000000000000000000000000..4dd1d6c0ca104247bab8fb032ff73f6e32983b55 GIT binary patch literal 108446 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 JsBli#{2$2mO&kCK literal 0 HcmV?d00001 diff --git a/myenv/Scripts/pip3.12.exe b/myenv/Scripts/pip3.12.exe new file mode 100644 index 0000000000000000000000000000000000000000..4dd1d6c0ca104247bab8fb032ff73f6e32983b55 GIT binary patch literal 108446 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 JsBli#{2$2mO&kCK literal 0 HcmV?d00001 diff --git a/myenv/Scripts/pip3.exe b/myenv/Scripts/pip3.exe new file mode 100644 index 0000000000000000000000000000000000000000..4dd1d6c0ca104247bab8fb032ff73f6e32983b55 GIT binary patch literal 108446 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 JsBli#{2$2mO&kCK literal 0 HcmV?d00001 diff --git a/myenv/Scripts/python.exe b/myenv/Scripts/python.exe new file mode 100644 index 0000000000000000000000000000000000000000..1556a3d3dc46a8e22059910c3ab636b11fa5c720 GIT binary patch literal 274424 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 B*3SR{ literal 0 HcmV?d00001 diff --git a/myenv/Scripts/pythonw.exe b/myenv/Scripts/pythonw.exe new file mode 100644 index 0000000000000000000000000000000000000000..1b25d78e75e10272fa030659b132f08982c058f3 GIT binary patch literal 263528 zcmeFa3w%`7wfH}iWJrL7GboYx9&pqssFBcX!hp_!88{;ojRJxSf(9a1D-mV@p?Y-@-eaS;B3Be@1A65nVRnb~|!ssa;@hn|AOlG&;R7PU9JJ=ZXDqH zRo|UM*1MxShfJP(#{yr?{CT&}zx6A=s$1{AdtS_U+Z^Bg_}#uc?)HVQo#gwEc8_}A*S3V`UH9GB7E{kW(xK^ zq__iCLN3>bcV)RMB~Y8=3XYQv)8{Mt+}+u$*9^$TU|wDsQFC3;HA|yv0HDuYmQ5* zsv)0bS^b%OjhD_}Fu#fs7c($BKprFe&me~I% z{~1ZoBY_-O^N!3vBQf2dH`OrT4o0j4hIPz7m`2lRKYDTkRP4`zC=9b{hZurqe)bE=#<%X&H4NfKP(d4iE zYXB6n_8Zo5!+Ou2D{vAqe+j_4>xo*ehV_z>xQnW+Jp0)Pq>c?zrDilq9r`UZZ<%p( zcSYUpiTXisvfmp`g#1NL^-{B8j+yWv{9srIVwW1!R%Rq){%LmVQ)zGEaMHr1TccL9 zq^T;;wb< zg`2+Tc3Evk@*DmV*x8;2k?IdFE_G0%xWo?IuF4u!d!xyM=PsZUffs3Q6p|Xr{2T4- z04XF$de*6AI=*yky72L}0N-t&H{Ruf#y$LESg*h@>B9FPbGu5n3Q1(N8HxV%qEJN! zY}9I${ulnS+R}w-vReD=8{=1`3;Tn!d9+XbEF)Pk^};NdJ(lX%OQBv|WbGmK5lQuv zO5c2j!BmM}1Qz_fMq;VIXo`{iiN8`BxAJWfSkN|&kX5v;U#sdlMsrKIhD#fzw>HyT zyc@}iLz$TM(tn_yEVw~X_`xUXbm=}J$?dd5->?Q4(PY?bSo=5j6?n-I+z$&&AEgVo zAsrbNb?;I4%BB8F$*$G^UNEUYsMWn9(G@;di37v|=fJVHrwi*;>G&x|vhYSK-!O;L z_9igcp-pX+uB$0+)CPw9HAW)5M;jQfCW6= zGH;}@(5K)Uz@-bFFBA4MR+6&E4zVzRRKq;O{0I(h1V*iqyAax!f#}P)2Lyiv?yJ8Z&#F& zoD2gMCLEwbuxq*@jueOhtfW=7#McWUQ`TrNs24a(pRy5k=h$(pQ< zYSd-FXIQ)JnF+{d*#^Xg1T7$ONjJiR-;QWyL{d+-Yy@ zh3$?V!AVosuV!wxo0oJ+s10{yMp2!A7AYG90Xx4zs&113wNGDjw~KCCT`f@|i%OzaTj@S9NEf;t{yi;S z_${C)k-AGj>^+)JrzS>0L8Mkxh8|R(Iz+nX#qX#gN|~yzGOtLP$E3_)14f@_>3IoH z;e|OaOV3Yuyaa$^zx@a^duyuul!F!%jbZ-BFf8Rp>g0<{kiEhTDM-( z#(rS?1__vM9{Q$$_%g}1sX$b9GQB-XB)Ua)C{av}_B~F`>B4E>lAcY+=Ni_F(D@N* z@K27U(|{)LFv;6=D&WB}447LB4_T8{aS#v^Vi})*K4;Wm4kXag`&-)QpuXV1%W zr5Mh$vb1%LN#M~lD@jpbY-%^nw6}`aBKqHnCR(MAJ zhP?ufhf>In=Rx)kLH16e-2?|&l z0Df@mDqx=}1yskxZmkXUi)X_bN=}5zhQ&st+jy;ST=BlV`KznD$EWsO|Bck=vX3YQ zFqTI?^2GmG8yFKCVI(KIsi+xAVQuMsxxUhU z8`?jS5q{A(-3+~>&{+eghpD`DtDP@3>t?GKw%)xunZJx0T=u$eNj(Bz3A*)yrxJ9p zG6V0ZZe<-x1$uG<>UFcsaM9%QtkQi^B)3mhMqDUexc(aq=QhLya58=N)9xleETGa& z2;}Oq=IHU$jpU$f;MRVzf~4-QZq1r5yqiCsDJ%pV{O0T|=Azy99EZvoXg}+Q78Yn^ zNEen;sSJ|L1oNh3krlK(RI&i-I580h5cAPs;RB^Wy+dTW@Q)8GsUqabfw>^hJ7^I* zDy%J%`*k%!LE_18QY=|`I+BPi+awFGhkadCS}!qO^QrlEv3)c3*w@HU1!A!)sn@fI zpNv4kvD>m-aj((TTD3S&0rAN0e*nhhed_&=H?B#LiQh$jh2FSu|1VA zijujdxLLj5DTPi`FeS46XTX)bU2DD))e3t!%ilWYxDwhF9FY#LhRy7QkfUM0RdDD0 zESGuAt<{}PYW>#u)vcb%MDZehQ~}S^mH|BMBzV%ce(NzSx!U(T8Qz9n$nYW$dn6fJ zJ*QC`*sfGwaGhJ#)v(>}3mI)$j*EyuFN&QbbHdFEvDhi-W_q$R3%$?EP8Z%PupaG| zcaY@0%*mT)SpDrlInegeZf)Iu`^%5XjJTbp2=igG;G;w7wB3TXMMoYX3nZ=#)}`Yf zyS+@7Z9jM0YXN07r%orwi%yPzs)Zyj^8A`S&N74r<(86}nNBzdY}PpaaVkMX$cJQH z!}CY-?CPIZ0IQC;4?Vbx*U`2qnttZ3NPVkFJr|wv7-*I@EWwkv@N#WMMs( zN9UGp7z_>5g;C-ldamNwofpx-!*?PKe=O8T4M0iu?3Gmyvpeh9MwZ5&TjkyIY?MdB zGmPw#Gf4O{qFOy3Vx-zuPx{MFN4I+V5+_~09*%MucQ#6&x}{`mj$1mjC*CS}WTpU) z=J>iI-G)`Lr7Mzx(+~r88WOCbWo6Bbxf_%P0!pL{C#r`3@+d${S&lY3T936WU05zD zw6)wYXZy>*AnIqPMkhkm5wc)DK;>m+BrnCXNWe^io<*^AtC`MP`g5ua&b&n}<<-$rvx?C@cPmT`TtgX9lkYR2vGP3t->-0V-cD2!D{x%~q$R7#pjTKo}=SKrg z^ZQw2^Rk?$N&={|a> zf8D`&u5o|iTVJ7FO89lr@gOm-h6Ayjx_$9{`=-Zv*>3kQ5F4eFk^XY>VgP!Y%&c(^ z#B=SUwRDT-tVq@pZJR_$U4|AyAKlzlSn4I#QSm6NB|O8L*Fe zel#7-o*D7@YnMDS3_fD15HrjZQps(285)`-a-u`uPZwA^?PJ;Xr2cNc}346vtd1Elg&te6MH*v+mRIM!oiXP zyNvFV5XnO-Rb}dt5+IkfB|+qbqBH@Y2;o;P0bSoFiE3SxsF!L45f!Pg|F+bsfIT{_))o3}oGv4Q^Lw$Uoh^ zUR2p?Eeu8!l@j!KyXeA<2i5233)13{ARt0@gChm<;+Gj!#%LqEEi>+YJ>$O6+)xLE z0SoiZ4I-ai+Bdrft%x?^BL<%E(Z7I4rXJ~ck?uajIvsoA%0ShEuN;b>WiBboiJxXo z@+DUtI)2w%=FzN$g)5J{f{(ak1;WH7N{{i)Y_@+vQ;bBBVa?35MMEcS{~MY_FFnSG znc-$MOd~mFGLO_L=n2xOKIy`d!V+e4o)LI$e!BuJBYUR9j}BhRvoCYX7N1o1sLt8mELr>}hfj=SeX^pzcV$L8FH0ur)1O1G+Es68I; zzXwU6uY7O9oV(+R86SrG?@d%3wT>mGd>p^oFbjS&4MBB&$5q(6TRl(k;;MDI#x(YE zyJE#-X7$N(#fFTjk;fUHr;dG`Hjnxi`3;mg`40+dKWthsC}erg#Zsf2ZSGLQGl*a+ zm$?1}SQO~idtqyD*gBw_pXM%|qbK!T!5yru_dy7JK?roTjlb`^pg%ye0J3{7y5Ldw z($m+A>X|f-OJny@h7wNp^?njUfsUo8I+QrrI}tItb843B8FVV>dg#+u&t_f)<5thJ zglMMBT0bVJZT#b)1!t1!-B!>JuVs##Nm*z!!L+%FE9ZF#Mp2tkoE3C{#VdS{a_Hp6W5wR%c;WuTF8DWMHm zclLnxX@o=PZ3UlCKrm0<0$bxFR0W$yZH}|l_q=}t#3?w!Z;*Tk6KA&*B=;*kQn_T< zOF-NB*5C#ChPJVzh@?%#=-S3NPF-+yH>jX)ZP!sTo7%nSr`c05U(ZFB-wvpiTZ>&T zw{c{zab7{af?cqj2OYAozhS<<$w(C3odH<50G&AOqn<;jF6hhSOOr?eiRu0_1{Rwd z;JC%h7Rn4Y50rcE8j>T!xmjDc8I?d*joRIf?`t(}NRgVoEa)1~Ps;*(Ob5Sd*D+pOKdz@70Zrb(~%^cn06fdq3t+I&-cGo5UX`OXv=MBgY#gp)VDrzLj))7q|0 z-PiPbUjOZ&+th{b0YNu%-sVW4c~P;#6m<#wV$J+*>p`_o#BB7YUeKOx1UJ35%%#;$ zp)P$?QT(=uwI^!r2Eh!RE71uu!BPR~{y>}84{!o@^NC>lq3L)dW|KG7NOMt;qS;&Z z1~&_hL1kGqDZM$8Zc6;NhP5BF**1oYI?z|gS zP0}O%rQNYx^)l2tr_DVL9p2OYA<|rdHc(3M&A;bDZS^>%1Z0}(v{0+Nl*nGK{Drjg zPMOPT3p0UX(Ze!VXip2Dg{(ah^H7K0^hTcfx)$oc2gXCAec@2GuHC&^^(R!|CFZap z{kTou@|;fGd)}V7PdZWJGa2(#?o4|9zStq{*?p1hJ)yEwqFQL1aNG{5SX;M^s>XyS z!BxvHqvcr2T!2z`vJWDrofQpij`b7%jlU-hDxnBG3rAub-kUll6R`(o&WlZzqB=(T zCkMpes@4$>enfpb4O_OQasfaMCW6CNKSY_?Ic(rz8{2npCakjKtNk{G0fKf9O#rbwm-`wV$JhKhP~bXeZnDYcSZKrvE8jr5GQZa+yyHj zlrMHw>Aow!JQg%;HIs5VuFF8etZ7U-4)qe^z@!|Yskvh14p%0 zQ)q%x6r#!L{$Rwqxg=uUSr)Mt5dOVBQ@=%@p-*RvU9C-a)AG!^^A!6A=Ox#6!v-m~ zJ(Yqk`RcaD``If&RO-#{b#x-!Fx z6x$a=?36EcPN&ODjh0?4o&-Qe-NQf-WR$Hnjj7HZMpc%P-DKXE<63%JwCd^{qw4y+h?Uz!If8CKW^Ni*eNTos<@VCzm-=>(_%wYr`nfLskykswLH%rN-%A(&g-q1 z76?*_#XiHjInNd~#z;&nwl%Eaq6>>XE=7}BEcjF}Wa3_S;us^!9-#6aWFv<%J^y;_ zl}_9jzsnj1*)Z8(6k=R>Bdtx+744$JsG=fkd;e2#UHH*5mPrLWiM5W}H^HNZxh-AVDcIdE4CTRKo|<75 z{5v`9RiqPl&Bj{FCa+#;&$$b^RqzmLnLP$S`*+HINH+MTxpmxPmQ$>!UKKb6RzVec zOZVAjQWJK%k+ee0+o9zU20N1UbeHo7%LUaogxN8G*uzn05}u&|zz`lgA3CzrR>zodS#f0Xqesdl8y*m`{*l0|T745KsXHsIXOGxT_>t^mkAcl% zD3&hl3wD{UyyfY_gX}+>N2kUw2_?tnk_+OrVXd%Bmn)i|29;Flbm88m-Q~tdtQPRi z6@2fnQ*|5W^Er{g+gklybWg?ozfyQR+DWBh-6b9ZF&51%5_=>q`~#GxZM~q-&3%=* zb`rIz?GEuPkeW$(63cDm{s$E3)Dt~&j9vHP;H-RX&Llt^&XP7*veKs<_NeVrvlx4q zNb57B8>;E5+)(4{)5J24Lkhc9NXXtquTRD}brNb0qD##Y86%E*ppAv(SYZ(?#;K}H>`G?6ow^drmc_cSH#C6Iq189o5c`Z zV^m=i%x((Qk9jcqMtP0SBj-Z0b9;7GDE zpE*Cm6wyE3gc36d#e4oc^3$ijGyX_wP{hi?oSvVER7F>N4J+SmBp74UWsu`tcvr7+ zK7HmbU2D)U(6b*^UW>E_m&J(c0NNL}I;=bM?Nex9xO890YO8-ot9uOsM=@9F<_>)H zZuW+)En(|z>&4`KbbkIOG=D1;h!*86&y@$gZoP~j-|J{g-sD)aT5#eh$yPay@57VJL9Uo6iEr8N#0ySPEjazE!-%&w2q#wc|%wewJ_Y&5<;6O)4b^RY$dQ3U2%=~ zGrFh!q~$0WL2SBr`CrE@c}TI9=euF%VDVoJYf)>;B4(WptKBZm3q=m71%u`_yxKr& z4EnTz5ihSL+CbgMdyw}M-YaH33ZAVIYiuyHkQiGWO;mh~g=aJo{+W2e zusoWwDPoB6B4MVM4*M(Gaw>DL)=E4Lh?UJNK*ODr7Z8;?M~4t6VqlH){HW{-Fca7 zACiD|Z5c)t7IfA?!`f+NSI#PJTrC@uu%Ytg6Ghgi#=gA-O(!!{Wt=i83l_m1&tgZb zm9|z?8D~|9Aav_ij@vx?X&fKatcbPEUL}m72;j6y#2|~P{kATmo%Ki6xU)oq4qBnS z9H)_hW!-QVz(R?ftX_6vU0S(cL9nwZ(BlBiZ|mz$^3fbUZi$ZS!rBcc<#f zNE+d>jg@Cn23w3JsXy6gvK1kCJ97{^wsL^&HWHLnh{W1&Sno%z_R_RozBnhQRa7m` zvG*}|Mv{YaQ+*KgA&WU=pH{bsrA(MPYoPs0HEp*+r5rW{QrS$h!Lob3TAgfdlrPDP z=amOEmb1JBmi8lCo{t_gSsTiALd{O5t{d#8Nds zl{k86v;C#7qV1H(&oKG9Kz@esv&KGCem~p);&Ja|a7L~7N)PJgMayX1`>EVWRSo?# z!rn>mnzlPO8Vhp#b|X2JW?fTkKiwf-{T<~qi&&mKFN|I_6Xf^nO5d!IwGrCZF8cyj zda07`Vk>$Vd$6ZiPl0yC^BQM-(7rNhUr@%JeoM1`W4%ff`I0AknH(7Cv2x9dT0ikO zLVrwMQR|Ip((oc_Dy-)t*2@uVhrIy*w5aufe-By2Z_E0XzfE#O=>g&tAhKbn{X5aJ z$+e#(q?T1~zaZ*Z)iwDQ;>}g(e~JXOv4#iyvb$wiFRsQl68JK48e%vLGQi4Y78S=Y z$Npr0gx8Yn(yf&u=9XFAtA<;|w7w%a1?PtDrZ83RXQ~w6cm_tzm0eS1kzxHtCNXK8 z_0uN_Rai&m0K;5#QW1)aagi6#|&={IW+b}tV+-4+}HFh=d*DPL~2L3yt zUKnWie@Bv5WH=+J)vSX`UE`X!pP;-Q6=$yh@g^1lQ|8#=FLG)L|xuQ z#d?8)Gyao0%i@PF0Z6q$jL~HK*dx;(I#c){`6=caDm78@ZOK7P*NCWm3$&Rl zegxc=z+&04(whi-?TZ!TO=RkC#L{(LzLC9I=Fu8^U{?Z>A#1odb-Dd114LXiYogY; z5~HdwTn+``!9CPcYkv!lVe7`Hr*|4AAacU>@2uFSr?-RxbJoP>q4j*b{a#iF4fSFh zf^Jc3wtq1_7iA4J7pGDt@o5dP2hU1KvsMscS9~qG2?ep_J}FU*`Eae8?1@39OGii# z*jb3l6srcHruwQ!)T&smV-gK4!yx*gtZH-52ZM9R3_%&wR(%9ybA`_p8(RX8F&QL!9;wumX?d?i0+GA8r0LmW3@IF~o zHRUTNtbd4N(PTxfb0SIPP4)-SLR|NtMVq1lGEsyD3n#~E9}lIV3#nelA38TvGfwy7 zmEgm#2lvI)7~#x?SJeJSpfCh+Qp>QYkQeb%R$;Y5APWCBgy<=jaiVB-A35!>y`33R z2yP4C5p>d_FB7$Li^!H98FcfE=3ii4-ENOQOlq>?N&EIbG71W3P}@O+OOg~5<-rbfMCdaRvi#Bc=}`zn2Wux*v;aQaORz&X79IuMs}lonl~0+d8IPV zj#+u7GSz;`Kvb7eC~EBtK@kYWw4o^VlJd=Ea&jm&2*Je&s>fdtkl{SZMT?kL9kGC) zw#z9Yp7nrJ#lkY4AMi`R*oT?oHLvq>vS?s51)MoUGe-y{Cbh*G0r7xe*@GD!HQiDI z-?Yz2iOEQbZ>V*pBPr_qwN$GITD6B{3!|5`II2DL6Jk)R^KeOcyO+2SQ2}Jk3Jpf~ zE9R0MSM2g=RaK7tC%BYdn%J4)`ZpOTZ}DnWO+=Gx5=EmHipQr%tsnWlAm5oCj9=S} zu!i*wzvx}i7O_8#dUx@xWc|#*mJ?~UAS1L3N(`QbvpEqb`e$Z9Uycmwf~}`pWO5dY zgaW@(v#hr2keZAi^%oH<&MkoJ;o2F^wy{j9v|_6foq#n5N^K2Hx7epn68cIHVp}k* z!w}wHZp`xxG{Xxum28IYxNI-VCRIKYOPN6ZQ)I=4jY=wd{&Jw^9IGi|jGCl-{>39-1;v8ihhjFNnTiIfmg!=ke| z#e{{Du8wK^9?{l*L}8QfijVEWTBeoxgUlsrN_j>!o~nszO7V5&kalUSej}tG*EPxf zj5mia@w=f(_WZdkSNJ63!kLCOp~PIA=Za0SYn1|ZZAp~rw(7dPX!gEXP<#3Tzvy{L zd&HRt8x&=kFi<;1NnJ~ftV~N-k1)cDBe*0oyjVlsb~_6V+!5+j9;L)E0x6w=0{{w0 zxrRDb1(PzPlCt(Z7U7C##2z#YQ;-)sP!Yx*U&LBM6~7l%eAm4)^4gnO9ft4r(lJumMndX?0aAPMWi@lL7oz1wF zZ7dR+qFqi8$rPhDcv@woh)qGQox5QC>&Y+{eg;O-=fDs@=5AGA*^@b7nwB}r7aH=c z5`57ia`=uHS)bV3-xN_b7lj%@YX62e48uMnQRi<|s4l9MGf(SPc!HrOIo#la!dglY zN3BJajj8in_5~ET?-dx>X6zajU_bJ91+~)0o+(-{$Ia}Dccj)sN^nQZS4@kY)#}V+ zj24%Dh01T#7>NfIlFre+hzy=6M|-;b?u931_7+4_i!qAJG|s-k?-{kTf{@q2n}IH? zD*V+%4cTS?S`25fw=_SRjQFs96j|5hSbb9k(d0F}jxVxq$gu{X2UN*v8b~KSRUE}w zOS_%=qRh0Fq9w8?zQf+gfW}-AACd7sxY%6IuCyOX(!DFqfi)JkKc#NW5d9oXhVf=! z4Z1R=*gAn|VlGXRp@TgsV)YTVC94{=PAO$1fN4P@gna1I#iIVa6S=P>Y+-|EhI}Q;ss47fsiMo z!pkyi6QpCeHAF?}V2O#YQq@-7z z1LT|@Ao_YCq*_F_*;(kFIEvU8ke*^X_>q4#O%O(`?dMkd-=ZnX5@$Lg`lS36q>QJO=cfZ@y$P(DU{5&~*Dmhuc*fqrAjM$v$e& zRpr=AlbN`xB8SXtWOE{izWl-RnVwfEFU?QumVII=LdLHx7iT}RX-^0oG#pz-Xck~9?#R<_Jh|N=&Z|!}* zgN}Rbk9c5_l!G(q8mH*WH`D&L#F}z$%%NYm4O!U`Yr)r9%f+JNt;5(28RqV^k#4OW zUFM1(F_PE1?bmOS;U-6KV`oJXpUJ6+{5JcXdnCG9ZyBHGjwJfv)_`{R{0ycIb~9K| zWVMWi8eNPFPCaHp8tdpEf&e-Qr$4Q}c7n2od7i6f9FdMBbjBa617UGUP^m7bcyE&k zVc9@AyEDrhE26MrwgUsaroo)SV7hS7E$qiP3fuZ*V`ZppKKQ_pdoQMoHbXpS>9~hh z#XXzEKizR*LxONBGb)-D4s}ZU3+dEWMi94r&Z*rf0BBc@m~$6{X{Gp)2z}M9BuYeZ z=?Wsk>SupkqYR+CZLF#s9P4jirO4L3wWH_&&IfA8w2jUZi^2EEsOE+HJ^xA!t+Mhk zTbE*39DK377k*o!1AAhFtv2)ZtBlgk#tR(K$4!D`Nh7ZWxn#lFSK%6x&l#k60dE)b zW)Jv^!X%qhc=1!={jbkZIq&3Q&##8`$-;-6s9K4dDN)wAJjp(w#WRdLA@4YE3lAhF za`KbA0VteU1WS4|XJ#tdSd%p%(=V#1b%5QE_|>xh|K&|o2MdkqK9Ep~py_oW!QXQr z;q)?rJbgSnc+y+pql)7b;om00?B-PbmMc8SGG#y3 zkUjPcP+DUy(97F89HZw#K18PT^l0#rYj|O+@KdI5XW|Lv6wY zytvz|cmWsqLXKFrPv%u*NECnd3x$jJM$0|d0wI2`&V2+ynqVHfYFL}`!nR219wSj$ zN*YxaH`|3Uj=(A1*FHc2{aju*VD@W`46|=M2Z|h(Bbx?Mq78I2ywE3OI~P~iB!(l| zOIi80oCbo&O9eaGXRdE#;y0}N65=tWsv9-f=sJe=KR&!ASmI`HP3b)fwbtNpxm8Pc zduOvEx`vzaq4Hwx7*pK; zoCf~B&C8?J+KPHPger#iN)Z;bLWw8V6JgIe4+vGr*v?o~?`(C)&I9XsU--adZcnF> zo+9uAt?`Sv0O(>4y(~OG^;QMBE2MR&*EinVhng-(XZa|Gl zDxzXl+_71RzD0+z#S{qBp4J-iha1C2+y4jw^wyN3gj$MSMqi^gy-8@}ShF6O&qpY!2cg7Z?#Ti}OkqFpd@YQ8McdQtm zty~u7?N<=Q-~QZ4^4ct2d%8)t-loz-KXX^s#!qNSwfWH{TDT)Q?#1f*&GCNPy3_Ga z&N33YEL3ffslm^2eKkLb&XTuyZYUv^mysR3Z1e(xm$K^qRI`2-mGL&ZhPP0%vX*eL z8jjPS>2Oj)HS)Hhy06M-yu}-Nq8-k&vbsRMPp)yE(<(8TlRo_>=Q(SS^PK&P^PKC` zRQg>PJI|V+SG~uscAkq5;YmgLrHAF|7*f4hCJ5Hih%*HDI<<5;omc%x3)^IAt^Qu7 znCid*Z53XULZ49!AWQSGruLu6d*Bt#6f1YN9@wv~`W~STU#4*sSkRwrtU%lAoaBSr zD%s51aQuYi=Jq*GG8N2{oW0C zZPj}SAmCK0`0r=pCu^$?IPud|{Qa5u=@8M0pGExq1%k_LZPibmxVaKHQ{wK@Rz2dx z)kxe#iHm8g>Ycd75_g5fE!9@tBXJM-YpH=YR}bULrlWlqo!)*U@zsGxRnIydwps4Z zxB%{e^jf&D#CK0fEhnvdyMLNqs9S(L%%0^bM~;GHuz$Cs;xjo@l@-Seu;2gc5^e|8s)JKH&$F3k9vW-fL@@P~5V3U_A24rh(*x@fHe0vN59KAJ4?Yc(*w5Fdq3EGVw6p zcqe`q@$DLV7&eFuaP(yub&eKw#_a&!y+?TXedV*N1JcW>ZUe zQ!%00v^AB@re@U2)dRa0j23>ep4YXXwIm1S>DG?G9^KlaeZ5H!v|ER@Z#DLB6K-mH zJOLtjm%}*?rh16 zpJrGSST9{As%~~P!Rf{JS_;Z6y#mvu%T-IZocKU~-LX;pX2mYm1NOo%=`Gs>ZU zIslAnw3bJYZBU#(zG%;-1Z(HWU;|rL2lVIiq?mcsqdl~hQ0x*GKw4cP%&Oy)qt#g| z8Sk7K&ihABcJ@@%4#ag>>p$gKO_8;^$%>;9R>XI$%a6m*|Y9p4ljW zV2+$-X#Z{oPZYYI`g@v;QK0Jb_C5f%E^n7xMeuRJW;3zUeB%i1HmW9-*r&(_KYDtO zSylX6%ebgJ)bKou{7B$ajyhQ{*)o@>atS05eAc+)COh{@bZc{o;o4Y2wc_hPE?CWp zR?RTS1)==JV0B_(dYr+b2~^9V*rl-7DO3DX76Gh$*-K#!^ABG5+wekd)!&L2`rv-? z=Xl{I^ghK4Zl;xg@WS7rT!`KJx8jB4;==i7-c;WAm7v|3VTk*nw zve5c-ywH!SLGi*RES>(r3x9{aFrAHozm2}|23zERju$qgy(wOJ9i`+SyzqC(3zawj zt$5)jHdy~0FWkV?pm-sU0rhXp3oEC=UtCv#BTFSKpm?sjM>#b>jucq6l_cURoP|@H zPL59_2?Is6iGx;QtCGdWws8Hv6> zuSn=YwqGl7(y$^W^;=hXph;{}Qcvp%y=47PG<5yQ8&HOOZ>pOPWhL{y)!AFCL&Ns! z$*UpZzH0MW`N9DW%_H57hdepCSxwq=ZQ66(V3Wv>n7YtTSF~Fz%YZyw{33gg3Jt>v z9Rlh>wFdaV9Df{jD#H!?Bi2eWub)JBxmL|Of$khA(v8G*up(EyY-7z^!rIm${5VX< z>9EjRHxFrg(_yYAF&j(h3Z6&H*%auew4T)%(w=UFN!dq)&@2xjbX)3YTvFjM>G8yM zh9M;Wd&lp8Hin>~jAM4D_Qi@J)9bm$UmVG;pEHtWE&4wh%YQ>WK6gBbi^Rzy?gYO2 z{PA1?S#HdXXG0BW#`KQJkvD`&pF66l=&v2s-}%B(?d%pWnBOL;U_%cxO;I2pmYA6ZR%OhHuYMWoGs4-d0pGoYfulA>&bzrbx&T@ z!g+DG-M2;}C;DXn&FarCaj=2ixAF=+Rji2|6Xl|ui8y<4Ty`S%J#jZ-d)X&D%R$*g z4#_^7A+MG4I!*Rq{Wr;v+G4&-Hj-2Zv z)b-nK%;Dn4a5-rgN*DVPzTC znxo2OmlbNrYjDf`XAOHAHtVDI;y#gXYH&B~;k?&>5+tcC)pvOK$=5KnNec1riQ1Fi z+Tb2t5<8-g;=IyzX`H3@a`&v>kmKbRwbfZ<`#>hxUjKrQ=bc$ji;l%3(nV$5H*tmA zRlC9~hmlI+`K9|>CV1H+o|>29yemON7VX1kp%wJ3H+xM3zX9lCGWtwh%a&IUUpC;NxIBzL@S%v5lK$6Il3`i z|2g+vv5s^_64)rMojh#&R@^TW+`cHs+scfRSRZro@S$9?BYO}=V7%PJlNj&)Ifh0~ zg*G%9i5bHMDMM_Im11cW|K-0SK6~+l{2$}I-ACB0f8&GR z(d3sNkGNflB}Q=d5`X)@5MRE;r#k1Ho#O!-}%W$>zLPcbE!Q;BhAqtCBtY z8{}uG{G5uvl~ylXLE;McAF_V9TS6hwPt9hEKXx(J`{X1TYPnU{)7`P4jq-KjhJ-dUWQO)x8Ui;-AT z3{eG}#FCMOqN%IJ1TSWG!!o6Vt;#`bnhxi8ZdRAOswks;abApz9v_x;h`!bC!|u-p zx!$-s&=m8e$N5s(3@mXargXpg zjQnP4^#f&RY#imk&^j+(YbUT6LlOZ|-2QDy{@>@{`Tr&UeG+K`|7xGlzkh1E z_Tant_lLxXXq{{tt^NfsqUdB;*h~1o#KHeTd544Lh?Zj9-*<8FS|<>@P55@oNgN!? zaIh_wvAcv>M=)cgZmTwr_hR7NI18S-=46f(2EIZVc!V(U3&Ms{%HiL(lXHI||9(db z240L^M(OkTaEN()SgeTOOJe!_mc*AS)?K7n_a4Q%cM9uPE7qO$IjkFX*wzxZ6j5cA z>)!YvZapZ9^_BY_6Yym*e3?2g^Jb()+B-aL<*_N$^cj{oDyn*6PGbmDIVh#r%FbR?Y8SF+nWG zTE;xOD0UjZ_i6R-lCM=CiDlK*F3d-mZ5Wr5Y=jY!uJ-Nx$lO|OmfgiCR+K={z3Lk> zcr4H+S3)1zF5aJ%@JNYAdP>agRRX+SsTY(RXle&}aqMxWY6!@lZ0hzXbs&)h@6!0` zh`_~JBjN+uw$34oOx`Ryy{RC{|CC7{86S~JX1~Bm9#U=E)5zjmG}zea_O4RLW4M@k z^MYKUu(Rac!N}JS{&IhRm%90T7T(M@!&XjDvm$WL zsiOTq_%S-9x(o>?*8|$R$f)NQ)Aga`a-44$9x{*3UbH}~`xa5=u}OT7CwI(Cw=)$2{?SrIHT@G8X0{C%q1&t2iN*nr2Nb zwwju354+>J+Q#An=x{C4|Pxh|v# z-vcnh1!1I&6z6FACme#|%V;R`xmfS-LGXsk?kv;l=MXAw#BsYi5&ke@ePT^2R=y4T zMjvItV1&H(A? zTlT(Twq}K_s^OtwRYqvoAN5V5&U9|hkI#u(3-Fiu6DP5k-`J%T87M{V`JGKYN>Q|Y zZeEPby>LM0h?Y`~?04DVqMFv&*-pDzEOPfV(~x=W(^x^eMGt(q^rxvDbE1#+*e{)F zOHO9Wna(~|uR3@Y`0*U~m3+YsS9~95N7YC5rgTK`s=dAtHNffKY=~CX)Sd-y@tdR8 z5>Wp{P>-AllCy6LWb7P8AucS4Sf|-nf^e4}=Ul^J4G@g`2*SDPR*qIJUFVR7evWGO z&B)_W`JIOL;08hl)rHFD70cbP!eD15UozsI3K?K`<>G*c=sPN_;iH*@6)Alhau;R>wXL*(Nnc`d}`wh^;Fd* zoS$(zBW|VmBA&`>Sd+L1Wug!Dl%sAp zV|~x+#f1ZSRb1!^yWOdQiVY)j7;&4ukG8C#6~3kO)Gi9Qc*N!yYTPL1`-|gdgOA3m z!;KEkzoxglaUOiqxKV7F88_m?Q*l)8(0KJ>v1&MHqcbLrB}Sy@(q*x0e4gyjoMbsc z_J6&zOZL+l$o}g_Z4%j^Ty!XuT#*PR7i~3<&t7zgR@XqRd3@5MOSHOXg8HzR5dVj> zVrB9(Kp*xpnrGl;tzIO)Jq;bDeFLGuOAZU0$8U8@t3jJSVn6fc{E;ekOI~o5wxzdG-cze7V((h{U(2i#(sqz0FG8 z>qA>llK1|Dq>nU@*ThaYkBhuN9*?yJUXC*zq>Aj#s8p%bT6IU*>q^+`4KLg0Fo|I5 z%82@p(Ah#|RfzikBqXBVMu@*%VQtCCp&b1gADBz+BLt5=5<=LI6Jc+s&J5KpDee*W zO?z!g&x8MG*a#zS-6Ui^>!KEYqj=CF&Ns&ky4n+N*e$YthvZ;3kVKL7%H4}Q^_8sm zRgX_h4%-#kt<`~-l(c^-j!pT~>amHXDmrA{IXpbf4h_50=xoZ5-x{`daCOe|8~Lt@ zVV$^!I3-keYf&sGy%~qfZRx}$RuCM&L5@e=_jA!V}_~a5Q=n`}mm*GyaMTWnHA6u6U7h2qe5Z8z9j$bcVP=eUi*5C*it9Pwy z2A+u1;MAFdQm$ZxXy<;s>Q;9N<~=?*2P%Uzn6!oi&o5n1$057Ft7LZ-vYYRaAzK$9 zyQ`J#=6ilH0XD53+5HlInUUT5qlr1TZhaUkr)=GPCA;VB>1k53!tR#c&dIEIZ;--l z{fO*7R|;tB!W>WSX^mI4#uIX1l{(wh(kYJUU)8HAp@cir62m;66%T0Zrf}Qv=N3Op ziVr@qcw%6tw4Qy0{}Fmxy>e+3W$VO-%R#TGRTUH`N9$Oqd?HPJh+On-1#KMPOEB{} zPEMWOd_5ql$fhhaYU|O*BYA>O^!o)?^cYQk^dZBXC*wAl`xyB z!Ls`Vn!Diqd4suO-u}G>&om+JLCc= zt2I_6tNXonY7mDV$6^y+FAGkt<_r?=N_2U1mN=H)|5=?AKd;VR|Mb_?>Fg<}%ZSuR z9x6p9(`0s1^-Utlu$|!IEem{Guh!3Nt(I?-nTL*h@T!JSN2R z5yT7_=d>uRTeQP_D?J?Eq=R}6ouudp_AOs`lrN_=9}pJm^1H3CumdC~5*I+NVu2OVD~T4wEvVwa<3 zUcq`CMJX7yrWS>@r;!t@yg=4#N4w_4824Fxutnm>cIE_g;_r7QYfrb;j&?7O=Y$({ zt{Yt?yB(3_by*R%DG;6w?$udrQ#54h4Q(M63^mAC75-COH%_{40&@-r^}5iDpL-%w zk2BLl!XW3Ui|n7WMv@n{LoVSHVH1mk?2`!NHn@jJMxVdv3}fREYL`D{WawvB6(6Z? z9XDzLhcmZvP~aY(RY^m7bhkm52kY?7N=PCt~*fv*LiO@--`Z!llR`4 z@YnF3d=2aGj`uDAsczo8T-^xszs7q?$hYXSd2qn6ko6fsudN#)VqL_$+yanl5t$yJ z7+fs}b5T52hy0h9jnC*FbI^KarZtjFDh=x)C7U?e&!WZ(mXrLo_MXgClZ>B>psE3>CfJ0I5K-EnG+n_O2zV+y2hF~62sC8 zU+fBI=!s%&60=tPTqL2dI+2^Yuwk5Ub#BUMw)cq*l4MPcQT-%@S<4-Nkh_I_?8-_% zNl(b0j@tNS4}{`&Fa6;2@P7E3|03R}{O{r|hs&MsqMSr@b91H{3w0>v zCUGyE*Vq0-vy6h+5IF_Tm0V+HT*{&|u_S0zabMGJ(RS>HFR>OoJCmUxsxnMOH*J(F zownP*WXkBJ`M~7d=GW^^tp7f4k&|$1y5uvs{pZNuxILvZ^ukT{HNOBiwa;H7I)J)6 zL55yXQ01x}HvSFn_pM#xOz+!mE@BW7i>f#?sIR($eje} zLO4j8N3(HVTj<=b$HgY*@fkmYQ7xuQTjqDJyd(Tf5dWY>jv?i zy*K!B!9=&AjpHjTH@fw7V<^zF^Z=*FGW(Dq=rHbo1^;hDhQEmaL(De+i}-iBTqwP~ zH;){%?|oHf^r?`$4P#r>xv)Q)$RZ?mh-hMhFUp}l`*avn0_63{vHm#k)>q{kf+w@k zaoVyH>ZN5uF&k;>_p~uFp_#14N{%gE7Jd*gXs0+Ix$*WKnlt zp1N8$`=(PNW0;PAO(*$`Kuc5`+c7bD)<4PRf~R6`jNtU)F5)-pu3^2ETf3OjIqoaC ztSr#UjSDQXvO{j}Bsg)8nc*V`0!5{A))2k!80bPzW|LWRaeh@JH|v0`Vcjy^NDd!s z1YUGZLez(0c|fnd^L~Plx>Jx(^$o_-W$$AruFJ#~zp8e5i7R%kxqSG=aV)jDz07Vs zCC{MbhN~1qwb&2$Dz4U-*)%C)w(#w{KWX(#Fg~)z(-1v!xGe#GPDACCTkkeow3*$6=JK=LNo#YaxzVL-C##azt zMEElM%4cvOI9j{xk6B1ot74P+17XciYL~t1ifPu26qz^KNz7nem|MH-h>H9`MJ`s6 zey%fFxkczPQ*O+#GWVF)pkXgAiY8|HoNxH4{i7OMZm2sL=HRP*j5|Q~a4jbf8+pb< zf=6YU>(RWfls8m<{&gjS;2$TElM-1sdJ?AbU8e66JL7nOoXkC`ajn1A^Nj0k4HnO^N*~KKV{pxA)A2sh#7HJP+?}ox4<|mCvxl38+KO?p z=iA;~M%bsdkJ{EuKaW`8SZgzmIP!eg9si#5u>$n1?psw@Rm$`xH~Qnemn_i0!??3? z8dnaBEOhQivcu@LcI6aWj&of>f7QVJ{`ULCfa6E+33B<_piq)7+{rrJsr93xIE(6n z|3k8UM0NK0y9tx3?n0F8d^Iace*7O)IHAH~H|m+6TJ$2I^8u-Q)G=^|QkxWG-yS^A(gY6J9KZdej+k$zX7tOM@2 zyfmj)covy?40_FOrJtQ?7J_EJkF9XyPE)xAPEA&P?Wmu9onPJFboO-}^i7p#ERSe% zq`En-Oup$>mkpp}o;B?2Y~ag??TderwK4Z8WSK!2TLA>?8MJ;jJoO zko+(K$;C?STTTA#c)80cxwadINzPPM~xns=S5>(RSWYq*J`qZNKFw_tltf3FDr4M6QTY+Iq^2{o( z%Vi~NBueYk%l}EV(x2<1Bkgo%G5&k;(JL*g>EwA>PTyTbs_eU^4PjeB= zBOpnmT?DJjyd)E^&%vcXxST4;e;7oeYqS4=@Ies%uJp6QxprBHnl~Nc9Q_Qw5oEuRN zpO5ru6qtq#$Vvf=R8xoc}Pl3|?6 zPy~CWek}L#Vm@d8p0A|rwm+OLyoX1zuq*_`mMQ@D0>BAf`;m;h=Jt6IvP)l7=7Z9M z*xEUCA>xW!2HL;7fZfBHrzMK)VW6M#>FaB$QQgtG)jkR#L|Dm;WB-zzR+0E?cVDOG z%vVs!=vv($7ghxDr7dH*gJGu@@%P zon+Vwi%&t0;W3QpTLWi}v7ZnJdv0*=us30kkgBXJh0)}?)JGsUnudq`DR^*Vu?U}j zb_)bE%qoUBxu?t|H~piO_U;8)7wtbgM$9pX-}#~e^2EX314IVI!%7&~S=LddHa2#v zjlDVjhP|J|>AH&i98MQG;+O}p2Z*odE7g2?)lg>v2`#`q!Lt-Z@S@e$tGzcWWOGefrmIda6NN@M)2 z>cr{x40z!gQMcg0AETtfUx=2Qo1@m&=&+`7RGr7MICn)dA|KI?9a7&Tw?%({QHq}< z#YMMEZR*wqN)J-_bEg%{zt&C5n!ur0||hUDYkv>is$Q%@w9 z@p_W-Bzi};-`C2wjU3@V&%eDyaq;o0^LvTmo2br557pJWTjPA=YhSF;_JKu4_iF}60i247q_9pOA zRp-P1OlBs8kZ{8i4G0o7YHC2EL7g~&Gcb`mFcDhC;(}shsfxCg%&=6z#7Q)h%T!vm z+G^F`Yx`DPTi3GLY8FTW$gYA?1+?lN$0cqdfMnk9bM8zM(Ek3v_w#@GXy)E?&wifs zoM%7D4DGHsiGd_S$VZC2(y;bSj~;!xNP-MjI*v)?@KPRyy!=N|F;D6|mOE1010@>+ zhr0CGY=(O@OS{KlRVqEl7X5g7Z2Y+agAh190neeuh1wVfC}_-=d=1SGY98(KEdd9< zcy9(g$wlvBrX)8odG?1+4V3KH#`pow)fw9AoM8>lVGY@O><9J$(QLvWRhINn|KdLg z$}1!WD}+A}T0v}fL#7MoDQwpPurI8R;E)E@MF zhM})ErjAZCE81$C1lldxt*y>($nZ5}apQbIgp2P>*Nm-JStxnwY9(dQtTeV(mTcF? z)JS>yOBFdod=1Va{d$Zx9d6Vb_lmOgIFljbVs58!U;N$wT>kBVacJHu-E(x&DFMej zgkr1)AyMfTt4E2%2yKkl#wX@)F_&QX`=lG621>a4_|PINeVZzBr>T3sTqu$LAxT50 z28jw?vh6>$uX|XfRvc!aIJ@H#rb_o5t1eg-DEUY^c*{zHo=>XtiCF(?DbS`CO{t<-PX?kzP6hu3jYM4h7D%Yh2Ya!; zQEPqES*b*ed`Xs|aV&l_zY?cgz*Q$Qlt8f1YXa30^IZY2u~Ka>Q5d@ykiT|=?7wv2 zB`a>RqF4LJH&g_dMfh={7Q8eUlZtczj(AfjUrxWX&AZ3+?#$hz(_{hEQNIg-xynnZ zg28N04y3@LLqSi+BIvxHWJp5{!&!CahZaGwMDjh|Ki}dt7oftpOIfX9 z2H66hPyO2Duer)9$bHNAj37xjhDo%>iz@3s35^mYgb-*e_W*%_N8?*1h+wOE`v>5e zx>I{+VCN_)NFV&)tLA2_HoXKZjW*rx;BU|&&wj(|GajaKF|B!|GVl>h31r5;U|j z6A#e=+D$~|;C}HIi+#D>`oz1q5P4Mom?=uCptbDuebXtyg0gZ~hPC!skAD*R`91|1Qc9uPUkZ;G)GnOo8 zL7~#qmvW(s0<$CBxF=wCo`BgoLTRAm-WQ&T;Yl)-9W+{im@ofLv)QUyIaAFao|1+= zuaKnBr4sva4wS_?T|_G^L=+<^%}U;@h}2WK?IZKHSEZX!i=%x8X&^3R0(qr<(L9m?}Lh zGB+ibN|-1c)F+|T?` z5hjXo5dosm)Ub-}NIiQ6T*nD4zmx@sk$M`ALHMTI@O^iNa%JBP=FuCMgOmIDdOW3lLc^2X3#c-;Nd8S_# zmztkYj|enBvjm#$y_9L6?6Teb2P#P=&`c^G>?k#~n}1S?#|t!p5BV3L4-8q4>aT)1 z#lJ)*zVNP~p{h4yci6+H)h2DcEncD#4zPl~0B2r!3ArIt-3VDMaZ6C1 zJIsG5q(qd)R2}&M3gxdpzC40)`-%~;Eu65inOWu+^8^xmt5=VZx{4cq^;My23(A^W zwKaAjR)@{=WN@L85_`2|1cYdLpHJGF>=Grq>K$QxA7NQ}Q{(L08(jX3>?UZuB@E&D z0s{Qm6&h|9lRZtzhEB$6P3S2)gah+cBCXu)+ zjaJbZNEF8c#y@Ocl+YhPP{j6MRF^+Wlu5b{;nDYLm3+dnN@R9&_;D2#j5$R{}i=qDBU?NXXMYo5Nq$x;Z(U zj63o|zo>QplE={eS~o^{O`+>*-Q;fyRo1$ZXg7r>)w(g91$o!H?~~ucTK9_?{0^yg zbJ=8*u_x?ZFQ;(gqV?2cOPsg9UVe(#H_Fdx>*bhBj9gzUKf~6`VV1~QACVu|`n&jv zUXiy>guih2=HK4o{f@kZCU>nfL`nM{X?k>iR$N3YuNtm%-WJv)ntQtXW&4zGhT$;s zNAeESTed@D`|sWixDo#uIw;q!GNvGw`~%4^&eTT!hyRiylAqA+sz}(u9ta5U+!8;H zhT+xo-`u3~8!hX+bW=rp5A5y;mT{H1>yOmHNpylPL(adTKy_J{Txbw23$)wW?BMKO zp#fY~kD5ecJuavhfmQ0!fD~Il)TpaBgrpO&L7O zH`$`2#VS|gn-*e;OL*PzYRQ~U&ILUQ2X z!d9QBHy?DsH?sWA`k@^GPxGQt0mmja3+B7*Wwn*fhT(!qt!sM}$DhW3LTXEJex<`I z#hBFiT$E1|EIQ^xRb*dul6f|TUy%bZ>Ncx~LSGg0RgaCXdW(yi*E;3J*e%x_v>cMh z3(H8?qobYj1NrKjS3W7sFwv}4AOc>FNTbrLq-kJ!-gTkPwwbqZwgrvl-jva>F-w=| z3WtQ+Q@9B6*`veg)g3v6klmy_qArg)yM?=zdNBz~S8JY1RlZ1%Jv`i~@FqLx%c?i= zymkG8zX@akv!F7Tb1rQ$$NvQCsguQq;;3|+H_`yf^3|Nhv(b~dR5!>jY*dS0ehER@ zV;CM`xL58De-+Iwrbc1UsV$mc!i#xozbb~RXSp1sokL4qJ#>S0r*PjHix++Q#PbpT zs5=Cwne(cp3xa%!a^rI0OktZ2Tfx&t&(9|3pL2ktRGcTWF@7 zL9=Ba3FBwYH6ON^up}}$cat?fm#rs<8%xTh0 z>`qQXC7u0Pt%Yj3mo}08^xxKz`5kq90S~E2i8M*0WLwIRA@^K>DdaM%1X)-DEs=X! z-?FW5#&O@=eU>z_+`W4N#b@}w3LV~Vd3jmA7`boAORkhOa$9(&a(CRv`>XMvux(@< zhU@1d5R2tL&v)6Q^-aFU9S9;i1O_EZhXUioiyq+F*)$P*mZxM`_cw2qXN#SW( zr%%C5tsLMXgbjTL;7WXqii>(&=B-!>DHWk-fB2*0CgfX1sAr_8#wa(?ynu4Fz(v(4 zH7WZ+njEo+5ScG%v6IbtEOJV6_d+g4)PlZ} z#E6PI^-QygTwl#m`&t{6zE3Djb{1eSW0DiflF=xdxtA%0Wj+i;+A}~@im}mG0h_3? z58=!wi&u!`b-E;Z_JU)}%ZQ3$8Lj-eUvP5g)IY9)|^D1Lgve3!6iOf>KuUDeAnAZwqTl>X2KaDrd$HocKUL#6f zpRuFn-HficPT3SWnhae8xn3SQY7Z4gj%Fa?oy3x+;KUeY;oZ?hIXjkc`mkm4M^zPx z0g>Fb&|^ut&mw)6rbspQW4P{m9k^1mW=W7vV*$A+-+Tw3ja2<5srs|-$-R=?9Nwza z%vONcezGvdi1pqv^-!i#+-^6oU=p}>YLNLBDaRvwwP$*lr?9u|b?LJ0OsXpT=y#X> zPFp8?*(b`xNkXb?b@QkqXypGKk6e6R16b^pT>w#935l|MTd-^zWbj*h*)@5A-JA5? zTY{b~TK%8sv0n0yvZc_Qk2-(|-8iaiQ@cec>)^@Xji`0uss306AcrhClDJ&kUtE>kb+`&)J*iX zxPv~?_EtgK*oAS^+u<+uzfkB=3i;N0sUZ+sn&sop7Nf-?pvBJ3$b;x6F#xkDaU$}6 zM)uwe0~owshV>#m&H3cw`-~I5Z`aE}eJJsML1p>pr@#7%I*74YBbPF5(aYYV1|f~E z&ck@iQr)pFZcA%A0lKttnp*4cUN05KNLDMHMIG^NYEE3Q{8Lt}L!?M$mngPlyI3rg zU6Um($ELD*x{qo1JW6h|p#~vO(BQC0=#hjV*@ahvegmGi&}RX$_$lK;GV{+nWxici z)Q!@gatag}J~P`CEX&r*CTA%~=%|DScj=yuq35uXV$O9gv?Ofh6MBRz8#!yYo9_%% zb)9V0#Y6<7h>|kZ18y(rr#uVQ|A%Se4BN^1m9fiii{H*rtk_D^;UzzI2im7}LR2OL zpbrV&WZfmk1rXqn+2EA|@QMjeDFmP7na?1XTgBca%7dIGPNov7f_Ne2_OK}Jen$8q zogPN%8!;td#W)AJBTa;ty_N|Os3eFrLM8B9QNVMjSSF~ZAx94&qA8446l08FW{4nA znIC`)o|9RKx-wo9y_O&p!6gjrdq}U$+XU6caxau;A#Bo`FUhHNU*t94JJkCjou1+= zjL|Q=B@4%&2RW3J{zWOS}_wDnc6w>wNPJv8d zUOKgAyKwenpe#y-vWSg-4*Z~dwuExb0fOG6qYFq+SEa^cz&&d>I;0!9*JJ<(zh5l8F>_M4 zDRhz^nRun-hxk~!zjuZxah_G8m=c1K;~z>XYu?Qto-Lj976|b%!2CNqDq%B!1bD4V z&4s0N<=!TEX4t;)DGejckHE2M>Cr_@^a(20MrW30BXtB$Wd+K zZZ7f~2vuD~T^9)X1ZXINC#MFmUB6AHJ*NX}u2)c2^tNG)?%n|hHkvFCk|hbkQ4Mt@ z^Z!J?WbT`MhAi2i29a0$>YUeCXSG!)p5@LnOX+}a=yQ$QfAG|7W)-P@a@;reYaz0z zW^+ud1+!)QpiD~5J!~5MPf&77@VJ8|ocPO%O6}SMt?5OQ=}~kY+qdsZ*z>K(XPic! zWPWBGz8EFE*L_DGRYmV0Y8DorSd{6{mU`m9Cr^_6O4i~PRzAx~teMsPCz^k0Z zq*Uhl*6tv?*|missLKxJro096=w;C>(d`q;kiD)h(i6OgdtfsEV!9qQ{*Ka~OxQ7? z^8nD2`Dc?ZFny5}bMq}IryLn1cqKSgw7!x!Q(i!Q)XzhqNE^QTkfKI?mW(D^Z`EwQ zMVhi$t_7q%slX$Zr=kWkicm6t5N(!iGP;xb%~A!m&rat5jYqa@9y*E~p$+9y#tf)Q z-H6Hbh|)50g?PDgYYZ)7Vp@!eDa0=~t`jU#!Ab6E0I5a0rHs;;mmfEwh?u{Hfq$oc z)>-S0Ge5B`c8hiH?3I}-G^a6wZ&}11Z*;ZgZ{J~xvRWk;^)s4VKrc_E7r-kBZ{t4k z(+U>dtdvV%nAtFbvM3XDqeh}K$up6Zd#^CYEmN(6ZfrIGwu$c+-QJHtfq0iyycy)1 z3!XKLsIj+#AoP#ny72FCMrAt`u@Kn3Sz?g7AjA@ni*4XssB9 znsgtYt)Ml9+u?!4U%=Rc+0RJw6CzajhiHL?xPjgDS^ierWVby!ZM^v9KGZ>)`{7C(yP!1?l8o zIQZ+oP}YuT3W4*31qxJ<{pCJJ4fu?d?Mmi9@^1^`UrXegV`;nH2HPe|M|H|s=Rua? z+WNed;A-|}xdLkC>*VouHQ7TY;NtHK{psn@>X;*eSY*xFTHTX^{30zG+?^TzB>p?z zA_vE;WwPLln#BU<(3|=x`}8yRVm%Y|>cIZ2g z=$_qL{Vb}gj18X|Ky+EM1$j&4z!(W1?bu8pZ$0SY_T-J9f3|5ub2yy6@z|c``lgND zi^Bs0k(NR}hTj9cW+$@eRY?6L;ybb<{CU9G74M>NkaXJ0?Z=IdzS1MDZV#!wquVUw z=pCJ$#*u@Xx{U7s*XY7`Fe(`wBh!9}UW&nKeS=Hn&(nTJFeojYF;Cmm1O}H87>GHvnmiJAi0-+wzRiNtT^>z3VUQ zvEk1$gY%gHk!UDu_TD`eb4{_zAggIQu3WWMZuobXGhB&RzunfQR+*1y|A)5LSY^J| z)&Q&Aizk%pJrCeXFnaBOxBN`3MCACaDBD-xr|11wYrk zxJ)-z7Il!*7rXX!bxbpz;ArviFCB-i{ zI+ZIJtFn)``(84QRA7 z0}Sra-pW&wzS<9as3GBKbDSTDg^KJD8ZKXBtK5hCh#IrseQj|VT(rf!wL`?z`}*pv zh)v;`o>G8Xy_+_fy+#}6Zbg;#gSERGr90Z19f9>$e>Ajbo3TD0tD0|-9_%*f`5aA% zX3G~j<~cStWMXreY*RtLBQ4)7-JS^eS;HpEqb~y$ZDaGBds!cP0b>%>W0xlzhr}kY ze{z2~tIdv^#-_w)0ne+U!8J$9!wzr8>pd+ELlTZ2Uy_DLD_i$%#{O4iro03V+9b2@ z_>$TZE|pl}9#s_3{9pN+-go(GHWK>!++gf-A~0kMM4Tz0!O2*H)@A3?Ofg~uo7L}9 zG2tqWW^TFG^p=Lp?7oI_z4oxlye=EBuibv=iueBb@P@)lQD7X3;~XXU6k@>Y{#&%qG2}DX7N%2S6>V9I3Gf|8Yox(NxnJ0>+m?V z;y@#tm``l#YGPC0Q3&}S`FN(ld<`=iz=z{$su2n6X)Q ziOk_OH=$4pVwxv=8PS^Dr7iO5Qg|KjIKQzYwUH3ZiW-+~R?M~Hh%gGVyn2j4$~yxk zJH_6L^YaZfi@F2Bwb;MEj$nnY=4u;YOI+w@ORb^-;RU=>z1weWPm~KrGEXI~G?8Hfo@D#X1wY`v3zDM5^`z%aDzI*ywXEk^8plh(6p*AC&&cH>b7c zA4N6PMOQ;bOG4*xi|V9tqUvz$q5Tyj1Bg9hx84)BYwW`(#ni}lyi4V+FA>!5FcXEhAcRD2&+%V=TX(#vmmCF6U_y)#Yxt$?qdn#wTzw@*AY#ve|8hn}-6tVXO@%}xuW^@# ze&{zYLyB$Mmk#h9+S@k8J`VGwo0grjc1(TZ`@TbF^AVRp1jR9q9kwen0Cc~ji456f z5D-@xGI}#O=C^c_!Ec-51d0}9gooFZmlB;7t1q95;%Yv`hUcEoM-_#B0@*&3i5CLy zgf$jHcRvvCPED2a07-*5ODOPdyde;7f%iuX0Bbk~Kg-+?q!loV5cz2Za{}4|$0+_v z{f;&TkW8O~^FS9>%4ZqJz2^nqUGblnQaa^iUL(W zr?^IP35z$J%Y`+vreV2FJ>!BVRd2|NBx6(%8%G6>jx;#p$!_d62R6ZdIzZd42?s9l z7@q!8wn#8m4M?6)L_+y(GxxkAScA>rvtsOsE`E2jKHcQfq|{}+%P;hM zx|ioP%Fbu04mC{aN!O%mk@i56uY)HA(Cp^lVVM(`9EVub1<0mwtd$oIP5Rj%yZ#f$ zo&MOBO)C033%jZ~K}O2{r=Rbub^V31w;mDrN1B|`&v>gsd!;jQ#=k(cK9Sla_1y{G z_=o`RVg`fr!F^5fCm6F?T_ckaUMN=$3klJrpRqA;#s;B2BHdYwgam~Eno$kevnN4F zWtpcIefI&q1R|v=P`@EuhSf%CXheVuanp7$fZ-V%gM8j?5^S=UZ*``xEramda_ph}AI96bK(a*=E79*d0?932Z8ecf zN6-F*Bk&8mV;2=VnuA78D|l%Np|-#V;BckzA8 z>DZ&#rK{V)!C*D-719r9c%0U66;)UYDPkfh(MI_rvyjBY_*EE+SG*$4OE=(>d z3=1L@O{#q9ab-?}(@88$7x=$vE%`MisoH{=|C^HMBiKmo`H-SvIE}sqny-CqoxOd0 zAI6~|x0HvlS3DL?qFIRY5RlIokVJ=wMOYDQ5*-mA&5sy$IS9QWjvX~jpI!^9O5V9B z`(@Ef#J@)t_YK9^;&Ns@_7bP8wg%gM31@5QIkkr+3UK&BIF_B_@r#iVYe5V%ISeYq zD1h2C2sPa8)PDI4^|@~-4LOV(#$vs8v0na=o7%(Iu1)fVTQ52m;T+Kw8mi+Vfj_`T zvEkijUh{X1JkB9Ubn4i)so=*np@}$lgID0hZ2K`k{x5R~l_>|1E=3o4{Pq@2v*dsF?!Ok`CuzjFs5DN*sm%*=Q6aP5mW z+smg*eT&CJxQMWkpcq1*(p`Cnbv9>w1RiONPoj!md(D3MTKUN08mkoioPaEv;3=){ z3_8lfX>}uc@VhTSQ7J1pj5k*M{CGAG74Dy_I9prHV;~BA01EuZ4{|U$QLBSBdhQ%i z4@f_lR%NrX-TVNI##QoEjRw7q-UrK{SL-ocIlKIU6m4}T(V$e=er+`nkb%@{yuSQK zzcDR~n@H>{O1Nl#*;(RHQjdtVZT&zg1R^&!%MOx>C^WyArVbLUpkaBdbkxrAg__^J zh$!lkgf1sBT_lsBq4p_bWuX%u@l{bPWYtT3)GAf_V&BiQs(n~h8``MEfeAuOUbu9% z*!BE}Q$eo(ZX8n9RJUu1Q|xjZTZ#@$XbNX4t*yLuPB_3D%%`oDp47bCU2~)}rn@km zLtbS0Fo|hpXTK$@hJcGJ_l_Vf#q zFLqmzoo5r#?-3I~lfZgTS(I}+srrVd{ecDpJ5Hd+0RQ=G;yf8+E_ z%(idVtTgi}FHqmUM6uU_nS=fM-PDUK$u#<2u z9wD{Vg6wU!MXq(n_z~wZ$Gj*eX&b!MBpV1-!flv?3Cid%Ujqs*A!a_#rttF$<;K-E zO)xOpR2%pOp7EE*^bRlDE3LM%Sh%`AWjaU6N zITv0fDEmozP8>~;bSnC8Xo;v1Zl&{cQ=Kn|!?!P*TH7p!W;nO)g*0pCV3^x%X6wmq z^L&Gv=0zQAMFuwS49r4XGuGPv#q*#J8LQ)nr09`Pxf5xYV5^e11JOzPPPo+8_^;?9 zq5r`=C5aD6_6dsfwNJJ7Er;ZbMKvnR+y7T1RP)IQkt^OS5*>mHV;RV>3>Ci1(Jc$a zwn4{ywLS5Nw#)F4zf85Mj9NJnkUHEZ%WKiaDUM%BV3fW|*$(EL=X@v{0HttW{64A{ zY;m22uV57mEcy;3_x9f@91_`N*UNL=CWcv1KHRPE&v6RS+~LiyGk7-qlNibIZxseN0cx4frgf?d1&F(zM%4pj9dLy)=K z&2NBksq`#)`AopQuTqJWPNf74X$mxd;HY$r-(R-R=f2*({D++M+vKeD$ELUh>H)ng zi^i*+V@9z=fjbz>X<54B@?b1fG~TDZJXoDBd(0c?g$yYdW|w&MCO68ue$Enw-iM5%5&J9(1&d(r=L3zjTU^`;PW!Tji(HdY(l6F@{P#C#CB7 z<^Q;zJgXjS98m>oaB`=D9nw}%LosrBUbZ|wQ<-MgdyJc&jy<6TZ^}+!rXH;%NP5Ly z-7*s^R422t5pyv~(F!pSOMNGhO~nE7bt_BQXvL0b#cMS7_FsiwBb?3m$(VaF*cl@N z>dWHod(si!qN~IR)=F1VkYdv&tGC#!;(5^qIp5`#N6dFQ@hS_{*U00KQ_Niu zZ3q3L6SHWwvcUY6U}Ls(}Mp6`)@th8{)44%^O%?{gWlB1CX*|T>`7NC8L*+9oA6D9$t9BFMRttm?+ z*?^pf?$j2VF9;Q*EjdmMWB9AWN99; z&CHe4$rgRgDz^`=i#~h|Dc*m_LL?WPKU6iNQlR=sicT;i*pX%6l!Ld+E@GSDhwY{8y^BIL6843rBu zw0>8ApashI8M%MIFEu_G-b`~1t8R^Ngf+hB1*{lfwtmZg0S?5uDGwMgBc^K02BSol zJ(hbLq)~%w{Zp9W%%P^J>xWW%H?zmVm2bXpO;%V;`GgTm#MN15`9c`E=U83Ae6yIs zk=zly_nMhP`+Qr5copVlve05GrZ@OwlW#V+{!x0uNs!F{5#%KdD=cBC=to-J?_|9p zv2SKPTHQ){t0LU<0_Q8XLY^J(l)JT{8v^8mO9`1Z(FuanW=uTxG&X|C&|IJKsUGnp zLsR+N6Y_Os+Cvk%GPA!FBFfdJw4Q~=ZlBj=Y zabsqKf2UiQ-~(;Sl|=k(pAbtg848NJJQQ`r5S9Cw?kH9kUyu#|Vf@HX%eo|BRn<1m z@|mjPX1E`{xtp62N5S7s01*89i`DIS!k}f>1oyjZ;s$NC`S-hPjcqV6Cy5*@8-{ru z+LB}fuORR;0(F)t|3&DcsQO=8NQ1 z7c2pfY|&4OsWiJ^2e<44n#v|AJd~qwqq&nBU$9$QzV`+n~zOol#wD2fAH_AJ!*5>Yzr||qbC;0rPM7c`i+nb963@@Vtm9VAJ7kd ziHq{WDMaSjt2lmGGi3H+19Z(cAw@&Qf{8A-gg8Vt$bA?Lh7FK%X-nomAahKvorzrY z%zfWB14_$^Q$Ezk@pgs6WB4VE5N0$mcSq1RYjtQkpx(z#7z`0PDPTNuEboyFHa8sO zU?@zjehO!9JW8g3@$|7B*xCw}vlVVEOH6zJ`HHN$I0kCp8@Lihx_=lB#AZKB zMnBrjSpK3NoKgpy)Bv&BlcehRrQ}v~iUeoW3KVKKQ^l){@jKJvpCxyUH>l z83NNbFeNJP56^WxGhy+|Xw!UYmvs)LXcN~xbX(v>P7c7WDSSF2uRs4=hT(dQAEr(0 zz+(DHbGU^hIbaYcv^S$#v51-Y3y(vzoQXrZ15Fya#%*BsGj0!GV@5O=nI^-3A3wqL1a{)7LN$^T9TY2Tg)^=!YxVY6b% z$x4)^S0c+Ag; zxh=n7T9wQsng1!ouHxZXJnOupH|xkCAfbqh)1@P=9p1?nDkHn3JJSt zksE0nQy=@|%~XWHVu@R7UFI+Ui}2 zDS`6eiG-UAZ=-VxVOrP_jgkPVpC@8R9&MJ~*#~xz9b;a13pLOVfa>J8&^@O+gy^yI zKq^{`T<*;L2|80u)3=?9Hc1&r?$|9(ga`uxpfkZ|v!rx=d1!`am3 z-{H20&M?E5$R2Iz)JFOy#+qh(EwkLo26LwoQ2zfJI`MGoj+J>`NkvBP;tR8jH zBkW%MO070i0=~*VoGH?v*=mwRt-^E$i*)lCAdwhmw(L$fWNP4Q4kG5qx?7j~`p{2Z z>9Y)gVmChpk;y4%_ zVAczY_=X_@D zfzGVBH@f^j-#-LuEJc`BAL9iuN+RJ}9ZEhsP=1Xqy85>Gkq7}~sjf%&DC2h)7 zvqQT#mLWib1($2JOPU&IMQ=R>qdWNRkc+$TB*JRck6c=cNq!OyqWI#I=0IMKy6sB}^6O zO$JeF`R+=8zfpz<1R&0L%b!xgJucO7g{F2C_ZEVa?kn46RIV|7rE>NY*Fvj1o08Gx z4=N29)BPaxL1&41_u~%p;WRm<#DEzeOPviw0bM54M)5~3O%(iKi!O~E51DbO+44V5p& zKjt_`&9S0{NQoS?MUG^0dTe;lbYrF3i<29j7d7~^CnYgZYSXJw88t22@3&8JCaw~= zEQX|^wswkiQ{**SD_^6tG+m@g6={|t)18Skrm|R*08_Q5lWSNxr@Fk+naE1!`%tuC zxh=S`@?;SrKQu-_`;j6!4Tw`H*hVRcgz^+wvclO)uOpiCwKIv3V%~H=c}os}iLSXT zg^B8lynG2(LC1sCTYLsaslo>4x)I3vK;i+139jM*Z)O;~u+iC3EJ$QPbZS=6v#~m) z$HZX8^L2GmVXT&#$c5uqNdE4q|6AS4#*Ao%AziS?@yDvQtKLD&1M*ffUQ2N{d$vkM0Iu@XJF3u$a2r=w4uqw*tmXWDh z8S~m5xzH-D=uNP{M-|1aOiInl*6*AZJvA*TshAeWKBgy`|7*to9dmQH%+0BQ_P6Hd z=cE6pbEAx_)-Iq==7e9T=jVc&-uao!7X>E}{Vf$(Us!OG_mDL|m5xrr5-RtsG^pHU zfr^|rm7X>&vP*WCoU#E=PxV-B4fl++TT?`UrFMHR!I+4`M08*Il?m!bVnqm{h1&&K z#P!b439TkePUo4yk`6&KvvOtT>xyg$lma^s!vzSDvrfze%(qIw874FKeUV&p+wDz7 zUNYaWGWUU?S1zgEh+(zAq)lOqbC^r=pW?vt5!mbCa42a<|4YxcyWE`UGU0y(gQWK4 z$|9K_0Y=*>YruGkT<$EV6>i8Jx#D7L~_1zA5e*{STZr_j_CT1{`HC#gR z-^YJm{2fkrK9z`F(TS1HWuFu%$8e#ruIeRbux3U#Qh_L^>hnlXPk5ZK&F8lJA~%k= z@g#au-&jSjSy2EM2+f^FMAx@MkZGO^KV}bA4^SeGLfP;^hBdvlBf6G}v%m@7mkzIIz* z!}(&7fjNeBS1$RARE@VK@(FQUA@(Eq0#Z7kZ=6d!Jt6gA+;SGHjVz7$jr~YG6^!cU zvSbBhTveP2!ng%{Ypw2cAzxsFFIEE-6S3&h@x&>WsVdtflO>8;Wl$p{73H@%kl{g1 z#@EP6Pgi2OFNx�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 literal 0 HcmV?d00001 diff --git a/myenv/pyvenv.cfg b/myenv/pyvenv.cfg new file mode 100644 index 0000000..1c32470 --- /dev/null +++ b/myenv/pyvenv.cfg @@ -0,0 +1,5 @@ +home = C:\Users\alexe\AppData\Local\Programs\Python\Python312 +include-system-site-packages = false +version = 3.12.8 +executable = C:\Users\alexe\AppData\Local\Programs\Python\Python312\python.exe +command = C:\Users\alexe\AppData\Local\Programs\Python\Python312\python.exe -m venv C:\Users\alexe\OneDrive\Рабочий стол\2laba_practika\myenv