From b2e290793f176b56fdffa6e6263251fb7fc48001 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sat, 14 Dec 2024 11:12:49 +0000 Subject: [PATCH] chore: initialise Git repository --- .venv/bin/Activate.ps1 | 247 + .venv/bin/activate | 70 + .venv/bin/activate.csh | 27 + .venv/bin/activate.fish | 69 + .venv/bin/markdown-it | 8 + .venv/bin/pip | 8 + .venv/bin/pip3 | 8 + .venv/bin/pip3.12 | 8 + .venv/bin/pygmentize | 8 + .venv/bin/python | 1 + .venv/bin/python3 | 1 + .venv/bin/python3.12 | 1 + .../site-packages/markdown_it/__init__.py | 5 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 323 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 520 bytes .../__pycache__/_punycode.cpython-312.pyc | Bin 0 -> 2613 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 16987 bytes .../__pycache__/parser_block.cpython-312.pyc | Bin 0 -> 4047 bytes .../__pycache__/parser_core.cpython-312.pyc | Bin 0 -> 1810 bytes .../__pycache__/parser_inline.cpython-312.pyc | Bin 0 -> 5285 bytes .../__pycache__/renderer.cpython-312.pyc | Bin 0 -> 11808 bytes .../__pycache__/ruler.cpython-312.pyc | Bin 0 -> 12187 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 7834 bytes .../__pycache__/tree.cpython-312.pyc | Bin 0 -> 15811 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 8343 bytes .../site-packages/markdown_it/_compat.py | 11 + .../site-packages/markdown_it/_punycode.py | 67 + .../site-packages/markdown_it/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 192 bytes .../cli/__pycache__/parse.cpython-312.pyc | Bin 0 -> 4506 bytes .../site-packages/markdown_it/cli/parse.py | 109 + .../markdown_it/common/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 195 bytes .../__pycache__/entities.cpython-312.pyc | Bin 0 -> 561 bytes .../__pycache__/html_blocks.cpython-312.pyc | Bin 0 -> 779 bytes .../__pycache__/html_re.cpython-312.pyc | Bin 0 -> 1341 bytes .../__pycache__/normalize_url.cpython-312.pyc | Bin 0 -> 3304 bytes .../common/__pycache__/utils.cpython-312.pyc | Bin 0 -> 10075 bytes .../markdown_it/common/entities.py | 4 + .../markdown_it/common/html_blocks.py | 68 + .../markdown_it/common/html_re.py | 40 + .../markdown_it/common/normalize_url.py | 81 + .../site-packages/markdown_it/common/utils.py | 318 + .../markdown_it/helpers/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 461 bytes .../parse_link_destination.cpython-312.pyc | Bin 0 -> 2184 bytes .../parse_link_label.cpython-312.pyc | Bin 0 -> 1428 bytes .../parse_link_title.cpython-312.pyc | Bin 0 -> 1946 bytes .../helpers/parse_link_destination.py | 86 + .../markdown_it/helpers/parse_link_label.py | 43 + .../markdown_it/helpers/parse_link_title.py | 60 + .../site-packages/markdown_it/main.py | 355 + .../site-packages/markdown_it/parser_block.py | 111 + .../site-packages/markdown_it/parser_core.py | 45 + .../markdown_it/parser_inline.py | 147 + .../site-packages/markdown_it/port.yaml | 48 + .../markdown_it/presets/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1611 bytes .../__pycache__/commonmark.cpython-312.pyc | Bin 0 -> 1156 bytes .../__pycache__/default.cpython-312.pyc | Bin 0 -> 672 bytes .../presets/__pycache__/zero.cpython-312.pyc | Bin 0 -> 933 bytes .../markdown_it/presets/commonmark.py | 74 + .../markdown_it/presets/default.py | 35 + .../site-packages/markdown_it/presets/zero.py | 43 + .../site-packages/markdown_it/py.typed | 1 + .../site-packages/markdown_it/renderer.py | 336 + .../site-packages/markdown_it/ruler.py | 276 + .../markdown_it/rules_block/__init__.py | 27 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 682 bytes .../__pycache__/blockquote.cpython-312.pyc | Bin 0 -> 6907 bytes .../__pycache__/code.cpython-312.pyc | Bin 0 -> 1381 bytes .../__pycache__/fence.cpython-312.pyc | Bin 0 -> 2527 bytes .../__pycache__/heading.cpython-312.pyc | Bin 0 -> 2626 bytes .../__pycache__/hr.cpython-312.pyc | Bin 0 -> 1756 bytes .../__pycache__/html_block.cpython-312.pyc | Bin 0 -> 3610 bytes .../__pycache__/lheading.cpython-312.pyc | Bin 0 -> 2932 bytes .../__pycache__/list.cpython-312.pyc | Bin 0 -> 8033 bytes .../__pycache__/paragraph.cpython-312.pyc | Bin 0 -> 2172 bytes .../__pycache__/reference.cpython-312.pyc | Bin 0 -> 5693 bytes .../__pycache__/state_block.cpython-312.pyc | Bin 0 -> 9197 bytes .../__pycache__/table.cpython-312.pyc | Bin 0 -> 7201 bytes .../markdown_it/rules_block/blockquote.py | 299 + .../markdown_it/rules_block/code.py | 35 + .../markdown_it/rules_block/fence.py | 101 + .../markdown_it/rules_block/heading.py | 68 + .../markdown_it/rules_block/hr.py | 55 + .../markdown_it/rules_block/html_block.py | 90 + .../markdown_it/rules_block/lheading.py | 86 + .../markdown_it/rules_block/list.py | 345 + .../markdown_it/rules_block/paragraph.py | 65 + .../markdown_it/rules_block/reference.py | 215 + .../markdown_it/rules_block/state_block.py | 261 + .../markdown_it/rules_block/table.py | 236 + .../markdown_it/rules_core/__init__.py | 19 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 546 bytes .../__pycache__/block.cpython-312.pyc | Bin 0 -> 978 bytes .../__pycache__/inline.cpython-312.pyc | Bin 0 -> 817 bytes .../__pycache__/linkify.cpython-312.pyc | Bin 0 -> 5304 bytes .../__pycache__/normalize.cpython-312.pyc | Bin 0 -> 806 bytes .../__pycache__/replacements.cpython-312.pyc | Bin 0 -> 4919 bytes .../__pycache__/smartquotes.cpython-312.pyc | Bin 0 -> 6150 bytes .../__pycache__/state_core.cpython-312.pyc | Bin 0 -> 1088 bytes .../__pycache__/text_join.cpython-312.pyc | Bin 0 -> 1461 bytes .../markdown_it/rules_core/block.py | 13 + .../markdown_it/rules_core/inline.py | 10 + .../markdown_it/rules_core/linkify.py | 149 + .../markdown_it/rules_core/normalize.py | 18 + .../markdown_it/rules_core/replacements.py | 126 + .../markdown_it/rules_core/smartquotes.py | 202 + .../markdown_it/rules_core/state_core.py | 25 + .../markdown_it/rules_core/text_join.py | 34 + .../markdown_it/rules_inline/__init__.py | 31 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 813 bytes .../__pycache__/autolink.cpython-312.pyc | Bin 0 -> 2773 bytes .../__pycache__/backticks.cpython-312.pyc | Bin 0 -> 2561 bytes .../__pycache__/balance_pairs.cpython-312.pyc | Bin 0 -> 3249 bytes .../__pycache__/emphasis.cpython-312.pyc | Bin 0 -> 3859 bytes .../__pycache__/entity.cpython-312.pyc | Bin 0 -> 2462 bytes .../__pycache__/escape.cpython-312.pyc | Bin 0 -> 1919 bytes .../fragments_join.cpython-312.pyc | Bin 0 -> 1944 bytes .../__pycache__/html_inline.cpython-312.pyc | Bin 0 -> 1985 bytes .../__pycache__/image.cpython-312.pyc | Bin 0 -> 4188 bytes .../__pycache__/link.cpython-312.pyc | Bin 0 -> 4060 bytes .../__pycache__/linkify.cpython-312.pyc | Bin 0 -> 2730 bytes .../__pycache__/newline.cpython-312.pyc | Bin 0 -> 1774 bytes .../__pycache__/state_inline.cpython-312.pyc | Bin 0 -> 5970 bytes .../__pycache__/strikethrough.cpython-312.pyc | Bin 0 -> 4209 bytes .../__pycache__/text.cpython-312.pyc | Bin 0 -> 1011 bytes .../markdown_it/rules_inline/autolink.py | 77 + .../markdown_it/rules_inline/backticks.py | 72 + .../markdown_it/rules_inline/balance_pairs.py | 137 + .../markdown_it/rules_inline/emphasis.py | 102 + .../markdown_it/rules_inline/entity.py | 53 + .../markdown_it/rules_inline/escape.py | 92 + .../rules_inline/fragments_join.py | 43 + .../markdown_it/rules_inline/html_inline.py | 43 + .../markdown_it/rules_inline/image.py | 148 + .../markdown_it/rules_inline/link.py | 151 + .../markdown_it/rules_inline/linkify.py | 61 + .../markdown_it/rules_inline/newline.py | 43 + .../markdown_it/rules_inline/state_inline.py | 166 + .../markdown_it/rules_inline/strikethrough.py | 127 + .../markdown_it/rules_inline/text.py | 53 + .../site-packages/markdown_it/token.py | 180 + .../site-packages/markdown_it/tree.py | 345 + .../site-packages/markdown_it/utils.py | 176 + .../markdown_it_py-3.0.0.dist-info/INSTALLER | 1 + .../markdown_it_py-3.0.0.dist-info/LICENSE | 21 + .../LICENSE.markdown-it | 22 + .../markdown_it_py-3.0.0.dist-info/METADATA | 205 + .../markdown_it_py-3.0.0.dist-info/RECORD | 142 + .../markdown_it_py-3.0.0.dist-info/WHEEL | 4 + .../entry_points.txt | 3 + .../mdurl-0.1.2.dist-info/INSTALLER | 1 + .../mdurl-0.1.2.dist-info/LICENSE | 46 + .../mdurl-0.1.2.dist-info/METADATA | 32 + .../mdurl-0.1.2.dist-info/RECORD | 18 + .../site-packages/mdurl-0.1.2.dist-info/WHEEL | 4 + .../site-packages/mdurl/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 644 bytes .../mdurl/__pycache__/_decode.cpython-312.pyc | Bin 0 -> 3819 bytes .../mdurl/__pycache__/_encode.cpython-312.pyc | Bin 0 -> 2872 bytes .../mdurl/__pycache__/_format.cpython-312.pyc | Bin 0 -> 1212 bytes .../mdurl/__pycache__/_parse.cpython-312.pyc | Bin 0 -> 7249 bytes .../mdurl/__pycache__/_url.cpython-312.pyc | Bin 0 -> 667 bytes .../python3.12/site-packages/mdurl/_decode.py | 104 + .../python3.12/site-packages/mdurl/_encode.py | 85 + .../python3.12/site-packages/mdurl/_format.py | 27 + .../python3.12/site-packages/mdurl/_parse.py | 304 + .../python3.12/site-packages/mdurl/_url.py | 14 + .../python3.12/site-packages/mdurl/py.typed | 1 + .../pip-24.2.dist-info/AUTHORS.txt | 796 ++ .../pip-24.2.dist-info/INSTALLER | 1 + .../pip-24.2.dist-info/LICENSE.txt | 20 + .../site-packages/pip-24.2.dist-info/METADATA | 89 + .../site-packages/pip-24.2.dist-info/RECORD | 853 ++ .../pip-24.2.dist-info/REQUESTED | 0 .../site-packages/pip-24.2.dist-info/WHEEL | 5 + .../pip-24.2.dist-info/entry_points.txt | 3 + .../pip-24.2.dist-info/top_level.txt | 1 + .../python3.12/site-packages/pip/__init__.py | 13 + .../python3.12/site-packages/pip/__main__.py | 24 + .../site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 689 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 845 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2209 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 791 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14476 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12671 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17636 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 35555 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 674 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 5122 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10212 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13619 bytes .../site-packages/pip/_internal/build_env.py | 315 + .../site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 282 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8610 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10198 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30399 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1778 bytes .../__pycache__/index_command.cpython-312.pyc | Bin 0 -> 7128 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2304 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4910 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 15017 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 3838 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 12245 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7837 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 379 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 -> 4006 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9705 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2596 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5197 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13167 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10072 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7507 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4389 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 2972 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1677 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6675 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 3984 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 29118 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15761 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7522 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 10481 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4713 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 8869 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 -> 945 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2897 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1704 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8431 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2285 bytes .../pip/_internal/distributions/base.py | 53 + .../pip/_internal/distributions/installed.py | 29 + .../pip/_internal/distributions/sdist.py | 158 + .../pip/_internal/distributions/wheel.py | 42 + .../site-packages/pip/_internal/exceptions.py | 777 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 236 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21621 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40652 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12592 bytes .../pip/_internal/index/collector.py | 494 + .../pip/_internal/index/package_finder.py | 1020 ++ .../pip/_internal/index/sources.py | 285 + .../pip/_internal/locations/__init__.py | 456 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 16444 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6856 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8032 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3785 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 214 + .../pip/_internal/locations/base.py | 81 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 128 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5873 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2930 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35202 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 16088 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 -> 362 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 4495 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 12569 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11083 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 -> 270 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1608 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 10848 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4227 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1698 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2281 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26621 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1027 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 4991 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1855 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 4957 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5764 bytes .../pip/_internal/models/candidate.py | 25 + .../pip/_internal/models/direct_url.py | 224 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 56 + .../pip/_internal/models/link.py | 590 ++ .../pip/_internal/models/scheme.py | 25 + .../pip/_internal/models/search_scope.py | 127 + .../pip/_internal/models/selection_prefs.py | 53 + .../pip/_internal/models/target_python.py | 121 + .../pip/_internal/models/wheel.py | 93 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 258 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 22103 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6455 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8483 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11611 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18878 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2259 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 2953 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 -> 201 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7108 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10132 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25776 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 207 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7671 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1861 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1895 bytes .../metadata_legacy.cpython-312.pyc | Bin 0 -> 3015 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1681 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2020 bytes .../__pycache__/wheel_legacy.cpython-312.pyc | Bin 0 -> 3850 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 -> 270 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1802 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 34107 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 -> 3449 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21222 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 21436 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38479 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 5487 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 32098 bytes .../pip/_internal/req/constructors.py | 560 ++ .../pip/_internal/req/req_file.py | 551 ++ .../pip/_internal/req/req_install.py | 934 ++ .../pip/_internal/req/req_set.py | 82 + .../pip/_internal/req/req_uninstall.py | 633 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 201 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1189 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 208 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22583 bytes .../_internal/resolution/legacy/resolver.py | 597 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 212 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8153 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 29176 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32290 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6797 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10527 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 5044 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 15360 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12318 bytes .../_internal/resolution/resolvelib/base.py | 139 + .../resolution/resolvelib/candidates.py | 569 ++ .../resolution/resolvelib/factory.py | 817 ++ .../resolution/resolvelib/found_candidates.py | 174 + .../resolution/resolvelib/provider.py | 258 + .../resolution/resolvelib/reporter.py | 81 + .../resolution/resolvelib/requirements.py | 245 + .../resolution/resolvelib/resolver.py | 317 + .../pip/_internal/self_outdated_check.py | 244 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 196 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4531 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1867 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2411 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2908 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 5564 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 685 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4192 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3537 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3207 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2149 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 3994 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7330 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1165 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2420 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7604 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13559 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 33552 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2584 bytes .../utils/__pycache__/retry.cpython-312.pyc | Bin 0 -> 2109 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4551 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8640 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12025 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 13499 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2078 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4467 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5904 bytes .../pip/_internal/utils/_jaraco_text.py | 109 + .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 79 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 124 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/egg_link.py | 80 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 84 + .../pip/_internal/utils/filesystem.py | 149 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 101 + .../pip/_internal/utils/hashes.py | 147 + .../pip/_internal/utils/logging.py | 347 + .../site-packages/pip/_internal/utils/misc.py | 777 ++ .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/retry.py | 42 + .../pip/_internal/utils/setuptools_build.py | 146 + .../pip/_internal/utils/subprocess.py | 245 + .../pip/_internal/utils/temp_dir.py | 296 + .../pip/_internal/utils/unpacking.py | 337 + .../site-packages/pip/_internal/utils/urls.py | 55 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 134 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 535 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5056 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19021 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7609 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12528 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 29001 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 + .../site-packages/pip/_vendor/__init__.py | 116 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4554 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 139456 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 907 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2651 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6469 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3792 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16229 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4352 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6699 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 5266 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1679 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 -> 440 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7768 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2738 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 -> 323 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 650 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3216 bytes .../pip/_vendor/certifi/cacert.pem | 4798 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 114 + .../pip/_vendor/certifi/py.typed | 0 .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1274 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45536 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 65686 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24321 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 59935 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15081 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7683 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41671 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17317 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19774 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88022 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30350 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 51453 bytes .../pip/_vendor/distlib/compat.py | 1138 +++ .../pip/_vendor/distlib/database.py | 1359 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1303 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 167 + .../pip/_vendor/distlib/metadata.py | 1068 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 466 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 97792 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 182784 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 108032 bytes .../site-packages/pip/_vendor/distlib/util.py | 2025 ++++ .../pip/_vendor/distlib/version.py | 751 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 91648 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 168448 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 101888 bytes .../pip/_vendor/distlib/wheel.py | 1099 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 965 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 297 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53797 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 -> 886 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 4981 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 892 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 15796 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 99481 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2638 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 221 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158853 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 -> 1746 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2030 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8175 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 42048 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 -> 563 bytes .../__pycache__/_elffile.cpython-312.pyc | Bin 0 -> 4972 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 9690 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 4559 bytes .../__pycache__/_parser.cpython-312.pyc | Bin 0 -> 13990 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3246 bytes .../__pycache__/_tokenizer.cpython-312.pyc | Bin 0 -> 7920 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 11016 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 24958 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 4415 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 38744 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 21349 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 7346 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 19512 bytes .../pip/_vendor/packaging/_elffile.py | 110 + .../pip/_vendor/packaging/_manylinux.py | 262 + .../pip/_vendor/packaging/_musllinux.py | 85 + .../pip/_vendor/packaging/_parser.py | 354 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/_tokenizer.py | 194 + .../pip/_vendor/packaging/markers.py | 325 + .../pip/_vendor/packaging/metadata.py | 804 ++ .../pip/_vendor/packaging/py.typed | 0 .../pip/_vendor/packaging/requirements.py | 91 + .../pip/_vendor/packaging/specifiers.py | 1009 ++ .../pip/_vendor/packaging/tags.py | 568 ++ .../pip/_vendor/packaging/utils.py | 174 + .../pip/_vendor/packaging/version.py | 563 ++ .../pip/_vendor/pkg_resources/__init__.py | 3676 +++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 161266 bytes .../pip/_vendor/platformdirs/__init__.py | 627 ++ .../pip/_vendor/platformdirs/__main__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 19834 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1953 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 10702 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 12916 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 8012 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 15042 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 602 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13679 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 -> 3494 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 740 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26590 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2634 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3227 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4726 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38367 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1565 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 2614 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4083 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4762 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 12104 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6699 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8195 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 32978 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14075 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 -> 37917 bytes .../pip/_vendor/pygments/formatter.py | 129 + .../_vendor/pygments/formatters/__init__.py | 157 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6908 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4221 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4228 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7299 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 41032 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 28554 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6061 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20131 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6883 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2964 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 13779 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9145 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5825 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15124 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 -> 14627 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 68269 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42973 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 -> 2670 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 3654 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 -> 619 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 380 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14699 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 -> 1086 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14359 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 179 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5259 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 590 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2030 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 28437 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7197 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13927 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 928 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1683 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25204 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7604 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4234 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1057 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35434 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 1272 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27852 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 6029 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5629 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36372 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 -> 640 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6857 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2660 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25886 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10506 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 206 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 426 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 -> 7021 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10298 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7878 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 205982 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1735 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2355 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 543 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 861 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12079 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4153 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1876 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3626 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5166 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 727 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6576 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13185 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 971 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 871 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 28982 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2496 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3569 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 3332 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1614 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12293 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9072 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4278 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11844 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5816 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26575 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1707 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8590 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113442 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2264 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9216 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10947 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10372 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1494 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4218 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1851 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3577 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3078 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9893 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6041 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5214 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20164 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19015 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4895 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13560 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9573 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6384 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7130 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1817 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5303 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12189 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40153 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 74941 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10383 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14793 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1798 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 573 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6619 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6574 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3831 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2485 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28121 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6070 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6067 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33506 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2145 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39954 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43545 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3354 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 60855 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6341 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 320 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31517 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11442 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 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 240 + .../site-packages/pip/_vendor/rich/bar.py | 93 + .../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 -> 390 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 26905 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3914 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 372 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../site-packages/pip/_vendor/tomli/py.typed | 1 + .../pip/_vendor/truststore/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 624 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 16546 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 16578 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2211 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1105 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15746 bytes .../pip/_vendor/truststore/_api.py | 313 + .../pip/_vendor/truststore/_macos.py | 499 + .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 564 ++ .../pip/_vendor/truststore/py.typed | 0 .../pip/_vendor/typing_extensions.py | 3641 +++++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3411 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 16370 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 224 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20409 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36443 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13499 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10408 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4018 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20435 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7300 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 33949 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1137 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 204 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1854 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11570 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5720 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24454 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35507 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7517 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 221 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17433 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14769 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 -> 205 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41261 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 215 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1831 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7342 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 -> 1152 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4753 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1558 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1358 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4189 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 2998 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21707 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15090 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5057 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10759 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11145 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15791 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4409 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 620 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 271 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../site-packages/pip/_vendor/vendor.txt | 18 + .../lib/python3.12/site-packages/pip/py.typed | 4 + .../pygments-2.18.0.dist-info/INSTALLER | 1 + .../pygments-2.18.0.dist-info/METADATA | 57 + .../pygments-2.18.0.dist-info/RECORD | 662 ++ .../pygments-2.18.0.dist-info/WHEEL | 4 + .../entry_points.txt | 2 + .../licenses/AUTHORS | 283 + .../licenses/LICENSE | 25 + .../site-packages/pygments/__init__.py | 82 + .../site-packages/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3458 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 777 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26458 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2622 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3215 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4690 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38645 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1553 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 2602 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4071 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4750 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 12062 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6675 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8183 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 32966 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14063 bytes .../site-packages/pygments/cmdline.py | 668 ++ .../site-packages/pygments/console.py | 70 + .../site-packages/pygments/filter.py | 70 + .../pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 37857 bytes .../site-packages/pygments/formatter.py | 129 + .../pygments/formatters/__init__.py | 157 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6860 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4209 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4192 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7263 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 40984 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 28518 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6013 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20071 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6823 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2940 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 13731 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9097 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5765 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15076 bytes .../pygments/formatters/_mapping.py | 23 + .../pygments/formatters/bbcode.py | 108 + .../pygments/formatters/groff.py | 170 + .../site-packages/pygments/formatters/html.py | 987 ++ .../site-packages/pygments/formatters/img.py | 685 ++ .../site-packages/pygments/formatters/irc.py | 154 + .../pygments/formatters/latex.py | 518 + .../pygments/formatters/other.py | 160 + .../pygments/formatters/pangomarkup.py | 83 + .../site-packages/pygments/formatters/rtf.py | 349 + .../site-packages/pygments/formatters/svg.py | 185 + .../pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../site-packages/pygments/lexer.py | 961 ++ .../site-packages/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14567 bytes .../__pycache__/_ada_builtins.cpython-312.pyc | Bin 0 -> 1239 bytes .../__pycache__/_asy_builtins.cpython-312.pyc | Bin 0 -> 17632 bytes .../__pycache__/_cl_builtins.cpython-312.pyc | Bin 0 -> 11668 bytes .../_cocoa_builtins.cpython-312.pyc | Bin 0 -> 97530 bytes .../_csound_builtins.cpython-312.pyc | Bin 0 -> 16380 bytes .../__pycache__/_css_builtins.cpython-312.pyc | Bin 0 -> 9389 bytes .../_julia_builtins.cpython-312.pyc | Bin 0 -> 8254 bytes .../_lasso_builtins.cpython-312.pyc | Bin 0 -> 76732 bytes .../_lilypond_builtins.cpython-312.pyc | Bin 0 -> 88410 bytes .../__pycache__/_lua_builtins.cpython-312.pyc | Bin 0 -> 8349 bytes .../_luau_builtins.cpython-312.pyc | Bin 0 -> 1053 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 65479 bytes .../__pycache__/_mql_builtins.cpython-312.pyc | Bin 0 -> 18013 bytes .../_mysql_builtins.cpython-312.pyc | Bin 0 -> 19529 bytes .../_openedge_builtins.cpython-312.pyc | Bin 0 -> 34095 bytes .../__pycache__/_php_builtins.cpython-312.pyc | Bin 0 -> 65482 bytes .../_postgres_builtins.cpython-312.pyc | Bin 0 -> 11250 bytes .../_qlik_builtins.cpython-312.pyc | Bin 0 -> 6380 bytes .../_scheme_builtins.cpython-312.pyc | Bin 0 -> 23177 bytes .../_scilab_builtins.cpython-312.pyc | Bin 0 -> 35198 bytes .../_sourcemod_builtins.cpython-312.pyc | Bin 0 -> 21811 bytes .../_stan_builtins.cpython-312.pyc | Bin 0 -> 9956 bytes .../_stata_builtins.cpython-312.pyc | Bin 0 -> 21240 bytes .../_tsql_builtins.cpython-312.pyc | Bin 0 -> 8872 bytes .../__pycache__/_usd_builtins.cpython-312.pyc | Bin 0 -> 1402 bytes .../_vbscript_builtins.cpython-312.pyc | Bin 0 -> 2931 bytes .../__pycache__/_vim_builtins.cpython-312.pyc | Bin 0 -> 30734 bytes .../__pycache__/actionscript.cpython-312.pyc | Bin 0 -> 11119 bytes .../lexers/__pycache__/ada.cpython-312.pyc | Bin 0 -> 5515 bytes .../lexers/__pycache__/agile.cpython-312.pyc | Bin 0 -> 1310 bytes .../__pycache__/algebra.cpython-312.pyc | Bin 0 -> 10952 bytes .../__pycache__/ambient.cpython-312.pyc | Bin 0 -> 3127 bytes .../lexers/__pycache__/amdgpu.cpython-312.pyc | Bin 0 -> 2250 bytes .../lexers/__pycache__/ampl.cpython-312.pyc | Bin 0 -> 4098 bytes .../__pycache__/apdlexer.cpython-312.pyc | Bin 0 -> 19039 bytes .../lexers/__pycache__/apl.cpython-312.pyc | Bin 0 -> 2519 bytes .../__pycache__/archetype.cpython-312.pyc | Bin 0 -> 9191 bytes .../lexers/__pycache__/arrow.cpython-312.pyc | Bin 0 -> 3569 bytes .../lexers/__pycache__/arturo.cpython-312.pyc | Bin 0 -> 9746 bytes .../lexers/__pycache__/asc.cpython-312.pyc | Bin 0 -> 2049 bytes .../lexers/__pycache__/asm.cpython-312.pyc | Bin 0 -> 35984 bytes .../lexers/__pycache__/asn1.cpython-312.pyc | Bin 0 -> 4491 bytes .../__pycache__/automation.cpython-312.pyc | Bin 0 -> 18417 bytes .../lexers/__pycache__/bare.cpython-312.pyc | Bin 0 -> 2876 bytes .../lexers/__pycache__/basic.cpython-312.pyc | Bin 0 -> 26973 bytes .../lexers/__pycache__/bdd.cpython-312.pyc | Bin 0 -> 2085 bytes .../lexers/__pycache__/berry.cpython-312.pyc | Bin 0 -> 3559 bytes .../lexers/__pycache__/bibtex.cpython-312.pyc | Bin 0 -> 5225 bytes .../__pycache__/blueprint.cpython-312.pyc | Bin 0 -> 5313 bytes .../lexers/__pycache__/boa.cpython-312.pyc | Bin 0 -> 3535 bytes .../lexers/__pycache__/bqn.cpython-312.pyc | Bin 0 -> 2377 bytes .../__pycache__/business.cpython-312.pyc | Bin 0 -> 22066 bytes .../lexers/__pycache__/c_cpp.cpython-312.pyc | Bin 0 -> 16095 bytes .../lexers/__pycache__/c_like.cpython-312.pyc | Bin 0 -> 27556 bytes .../__pycache__/capnproto.cpython-312.pyc | Bin 0 -> 2408 bytes .../lexers/__pycache__/carbon.cpython-312.pyc | Bin 0 -> 3546 bytes .../lexers/__pycache__/cddl.cpython-312.pyc | Bin 0 -> 4238 bytes .../lexers/__pycache__/chapel.cpython-312.pyc | Bin 0 -> 4272 bytes .../lexers/__pycache__/clean.cpython-312.pyc | Bin 0 -> 6081 bytes .../lexers/__pycache__/comal.cpython-312.pyc | Bin 0 -> 3228 bytes .../__pycache__/compiled.cpython-312.pyc | Bin 0 -> 2001 bytes .../__pycache__/configs.cpython-312.pyc | Bin 0 -> 44233 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 4251 bytes .../lexers/__pycache__/cplint.cpython-312.pyc | Bin 0 -> 1763 bytes .../__pycache__/crystal.cpython-312.pyc | Bin 0 -> 15151 bytes .../lexers/__pycache__/csound.cpython-312.pyc | Bin 0 -> 14122 bytes .../lexers/__pycache__/css.cpython-312.pyc | Bin 0 -> 22090 bytes .../lexers/__pycache__/d.cpython-312.pyc | Bin 0 -> 8337 bytes .../lexers/__pycache__/dalvik.cpython-312.pyc | Bin 0 -> 4547 bytes .../lexers/__pycache__/data.cpython-312.pyc | Bin 0 -> 21164 bytes .../lexers/__pycache__/dax.cpython-312.pyc | Bin 0 -> 6248 bytes .../__pycache__/devicetree.cpython-312.pyc | Bin 0 -> 4048 bytes .../lexers/__pycache__/diff.cpython-312.pyc | Bin 0 -> 5683 bytes .../lexers/__pycache__/dns.cpython-312.pyc | Bin 0 -> 3782 bytes .../lexers/__pycache__/dotnet.cpython-312.pyc | Bin 0 -> 34412 bytes .../lexers/__pycache__/dsls.cpython-312.pyc | Bin 0 -> 33793 bytes .../lexers/__pycache__/dylan.cpython-312.pyc | Bin 0 -> 9710 bytes .../lexers/__pycache__/ecl.cpython-312.pyc | Bin 0 -> 5591 bytes .../lexers/__pycache__/eiffel.cpython-312.pyc | Bin 0 -> 2998 bytes .../lexers/__pycache__/elm.cpython-312.pyc | Bin 0 -> 3242 bytes .../lexers/__pycache__/elpi.cpython-312.pyc | Bin 0 -> 6870 bytes .../lexers/__pycache__/email.cpython-312.pyc | Bin 0 -> 5988 bytes .../lexers/__pycache__/erlang.cpython-312.pyc | Bin 0 -> 20529 bytes .../__pycache__/esoteric.cpython-312.pyc | Bin 0 -> 9765 bytes .../lexers/__pycache__/ezhil.cpython-312.pyc | Bin 0 -> 3864 bytes .../lexers/__pycache__/factor.cpython-312.pyc | Bin 0 -> 16931 bytes .../lexers/__pycache__/fantom.cpython-312.pyc | Bin 0 -> 8000 bytes .../lexers/__pycache__/felix.cpython-312.pyc | Bin 0 -> 8255 bytes .../lexers/__pycache__/fift.cpython-312.pyc | Bin 0 -> 1967 bytes .../__pycache__/floscript.cpython-312.pyc | Bin 0 -> 2985 bytes .../lexers/__pycache__/forth.cpython-312.pyc | Bin 0 -> 5361 bytes .../__pycache__/fortran.cpython-312.pyc | Bin 0 -> 8718 bytes .../lexers/__pycache__/foxpro.cpython-312.pyc | Bin 0 -> 20815 bytes .../__pycache__/freefem.cpython-312.pyc | Bin 0 -> 12786 bytes .../lexers/__pycache__/func.cpython-312.pyc | Bin 0 -> 3341 bytes .../__pycache__/functional.cpython-312.pyc | Bin 0 -> 1051 bytes .../__pycache__/futhark.cpython-312.pyc | Bin 0 -> 4083 bytes .../__pycache__/gcodelexer.cpython-312.pyc | Bin 0 -> 1323 bytes .../__pycache__/gdscript.cpython-312.pyc | Bin 0 -> 7217 bytes .../lexers/__pycache__/go.cpython-312.pyc | Bin 0 -> 3390 bytes .../grammar_notation.cpython-312.pyc | Bin 0 -> 7720 bytes .../lexers/__pycache__/graph.cpython-312.pyc | Bin 0 -> 3817 bytes .../__pycache__/graphics.cpython-312.pyc | Bin 0 -> 29703 bytes .../__pycache__/graphql.cpython-312.pyc | Bin 0 -> 4450 bytes .../__pycache__/graphviz.cpython-312.pyc | Bin 0 -> 2224 bytes .../lexers/__pycache__/gsql.cpython-312.pyc | Bin 0 -> 3784 bytes .../__pycache__/haskell.cpython-312.pyc | Bin 0 -> 30470 bytes .../lexers/__pycache__/haxe.cpython-312.pyc | Bin 0 -> 22287 bytes .../lexers/__pycache__/hdl.cpython-312.pyc | Bin 0 -> 17482 bytes .../__pycache__/hexdump.cpython-312.pyc | Bin 0 -> 3658 bytes .../lexers/__pycache__/html.cpython-312.pyc | Bin 0 -> 19271 bytes .../lexers/__pycache__/idl.cpython-312.pyc | Bin 0 -> 12476 bytes .../lexers/__pycache__/igor.cpython-312.pyc | Bin 0 -> 25696 bytes .../__pycache__/inferno.cpython-312.pyc | Bin 0 -> 3254 bytes .../__pycache__/installers.cpython-312.pyc | Bin 0 -> 12862 bytes .../__pycache__/int_fiction.cpython-312.pyc | Bin 0 -> 48089 bytes .../lexers/__pycache__/iolang.cpython-312.pyc | Bin 0 -> 2218 bytes .../lexers/__pycache__/j.cpython-312.pyc | Bin 0 -> 4310 bytes .../__pycache__/javascript.cpython-312.pyc | Bin 0 -> 56937 bytes .../__pycache__/jmespath.cpython-312.pyc | Bin 0 -> 2408 bytes .../lexers/__pycache__/jslt.cpython-312.pyc | Bin 0 -> 3766 bytes .../__pycache__/jsonnet.cpython-312.pyc | Bin 0 -> 4864 bytes .../lexers/__pycache__/jsx.cpython-312.pyc | Bin 0 -> 2354 bytes .../lexers/__pycache__/julia.cpython-312.pyc | Bin 0 -> 10909 bytes .../lexers/__pycache__/jvm.cpython-312.pyc | Bin 0 -> 63874 bytes .../lexers/__pycache__/kuin.cpython-312.pyc | Bin 0 -> 9888 bytes .../lexers/__pycache__/kusto.cpython-312.pyc | Bin 0 -> 2850 bytes .../lexers/__pycache__/ldap.cpython-312.pyc | Bin 0 -> 6434 bytes .../lexers/__pycache__/lean.cpython-312.pyc | Bin 0 -> 7999 bytes .../__pycache__/lilypond.cpython-312.pyc | Bin 0 -> 8379 bytes .../lexers/__pycache__/lisp.cpython-312.pyc | Bin 0 -> 121594 bytes .../__pycache__/macaulay2.cpython-312.pyc | Bin 0 -> 22800 bytes .../lexers/__pycache__/make.cpython-312.pyc | Bin 0 -> 6672 bytes .../lexers/__pycache__/markup.cpython-312.pyc | Bin 0 -> 60414 bytes .../lexers/__pycache__/math.cpython-312.pyc | Bin 0 -> 1047 bytes .../lexers/__pycache__/matlab.cpython-312.pyc | Bin 0 -> 55676 bytes .../lexers/__pycache__/maxima.cpython-312.pyc | Bin 0 -> 3195 bytes .../lexers/__pycache__/meson.cpython-312.pyc | Bin 0 -> 3528 bytes .../lexers/__pycache__/mime.cpython-312.pyc | Bin 0 -> 10124 bytes .../__pycache__/minecraft.cpython-312.pyc | Bin 0 -> 10703 bytes .../lexers/__pycache__/mips.cpython-312.pyc | Bin 0 -> 3442 bytes .../lexers/__pycache__/ml.cpython-312.pyc | Bin 0 -> 26174 bytes .../__pycache__/modeling.cpython-312.pyc | Bin 0 -> 12086 bytes .../__pycache__/modula2.cpython-312.pyc | Bin 0 -> 26425 bytes .../lexers/__pycache__/mojo.cpython-312.pyc | Bin 0 -> 14342 bytes .../lexers/__pycache__/monte.cpython-312.pyc | Bin 0 -> 5120 bytes .../lexers/__pycache__/mosel.cpython-312.pyc | Bin 0 -> 6969 bytes .../lexers/__pycache__/ncl.cpython-312.pyc | Bin 0 -> 45921 bytes .../lexers/__pycache__/nimrod.cpython-312.pyc | Bin 0 -> 6457 bytes .../lexers/__pycache__/nit.cpython-312.pyc | Bin 0 -> 2763 bytes .../lexers/__pycache__/nix.cpython-312.pyc | Bin 0 -> 5475 bytes .../lexers/__pycache__/oberon.cpython-312.pyc | Bin 0 -> 3752 bytes .../__pycache__/objective.cpython-312.pyc | Bin 0 -> 19440 bytes .../lexers/__pycache__/ooc.cpython-312.pyc | Bin 0 -> 3116 bytes .../__pycache__/openscad.cpython-312.pyc | Bin 0 -> 3735 bytes .../lexers/__pycache__/other.cpython-312.pyc | Bin 0 -> 2457 bytes .../__pycache__/parasail.cpython-312.pyc | Bin 0 -> 2892 bytes .../__pycache__/parsers.cpython-312.pyc | Bin 0 -> 24407 bytes .../lexers/__pycache__/pascal.cpython-312.pyc | Bin 0 -> 23943 bytes .../lexers/__pycache__/pawn.cpython-312.pyc | Bin 0 -> 7867 bytes .../lexers/__pycache__/perl.cpython-312.pyc | Bin 0 -> 39015 bytes .../lexers/__pycache__/phix.cpython-312.pyc | Bin 0 -> 18429 bytes .../lexers/__pycache__/php.cpython-312.pyc | Bin 0 -> 14316 bytes .../__pycache__/pointless.cpython-312.pyc | Bin 0 -> 2302 bytes .../lexers/__pycache__/pony.cpython-312.pyc | Bin 0 -> 3431 bytes .../lexers/__pycache__/praat.cpython-312.pyc | Bin 0 -> 10293 bytes .../__pycache__/procfile.cpython-312.pyc | Bin 0 -> 1636 bytes .../lexers/__pycache__/prolog.cpython-312.pyc | Bin 0 -> 10538 bytes .../lexers/__pycache__/promql.cpython-312.pyc | Bin 0 -> 3341 bytes .../lexers/__pycache__/prql.cpython-312.pyc | Bin 0 -> 8389 bytes .../lexers/__pycache__/ptx.cpython-312.pyc | Bin 0 -> 3777 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42913 bytes .../lexers/__pycache__/q.cpython-312.pyc | Bin 0 -> 5851 bytes .../lexers/__pycache__/qlik.cpython-312.pyc | Bin 0 -> 3517 bytes .../lexers/__pycache__/qvt.cpython-312.pyc | Bin 0 -> 5385 bytes .../lexers/__pycache__/r.cpython-312.pyc | Bin 0 -> 5980 bytes .../lexers/__pycache__/rdf.cpython-312.pyc | Bin 0 -> 12235 bytes .../lexers/__pycache__/rebol.cpython-312.pyc | Bin 0 -> 19256 bytes .../__pycache__/resource.cpython-312.pyc | Bin 0 -> 3593 bytes .../lexers/__pycache__/ride.cpython-312.pyc | Bin 0 -> 4495 bytes .../lexers/__pycache__/rita.cpython-312.pyc | Bin 0 -> 1476 bytes .../lexers/__pycache__/rnc.cpython-312.pyc | Bin 0 -> 2018 bytes .../__pycache__/roboconf.cpython-312.pyc | Bin 0 -> 2369 bytes .../robotframework.cpython-312.pyc | Bin 0 -> 29578 bytes .../lexers/__pycache__/ruby.cpython-312.pyc | Bin 0 -> 22548 bytes .../lexers/__pycache__/rust.cpython-312.pyc | Bin 0 -> 7311 bytes .../lexers/__pycache__/sas.cpython-312.pyc | Bin 0 -> 7046 bytes .../lexers/__pycache__/savi.cpython-312.pyc | Bin 0 -> 3987 bytes .../lexers/__pycache__/scdoc.cpython-312.pyc | Bin 0 -> 2825 bytes .../__pycache__/scripting.cpython-312.pyc | Bin 0 -> 70902 bytes .../lexers/__pycache__/sgf.cpython-312.pyc | Bin 0 -> 2086 bytes .../lexers/__pycache__/shell.cpython-312.pyc | Bin 0 -> 36946 bytes .../lexers/__pycache__/sieve.cpython-312.pyc | Bin 0 -> 2756 bytes .../lexers/__pycache__/slash.cpython-312.pyc | Bin 0 -> 8399 bytes .../__pycache__/smalltalk.cpython-312.pyc | Bin 0 -> 6708 bytes .../lexers/__pycache__/smithy.cpython-312.pyc | Bin 0 -> 3133 bytes .../lexers/__pycache__/smv.cpython-312.pyc | Bin 0 -> 2815 bytes .../lexers/__pycache__/snobol.cpython-312.pyc | Bin 0 -> 2511 bytes .../__pycache__/solidity.cpython-312.pyc | Bin 0 -> 3414 bytes .../lexers/__pycache__/soong.cpython-312.pyc | Bin 0 -> 2279 bytes .../lexers/__pycache__/sophia.cpython-312.pyc | Bin 0 -> 3859 bytes .../__pycache__/special.cpython-312.pyc | Bin 0 -> 5387 bytes .../lexers/__pycache__/spice.cpython-312.pyc | Bin 0 -> 3184 bytes .../lexers/__pycache__/sql.cpython-312.pyc | Bin 0 -> 40697 bytes .../__pycache__/srcinfo.cpython-312.pyc | Bin 0 -> 2014 bytes .../lexers/__pycache__/stata.cpython-312.pyc | Bin 0 -> 5166 bytes .../__pycache__/supercollider.cpython-312.pyc | Bin 0 -> 3916 bytes .../lexers/__pycache__/tact.cpython-312.pyc | Bin 0 -> 9043 bytes .../lexers/__pycache__/tal.cpython-312.pyc | Bin 0 -> 2980 bytes .../lexers/__pycache__/tcl.cpython-312.pyc | Bin 0 -> 5154 bytes .../lexers/__pycache__/teal.cpython-312.pyc | Bin 0 -> 3563 bytes .../__pycache__/templates.cpython-312.pyc | Bin 0 -> 83582 bytes .../__pycache__/teraterm.cpython-312.pyc | Bin 0 -> 5571 bytes .../__pycache__/testing.cpython-312.pyc | Bin 0 -> 10079 bytes .../lexers/__pycache__/text.cpython-312.pyc | Bin 0 -> 1529 bytes .../__pycache__/textedit.cpython-312.pyc | Bin 0 -> 8520 bytes .../__pycache__/textfmts.cpython-312.pyc | Bin 0 -> 15601 bytes .../__pycache__/theorem.cpython-312.pyc | Bin 0 -> 14914 bytes .../__pycache__/thingsdb.cpython-312.pyc | Bin 0 -> 5625 bytes .../lexers/__pycache__/tlb.cpython-312.pyc | Bin 0 -> 1878 bytes .../lexers/__pycache__/tls.cpython-312.pyc | Bin 0 -> 1936 bytes .../lexers/__pycache__/tnt.cpython-312.pyc | Bin 0 -> 13592 bytes .../__pycache__/trafficscript.cpython-312.pyc | Bin 0 -> 1855 bytes .../__pycache__/typoscript.cpython-312.pyc | Bin 0 -> 7371 bytes .../lexers/__pycache__/typst.cpython-312.pyc | Bin 0 -> 4120 bytes .../lexers/__pycache__/ul4.cpython-312.pyc | Bin 0 -> 8152 bytes .../lexers/__pycache__/unicon.cpython-312.pyc | Bin 0 -> 12519 bytes .../lexers/__pycache__/urbi.cpython-312.pyc | Bin 0 -> 5921 bytes .../lexers/__pycache__/usd.cpython-312.pyc | Bin 0 -> 4034 bytes .../__pycache__/varnish.cpython-312.pyc | Bin 0 -> 6956 bytes .../__pycache__/verification.cpython-312.pyc | Bin 0 -> 4040 bytes .../__pycache__/verifpal.cpython-312.pyc | Bin 0 -> 2982 bytes .../lexers/__pycache__/vip.cpython-312.pyc | Bin 0 -> 5705 bytes .../lexers/__pycache__/vyper.cpython-312.pyc | Bin 0 -> 4913 bytes .../lexers/__pycache__/web.cpython-312.pyc | Bin 0 -> 1325 bytes .../__pycache__/webassembly.cpython-312.pyc | Bin 0 -> 5831 bytes .../lexers/__pycache__/webidl.cpython-312.pyc | Bin 0 -> 8115 bytes .../__pycache__/webmisc.cpython-312.pyc | Bin 0 -> 43552 bytes .../lexers/__pycache__/wgsl.cpython-312.pyc | Bin 0 -> 10861 bytes .../lexers/__pycache__/whiley.cpython-312.pyc | Bin 0 -> 3646 bytes .../lexers/__pycache__/wowtoc.cpython-312.pyc | Bin 0 -> 3251 bytes .../lexers/__pycache__/wren.cpython-312.pyc | Bin 0 -> 3116 bytes .../lexers/__pycache__/x10.cpython-312.pyc | Bin 0 -> 2407 bytes .../lexers/__pycache__/xorg.cpython-312.pyc | Bin 0 -> 1396 bytes .../lexers/__pycache__/yang.cpython-312.pyc | Bin 0 -> 4160 bytes .../lexers/__pycache__/yara.cpython-312.pyc | Bin 0 -> 2742 bytes .../lexers/__pycache__/zig.cpython-312.pyc | Bin 0 -> 3905 bytes .../pygments/lexers/_ada_builtins.py | 103 + .../pygments/lexers/_asy_builtins.py | 1644 ++++ .../pygments/lexers/_cl_builtins.py | 231 + .../pygments/lexers/_cocoa_builtins.py | 75 + .../pygments/lexers/_csound_builtins.py | 1780 ++++ .../pygments/lexers/_css_builtins.py | 558 ++ .../pygments/lexers/_julia_builtins.py | 411 + .../pygments/lexers/_lasso_builtins.py | 5326 ++++++++++ .../pygments/lexers/_lilypond_builtins.py | 4932 ++++++++++ .../pygments/lexers/_lua_builtins.py | 285 + .../pygments/lexers/_luau_builtins.py | 62 + .../site-packages/pygments/lexers/_mapping.py | 589 ++ .../pygments/lexers/_mql_builtins.py | 1171 +++ .../pygments/lexers/_mysql_builtins.py | 1335 +++ .../pygments/lexers/_openedge_builtins.py | 2600 +++++ .../pygments/lexers/_php_builtins.py | 3325 +++++++ .../pygments/lexers/_postgres_builtins.py | 739 ++ .../pygments/lexers/_qlik_builtins.py | 666 ++ .../pygments/lexers/_scheme_builtins.py | 1609 +++ .../pygments/lexers/_scilab_builtins.py | 3093 ++++++ .../pygments/lexers/_sourcemod_builtins.py | 1151 +++ .../pygments/lexers/_stan_builtins.py | 648 ++ .../pygments/lexers/_stata_builtins.py | 457 + .../pygments/lexers/_tsql_builtins.py | 1003 ++ .../pygments/lexers/_usd_builtins.py | 112 + .../pygments/lexers/_vbscript_builtins.py | 279 + .../pygments/lexers/_vim_builtins.py | 1938 ++++ .../pygments/lexers/actionscript.py | 243 + .../site-packages/pygments/lexers/ada.py | 144 + .../site-packages/pygments/lexers/agile.py | 25 + .../site-packages/pygments/lexers/algebra.py | 298 + .../site-packages/pygments/lexers/ambient.py | 75 + .../site-packages/pygments/lexers/amdgpu.py | 54 + .../site-packages/pygments/lexers/ampl.py | 87 + .../site-packages/pygments/lexers/apdlexer.py | 593 ++ .../site-packages/pygments/lexers/apl.py | 103 + .../pygments/lexers/archetype.py | 315 + .../site-packages/pygments/lexers/arrow.py | 116 + .../site-packages/pygments/lexers/arturo.py | 249 + .../site-packages/pygments/lexers/asc.py | 55 + .../site-packages/pygments/lexers/asm.py | 1050 ++ .../site-packages/pygments/lexers/asn1.py | 178 + .../pygments/lexers/automation.py | 379 + .../site-packages/pygments/lexers/bare.py | 101 + .../site-packages/pygments/lexers/basic.py | 656 ++ .../site-packages/pygments/lexers/bdd.py | 57 + .../site-packages/pygments/lexers/berry.py | 99 + .../site-packages/pygments/lexers/bibtex.py | 159 + .../pygments/lexers/blueprint.py | 173 + .../site-packages/pygments/lexers/boa.py | 97 + .../site-packages/pygments/lexers/bqn.py | 109 + .../site-packages/pygments/lexers/business.py | 625 ++ .../site-packages/pygments/lexers/c_cpp.py | 414 + .../site-packages/pygments/lexers/c_like.py | 738 ++ .../pygments/lexers/capnproto.py | 74 + .../site-packages/pygments/lexers/carbon.py | 95 + .../site-packages/pygments/lexers/cddl.py | 172 + .../site-packages/pygments/lexers/chapel.py | 139 + .../site-packages/pygments/lexers/clean.py | 180 + .../site-packages/pygments/lexers/comal.py | 81 + .../site-packages/pygments/lexers/compiled.py | 35 + .../site-packages/pygments/lexers/configs.py | 1424 +++ .../site-packages/pygments/lexers/console.py | 114 + .../site-packages/pygments/lexers/cplint.py | 43 + .../site-packages/pygments/lexers/crystal.py | 364 + .../site-packages/pygments/lexers/csound.py | 466 + .../site-packages/pygments/lexers/css.py | 602 ++ .../site-packages/pygments/lexers/d.py | 259 + .../site-packages/pygments/lexers/dalvik.py | 126 + .../site-packages/pygments/lexers/data.py | 763 ++ .../site-packages/pygments/lexers/dax.py | 135 + .../pygments/lexers/devicetree.py | 108 + .../site-packages/pygments/lexers/diff.py | 169 + .../site-packages/pygments/lexers/dns.py | 109 + .../site-packages/pygments/lexers/dotnet.py | 846 ++ .../site-packages/pygments/lexers/dsls.py | 970 ++ .../site-packages/pygments/lexers/dylan.py | 279 + .../site-packages/pygments/lexers/ecl.py | 144 + .../site-packages/pygments/lexers/eiffel.py | 68 + .../site-packages/pygments/lexers/elm.py | 123 + .../site-packages/pygments/lexers/elpi.py | 172 + .../site-packages/pygments/lexers/email.py | 132 + .../site-packages/pygments/lexers/erlang.py | 526 + .../site-packages/pygments/lexers/esoteric.py | 300 + .../site-packages/pygments/lexers/ezhil.py | 76 + .../site-packages/pygments/lexers/factor.py | 363 + .../site-packages/pygments/lexers/fantom.py | 251 + .../site-packages/pygments/lexers/felix.py | 275 + .../site-packages/pygments/lexers/fift.py | 68 + .../pygments/lexers/floscript.py | 81 + .../site-packages/pygments/lexers/forth.py | 178 + .../site-packages/pygments/lexers/fortran.py | 212 + .../site-packages/pygments/lexers/foxpro.py | 427 + .../site-packages/pygments/lexers/freefem.py | 893 ++ .../site-packages/pygments/lexers/func.py | 110 + .../pygments/lexers/functional.py | 21 + .../site-packages/pygments/lexers/futhark.py | 105 + .../pygments/lexers/gcodelexer.py | 35 + .../site-packages/pygments/lexers/gdscript.py | 189 + .../site-packages/pygments/lexers/go.py | 97 + .../pygments/lexers/grammar_notation.py | 262 + .../site-packages/pygments/lexers/graph.py | 108 + .../site-packages/pygments/lexers/graphics.py | 794 ++ .../site-packages/pygments/lexers/graphql.py | 176 + .../site-packages/pygments/lexers/graphviz.py | 58 + .../site-packages/pygments/lexers/gsql.py | 103 + .../site-packages/pygments/lexers/haskell.py | 866 ++ .../site-packages/pygments/lexers/haxe.py | 935 ++ .../site-packages/pygments/lexers/hdl.py | 466 + .../site-packages/pygments/lexers/hexdump.py | 102 + .../site-packages/pygments/lexers/html.py | 626 ++ .../site-packages/pygments/lexers/idl.py | 284 + .../site-packages/pygments/lexers/igor.py | 435 + .../site-packages/pygments/lexers/inferno.py | 95 + .../pygments/lexers/installers.py | 325 + .../pygments/lexers/int_fiction.py | 1370 +++ .../site-packages/pygments/lexers/iolang.py | 61 + .../site-packages/pygments/lexers/j.py | 151 + .../pygments/lexers/javascript.py | 1587 +++ .../site-packages/pygments/lexers/jmespath.py | 69 + .../site-packages/pygments/lexers/jslt.py | 94 + .../site-packages/pygments/lexers/jsonnet.py | 169 + .../site-packages/pygments/lexers/jsx.py | 75 + .../site-packages/pygments/lexers/julia.py | 293 + .../site-packages/pygments/lexers/jvm.py | 1802 ++++ .../site-packages/pygments/lexers/kuin.py | 332 + .../site-packages/pygments/lexers/kusto.py | 93 + .../site-packages/pygments/lexers/ldap.py | 155 + .../site-packages/pygments/lexers/lean.py | 241 + .../site-packages/pygments/lexers/lilypond.py | 225 + .../site-packages/pygments/lexers/lisp.py | 3146 ++++++ .../pygments/lexers/macaulay2.py | 1788 ++++ .../site-packages/pygments/lexers/make.py | 212 + .../site-packages/pygments/lexers/markup.py | 1654 ++++ .../site-packages/pygments/lexers/math.py | 21 + .../site-packages/pygments/lexers/matlab.py | 3306 +++++++ .../site-packages/pygments/lexers/maxima.py | 84 + .../site-packages/pygments/lexers/meson.py | 139 + .../site-packages/pygments/lexers/mime.py | 210 + .../pygments/lexers/minecraft.py | 391 + .../site-packages/pygments/lexers/mips.py | 130 + .../site-packages/pygments/lexers/ml.py | 958 ++ .../site-packages/pygments/lexers/modeling.py | 366 + .../site-packages/pygments/lexers/modula2.py | 1579 +++ .../site-packages/pygments/lexers/mojo.py | 704 ++ .../site-packages/pygments/lexers/monte.py | 203 + .../site-packages/pygments/lexers/mosel.py | 447 + .../site-packages/pygments/lexers/ncl.py | 894 ++ .../site-packages/pygments/lexers/nimrod.py | 199 + .../site-packages/pygments/lexers/nit.py | 63 + .../site-packages/pygments/lexers/nix.py | 144 + .../site-packages/pygments/lexers/oberon.py | 120 + .../pygments/lexers/objective.py | 513 + .../site-packages/pygments/lexers/ooc.py | 84 + .../site-packages/pygments/lexers/openscad.py | 96 + .../site-packages/pygments/lexers/other.py | 41 + .../site-packages/pygments/lexers/parasail.py | 78 + .../site-packages/pygments/lexers/parsers.py | 798 ++ .../site-packages/pygments/lexers/pascal.py | 644 ++ .../site-packages/pygments/lexers/pawn.py | 202 + .../site-packages/pygments/lexers/perl.py | 733 ++ .../site-packages/pygments/lexers/phix.py | 363 + .../site-packages/pygments/lexers/php.py | 334 + .../pygments/lexers/pointless.py | 70 + .../site-packages/pygments/lexers/pony.py | 93 + .../site-packages/pygments/lexers/praat.py | 303 + .../site-packages/pygments/lexers/procfile.py | 41 + .../site-packages/pygments/lexers/prolog.py | 318 + .../site-packages/pygments/lexers/promql.py | 176 + .../site-packages/pygments/lexers/prql.py | 251 + .../site-packages/pygments/lexers/ptx.py | 119 + .../site-packages/pygments/lexers/python.py | 1198 +++ .../site-packages/pygments/lexers/q.py | 187 + .../site-packages/pygments/lexers/qlik.py | 117 + .../site-packages/pygments/lexers/qvt.py | 153 + .../site-packages/pygments/lexers/r.py | 192 + .../site-packages/pygments/lexers/rdf.py | 468 + .../site-packages/pygments/lexers/rebol.py | 419 + .../site-packages/pygments/lexers/resource.py | 83 + .../site-packages/pygments/lexers/ride.py | 138 + .../site-packages/pygments/lexers/rita.py | 42 + .../site-packages/pygments/lexers/rnc.py | 66 + .../site-packages/pygments/lexers/roboconf.py | 81 + .../pygments/lexers/robotframework.py | 551 ++ .../site-packages/pygments/lexers/ruby.py | 518 + .../site-packages/pygments/lexers/rust.py | 222 + .../site-packages/pygments/lexers/sas.py | 227 + .../site-packages/pygments/lexers/savi.py | 171 + .../site-packages/pygments/lexers/scdoc.py | 85 + .../pygments/lexers/scripting.py | 1598 +++ .../site-packages/pygments/lexers/sgf.py | 59 + .../site-packages/pygments/lexers/shell.py | 898 ++ .../site-packages/pygments/lexers/sieve.py | 78 + .../site-packages/pygments/lexers/slash.py | 183 + .../pygments/lexers/smalltalk.py | 194 + .../site-packages/pygments/lexers/smithy.py | 77 + .../site-packages/pygments/lexers/smv.py | 78 + .../site-packages/pygments/lexers/snobol.py | 82 + .../site-packages/pygments/lexers/solidity.py | 87 + .../site-packages/pygments/lexers/soong.py | 78 + .../site-packages/pygments/lexers/sophia.py | 102 + .../site-packages/pygments/lexers/special.py | 121 + .../site-packages/pygments/lexers/spice.py | 70 + .../site-packages/pygments/lexers/sql.py | 1033 ++ .../site-packages/pygments/lexers/srcinfo.py | 62 + .../site-packages/pygments/lexers/stata.py | 170 + .../pygments/lexers/supercollider.py | 94 + .../site-packages/pygments/lexers/tact.py | 303 + .../site-packages/pygments/lexers/tal.py | 77 + .../site-packages/pygments/lexers/tcl.py | 148 + .../site-packages/pygments/lexers/teal.py | 88 + .../pygments/lexers/templates.py | 2355 +++++ .../site-packages/pygments/lexers/teraterm.py | 325 + .../site-packages/pygments/lexers/testing.py | 209 + .../site-packages/pygments/lexers/text.py | 27 + .../site-packages/pygments/lexers/textedit.py | 205 + .../site-packages/pygments/lexers/textfmts.py | 436 + .../site-packages/pygments/lexers/theorem.py | 410 + .../site-packages/pygments/lexers/thingsdb.py | 140 + .../site-packages/pygments/lexers/tlb.py | 59 + .../site-packages/pygments/lexers/tls.py | 54 + .../site-packages/pygments/lexers/tnt.py | 270 + .../pygments/lexers/trafficscript.py | 51 + .../pygments/lexers/typoscript.py | 216 + .../site-packages/pygments/lexers/typst.py | 104 + .../site-packages/pygments/lexers/ul4.py | 309 + .../site-packages/pygments/lexers/unicon.py | 413 + .../site-packages/pygments/lexers/urbi.py | 145 + .../site-packages/pygments/lexers/usd.py | 85 + .../site-packages/pygments/lexers/varnish.py | 189 + .../pygments/lexers/verification.py | 113 + .../site-packages/pygments/lexers/verifpal.py | 65 + .../site-packages/pygments/lexers/vip.py | 150 + .../site-packages/pygments/lexers/vyper.py | 140 + .../site-packages/pygments/lexers/web.py | 24 + .../pygments/lexers/webassembly.py | 119 + .../site-packages/pygments/lexers/webidl.py | 298 + .../site-packages/pygments/lexers/webmisc.py | 1006 ++ .../site-packages/pygments/lexers/wgsl.py | 406 + .../site-packages/pygments/lexers/whiley.py | 115 + .../site-packages/pygments/lexers/wowtoc.py | 120 + .../site-packages/pygments/lexers/wren.py | 98 + .../site-packages/pygments/lexers/x10.py | 66 + .../site-packages/pygments/lexers/xorg.py | 38 + .../site-packages/pygments/lexers/yang.py | 103 + .../site-packages/pygments/lexers/yara.py | 69 + .../site-packages/pygments/lexers/zig.py | 125 + .../site-packages/pygments/modeline.py | 43 + .../site-packages/pygments/plugin.py | 72 + .../site-packages/pygments/regexopt.py | 91 + .../site-packages/pygments/scanner.py | 104 + .../site-packages/pygments/sphinxext.py | 247 + .../site-packages/pygments/style.py | 203 + .../site-packages/pygments/styles/__init__.py | 61 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 2622 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 3642 bytes .../styles/__pycache__/abap.cpython-312.pyc | Bin 0 -> 1077 bytes .../styles/__pycache__/algol.cpython-312.pyc | Bin 0 -> 2597 bytes .../__pycache__/algol_nu.cpython-312.pyc | Bin 0 -> 2612 bytes .../__pycache__/arduino.cpython-312.pyc | Bin 0 -> 4271 bytes .../styles/__pycache__/autumn.cpython-312.pyc | Bin 0 -> 2853 bytes .../__pycache__/borland.cpython-312.pyc | Bin 0 -> 2222 bytes .../styles/__pycache__/bw.cpython-312.pyc | Bin 0 -> 1899 bytes .../styles/__pycache__/coffee.cpython-312.pyc | Bin 0 -> 3443 bytes .../__pycache__/colorful.cpython-312.pyc | Bin 0 -> 3711 bytes .../__pycache__/default.cpython-312.pyc | Bin 0 -> 3213 bytes .../__pycache__/dracula.cpython-312.pyc | Bin 0 -> 3026 bytes .../styles/__pycache__/emacs.cpython-312.pyc | Bin 0 -> 3253 bytes .../__pycache__/friendly.cpython-312.pyc | Bin 0 -> 3349 bytes .../friendly_grayscale.cpython-312.pyc | Bin 0 -> 3559 bytes .../styles/__pycache__/fruity.cpython-312.pyc | Bin 0 -> 1928 bytes .../__pycache__/gh_dark.cpython-312.pyc | Bin 0 -> 4017 bytes .../__pycache__/gruvbox.cpython-312.pyc | Bin 0 -> 4365 bytes .../styles/__pycache__/igor.cpython-312.pyc | Bin 0 -> 1122 bytes .../styles/__pycache__/inkpot.cpython-312.pyc | Bin 0 -> 2984 bytes .../__pycache__/lightbulb.cpython-312.pyc | Bin 0 -> 4355 bytes .../__pycache__/lilypond.cpython-312.pyc | Bin 0 -> 3496 bytes .../__pycache__/lovelace.cpython-312.pyc | Bin 0 -> 4249 bytes .../styles/__pycache__/manni.cpython-312.pyc | Bin 0 -> 3484 bytes .../__pycache__/material.cpython-312.pyc | Bin 0 -> 4797 bytes .../__pycache__/monokai.cpython-312.pyc | Bin 0 -> 4778 bytes .../styles/__pycache__/murphy.cpython-312.pyc | Bin 0 -> 3669 bytes .../styles/__pycache__/native.cpython-312.pyc | Bin 0 -> 2946 bytes .../styles/__pycache__/nord.cpython-312.pyc | Bin 0 -> 5575 bytes .../__pycache__/onedark.cpython-312.pyc | Bin 0 -> 2252 bytes .../__pycache__/paraiso_dark.cpython-312.pyc | Bin 0 -> 5118 bytes .../__pycache__/paraiso_light.cpython-312.pyc | Bin 0 -> 5124 bytes .../styles/__pycache__/pastie.cpython-312.pyc | Bin 0 -> 3458 bytes .../__pycache__/perldoc.cpython-312.pyc | Bin 0 -> 3044 bytes .../__pycache__/rainbow_dash.cpython-312.pyc | Bin 0 -> 3690 bytes .../styles/__pycache__/rrt.cpython-312.pyc | Bin 0 -> 1386 bytes .../styles/__pycache__/sas.cpython-312.pyc | Bin 0 -> 1797 bytes .../__pycache__/solarized.cpython-312.pyc | Bin 0 -> 5749 bytes .../__pycache__/staroffice.cpython-312.pyc | Bin 0 -> 1100 bytes .../__pycache__/stata_dark.cpython-312.pyc | Bin 0 -> 1667 bytes .../__pycache__/stata_light.cpython-312.pyc | Bin 0 -> 1668 bytes .../styles/__pycache__/tango.cpython-312.pyc | Bin 0 -> 6121 bytes .../styles/__pycache__/trac.cpython-312.pyc | Bin 0 -> 2593 bytes .../styles/__pycache__/vim.cpython-312.pyc | Bin 0 -> 2476 bytes .../styles/__pycache__/vs.cpython-312.pyc | Bin 0 -> 1481 bytes .../styles/__pycache__/xcode.cpython-312.pyc | Bin 0 -> 1819 bytes .../__pycache__/zenburn.cpython-312.pyc | Bin 0 -> 3328 bytes .../site-packages/pygments/styles/_mapping.py | 54 + .../site-packages/pygments/styles/abap.py | 32 + .../site-packages/pygments/styles/algol.py | 65 + .../site-packages/pygments/styles/algol_nu.py | 65 + .../site-packages/pygments/styles/arduino.py | 100 + .../site-packages/pygments/styles/autumn.py | 67 + .../site-packages/pygments/styles/borland.py | 53 + .../site-packages/pygments/styles/bw.py | 52 + .../site-packages/pygments/styles/coffee.py | 80 + .../site-packages/pygments/styles/colorful.py | 83 + .../site-packages/pygments/styles/default.py | 76 + .../site-packages/pygments/styles/dracula.py | 90 + .../site-packages/pygments/styles/emacs.py | 75 + .../site-packages/pygments/styles/friendly.py | 76 + .../pygments/styles/friendly_grayscale.py | 80 + .../site-packages/pygments/styles/fruity.py | 47 + .../site-packages/pygments/styles/gh_dark.py | 113 + .../site-packages/pygments/styles/gruvbox.py | 118 + .../site-packages/pygments/styles/igor.py | 32 + .../site-packages/pygments/styles/inkpot.py | 72 + .../pygments/styles/lightbulb.py | 110 + .../site-packages/pygments/styles/lilypond.py | 62 + .../site-packages/pygments/styles/lovelace.py | 100 + .../site-packages/pygments/styles/manni.py | 79 + .../site-packages/pygments/styles/material.py | 124 + .../site-packages/pygments/styles/monokai.py | 112 + .../site-packages/pygments/styles/murphy.py | 82 + .../site-packages/pygments/styles/native.py | 70 + .../site-packages/pygments/styles/nord.py | 156 + .../site-packages/pygments/styles/onedark.py | 63 + .../pygments/styles/paraiso_dark.py | 124 + .../pygments/styles/paraiso_light.py | 124 + .../site-packages/pygments/styles/pastie.py | 78 + .../site-packages/pygments/styles/perldoc.py | 73 + .../pygments/styles/rainbow_dash.py | 95 + .../site-packages/pygments/styles/rrt.py | 39 + .../site-packages/pygments/styles/sas.py | 46 + .../pygments/styles/solarized.py | 144 + .../pygments/styles/staroffice.py | 31 + .../pygments/styles/stata_dark.py | 42 + .../pygments/styles/stata_light.py | 42 + .../site-packages/pygments/styles/tango.py | 143 + .../site-packages/pygments/styles/trac.py | 66 + .../site-packages/pygments/styles/vim.py | 67 + .../site-packages/pygments/styles/vs.py | 41 + .../site-packages/pygments/styles/xcode.py | 53 + .../site-packages/pygments/styles/zenburn.py | 83 + .../site-packages/pygments/token.py | 214 + .../site-packages/pygments/unistring.py | 153 + .../python3.12/site-packages/pygments/util.py | 324 + .../rich-13.9.4.dist-info/INSTALLER | 1 + .../rich-13.9.4.dist-info/LICENSE | 19 + .../rich-13.9.4.dist-info/METADATA | 473 + .../rich-13.9.4.dist-info/RECORD | 163 + .../rich-13.9.4.dist-info/REQUESTED | 0 .../site-packages/rich-13.9.4.dist-info/WHEEL | 4 + .../python3.12/site-packages/rich/__init__.py | 177 + .../python3.12/site-packages/rich/__main__.py | 273 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6985 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10142 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7866 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 205970 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1723 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2343 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 507 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 849 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12016 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4129 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1864 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3623 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5154 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 715 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6552 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13173 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 959 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 859 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 28769 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2460 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3533 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 3320 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1590 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12337 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9075 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4266 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11784 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5554 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26546 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1695 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8578 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 114467 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2252 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9204 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10911 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10396 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1434 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4170 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1839 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3565 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3041 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9882 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6017 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5190 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20104 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19002 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4871 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 14046 bytes .../rich/__pycache__/markdown.cpython-312.pyc | Bin 0 -> 35994 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9537 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6372 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 6915 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1805 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5219 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12764 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40581 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 75716 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10371 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 15987 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1774 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 561 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6595 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6550 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3807 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2461 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28495 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6084 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6055 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33470 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2109 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 40070 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43841 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3342 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 61192 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6321 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 308 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 32837 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11727 bytes .../site-packages/rich/_cell_widths.py | 454 + .../site-packages/rich/_emoji_codes.py | 3610 +++++++ .../site-packages/rich/_emoji_replace.py | 32 + .../site-packages/rich/_export_format.py | 76 + .../site-packages/rich/_extension.py | 10 + .../python3.12/site-packages/rich/_fileno.py | 24 + .../python3.12/site-packages/rich/_inspect.py | 268 + .../site-packages/rich/_log_render.py | 94 + .../python3.12/site-packages/rich/_loop.py | 43 + .../site-packages/rich/_null_file.py | 69 + .../site-packages/rich/_palettes.py | 309 + .../python3.12/site-packages/rich/_pick.py | 17 + .../python3.12/site-packages/rich/_ratio.py | 159 + .../site-packages/rich/_spinners.py | 482 + .../python3.12/site-packages/rich/_stack.py | 16 + .../python3.12/site-packages/rich/_timer.py | 19 + .../site-packages/rich/_win32_console.py | 661 ++ .../python3.12/site-packages/rich/_windows.py | 71 + .../site-packages/rich/_windows_renderer.py | 56 + .../python3.12/site-packages/rich/_wrap.py | 93 + .../lib/python3.12/site-packages/rich/abc.py | 33 + .../python3.12/site-packages/rich/align.py | 312 + .../lib/python3.12/site-packages/rich/ansi.py | 241 + .../lib/python3.12/site-packages/rich/bar.py | 93 + .../lib/python3.12/site-packages/rich/box.py | 480 + .../python3.12/site-packages/rich/cells.py | 174 + .../python3.12/site-packages/rich/color.py | 621 ++ .../site-packages/rich/color_triplet.py | 38 + .../python3.12/site-packages/rich/columns.py | 187 + .../python3.12/site-packages/rich/console.py | 2661 +++++ .../site-packages/rich/constrain.py | 37 + .../site-packages/rich/containers.py | 167 + .../python3.12/site-packages/rich/control.py | 225 + .../site-packages/rich/default_styles.py | 191 + .../python3.12/site-packages/rich/diagnose.py | 37 + .../python3.12/site-packages/rich/emoji.py | 96 + .../python3.12/site-packages/rich/errors.py | 34 + .../site-packages/rich/file_proxy.py | 57 + .../python3.12/site-packages/rich/filesize.py | 88 + .../site-packages/rich/highlighter.py | 232 + .../lib/python3.12/site-packages/rich/json.py | 139 + .../python3.12/site-packages/rich/jupyter.py | 101 + .../python3.12/site-packages/rich/layout.py | 442 + .../lib/python3.12/site-packages/rich/live.py | 375 + .../site-packages/rich/live_render.py | 112 + .../python3.12/site-packages/rich/logging.py | 297 + .../python3.12/site-packages/rich/markdown.py | 784 ++ .../python3.12/site-packages/rich/markup.py | 251 + .../python3.12/site-packages/rich/measure.py | 151 + .../python3.12/site-packages/rich/padding.py | 141 + .../python3.12/site-packages/rich/pager.py | 34 + .../python3.12/site-packages/rich/palette.py | 100 + .../python3.12/site-packages/rich/panel.py | 318 + .../python3.12/site-packages/rich/pretty.py | 1016 ++ .../python3.12/site-packages/rich/progress.py | 1715 ++++ .../site-packages/rich/progress_bar.py | 223 + .../python3.12/site-packages/rich/prompt.py | 400 + .../python3.12/site-packages/rich/protocol.py | 42 + .../python3.12/site-packages/rich/py.typed | 0 .../python3.12/site-packages/rich/region.py | 10 + .../lib/python3.12/site-packages/rich/repr.py | 149 + .../lib/python3.12/site-packages/rich/rule.py | 130 + .../python3.12/site-packages/rich/scope.py | 86 + .../python3.12/site-packages/rich/screen.py | 54 + .../python3.12/site-packages/rich/segment.py | 752 ++ .../python3.12/site-packages/rich/spinner.py | 138 + .../python3.12/site-packages/rich/status.py | 131 + .../python3.12/site-packages/rich/style.py | 796 ++ .../python3.12/site-packages/rich/styled.py | 42 + .../python3.12/site-packages/rich/syntax.py | 966 ++ .../python3.12/site-packages/rich/table.py | 1007 ++ .../site-packages/rich/terminal_theme.py | 153 + .../lib/python3.12/site-packages/rich/text.py | 1361 +++ .../python3.12/site-packages/rich/theme.py | 115 + .../python3.12/site-packages/rich/themes.py | 5 + .../site-packages/rich/traceback.py | 797 ++ .../lib/python3.12/site-packages/rich/tree.py | 257 + .venv/lib64 | 1 + .venv/pyvenv.cfg | 5 + data/bananas_day | 0 data/books_read | 11 + data/testing | 0 program.py | 74 + 1851 files changed, 296735 insertions(+) create mode 100644 .venv/bin/Activate.ps1 create mode 100644 .venv/bin/activate create mode 100644 .venv/bin/activate.csh create mode 100644 .venv/bin/activate.fish create mode 100755 .venv/bin/markdown-it create mode 100755 .venv/bin/pip create mode 100755 .venv/bin/pip3 create mode 100755 .venv/bin/pip3.12 create mode 100755 .venv/bin/pygmentize create mode 120000 .venv/bin/python create mode 120000 .venv/bin/python3 create mode 120000 .venv/bin/python3.12 create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/_punycode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_block.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_inline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/renderer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/ruler.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/token.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/tree.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/_compat.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/_punycode.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/cli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/parse.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/cli/parse.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/entities.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_blocks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_re.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/normalize_url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/entities.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/html_blocks.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/html_re.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/normalize_url.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/utils.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_destination.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_title.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_destination.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_label.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_title.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/main.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/parser_block.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/parser_core.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/parser_inline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/port.yaml create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/commonmark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/default.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/zero.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/commonmark.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/default.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/zero.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/py.typed create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/renderer.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/ruler.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/blockquote.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/code.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/fence.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/heading.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/html_block.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/lheading.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/list.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/reference.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/state_block.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/table.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/blockquote.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/code.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/fence.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/heading.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/hr.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/html_block.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/lheading.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/list.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/paragraph.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/reference.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/state_block.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/table.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/block.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/linkify.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/normalize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/replacements.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/state_core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/text_join.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/block.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/inline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/linkify.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/normalize.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/replacements.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/smartquotes.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/state_core.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/text_join.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/balance_pairs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/emphasis.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/entity.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/fragments_join.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/image.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/linkify.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/state_inline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/strikethrough.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/autolink.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/backticks.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/balance_pairs.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/emphasis.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/entity.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/escape.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/fragments_join.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/html_inline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/image.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/link.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/linkify.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/newline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/state_inline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/strikethrough.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/text.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/token.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/tree.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/utils.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/LICENSE.markdown-it create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_decode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_encode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_format.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_parse.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_decode.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_encode.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_format.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_parse.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_url.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-24.2.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/pip-24.2.dist-info/REQUESTED create mode 100644 .venv/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/__pip-runner__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/build_env.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/index_command.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/main.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/check.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/download.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/help.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/index.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/install.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/list.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/search.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/show.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/configuration.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/collector.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/sources.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/main.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/index.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/link.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/auth.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/download.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/session.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/check.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/pyproject.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/retry.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/json.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/live.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/measure.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/padding.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/pager.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/palette.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/region.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/screen.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/status.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/style.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/styled.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/table.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/text.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/theme.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/vendor.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.18.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.18.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.18.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.18.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.18.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.18.0.dist-info/licenses/AUTHORS create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.18.0.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pygments/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/token.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/cmdline.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/console.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/filter.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/filters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatter.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100755 .venv/lib/python3.12/site-packages/pygments/formatters/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/bbcode.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/groff.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/html.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/img.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/irc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/latex.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/other.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/pangomarkup.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/rtf.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/svg.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/terminal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/terminal256.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexer.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_ada_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_asy_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_cl_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_cocoa_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_csound_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_css_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_julia_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_lasso_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_lilypond_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_lua_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_luau_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_mql_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_mysql_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_openedge_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_php_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_postgres_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_qlik_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_scheme_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_scilab_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_sourcemod_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_stan_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_stata_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_tsql_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_usd_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_vbscript_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_vim_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/actionscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ada.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/agile.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/algebra.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ambient.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/amdgpu.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ampl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/apdlexer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/apl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/archetype.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/arrow.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/arturo.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/asc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/asm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/asn1.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/automation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/bare.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/basic.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/bdd.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/berry.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/bibtex.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/blueprint.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/boa.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/bqn.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/business.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/c_cpp.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/c_like.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/capnproto.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/carbon.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/cddl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/chapel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/clean.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/comal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/compiled.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/configs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/cplint.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/crystal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/csound.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/css.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/d.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dalvik.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/data.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dax.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/devicetree.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/diff.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dns.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dotnet.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dsls.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dylan.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ecl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/eiffel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/elm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/elpi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/email.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/erlang.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/esoteric.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ezhil.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/factor.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/fantom.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/felix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/fift.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/floscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/forth.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/fortran.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/foxpro.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/freefem.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/func.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/functional.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/futhark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/gcodelexer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/gdscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/go.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/grammar_notation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/graph.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/graphics.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/graphql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/graphviz.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/gsql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/haskell.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/haxe.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/hdl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/hexdump.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/html.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/idl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/igor.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/inferno.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/installers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/int_fiction.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/iolang.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/j.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/javascript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jmespath.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jslt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jsonnet.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jsx.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/julia.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jvm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/kuin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/kusto.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ldap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/lean.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/lilypond.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/lisp.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/macaulay2.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/make.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/markup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/math.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/matlab.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/maxima.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/meson.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/mime.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/minecraft.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/mips.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ml.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/modeling.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/modula2.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/mojo.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/monte.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/mosel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ncl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/nimrod.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/nit.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/nix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/oberon.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/objective.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ooc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/openscad.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/other.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/parasail.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/parsers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/pascal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/pawn.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/perl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/phix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/php.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/pointless.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/pony.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/praat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/procfile.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/prolog.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/promql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/prql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ptx.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/q.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/qlik.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/qvt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/r.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rdf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rebol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/resource.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ride.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rita.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rnc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/roboconf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/robotframework.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ruby.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rust.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sas.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/savi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/scdoc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/scripting.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sgf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/shell.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sieve.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/slash.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/smalltalk.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/smithy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/smv.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/snobol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/solidity.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/soong.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sophia.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/special.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/spice.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/srcinfo.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/stata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/supercollider.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tact.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tcl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/teal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/templates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/teraterm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/testing.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/textedit.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/textfmts.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/theorem.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/thingsdb.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tlb.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tls.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tnt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/trafficscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/typoscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/typst.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ul4.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/unicon.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/urbi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/usd.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/varnish.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/verification.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/verifpal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/vip.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/vyper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/web.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/webassembly.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/webidl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/webmisc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/wgsl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/whiley.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/wowtoc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/wren.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/x10.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/xorg.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/yang.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/yara.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/zig.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_ada_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_asy_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_cl_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_cocoa_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_csound_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_css_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_julia_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_lasso_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_lilypond_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_lua_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_luau_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_mql_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_mysql_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_openedge_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_php_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_postgres_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_qlik_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_scheme_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_scilab_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_sourcemod_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_stan_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_stata_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_tsql_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_usd_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_vbscript_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_vim_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/actionscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ada.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/agile.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/algebra.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ambient.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/amdgpu.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ampl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/apdlexer.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/apl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/archetype.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/arrow.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/arturo.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/asc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/asm.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/asn1.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/automation.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/bare.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/basic.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/bdd.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/berry.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/bibtex.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/blueprint.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/boa.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/bqn.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/business.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/c_cpp.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/c_like.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/capnproto.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/carbon.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/cddl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/chapel.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/clean.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/comal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/compiled.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/configs.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/console.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/cplint.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/crystal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/csound.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/css.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/d.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dalvik.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/data.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dax.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/devicetree.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/diff.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dns.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dotnet.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dsls.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dylan.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ecl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/eiffel.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/elm.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/elpi.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/email.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/erlang.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/esoteric.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ezhil.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/factor.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/fantom.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/felix.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/fift.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/floscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/forth.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/fortran.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/foxpro.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/freefem.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/func.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/functional.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/futhark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/gcodelexer.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/gdscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/go.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/grammar_notation.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/graph.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/graphics.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/graphql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/graphviz.py create mode 100755 .venv/lib/python3.12/site-packages/pygments/lexers/gsql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/haskell.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/haxe.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/hdl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/hexdump.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/html.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/idl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/igor.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/inferno.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/installers.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/int_fiction.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/iolang.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/j.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/javascript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jmespath.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jslt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jsonnet.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jsx.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/julia.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jvm.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/kuin.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/kusto.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ldap.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/lean.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/lilypond.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/lisp.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/macaulay2.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/make.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/markup.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/math.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/matlab.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/maxima.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/meson.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/mime.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/minecraft.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/mips.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ml.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/modeling.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/modula2.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/mojo.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/monte.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/mosel.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ncl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/nimrod.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/nit.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/nix.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/oberon.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/objective.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ooc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/openscad.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/other.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/parasail.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/parsers.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/pascal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/pawn.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/perl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/phix.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/php.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/pointless.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/pony.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/praat.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/procfile.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/prolog.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/promql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/prql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ptx.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/python.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/q.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/qlik.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/qvt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/r.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rdf.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rebol.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/resource.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ride.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rita.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rnc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/roboconf.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/robotframework.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ruby.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rust.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sas.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/savi.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/scdoc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/scripting.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sgf.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/shell.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sieve.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/slash.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/smalltalk.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/smithy.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/smv.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/snobol.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/solidity.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/soong.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sophia.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/special.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/spice.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/srcinfo.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/stata.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/supercollider.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tact.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tcl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/teal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/templates.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/teraterm.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/testing.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/text.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/textedit.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/textfmts.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/theorem.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/thingsdb.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tlb.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tls.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tnt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/trafficscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/typoscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/typst.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ul4.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/unicon.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/urbi.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/usd.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/varnish.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/verification.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/verifpal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/vip.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/vyper.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/web.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/webassembly.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/webidl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/webmisc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/wgsl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/whiley.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/wowtoc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/wren.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/x10.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/xorg.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/yang.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/yara.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/zig.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/modeline.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/plugin.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/regexopt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/scanner.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/sphinxext.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/style.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/abap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/algol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/algol_nu.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/arduino.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/autumn.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/borland.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/bw.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/coffee.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/colorful.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/default.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/dracula.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/emacs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/friendly.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/friendly_grayscale.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/fruity.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/gh_dark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/gruvbox.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/igor.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/inkpot.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/lightbulb.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/lilypond.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/lovelace.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/manni.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/material.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/monokai.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/murphy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/native.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/nord.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/onedark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/paraiso_dark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/paraiso_light.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/pastie.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/perldoc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/rainbow_dash.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/rrt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/sas.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/solarized.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/staroffice.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/stata_dark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/stata_light.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/tango.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/trac.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/vim.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/vs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/xcode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/zenburn.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/abap.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/algol.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/algol_nu.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/arduino.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/autumn.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/borland.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/bw.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/coffee.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/colorful.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/default.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/dracula.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/emacs.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/friendly.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/friendly_grayscale.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/fruity.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/gh_dark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/gruvbox.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/igor.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/inkpot.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/lightbulb.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/lilypond.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/lovelace.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/manni.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/material.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/monokai.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/murphy.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/native.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/nord.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/onedark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/paraiso_dark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/paraiso_light.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/pastie.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/perldoc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/rainbow_dash.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/rrt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/sas.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/solarized.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/staroffice.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/stata_dark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/stata_light.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/tango.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/trac.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/vim.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/vs.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/xcode.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/zenburn.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/token.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/unistring.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/util.py create mode 100644 .venv/lib/python3.12/site-packages/rich-13.9.4.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/rich-13.9.4.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/rich-13.9.4.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/rich-13.9.4.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/rich-13.9.4.dist-info/REQUESTED create mode 100644 .venv/lib/python3.12/site-packages/rich-13.9.4.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/rich/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/rich/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/abc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/align.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/box.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/cells.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/color.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/columns.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/containers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/control.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/errors.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/json.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/layout.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/live.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/logging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/markdown.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/markup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/measure.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/padding.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/pager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/palette.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/panel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/progress.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/region.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/repr.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/rule.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/scope.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/screen.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/segment.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/status.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/styled.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/table.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/themes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/tree.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/_cell_widths.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_emoji_codes.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_emoji_replace.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_export_format.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_extension.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_fileno.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_inspect.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_log_render.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_loop.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_null_file.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_palettes.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_pick.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_ratio.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_spinners.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_stack.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_timer.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_win32_console.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_windows.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_windows_renderer.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_wrap.py create mode 100644 .venv/lib/python3.12/site-packages/rich/abc.py create mode 100644 .venv/lib/python3.12/site-packages/rich/align.py create mode 100644 .venv/lib/python3.12/site-packages/rich/ansi.py create mode 100644 .venv/lib/python3.12/site-packages/rich/bar.py create mode 100644 .venv/lib/python3.12/site-packages/rich/box.py create mode 100644 .venv/lib/python3.12/site-packages/rich/cells.py create mode 100644 .venv/lib/python3.12/site-packages/rich/color.py create mode 100644 .venv/lib/python3.12/site-packages/rich/color_triplet.py create mode 100644 .venv/lib/python3.12/site-packages/rich/columns.py create mode 100644 .venv/lib/python3.12/site-packages/rich/console.py create mode 100644 .venv/lib/python3.12/site-packages/rich/constrain.py create mode 100644 .venv/lib/python3.12/site-packages/rich/containers.py create mode 100644 .venv/lib/python3.12/site-packages/rich/control.py create mode 100644 .venv/lib/python3.12/site-packages/rich/default_styles.py create mode 100644 .venv/lib/python3.12/site-packages/rich/diagnose.py create mode 100644 .venv/lib/python3.12/site-packages/rich/emoji.py create mode 100644 .venv/lib/python3.12/site-packages/rich/errors.py create mode 100644 .venv/lib/python3.12/site-packages/rich/file_proxy.py create mode 100644 .venv/lib/python3.12/site-packages/rich/filesize.py create mode 100644 .venv/lib/python3.12/site-packages/rich/highlighter.py create mode 100644 .venv/lib/python3.12/site-packages/rich/json.py create mode 100644 .venv/lib/python3.12/site-packages/rich/jupyter.py create mode 100644 .venv/lib/python3.12/site-packages/rich/layout.py create mode 100644 .venv/lib/python3.12/site-packages/rich/live.py create mode 100644 .venv/lib/python3.12/site-packages/rich/live_render.py create mode 100644 .venv/lib/python3.12/site-packages/rich/logging.py create mode 100644 .venv/lib/python3.12/site-packages/rich/markdown.py create mode 100644 .venv/lib/python3.12/site-packages/rich/markup.py create mode 100644 .venv/lib/python3.12/site-packages/rich/measure.py create mode 100644 .venv/lib/python3.12/site-packages/rich/padding.py create mode 100644 .venv/lib/python3.12/site-packages/rich/pager.py create mode 100644 .venv/lib/python3.12/site-packages/rich/palette.py create mode 100644 .venv/lib/python3.12/site-packages/rich/panel.py create mode 100644 .venv/lib/python3.12/site-packages/rich/pretty.py create mode 100644 .venv/lib/python3.12/site-packages/rich/progress.py create mode 100644 .venv/lib/python3.12/site-packages/rich/progress_bar.py create mode 100644 .venv/lib/python3.12/site-packages/rich/prompt.py create mode 100644 .venv/lib/python3.12/site-packages/rich/protocol.py create mode 100644 .venv/lib/python3.12/site-packages/rich/py.typed create mode 100644 .venv/lib/python3.12/site-packages/rich/region.py create mode 100644 .venv/lib/python3.12/site-packages/rich/repr.py create mode 100644 .venv/lib/python3.12/site-packages/rich/rule.py create mode 100644 .venv/lib/python3.12/site-packages/rich/scope.py create mode 100644 .venv/lib/python3.12/site-packages/rich/screen.py create mode 100644 .venv/lib/python3.12/site-packages/rich/segment.py create mode 100644 .venv/lib/python3.12/site-packages/rich/spinner.py create mode 100644 .venv/lib/python3.12/site-packages/rich/status.py create mode 100644 .venv/lib/python3.12/site-packages/rich/style.py create mode 100644 .venv/lib/python3.12/site-packages/rich/styled.py create mode 100644 .venv/lib/python3.12/site-packages/rich/syntax.py create mode 100644 .venv/lib/python3.12/site-packages/rich/table.py create mode 100644 .venv/lib/python3.12/site-packages/rich/terminal_theme.py create mode 100644 .venv/lib/python3.12/site-packages/rich/text.py create mode 100644 .venv/lib/python3.12/site-packages/rich/theme.py create mode 100644 .venv/lib/python3.12/site-packages/rich/themes.py create mode 100644 .venv/lib/python3.12/site-packages/rich/traceback.py create mode 100644 .venv/lib/python3.12/site-packages/rich/tree.py create mode 120000 .venv/lib64 create mode 100644 .venv/pyvenv.cfg create mode 100644 data/bananas_day create mode 100644 data/books_read create mode 100644 data/testing create mode 100644 program.py diff --git a/.venv/bin/Activate.ps1 b/.venv/bin/Activate.ps1 new file mode 100644 index 0000000..b49d77b --- /dev/null +++ b/.venv/bin/Activate.ps1 @@ -0,0 +1,247 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } + $env:VIRTUAL_ENV_PROMPT = $Prompt +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/.venv/bin/activate b/.venv/bin/activate new file mode 100644 index 0000000..57272d2 --- /dev/null +++ b/.venv/bin/activate @@ -0,0 +1,70 @@ +# 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 commands. Without forgetting + # past commands the $PATH changes we made may not be respected + 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 "/home/devraza/Projects/fireguide/.venv") +else + # use the path as-is + export VIRTUAL_ENV="/home/devraza/Projects/fireguide/.venv" +fi + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1="(.venv) ${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT="(.venv) " + export VIRTUAL_ENV_PROMPT +fi + +# 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/.venv/bin/activate.csh b/.venv/bin/activate.csh new file mode 100644 index 0000000..78db07a --- /dev/null +++ b/.venv/bin/activate.csh @@ -0,0 +1,27 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. + +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/home/devraza/Projects/fireguide/.venv" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = "(.venv) $prompt" + setenv VIRTUAL_ENV_PROMPT "(.venv) " +endif + +alias pydoc python -m pydoc + +rehash diff --git a/.venv/bin/activate.fish b/.venv/bin/activate.fish new file mode 100644 index 0000000..ca8b18d --- /dev/null +++ b/.venv/bin/activate.fish @@ -0,0 +1,69 @@ +# This file must be used with "source /bin/activate.fish" *from fish* +# (https://fishshell.com/). You cannot run it directly. + +function deactivate -d "Exit virtual environment and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + set -e _OLD_FISH_PROMPT_OVERRIDE + # prevents error when using nested fish instances (Issue #93858) + if functions -q _old_fish_prompt + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + end + + set -e VIRTUAL_ENV + set -e VIRTUAL_ENV_PROMPT + if test "$argv[1]" != "nondestructive" + # Self-destruct! + functions -e deactivate + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV "/home/devraza/Projects/fireguide/.venv" + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# Unset PYTHONHOME if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # Save the current fish_prompt function as the function _old_fish_prompt. + functions -c fish_prompt _old_fish_prompt + + # With the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command. + set -l old_status $status + + # Output the venv prompt; color taken from the blue of the Python logo. + printf "%s%s%s" (set_color 4B8BBE) "(.venv) " (set_color normal) + + # Restore the return status of the previous command. + echo "exit $old_status" | . + # Output the original/"old" prompt. + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" + set -gx VIRTUAL_ENV_PROMPT "(.venv) " +end diff --git a/.venv/bin/markdown-it b/.venv/bin/markdown-it new file mode 100755 index 0000000..29bceed --- /dev/null +++ b/.venv/bin/markdown-it @@ -0,0 +1,8 @@ +#!/home/devraza/Projects/fireguide/.venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from markdown_it.cli.parse import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip b/.venv/bin/pip new file mode 100755 index 0000000..878d9ed --- /dev/null +++ b/.venv/bin/pip @@ -0,0 +1,8 @@ +#!/home/devraza/Projects/fireguide/.venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip3 b/.venv/bin/pip3 new file mode 100755 index 0000000..878d9ed --- /dev/null +++ b/.venv/bin/pip3 @@ -0,0 +1,8 @@ +#!/home/devraza/Projects/fireguide/.venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip3.12 b/.venv/bin/pip3.12 new file mode 100755 index 0000000..878d9ed --- /dev/null +++ b/.venv/bin/pip3.12 @@ -0,0 +1,8 @@ +#!/home/devraza/Projects/fireguide/.venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pygmentize b/.venv/bin/pygmentize new file mode 100755 index 0000000..937c552 --- /dev/null +++ b/.venv/bin/pygmentize @@ -0,0 +1,8 @@ +#!/home/devraza/Projects/fireguide/.venv/bin/python3 +# -*- coding: utf-8 -*- +import re +import sys +from pygments.cmdline import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/python b/.venv/bin/python new file mode 120000 index 0000000..b8a0adb --- /dev/null +++ b/.venv/bin/python @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/.venv/bin/python3 b/.venv/bin/python3 new file mode 120000 index 0000000..1fc3223 --- /dev/null +++ b/.venv/bin/python3 @@ -0,0 +1 @@ +/etc/profiles/per-user/devraza/bin/python3 \ No newline at end of file diff --git a/.venv/bin/python3.12 b/.venv/bin/python3.12 new file mode 120000 index 0000000..b8a0adb --- /dev/null +++ b/.venv/bin/python3.12 @@ -0,0 +1 @@ +python3 \ No newline at end of file diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/__init__.py new file mode 100644 index 0000000..6606868 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/__init__.py @@ -0,0 +1,5 @@ +"""A Python port of Markdown-It""" +__all__ = ("MarkdownIt",) +__version__ = "3.0.0" + +from .main import MarkdownIt diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb04d18978db21e8235baed5cab8e36f10a1771d GIT binary patch literal 323 zcmXwzzfQw25QpvjQ6W*;Iv{0;*fKOObVW#v9YEbcVX#c>rlyG<95*PP`T*T|2A+i% zC|Qw^*pRw0;h^@0yYHuy?!Nba-vg%ZHuu@HnV(%al(mOlVBi%{kN^r3NUg-8Hifxe zIEe#6<3#Q%xDKa{o=XvyQt436!W*I%RKAGeL`Sgo4soJa?l>OBqi<-g-bQZQ!6vtdcn1<6>2ioG7@8ez-@*BHlT(;i(Gk}h+0rF`?NbF2oY{n!w~ V4{)~iPS?Hd$zbh&fj}Lb%^xjDT-N{q literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/_compat.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/_compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57c1c016d0c95052104f365144ee77adc1de4c87 GIT binary patch literal 520 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 HM5O;8?iLjk literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_block.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_block.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19a2be06c93e53b9924c5e3912afd12da41aa4c4 GIT binary patch literal 4047 zcmZ`6OK=m}@r`Ci8p-TNU$tW>}!yet6@x^=`R`iyPKj!DKR}W-@u^@+idMFc)g#|)o z<_38!dTXXF)+P`aq2km&$E4;;JDv%(uULe-sh@VjuPY_dt_jyRAjG=8MDtT+>fPoZ z2hsvsFy)#MwGhw`JJ{x$B0viR?PwF{Kq;cN{#gKe8_5Su0_svxYeqb=iTdzxi+^e)fZrvlq{gjoQlDgsvxU>GVg8FY>dzPR;l&6bhg6 z$MDGj@O=V8DA$GPtEdP7&xmp7>P(Iz$K?c@*0P@)=Pg^dP^Rt8C0HWG61hp+%jg7U z)JRfWN@g``%Mwy%LG><02DtpP#f1096Ky%N?QLo+dVS<^IaqY7=eJYGi zm_Ag_)PYmnOy=YC8#j0W#>dsPVOk0B*r0lm(wv&i8WZVMp7F@4*$I{VPUQy}_7#f04^(tY2g{{#vzc!{SuiWQP-F)CUh$*GX>CgE1vf!F|uXu7}kwsDVH}V zqmnI|RG+XVBawkr;q)CqHqjh(>wn`zli3U%(&!zQm`x0Q$g)#3X_-S4X+~4|v_^*p z?@;5;keIofBTSJh^5V~5f4d!NSB_2;3 zX)7L|?bsByB{J|LGBhtO`o7=Qzi?%KxVX0@R{h~e7Zxr& zy0UPkG`zHTIr3aw_J89)@>(S7z75z-lA9ge2x1!q=LrO93R$*{sk(zVqcy=P-*ZyI zH76H@HwLZ|=;q!j49b=<2YEl|DaZwJ8thOSZMzOJA1Ib4n>m`js3d2ZML+tuI? z*7!jeJP)|%HhHoU0b%j4Gcr^d_pCZf4GJ}Z);fWyPGlKWj$GbSS;9!sL7SXo7>cW7 zQ9s)WfUTscg?G-hT^Y^xWOKY#*uG5S?ie*Ktf)bAI-MKI~|7zr&O5~k+U$wh;KCl*SD_(nORMq}f^>9T!{QT+* z^?2ETe12r{LaCz~YA=5N@ORa4q#EjYR9GmKhAW}nOCw)i`Qpk-=+L^Gw00up-om}o z)Jo_rKL4_mf=*%RL7`&Be9$ z?kC3|ADf@(O)KCzID2)?kxt^z@F5@-!AokIq=26 zbLr)tBOF}~ca((3-lA0P-HqDU&kF=Nul?R&P|HbDhRGS27*IWgjfVh0eGyDyMrgJQ zEaGslBBwfO{E#Oz5Z;7Mwl^<0L24SA_1 z3{Ay;Q15*_>d0bc)tlM8#os9A&A~C~EtoqDACNr9Y!7De<-}dvUE36O*HTn8S&~J8 z%@(0M*xrT|b_kFrn!h>yWZo5KTQ_$Aj!Gdnz8LP4*9r-@SKGV33-^=`ExDG?E^m7g zJ_O09_#Xup0!3Q-^iQ!r#+D;r^*-%=sr<5@O=V>}4-mfD+>BazX4ukL)}T>^+fq9b zKBsLFPRy|3uroNlhtvBoMSToSutjheKNQ1K#(s?x7HozO-q{xZ0^+_J=X+<{Heu9) z%9VPs;bFIp$8BFcp2=!ZG643+$ z!k>xc2jsO&l9dg=C?DPM9gz2|#{@;*QEl&B7jfOOueJ^xuC4E1;_I4s`@dzN*JPu_ z=zcZ|3mQ0)2akb)46_TuolT{%lDVy!9IOoMKEu>!`*Fg?%Bx}R4bp`ViuxOPkQc35 z-{(Gu>V|J$hAqOD^Hy3nxi{^WP0t1HY1<2>^%7{Nj142V`_h%s(UFgNm~81*HmkE< z)Qtc7F>H0L6(?+KtOF+7hmol3#uqY+;M9o|cAMIBn7@lc@%W~PKAfAo`2%FaYhJIG zCu?y##XbcbJ^{@`Ft3Y(AlPKbE3)SY68xUL{ZF#(73qFOhWOm`4>9~o+PCKIneSTl z_Efw*rDHF=d+)oUCPjKnQ_FqJ=JVll@2|c-T<$$x>3FY9TGw5oAgzaqJ1{@J8r)S0 z?pivqe6PIwL|Hmnm0RX-tOj~3f!-1;OM9xa-(gzW{ZU!^cunc3D($Pv&Wf_rR*tQE zB-y?0BW~aPiASdvPOWUeSe7o;rSw$-eJlN!%hFg?4i^usw(YO9?O$#yO9!iRYw^Tt zd$iIXT{-YcS-M)4gTCHe{paoX N1!2d(2+rK8{{y+pw#5Jd literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_core.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce5b57bdf8eb0e89302a2ca46239f820ee730062 GIT binary patch literal 1810 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 P+y0=o{nrc@=(7J0F?d=S literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/ruler.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/ruler.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b02ed113c12f02c5e1c7808bd98d33e38a2fbf88 GIT binary patch literal 12187 zcmeHNYiu0Xb)MOs+4qZY>O~K2$xM&Q-{nM2xw~bMt{mz}; z*(JG>9k)P(BD2{0zUQ8M?m6e4d+z;*a5x~~J8|L3(SN-|5dN7m)z51u#3hd?2(yAF zBn3^>Txl`mO1eZ!yVLHBl$3Z{O3N8f(v$Hfy*w|ceHnk!p9v%bnP4)Q2_-|k+>;I` z!|3ZxM>5f56lFfmpN?gkl1-wZ`*fptA)8-QNkk)h!*wUA5_oKh=(b^3`kN#Nv3z7G1M$Z;Kptr9^~RJdkG zLb8LmX+@j1m2Hxplb(2o`kw$FNTpTNRE`$XItv6I(bE$;Q+U}{rC{osa&l66`sv41 zc1p{g$sWw#k;*ZBXlU#5!jtJ->eSGXqGq+gverg6ZDi42$>)@enpH=2#nhiI=-HHR zD!CD5q>xSJja=4LwlJVz#`^++9_5s-PbfUE7+FQrM*u@pa!dn`JqqwOMzczOOjojM zMkmm^ni}IBP_1XxlWDzIGfawYFw{%adYL|vR#SCl>2&T)6`nmFfT5*9IH_q4UsFxSW9n9;DXcu=`eof7*oEZh4HrS=|SxpAr%Tc@R$ zyi2GOQqD|~p){w;4(*@lmsLIW8y9?E369VAYx(0Oem+pCBTKd4Z#zwH7LNc0h3cZQMtdMu=#_Okn zI{Gv*Pdvas&Gn|cs?bHEtfyL2i_dlE{nZ?pnOgA;uv%uv1I~s}-Aq81idcbP8$v!N z#O1-MhnFo$l~@YYm!?lZb3s(Jgz^M*+Omew*k)c=wZvyMN0Mz58st=3Kdq;iu@6o5 zZW5~vk%BUDkWqWwd0RuqK`O%lZF@7!m^DqFd+EkIGZ65A{>Rlj(a zf9EJP({mGS*VL9}C|2i^*okdRO`E$CPRj>?i%CNHTj4*>3GzGy zwKYU?8+CaE!8zeKzSza^`EV)p*vFx+Qb*?(UdbOQ2ZT`U!{GXb;QIOC#*dXv3!8S& zX+JZ5YAkNry{PP-9(X^rp%iWTFsdv>m3g1S*>o`O;erRqksh?9!CaO^hcZ)9KF6nxY<{bfNF;{hK2kQcI}Zo;Y zKmkwWbC)QuS#l#)rc~J@c>F&|emD8K%OyWZ<*_oQ%0AxKCwKF<*Ih{2V-VyN{?1ns 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 WBl3t_d}#W>%pn|WzYr+H(fx0&Qw25v literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/token.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/token.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3cb6de801f2257f98a342709020f147de14c309 GIT binary patch literal 7834 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 HUS&mA5Cfwbd7mRd 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 KUa^`l#Qy@b>(zq* literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..50c94df9acb059bcf232341c7ebe220e177b719e GIT binary patch literal 8343 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/_compat.py b/.venv/lib/python3.12/site-packages/markdown_it/_compat.py new file mode 100644 index 0000000..974d431 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/_compat.py @@ -0,0 +1,11 @@ +from __future__ import annotations + +from collections.abc import Mapping +import sys +from typing import Any + +DATACLASS_KWARGS: Mapping[str, Any] +if sys.version_info >= (3, 10): + DATACLASS_KWARGS = {"slots": True} +else: + DATACLASS_KWARGS = {} diff --git a/.venv/lib/python3.12/site-packages/markdown_it/_punycode.py b/.venv/lib/python3.12/site-packages/markdown_it/_punycode.py new file mode 100644 index 0000000..f9baad2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/_punycode.py @@ -0,0 +1,67 @@ +# Copyright 2014 Mathias Bynens +# Copyright 2021 Taneli Hukkinen +# +# 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 codecs +import re +from typing import Callable + +REGEX_SEPARATORS = re.compile(r"[\x2E\u3002\uFF0E\uFF61]") +REGEX_NON_ASCII = re.compile(r"[^\0-\x7E]") + + +def encode(uni: str) -> str: + return codecs.encode(uni, encoding="punycode").decode() + + +def decode(ascii: str) -> str: + return codecs.decode(ascii, encoding="punycode") # type: ignore + + +def map_domain(string: str, fn: Callable[[str], str]) -> str: + parts = string.split("@") + result = "" + if len(parts) > 1: + # In email addresses, only the domain name should be punycoded. Leave + # the local part (i.e. everything up to `@`) intact. + result = parts[0] + "@" + string = parts[1] + labels = REGEX_SEPARATORS.split(string) + encoded = ".".join(fn(label) for label in labels) + return result + encoded + + +def to_unicode(obj: str) -> str: + def mapping(obj: str) -> str: + if obj.startswith("xn--"): + return decode(obj[4:].lower()) + return obj + + return map_domain(obj, mapping) + + +def to_ascii(obj: str) -> str: + def mapping(obj: str) -> str: + if REGEX_NON_ASCII.search(obj): + return "xn--" + encode(obj) + return obj + + return map_domain(obj, mapping) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/cli/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/cli/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1aee57803fd845d3b733bbefd0aae04df1af88f4 GIT binary patch literal 192 zcmX@j%ge<81mQgq=^*+sh(HIQS%4zb87dhx8U0o=6fpsLpFwJV#p`F}=cekXq?Q#W zRwe2O6y;~7CYKcJr)3tUrk7@>r0VOHrRJ6C=VT`77gUyH*ppGWvAqq=f!81=qKl7>c_`t=4F<|$LkeT-r}&y%}*)KNwq6t1=`05#Kj=S NM`lJw#v*1Q3jm~yGW`Gm literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/parse.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/parse.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebd45cedd280303bd3da58d547bc8ee92964cefd GIT binary patch literal 4506 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 int: + namespace = parse_args(args) + if namespace.filenames: + convert(namespace.filenames) + else: + interactive() + return 0 + + +def convert(filenames: Iterable[str]) -> None: + for filename in filenames: + convert_file(filename) + + +def convert_file(filename: str) -> None: + """ + Parse a Markdown file and dump the output to stdout. + """ + try: + with open(filename, "r", encoding="utf8", errors="ignore") as fin: + rendered = MarkdownIt().render(fin.read()) + print(rendered, end="") + except OSError: + sys.stderr.write(f'Cannot open file "{filename}".\n') + sys.exit(1) + + +def interactive() -> None: + """ + Parse user input, dump to stdout, rinse and repeat. + Python REPL style. + """ + print_heading() + contents = [] + more = False + while True: + try: + prompt, more = ("... ", True) if more else (">>> ", True) + contents.append(input(prompt) + "\n") + except EOFError: + print("\n" + MarkdownIt().render("\n".join(contents)), end="") + more = False + contents = [] + except KeyboardInterrupt: + print("\nExiting.") + break + + +def parse_args(args: Sequence[str] | None) -> argparse.Namespace: + """Parse input CLI arguments.""" + parser = argparse.ArgumentParser( + description="Parse one or more markdown files, " + "convert each to HTML, and print to stdout", + # NOTE: Remember to update README.md w/ the output of `markdown-it -h` + epilog=( + f""" +Interactive: + + $ markdown-it + markdown-it-py [version {__version__}] (interactive) + Type Ctrl-D to complete input, or Ctrl-C to exit. + >>> # Example + ... > markdown *input* + ... +

Example

+
+

markdown input

+
+ +Batch: + + $ markdown-it README.md README.footer.md > index.html +""" + ), + formatter_class=argparse.RawDescriptionHelpFormatter, + ) + parser.add_argument("-v", "--version", action="version", version=version_str) + parser.add_argument( + "filenames", nargs="*", help="specify an optional list of files to convert" + ) + return parser.parse_args(args) + + +def print_heading() -> None: + print("{} (interactive)".format(version_str)) + print("Type Ctrl-D to complete input, or Ctrl-C to exit.") + + +if __name__ == "__main__": + exit_code = main(sys.argv[1:]) + sys.exit(exit_code) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ad7bfe04a99b2797775dfd595f0dd595f847767 GIT binary patch literal 195 zcmX@j%ge<81mQgq=^*+sh(HIQS%4zb87dhx8U0o=6fpsLpFwJVCFy76=cekXq?Q#W zRwe2O6y;~7CYKcJr)3tUrk7@>r0VOHrRJ6C=VT`77gUyH*ppGWvAqq=f!81=qKmr=H}<=$H!;pWtPOp>lIYq;;_lhPbtkwwJTx;TFD5+ Q#URE?BH9NF*Sn&_w096O=<)HnZd1Y;Hf8nOwM- zE$kEmS6Garc4Ln#LX#*;Vp1;Sq$6Fw5hcOSfUSx1`OxB* zMF5aptxrZtK)-pIV)X+kRsmnMdsT`grrj=Am&i eH-E?`b5}mO?ax-{S^f8k)sdAv?cMy%3)R2s`;=h- literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_blocks.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_blocks.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5dc03a3e37f99ea1b4e29286e0e11d7499667d7c GIT binary patch literal 779 zcmX|9y^ho{5Kf%kY_z8n@CK2nR^ryWJD@=5C{A>M=s?#*-guJu*0F=_EZXbn>FE&- z&%zr_%L@S4Q8C^CmcB1v?D_GG=iBk|GNJY6xG zpVO;!&sNz@c%ghKZBy=qR) zL#cLjtO)^&MuC!IBEvD#7}f#-6`RWa87tgctm)N zvkrvBJTf`6jsnEOF;`QBTtf>+BGU?ITA3}*dZ7$4m=TM}DnO5!5j!l5of0C81==A@ z1?Hq;{po=7LC}?O;h~;d;_c{appCJoSK8w|h)ry6IJAxhNivp(EOaCf*PRCy$c6<+ zJ5JPFWTSqyVz{U(Y3r)Oqr)Rqhl%)_+{T&u4ZO2Ga0xpnZUler>@{7&^F}#nM|w)W z-htV1tu}nvht8Vw_30V+RNu)!Nkj{t$4Qd*y{S~-(`@nBuWA~U^{~g{X>aAI;le$q ctSQ0YBl?l0Y5J3~boQ%wc87g9a+kFG2T>m&LI3~& literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_re.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_re.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f7603dfff03a1c4fa76b30cb38605c79d72ec8b GIT binary patch literal 1341 zcmZ`%O>E;t6t?3yj{ox4?O$M_X{p+zO5Jujuq92XO0}%iZC7n2R*qfcdWJMzCl0n# zT5AtJf`kM&mJ{W+h)a(g_lU%0EiREykvMTn)Eg&eyeS}5-r>#nzWLt!X6*S@6gdLL z$6q~Z{6G=J@3^>$_y}CTOA^Gl1R!JrkRWD~G6^U-2I4XWXgLlNG7T6=c}NbDIK%kA zFdbnQXE^~l7>jBiXPAhv5bZHQgiKVYqB;rEG7B;?2eL8`ai)Ow)SL8b4Bi9iYBTdxx6S^x7IeqKQ*Z0W$-#K9B@BZvXtT^tyy$>7k zyyMKc)=W!xjgy%Zw`I;i6SiR6b+|vU*RGeZ>t%1VENkoP2(6UwuPj&h)uY6w=nY^8w5s!Ql#s6|DyrYZ%czV+ee;igi*(JHEf#PK6Eub2xN zO#_ypX<^KUA*;Ktt+n+Q43pjVXI;yMAQYWuyJ14@rUX{^_@9!CTF!K{J8EwpcU{zO zbzoa_^+w1Vrscp0GKST{|0Lu(wq-yE4-R<%4O6#uw`sLQ+5oz%hgjHYnlR))I()RF z9d16*_P4{ysMveFy{m2Q>>X@J{K4UVIC0y?{`QZ=HU9N~>e7kTf)apdw(jZDW7|4~ zhU-Y5Hf`AGHUX5D&tUsZGMmRz=fXX)+V_@M*CeOu!g5D9p6U(gNG;ud3aroDTGN&A zHLSLTpP6RE<<3Qzth6l9HDT4xBS-wcoeIhWiX_Qlj3ndN34-MM!lKXi`8hw?%S`)X zl=@=sn0U;}>jYA4`7@RNOE*=Kv)s?YSqg3t9*vp(NTF8XvoHTA{u*QZ~e_TpSGks4AY zo$e>tAswT+L4sg1Lx!R=gCxOlLpF{$j$l$lo~Ba+0drykaVdhy4$};s9b_<eY)gh3@s>8~V z5`QyPO#@8;9SI;DX&&)6GN4NG7UzwsnSX1;@7U~BhLyCEdNW)dT?u7JzG73eoRgFd z!=y4*O~Zy^Y+BYdxu#*p+bzo?*tUz=kQ4r8%cR(ewhWJnwTNcP#KuknxR&AaUj;m; zami{KD|J)B*r{&Grx~DvggTi8uJa?h`dab{)qBE=U?Ry5Qo6WurD7_I^y%q zJw7*}Pu{2R^>)zbu5e0-{rnShyYFM~z@N|Ux~(x^HlSV3_v_O#I*cZe%`F8u^ctLn zL)RvjgRh|_E*tK&izd-!P3>So!8TP5H#CG-=FZ!KY6zNYT(%Pl0a`xqQO3_h%wX+O z9@yQp1mP%EsfLfb6PTgjULQ19SGmbK8C#R>2DT*yLr7w&VcHbLF-8qp$Hgq~gmneN z%?Z2VM$&LhCuR|onsrliGINFL(o8`*S1MPElRqs;v!yu_W;XG{avfVN$eox(u%*d$ zOxP!OV$_smyRNEE1RE@3oyY>a0eUmw1ldv%cPYhY;U);*Ean=fj&llb6S*VjE)cVc z>(tIIs01&zR0Ze6Ha6NhO|9ju71}V37sQDZIa{T8+>+~;Q%V zX7$&r_xU~RrQeorwBK8OclF+h!semEKT@ObsGp{U`=bZ0OTU+Ht6SpPP4VoVv5yYj zJ=7C__B*LJI``J>!yp=Z_Uj1ZN7heWJ@tq1d;Gin`>*!)9q%Q_H$vkNqoCeM3E$WZ z5_d&Qm{N>;aYUK?`2bj0t1~V0fC3cAkCxSi5G|iE7bqQ*J|Ua@hq{!(BzDayAbpjLEAyB$Hp{jxDMS zUCUVPHZ8o^UBWdh`{VlVvdJ=_TU`GP%ylSTzlsH*@1k4%GFwJn)Z8h#VAOB7`n1`9 z{rGZ5eccsAcZzQ_y4%9z2dj{0Xx!IR_oc-~|9Q?}hYD9l*?`Q$HeZGE1Q&o=QF05C zpxOdFTg)Y_uo`8ysMVsP7rvDSDBIo)lL&R$5TIT()S5~K-6U9`4G<9w^H&4|V+DLr z6KpV~aVlIamqjM`=X^R*n#}r&K8*z2+kQ@hD=V||)IzJEgmyQeUe3yi-P&5rpo(B{1eKvQ@ zNl4N{3!Gs|A}o%bVR$NNP_x;KSCngY!s6FSxJhrBLf!VB3;}{29=;R^MDMl19+QNH zIAKpk!h+dNY>t<=yoAQ;w3}|6C{%U}P)k_iA{_xX;mdzeGnqM~D7`;(tRg_0UUSApT3V@9$$LH&A9fGRBG9C%(g7;2xYr h>HTk!_0HAK#{Sd2;WKOe{o$t`75p=j1WR}2e*tM(>qGzm literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a4450bb924f13b8647b02fb4d9783d04aee3e1db GIT binary patch literal 10075 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/entities.py b/.venv/lib/python3.12/site-packages/markdown_it/common/entities.py new file mode 100644 index 0000000..6bb2d34 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/entities.py @@ -0,0 +1,4 @@ +"""HTML5 entities map: { name -> characters }.""" +import html.entities + +entities = {name.rstrip(";"): chars for name, chars in html.entities.html5.items()} diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/html_blocks.py b/.venv/lib/python3.12/site-packages/markdown_it/common/html_blocks.py new file mode 100644 index 0000000..8b199af --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/html_blocks.py @@ -0,0 +1,68 @@ +"""List of valid html blocks names, according to commonmark spec +http://jgm.github.io/CommonMark/spec.html#html-blocks +""" + +block_names = [ + "address", + "article", + "aside", + "base", + "basefont", + "blockquote", + "body", + "caption", + "center", + "col", + "colgroup", + "dd", + "details", + "dialog", + "dir", + "div", + "dl", + "dt", + "fieldset", + "figcaption", + "figure", + "footer", + "form", + "frame", + "frameset", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "head", + "header", + "hr", + "html", + "iframe", + "legend", + "li", + "link", + "main", + "menu", + "menuitem", + "nav", + "noframes", + "ol", + "optgroup", + "option", + "p", + "param", + "section", + "source", + "summary", + "table", + "tbody", + "td", + "tfoot", + "th", + "thead", + "title", + "tr", + "track", + "ul", +] diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/html_re.py b/.venv/lib/python3.12/site-packages/markdown_it/common/html_re.py new file mode 100644 index 0000000..f0c336d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/html_re.py @@ -0,0 +1,40 @@ +"""Regexps to match html elements +""" + +import re + +attr_name = "[a-zA-Z_:][a-zA-Z0-9:._-]*" + +unquoted = "[^\"'=<>`\\x00-\\x20]+" +single_quoted = "'[^']*'" +double_quoted = '"[^"]*"' + +attr_value = "(?:" + unquoted + "|" + single_quoted + "|" + double_quoted + ")" + +attribute = "(?:\\s+" + attr_name + "(?:\\s*=\\s*" + attr_value + ")?)" + +open_tag = "<[A-Za-z][A-Za-z0-9\\-]*" + attribute + "*\\s*\\/?>" + +close_tag = "<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>" +comment = "|" +processing = "<[?][\\s\\S]*?[?]>" +declaration = "]*>" +cdata = "" + +HTML_TAG_RE = re.compile( + "^(?:" + + open_tag + + "|" + + close_tag + + "|" + + comment + + "|" + + processing + + "|" + + declaration + + "|" + + cdata + + ")" +) +HTML_OPEN_CLOSE_TAG_STR = "^(?:" + open_tag + "|" + close_tag + ")" +HTML_OPEN_CLOSE_TAG_RE = re.compile(HTML_OPEN_CLOSE_TAG_STR) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/normalize_url.py b/.venv/lib/python3.12/site-packages/markdown_it/common/normalize_url.py new file mode 100644 index 0000000..92720b3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/normalize_url.py @@ -0,0 +1,81 @@ +from __future__ import annotations + +from collections.abc import Callable +from contextlib import suppress +import re +from urllib.parse import quote, unquote, urlparse, urlunparse # noqa: F401 + +import mdurl + +from .. import _punycode + +RECODE_HOSTNAME_FOR = ("http:", "https:", "mailto:") + + +def normalizeLink(url: str) -> str: + """Normalize destination URLs in links + + :: + + [label]: destination 'title' + ^^^^^^^^^^^ + """ + parsed = mdurl.parse(url, slashes_denote_host=True) + + # Encode hostnames in urls like: + # `http://host/`, `https://host/`, `mailto:user@host`, `//host/` + # + # We don't encode unknown schemas, because it's likely that we encode + # something we shouldn't (e.g. `skype:name` treated as `skype:host`) + # + if parsed.hostname and ( + not parsed.protocol or parsed.protocol in RECODE_HOSTNAME_FOR + ): + with suppress(Exception): + parsed = parsed._replace(hostname=_punycode.to_ascii(parsed.hostname)) + + return mdurl.encode(mdurl.format(parsed)) + + +def normalizeLinkText(url: str) -> str: + """Normalize autolink content + + :: + + + ~~~~~~~~~~~ + """ + parsed = mdurl.parse(url, slashes_denote_host=True) + + # Encode hostnames in urls like: + # `http://host/`, `https://host/`, `mailto:user@host`, `//host/` + # + # We don't encode unknown schemas, because it's likely that we encode + # something we shouldn't (e.g. `skype:name` treated as `skype:host`) + # + if parsed.hostname and ( + not parsed.protocol or parsed.protocol in RECODE_HOSTNAME_FOR + ): + with suppress(Exception): + parsed = parsed._replace(hostname=_punycode.to_unicode(parsed.hostname)) + + # add '%' to exclude list because of https://github.com/markdown-it/markdown-it/issues/720 + return mdurl.decode(mdurl.format(parsed), mdurl.DECODE_DEFAULT_CHARS + "%") + + +BAD_PROTO_RE = re.compile(r"^(vbscript|javascript|file|data):") +GOOD_DATA_RE = re.compile(r"^data:image\/(gif|png|jpeg|webp);") + + +def validateLink(url: str, validator: Callable[[str], bool] | None = None) -> bool: + """Validate URL link is allowed in output. + + This validator can prohibit more than really needed to prevent XSS. + It's a tradeoff to keep code simple and to be secure by default. + + Note: url should be normalized at this point, and existing entities decoded. + """ + if validator is not None: + return validator(url) + url = url.strip().lower() + return bool(GOOD_DATA_RE.search(url)) if BAD_PROTO_RE.search(url) else True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/utils.py b/.venv/lib/python3.12/site-packages/markdown_it/common/utils.py new file mode 100644 index 0000000..0d11e3e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/utils.py @@ -0,0 +1,318 @@ +"""Utilities for parsing source text +""" +from __future__ import annotations + +import re +from typing import Match, TypeVar + +from .entities import entities + + +def charCodeAt(src: str, pos: int) -> int | None: + """ + Returns the Unicode value of the character at the specified location. + + @param - index The zero-based index of the desired character. + If there is no character at the specified index, NaN is returned. + + This was added for compatibility with python + """ + try: + return ord(src[pos]) + except IndexError: + return None + + +def charStrAt(src: str, pos: int) -> str | None: + """ + Returns the Unicode value of the character at the specified location. + + @param - index The zero-based index of the desired character. + If there is no character at the specified index, NaN is returned. + + This was added for compatibility with python + """ + try: + return src[pos] + except IndexError: + return None + + +_ItemTV = TypeVar("_ItemTV") + + +def arrayReplaceAt( + src: list[_ItemTV], pos: int, newElements: list[_ItemTV] +) -> list[_ItemTV]: + """ + Remove element from array and put another array at those position. + Useful for some operations with tokens + """ + return src[:pos] + newElements + src[pos + 1 :] + + +def isValidEntityCode(c: int) -> bool: + # broken sequence + if c >= 0xD800 and c <= 0xDFFF: + return False + # never used + if c >= 0xFDD0 and c <= 0xFDEF: + return False + if ((c & 0xFFFF) == 0xFFFF) or ((c & 0xFFFF) == 0xFFFE): + return False + # control codes + if c >= 0x00 and c <= 0x08: + return False + if c == 0x0B: + return False + if c >= 0x0E and c <= 0x1F: + return False + if c >= 0x7F and c <= 0x9F: + return False + # out of range + if c > 0x10FFFF: + return False + return True + + +def fromCodePoint(c: int) -> str: + """Convert ordinal to unicode. + + Note, in the original Javascript two string characters were required, + for codepoints larger than `0xFFFF`. + But Python 3 can represent any unicode codepoint in one character. + """ + return chr(c) + + +# UNESCAPE_MD_RE = re.compile(r'\\([!"#$%&\'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])') +# ENTITY_RE_g = re.compile(r'&([a-z#][a-z0-9]{1,31})', re.IGNORECASE) +UNESCAPE_ALL_RE = re.compile( + r'\\([!"#$%&\'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])' + "|" + r"&([a-z#][a-z0-9]{1,31});", + re.IGNORECASE, +) +DIGITAL_ENTITY_BASE10_RE = re.compile(r"#([0-9]{1,8})") +DIGITAL_ENTITY_BASE16_RE = re.compile(r"#x([a-f0-9]{1,8})", re.IGNORECASE) + + +def replaceEntityPattern(match: str, name: str) -> str: + """Convert HTML entity patterns, + see https://spec.commonmark.org/0.30/#entity-references + """ + if name in entities: + return entities[name] + + code: None | int = None + if pat := DIGITAL_ENTITY_BASE10_RE.fullmatch(name): + code = int(pat.group(1), 10) + elif pat := DIGITAL_ENTITY_BASE16_RE.fullmatch(name): + code = int(pat.group(1), 16) + + if code is not None and isValidEntityCode(code): + return fromCodePoint(code) + + return match + + +def unescapeAll(string: str) -> str: + def replacer_func(match: Match[str]) -> str: + escaped = match.group(1) + if escaped: + return escaped + entity = match.group(2) + return replaceEntityPattern(match.group(), entity) + + if "\\" not in string and "&" not in string: + return string + return UNESCAPE_ALL_RE.sub(replacer_func, string) + + +ESCAPABLE = r"""\\!"#$%&'()*+,./:;<=>?@\[\]^`{}|_~-""" +ESCAPE_CHAR = re.compile(r"\\([" + ESCAPABLE + r"])") + + +def stripEscape(string: str) -> str: + """Strip escape \\ characters""" + return ESCAPE_CHAR.sub(r"\1", string) + + +def escapeHtml(raw: str) -> str: + """Replace special characters "&", "<", ">" and '"' to HTML-safe sequences.""" + # like html.escape, but without escaping single quotes + raw = raw.replace("&", "&") # Must be done first! + raw = raw.replace("<", "<") + raw = raw.replace(">", ">") + raw = raw.replace('"', """) + return raw + + +# ////////////////////////////////////////////////////////////////////////////// + +REGEXP_ESCAPE_RE = re.compile(r"[.?*+^$[\]\\(){}|-]") + + +def escapeRE(string: str) -> str: + string = REGEXP_ESCAPE_RE.sub("\\$&", string) + return string + + +# ////////////////////////////////////////////////////////////////////////////// + + +def isSpace(code: int | None) -> bool: + """Check if character code is a whitespace.""" + return code in (0x09, 0x20) + + +def isStrSpace(ch: str | None) -> bool: + """Check if character is a whitespace.""" + return ch in ("\t", " ") + + +MD_WHITESPACE = { + 0x09, # \t + 0x0A, # \n + 0x0B, # \v + 0x0C, # \f + 0x0D, # \r + 0x20, # space + 0xA0, + 0x1680, + 0x202F, + 0x205F, + 0x3000, +} + + +def isWhiteSpace(code: int) -> bool: + r"""Zs (unicode class) || [\t\f\v\r\n]""" + if code >= 0x2000 and code <= 0x200A: + return True + return code in MD_WHITESPACE + + +# ////////////////////////////////////////////////////////////////////////////// + +UNICODE_PUNCT_RE = re.compile( + r"[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]" # noqa: E501 +) + + +# Currently without astral characters support. +def isPunctChar(ch: str) -> bool: + """Check if character is a punctuation character.""" + return UNICODE_PUNCT_RE.search(ch) is not None + + +MD_ASCII_PUNCT = { + 0x21, # /* ! */ + 0x22, # /* " */ + 0x23, # /* # */ + 0x24, # /* $ */ + 0x25, # /* % */ + 0x26, # /* & */ + 0x27, # /* ' */ + 0x28, # /* ( */ + 0x29, # /* ) */ + 0x2A, # /* * */ + 0x2B, # /* + */ + 0x2C, # /* , */ + 0x2D, # /* - */ + 0x2E, # /* . */ + 0x2F, # /* / */ + 0x3A, # /* : */ + 0x3B, # /* ; */ + 0x3C, # /* < */ + 0x3D, # /* = */ + 0x3E, # /* > */ + 0x3F, # /* ? */ + 0x40, # /* @ */ + 0x5B, # /* [ */ + 0x5C, # /* \ */ + 0x5D, # /* ] */ + 0x5E, # /* ^ */ + 0x5F, # /* _ */ + 0x60, # /* ` */ + 0x7B, # /* { */ + 0x7C, # /* | */ + 0x7D, # /* } */ + 0x7E, # /* ~ */ +} + + +def isMdAsciiPunct(ch: int) -> bool: + """Markdown ASCII punctuation characters. + + :: + + !, ", #, $, %, &, ', (, ), *, +, ,, -, ., /, :, ;, <, =, >, ?, @, [, \\, ], ^, _, `, {, |, }, or ~ + + See http://spec.commonmark.org/0.15/#ascii-punctuation-character + + Don't confuse with unicode punctuation !!! It lacks some chars in ascii range. + + """ # noqa: E501 + return ch in MD_ASCII_PUNCT + + +def normalizeReference(string: str) -> str: + """Helper to unify [reference labels].""" + # Trim and collapse whitespace + # + string = re.sub(r"\s+", " ", string.strip()) + + # In node v10 'ẞ'.toLowerCase() === 'Ṿ', which is presumed to be a bug + # fixed in v12 (couldn't find any details). + # + # So treat this one as a special case + # (remove this when node v10 is no longer supported). + # + # if ('ẞ'.toLowerCase() === 'Ṿ') { + # str = str.replace(/ẞ/g, 'ß') + # } + + # .toLowerCase().toUpperCase() should get rid of all differences + # between letter variants. + # + # Simple .toLowerCase() doesn't normalize 125 code points correctly, + # and .toUpperCase doesn't normalize 6 of them (list of exceptions: + # İ, ϴ, ẞ, Ω, K, Å - those are already uppercased, but have differently + # uppercased versions). + # + # Here's an example showing how it happens. Lets take greek letter omega: + # uppercase U+0398 (Θ), U+03f4 (ϴ) and lowercase U+03b8 (θ), U+03d1 (ϑ) + # + # Unicode entries: + # 0398;GREEK CAPITAL LETTER THETA;Lu;0;L;;;;;N;;;;03B8 + # 03B8;GREEK SMALL LETTER THETA;Ll;0;L;;;;;N;;;0398;;0398 + # 03D1;GREEK THETA SYMBOL;Ll;0;L; 03B8;;;;N;GREEK SMALL LETTER SCRIPT THETA;;0398;;0398 + # 03F4;GREEK CAPITAL THETA SYMBOL;Lu;0;L; 0398;;;;N;;;;03B8 + # + # Case-insensitive comparison should treat all of them as equivalent. + # + # But .toLowerCase() doesn't change ϑ (it's already lowercase), + # and .toUpperCase() doesn't change ϴ (already uppercase). + # + # Applying first lower then upper case normalizes any character: + # '\u0398\u03f4\u03b8\u03d1'.toLowerCase().toUpperCase() === '\u0398\u0398\u0398\u0398' + # + # Note: this is equivalent to unicode case folding; unicode normalization + # is a different step that is not required here. + # + # Final result should be uppercased, because it's later stored in an object + # (this avoid a conflict with Object.prototype members, + # most notably, `__proto__`) + # + return string.lower().upper() + + +LINK_OPEN_RE = re.compile(r"^\s]", flags=re.IGNORECASE) +LINK_CLOSE_RE = re.compile(r"^", flags=re.IGNORECASE) + + +def isLinkOpen(string: str) -> bool: + return bool(LINK_OPEN_RE.search(string)) + + +def isLinkClose(string: str) -> bool: + return bool(LINK_CLOSE_RE.search(string)) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__init__.py new file mode 100644 index 0000000..3dbbdd1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__init__.py @@ -0,0 +1,6 @@ +"""Functions for parsing Links +""" +__all__ = ("parseLinkLabel", "parseLinkDestination", "parseLinkTitle") +from .parse_link_destination import parseLinkDestination +from .parse_link_label import parseLinkLabel +from .parse_link_title import parseLinkTitle diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..572ecb727a2e94197a1a139cf12c713790262880 GIT binary patch literal 461 zcmY*UyH3L}6t$bQsVZ7AAjH7XHBza0EDVSVb*c~p5-5x1#%^lrIFaoZwG$t}&NuKa z{6VB5BqlacHzXwN@G5ukIp;pky?$sm8^FfJ?Pc;|@!5%=sC<*8HSX0j;)<$Zy>(JJ4ZH;LH%BkdS)nytiu;3Os4&&CHvbH@`Rg zcO()-ux@O9x%7vK&_9&uF3Cd=q%1F6D8&Xvvx zs!#K&e$B6n@JX7mD5-%BAtSB@Q=!^O@R~w&Em_Ew@<~=F>aOJ$iSIWBMgR3>&;dO&7Wbq-Z)F=<%!89|fViU=|W0eD{C(Wp?6OaHnqnd23 zp_H(2sZDVQ5y&Y@VMoxl!lF*~lmD)ym&-*ht!k@8sVV7er2M^>HT3jij%Z8OoT{ZK zSGCe=x{&)WU0E}h%cXOZQ)kn9&d??*N;a=7X?nV-ki1&{p(N*w^s-i{Xhcs}Xl7-a zS@}?ACo5}?B+I!{&XDC=%*)7RmlFb?^y2{P$nGC*2wS3^7=TT(2Zvw_+KIu2@QZW+ z60|&iq8U|ET7cw&(UMZsWZ4PIa;2UxUsf^=?QsqiZBtQwVsQj2KR*NJ7RJNCOAbjw#`qiN_ z(5`r$H}Se)^s4p{1n64#89hA{nYi1!DwjVEei0L^d@TZU*u*B62Ww>U%^K@|)2|9l zi!*(nA)s6vUCPJKQp_UUZ2IJ0*BG=l*a9D*X={L+_$Yel`3tgwCxBExP&7WayqiR3 zyRT>4_0$ivd5vLp7QTX}nQKl>o20J{m7zF{~-pi^$p<6Z~c_2tC> zd^z%}T{p&Fw!2o(9`g7K*a|VbVN>*~AOaT1!we$btcICH2>96ZA;zSKp=J=(Yt_SB zE2dz&vaSuP`CixJtCe_L4NM+tK>N|H0X|&I*XxstED&fR)TYCvO-tIQgSLGEz~}9+ z0TS8??IZ<1Q2?!n+9?1j(R~`UM_JDk+6RO_R6?H$p@vctIYM#zCdkn)*YW9wLJay! z>DY6GEDTbZc-pE~(5Y_HTkHio18ibkg@G~qauO5j1AV3XpWrr3g>a-kXNRNpxxL81 z?XT*Wo{Dj6ym@k0Jl-1H5yx#Q)L6MCHF&!(Zq08N_Y$Mc#a4DVai%eAM-!H@Y1+f1 zR^(0iXtFhR_lD*FEx0#&dVA=R?=k*8@Ob7)>Z9G!iem94m zcTuR%5^qm*-bYfz;%}OEbg&Vz#ju5M))@XYeysULYi|4GlhMiDc)EUR5J;xWAR?Ai8g#bN9y{ M{nzkw#%CA&2g+6qs{jB1 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2a3db2f7d1cb5792ca8f7c803fb32a7eec5f4e92 GIT binary patch literal 1428 zcmZ`(&2Jk;6rb^W*Xwm$$Nk6$RA^%wkrk>}0da@~+!9e#LQpE8sgSkVnZz5fcdePV zA<+Bfh0-n=(&-kY~S z`r_f2>mzA|eizCaWlx2ZG6;K!pcOo6Jv(rGPq#R4)+yJ6suk#K4&#AtS1o4Q z0cHA3>0ZguEtgS?Z0dC@u&b17j0R2S2^XqUkLdndBA$jn6bTzR&MgO4KyP_)G>v60 zlw@H+oF@*qR$aPCc|b|535fXmJn6W z?L=xT!+iivoo_oAYJjmvV1pK1q~UQUVOu*BW=Og=1HSoCfh@)WQ$UgvOd?8K_SkU$ zwhFj%@hpTk)FD{zzgUQVfa(as2(ri|Cze7HbpXG@Avbtt$sUoPw3Qc`dRmxbYM6ex za+`Q~1VI0Z0{3fWfOIy^9 zmAb`hl*O3_qb)FVF<<%_{Z%uoew~_xwwSeLnM=&ypmxAb7!11JbO<%eE$X#Q*I6|i zn?cq0-Yw6*V{#{;Hyf5+v(_m$#Sz5++N(H$S*31+GHy1+7*@m>R+0?Mjm`K{0^SDf zwwO%z8l)n+%zp#cK~bUD`6$X?-nrYo+gXT4ik<%+w@4?Y0z-OsuoZ_h`Ct9|@nE1I~zD@UW( z4la-H89ie=6RG(fwX5zFx`kiWsi*4Hlj-N`%$av#tUvwO*f*Y7`!}Bz-a1lHajakL zX+8Nx@r~$uX;=O>8;wsMy@_(8|0eW{Ryw|c)O>VhVsEZDx2+1lagqE%?n>v=6SyT> zH1Gm6JX5I<->y{RiI<93W=)s!%Ao5^{0(Bs@q#$L>idIgeUI4d05dU&vHE`9C*biR xn*vq5Dn1MBNWvH&rxcw2^Af_d$BK@x_TN52uzY7H%a1pb<>%$k{}5;r@*mwhSrPyM literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_title.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_title.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f88bfd41a7e848f16ff9672f2e4dbf7f2426c78a GIT binary patch literal 1946 zcmZ`3O>YxNboP7W*l|7_NCKs4L7^^+SAn*)5<)_d6c9wTpnh1WE7vng7O&T4c1=mN zK`!F3fuNcbhLcZKC>M_X54}`yS*6~3s|&;vX~dkQeF~}h(1MFx`VL%RE)XvGFFI! zRia`Iwoc?F9S_`*^V(`6JGeG-sX$#aZCg%h+Os^HB-%_cD@KXpN`aoPU~!EVDrL1uGe0M8&Gw$i zkyt53Qnlhn3OGRANOCMRz8H!Lwj66~E5+z=LgWcHr12w0DsW4n$)HsFm( z^0kVx^5R09!4aYwTu+2Zc8R^@GWqGhO2$g1ObkqJ(85~5xI`=0NYQhRC5w{fnuUpx zyFr{AhHZUoR9C%~igPSCchqn#kIYsJ#ZqCJxJJ1^OStl#V_KfELhLG`u2E%qHd&rc zp66V3HPTJfaxBj@*M_?}$?Z}Gz#I1f9CZ|q?hWKkEgZ|hrHA8t;7WvJU@?mNW^X~xJzz^C-s z4>vb%25FiBJS);9T#N9z5Ry|U6Vr?mrdh7wn$6&(XaJ2tnBF|1!bZ+_8P$z3o*7x1xGDsnX>dnTDfr3 zD%Z-~xni#d;7Nwflk_8`3pz#DC}v2+}`k^o5@(g2b<#3g+JD{CpxC~*3FOe0o7lIe$PrT70wx8{SU665~>Y(h7$ zfnUBbh1PWsCPch^{b|?tb)8#cJW9XreF-oYHDA6CSWgyffU)ewZxE%gf#=L3iy^ih z$Dm=I(^X&UMk6^hz&*gJ@ANFk5l!}E{_ohj+LXSwzChobTU7vrM z%G~?9zObz&g5}${!t{8M`aQL`skWpSsYCUJj*9f5M&|ad=1l9%UJX4(C*H@OizNu!58V7Kn@4fjgRi03^P;B4_kAOK54nXW{w2& zFEekqloy$qU_PAO-@N{4Z?Ld=KHN7A*M)HM0LLcw!*wnkn+z_7sgcH&yH}e_Tk>P) zO-h&?X?(VEeq(-@qu4t2Xn9L}e!zeT8*>|HgVTL?whlc{=fdIf=E#FYL)q2`gXTLSpN|DWsVx?TJIJuf<*)HvWC972ai;-kG9#1sg z$7pO4#h;;{h$qiUY5 None: + self.ok = False + self.pos = 0 + self.lines = 0 + self.str = "" + + +def parseLinkDestination(string: str, pos: int, maximum: int) -> _Result: + lines = 0 + start = pos + result = _Result() + + if charCodeAt(string, pos) == 0x3C: # /* < */ + pos += 1 + while pos < maximum: + code = charCodeAt(string, pos) + if code == 0x0A: # /* \n */) + return result + if code == 0x3C: # / * < * / + return result + if code == 0x3E: # /* > */) { + result.pos = pos + 1 + result.str = unescapeAll(string[start + 1 : pos]) + result.ok = True + return result + + if code == 0x5C and pos + 1 < maximum: # \ + pos += 2 + continue + + pos += 1 + + # no closing '>' + return result + + # this should be ... } else { ... branch + + level = 0 + while pos < maximum: + code = charCodeAt(string, pos) + + if code is None or code == 0x20: + break + + # ascii control characters + if code < 0x20 or code == 0x7F: + break + + if code == 0x5C and pos + 1 < maximum: + if charCodeAt(string, pos + 1) == 0x20: + break + pos += 2 + continue + + if code == 0x28: # /* ( */) + level += 1 + if level > 32: + return result + + if code == 0x29: # /* ) */) + if level == 0: + break + level -= 1 + + pos += 1 + + if start == pos: + return result + if level != 0: + return result + + result.str = unescapeAll(string[start:pos]) + result.lines = lines + result.pos = pos + result.ok = True + return result diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_label.py b/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_label.py new file mode 100644 index 0000000..01c653c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_label.py @@ -0,0 +1,43 @@ +""" +Parse link label + +this function assumes that first character ("[") already matches +returns the end of the label + +""" +from markdown_it.rules_inline import StateInline + + +def parseLinkLabel(state: StateInline, start: int, disableNested: bool = False) -> int: + labelEnd = -1 + oldPos = state.pos + found = False + + state.pos = start + 1 + level = 1 + + while state.pos < state.posMax: + marker = state.src[state.pos] + if marker == "]": + level -= 1 + if level == 0: + found = True + break + + prevPos = state.pos + state.md.inline.skipToken(state) + if marker == "[": + if prevPos == state.pos - 1: + # increase level if we find text `[`, + # which is not a part of any token + level += 1 + elif disableNested: + state.pos = oldPos + return -1 + if found: + labelEnd = state.pos + + # restore old state + state.pos = oldPos + + return labelEnd diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_title.py b/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_title.py new file mode 100644 index 0000000..8f58933 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_title.py @@ -0,0 +1,60 @@ +"""Parse link title +""" +from ..common.utils import charCodeAt, unescapeAll + + +class _Result: + __slots__ = ("ok", "pos", "lines", "str") + + def __init__(self) -> None: + self.ok = False + self.pos = 0 + self.lines = 0 + self.str = "" + + def __str__(self) -> str: + return self.str + + +def parseLinkTitle(string: str, pos: int, maximum: int) -> _Result: + lines = 0 + start = pos + result = _Result() + + if pos >= maximum: + return result + + marker = charCodeAt(string, pos) + + # /* " */ /* ' */ /* ( */ + if marker != 0x22 and marker != 0x27 and marker != 0x28: + return result + + pos += 1 + + # if opening marker is "(", switch it to closing marker ")" + if marker == 0x28: + marker = 0x29 + + while pos < maximum: + code = charCodeAt(string, pos) + if code == marker: + title = string[start + 1 : pos] + title = unescapeAll(title) + result.pos = pos + 1 + result.lines = lines + result.str = title + result.ok = True + return result + elif code == 0x28 and marker == 0x29: # /* ( */ /* ) */ + return result + elif code == 0x0A: + lines += 1 + elif code == 0x5C and pos + 1 < maximum: # /* \ */ + pos += 1 + if charCodeAt(string, pos) == 0x0A: + lines += 1 + + pos += 1 + + return result diff --git a/.venv/lib/python3.12/site-packages/markdown_it/main.py b/.venv/lib/python3.12/site-packages/markdown_it/main.py new file mode 100644 index 0000000..bb294a9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/main.py @@ -0,0 +1,355 @@ +from __future__ import annotations + +from collections.abc import Callable, Generator, Iterable, Mapping, MutableMapping +from contextlib import contextmanager +from typing import Any, Literal, overload + +from . import helpers, presets +from .common import normalize_url, utils +from .parser_block import ParserBlock +from .parser_core import ParserCore +from .parser_inline import ParserInline +from .renderer import RendererHTML, RendererProtocol +from .rules_core.state_core import StateCore +from .token import Token +from .utils import EnvType, OptionsDict, OptionsType, PresetType + +try: + import linkify_it +except ModuleNotFoundError: + linkify_it = None + + +_PRESETS: dict[str, PresetType] = { + "default": presets.default.make(), + "js-default": presets.js_default.make(), + "zero": presets.zero.make(), + "commonmark": presets.commonmark.make(), + "gfm-like": presets.gfm_like.make(), +} + + +class MarkdownIt: + def __init__( + self, + config: str | PresetType = "commonmark", + options_update: Mapping[str, Any] | None = None, + *, + renderer_cls: Callable[[MarkdownIt], RendererProtocol] = RendererHTML, + ): + """Main parser class + + :param config: name of configuration to load or a pre-defined dictionary + :param options_update: dictionary that will be merged into ``config["options"]`` + :param renderer_cls: the class to load as the renderer: + ``self.renderer = renderer_cls(self) + """ + # add modules + self.utils = utils + self.helpers = helpers + + # initialise classes + self.inline = ParserInline() + self.block = ParserBlock() + self.core = ParserCore() + self.renderer = renderer_cls(self) + self.linkify = linkify_it.LinkifyIt() if linkify_it else None + + # set the configuration + if options_update and not isinstance(options_update, Mapping): + # catch signature change where renderer_cls was not used as a key-word + raise TypeError( + f"options_update should be a mapping: {options_update}" + "\n(Perhaps you intended this to be the renderer_cls?)" + ) + self.configure(config, options_update=options_update) + + def __repr__(self) -> str: + return f"{self.__class__.__module__}.{self.__class__.__name__}()" + + @overload + def __getitem__(self, name: Literal["inline"]) -> ParserInline: + ... + + @overload + def __getitem__(self, name: Literal["block"]) -> ParserBlock: + ... + + @overload + def __getitem__(self, name: Literal["core"]) -> ParserCore: + ... + + @overload + def __getitem__(self, name: Literal["renderer"]) -> RendererProtocol: + ... + + @overload + def __getitem__(self, name: str) -> Any: + ... + + def __getitem__(self, name: str) -> Any: + return { + "inline": self.inline, + "block": self.block, + "core": self.core, + "renderer": self.renderer, + }[name] + + def set(self, options: OptionsType) -> None: + """Set parser options (in the same format as in constructor). + Probably, you will never need it, but you can change options after constructor call. + + __Note:__ To achieve the best possible performance, don't modify a + `markdown-it` instance options on the fly. If you need multiple configurations + it's best to create multiple instances and initialize each with separate config. + """ + self.options = OptionsDict(options) + + def configure( + self, presets: str | PresetType, options_update: Mapping[str, Any] | None = None + ) -> MarkdownIt: + """Batch load of all options and component settings. + This is an internal method, and you probably will not need it. + But if you will - see available presets and data structure + [here](https://github.com/markdown-it/markdown-it/tree/master/lib/presets) + + We strongly recommend to use presets instead of direct config loads. + That will give better compatibility with next versions. + """ + if isinstance(presets, str): + if presets not in _PRESETS: + raise KeyError(f"Wrong `markdown-it` preset '{presets}', check name") + config = _PRESETS[presets] + else: + config = presets + + if not config: + raise ValueError("Wrong `markdown-it` config, can't be empty") + + options = config.get("options", {}) or {} + if options_update: + options = {**options, **options_update} # type: ignore + + self.set(options) # type: ignore + + if "components" in config: + for name, component in config["components"].items(): + rules = component.get("rules", None) + if rules: + self[name].ruler.enableOnly(rules) + rules2 = component.get("rules2", None) + if rules2: + self[name].ruler2.enableOnly(rules2) + + return self + + def get_all_rules(self) -> dict[str, list[str]]: + """Return the names of all active rules.""" + rules = { + chain: self[chain].ruler.get_all_rules() + for chain in ["core", "block", "inline"] + } + rules["inline2"] = self.inline.ruler2.get_all_rules() + return rules + + def get_active_rules(self) -> dict[str, list[str]]: + """Return the names of all active rules.""" + rules = { + chain: self[chain].ruler.get_active_rules() + for chain in ["core", "block", "inline"] + } + rules["inline2"] = self.inline.ruler2.get_active_rules() + return rules + + def enable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> MarkdownIt: + """Enable list or rules. (chainable) + + :param names: rule name or list of rule names to enable. + :param ignoreInvalid: set `true` to ignore errors when rule not found. + + It will automatically find appropriate components, + containing rules with given names. If rule not found, and `ignoreInvalid` + not set - throws exception. + + Example:: + + md = MarkdownIt().enable(['sub', 'sup']).disable('smartquotes') + + """ + result = [] + + if isinstance(names, str): + names = [names] + + for chain in ["core", "block", "inline"]: + result.extend(self[chain].ruler.enable(names, True)) + result.extend(self.inline.ruler2.enable(names, True)) + + missed = [name for name in names if name not in result] + if missed and not ignoreInvalid: + raise ValueError(f"MarkdownIt. Failed to enable unknown rule(s): {missed}") + + return self + + def disable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> MarkdownIt: + """The same as [[MarkdownIt.enable]], but turn specified rules off. (chainable) + + :param names: rule name or list of rule names to disable. + :param ignoreInvalid: set `true` to ignore errors when rule not found. + + """ + result = [] + + if isinstance(names, str): + names = [names] + + for chain in ["core", "block", "inline"]: + result.extend(self[chain].ruler.disable(names, True)) + result.extend(self.inline.ruler2.disable(names, True)) + + missed = [name for name in names if name not in result] + if missed and not ignoreInvalid: + raise ValueError(f"MarkdownIt. Failed to disable unknown rule(s): {missed}") + return self + + @contextmanager + def reset_rules(self) -> Generator[None, None, None]: + """A context manager, that will reset the current enabled rules on exit.""" + chain_rules = self.get_active_rules() + yield + for chain, rules in chain_rules.items(): + if chain != "inline2": + self[chain].ruler.enableOnly(rules) + self.inline.ruler2.enableOnly(chain_rules["inline2"]) + + def add_render_rule( + self, name: str, function: Callable[..., Any], fmt: str = "html" + ) -> None: + """Add a rule for rendering a particular Token type. + + Only applied when ``renderer.__output__ == fmt`` + """ + if self.renderer.__output__ == fmt: + self.renderer.rules[name] = function.__get__(self.renderer) # type: ignore + + def use( + self, plugin: Callable[..., None], *params: Any, **options: Any + ) -> MarkdownIt: + """Load specified plugin with given params into current parser instance. (chainable) + + It's just a sugar to call `plugin(md, params)` with curring. + + Example:: + + def func(tokens, idx): + tokens[idx].content = tokens[idx].content.replace('foo', 'bar') + md = MarkdownIt().use(plugin, 'foo_replace', 'text', func) + + """ + plugin(self, *params, **options) + return self + + def parse(self, src: str, env: EnvType | None = None) -> list[Token]: + """Parse the source string to a token stream + + :param src: source string + :param env: environment sandbox + + Parse input string and return list of block tokens (special token type + "inline" will contain list of inline tokens). + + `env` is used to pass data between "distributed" rules and return additional + metadata like reference info, needed for the renderer. It also can be used to + inject data in specific cases. Usually, you will be ok to pass `{}`, + and then pass updated object to renderer. + """ + env = {} if env is None else env + if not isinstance(env, MutableMapping): + raise TypeError(f"Input data should be a MutableMapping, not {type(env)}") + if not isinstance(src, str): + raise TypeError(f"Input data should be a string, not {type(src)}") + state = StateCore(src, self, env) + self.core.process(state) + return state.tokens + + def render(self, src: str, env: EnvType | None = None) -> Any: + """Render markdown string into html. It does all magic for you :). + + :param src: source string + :param env: environment sandbox + :returns: The output of the loaded renderer + + `env` can be used to inject additional metadata (`{}` by default). + But you will not need it with high probability. See also comment + in [[MarkdownIt.parse]]. + """ + env = {} if env is None else env + return self.renderer.render(self.parse(src, env), self.options, env) + + def parseInline(self, src: str, env: EnvType | None = None) -> list[Token]: + """The same as [[MarkdownIt.parse]] but skip all block rules. + + :param src: source string + :param env: environment sandbox + + It returns the + block tokens list with the single `inline` element, containing parsed inline + tokens in `children` property. Also updates `env` object. + """ + env = {} if env is None else env + if not isinstance(env, MutableMapping): + raise TypeError(f"Input data should be an MutableMapping, not {type(env)}") + if not isinstance(src, str): + raise TypeError(f"Input data should be a string, not {type(src)}") + state = StateCore(src, self, env) + state.inlineMode = True + self.core.process(state) + return state.tokens + + def renderInline(self, src: str, env: EnvType | None = None) -> Any: + """Similar to [[MarkdownIt.render]] but for single paragraph content. + + :param src: source string + :param env: environment sandbox + + Similar to [[MarkdownIt.render]] but for single paragraph content. Result + will NOT be wrapped into `

` tags. + """ + env = {} if env is None else env + return self.renderer.render(self.parseInline(src, env), self.options, env) + + # link methods + + def validateLink(self, url: str) -> bool: + """Validate if the URL link is allowed in output. + + This validator can prohibit more than really needed to prevent XSS. + It's a tradeoff to keep code simple and to be secure by default. + + Note: the url should be normalized at this point, and existing entities decoded. + """ + return normalize_url.validateLink(url) + + def normalizeLink(self, url: str) -> str: + """Normalize destination URLs in links + + :: + + [label]: destination 'title' + ^^^^^^^^^^^ + """ + return normalize_url.normalizeLink(url) + + def normalizeLinkText(self, link: str) -> str: + """Normalize autolink content + + :: + + + ~~~~~~~~~~~ + """ + return normalize_url.normalizeLinkText(link) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/parser_block.py b/.venv/lib/python3.12/site-packages/markdown_it/parser_block.py new file mode 100644 index 0000000..72360f9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/parser_block.py @@ -0,0 +1,111 @@ +"""Block-level tokenizer.""" +from __future__ import annotations + +import logging +from typing import TYPE_CHECKING, Callable + +from . import rules_block +from .ruler import Ruler +from .rules_block.state_block import StateBlock +from .token import Token +from .utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + +LOGGER = logging.getLogger(__name__) + + +RuleFuncBlockType = Callable[[StateBlock, int, int, bool], bool] +"""(state: StateBlock, startLine: int, endLine: int, silent: bool) -> matched: bool) + +`silent` disables token generation, useful for lookahead. +""" + +_rules: list[tuple[str, RuleFuncBlockType, list[str]]] = [ + # First 2 params - rule name & source. Secondary array - list of rules, + # which can be terminated by this one. + ("table", rules_block.table, ["paragraph", "reference"]), + ("code", rules_block.code, []), + ("fence", rules_block.fence, ["paragraph", "reference", "blockquote", "list"]), + ( + "blockquote", + rules_block.blockquote, + ["paragraph", "reference", "blockquote", "list"], + ), + ("hr", rules_block.hr, ["paragraph", "reference", "blockquote", "list"]), + ("list", rules_block.list_block, ["paragraph", "reference", "blockquote"]), + ("reference", rules_block.reference, []), + ("html_block", rules_block.html_block, ["paragraph", "reference", "blockquote"]), + ("heading", rules_block.heading, ["paragraph", "reference", "blockquote"]), + ("lheading", rules_block.lheading, []), + ("paragraph", rules_block.paragraph, []), +] + + +class ParserBlock: + """ + ParserBlock#ruler -> Ruler + + [[Ruler]] instance. Keep configuration of block rules. + """ + + def __init__(self) -> None: + self.ruler = Ruler[RuleFuncBlockType]() + for name, rule, alt in _rules: + self.ruler.push(name, rule, {"alt": alt}) + + def tokenize(self, state: StateBlock, startLine: int, endLine: int) -> None: + """Generate tokens for input range.""" + rules = self.ruler.getRules("") + line = startLine + maxNesting = state.md.options.maxNesting + hasEmptyLines = False + + while line < endLine: + state.line = line = state.skipEmptyLines(line) + if line >= endLine: + break + if state.sCount[line] < state.blkIndent: + # Termination condition for nested calls. + # Nested calls currently used for blockquotes & lists + break + if state.level >= maxNesting: + # If nesting level exceeded - skip tail to the end. + # That's not ordinary situation and we should not care about content. + state.line = endLine + break + + # Try all possible rules. + # On success, rule should: + # - update `state.line` + # - update `state.tokens` + # - return True + for rule in rules: + if rule(state, line, endLine, False): + break + + # set state.tight if we had an empty line before current tag + # i.e. latest empty line should not count + state.tight = not hasEmptyLines + + line = state.line + + # paragraph might "eat" one newline after it in nested lists + if (line - 1) < endLine and state.isEmpty(line - 1): + hasEmptyLines = True + + if line < endLine and state.isEmpty(line): + hasEmptyLines = True + line += 1 + state.line = line + + def parse( + self, src: str, md: MarkdownIt, env: EnvType, outTokens: list[Token] + ) -> list[Token] | None: + """Process input string and push block tokens into `outTokens`.""" + if not src: + return None + state = StateBlock(src, md, env, outTokens) + self.tokenize(state, state.line, state.lineMax) + return state.tokens diff --git a/.venv/lib/python3.12/site-packages/markdown_it/parser_core.py b/.venv/lib/python3.12/site-packages/markdown_it/parser_core.py new file mode 100644 index 0000000..ca5ab25 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/parser_core.py @@ -0,0 +1,45 @@ +""" + * class Core + * + * Top-level rules executor. Glues block/inline parsers and does intermediate + * transformations. +""" +from __future__ import annotations + +from typing import Callable + +from .ruler import Ruler +from .rules_core import ( + block, + inline, + linkify, + normalize, + replace, + smartquotes, + text_join, +) +from .rules_core.state_core import StateCore + +RuleFuncCoreType = Callable[[StateCore], None] + +_rules: list[tuple[str, RuleFuncCoreType]] = [ + ("normalize", normalize), + ("block", block), + ("inline", inline), + ("linkify", linkify), + ("replacements", replace), + ("smartquotes", smartquotes), + ("text_join", text_join), +] + + +class ParserCore: + def __init__(self) -> None: + self.ruler = Ruler[RuleFuncCoreType]() + for name, rule in _rules: + self.ruler.push(name, rule) + + def process(self, state: StateCore) -> None: + """Executes core chain rules.""" + for rule in self.ruler.getRules(""): + rule(state) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/parser_inline.py b/.venv/lib/python3.12/site-packages/markdown_it/parser_inline.py new file mode 100644 index 0000000..0026c38 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/parser_inline.py @@ -0,0 +1,147 @@ +"""Tokenizes paragraph content. +""" +from __future__ import annotations + +from typing import TYPE_CHECKING, Callable + +from . import rules_inline +from .ruler import Ruler +from .rules_inline.state_inline import StateInline +from .token import Token +from .utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +# Parser rules +RuleFuncInlineType = Callable[[StateInline, bool], bool] +"""(state: StateInline, silent: bool) -> matched: bool) + +`silent` disables token generation, useful for lookahead. +""" +_rules: list[tuple[str, RuleFuncInlineType]] = [ + ("text", rules_inline.text), + ("linkify", rules_inline.linkify), + ("newline", rules_inline.newline), + ("escape", rules_inline.escape), + ("backticks", rules_inline.backtick), + ("strikethrough", rules_inline.strikethrough.tokenize), + ("emphasis", rules_inline.emphasis.tokenize), + ("link", rules_inline.link), + ("image", rules_inline.image), + ("autolink", rules_inline.autolink), + ("html_inline", rules_inline.html_inline), + ("entity", rules_inline.entity), +] + +# Note `rule2` ruleset was created specifically for emphasis/strikethrough +# post-processing and may be changed in the future. +# +# Don't use this for anything except pairs (plugins working with `balance_pairs`). +# +RuleFuncInline2Type = Callable[[StateInline], None] +_rules2: list[tuple[str, RuleFuncInline2Type]] = [ + ("balance_pairs", rules_inline.link_pairs), + ("strikethrough", rules_inline.strikethrough.postProcess), + ("emphasis", rules_inline.emphasis.postProcess), + # rules for pairs separate '**' into its own text tokens, which may be left unused, + # rule below merges unused segments back with the rest of the text + ("fragments_join", rules_inline.fragments_join), +] + + +class ParserInline: + def __init__(self) -> None: + self.ruler = Ruler[RuleFuncInlineType]() + for name, rule in _rules: + self.ruler.push(name, rule) + # Second ruler used for post-processing (e.g. in emphasis-like rules) + self.ruler2 = Ruler[RuleFuncInline2Type]() + for name, rule2 in _rules2: + self.ruler2.push(name, rule2) + + def skipToken(self, state: StateInline) -> None: + """Skip single token by running all rules in validation mode; + returns `True` if any rule reported success + """ + ok = False + pos = state.pos + rules = self.ruler.getRules("") + maxNesting = state.md.options["maxNesting"] + cache = state.cache + + if pos in cache: + state.pos = cache[pos] + return + + if state.level < maxNesting: + for rule in rules: + # Increment state.level and decrement it later to limit recursion. + # It's harmless to do here, because no tokens are created. + # But ideally, we'd need a separate private state variable for this purpose. + state.level += 1 + ok = rule(state, True) + state.level -= 1 + if ok: + break + else: + # Too much nesting, just skip until the end of the paragraph. + # + # NOTE: this will cause links to behave incorrectly in the following case, + # when an amount of `[` is exactly equal to `maxNesting + 1`: + # + # [[[[[[[[[[[[[[[[[[[[[foo]() + # + # TODO: remove this workaround when CM standard will allow nested links + # (we can replace it by preventing links from being parsed in + # validation mode) + # + state.pos = state.posMax + + if not ok: + state.pos += 1 + cache[pos] = state.pos + + def tokenize(self, state: StateInline) -> None: + """Generate tokens for input range.""" + ok = False + rules = self.ruler.getRules("") + end = state.posMax + maxNesting = state.md.options["maxNesting"] + + while state.pos < end: + # Try all possible rules. + # On success, rule should: + # + # - update `state.pos` + # - update `state.tokens` + # - return true + + if state.level < maxNesting: + for rule in rules: + ok = rule(state, False) + if ok: + break + + if ok: + if state.pos >= end: + break + continue + + state.pending += state.src[state.pos] + state.pos += 1 + + if state.pending: + state.pushPending() + + def parse( + self, src: str, md: MarkdownIt, env: EnvType, tokens: list[Token] + ) -> list[Token]: + """Process input string and push inline tokens into `tokens`""" + state = StateInline(src, md, env, tokens) + self.tokenize(state) + rules2 = self.ruler2.getRules("") + for rule in rules2: + rule(state) + return state.tokens diff --git a/.venv/lib/python3.12/site-packages/markdown_it/port.yaml b/.venv/lib/python3.12/site-packages/markdown_it/port.yaml new file mode 100644 index 0000000..3e289e9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/port.yaml @@ -0,0 +1,48 @@ +- package: markdown-it/markdown-it + version: 13.0.1 + commit: e843acc9edad115cbf8cf85e676443f01658be08 + date: May 3, 2022 + notes: + - Rename variables that use python built-in names, e.g. + - `max` -> `maximum` + - `len` -> `length` + - `str` -> `string` + - | + Convert JS `for` loops to `while` loops + this is generally the main difference between the codes, + because in python you can't do e.g. `for {i=1;i PresetType: + config = commonmark.make() + config["components"]["core"]["rules"].append("linkify") + config["components"]["block"]["rules"].append("table") + config["components"]["inline"]["rules"].extend(["strikethrough", "linkify"]) + config["components"]["inline"]["rules2"].append("strikethrough") + config["options"]["linkify"] = True + config["options"]["html"] = True + return config diff --git a/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41a842f47399afa27b20636c77726dd52642c676 GIT binary patch literal 1611 zcmah}y>A>v6rbJOkMWViN&*oU0WVIly^0SOVOz*eMKBwVvv-^}f;Z$FNi zSvzML$%P9S6i_*(TX2&ye*%Jr6_#v`6bT6=l+K9@Br4vl?`({Sc*Wa!-@keD-u_gp zRT0p=ukVLHRuKA42?H|vhr^HIu!RU}AfgdH))Kv;CzVDeF&c)3NQD@&nOF@=L$uPc zbu^2Jxq*naqaS5x;GXSb*Ob*}mLyr41gs-%LR&!|3u&xUmdWZ8_Xiprwh}*%I`pXq z3ET=(c^JS$OksMeL|2p5JB)HF7J6OU1kEuiM@5I@z_t)Y4GpmCL~B&2L3C=ibW+(c zc1kCN8dlG6O=f`@j6%WLNZigBom+9RoaKxXXAaVp1dB0sf|NL1Fz^;_mgQmFf!lYpl%@jwGv^cN1vEot@28v31f6ms z;lx3+13m%oOve!yprQ#Bf`lwsac(cnede^HSWp(F;Z%tP@+Fjt5{JUl%H!ApxDJQr zM6IY9h$u@-*GW#P(-xx3KlHpX6777k-v0nV4|?xi3UZOD>+os%K+u#!?6g}i!==Tj z$XR--KVs~E#Mq~6D2ZTVg!&8PhF*vdpTv+V-0G#Wj&VcfJdw{Rc@5n~Zf(BYh5j^1 zqnR-(O_s-$OS?Zu(p-$QW=ERkI7ur?!9Zp0)J(x^sGutg($2c-iMce|B8gq2TpDR4 zL5E5!=yqvJq*cBqf!(p1S=x$1uG;GS)%4m~LOnv4S+E*-cUZPWn}U0-h|w^Q2=(gA zG+p-MXwmETL_14AsK0;3<1m-gU6|D%q})?mt=7bkgx4)MlY71&rIGOcdbh`3gHo%t z!D`nPu=Ake-ve7mzn^`5YxLXEU(SwgTKo9r&9wqweE4~RFK^!~@bn(OTHvdXzSzYd z9UDRa_I6m{`X0Vk;A@YH_-6sKfaw&d6iu0aySmz*-(V4$&@TyIHxw-h)O?KM510a|1+Xpxo}OQepZ zk~oux4jsC;1>7Y|(Z8ij(JA0`NT=KEq+L4oN%5f)_}=5=`}#dT{@!l;2)=KA_%{Bi zh0tH+=G|v6g}VTR9}z((h*-oOJ@J*H1;337%m&4hS9L zBGrM&H4|L*eg8ONDj;k$qEZD~1i7S&YSmv_e&FYlfh$WV0po#Aunw3GaGHv96?}I5 z<;wtb5)eUEz=aMd$HSBck;rnvDc9=I_xFNfDx&dWpvyDZGM+L{4+Eto8&jP~QN)S= zwglF*jQ^@C;dqi$<4URv$)hFYij|$I!Mb|^1n>iPQiI>Ac%2~P&OFkH5oumo%&H`> zltANOm9%wbk(HTE+Orzz%_xW;(l>{&F+@>1O)#rI%tJ7dWPS zJ6qYu1S)^3;9OH2zGn}$ZYU)+njCtjc1XND#0d zQ65p#NGK*{d3GX=UuGZNhiRtoPMnk}Z9J%f%F4&fvBXvB5V?s9ElNNg`?hQ`Q%X>CXS$MBz+CvQBBRa@2lS=MF zr%h)BnX__G?vdGYwN$%RI}X4Jz)30}fKt8>q-UGPa(IpZ|CIfPWC*8su+YCWOhiUQ zLeC_=#NjI`PHCi7IAW5<1tT=F%|sh>}bli@Ly2avIx8CA~c6wO`K-M(Ji1irZqu!+Zldnz)}q_l=qz?0ZTO3i zpRKra^sMg64| literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/default.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/default.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9c12ee6590ea1e5d2500279fd7c2f4aa08541d80 GIT binary patch literal 672 zcmXw0y^qr{9CbdLe$Zn;N3XQks#HR{3~h9rgoFePH!zlyKmv8C(%4OW`EanE(sb&; zz`zbjWrzQO|AC3ESVBT&x-F+;V#0}fw%+^M)-Uhn+28l}YCw*c?_asM$^iVyH`hbm zEv|ZU@c}?E22g=&poHpJRRGkGI#Z$kRv&9=$uyRSp-p{A-b4e;dl1d+B;Y*~b4(&O zyvWr|MbyqHVu-&;VRDh35~S|%WL&H zFe{@ADEpr#b;;Y+db|3(U47iHJ}s+(9l43^qJdczwa{LS5aT#wfu|Iv7S`LI(r zGSDd*v>|0irY_2p2_(*BB1#Fz0i*fr6=p@sqKzKNGf{aI5|{+&32n=*BEjA;g6z6^DB%ME6w65*gmBTvdpu*N6X}YCFkReL~CqP@Y@FGx0-ig*7c_n#{ zBp`r>3>~t^1yrEu*1x5TkxAebI8!zWZkJAdcTIVC?~#v>@4ese-k%#AA%gY8%OBJG zEri}yhyR!Reshgs^9oUPil{@~%*owT*Fn@{ZsJn^g@5Wz8r@*}JUl#QN*>}uG0n^o ze#XrZ3u%U2q?idZ$QbS6?=?%x3@1|IoQRTSIF=&eX{o9(nPAQHB4c4LDbqdt5aQUF zRIVdzBrb^33=d>RBW_5>V=P5B>4opAcDs%ZpVrmCn-t6jikVW0_&t!?RCqm*>j$6! z6(FiVuhu?Av@vhfAVswKyTctC&{kU6cIwcOuB9$rpSyHp?$OP;`z`8zaPn>oGCeHU zL0`@0SF>NQW*1kpU#9Jhh_oarJMOk^n3M4d(*`hFe`xZ|HZv|pJek-vGbv=MNHJu} z20xY3Fl}4oD(FdRY%oxajI<4_bO0{lW7{6`beMq{+fZf3bl10SAyp29Oqp#AG8vC- zzy;J`wr$wh^v@(0whi==x|a1TuiY3B$Q!eMLAcU(GlA=z38U-yuB$!-SU_Y|JJAAwVS465terYsDX0ve2EUPw_r{sXBF++KsAfBMl-<}9M@T#+e>o+^39Vxyyk zE0&g=vZ!~?#CeqQK~zl4P>L^mx9>!n8+KffcmxdUC?{$}lG90 z=VZhbhFUPfNLRmmhL!=^?<}@%fZgqY`t-BqI@-DYX1BB0-e2r}z6{ac!7AF_3YT}$ zcIWlMqsy(wi|x*DYZuQiKRJH0hc9*)`(Ioh-MifTde!iDHdoE&PPqE&a6MR}!$zPE zpw0;p-|Y9PjQf4tC=JiFs-~;%rskjyQ#Zk9TlZk5fyi&vEjT(LdLPu%a~x;odXE2h T3pqEJ!7V5F`Rp$Qrhfb{b{-ws literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/presets/commonmark.py b/.venv/lib/python3.12/site-packages/markdown_it/presets/commonmark.py new file mode 100644 index 0000000..3990d43 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/presets/commonmark.py @@ -0,0 +1,74 @@ +"""Commonmark default options. + +This differs to presets.default, +primarily in that it allows HTML and does not enable components: + +- block: table +- inline: strikethrough +""" +from ..utils import PresetType + + +def make() -> PresetType: + return { + "options": { + "maxNesting": 20, # Internal protection, recursion limit + "html": True, # Enable HTML tags in source, + # this is just a shorthand for .enable(["html_inline", "html_block"]) + # used by the linkify rule: + "linkify": False, # autoconvert URL-like texts to links + # used by the replacements and smartquotes rules + # Enable some language-neutral replacements + quotes beautification + "typographer": False, + # used by the smartquotes rule: + # Double + single quotes replacement pairs, when typographer enabled, + # and smartquotes on. Could be either a String or an Array. + # + # For example, you can use '«»„“' for Russian, '„“‚‘' for German, + # and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp). + "quotes": "\u201c\u201d\u2018\u2019", # /* “”‘’ */ + # Renderer specific; these options are used directly in the HTML renderer + "xhtmlOut": True, # Use '/' to close single tags (
) + "breaks": False, # Convert '\n' in paragraphs into
+ "langPrefix": "language-", # CSS language prefix for fenced blocks + # Highlighter function. Should return escaped HTML, + # or '' if the source string is not changed and should be escaped externally. + # If result starts with PresetType: + return { + "options": { + "maxNesting": 100, # Internal protection, recursion limit + "html": False, # Enable HTML tags in source + # this is just a shorthand for .disable(["html_inline", "html_block"]) + # used by the linkify rule: + "linkify": False, # autoconvert URL-like texts to links + # used by the replacements and smartquotes rules: + # Enable some language-neutral replacements + quotes beautification + "typographer": False, + # used by the smartquotes rule: + # Double + single quotes replacement pairs, when typographer enabled, + # and smartquotes on. Could be either a String or an Array. + # For example, you can use '«»„“' for Russian, '„“‚‘' for German, + # and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp). + "quotes": "\u201c\u201d\u2018\u2019", # /* “”‘’ */ + # Renderer specific; these options are used directly in the HTML renderer + "xhtmlOut": False, # Use '/' to close single tags (
) + "breaks": False, # Convert '\n' in paragraphs into
+ "langPrefix": "language-", # CSS language prefix for fenced blocks + # Highlighter function. Should return escaped HTML, + # or '' if the source string is not changed and should be escaped externally. + # If result starts with PresetType: + return { + "options": { + "maxNesting": 20, # Internal protection, recursion limit + "html": False, # Enable HTML tags in source + # this is just a shorthand for .disable(["html_inline", "html_block"]) + # used by the linkify rule: + "linkify": False, # autoconvert URL-like texts to links + # used by the replacements and smartquotes rules: + # Enable some language-neutral replacements + quotes beautification + "typographer": False, + # used by the smartquotes rule: + # Double + single quotes replacement pairs, when typographer enabled, + # and smartquotes on. Could be either a String or an Array. + # For example, you can use '«»„“' for Russian, '„“‚‘' for German, + # and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp). + "quotes": "\u201c\u201d\u2018\u2019", # /* “”‘’ */ + # Renderer specific; these options are used directly in the HTML renderer + "xhtmlOut": False, # Use '/' to close single tags (
) + "breaks": False, # Convert '\n' in paragraphs into
+ "langPrefix": "language-", # CSS language prefix for fenced blocks + # Highlighter function. Should return escaped HTML, + # or '' if the source string is not changed and should be escaped externally. + # If result starts with Any: + ... + + +class RendererHTML(RendererProtocol): + """Contains render rules for tokens. Can be updated and extended. + + Example: + + Each rule is called as independent static function with fixed signature: + + :: + + class Renderer: + def token_type_name(self, tokens, idx, options, env) { + # ... + return renderedHTML + + :: + + class CustomRenderer(RendererHTML): + def strong_open(self, tokens, idx, options, env): + return '' + def strong_close(self, tokens, idx, options, env): + return '' + + md = MarkdownIt(renderer_cls=CustomRenderer) + + result = md.render(...) + + See https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.js + for more details and examples. + """ + + __output__ = "html" + + def __init__(self, parser: Any = None): + self.rules = { + k: v + for k, v in inspect.getmembers(self, predicate=inspect.ismethod) + if not (k.startswith("render") or k.startswith("_")) + } + + def render( + self, tokens: Sequence[Token], options: OptionsDict, env: EnvType + ) -> str: + """Takes token stream and generates HTML. + + :param tokens: list on block tokens to render + :param options: params of parser instance + :param env: additional data from parsed input + + """ + result = "" + + for i, token in enumerate(tokens): + if token.type == "inline": + if token.children: + result += self.renderInline(token.children, options, env) + elif token.type in self.rules: + result += self.rules[token.type](tokens, i, options, env) + else: + result += self.renderToken(tokens, i, options, env) + + return result + + def renderInline( + self, tokens: Sequence[Token], options: OptionsDict, env: EnvType + ) -> str: + """The same as ``render``, but for single token of `inline` type. + + :param tokens: list on block tokens to render + :param options: params of parser instance + :param env: additional data from parsed input (references, for example) + """ + result = "" + + for i, token in enumerate(tokens): + if token.type in self.rules: + result += self.rules[token.type](tokens, i, options, env) + else: + result += self.renderToken(tokens, i, options, env) + + return result + + def renderToken( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + """Default token renderer. + + Can be overridden by custom function + + :param idx: token index to render + :param options: params of parser instance + """ + result = "" + needLf = False + token = tokens[idx] + + # Tight list paragraphs + if token.hidden: + return "" + + # Insert a newline between hidden paragraph and subsequent opening + # block-level tag. + # + # For example, here we should insert a newline before blockquote: + # - a + # > + # + if token.block and token.nesting != -1 and idx and tokens[idx - 1].hidden: + result += "\n" + + # Add token name, e.g. ``. + # + needLf = False + + result += ">\n" if needLf else ">" + + return result + + @staticmethod + def renderAttrs(token: Token) -> str: + """Render token attributes to string.""" + result = "" + + for key, value in token.attrItems(): + result += " " + escapeHtml(key) + '="' + escapeHtml(str(value)) + '"' + + return result + + def renderInlineAsText( + self, + tokens: Sequence[Token] | None, + options: OptionsDict, + env: EnvType, + ) -> str: + """Special kludge for image `alt` attributes to conform CommonMark spec. + + Don't try to use it! Spec requires to show `alt` content with stripped markup, + instead of simple escaping. + + :param tokens: list on block tokens to render + :param options: params of parser instance + :param env: additional data from parsed input + """ + result = "" + + for token in tokens or []: + if token.type == "text": + result += token.content + elif token.type == "image": + if token.children: + result += self.renderInlineAsText(token.children, options, env) + elif token.type == "softbreak": + result += "\n" + + return result + + ################################################### + + def code_inline( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + token = tokens[idx] + return ( + "" + + escapeHtml(tokens[idx].content) + + "" + ) + + def code_block( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + token = tokens[idx] + + return ( + "" + + escapeHtml(tokens[idx].content) + + "\n" + ) + + def fence( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + token = tokens[idx] + info = unescapeAll(token.info).strip() if token.info else "" + langName = "" + langAttrs = "" + + if info: + arr = info.split(maxsplit=1) + langName = arr[0] + if len(arr) == 2: + langAttrs = arr[1] + + if options.highlight: + highlighted = options.highlight( + token.content, langName, langAttrs + ) or escapeHtml(token.content) + else: + highlighted = escapeHtml(token.content) + + if highlighted.startswith("" + + highlighted + + "\n" + ) + + return ( + "

"
+            + highlighted
+            + "
\n" + ) + + def image( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + token = tokens[idx] + + # "alt" attr MUST be set, even if empty. Because it's mandatory and + # should be placed on proper position for tests. + if token.children: + token.attrSet("alt", self.renderInlineAsText(token.children, options, env)) + else: + token.attrSet("alt", "") + + return self.renderToken(tokens, idx, options, env) + + def hardbreak( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return "
\n" if options.xhtmlOut else "
\n" + + def softbreak( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return ( + ("
\n" if options.xhtmlOut else "
\n") if options.breaks else "\n" + ) + + def text( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return escapeHtml(tokens[idx].content) + + def html_block( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return tokens[idx].content + + def html_inline( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return tokens[idx].content diff --git a/.venv/lib/python3.12/site-packages/markdown_it/ruler.py b/.venv/lib/python3.12/site-packages/markdown_it/ruler.py new file mode 100644 index 0000000..bd8baba --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/ruler.py @@ -0,0 +1,276 @@ +""" +class Ruler + +Helper class, used by [[MarkdownIt#core]], [[MarkdownIt#block]] and +[[MarkdownIt#inline]] to manage sequences of functions (rules): + +- keep rules in defined order +- assign the name to each rule +- enable/disable rules +- add/replace rules +- allow assign rules to additional named chains (in the same) +- caching lists of active rules + +You will not need use this class directly until write plugins. For simple +rules control use [[MarkdownIt.disable]], [[MarkdownIt.enable]] and +[[MarkdownIt.use]]. +""" +from __future__ import annotations + +from collections.abc import Iterable +from dataclasses import dataclass, field +from typing import TYPE_CHECKING, Generic, TypedDict, TypeVar +import warnings + +from markdown_it._compat import DATACLASS_KWARGS + +from .utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +class StateBase: + def __init__(self, src: str, md: MarkdownIt, env: EnvType): + self.src = src + self.env = env + self.md = md + + @property + def src(self) -> str: + return self._src + + @src.setter + def src(self, value: str) -> None: + self._src = value + self._srcCharCode: tuple[int, ...] | None = None + + @property + def srcCharCode(self) -> tuple[int, ...]: + warnings.warn( + "StateBase.srcCharCode is deprecated. Use StateBase.src instead.", + DeprecationWarning, + stacklevel=2, + ) + if self._srcCharCode is None: + self._srcCharCode = tuple(ord(c) for c in self._src) + return self._srcCharCode + + +class RuleOptionsType(TypedDict, total=False): + alt: list[str] + + +RuleFuncTv = TypeVar("RuleFuncTv") +"""A rule function, whose signature is dependent on the state type.""" + + +@dataclass(**DATACLASS_KWARGS) +class Rule(Generic[RuleFuncTv]): + name: str + enabled: bool + fn: RuleFuncTv = field(repr=False) + alt: list[str] + + +class Ruler(Generic[RuleFuncTv]): + def __init__(self) -> None: + # List of added rules. + self.__rules__: list[Rule[RuleFuncTv]] = [] + # Cached rule chains. + # First level - chain name, '' for default. + # Second level - diginal anchor for fast filtering by charcodes. + self.__cache__: dict[str, list[RuleFuncTv]] | None = None + + def __find__(self, name: str) -> int: + """Find rule index by name""" + for i, rule in enumerate(self.__rules__): + if rule.name == name: + return i + return -1 + + def __compile__(self) -> None: + """Build rules lookup cache""" + chains = {""} + # collect unique names + for rule in self.__rules__: + if not rule.enabled: + continue + for name in rule.alt: + chains.add(name) + self.__cache__ = {} + for chain in chains: + self.__cache__[chain] = [] + for rule in self.__rules__: + if not rule.enabled: + continue + if chain and (chain not in rule.alt): + continue + self.__cache__[chain].append(rule.fn) + + def at( + self, ruleName: str, fn: RuleFuncTv, options: RuleOptionsType | None = None + ) -> None: + """Replace rule by name with new function & options. + + :param ruleName: rule name to replace. + :param fn: new rule function. + :param options: new rule options (not mandatory). + :raises: KeyError if name not found + """ + index = self.__find__(ruleName) + options = options or {} + if index == -1: + raise KeyError(f"Parser rule not found: {ruleName}") + self.__rules__[index].fn = fn + self.__rules__[index].alt = options.get("alt", []) + self.__cache__ = None + + def before( + self, + beforeName: str, + ruleName: str, + fn: RuleFuncTv, + options: RuleOptionsType | None = None, + ) -> None: + """Add new rule to chain before one with given name. + + :param beforeName: new rule will be added before this one. + :param ruleName: new rule will be added before this one. + :param fn: new rule function. + :param options: new rule options (not mandatory). + :raises: KeyError if name not found + """ + index = self.__find__(beforeName) + options = options or {} + if index == -1: + raise KeyError(f"Parser rule not found: {beforeName}") + self.__rules__.insert( + index, Rule[RuleFuncTv](ruleName, True, fn, options.get("alt", [])) + ) + self.__cache__ = None + + def after( + self, + afterName: str, + ruleName: str, + fn: RuleFuncTv, + options: RuleOptionsType | None = None, + ) -> None: + """Add new rule to chain after one with given name. + + :param afterName: new rule will be added after this one. + :param ruleName: new rule will be added after this one. + :param fn: new rule function. + :param options: new rule options (not mandatory). + :raises: KeyError if name not found + """ + index = self.__find__(afterName) + options = options or {} + if index == -1: + raise KeyError(f"Parser rule not found: {afterName}") + self.__rules__.insert( + index + 1, Rule[RuleFuncTv](ruleName, True, fn, options.get("alt", [])) + ) + self.__cache__ = None + + def push( + self, ruleName: str, fn: RuleFuncTv, options: RuleOptionsType | None = None + ) -> None: + """Push new rule to the end of chain. + + :param ruleName: new rule will be added to the end of chain. + :param fn: new rule function. + :param options: new rule options (not mandatory). + + """ + self.__rules__.append( + Rule[RuleFuncTv](ruleName, True, fn, (options or {}).get("alt", [])) + ) + self.__cache__ = None + + def enable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> list[str]: + """Enable rules with given names. + + :param names: name or list of rule names to enable. + :param ignoreInvalid: ignore errors when rule not found + :raises: KeyError if name not found and not ignoreInvalid + :return: list of found rule names + """ + if isinstance(names, str): + names = [names] + result: list[str] = [] + for name in names: + idx = self.__find__(name) + if (idx < 0) and ignoreInvalid: + continue + if (idx < 0) and not ignoreInvalid: + raise KeyError(f"Rules manager: invalid rule name {name}") + self.__rules__[idx].enabled = True + result.append(name) + self.__cache__ = None + return result + + def enableOnly( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> list[str]: + """Enable rules with given names, and disable everything else. + + :param names: name or list of rule names to enable. + :param ignoreInvalid: ignore errors when rule not found + :raises: KeyError if name not found and not ignoreInvalid + :return: list of found rule names + """ + if isinstance(names, str): + names = [names] + for rule in self.__rules__: + rule.enabled = False + return self.enable(names, ignoreInvalid) + + def disable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> list[str]: + """Disable rules with given names. + + :param names: name or list of rule names to enable. + :param ignoreInvalid: ignore errors when rule not found + :raises: KeyError if name not found and not ignoreInvalid + :return: list of found rule names + """ + if isinstance(names, str): + names = [names] + result = [] + for name in names: + idx = self.__find__(name) + if (idx < 0) and ignoreInvalid: + continue + if (idx < 0) and not ignoreInvalid: + raise KeyError(f"Rules manager: invalid rule name {name}") + self.__rules__[idx].enabled = False + result.append(name) + self.__cache__ = None + return result + + def getRules(self, chainName: str = "") -> list[RuleFuncTv]: + """Return array of active functions (rules) for given chain name. + It analyzes rules configuration, compiles caches if not exists and returns result. + + Default chain name is `''` (empty string). It can't be skipped. + That's done intentionally, to keep signature monomorphic for high speed. + + """ + if self.__cache__ is None: + self.__compile__() + assert self.__cache__ is not None + # Chain can be empty, if rules disabled. But we still have to return Array. + return self.__cache__.get(chainName, []) or [] + + def get_all_rules(self) -> list[str]: + """Return all available rule names.""" + return [r.name for r in self.__rules__] + + def get_active_rules(self) -> list[str]: + """Return the active rule names.""" + return [r.name for r in self.__rules__ if r.enabled] diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__init__.py new file mode 100644 index 0000000..bcf138d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__init__.py @@ -0,0 +1,27 @@ +__all__ = ( + "StateBlock", + "paragraph", + "heading", + "lheading", + "code", + "fence", + "hr", + "list_block", + "reference", + "blockquote", + "html_block", + "table", +) + +from .blockquote import blockquote +from .code import code +from .fence import fence +from .heading import heading +from .hr import hr +from .html_block import html_block +from .lheading import lheading +from .list import list_block +from .paragraph import paragraph +from .reference import reference +from .state_block import StateBlock +from .table import table diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5dedf7ecc0eb818994a530384286fdd094d44023 GIT binary patch literal 682 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 D@UGYe literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/code.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/code.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2425823a64e44a3d5d4189be19471607633ece9 GIT binary patch literal 1381 zcmZ`(O>7%Q6rQ#Bf8#m<7pO^!OIoNU$WjPWK@(rWFQIvd-&*6cdO z(ONQ6B@!u8(^Jfe99!j*V>!`d5SOHhRI_lfggE3DDV#X*W}U>51y9=dv)_Af=Kbvc z8jGn2=s;5$iC7>}ED{Mz@W@2Q3X$)rSiR5ZlzJqsEsT8TV3Nw0okA&faXjT#%>r>#RTE=^ z(_?!q&(t1Em*xWXwr6_eQ|228F4F@A1ob8@n*{LI35UUMG)(_9YGP8ZrI9>&aMgO%J#RzyQNBQbXTAf-L zfk_c+*~L@=7U9Fx1^2BJ&*zj~Gf)|3gi8|eOsCLKw8t(GaO$138if+^&`ohZHXXqO=}POBUG4SuK%&Jh-B`Q^N-unVSG(9lUVL@& zDud-%XXtb@b3fY|7n1-+$?V)5V^JDgh?AG9$U|;WO@dGFZ!B{23z)rz10;%j2i?Ahu7Jm2L zPS9`x6gEdd2@Pb!u+0iF3>t^{AZo!N`Ml$l!!|uebOc`0VTQ>cRU8aW{g}Q1Ci}s- z*MRLuIga}cjsA{K{e?z5N^NX;EX5sB6v_h7q&6r?bDw15nc2j*uBd**n&rKW0&H=oWjA!V_p$3za%N*NA3lo%tWO}RPe?lDj#JmX|9wi;os!7 zbk6eV^lXU$NGYCGvBhImu@9V{&11D>aRirEiJEph-t3)+orUl5cd*|%nM!1bOYpBxRQ zTQkCxU4}ZeTL6) z^{>aFi-Z@2yow*K$#7@`xyRtvNSo{iA(bS>K*buwkPK2x}g+m5DJ z#`Z0SzWWR}aVfmYD1v?0Q1VH4!Q0QC^`?l5qzJnw@2DahUPDg$yK1<}geMOtNZbWC^Qj{ELwb`uM5u>LZ#*)MYX6Tg)E`Tuk&1p(H}zh~=@BEO%N{ za5QXj@waDYrhjjF6uh{avAD(SDU#DIt~9rtU4lV`9bC@pNve@tv_}}LleFd2bJ^n5 za*F74C1P>Ud@KJtV0y%Jm23OJ_VHImv) z#ePS$6`U^Vv861*nboX+ zf2exBEd{p6>*I~GDLvns{#*QBd~e7ceZ!RAs7|&0;q81q-<&l47pgNI-gm@DOg_?_ ze8^vD2l_j_RJ-}XdSl>#AEc<@8Bi+$jJyIe0f!}a%D&m9C_Xa@(6Sri;QmXI%W!_AF{-m$i?zvB-d`A1Cu zNGsf0I`mJ}Scu9OXoTyNjkN>sSr7q2p#R7}Z2E_r`l0`PjXep1st=y2$sIuk8E8qO zo@ho*c@)YK8oD=e_vYSBGjzE+{n2d47uue!&oL78`8gV`$lVW z=TG{`NK1krg0}_%+ zHC4dLB%zbdVzcl#-HV!*w{Pqx=rK?c8K*qqmjz9M3;rweDxmbQkNy^H5C_A2gZ%$O y=R0DgHgF_HOfk}Y{ZJgOa>rbPVSLpwfe&7B;FnjvwfW=~u=ii?NK*O$ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/heading.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/heading.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6de239cbdff8d5963e3d02908d7d19c52b556916 GIT binary patch literal 2626 zcmbVOO>7&-6`tk(ahHGkH^jgJZJM#^I-+eguw$nIB1KW8C{9wfO+_SODDH|}akxW*1vRoY;hyQHj0iuXM(>6>Tc^1>sLXKZyY zl2g-)W@IC0qURz}_zesU#3OrDBhCrMVK?|DpFs|qeb`ge>0S96tXV zLR3fL7Db0sxP<_XL85W~l#Mf>`OAh4s4-4BqQd9HK%E7uY3Kj3=xbXP+7_8x)Fz*Q z7NYKG%l&qzo24VT`CBx97BUhbgKk%TusV?S2E7w78rAG=(htuLudsk>o%W*F@j4v! zjgLR%@#y+^A#->ww9;-w*yDJ?69W?9Iw;jXKZuY54-G|By!In5(-B=eR9iWSN`iNR z95IX>DHUv^;Wp0pxx0fk>j6~A-T#1JS@9|UcGeQ0j=TX5A4an$Tw4e0MvDYb2j}v$ z;>pq+x?D>?5MAI$suDbi`lzbR3sGdZYjg@>0lE;pgekPl+?u(8=GZB8gZUB6OD-lJ zy0#Ee4O_*u`?R{yl}OAw_t5V-!bCBB1b4e_^dDYK{=gvl*|d9B#!g4R$PP#ttXoJ(Wc9UC035fE1_Svjy_VBP&}oK-Wnm6*}6 znk{LHni#mQ8rKuLHk~NW+d0!19Jp{XVQIGdIJEnGI;&aQ^y-tfV5~g4EBbfDa7_$XpS&l=>Y<+9-tg+w z%2d@_d80hED@v8gcjuRftC#+G4TSpw3Ixj|bxy2Yc<1@@@VO{5+Zp0&XvvSJ5NI#{}BWAQ1`wUg?e^^Cu_lzYnRrCw}a=) zqjfp7BS&g-WbN2`bluvP2O(oordj+cxyFAgeIl(#H<`~)*CH41^$ym%dMn~?XSn*x z%JK5Zd*i$Q&fDWl@-1c9Eq`Qw-XR4*G?ic_k>Yy|7@%V@1 zTOFriKjtdVt#z%vvh4?6y{CV5Y-OyPSv$Seb9Sfae68pFcF#oszj#==-g^w#*IXNK zud{bDo3V}A+L_CDPj35vb=di?FZACBFEGg8_cdbZ0d(Hzm+k0~e zm{Q+2)+x9ze|;)68byDLg+`x1pGSS87unA*Fm!&x_dLh`on>H-%Qy;9O#fqGszg}L zuyKrT6Lflv^0;Z!)QNyqyMzsV9$0Zd5mPC}%%oC8PNil_AW>5(Outb?)Xi)b8WQnm z%tFC521>T3Tg?aWYdp&4ZEtubQdYGmKtaXCn@Sn!0<}XscH`oIhVBE2@Z;35_o;%Z zz-xILUxh9G+hqL$Cdip#{)J9_flhvjf?uK77bvK HuK@l#V0~@1 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6d92073732cc2f5d2cfa0fc05fcdf253cc0f9720 GIT binary patch literal 1756 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/lheading.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/lheading.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c11653ab02beb6118b6cab069bb4f0b144e4e218 GIT binary patch literal 2932 zcmb6bOKcm*b(dT&x%}&AS@cg%%-D)$5snhXN#p{mqS{vVv7-cb)EWfE8I#M;E-|}Q zBx9MdK!8ex0n@pdK85bZ3>2WsDLUpDpcm70DrQ;~1cDxPQ{bL@Y2WN>MMaJSbby`r z=Kbf*n>YK{K)}nvxPIqGY8MEKm;jXcg$2(FKjhtJg0tI9eu$^uc|D=yU+2_h zmbx^CQwadkr)33GH&&2|h?<^&(M{g5}Me-7q`hd-hMD-ski^R)$dz48$9p z!5a?4x$d%9JnXb27(8;^213bYaGCwqclCd6*BQ?N<4j*P#EkEGI&#_>D!IW!;CTsy zwUuOS&;mJKoqaz|}$2O1LFXUS*ykhsK=*Ffq-hihYC#kUSt*eEfNCoO#cY)E!i zL4tW@d-H-_clHcm4&+dHQos+REg7kprU#thsQQ_}MhM-y1_VWJySvcGib{l@C zDv)4DlZigBx4ug%1Sl_+LrO+onBNX4O zAc&C5ykcv0V9Ehf{r36=9s?+dq>g1H2s(T9_ae)11K>vd)P9NsO;%dwc!9UjFYGV8 zFN&Y;&$IuwuXu;LW^bQ_K8T5|qy}?ooIrrQJs8!7_kDzAi%NwANu)@kkp9g!BMdnx ze~$7O3F|A{tiTDI-lzUuGjX+m70RcnC@VSEeK{JiS;?HL;qCvz7>ZDFdhXJt$@i!W z;l*N#I`W9R7Of6WiaAWECx!L*0Mlqd*5XMO;kd>3LQD|;`zr#~Hk zc?clVTF3^1$hVJkl@pb zP%LHcAARV6U(N?Ip-8-<=d#cfUsyx%`f2lnA zROsCiIbToZdeeKf_Q9i@4{vT<_%1pIM6f-!HdggCd?#y@kLDiEHGHERi6_1{TmIfE zzc#Z9?wRs_xep%2AI6{fUT<~x-ygm=TwQK-pQ*p`m$5I#Ha(5Ab$<^-??3UAg|JQfuJ&=K~K0YNHR1SHyPDKy{(fbGj8du@xC^M27408?Q7YZ&fBt z%BzjYtM$=lBvzRK_lJ*EQ=fg@ik_`&f4=#U-{h;V*5P9Z;u?SAiyjEOFS08A{rI`n z+3!Qgsrta^54cr#f~I?4K5 zbnM5gJY=B_*$wvGRo0a1hjq_J^y}DHv2WgJ2Cr-d=NiGeX7F11QoC!QI)3kHdGgb# zHsoz;ZL0EdP5W|wqi=noar({8uBQJTIK!R+keF_DMXHmZPd%7=96k-}E4IdRt-E%u z=?7Y?_Xsd%_5|x)4`v^S&obdwUq66ZTj!Iy^ULH$bUo8Jb7AwPrvKuemv;Xtvkcn4 z&@-q$Zb+i;oSI5Ox1&DuH_@tE!X8B`v3n0()_US`C6UMRIAM`l%23hc1{of|vboM{99ksat literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/list.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/list.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36e07ac232106e19f0fabf376dfab1d7a32ff356 GIT binary patch literal 8033 zcmb_hT}&HUmaekPzg7Ol25kPxuL*&qqokWoI%$%Szh=m!Lpq%()5xI;Fc_PzDiUDJ z)9%qoV|O!(nSH>ShYfj(qddg@G>kOTrlpm3qw~KFb74uw<0D zO|S;m7$v6-w+$r0QmiRzoThG5Bw-*pVp1QY&jC4Senx85+ZNW$QLKftvR2MIW@c@_ zq;A`GwArD}j@xKN$C5zDKpS1Ab3nV3V_*(u%+9)?&oNJi+^^6gL$3_*4UwunB3u{w z>oeg|?iE@dHC-3OB6l_#ADvQ70xGLE$arxu65~`e&xx~qY!r>x69ok${NB8U&oUtq zlX_28E|CGKL0|RAQoq)>0JVexDA0U6l17m*+RzN<9i32>3~2TQB^g-5f&%<;HwCcTk3EoH&w}^T2J~3y!McgMt)X=N{ zgv6VGCS+8}E|om2l7~WO)qM9SVSY+b&EoZm$e5^_IjwFK_)*nF``+dUjehPs21EuNp=t1SEeuPJbTlorq6!y)1W+4=;p!f6B)v zxlvK*9gFbX_-usbdVB71v3tGI$lczVd2u2hJJxgby62zXFdDSOOMP|;yYk}B^L2SbG2*gIw2E%ZwKr&&L%q#}9V1g1gbzYkjOvCv9 zx&q?Wg;xkd$qus{7Qk__CS8if4s zN6@DaeUQHl8B{W)l09G~E~xTu^g+7jz3@?uah}zT$WmoQ$bs=9??YsM^l3n}=Fy1} zAQzCaX@=C!H=+(dLi$yn<#>**g8Cll1Gi5IZ{Pz^XFLxE(}UT7%9f;iS1h8igd~;d>*jHPF0`q>Ewx*14&4kyV`ShUc6gR><*#l-}b66a^&gr117EEfxzG&4ZB^Qs7#a2@$GVnk=JHZvhuaN`!>(4bRX{L4rG+ zAptjvgbA=zYSVhOuSDvo-QB%|t41#M6wFY*OH}44-;ZkGvC8eX{12m%r`(aSQ^pRO zKMbSMnY|;iW^5;||A)DeL~zqhP$F{5IHA3JR=VZk!%CC;JWyF+1?0DPq_XVDlkZ4X zcSEa)TsTfJPrY8Q@)ce3|{k%a$=7`fSoEkyb7JQ^p zd?&2bq|;Y&seD_9{^m-%UedVM56WG*E%A!jNx<<6$T5m-{cD-E5%Tm#j1@pG2 z(x;c;H2~5+E8#l9e5K3Y!rCQUgp`<(@;=AvfVWz6&@59u2Y7F4+%Sj6*6Hgc9FiUC z=xoJFA`?#7ITy^>rMFe`$?i&7FHQF7rAj_|v{KeftfMTq8)mP8;Dm>DNW@6lb|j}{ zK)BBs`98^<@WQBCT5{sOM|)7qB5|)|##gt$0JjK_b7aDo@Jn8)4qM|zSg{sD!(+_+iKHr(t$NDUMP z0m%)u_v5Q7dj_PzHB?JLeL^o+@&tO{m62U(*K9G-4866qjNhdR%qe;*; zH0!p*w}~fpDj0#L*pXN-qL&Q1_XbH?b&}Wt7}KTKDtS%2K2zz}OWKL5dnFRdT|z z8%e}Sijdl1)F}9Z_qN?6oH`auHwpB>Bx6^1kxb{kmX6BaGGUE*x7`71uh9a#U)xJp zo!j_MLB=fldBYnr#>GC6!Utn(`A0vT%~cxS_57`e^S6p_2NIl;qpa;J8NQ2cmV~#j&F5uGy$cAxf3BsbstA#G@bxHC-ASjcCsuSEXY# z8W%Vm2vEJ-7Q-E?r+N|G6zWjTgI6zJ9QafZ-r^T~WJDMDY++q-i z6VAnFA-CO)PL-PMAR=@P!y}4Es;h(<;OQF^ahL%|y;M626X2k!phX};h#Wabm719q zCR9^c6nQ~4PKRf-$ldIWYM5qK6ArAYCKP4kRqHq>ev0C4s^xBp9V!wVi>oFPy~R{Z zL>QQ!5$9o^NDS>Cylt%btruC~@cS&(QHgc%C|ts$+ml)!5r#P)28BgXZuw2e52H>e z#1;F;K<`={PqjsaQp7{k9*rJ@9RFE3I?Jhct#WQ6%xl{>9G|+(&H;z$$*J1Vj-of0 zpjubx5jGceZZgd>)4W0#m_yr0XP25@XUJs$0_=?m0&tort;Sc`%fr!jXwqs=eYc>^}v~wQ=tRdYX!PhX>3Vf zF4i@^wiC9tGN;)u)|u|S>37U`%<3)q$i)J45u|~rmA3&$j8EtK<)*{3rzd&kHAL2& zimOfwf8AKVvvgTFBUgq+P-98YwF2U`S7~?gOo|3>$4pN2zxbku6(i-8s-SBt*Drf;w8+nfA}(g0&OC|}X;&D>nKH!IHO zlu-dux|h1MbF%kf$^twAB;nBR?S@JR`TA zd2v*3Jue5(%kJ|_X2nyN5q=ZEgiG|2x#;#68CT|L`cmrLmLE_3?etb7(b$w?fYZ*N zd_$q*gNOaAV=wN@r-#<8fi2K+x%>m|Qv$7z0uKW#$8)Dw`{hF)tp!e}1{SZt!oI-r z$)%Gis{)0=rNNbe>^lV5+*X6F2()fC9+VporW{IB`=c`t&!kKn))rfrblH7SIWqQD*nanNO+NN|Ktg031hV1(Vx^rdrN#b!Lf9r+kyPs_w zIQP~~1Y5E<9^HO;JJ<2>i`>oiz;Qs+l`T8c@F{5A7?r>qKl%OS+V$b@W9uK>NHN7= z+h(v!4t60SlqTR1$<%qMiqjpn`c@<;=u*RWcaF`U#n>)weX(utqlJeHYt~T8n(0#- z+ETVmN17?pb(#CfG9fbD(7Y@yNh_D-h91zooq(V>isxBn8vTFg>f@^g`WT|4-J5i) zOt)s|H|P*FfS~?h%JxsKhf_m8xLUH@%ICTJtJFWbK2n<7GqxYx{w)j9)&oY*_<46_xj)F67 zTyHtMZAg*!XZ;vLr}O>tp5t=hM1ekm*t$p&Al=Okd-Ll-im-ah9-=qz%k%5*57Vad zej%rEcir6wzCg46VqH`6aw`1wpyCODFSt@{*o(~?c_7D2Yg2Y$<--kYPmy-vSY*hl zTB7msaX5WdIKZZ-?#AJ+g$|jg1YS=&fvl&d<1E}KPV@87MZyoqZsFfzB>5-8`LD#j ze-eLmG|9=5B C>hE#@ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..767967ef41532ad50d4d8e0d5fbfc14fb5b0b568 GIT binary patch literal 2172 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 eW@;ZZb^ppa9_tT%Z>e;A5TcK-*$rq)XU literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/table.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/table.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97a377674d36ad4ff5cd89d86e5bbac1a7a96d93 GIT binary patch literal 7201 zcmc&ZTWs4_mL&C{L`tGwe#Y@r@gs5kNYXlX-4<@^q;bYc8+Va5(}^LAj3rx^9Fk6K z54BYW#g3F3YZ_CG8BBpuunSa!^uxPYpqanOt|s`fd&c99tsEf36UQW zH7X)NV`4rS;(kEP0fm|Xc~>YSwb?^V-q0ul`gYpof;4F zvw~(7C&H0iqGsg^eUre4VA>*}g=yw!B*tl``M98wbHT;P+`^oI7&pW7XSO#SpW}L2 z?hYSZ4)%V)$7i^ZDD>Wn@Z9u5gynjB?r^a?z0t^2@BES&j>pdS^q=V!A|iJhlsFrl z=7iokkb;fhjZH?xUVb6U36oPuo4sOiD$4cDFKOg7C;kYe;C;Z?2|wX&cqK8FVphA; z-LjaY8kB`!OAn;%d%33m9MzwES9SSTqv@z}F6U}aUfi={4$tafdQhHFYBuSXO>@h0 zAc2L79)#K$QkZU@Mi^bkrm+Oh;t4`5!AO|lO$ifAB+M{tVND6ESoCmYHi>vtG+cs| zK;5&@8Q9c$-g0<*ox5S(V9E?EB z0W@d?K_o1|#frEj%sM<8C;nU6@Rh4ClZQnd4#*?n;6UUR9xd~NhH1FOlhD-gPrFQ- zDayrov^dQgoS)}nY?n>53L+ngO>0)36BeQ(k78LffiG$Hh%hRIg7X}!km!cZ0bgnxz?I7DrI@`6gy$#(c{-jsZ2mvYLc`&}ySlzsOHpZXeh-PP;PHK#J2 zwPx>b2%DX6mvf)f=Vfx& zU#$ez#!`0GMyGD4Z7I|D&T9FNBIKQIDPpe)qg}G;i>|#^%tHTs{NA|Spv`(ZVq^5{ki)?KsSQAnX+VsK7m7>SsD4;%|$B4ET+aFQc3i{~&|)FwG*S`57XuUJM44k0KH!c)W{SbGd- zDT6zXt^CbP;k}i4uqB-Wg|Cl*ag=fStrYie)5> z@JwUSYcP68@ID4Baqjb8k<94aUdgfzpx-jcBcP6h4a=d5J3Jih;8-{dc}B+hZvod3 ztL$6YJz=hxjmoAlgvk>!9(w?XR)0ksdJNw*zL3G;5Rz~bm;@OaxnJRM%DNsE&m{uB z;$>Y4KaRz4Shrv25I&HDEU%V>BuYTije+!)j>Y?D4+J&v|DA)t7Dc=0nXcssTQ;&y z2fVz9Qz4?wM^HE%li&q~^WDLS-nXa3lv(d*FNwfrw&j3q|F;o%gq(KB_{B)~8LgM? zO|XkP{>Ks73M(s%pq0;GIU7Z|`D@rcbcDc-M(5JPOYX z`i-p1#G^BshM(5(AwB?2y{})~c(glf)(~8@I9{{xk?F7qSAFi5$XCP65B~|zN18>y zf@_q1AHTg2hjIX=4^775ZU^l!7i0@A(FNj#4kb>-*(HM$Y6I~iXF_BFjV+<+kOmD@LMY61 zHNi#n-S`6BEbUX#*-J4NT{4{!VKNkFxkAZ-NB0t*MlW`=Pl^^%E3!W|rm1wuvOZVn|ZU6p7^&}=a<25J`WQd%veDIR^J~n@8@ymyqvn zk&Py`7{WB>;C92o7^ zOG=A5syXx8*TWBoH*C4K!5lRRr38{nae7hde9jfv(lG#Obt%21_|ku!d|x$_ss4NK zBS=R6EJwEMJSrf$tJdvncBO621+|HNB)7uk$c}%a9uIE!jUsVun9VJp{n=+<4P_$R z$NCUCs99Ln9cvEd@x(Fq3~DI1m6k6iGo~$PTM+yn&s<>tyep8r_>^?X14{qeP{zCEYg28^DxId~ zkrh{A;>_9`nbs{|pg6JOd||_U)$;T&x|5ex(klnI$QtF1Z`!iA9-Z1c_8O4>1L;&5 z->$!I#~;Y~1Icl9`Gi-Jw@9s%iRN5oA+#ghrwPwaQE{A&AD4kXlo7Mn z^6tL0Wv>p*x7UDyKckf|XU=84c}F)$UDQP)Go9u0jx)*8Qedl;SH7O78dQkd;q<&Kl9ZquVp&(zEeBC{+zEr?>n2aJ!NWO3K;ItjXAne zS=^>O5v&)Qd2eTmd`f%eyUOjg<;=CMnhuDV)ywJ23chlsFu||=G&8kT(^;HY8Q-OS z@=~UMEwM!hRDa$2*xHyPWv_1p^ZxUxQMJ8yqvhe;#)q3H1~wf7p!rJ*Whk%AQdP&5 zMTlc*)8CCW|GlSL{^@s~Hdt~afFx5T2k$SbP3>9dW9#GFzqRK&M>ZSZ zku6`+pfFv4#jH2`Vcy@H8U?G?w`R^~gAa!{Yx@xYJ;DS*`1+fVga0^_A+z{HYNxp` z*W9<=eCBskK*R|sjm-dg#h|vFJ-6Y_`_H9Ep#tg+K=sp8t-G3G{gh=F65UAJnX>Ic zNggzEeVc0d(=8mcd7*%-!@imA*f^7SzYcC$+nl20{rq1@u5u zJ#`QZV=B%3$BPck-}vts4#GFL%9dX`_e{|Kvw+IVPa2x84-h*8?vE*pYRBQ-W!1M* z9#u2-y;U-W5sJ^v#bZ4SVk9aQP8H}-qS5+4 zG{vI}5)|#ubMvsz^P{Ne=3?j^1hw}MBJ-SZt?&nmei+er(BEKsrMXa8w++w5SvY#U z#m@sS`p-jn2VS5g9RF9W^^chS->|;lV{N-kU5Z~_PA@B`@=SZuq56)?XV!<-hLoAS auWJ)?Ket-&*5~d9-239KMFMy0JpKzcZbz^H literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/blockquote.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/blockquote.py new file mode 100644 index 0000000..0c9081b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/blockquote.py @@ -0,0 +1,299 @@ +# Block quotes +from __future__ import annotations + +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def blockquote(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering blockquote: %s, %s, %s, %s", state, startLine, endLine, silent + ) + + oldLineMax = state.lineMax + pos = state.bMarks[startLine] + state.tShift[startLine] + max = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + # check the block quote marker + try: + if state.src[pos] != ">": + return False + except IndexError: + return False + pos += 1 + + # we know that it's going to be a valid blockquote, + # so no point trying to find the end of it in silent mode + if silent: + return True + + # set offset past spaces and ">" + initial = offset = state.sCount[startLine] + 1 + + try: + second_char: str | None = state.src[pos] + except IndexError: + second_char = None + + # skip one optional space after '>' + if second_char == " ": + # ' > test ' + # ^ -- position start of line here: + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + spaceAfterMarker = True + elif second_char == "\t": + spaceAfterMarker = True + + if (state.bsCount[startLine] + offset) % 4 == 3: + # ' >\t test ' + # ^ -- position start of line here (tab has width==1) + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + else: + # ' >\t test ' + # ^ -- position start of line here + shift bsCount slightly + # to make extra space appear + adjustTab = True + + else: + spaceAfterMarker = False + + oldBMarks = [state.bMarks[startLine]] + state.bMarks[startLine] = pos + + while pos < max: + ch = state.src[pos] + + if isStrSpace(ch): + if ch == "\t": + offset += ( + 4 + - (offset + state.bsCount[startLine] + (1 if adjustTab else 0)) % 4 + ) + else: + offset += 1 + + else: + break + + pos += 1 + + oldBSCount = [state.bsCount[startLine]] + state.bsCount[startLine] = ( + state.sCount[startLine] + 1 + (1 if spaceAfterMarker else 0) + ) + + lastLineEmpty = pos >= max + + oldSCount = [state.sCount[startLine]] + state.sCount[startLine] = offset - initial + + oldTShift = [state.tShift[startLine]] + state.tShift[startLine] = pos - state.bMarks[startLine] + + terminatorRules = state.md.block.ruler.getRules("blockquote") + + oldParentType = state.parentType + state.parentType = "blockquote" + + # Search the end of the block + # + # Block ends with either: + # 1. an empty line outside: + # ``` + # > test + # + # ``` + # 2. an empty line inside: + # ``` + # > + # test + # ``` + # 3. another tag: + # ``` + # > test + # - - - + # ``` + + # for (nextLine = startLine + 1; nextLine < endLine; nextLine++) { + nextLine = startLine + 1 + while nextLine < endLine: + # check if it's outdented, i.e. it's inside list item and indented + # less than said list item: + # + # ``` + # 1. anything + # > current blockquote + # 2. checking this line + # ``` + isOutdented = state.sCount[nextLine] < state.blkIndent + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + max = state.eMarks[nextLine] + + if pos >= max: + # Case 1: line is not inside the blockquote, and this line is empty. + break + + evaluatesTrue = state.src[pos] == ">" and not isOutdented + pos += 1 + if evaluatesTrue: + # This line is inside the blockquote. + + # set offset past spaces and ">" + initial = offset = state.sCount[nextLine] + 1 + + try: + next_char: str | None = state.src[pos] + except IndexError: + next_char = None + + # skip one optional space after '>' + if next_char == " ": + # ' > test ' + # ^ -- position start of line here: + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + spaceAfterMarker = True + elif next_char == "\t": + spaceAfterMarker = True + + if (state.bsCount[nextLine] + offset) % 4 == 3: + # ' >\t test ' + # ^ -- position start of line here (tab has width==1) + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + else: + # ' >\t test ' + # ^ -- position start of line here + shift bsCount slightly + # to make extra space appear + adjustTab = True + + else: + spaceAfterMarker = False + + oldBMarks.append(state.bMarks[nextLine]) + state.bMarks[nextLine] = pos + + while pos < max: + ch = state.src[pos] + + if isStrSpace(ch): + if ch == "\t": + offset += ( + 4 + - ( + offset + + state.bsCount[nextLine] + + (1 if adjustTab else 0) + ) + % 4 + ) + else: + offset += 1 + else: + break + + pos += 1 + + lastLineEmpty = pos >= max + + oldBSCount.append(state.bsCount[nextLine]) + state.bsCount[nextLine] = ( + state.sCount[nextLine] + 1 + (1 if spaceAfterMarker else 0) + ) + + oldSCount.append(state.sCount[nextLine]) + state.sCount[nextLine] = offset - initial + + oldTShift.append(state.tShift[nextLine]) + state.tShift[nextLine] = pos - state.bMarks[nextLine] + + nextLine += 1 + continue + + # Case 2: line is not inside the blockquote, and the last line was empty. + if lastLineEmpty: + break + + # Case 3: another tag found. + terminate = False + + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + # Quirk to enforce "hard termination mode" for paragraphs; + # normally if you call `tokenize(state, startLine, nextLine)`, + # paragraphs will look below nextLine for paragraph continuation, + # but if blockquote is terminated by another tag, they shouldn't + state.lineMax = nextLine + + if state.blkIndent != 0: + # state.blkIndent was non-zero, we now set it to zero, + # so we need to re-calculate all offsets to appear as + # if indent wasn't changed + oldBMarks.append(state.bMarks[nextLine]) + oldBSCount.append(state.bsCount[nextLine]) + oldTShift.append(state.tShift[nextLine]) + oldSCount.append(state.sCount[nextLine]) + state.sCount[nextLine] -= state.blkIndent + + break + + oldBMarks.append(state.bMarks[nextLine]) + oldBSCount.append(state.bsCount[nextLine]) + oldTShift.append(state.tShift[nextLine]) + oldSCount.append(state.sCount[nextLine]) + + # A negative indentation means that this is a paragraph continuation + # + state.sCount[nextLine] = -1 + + nextLine += 1 + + oldIndent = state.blkIndent + state.blkIndent = 0 + + token = state.push("blockquote_open", "blockquote", 1) + token.markup = ">" + token.map = lines = [startLine, 0] + + state.md.block.tokenize(state, startLine, nextLine) + + token = state.push("blockquote_close", "blockquote", -1) + token.markup = ">" + + state.lineMax = oldLineMax + state.parentType = oldParentType + lines[1] = state.line + + # Restore original tShift; this might not be necessary since the parser + # has already been here, but just to make sure we can do that. + for i, item in enumerate(oldTShift): + state.bMarks[i + startLine] = oldBMarks[i] + state.tShift[i + startLine] = item + state.sCount[i + startLine] = oldSCount[i] + state.bsCount[i + startLine] = oldBSCount[i] + + state.blkIndent = oldIndent + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/code.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/code.py new file mode 100644 index 0000000..89db9ce --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/code.py @@ -0,0 +1,35 @@ +"""Code block (4 spaces padded).""" +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def code(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering code: %s, %s, %s, %s", state, startLine, endLine, silent) + + if not state.is_code_block(startLine): + return False + + last = nextLine = startLine + 1 + + while nextLine < endLine: + if state.isEmpty(nextLine): + nextLine += 1 + continue + + if state.is_code_block(nextLine): + nextLine += 1 + last = nextLine + continue + + break + + state.line = last + + token = state.push("code_block", "code", 0) + token.content = state.getLines(startLine, last, 4 + state.blkIndent, False) + "\n" + token.map = [startLine, state.line] + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/fence.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/fence.py new file mode 100644 index 0000000..263f1b8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/fence.py @@ -0,0 +1,101 @@ +# fences (``` lang, ~~~ lang) +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def fence(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering fence: %s, %s, %s, %s", state, startLine, endLine, silent) + + haveEndMarker = False + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + if pos + 3 > maximum: + return False + + marker = state.src[pos] + + if marker not in ("~", "`"): + return False + + # scan marker length + mem = pos + pos = state.skipCharsStr(pos, marker) + + length = pos - mem + + if length < 3: + return False + + markup = state.src[mem:pos] + params = state.src[pos:maximum] + + if marker == "`" and marker in params: + return False + + # Since start is found, we can report success here in validation mode + if silent: + return True + + # search end of block + nextLine = startLine + + while True: + nextLine += 1 + if nextLine >= endLine: + # unclosed block should be autoclosed by end of document. + # also block seems to be autoclosed by end of parent + break + + pos = mem = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + + if pos < maximum and state.sCount[nextLine] < state.blkIndent: + # non-empty line with negative indent should stop the list: + # - ``` + # test + break + + try: + if state.src[pos] != marker: + continue + except IndexError: + break + + if state.is_code_block(nextLine): + continue + + pos = state.skipCharsStr(pos, marker) + + # closing code fence must be at least as long as the opening one + if pos - mem < length: + continue + + # make sure tail has spaces only + pos = state.skipSpaces(pos) + + if pos < maximum: + continue + + haveEndMarker = True + # found! + break + + # If a fence has heading spaces, they should be removed from its inner block + length = state.sCount[startLine] + + state.line = nextLine + (1 if haveEndMarker else 0) + + token = state.push("fence", "code", 0) + token.info = params + token.content = state.getLines(startLine + 1, nextLine, length, True) + token.markup = markup + token.map = [startLine, state.line] + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/heading.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/heading.py new file mode 100644 index 0000000..850ffb5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/heading.py @@ -0,0 +1,68 @@ +""" Atex heading (#, ##, ...) """ +from __future__ import annotations + +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def heading(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering heading: %s, %s, %s, %s", state, startLine, endLine, silent) + + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + ch: str | None = state.src[pos] + + if ch != "#" or pos >= maximum: + return False + + # count heading level + level = 1 + pos += 1 + try: + ch = state.src[pos] + except IndexError: + ch = None + while ch == "#" and pos < maximum and level <= 6: + level += 1 + pos += 1 + try: + ch = state.src[pos] + except IndexError: + ch = None + + if level > 6 or (pos < maximum and not isStrSpace(ch)): + return False + + if silent: + return True + + # Let's cut tails like ' ### ' from the end of string + + maximum = state.skipSpacesBack(maximum, pos) + tmp = state.skipCharsStrBack(maximum, "#", pos) + if tmp > pos and isStrSpace(state.src[tmp - 1]): + maximum = tmp + + state.line = startLine + 1 + + token = state.push("heading_open", "h" + str(level), 1) + token.markup = "########"[:level] + token.map = [startLine, state.line] + + token = state.push("inline", "", 0) + token.content = state.src[pos:maximum].strip() + token.map = [startLine, state.line] + token.children = [] + + token = state.push("heading_close", "h" + str(level), -1) + token.markup = "########"[:level] + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/hr.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/hr.py new file mode 100644 index 0000000..16df05f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/hr.py @@ -0,0 +1,55 @@ +"""Horizontal rule + +At least 3 of these characters on a line * - _ +""" +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def hr(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering hr: %s, %s, %s, %s", state, startLine, endLine, silent) + + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + try: + marker = state.src[pos] + except IndexError: + return False + pos += 1 + + # Check hr marker + if marker not in ("*", "-", "_"): + return False + + # markers can be mixed with spaces, but there should be at least 3 of them + + cnt = 1 + while pos < maximum: + ch = state.src[pos] + pos += 1 + if ch != marker and not isStrSpace(ch): + return False + if ch == marker: + cnt += 1 + + if cnt < 3: + return False + + if silent: + return True + + state.line = startLine + 1 + + token = state.push("hr", "hr", 0) + token.map = [startLine, state.line] + token.markup = marker * (cnt + 1) + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/html_block.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/html_block.py new file mode 100644 index 0000000..3d43f6e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/html_block.py @@ -0,0 +1,90 @@ +# HTML block +from __future__ import annotations + +import logging +import re + +from ..common.html_blocks import block_names +from ..common.html_re import HTML_OPEN_CLOSE_TAG_STR +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + +# An array of opening and corresponding closing sequences for html tags, +# last argument defines whether it can terminate a paragraph or not +HTML_SEQUENCES: list[tuple[re.Pattern[str], re.Pattern[str], bool]] = [ + ( + re.compile(r"^<(script|pre|style|textarea)(?=(\s|>|$))", re.IGNORECASE), + re.compile(r"<\/(script|pre|style|textarea)>", re.IGNORECASE), + True, + ), + (re.compile(r"^"), True), + (re.compile(r"^<\?"), re.compile(r"\?>"), True), + (re.compile(r"^"), True), + (re.compile(r"^"), True), + ( + re.compile("^|$))", re.IGNORECASE), + re.compile(r"^$"), + True, + ), + (re.compile(HTML_OPEN_CLOSE_TAG_STR + "\\s*$"), re.compile(r"^$"), False), +] + + +def html_block(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering html_block: %s, %s, %s, %s", state, startLine, endLine, silent + ) + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + if not state.md.options.get("html", None): + return False + + if state.src[pos] != "<": + return False + + lineText = state.src[pos:maximum] + + html_seq = None + for HTML_SEQUENCE in HTML_SEQUENCES: + if HTML_SEQUENCE[0].search(lineText): + html_seq = HTML_SEQUENCE + break + + if not html_seq: + return False + + if silent: + # true if this sequence can be a terminator, false otherwise + return html_seq[2] + + nextLine = startLine + 1 + + # If we are here - we detected HTML block. + # Let's roll down till block end. + if not html_seq[1].search(lineText): + while nextLine < endLine: + if state.sCount[nextLine] < state.blkIndent: + break + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + lineText = state.src[pos:maximum] + + if html_seq[1].search(lineText): + if len(lineText) != 0: + nextLine += 1 + break + nextLine += 1 + + state.line = nextLine + + token = state.push("html_block", "", 0) + token.map = [startLine, nextLine] + token.content = state.getLines(startLine, nextLine, state.blkIndent, True) + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/lheading.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/lheading.py new file mode 100644 index 0000000..3522207 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/lheading.py @@ -0,0 +1,86 @@ +# lheading (---, ==) +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def lheading(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering lheading: %s, %s, %s, %s", state, startLine, endLine, silent) + + level = None + nextLine = startLine + 1 + ruler = state.md.block.ruler + terminatorRules = ruler.getRules("paragraph") + + if state.is_code_block(startLine): + return False + + oldParentType = state.parentType + state.parentType = "paragraph" # use paragraph to match terminatorRules + + # jump line-by-line until empty one or EOF + while nextLine < endLine and not state.isEmpty(nextLine): + # this would be a code block normally, but after paragraph + # it's considered a lazy continuation regardless of what's there + if state.sCount[nextLine] - state.blkIndent > 3: + nextLine += 1 + continue + + # Check for underline in setext header + if state.sCount[nextLine] >= state.blkIndent: + pos = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + + if pos < maximum: + marker = state.src[pos] + + if marker in ("-", "="): + pos = state.skipCharsStr(pos, marker) + pos = state.skipSpaces(pos) + + # /* = */ + if pos >= maximum: + level = 1 if marker == "=" else 2 + break + + # quirk for blockquotes, this line should already be checked by that rule + if state.sCount[nextLine] < 0: + nextLine += 1 + continue + + # Some tags can terminate paragraph without empty line. + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + if terminate: + break + + nextLine += 1 + + if not level: + # Didn't find valid underline + return False + + content = state.getLines(startLine, nextLine, state.blkIndent, False).strip() + + state.line = nextLine + 1 + + token = state.push("heading_open", "h" + str(level), 1) + token.markup = marker + token.map = [startLine, state.line] + + token = state.push("inline", "", 0) + token.content = content + token.map = [startLine, state.line - 1] + token.children = [] + + token = state.push("heading_close", "h" + str(level), -1) + token.markup = marker + + state.parentType = oldParentType + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/list.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/list.py new file mode 100644 index 0000000..d8070d7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/list.py @@ -0,0 +1,345 @@ +# Lists +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +# Search `[-+*][\n ]`, returns next pos after marker on success +# or -1 on fail. +def skipBulletListMarker(state: StateBlock, startLine: int) -> int: + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + try: + marker = state.src[pos] + except IndexError: + return -1 + pos += 1 + + if marker not in ("*", "-", "+"): + return -1 + + if pos < maximum: + ch = state.src[pos] + + if not isStrSpace(ch): + # " -test " - is not a list item + return -1 + + return pos + + +# Search `\d+[.)][\n ]`, returns next pos after marker on success +# or -1 on fail. +def skipOrderedListMarker(state: StateBlock, startLine: int) -> int: + start = state.bMarks[startLine] + state.tShift[startLine] + pos = start + maximum = state.eMarks[startLine] + + # List marker should have at least 2 chars (digit + dot) + if pos + 1 >= maximum: + return -1 + + ch = state.src[pos] + pos += 1 + + ch_ord = ord(ch) + # /* 0 */ /* 9 */ + if ch_ord < 0x30 or ch_ord > 0x39: + return -1 + + while True: + # EOL -> fail + if pos >= maximum: + return -1 + + ch = state.src[pos] + pos += 1 + + # /* 0 */ /* 9 */ + ch_ord = ord(ch) + if ch_ord >= 0x30 and ch_ord <= 0x39: + # List marker should have no more than 9 digits + # (prevents integer overflow in browsers) + if pos - start >= 10: + return -1 + + continue + + # found valid marker + if ch in (")", "."): + break + + return -1 + + if pos < maximum: + ch = state.src[pos] + + if not isStrSpace(ch): + # " 1.test " - is not a list item + return -1 + + return pos + + +def markTightParagraphs(state: StateBlock, idx: int) -> None: + level = state.level + 2 + + i = idx + 2 + length = len(state.tokens) - 2 + while i < length: + if state.tokens[i].level == level and state.tokens[i].type == "paragraph_open": + state.tokens[i + 2].hidden = True + state.tokens[i].hidden = True + i += 2 + i += 1 + + +def list_block(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering list: %s, %s, %s, %s", state, startLine, endLine, silent) + + isTerminatingParagraph = False + tight = True + + if state.is_code_block(startLine): + return False + + # Special case: + # - item 1 + # - item 2 + # - item 3 + # - item 4 + # - this one is a paragraph continuation + if ( + state.listIndent >= 0 + and state.sCount[startLine] - state.listIndent >= 4 + and state.sCount[startLine] < state.blkIndent + ): + return False + + # limit conditions when list can interrupt + # a paragraph (validation mode only) + # Next list item should still terminate previous list item + # + # This code can fail if plugins use blkIndent as well as lists, + # but I hope the spec gets fixed long before that happens. + # + if ( + silent + and state.parentType == "paragraph" + and state.sCount[startLine] >= state.blkIndent + ): + isTerminatingParagraph = True + + # Detect list type and position after marker + posAfterMarker = skipOrderedListMarker(state, startLine) + if posAfterMarker >= 0: + isOrdered = True + start = state.bMarks[startLine] + state.tShift[startLine] + markerValue = int(state.src[start : posAfterMarker - 1]) + + # If we're starting a new ordered list right after + # a paragraph, it should start with 1. + if isTerminatingParagraph and markerValue != 1: + return False + else: + posAfterMarker = skipBulletListMarker(state, startLine) + if posAfterMarker >= 0: + isOrdered = False + else: + return False + + # If we're starting a new unordered list right after + # a paragraph, first line should not be empty. + if ( + isTerminatingParagraph + and state.skipSpaces(posAfterMarker) >= state.eMarks[startLine] + ): + return False + + # We should terminate list on style change. Remember first one to compare. + markerChar = state.src[posAfterMarker - 1] + + # For validation mode we can terminate immediately + if silent: + return True + + # Start list + listTokIdx = len(state.tokens) + + if isOrdered: + token = state.push("ordered_list_open", "ol", 1) + if markerValue != 1: + token.attrs = {"start": markerValue} + + else: + token = state.push("bullet_list_open", "ul", 1) + + token.map = listLines = [startLine, 0] + token.markup = markerChar + + # + # Iterate list items + # + + nextLine = startLine + prevEmptyEnd = False + terminatorRules = state.md.block.ruler.getRules("list") + + oldParentType = state.parentType + state.parentType = "list" + + while nextLine < endLine: + pos = posAfterMarker + maximum = state.eMarks[nextLine] + + initial = offset = ( + state.sCount[nextLine] + + posAfterMarker + - (state.bMarks[startLine] + state.tShift[startLine]) + ) + + while pos < maximum: + ch = state.src[pos] + + if ch == "\t": + offset += 4 - (offset + state.bsCount[nextLine]) % 4 + elif ch == " ": + offset += 1 + else: + break + + pos += 1 + + contentStart = pos + + # trimming space in "- \n 3" case, indent is 1 here + indentAfterMarker = 1 if contentStart >= maximum else offset - initial + + # If we have more than 4 spaces, the indent is 1 + # (the rest is just indented code block) + if indentAfterMarker > 4: + indentAfterMarker = 1 + + # " - test" + # ^^^^^ - calculating total length of this thing + indent = initial + indentAfterMarker + + # Run subparser & write tokens + token = state.push("list_item_open", "li", 1) + token.markup = markerChar + token.map = itemLines = [startLine, 0] + if isOrdered: + token.info = state.src[start : posAfterMarker - 1] + + # change current state, then restore it after parser subcall + oldTight = state.tight + oldTShift = state.tShift[startLine] + oldSCount = state.sCount[startLine] + + # - example list + # ^ listIndent position will be here + # ^ blkIndent position will be here + # + oldListIndent = state.listIndent + state.listIndent = state.blkIndent + state.blkIndent = indent + + state.tight = True + state.tShift[startLine] = contentStart - state.bMarks[startLine] + state.sCount[startLine] = offset + + if contentStart >= maximum and state.isEmpty(startLine + 1): + # workaround for this case + # (list item is empty, list terminates before "foo"): + # ~~~~~~~~ + # - + # + # foo + # ~~~~~~~~ + state.line = min(state.line + 2, endLine) + else: + # NOTE in list.js this was: + # state.md.block.tokenize(state, startLine, endLine, True) + # but tokeniz does not take the final parameter + state.md.block.tokenize(state, startLine, endLine) + + # If any of list item is tight, mark list as tight + if (not state.tight) or prevEmptyEnd: + tight = False + + # Item become loose if finish with empty line, + # but we should filter last element, because it means list finish + prevEmptyEnd = (state.line - startLine) > 1 and state.isEmpty(state.line - 1) + + state.blkIndent = state.listIndent + state.listIndent = oldListIndent + state.tShift[startLine] = oldTShift + state.sCount[startLine] = oldSCount + state.tight = oldTight + + token = state.push("list_item_close", "li", -1) + token.markup = markerChar + + nextLine = startLine = state.line + itemLines[1] = nextLine + + if nextLine >= endLine: + break + + contentStart = state.bMarks[startLine] + + # + # Try to check if list is terminated or continued. + # + if state.sCount[nextLine] < state.blkIndent: + break + + if state.is_code_block(startLine): + break + + # fail if terminating block found + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + + # fail if list has another type + if isOrdered: + posAfterMarker = skipOrderedListMarker(state, nextLine) + if posAfterMarker < 0: + break + start = state.bMarks[nextLine] + state.tShift[nextLine] + else: + posAfterMarker = skipBulletListMarker(state, nextLine) + if posAfterMarker < 0: + break + + if markerChar != state.src[posAfterMarker - 1]: + break + + # Finalize list + if isOrdered: + token = state.push("ordered_list_close", "ol", -1) + else: + token = state.push("bullet_list_close", "ul", -1) + + token.markup = markerChar + + listLines[1] = nextLine + state.line = nextLine + + state.parentType = oldParentType + + # mark paragraphs tight if needed + if tight: + markTightParagraphs(state, listTokIdx) + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/paragraph.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/paragraph.py new file mode 100644 index 0000000..5388a4b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/paragraph.py @@ -0,0 +1,65 @@ +"""Paragraph.""" +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def paragraph(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering paragraph: %s, %s, %s, %s", state, startLine, endLine, silent + ) + + nextLine = startLine + 1 + ruler = state.md.block.ruler + terminatorRules = ruler.getRules("paragraph") + endLine = state.lineMax + + oldParentType = state.parentType + state.parentType = "paragraph" + + # jump line-by-line until empty one or EOF + while nextLine < endLine: + if state.isEmpty(nextLine): + break + # this would be a code block normally, but after paragraph + # it's considered a lazy continuation regardless of what's there + if state.sCount[nextLine] - state.blkIndent > 3: + nextLine += 1 + continue + + # quirk for blockquotes, this line should already be checked by that rule + if state.sCount[nextLine] < 0: + nextLine += 1 + continue + + # Some tags can terminate paragraph without empty line. + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + + nextLine += 1 + + content = state.getLines(startLine, nextLine, state.blkIndent, False).strip() + + state.line = nextLine + + token = state.push("paragraph_open", "p", 1) + token.map = [startLine, state.line] + + token = state.push("inline", "", 0) + token.content = content + token.map = [startLine, state.line] + token.children = [] + + token = state.push("paragraph_close", "p", -1) + + state.parentType = oldParentType + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/reference.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/reference.py new file mode 100644 index 0000000..b77944b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/reference.py @@ -0,0 +1,215 @@ +import logging + +from ..common.utils import charCodeAt, isSpace, normalizeReference +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def reference(state: StateBlock, startLine: int, _endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering reference: %s, %s, %s, %s", state, startLine, _endLine, silent + ) + + lines = 0 + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + nextLine = startLine + 1 + + if state.is_code_block(startLine): + return False + + if state.src[pos] != "[": + return False + + # Simple check to quickly interrupt scan on [link](url) at the start of line. + # Can be useful on practice: https:#github.com/markdown-it/markdown-it/issues/54 + while pos < maximum: + # /* ] */ /* \ */ /* : */ + if state.src[pos] == "]" and state.src[pos - 1] != "\\": + if pos + 1 == maximum: + return False + if state.src[pos + 1] != ":": + return False + break + pos += 1 + + endLine = state.lineMax + + # jump line-by-line until empty one or EOF + terminatorRules = state.md.block.ruler.getRules("reference") + + oldParentType = state.parentType + state.parentType = "reference" + + while nextLine < endLine and not state.isEmpty(nextLine): + # this would be a code block normally, but after paragraph + # it's considered a lazy continuation regardless of what's there + if state.sCount[nextLine] - state.blkIndent > 3: + nextLine += 1 + continue + + # quirk for blockquotes, this line should already be checked by that rule + if state.sCount[nextLine] < 0: + nextLine += 1 + continue + + # Some tags can terminate paragraph without empty line. + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + + nextLine += 1 + + string = state.getLines(startLine, nextLine, state.blkIndent, False).strip() + maximum = len(string) + + labelEnd = None + pos = 1 + while pos < maximum: + ch = charCodeAt(string, pos) + if ch == 0x5B: # /* [ */ + return False + elif ch == 0x5D: # /* ] */ + labelEnd = pos + break + elif ch == 0x0A: # /* \n */ + lines += 1 + elif ch == 0x5C: # /* \ */ + pos += 1 + if pos < maximum and charCodeAt(string, pos) == 0x0A: + lines += 1 + pos += 1 + + if ( + labelEnd is None or labelEnd < 0 or charCodeAt(string, labelEnd + 1) != 0x3A + ): # /* : */ + return False + + # [label]: destination 'title' + # ^^^ skip optional whitespace here + pos = labelEnd + 2 + while pos < maximum: + ch = charCodeAt(string, pos) + if ch == 0x0A: + lines += 1 + elif isSpace(ch): + pass + else: + break + pos += 1 + + # [label]: destination 'title' + # ^^^^^^^^^^^ parse this + res = state.md.helpers.parseLinkDestination(string, pos, maximum) + if not res.ok: + return False + + href = state.md.normalizeLink(res.str) + if not state.md.validateLink(href): + return False + + pos = res.pos + lines += res.lines + + # save cursor state, we could require to rollback later + destEndPos = pos + destEndLineNo = lines + + # [label]: destination 'title' + # ^^^ skipping those spaces + start = pos + while pos < maximum: + ch = charCodeAt(string, pos) + if ch == 0x0A: + lines += 1 + elif isSpace(ch): + pass + else: + break + pos += 1 + + # [label]: destination 'title' + # ^^^^^^^ parse this + res = state.md.helpers.parseLinkTitle(string, pos, maximum) + if pos < maximum and start != pos and res.ok: + title = res.str + pos = res.pos + lines += res.lines + else: + title = "" + pos = destEndPos + lines = destEndLineNo + + # skip trailing spaces until the rest of the line + while pos < maximum: + ch = charCodeAt(string, pos) + if not isSpace(ch): + break + pos += 1 + + if pos < maximum and charCodeAt(string, pos) != 0x0A and title: + # garbage at the end of the line after title, + # but it could still be a valid reference if we roll back + title = "" + pos = destEndPos + lines = destEndLineNo + while pos < maximum: + ch = charCodeAt(string, pos) + if not isSpace(ch): + break + pos += 1 + + if pos < maximum and charCodeAt(string, pos) != 0x0A: + # garbage at the end of the line + return False + + label = normalizeReference(string[1:labelEnd]) + if not label: + # CommonMark 0.20 disallows empty labels + return False + + # Reference can not terminate anything. This check is for safety only. + if silent: + return True + + if "references" not in state.env: + state.env["references"] = {} + + state.line = startLine + lines + 1 + + # note, this is not part of markdown-it JS, but is useful for renderers + if state.md.options.get("inline_definitions", False): + token = state.push("definition", "", 0) + token.meta = { + "id": label, + "title": title, + "url": href, + "label": string[1:labelEnd], + } + token.map = [startLine, state.line] + + if label not in state.env["references"]: + state.env["references"][label] = { + "title": title, + "href": href, + "map": [startLine, state.line], + } + else: + state.env.setdefault("duplicate_refs", []).append( + { + "title": title, + "href": href, + "label": label, + "map": [startLine, state.line], + } + ) + + state.parentType = oldParentType + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/state_block.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/state_block.py new file mode 100644 index 0000000..445ad26 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/state_block.py @@ -0,0 +1,261 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, Literal + +from ..common.utils import isStrSpace +from ..ruler import StateBase +from ..token import Token +from ..utils import EnvType + +if TYPE_CHECKING: + from markdown_it.main import MarkdownIt + + +class StateBlock(StateBase): + def __init__( + self, src: str, md: MarkdownIt, env: EnvType, tokens: list[Token] + ) -> None: + self.src = src + + # link to parser instance + self.md = md + + self.env = env + + # + # Internal state variables + # + + self.tokens = tokens + + self.bMarks: list[int] = [] # line begin offsets for fast jumps + self.eMarks: list[int] = [] # line end offsets for fast jumps + # offsets of the first non-space characters (tabs not expanded) + self.tShift: list[int] = [] + self.sCount: list[int] = [] # indents for each line (tabs expanded) + + # An amount of virtual spaces (tabs expanded) between beginning + # of each line (bMarks) and real beginning of that line. + # + # It exists only as a hack because blockquotes override bMarks + # losing information in the process. + # + # It's used only when expanding tabs, you can think about it as + # an initial tab length, e.g. bsCount=21 applied to string `\t123` + # means first tab should be expanded to 4-21%4 === 3 spaces. + # + self.bsCount: list[int] = [] + + # block parser variables + self.blkIndent = 0 # required block content indent (for example, if we are + # inside a list, it would be positioned after list marker) + self.line = 0 # line index in src + self.lineMax = 0 # lines count + self.tight = False # loose/tight mode for lists + self.ddIndent = -1 # indent of the current dd block (-1 if there isn't any) + self.listIndent = -1 # indent of the current list block (-1 if there isn't any) + + # can be 'blockquote', 'list', 'root', 'paragraph' or 'reference' + # used in lists to determine if they interrupt a paragraph + self.parentType = "root" + + self.level = 0 + + # renderer + self.result = "" + + # Create caches + # Generate markers. + indent_found = False + + start = pos = indent = offset = 0 + length = len(self.src) + + for pos, character in enumerate(self.src): + if not indent_found: + if isStrSpace(character): + indent += 1 + + if character == "\t": + offset += 4 - offset % 4 + else: + offset += 1 + continue + else: + indent_found = True + + if character == "\n" or pos == length - 1: + if character != "\n": + pos += 1 + self.bMarks.append(start) + self.eMarks.append(pos) + self.tShift.append(indent) + self.sCount.append(offset) + self.bsCount.append(0) + + indent_found = False + indent = 0 + offset = 0 + start = pos + 1 + + # Push fake entry to simplify cache bounds checks + self.bMarks.append(length) + self.eMarks.append(length) + self.tShift.append(0) + self.sCount.append(0) + self.bsCount.append(0) + + self.lineMax = len(self.bMarks) - 1 # don't count last fake line + + # pre-check if code blocks are enabled, to speed up is_code_block method + self._code_enabled = "code" in self.md["block"].ruler.get_active_rules() + + def __repr__(self) -> str: + return ( + f"{self.__class__.__name__}" + f"(line={self.line},level={self.level},tokens={len(self.tokens)})" + ) + + def push(self, ttype: str, tag: str, nesting: Literal[-1, 0, 1]) -> Token: + """Push new token to "stream".""" + token = Token(ttype, tag, nesting) + token.block = True + if nesting < 0: + self.level -= 1 # closing tag + token.level = self.level + if nesting > 0: + self.level += 1 # opening tag + self.tokens.append(token) + return token + + def isEmpty(self, line: int) -> bool: + """.""" + return (self.bMarks[line] + self.tShift[line]) >= self.eMarks[line] + + def skipEmptyLines(self, from_pos: int) -> int: + """.""" + while from_pos < self.lineMax: + try: + if (self.bMarks[from_pos] + self.tShift[from_pos]) < self.eMarks[ + from_pos + ]: + break + except IndexError: + pass + from_pos += 1 + return from_pos + + def skipSpaces(self, pos: int) -> int: + """Skip spaces from given position.""" + while True: + try: + current = self.src[pos] + except IndexError: + break + if not isStrSpace(current): + break + pos += 1 + return pos + + def skipSpacesBack(self, pos: int, minimum: int) -> int: + """Skip spaces from given position in reverse.""" + if pos <= minimum: + return pos + while pos > minimum: + pos -= 1 + if not isStrSpace(self.src[pos]): + return pos + 1 + return pos + + def skipChars(self, pos: int, code: int) -> int: + """Skip character code from given position.""" + while True: + try: + current = self.srcCharCode[pos] + except IndexError: + break + if current != code: + break + pos += 1 + return pos + + def skipCharsStr(self, pos: int, ch: str) -> int: + """Skip character string from given position.""" + while True: + try: + current = self.src[pos] + except IndexError: + break + if current != ch: + break + pos += 1 + return pos + + def skipCharsBack(self, pos: int, code: int, minimum: int) -> int: + """Skip character code reverse from given position - 1.""" + if pos <= minimum: + return pos + while pos > minimum: + pos -= 1 + if code != self.srcCharCode[pos]: + return pos + 1 + return pos + + def skipCharsStrBack(self, pos: int, ch: str, minimum: int) -> int: + """Skip character string reverse from given position - 1.""" + if pos <= minimum: + return pos + while pos > minimum: + pos -= 1 + if ch != self.src[pos]: + return pos + 1 + return pos + + def getLines(self, begin: int, end: int, indent: int, keepLastLF: bool) -> str: + """Cut lines range from source.""" + line = begin + if begin >= end: + return "" + + queue = [""] * (end - begin) + + i = 1 + while line < end: + lineIndent = 0 + lineStart = first = self.bMarks[line] + last = ( + self.eMarks[line] + 1 + if line + 1 < end or keepLastLF + else self.eMarks[line] + ) + + while (first < last) and (lineIndent < indent): + ch = self.src[first] + if isStrSpace(ch): + if ch == "\t": + lineIndent += 4 - (lineIndent + self.bsCount[line]) % 4 + else: + lineIndent += 1 + elif first - lineStart < self.tShift[line]: + lineIndent += 1 + else: + break + first += 1 + + if lineIndent > indent: + # partially expanding tabs in code blocks, e.g '\t\tfoobar' + # with indent=2 becomes ' \tfoobar' + queue[i - 1] = (" " * (lineIndent - indent)) + self.src[first:last] + else: + queue[i - 1] = self.src[first:last] + + line += 1 + i += 1 + + return "".join(queue) + + def is_code_block(self, line: int) -> bool: + """Check if line is a code block, + i.e. the code block rule is enabled and text is indented by more than 3 spaces. + """ + return self._code_enabled and (self.sCount[line] - self.blkIndent) >= 4 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/table.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/table.py new file mode 100644 index 0000000..4b666c1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/table.py @@ -0,0 +1,236 @@ +# GFM table, https://github.github.com/gfm/#tables-extension- +from __future__ import annotations + +import re + +from ..common.utils import charStrAt, isStrSpace +from .state_block import StateBlock + +headerLineRe = re.compile(r"^:?-+:?$") +enclosingPipesRe = re.compile(r"^\||\|$") + + +def getLine(state: StateBlock, line: int) -> str: + pos = state.bMarks[line] + state.tShift[line] + maximum = state.eMarks[line] + + # return state.src.substr(pos, max - pos) + return state.src[pos:maximum] + + +def escapedSplit(string: str) -> list[str]: + result: list[str] = [] + pos = 0 + max = len(string) + isEscaped = False + lastPos = 0 + current = "" + ch = charStrAt(string, pos) + + while pos < max: + if ch == "|": + if not isEscaped: + # pipe separating cells, '|' + result.append(current + string[lastPos:pos]) + current = "" + lastPos = pos + 1 + else: + # escaped pipe, '\|' + current += string[lastPos : pos - 1] + lastPos = pos + + isEscaped = ch == "\\" + pos += 1 + + ch = charStrAt(string, pos) + + result.append(current + string[lastPos:]) + + return result + + +def table(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + tbodyLines = None + + # should have at least two lines + if startLine + 2 > endLine: + return False + + nextLine = startLine + 1 + + if state.sCount[nextLine] < state.blkIndent: + return False + + if state.is_code_block(nextLine): + return False + + # first character of the second line should be '|', '-', ':', + # and no other characters are allowed but spaces; + # basically, this is the equivalent of /^[-:|][-:|\s]*$/ regexp + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + if pos >= state.eMarks[nextLine]: + return False + first_ch = state.src[pos] + pos += 1 + if first_ch not in ("|", "-", ":"): + return False + + if pos >= state.eMarks[nextLine]: + return False + second_ch = state.src[pos] + pos += 1 + if second_ch not in ("|", "-", ":") and not isStrSpace(second_ch): + return False + + # if first character is '-', then second character must not be a space + # (due to parsing ambiguity with list) + if first_ch == "-" and isStrSpace(second_ch): + return False + + while pos < state.eMarks[nextLine]: + ch = state.src[pos] + + if ch not in ("|", "-", ":") and not isStrSpace(ch): + return False + + pos += 1 + + lineText = getLine(state, startLine + 1) + + columns = lineText.split("|") + aligns = [] + for i in range(len(columns)): + t = columns[i].strip() + if not t: + # allow empty columns before and after table, but not in between columns; + # e.g. allow ` |---| `, disallow ` ---||--- ` + if i == 0 or i == len(columns) - 1: + continue + else: + return False + + if not headerLineRe.search(t): + return False + if charStrAt(t, len(t) - 1) == ":": + aligns.append("center" if charStrAt(t, 0) == ":" else "right") + elif charStrAt(t, 0) == ":": + aligns.append("left") + else: + aligns.append("") + + lineText = getLine(state, startLine).strip() + if "|" not in lineText: + return False + if state.is_code_block(startLine): + return False + columns = escapedSplit(lineText) + if columns and columns[0] == "": + columns.pop(0) + if columns and columns[-1] == "": + columns.pop() + + # header row will define an amount of columns in the entire table, + # and align row should be exactly the same (the rest of the rows can differ) + columnCount = len(columns) + if columnCount == 0 or columnCount != len(aligns): + return False + + if silent: + return True + + oldParentType = state.parentType + state.parentType = "table" + + # use 'blockquote' lists for termination because it's + # the most similar to tables + terminatorRules = state.md.block.ruler.getRules("blockquote") + + token = state.push("table_open", "table", 1) + token.map = tableLines = [startLine, 0] + + token = state.push("thead_open", "thead", 1) + token.map = [startLine, startLine + 1] + + token = state.push("tr_open", "tr", 1) + token.map = [startLine, startLine + 1] + + for i in range(len(columns)): + token = state.push("th_open", "th", 1) + if aligns[i]: + token.attrs = {"style": "text-align:" + aligns[i]} + + token = state.push("inline", "", 0) + # note in markdown-it this map was removed in v12.0.0 however, we keep it, + # since it is helpful to propagate to children tokens + token.map = [startLine, startLine + 1] + token.content = columns[i].strip() + token.children = [] + + token = state.push("th_close", "th", -1) + + token = state.push("tr_close", "tr", -1) + token = state.push("thead_close", "thead", -1) + + nextLine = startLine + 2 + while nextLine < endLine: + if state.sCount[nextLine] < state.blkIndent: + break + + terminate = False + for i in range(len(terminatorRules)): + if terminatorRules[i](state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + lineText = getLine(state, nextLine).strip() + if not lineText: + break + if state.is_code_block(nextLine): + break + columns = escapedSplit(lineText) + if columns and columns[0] == "": + columns.pop(0) + if columns and columns[-1] == "": + columns.pop() + + if nextLine == startLine + 2: + token = state.push("tbody_open", "tbody", 1) + token.map = tbodyLines = [startLine + 2, 0] + + token = state.push("tr_open", "tr", 1) + token.map = [nextLine, nextLine + 1] + + for i in range(columnCount): + token = state.push("td_open", "td", 1) + if aligns[i]: + token.attrs = {"style": "text-align:" + aligns[i]} + + token = state.push("inline", "", 0) + # note in markdown-it this map was removed in v12.0.0 however, we keep it, + # since it is helpful to propagate to children tokens + token.map = [nextLine, nextLine + 1] + try: + token.content = columns[i].strip() if columns[i] else "" + except IndexError: + token.content = "" + token.children = [] + + token = state.push("td_close", "td", -1) + + token = state.push("tr_close", "tr", -1) + + nextLine += 1 + + if tbodyLines: + token = state.push("tbody_close", "tbody", -1) + tbodyLines[1] = nextLine + + token = state.push("table_close", "table", -1) + + tableLines[1] = nextLine + state.parentType = oldParentType + state.line = nextLine + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__init__.py new file mode 100644 index 0000000..c9c5368 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__init__.py @@ -0,0 +1,19 @@ +__all__ = ( + "StateCore", + "normalize", + "block", + "inline", + "replace", + "smartquotes", + "linkify", + "text_join", +) + +from .block import block +from .inline import inline +from .linkify import linkify +from .normalize import normalize +from .replacements import replace +from .smartquotes import smartquotes +from .state_core import StateCore +from .text_join import text_join diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52935e1d777bede7e4326a099c8dc23bce24baf2 GIT binary patch literal 546 zcmXw#KZ_JG7{-&C*~!eThu8>;#R(#8;Rdx8o9jieP|}3lOm;W7`Lib3)xFC4u=g|g zS^Nfpv9Yo{IBcv;GUr?5`Gq&{lRWuxa?*iV@4tRnUqJwVrOp2;ZsBGV;TsqL0RtQg z2^Ay|CN5>63Q}aQWT{G0W}eAPRiw&X%bBW4of%1_5J8z6*{GJZnOoVZj&u+lyTyFb zg!Y|ho}U@ZL#vHdOo~e$X6MrM+fWNFh2{ZSzLTuyVeS;O{^Q-lF- zFO1N?V=%CQwwh!%Ni#_~Nj(XgBqfgnZIm~Qc|ephDJjhkHqF~KZPRSHbNdX%wRbl8 z*yIvAmom^khOo&myL|^Y5y9UT-WbL4zz>#PGW^z>3*LK&SHkl3UJM*B4_qIx6z6z% z^c$mJE}y@^PI&%o$NDW>bBANDm=D($z8q-Q!2FZlrDG2(7aM+h^^Q5Uc5H_ rgL@j6>k>kEU9|J!3;J^(zy~9EID$tbI32;`5j=_OPjG7Q#-slLjHQdW literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/block.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/block.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4746951c16a0d7e42b8f80de0dcf063a024d2502 GIT binary patch literal 978 zcmZ`%ziSjh6rQ=g-J1({F^KtbBtjx6ENB+B6+uLch#{as69QqgGr8Nl{l)AgauUJ9 zB7s2C4mOOrttA=JT}hCO@5T8YVf)L5Yc_ z{xoc`;0QV^ulPjRg53`}lX|SEG&mCrJQ#OWMrsBS4Zf2Jh;E=IR8M#QK|Ur_PGS@* zJ-Z$M6^4pbdzu2cglDq~jpnO4h@9nB)xMslLx)nzGpt|8c*>UWZbv&tO{KLb-N~?i zG2T|v4F~)Po+NRg-%22kZjRiDu##uI94t6nMK(mw_n=U1P|-X5wSJza#me%DYHfwq1f`=IV)<4S{U3Oy?M)u zUBPZdw$reyEVg``H)!}Gn01B47d#fvIxtvPB4IRY@=I`5vZzOm1uU;oyHGkP^nWY# z|LEymuWjeH?|tvNwyd`YE^ie#i_7|Ix!v2>!s`!#7Tc9UfbKRaua#Cx2V`)M47MKZ zlPfgx4#_NMTF- IPB3Zl7kod-%>V!Z literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2498ecfbf14e1261f86066550236bfc442d06687 GIT binary patch literal 817 zcmZuvO=uHA6n?XRNt;dEXq6mFNsxkjNEQ_jE#gImp4x)=SCFvoOq0#eZkXMqq{PyL z2LplhP>9ER67ixZ^`xFWcu_@vy-@Ny}c^|XyLp(kU+-|jR z=dU4vAL1}JWdsH(4!VE=qcT*`HbQ_Ug0PI09R;folx?Y@7}`(H2LrL0>wy)JD;_0G z^#x=aB|(k48@A{eTZ99de*>LoyU>K7?sWf_^5r7*T-rn z+72RlXrkOdCZC~Alt-`_osx_FpW`$1DcPxa@=0@3dZ(&9uwg`*7I-D%`b-HLRl=fn!6{=(Tqad86)(!vs-Uun?YRMQ111xIW1hHj!mqYok;E5E}S^8W&WRIM=p literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/linkify.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/linkify.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d62408dbbf2ab353ece03ef1bedad5547a98ea41 GIT binary patch literal 5304 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f2feb2f542ef5a87e1fa92e53016f05c3530285 GIT binary patch literal 6150 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/state_core.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/state_core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a376ec1c38971ed358a00863f97797d2e956bc45 GIT binary patch literal 1088 zcmZ8fOKTHR6h3zzNoJ;LYabS07%UW0F@w63;=)pEk%m$W>WBIPyf{u$FAb8IBQ0+|-&k>%AFV7uUaPO3VyeQ( zc!C!6fyXHleJk0aF@oYs+}-N6#hbbAu^m5o8?U8}JW4KyA<5Yy@ZTX6kOz65$E@|y`4nV_Gy=SyPmzllGn76a=RHY+Uf*8wQF6BV28mgyWLB-llX4! z_8prCDZSP98arN#ayuIK)(ujdbwbMB2DZiKVkQ#S+P$pgx1b*Ouj0}4Makx?pO!vvBD9V!U*Fe0Oq`)P&c0qXWsTU9l;wpQ zsK~1=2_#D1oeBeMT5Y|YDM)M^UdoUP-g~fqo>6P#0$$^gdpaA8$K~bO*jL!}XflRnC zFRjqt96vAPTkcr+tXIn-jb;Z^#59=L2pn{;9mFjr79!I{uNf;yEH{7^CGMm_$eE}; zv;LV4lYNo-UPayC8nV(-UhRE0j|#D$d;!HkC4?NqjT5Mxz_nwzbPQL1sFTOq!g*ng MR6ZKN059q150iTYP5=M^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/text_join.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/text_join.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df719b687dbdd9ad58b1fa856fd743127301fb64 GIT binary patch literal 1461 zcmah|&2Jk;6rWkI*Us8WR$yB4K{}B|5;rB=6lf$wdjQk}ND+ugAPcnF>`v@;*0bB0 z*(8o!i35ima-b4Yix6tK6>&lQ8=P!WY*s?5ggE4uDsbTfZ`Vl(RS-|RGw<^^Z{BqOQm;Z#Txtfze9pzAAjPZ0P7 zmBbdr1}3z*Ex|YPDFBd=2b-QtiOon5h5?rm^JI&x2b_d{RP&h7!HY+1a3rUpZ#%R} znFP3XN%=tEfW)qlwMddR3bB+>;n*Q1iGD%XZvhDWwS{H zWS+vhgS$X3v>7zK1^pl?S_Q`io3TLJ(hHb4NGb`s>`HR|13Zw1-Ul;%6OMKg%?V|J z$smM})C4@NMd$xw|DBuJAeVVqh zfKJvDqyUgI?aaAInT%DHMgW1Z&uAHHhpyVO?rt8K;2j=_=VVh;SuCqCP_p*@`) zLU6`8+MQv99L0hv4QS75D~+KO>7Tuw`Sv(ljP`D;s0~%HPAj$dKt(NF(RNn;J)_AW z9nXTGwj zmu_-<$2Q;PL4!I{nCl*=wFsV(xv)vurs;cYX4sPTfW5r1c+C`^q%VcGvtie$Fq<~t zaDy#odD2W?p|Bj7S~I;@`dq?RJaj7Yi*Wb|{Nj69K0${X8k>4h{G#~vdtZ+37W;*Z zy~1RtFu9-a7UufJ64=Wx?&|%C+1|v}&cxO3#P#pqfMxfc{^)pb^ipT^(*Div=wiQI z`K<7xK^_|uJ%e-%vVW^iN<)h|um=XaNTrP)qt_TlwzY4Nc!e*fCtk)AQrHD(^p z_b%V)z-Qd}$(R9C&zSBQ)BE#}jD^GJ(B#tL1vEXsTYQv%;Yk^d%^gA3Xt|>DXJF?! zSYnM+8F3b?%K@X6e4Mi^H*hQ~)-7v20u!|?o{VFhO&i0LM;z;E%hFn4f4v#FP|%y4fSAmx7>DIBgE4-hXjuJY1mW^;XzUj>{kvAe^J(ngNxg-Z literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/block.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/block.py new file mode 100644 index 0000000..a6c3bb8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/block.py @@ -0,0 +1,13 @@ +from ..token import Token +from .state_core import StateCore + + +def block(state: StateCore) -> None: + if state.inlineMode: + token = Token("inline", "", 0) + token.content = state.src + token.map = [0, 1] + token.children = [] + state.tokens.append(token) + else: + state.md.block.parse(state.src, state.md, state.env, state.tokens) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/inline.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/inline.py new file mode 100644 index 0000000..c3fd0b5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/inline.py @@ -0,0 +1,10 @@ +from .state_core import StateCore + + +def inline(state: StateCore) -> None: + """Parse inlines""" + for token in state.tokens: + if token.type == "inline": + if token.children is None: + token.children = [] + state.md.inline.parse(token.content, state.md, state.env, token.children) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/linkify.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/linkify.py new file mode 100644 index 0000000..efbc9d4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/linkify.py @@ -0,0 +1,149 @@ +from __future__ import annotations + +import re +from typing import Protocol + +from ..common.utils import arrayReplaceAt, isLinkClose, isLinkOpen +from ..token import Token +from .state_core import StateCore + +HTTP_RE = re.compile(r"^http://") +MAILTO_RE = re.compile(r"^mailto:") +TEST_MAILTO_RE = re.compile(r"^mailto:", flags=re.IGNORECASE) + + +def linkify(state: StateCore) -> None: + """Rule for identifying plain-text links.""" + if not state.md.options.linkify: + return + + if not state.md.linkify: + raise ModuleNotFoundError("Linkify enabled but not installed.") + + for inline_token in state.tokens: + if inline_token.type != "inline" or not state.md.linkify.pretest( + inline_token.content + ): + continue + + tokens = inline_token.children + + htmlLinkLevel = 0 + + # We scan from the end, to keep position when new tags added. + # Use reversed logic in links start/end match + assert tokens is not None + i = len(tokens) + while i >= 1: + i -= 1 + assert isinstance(tokens, list) + currentToken = tokens[i] + + # Skip content of markdown links + if currentToken.type == "link_close": + i -= 1 + while ( + tokens[i].level != currentToken.level + and tokens[i].type != "link_open" + ): + i -= 1 + continue + + # Skip content of html tag links + if currentToken.type == "html_inline": + if isLinkOpen(currentToken.content) and htmlLinkLevel > 0: + htmlLinkLevel -= 1 + if isLinkClose(currentToken.content): + htmlLinkLevel += 1 + if htmlLinkLevel > 0: + continue + + if currentToken.type == "text" and state.md.linkify.test( + currentToken.content + ): + text = currentToken.content + links: list[_LinkType] = state.md.linkify.match(text) or [] + + # Now split string to nodes + nodes = [] + level = currentToken.level + lastPos = 0 + + # forbid escape sequence at the start of the string, + # this avoids http\://example.com/ from being linkified as + # http://example.com/ + if ( + links + and links[0].index == 0 + and i > 0 + and tokens[i - 1].type == "text_special" + ): + links = links[1:] + + for link in links: + url = link.url + fullUrl = state.md.normalizeLink(url) + if not state.md.validateLink(fullUrl): + continue + + urlText = link.text + + # Linkifier might send raw hostnames like "example.com", where url + # starts with domain name. So we prepend http:// in those cases, + # and remove it afterwards. + if not link.schema: + urlText = HTTP_RE.sub( + "", state.md.normalizeLinkText("http://" + urlText) + ) + elif link.schema == "mailto:" and TEST_MAILTO_RE.search(urlText): + urlText = MAILTO_RE.sub( + "", state.md.normalizeLinkText("mailto:" + urlText) + ) + else: + urlText = state.md.normalizeLinkText(urlText) + + pos = link.index + + if pos > lastPos: + token = Token("text", "", 0) + token.content = text[lastPos:pos] + token.level = level + nodes.append(token) + + token = Token("link_open", "a", 1) + token.attrs = {"href": fullUrl} + token.level = level + level += 1 + token.markup = "linkify" + token.info = "auto" + nodes.append(token) + + token = Token("text", "", 0) + token.content = urlText + token.level = level + nodes.append(token) + + token = Token("link_close", "a", -1) + level -= 1 + token.level = level + token.markup = "linkify" + token.info = "auto" + nodes.append(token) + + lastPos = link.last_index + + if lastPos < len(text): + token = Token("text", "", 0) + token.content = text[lastPos:] + token.level = level + nodes.append(token) + + inline_token.children = tokens = arrayReplaceAt(tokens, i, nodes) + + +class _LinkType(Protocol): + url: str + text: str + index: int + last_index: int + schema: str | None diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/normalize.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/normalize.py new file mode 100644 index 0000000..c9f8d0d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/normalize.py @@ -0,0 +1,18 @@ +"""Normalize input string.""" +import re + +from .state_core import StateCore + +# https://spec.commonmark.org/0.29/#line-ending +NEWLINES_RE = re.compile(r"\r\n?|\n") +NULL_RE = re.compile(r"\0") + + +def normalize(state: StateCore) -> None: + # Normalize newlines + string = NEWLINES_RE.sub("\n", state.src) + + # Replace NULL characters + string = NULL_RE.sub("\uFFFD", string) + + state.src = string diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/replacements.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/replacements.py new file mode 100644 index 0000000..14912e1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/replacements.py @@ -0,0 +1,126 @@ +"""Simple typographic replacements + +* ``(c)``, ``(C)`` → © +* ``(tm)``, ``(TM)`` → ™ +* ``(r)``, ``(R)`` → ® +* ``+-`` → ± +* ``...`` → … +* ``?....`` → ?.. +* ``!....`` → !.. +* ``????????`` → ??? +* ``!!!!!`` → !!! +* ``,,,`` → , +* ``--`` → &ndash +* ``---`` → &mdash +""" +from __future__ import annotations + +import logging +import re + +from ..token import Token +from .state_core import StateCore + +LOGGER = logging.getLogger(__name__) + +# TODO: +# - fractionals 1/2, 1/4, 3/4 -> ½, ¼, ¾ +# - multiplication 2 x 4 -> 2 × 4 + +RARE_RE = re.compile(r"\+-|\.\.|\?\?\?\?|!!!!|,,|--") + +# Workaround for phantomjs - need regex without /g flag, +# or root check will fail every second time +# SCOPED_ABBR_TEST_RE = r"\((c|tm|r)\)" + +SCOPED_ABBR_RE = re.compile(r"\((c|tm|r)\)", flags=re.IGNORECASE) + +PLUS_MINUS_RE = re.compile(r"\+-") + +ELLIPSIS_RE = re.compile(r"\.{2,}") + +ELLIPSIS_QUESTION_EXCLAMATION_RE = re.compile(r"([?!])…") + +QUESTION_EXCLAMATION_RE = re.compile(r"([?!]){4,}") + +COMMA_RE = re.compile(r",{2,}") + +EM_DASH_RE = re.compile(r"(^|[^-])---(?=[^-]|$)", flags=re.MULTILINE) + +EN_DASH_RE = re.compile(r"(^|\s)--(?=\s|$)", flags=re.MULTILINE) + +EN_DASH_INDENT_RE = re.compile(r"(^|[^-\s])--(?=[^-\s]|$)", flags=re.MULTILINE) + + +SCOPED_ABBR = {"c": "©", "r": "®", "tm": "™"} + + +def replaceFn(match: re.Match[str]) -> str: + return SCOPED_ABBR[match.group(1).lower()] + + +def replace_scoped(inlineTokens: list[Token]) -> None: + inside_autolink = 0 + + for token in inlineTokens: + if token.type == "text" and not inside_autolink: + token.content = SCOPED_ABBR_RE.sub(replaceFn, token.content) + + if token.type == "link_open" and token.info == "auto": + inside_autolink -= 1 + + if token.type == "link_close" and token.info == "auto": + inside_autolink += 1 + + +def replace_rare(inlineTokens: list[Token]) -> None: + inside_autolink = 0 + + for token in inlineTokens: + if ( + token.type == "text" + and (not inside_autolink) + and RARE_RE.search(token.content) + ): + # +- -> ± + token.content = PLUS_MINUS_RE.sub("±", token.content) + + # .., ..., ....... -> … + token.content = ELLIPSIS_RE.sub("…", token.content) + + # but ?..... & !..... -> ?.. & !.. + token.content = ELLIPSIS_QUESTION_EXCLAMATION_RE.sub("\\1..", token.content) + token.content = QUESTION_EXCLAMATION_RE.sub("\\1\\1\\1", token.content) + + # ,, ,,, ,,,, -> , + token.content = COMMA_RE.sub(",", token.content) + + # em-dash + token.content = EM_DASH_RE.sub("\\1\u2014", token.content) + + # en-dash + token.content = EN_DASH_RE.sub("\\1\u2013", token.content) + token.content = EN_DASH_INDENT_RE.sub("\\1\u2013", token.content) + + if token.type == "link_open" and token.info == "auto": + inside_autolink -= 1 + + if token.type == "link_close" and token.info == "auto": + inside_autolink += 1 + + +def replace(state: StateCore) -> None: + if not state.md.options.typographer: + return + + for token in state.tokens: + if token.type != "inline": + continue + if token.children is None: + continue + + if SCOPED_ABBR_RE.search(token.content): + replace_scoped(token.children) + + if RARE_RE.search(token.content): + replace_rare(token.children) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/smartquotes.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/smartquotes.py new file mode 100644 index 0000000..c98fbd7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/smartquotes.py @@ -0,0 +1,202 @@ +"""Convert straight quotation marks to typographic ones +""" +from __future__ import annotations + +import re +from typing import Any + +from ..common.utils import charCodeAt, isMdAsciiPunct, isPunctChar, isWhiteSpace +from ..token import Token +from .state_core import StateCore + +QUOTE_TEST_RE = re.compile(r"['\"]") +QUOTE_RE = re.compile(r"['\"]") +APOSTROPHE = "\u2019" # ’ + + +def replaceAt(string: str, index: int, ch: str) -> str: + # When the index is negative, the behavior is different from the js version. + # But basically, the index will not be negative. + assert index >= 0 + return string[:index] + ch + string[index + 1 :] + + +def process_inlines(tokens: list[Token], state: StateCore) -> None: + stack: list[dict[str, Any]] = [] + + for i, token in enumerate(tokens): + thisLevel = token.level + + j = 0 + for j in range(len(stack))[::-1]: + if stack[j]["level"] <= thisLevel: + break + else: + # When the loop is terminated without a "break". + # Subtract 1 to get the same index as the js version. + j -= 1 + + stack = stack[: j + 1] + + if token.type != "text": + continue + + text = token.content + pos = 0 + maximum = len(text) + + while pos < maximum: + goto_outer = False + lastIndex = pos + t = QUOTE_RE.search(text[lastIndex:]) + if not t: + break + + canOpen = canClose = True + pos = t.start(0) + lastIndex + 1 + isSingle = t.group(0) == "'" + + # Find previous character, + # default to space if it's the beginning of the line + lastChar: None | int = 0x20 + + if t.start(0) + lastIndex - 1 >= 0: + lastChar = charCodeAt(text, t.start(0) + lastIndex - 1) + else: + for j in range(i)[::-1]: + if tokens[j].type == "softbreak" or tokens[j].type == "hardbreak": + break + # should skip all tokens except 'text', 'html_inline' or 'code_inline' + if not tokens[j].content: + continue + + lastChar = charCodeAt(tokens[j].content, len(tokens[j].content) - 1) + break + + # Find next character, + # default to space if it's the end of the line + nextChar: None | int = 0x20 + + if pos < maximum: + nextChar = charCodeAt(text, pos) + else: + for j in range(i + 1, len(tokens)): + # nextChar defaults to 0x20 + if tokens[j].type == "softbreak" or tokens[j].type == "hardbreak": + break + # should skip all tokens except 'text', 'html_inline' or 'code_inline' + if not tokens[j].content: + continue + + nextChar = charCodeAt(tokens[j].content, 0) + break + + isLastPunctChar = lastChar is not None and ( + isMdAsciiPunct(lastChar) or isPunctChar(chr(lastChar)) + ) + isNextPunctChar = nextChar is not None and ( + isMdAsciiPunct(nextChar) or isPunctChar(chr(nextChar)) + ) + + isLastWhiteSpace = lastChar is not None and isWhiteSpace(lastChar) + isNextWhiteSpace = nextChar is not None and isWhiteSpace(nextChar) + + if isNextWhiteSpace: # noqa: SIM114 + canOpen = False + elif isNextPunctChar and not (isLastWhiteSpace or isLastPunctChar): + canOpen = False + + if isLastWhiteSpace: # noqa: SIM114 + canClose = False + elif isLastPunctChar and not (isNextWhiteSpace or isNextPunctChar): + canClose = False + + if nextChar == 0x22 and t.group(0) == '"': # 0x22: " # noqa: SIM102 + if ( + lastChar is not None and lastChar >= 0x30 and lastChar <= 0x39 + ): # 0x30: 0, 0x39: 9 + # special case: 1"" - count first quote as an inch + canClose = canOpen = False + + if canOpen and canClose: + # Replace quotes in the middle of punctuation sequence, but not + # in the middle of the words, i.e.: + # + # 1. foo " bar " baz - not replaced + # 2. foo-"-bar-"-baz - replaced + # 3. foo"bar"baz - not replaced + canOpen = isLastPunctChar + canClose = isNextPunctChar + + if not canOpen and not canClose: + # middle of word + if isSingle: + token.content = replaceAt( + token.content, t.start(0) + lastIndex, APOSTROPHE + ) + continue + + if canClose: + # this could be a closing quote, rewind the stack to get a match + for j in range(len(stack))[::-1]: + item = stack[j] + if stack[j]["level"] < thisLevel: + break + if item["single"] == isSingle and stack[j]["level"] == thisLevel: + item = stack[j] + + if isSingle: + openQuote = state.md.options.quotes[2] + closeQuote = state.md.options.quotes[3] + else: + openQuote = state.md.options.quotes[0] + closeQuote = state.md.options.quotes[1] + + # replace token.content *before* tokens[item.token].content, + # because, if they are pointing at the same token, replaceAt + # could mess up indices when quote length != 1 + token.content = replaceAt( + token.content, t.start(0) + lastIndex, closeQuote + ) + tokens[item["token"]].content = replaceAt( + tokens[item["token"]].content, item["pos"], openQuote + ) + + pos += len(closeQuote) - 1 + if item["token"] == i: + pos += len(openQuote) - 1 + + text = token.content + maximum = len(text) + + stack = stack[:j] + goto_outer = True + break + if goto_outer: + goto_outer = False + continue + + if canOpen: + stack.append( + { + "token": i, + "pos": t.start(0) + lastIndex, + "single": isSingle, + "level": thisLevel, + } + ) + elif canClose and isSingle: + token.content = replaceAt( + token.content, t.start(0) + lastIndex, APOSTROPHE + ) + + +def smartquotes(state: StateCore) -> None: + if not state.md.options.typographer: + return + + for token in state.tokens: + if token.type != "inline" or not QUOTE_RE.search(token.content): + continue + if token.children is not None: + process_inlines(token.children, state) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/state_core.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/state_core.py new file mode 100644 index 0000000..a938041 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/state_core.py @@ -0,0 +1,25 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from ..ruler import StateBase +from ..token import Token +from ..utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +class StateCore(StateBase): + def __init__( + self, + src: str, + md: MarkdownIt, + env: EnvType, + tokens: list[Token] | None = None, + ) -> None: + self.src = src + self.md = md # link to parser instance + self.env = env + self.tokens: list[Token] = tokens or [] + self.inlineMode = False diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/text_join.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/text_join.py new file mode 100644 index 0000000..d54ccbb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/text_join.py @@ -0,0 +1,34 @@ +"""Join raw text tokens with the rest of the text + +This is set as a separate rule to provide an opportunity for plugins +to run text replacements after text join, but before escape join. + +For example, `\\:)` shouldn't be replaced with an emoji. +""" +from __future__ import annotations + +from ..token import Token +from .state_core import StateCore + + +def text_join(state: StateCore) -> None: + """Join raw text for escape sequences (`text_special`) tokens with the rest of the text""" + + for inline_token in state.tokens[:]: + if inline_token.type != "inline": + continue + + # convert text_special to text and join all adjacent text nodes + new_tokens: list[Token] = [] + for child_token in inline_token.children or []: + if child_token.type == "text_special": + child_token.type = "text" + if ( + child_token.type == "text" + and new_tokens + and new_tokens[-1].type == "text" + ): + new_tokens[-1].content += child_token.content + else: + new_tokens.append(child_token) + inline_token.children = new_tokens diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__init__.py new file mode 100644 index 0000000..3a8026e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__init__.py @@ -0,0 +1,31 @@ +__all__ = ( + "StateInline", + "text", + "fragments_join", + "link_pairs", + "linkify", + "escape", + "newline", + "backtick", + "emphasis", + "image", + "link", + "autolink", + "entity", + "html_inline", + "strikethrough", +) +from . import emphasis, strikethrough +from .autolink import autolink +from .backticks import backtick +from .balance_pairs import link_pairs +from .entity import entity +from .escape import escape +from .fragments_join import fragments_join +from .html_inline import html_inline +from .image import image +from .link import link +from .linkify import linkify +from .newline import newline +from .state_inline import StateInline +from .text import text diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f10e42faed5ff1dbb9422dc953c7c6c793dc92f7 GIT binary patch literal 813 zcmYL`KabNe7{;CSPtvAodRKHhoe)TfL+VL10u~0u&VrB_KwcuZ@io5MN%h+8Q6@eB zJD-7_f$zXKuoM<1wv%o^V#0s!#49V$@0Ddgub=!#(;+hT?(_TA_Yk39wz)0SySn~n z;_Z|0mBw`#p?(=~d;DO_a55*7<9mhNo z2~Hdj_(+WK$nlV;BE_lWgpb7-j~$PACNi8kPWePk@Wk<$ABaPI=s4q3F~!pW?I*K? zS*DY>iYWT3=B%c=tLO)%$LBy+g4RkF7Y(cR(Cn>?4PhX4WSO1sb)U*5*-#zT^wOP; z7i76sY`NAk6`P7kCUuVqvNG4&Lpml~)i~;#yP4YSq*8(x%zLL&0b5g5L9<;|zXKEM zECd@rOe_bGdKq}>c^P|&ymY-}UJ@@OFMThu7yI|jogE{uXLoc|6om7l(CELVGt`6I zcS*3$I$aP>>LvAofE@$u5MW0DI{;XFu;yT`!5V|L)gx)czIid&5!?V@(X~PJx5}$V z(7dEOARkHo2AT`HR5CwjKv!E<(tN(7^)BaZk#F{@YU*e6Cr@+96n(rg>6@%&E(om4 z=CUrB%3;f?ys^s*156dge6!c_3(=Hj^Cg@ZW1F>nZa!C?APBC)NfLgF{yadzqZZw3 f(ft;kw&=vIvlcyU(Q%88T6EW~)1T-Fj?LkJs!q=2 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97ecdfaee820c3b7af3ada7bbb42d25982b7cf0f GIT binary patch literal 2773 zcmeHJ%}*Ow5P!S2ch_GS+n~mQCZ%zT9b(LfnkY0SMGEd zYCCoUQl;1^m5o{{^i&Q#5cR_U(F@d-aG!c`mGr>P53eZ3V5zS8X z!>geGp4t^B^-XOIbsK}gh_t|pjKGP^3?mr7&`+`{%4^ytL9T6+SY8U5CsbY)$6``A zCZ==Kp8LEnJ>r|}^PTJMI^jO~UZDF_Pr(1-h3Vj@k22ZEzNwy%8YWYo3quXbH}$CR z^qKx_Lo?;QfGq;O`!sL%@SgIz(}VR)rW(#Yy#b8Te|oS#>mBmkpFTevNcQ#l0?C2C zDeQy{3fT){l&~bmRK!40O~6=)-mO~gX~0h%{_T9HC-u*O$i9~vo29XSzt`T24DG_4 zK+T;608%MprMc`|vpTHD(GOErZv+`y(5I~cU<5j&p9|FEG)2oAG6sz3*|RhVhFv~J zJ?n0gr4D0Y@CVVI9jc54_ZZVwuh80Gab&4NX+Hexo( znjG&TYU~xG)N9cMr3GhhYoPpdo=NI;-J`y(CD1??TFH5mz6sGm?KMd0)MJ|PhO_;p z$$snm(c<9lwr3cErk&OQC)}tFuFk)F!YSJ8xQ3|nAK!xHdqC7MGU7=+7nI{-3{gDN z&q8qqaeP9Ri5}?*hxDqLR1tt=svuL%AtcF)xcw)lZK6%HQ9dlG@{qR`>Eg12bP5b1 z26I>WBr=cOzIA{r9Gj7m{ea&sk{uh8V=5WbIy|fqH+pqsY#hURjgZV}NX8ayC;5}9 z4zYcdPllt3D57yLx&)LEJCl&4+n6z^@|+k`$b5K5qd#W-vvO4Q3*tQF)4cx%lp|tD zRs1tyC_YSt1<~I-FUIEmQuu*Co>FJ!*kEt}fL{r#qA$*e=J1xy4zK^3uX56;n%@Gv_|bb2(kv+*0gb8ZJAJRIHA|z5KnRlAq4e6|=SI zTsnu<h3DF9N6T#zBHC?&R4AM>667LMWw`c zY_Q!2_u*QfcyYYsIQJjfOU2x}gL?#cIYdJdS!(x{y_SOH%0Rw~XdGW(pc_l@2vO-D z$g))HuNMHGCh8ud=FUfD0k`BZ9Ka&E%_%qWqpG7Q>LoD#22NJY?YV)%P=2UN1H%n^ wM@L)e1+K~fn=ALA5Xnb2T-Qr2Hx|rQW`v^b#Vb`n*0r|Xb>01YO|D`71(ly%fdBvi literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5055f6be9824b9a2847ab3fcef3a0218b0a1be9 GIT binary patch literal 2561 zcmcImO-vg{6rS~Zy}SOw0XxA^42A%W+XNS)Gzy_<(v%cZoTj2l3#vjL?*`UCYj<|} z)w*)3RxyYOM~xJ70!~mxsyOBtsTZVPFpk7#l><@KLvFN5r7D;9t+5Ryr0Jzk^30o= z@4b0{^Sr;Gf6^(7iG9vjn3sugMHk$oE!em_nwvMY|(enQ_7%X4neMVQ^>u02kM;^y4j0*>U&)#xAoF$x+esfEg+_pWJ$ z?EqAonD!n-az#;~5n+-*eMmHpqA{`$jS?IM`bzKn|EqAX<$^|hbq?$4$9jE#rdfh9 zjvo;6-A*&=3ym;qgy-pBK;CkVjK?I6lyFcp0p|~lX(aSNZQs>EFf0qfu+$q2h$7Ev zY-vX$2YFeetur#EZq5&Kpj%zgLp+*XUqO zl=bFnhF*(hX;hGhGzQdcanOOW5cgWJ-e#-e%d}qdRVKgu%M2DkWdU>o_V_*W0 zdw6jW^q8XoIXDEp9iU8}?-V)B8jQrG5{8mvVP2H<_u$#47lLmn7Ug{$KY{}j0pCR& z3-Li&@?8@!KR7IKysu@17e{;%;i@k_E)T`Tqb;p%K1q=IBXNjRV33!5y0cttR2&dw zA0CeIQX%NRQrueN;~G<3VJ{fL!cS_4L?w}Gw$FGcy~(p1wDrdL_3^ah`ZpQJ8eOB> zof}qrvQstEsn+XV$+K#iVGq`g)Q{ zk(=ZmfSkJx1VKmNWM6tX)4OV`Po8_^IFKIs;bgK0ZeOR}YqWd5Y0g)Z8)|Z zxql|taBih(t>Kf0_Wi20e8xZJ&s@%058m{vjBSRUV$)w{nfjZoYIkhZ)U6uplIPPd z-9Y=Mfn+Pxs@l1#*{Zp^*}5gi(onAIch% zeBxg3TJveu>dX+6{!|zEvKJ)Rd>VvZp82=3m4{Q-4NGOFW6kpBV@H+ha?hD(&GYXq zH{YwzxjNF6TGy1OZd+AP(;~aTE*)G7t$I$Zd(LD%XYMzykU38e9NRXWRd@Wi{Oiuc zS?A%U-UrTBU6XCrw(e@lx>}Z`2d<-!TyJDL=lrw&^%`Hc#+R#U&AHl^KV5UZyV2-f z^e_0A>z6-RZ9JatyzN(Ao>b>_x9X?_L%l~+)Qo-7p0Q?`rr%CNc>a8DLi?(JM+95( z&|1Dp!u(>h9o04@J0BRUA6v@x_}ZpynFCp-?xsyOvNyWF?M~NZjqdNeRf}EH+s@B* zHC;4Xq1i46xl%#E=%qCS<~3{nqoz=aSnojkBaFu38%Lv{xZ&Lzuf}4Ld^P@vo&f-1 z_=`ar(-DnvP{yZlD=hU-C+QdrU?4#}LF})nX@jXq8D`9r=5%|GsZCOwruT_`>5n%N ROiRxEwA}byU*UH^@^6`+HT(bo literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/balance_pairs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/balance_pairs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..967053862e2cbd175874d02a43821c2d7d3b8b1c GIT binary patch literal 3249 zcmb_ePi))P8GocGN}?#qQsl^Tsz#1&*>WPwZh{3_?P19h2TtO6!P@(b zC1p2usZNI-rx40IkM9xWiA;K>}3Cl^Qp z@iv~y+49r^mA5b0VeI7Xzn~Uq-o?}KcC0(%%*NRZT#ggdLUe`8NCF>CFL4r=E(($y z9UVIrO`VDg#dJKH5#g81h(fej$O@u7zK?y!3B%2aVxhQi>O3H z-=R1ZTNdo8q%^7!iX#jfC8t6!gU#0)Pqyt4;76e_b{V|B-V|rIui3K*$pOU6f13>R0$S{$#dc33d0K?b0%@07@bm^SvjJdp6 z8;hY5qcA16!YHonMOZaLa==P3CZ1K;ZjpA6-(;EvJG7+@*1_*a2zX((Ccsj+=zj;_ zz3sUizIhU7khIG?N*+LTW1amLJ}v>i3lrV>!4X;mJ@S0rIyd0}5Mc-0gyjv9~-Gh@712lsdf z5K8mIT6`$BR-zuRLU*RGj&Oi|ov*m8ns z(A)~R=MCEOXV}g1YtSHDEG`*#>`yQ#9HU_aVBBZeWn6L%hHn>P+3;XFl=KUQVzH1n z9C_|;Ccm0DTuTDS3(_oq*I;v;Tzm)Dc095#ujW@|!)2N`<+Rl`*nCEuH?3iu%QB3+ zK2i8!?muO;B{P_eJkRrUm?6W7ylpRQ2g2t(Jrpiq(tG?cWR9qdPnn4BKUSU9{ILq%bb9Wyo2+_c%h&QE zPe@(Y*n#KlsK$=gXCBY(%r)3^y6;$Z?UAyr)H&^Vvf)cM`vxkrdMNTx`9!I(Ef$53 zKk{sQ8hvARe}&%iG=07Im3xZL_E!Cy*8$1~0mKIGPj61wJeoUUocuv$t{Quk*iL|> zW@xDP<1cP~c1sJL)&qSHPd+%gd80O2Kl(Vb6WQ}?@$YKv+kdx_eGE8rqTV-a_F6`Z zPH4f2-AOHYrs8V$4_16lZ>W0esW+zg95&sE(+Z-aZ#;bO!Fv$f&ChS@{ZSll zJ@z=UlhFFl?oDdpsV77ud|rpyN46t%zZM>=bB%Cv_dCCt{`K^eN$vE--xH0~v(15F z^~yJ)ffj@M25OTJO7(?3*OT+V^=OHi=ZUM0#8rK8v>x8Qu@lh-&+ZLqgKuv;n}b7D zXLDp?_nbB|wRcw=xvXBQ#X|pz;t9katKM$7qcC58v}H%0{?5YaKtT3E z_7i{Y{ra89`JH@Y{QGy&T>Tk912Lz7?Px&{rdE=0+u*c9s^ zjltn#Gmmsip`;^lU7*&G>(tAl;u)<4rePzNj-^HFR%W z4<4^kT5!1H`pO-wzEKZr;kUkKBUPdHv$~=UPd#I&btkJ5o30Agav`@*4ShT=4S~z+ zaoP$W^KH&&!(^b literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/emphasis.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/emphasis.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..991c7a159b827836f2a1bd900514c9bd48c518b1 GIT binary patch literal 3859 zcmbVPOKcm*8J^)jxO{49o3bQZ()uAwv}G}lpS5E;PHnex0wHNyI8kG>8}3G=L@w#s zl@qE|AhZoiAwo^HC`6sCoGQZw>Z5z=wLnj6yCuEwK|uo)zNxlzXi%X2XZV!O_K*QJ z`_Ifj-~9i~|I%Lq0WX4fW$C@Cqke?`P6v(VsuB3vDIivmhBTZ;89a$G(p(ysc4fFp zF2hgqFqSm_7yP84c{BmOqUO~^_`37%i0=u7iD1X48b;PqtyI=9pI|!Yay%FGbSjgw zbmI8lg*AQLNT&=vQ9qjQL_YZA5W>&?4VzX_0Zp^%t=+r}=G%AGmkX|5pys&(COD4^ zoaVYwqtLXl6@iXAW5X_PW(1)-b^LkWayRxC_-Uy@x4w6%deAPQt3QX+1;C|RywEgW z6EyJ-=tkSTSl|j`T&#_lEWrld`c8*hbc3?CH>q%gDsT-MI!kEnY;vOMo(A3eHg;?7 zIWQ1S0+hbiYJ-B=-3_|+{k`W-U5f?^MoXXZaJ!%2PH)#)!npuK30J%coA*Y1bK~QN zsS``l)kIRssANVbifSsVV(K}Sfc+?z{)wen*%{p!Ra8S$R83P-bVkt{rlzD*rgaId z562yRka*w-ho}1-MCcO}9=a$0fff-Rv380hrgdY=N;(3=b~xS896p=V4M#|%v!?#T zNSDLqvZlkCB;k0?glaI`HXVVe#*|LzV>*0p)=WC?MAoo$!*aY$nM_AibAYB1YL*U{ zC7Q#*k&ejDGaU&4SrP!Gfwj=UN* z!C4RI)WnQBrJGTDIa>B(Bc8INWHzmv@f365sGi9sRWoIdu@DJ|9A5D*d&?)*UR}HXK#mlJYR^DXSPE37 zKt<}YrJjm3XiI~S{o%(u`^qPN^V90ift62}KYiTYTOPVKx;pxxdw6}1-F>LKqq`d3 zT?r4_;h}1Gf2Dia?jC*~a0h~4a~_X((~W}rHg_Yz`^)j4jhA+=3@i`W{NQKf8@{e* zpc)u1?dy%cC<|Z;7}g51>cIhA95)<9!_>_nh`BV^%m)aSF!`o{o573g6xtvtorH%C z7do%Os8Av8m2OJP9hFk8F*I?gD=>8O28Vy0yW6bNG- zW?Nd$3l`mMSfw(l$z?!?@Zc8F`R)Sd%%r=vjhG9hg zkTuvT6vTo^U&Fvax#LYaH7|^slKc;;I_ljfl@HGM15WdHn5-{LC45V%1abxB?0jQe zZL=vsU3K_SIa?b3ADnMt5nHiap16f#{!Uyay!5X;%A-hNg5@8UiJs8(_v9dS1d21{ z_)Lprjj385aO;^GA=YLcm!2WC%y9g5HkKqD3HWO1!bfPfX4!$rl%h$&;Sxzg`YFX* z`JC=>mOACQ4c)X-##Al;&E^QL5h4;%;6tch4o*Rqvs7ZSGzX^`TAfOn?=mqR7a+5| zLv5{|cNDUp?)JwaS6YyC61r)U(=Y{b0Ga#1>le^t$ydDmc~^OlE$v!3U-kNm*FQf{ z4G*s2<*P;SrilFA72j^#w|kAh@7urLSBadqBd70a_akpq{ee&5NYe0Ic zJ-sv`KH7V*M9Odc`s2GU82YO{eRQ?~^WLp%tJiFK6hMZf%h&Es!s1pC#@-p^OW*eD zYq8?Rn{O??Rqk6mzmC7SX!jnh^uA)l&wu2h|2x(3H=FC1e>d^P#NBu7{U_|+la=1H zHvIgthyF{=_u7y=#dj9PBHo~ynEFBsYiSpc@~#Ls7rUaSXA~<*va?gk z7fMf7ml8dfRuk>@s;PXOvXTmTpE<@{Y$C!jvEuT}`gGrFZlTs22z&PA0|>Tcz0 z_o}n7@Dunm&p@|;zT)LlxGYq9M(m!EhkRrs)D0%|FtoQQI6k@b!P<}RhYvpX_msnH z!dlu^j{enu?4JVKwvXNRL`1BeNpG6$fzIJS%x2S$NOWtK7$gQ$TX^Wr%yrRP`^PLW z(EswTl5=e5MApzFd>bI0Ca*&mksNP4{?RO8>hU;%H)Zh*irji>$qHn`q@d+w?S`nT zw-FPx7GI>-GFc4@(inj{1yM^e2cX;JFveet2=Ds`dgYnekL72t!>gBv$U}5+6m|c*= zJA+A+LemCJNIYT_&nF=?@%q#@ZBqMG6MX>Aq}Pc}No*f@XmW`>HEG(Jx3eFe>(*HSo)E@rm^a(guW@$+h(M$i5Co!4q!miF1#J`= z+Z9^12kj~oWH8T&tiq~XkfVSNNT7FP!N!_SAv?0$U1r}a;CPuuLjHhYFOz3 zdW&A*X+1k&GngeiirWyCw8Q%eN>3&1z0MVEEfr}?GRY(uks;oD-D@RQ#lAPgP8R0!+t>~cBDET`Y z<)5LV(~?baq1BbHvub9Itjn@1y0GTz+7o#1UX%~U7EAtRwk;pS*k;5QveZD_9k&@3 z7W>r-Ns@}^ykc|01?6|O@9Z}V9Lvra6wH=Zxji{j| zQazVQfkrMv8Ztt9Op3^11p)c@KQPFebu4~b@E|&->4?STSa=B0I*cIxNZZl2(}&*) zoovO0Mhe474`RBZHV{LMqFt6CqDjHC#|HEsNbWLZh$AkdMGdnksbScMh3#^*OG7j+ zRLIeO_*m-^Y!H&#A~+zq_>ja0$pt{18Xl6>0TnT7*ud^sv#Uq;2(F`uF|qbIIip4hp-`AxPUG0}g$be{94 zPAzbik9`&2`>N)BRcYytd|S@Y8GBmG`u5H__l`DV@`Kl(^H6*X23j*)-|S^PsZo)|II%)Acv6 zPB4?M+?Fcb@ry3cc-x0qafr#&|>X8pV7UAsPR%Xv%ln}N%-Tmm*#+z4F{ zr91ANzkPmMpElB=Y)Rvst8ugylP?;-Y5KD1UjJ9k56{gvb&v&?ZFw%j$CWkHC3nkb z$}=ZsE9NWTz^>i7tvmj8K#R_ePw}AvVFR*32^B{)Rn?+(=Go#W+)PE}Dxd>~tmtMU zn<xikT`i015=guN^>+ zgQ_Ot+-immm?aOGejbxNO;OYnQ1lC^{s}bw2&xv{rK2augJZ$DvgUiX@7&+Iv+nj0 xKIbeMZ5Tf=c3^H(eWu~_H$Qtb>pVQ-$g=|FnW)XnQ*4-KLM-p5cmK9 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb4699122d6fdca6a8b43fc4d847f86fed028d6e GIT binary patch literal 1919 zcma(SOK%%RcxHFKYp*wU9!(#J6o)pUrmc+=qzWkEk+x|gfhq;mDiq9SXA^Jj-F0Wz zp-$J8Q&qyImFftjxVIuMLFG_x{STZPI4naDMx1&xL|nMQ%sOtuqZOaD^S$PK&U~}q z^z_Jp!nvF07nVc-eql@(C?CM)af(&}0%y#<11RzZoR!LQGP*P>pT)MOJ5EA(G_|OsgqBmWlTa;`pah!3x|(<7ha3%+ zghV!+85hqKRZV{gJEG`}tGfCbt6*3<2|0`*qGJ?v%OxV#-4eDmX5EDlC3yO6UZc`g z;DL)>%?@1QsC=i@maf86xv*p77U^;OD1~7D7yuZSIgdm9QV#&s59jgu3tQ4B*j5Br z>iYGByR0}0m5?VOA%BS4zw1F~fJTpWG&@%mLL!pxvZ^RR@Q>)U4xD;Y-WAb}c5DIg z#BOXS5}}?vknO5KIs6}<;my>)c0H+1$qS)K(2)sB$@!;fb}t2fX&l-smTl&7+0w4k zU98uY@Q!|kyE#`PUIax0?{P{gfp^)Hyl`+D(sup`dJ^+hk!fGY9@Ezz6x;4=CF%*T zLQMi#1eo(A3wp8_&2FC@uc{O~;pM$C!33&`LHo7MM8X+Iih_Sc?-o;E(xq&NlTl(igG1 zq^4=NF6x@=q~{H+FO&?Vr&Ei%wU{m#bLnE)&Dqv?Dl?XL3|Bu&Uy8iCpgU=nII=&o zvWA<+rGoBcjo`^hck)UV%ear#!4`Iaj!8$b3R-gfR7C|^#TexBf~iC)S3)Q;zu5@=`rq<6Cs^)F-Cjw|jNp%D(3K%KqA$8v{elxz8s2 z-a#5-aBnSiGvdbw+7jsLZDi`FYm@B=i1#<9ZkTOlTi@DtQJro{vBv1Sw6}R~OG1qxr4MD{^yUZEWq*x4oHK$RAC9b^devwtW8> zO}fY5v!5cx9~`1cZuJf{)D@|E^7@F0OB1dbB;9D#=j zOcMA!frkk^Lf}yX=}@Eze3`&k2s}>Us{~FE_!@z)6ZjrxKQIE{C-4ITvjl!f;1vQr z0xJYweLEQ@QZ|chEt@5ZW}BvMrAn?*a5`6C3H~EnR|K_PJo_gv(yF8K#Gg|M?&H34&RLxHk=MbKE$-1i!;?Vj;e`BC?b9y08ed|8L(N zt*^vPaamlER^+-=kCni(DU!jned^LP0JC@;%_ESe$URBCE}F5sgMzRk*2VKM@?34$ z&a>*kG=0L<6Ed9{-;vhjG0*AOluDz3KSRwkZ-DYe|fn<0pUNdY6>T+|KhGQ{vQL#}6HiY%9T$a7&4fC$bSx@}Z! z_!A-Bwj)kt<0`gkcZf7w1X6fh%n5W-LwB&DS11M~i&@}QI~8YQ+j1u zik49XFiL?7b|%UXB!F5b&g4S(hrG53KT`sk2XHf!2qYW3K_ZGI=yEY-fEmO?cd)9J zanNOWE`u$~#0ft^h{6H79DUhxDo!996+!~p)+wXBe0hDKe_gHUIao7smFRbM?S0}c zVuMj_!6LX&0ZCe}iruPaTX(c_jTJrjwcIPOY7{mmTh@(|Ucgl28)QP-^A^*1R%zY} zk5p}e=miH9(fp!kxw&#J=zV;OTmU6pEd3B_c2#H(2tB>4*Z%13Yo@m*HYa}Ty|nty zU;P(W-&>ttd%e}&+Z_Bl*G>pZ-^Ns9YFqYGFC3)Oek#2u?x!*>rLXxxMwN z_=eI@nzMfL+250>l~T`j0LY&HjhV*G_JFUvc%TgX%J6P=U&*%Af##>1$?eH~b*QCY z+)_4`?b+QcJGXrG@_{<;tK)msef5oYQs{dsTJ+VS19i+-$M!z{e(wIub}k zq|y`{Pprx9tdM%LIk=u{zbqt`HTHQO!jD4Ox#%mGfF?O`2&ok^QlNx)+tIcVem8`f zzb}vh-tUK3keqTn6L#-y0{4r+Z!h{ByxNi|ihl~}cH$)wZI8DF`0S1R!#|<(f0)A6 AH~;_u literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..534faba3ccbbf1144f174249e1085451b2a52ad8 GIT binary patch literal 1985 zcmbtU-ES0C6u7aKteY_JS$ek|U4F zAWK*=WgI&vn#!l*SloOj4QPpg`OVJCBG#3-GNDz%q|YaPSc4LXZq0n z+pm=N1~%<%6K>^lA*-k^EghZx0# zrk-SSe!Q5}r;q%kcEI^>YO2xEJ)f9MR9~(=T{9Lt zp1UkHwrsr~zZPHEQ4?-vZteVj*SEWVFm4Ym4jrry9=x;V&}HdL+XJ<`g6Ew%XGtAs zBvZ2^pN~}EuP4)AjQp%VSt-ny=gLd!&PPw~i}6dtpA3K5S$S*z%-orU)YbPEQv-Ez z;IrX|+D=%TpU_mgDdRbg=MIH+KyWjc$(FJZShgRgshPWEI9gj{ny_S0!EysCp7lIC zEQn@8HnFU*KZHr5u>+20!mxjZ>;)ZbUH>ImRs@dY{zQYnqCLN$oh!1yX_d|u1gzS% a%GgS>pX;c6xPpMyUJKc+(ZAR(1pfz9#HN`5 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/image.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/image.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8bd93ff2e3619af422c4463e5a24b9a0913e51e8 GIT binary patch literal 4188 zcmcInTWk~A8J_WY?D1{v_>#o5Ng!-C8J5@^QrO*g7oi5jhRb#-ph9}FOlC;N8IQAP zCTv2-RkmHJHbshEA=#`d;r69wc_4WreJXuu_n|MCAbEDQE2V0yink#8)TjPud`Son zT~_LmJm)``|Mva=`OooRJsu|k?FZK{Obz-7;_rCSY?eAfK0N|Nk>ClQl!z2LL6QV- z;VH?Iq9&-6b;4?ntrDHGP1t~@d7ETUF%t~X4&MH;b;7a0aL&hA97h_ige<4kges=V6?p@UE61{-|aoG+rd+J z0CC(hcFoS)O@A;F_WF8;(HM=!vw0GIzJs5P=?yb8WbXQl#sIGeB(`|bYcJx=I8@kO zZ<^x{&Jt*fO>^*$IzqCmjZE_TYo={KYQ&DoI9~!OZ(YmQ?@l(te4EI(aC2#{B%HqO z4SjD1YXaMMLX2F=;PbOhB+L`gE(5xr=h3Jp7xIAA=Qlu9~B z+uGNTN7Jhb4Lme6===^b8gGw$#=R4EEyN-_S%)3@3K`9|&uB9??q*&q{ugQCou+S$ z29+@0!Vb=E>-@=o=3O9RS8K6FTp`VR*F@^aFVsWhlZ{TAaTQu*wK*0EDW2HW56r0?F;-lURyo785nvF-WW zd#HKuH10_f-w^|wa+(y+@?PHFs&qb$;z{238;jxSB_#>r(s~w zs;EkWL5r!xlweR|Y6@ORl!7J=Dj}(cTT#j3>$n-C+1Nn z)?rEUhJ9L)W(A}e>}&!l!YNUnIfXe9jduiFlSc(b6=m~PW?0fQhNtxk!z`d)MTYwd zJj-}^c$rh10?(QDQi6O1;mk9rDM2-CqWL;AXj6q@ot;yr4LYH!U<)%jElNB*?F{>5 zT2=*FHSBohEb!UWv*y##u%-kx!F3q4g5P?EO%Wy7i11NBeyqlpmiYIwO2z?cU!0BSfduDIv-W zS5V?=BKkf`CxuB>iCz|wFf}LgLNsy({EtfFrReN}I-QnBBO?c*il_?1@T#4GNGj1( z0?qL059PS1M$w!kDDgT*Q8Ut!*#(4?-~2d$P$)>3MM8J`7Gt{0vv^eZ_?Ir`E-oI^ zo!+JWx&4b{>vs1q7d~3Zhl=4sxN84KNqK1R*S*2!{K!X{{9I8hXb@ODb=ZhB$7fVXvCuL~N;154An=^EQxWqWJvXq6pZj@=ty8DCZI$38ptr&DX}8Bph9 zmkwP!1Z>4O3vbo}Ts6Q|_TC-5J-8M)kUiS+^p&djmGZeq-hFy!xHwgqDp2cP;k>n_ z>uVY9BLK)PHV#+W;fioqye+N?#fwhHC!)s=vSHAF29BmIqb?YyNk#V>*N{acy4j?z!c- z=_n6Ws0ZEq^K`>Z0J*cb+) z`M4~-4pA3#V#!@)2Wl)=Wx2}0a&V13l%+oR`nUK4iVx*}nzdq8#|!Q({RABI>;A4H zSKvw~%JUEWuV?M+y}PqEo$)L&IcCY5^VXQ2D$`S%D$o6X{TzjC138OhSuU3$3hliu>TfMoUVKIlAubNO_4$I|KC>C#~N z;3GHp1YqodV{xHyp%xmbh6ZXOt{UPhk=21mp(A?#U^cdNB6lMHVb$HY?h7o&K8CP# zLU&4cd7nZpAl~C_2wy`8R|Yf!AH#Ynot6w664W^)qr))8ISpq#et8Zigm@g`zh#Dd zGM!4L<;a{WN{U(a%_5DygXP%G9cF=T)S|k4T!(HG=pDQV-*X1@b}G$7$vTXV!Vuqa g3jXV`L6Ic+Pon={#9Lny;V+4Sf7?!4NT130Uw|ZbGynhq literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..120ee541f8099bcd2926e9c1fa2d33397bd2c5eb GIT binary patch literal 4060 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 Ni+z^=hd$PY{TJ@jYkmL# literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/linkify.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/linkify.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d04fe503af2d5d854176a47a3e755faf3eb7d784 GIT binary patch literal 2730 zcmaJ@Urbw77{9mw+uKsGMHsl*Z7^3%se{G+Bl8dI7;M80w#=|>&86o8x7^;_oqLO= zDH$%B(QFA2O<-|}_#|dN%qM-+XrhTPEj6JYeZZ&>#Fr)W$rt_3h1-^;c#@v)eBb$f zf6qDJ?T;Rhi-B?N{@dfLHir3~GR6R2A5Y^zmKem0Fo;Dai5+2)8CfJ#!aQPT851M0 zamO~ciXbbc_P_#JCyxQ9V>b-4QA;|~t|J?FMLKpOY3^FR z;WzFxRuu}C{1whv8F{DK8H-+DOT5Y0t59S!a5Gl0Q`so5YE?K+6M1IrmXFqI0JB!Z zR|d`jIa?TmhZt>ojJEg-2D(CL>{)yK#R_k%kju~qMD5u38`uiX+RIvwU9=8X(8en3 zFtqeIS@j|4)~Gsi*2{LqjP^2#hH>AR_2m;@Gq(j|Y+xFUlcJNNZbtv-2#bO(}EW z0(4Qp1O%BMl>`(RO=$sH(E_3j%})YJ=O#S~!k)xiG`vX_2MOCjoU{c;m82jOmM4}8 zEQ}F5m4QKG;ZvGIEYu}oh)ajYBt;cA|AlcS*i1|bMC?jZ6BSv-4b+Kl@PaTUNW^zh zL6FFxqMcPzGKyfVU}8=xDzU+Ikxvt|ietn%+bOsNyZ%4-@1 z*9jg^f=!Dkk13>Khu#&Ms6D308dN>#!t_)yZRME0d}2@VX)%#XVETfIHHj5k9a$3!fQr{Ji=ol}B5 z6_&)&aB^CkP~`5;BVA!t)Pzuyk4^I9f*PjbBjp`ADr#X2)m5XS{zU{W{m?p-)A~W^ z6AeK93qBjO%m!CKe>``5oog*{t?S&uHSS=^>o3{ecW=LYd%0oF-a^?jXpL+AwQhg@ zz}aG5U*6HT;quN0bHUl(Qk`#J%1N_*Pi&0KGj}W3w9vQaXr+oLawissbElVw*SJ8L zUp}&Ut-$SF@vU)fHH8~q{~wL}mZFQ%m8+lL_~b^hu{-bXo{PW)0d2S&=FjKOFSGXs zXCo#5o~3h(=hppg1%KPRzq{b?ejNF-|BL>wV&C=tVEuNWaC$I*`cnSr<)VKm?;e^v z0~5{4>zhyK(zCq~Ggmj?k?U9(z89YD1=m!*?rkr4+gD;mZ^!Jpas>hfF0j)46W0L- ze&ZTS&3ixgJn*a}KKHF&eblnb<(rSrS?_x`>Km6_i>~EUtLD|q#rp7^wbZnCIh}w0 zFzj-rrT`Fksj(G^%fP<6(zSA{SRVu|Sam#btT%TRn!6r%7n_e&+w58Ot&SG!k5HRC z>{y(4`|tFB=vx^6p!s3%iuI#`Lc^hg<X4&YTH4i9H%cN-P>BCM*!Q{x@j* zs$dHs=siy);a?GP_4f_FH5BQ6V>p8M(H+aEqDcDv`HaCwL4v!f*wK^F-}7nQ11$Y7 zqP_vs6En-QKQp0U80Vi%JCxYdH23EGKyD!4^!nEaz7Ks9D!MPtI-l6O+4_Z3PZ%Jp N7M(oy|4ljF#ebykTlfF~ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9abdd60a7ca42522fd19366c9906c652819ff207 GIT binary patch literal 1774 zcmbVMT}T{P6u$Gfv+j>t-6Y-C1vM4B&^S@4X|YK$=BEmV77ItuIkHg{$< zYj?v6fvO0urJxT!C=}e_L+zV=DZclm)r4*@lnU*OPqo;mzO-k?T_Q$F+XHj&x##D* zXU;kId>0J*5YR{ScN6szLccnPDtRi*;ak8gA&f>4<}jb)bbf@_g%N>6SioXR)TI## zc!@~ZLp)d}o-q&hJ`zXdY)#ZR6?~tXaY8Jsx!u>^vCjiqlxH>Zag`3+w9jTf%>rgP zt;Wed=V&?RAGTGS3>YcRAWX8H1M^r~iWoNYP-17O5qE&91hFFlzC#h#C6q(=s+wba zo(K7HuZk|mhk?Uf@(Mzf%ks8^<`URfvrrYmzTpH3goP={US0qz?~&yAniq4N^?MF7 zl>7v6f3*Eo?dhmFVWScomXfc7$G6}sxW0=o_C1Q_1VY9^aATBmQU$C3g;-$e_?*CM zcMzs7!2dqOiu_M3Zod8W9AK1_UV-YxoLagBcEKwDY{$@LSlp;sameUB3lDq$6<*B= zyv8%`Jze510&#re}1RcLR!no}gkq3MXI^xqvrMk=v=B4w-j!aYa16*v#G-EKLRMwQ1;gqJLleB39r7n zes%5Y=4-p*D_h+=;cMl(#^U|C?8?Whnf3fyeiLtf@b&m^I#3RsUv62vUA%rEpbOw|s@-nuz+Q9P zdT=dRikIm3&0R(5i{M`Uxh3DCZ@IT5mei;9m!G#NpRhRapkTwo;Ot=W)72ZLmM4KX z_C$H6bNanPKdAh*MS1Sh${_qpb}hTvxc2Z#Q%~9JpSeHloe?0s=MA1V^?>6`p~B5a z1CXRc$TzwJ-6Y3i*o?DJAsULOf#Kck4Ou1!yjA#TT z^i@afeMdJj6#E*z2uEiCTQDQhfxvOxPbl;Yy8JV0JMgq|^~K%;1Y1dTx6RO>&dEjk E2VuIAp8x;= literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/state_inline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/state_inline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..996444438737cc1847392516747212f557104644 GIT binary patch literal 5970 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%0As)=CR8&}ng9@mo@ReO#p&tbc- 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 NcxBqvehROW?GOF3>6HKg literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/autolink.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/autolink.py new file mode 100644 index 0000000..295d963 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/autolink.py @@ -0,0 +1,77 @@ +# Process autolinks '' +import re + +from .state_inline import StateInline + +EMAIL_RE = re.compile( + r"^([a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$" # noqa: E501 +) +AUTOLINK_RE = re.compile(r"^([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)$") + + +def autolink(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if state.src[pos] != "<": + return False + + start = state.pos + maximum = state.posMax + + while True: + pos += 1 + if pos >= maximum: + return False + + ch = state.src[pos] + + if ch == "<": + return False + if ch == ">": + break + + url = state.src[start + 1 : pos] + + if AUTOLINK_RE.search(url) is not None: + fullUrl = state.md.normalizeLink(url) + if not state.md.validateLink(fullUrl): + return False + + if not silent: + token = state.push("link_open", "a", 1) + token.attrs = {"href": fullUrl} + token.markup = "autolink" + token.info = "auto" + + token = state.push("text", "", 0) + token.content = state.md.normalizeLinkText(url) + + token = state.push("link_close", "a", -1) + token.markup = "autolink" + token.info = "auto" + + state.pos += len(url) + 2 + return True + + if EMAIL_RE.search(url) is not None: + fullUrl = state.md.normalizeLink("mailto:" + url) + if not state.md.validateLink(fullUrl): + return False + + if not silent: + token = state.push("link_open", "a", 1) + token.attrs = {"href": fullUrl} + token.markup = "autolink" + token.info = "auto" + + token = state.push("text", "", 0) + token.content = state.md.normalizeLinkText(url) + + token = state.push("link_close", "a", -1) + token.markup = "autolink" + token.info = "auto" + + state.pos += len(url) + 2 + return True + + return False diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/backticks.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/backticks.py new file mode 100644 index 0000000..fc60d6b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/backticks.py @@ -0,0 +1,72 @@ +# Parse backticks +import re + +from .state_inline import StateInline + +regex = re.compile("^ (.+) $") + + +def backtick(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if state.src[pos] != "`": + return False + + start = pos + pos += 1 + maximum = state.posMax + + # scan marker length + while pos < maximum and (state.src[pos] == "`"): + pos += 1 + + marker = state.src[start:pos] + openerLength = len(marker) + + if state.backticksScanned and state.backticks.get(openerLength, 0) <= start: + if not silent: + state.pending += marker + state.pos += openerLength + return True + + matchStart = matchEnd = pos + + # Nothing found in the cache, scan until the end of the line (or until marker is found) + while True: + try: + matchStart = state.src.index("`", matchEnd) + except ValueError: + break + matchEnd = matchStart + 1 + + # scan marker length + while matchEnd < maximum and (state.src[matchEnd] == "`"): + matchEnd += 1 + + closerLength = matchEnd - matchStart + + if closerLength == openerLength: + # Found matching closer length. + if not silent: + token = state.push("code_inline", "code", 0) + token.markup = marker + token.content = state.src[pos:matchStart].replace("\n", " ") + if ( + token.content.startswith(" ") + and token.content.endswith(" ") + and len(token.content.strip()) > 0 + ): + token.content = token.content[1:-1] + state.pos = matchEnd + return True + + # Some different length found, put it in cache as upper limit of where closer can be found + state.backticks[closerLength] = matchStart + + # Scanned through the end, didn't find anything + state.backticksScanned = True + + if not silent: + state.pending += marker + state.pos += openerLength + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/balance_pairs.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/balance_pairs.py new file mode 100644 index 0000000..bbb2101 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/balance_pairs.py @@ -0,0 +1,137 @@ +"""Balance paired characters (*, _, etc) in inline tokens.""" +from __future__ import annotations + +from .state_inline import Delimiter, StateInline + + +def processDelimiters(state: StateInline, delimiters: list[Delimiter]) -> None: + """For each opening emphasis-like marker find a matching closing one.""" + if not delimiters: + return + + openersBottom = {} + maximum = len(delimiters) + + # headerIdx is the first delimiter of the current (where closer is) delimiter run + headerIdx = 0 + lastTokenIdx = -2 # needs any value lower than -1 + jumps: list[int] = [] + closerIdx = 0 + while closerIdx < maximum: + closer = delimiters[closerIdx] + + jumps.append(0) + + # markers belong to same delimiter run if: + # - they have adjacent tokens + # - AND markers are the same + # + if ( + delimiters[headerIdx].marker != closer.marker + or lastTokenIdx != closer.token - 1 + ): + headerIdx = closerIdx + lastTokenIdx = closer.token + + # Length is only used for emphasis-specific "rule of 3", + # if it's not defined (in strikethrough or 3rd party plugins), + # we can default it to 0 to disable those checks. + # + closer.length = closer.length or 0 + + if not closer.close: + closerIdx += 1 + continue + + # Previously calculated lower bounds (previous fails) + # for each marker, each delimiter length modulo 3, + # and for whether this closer can be an opener; + # https://github.com/commonmark/cmark/commit/34250e12ccebdc6372b8b49c44fab57c72443460 + if closer.marker not in openersBottom: + openersBottom[closer.marker] = [-1, -1, -1, -1, -1, -1] + + minOpenerIdx = openersBottom[closer.marker][ + (3 if closer.open else 0) + (closer.length % 3) + ] + + openerIdx = headerIdx - jumps[headerIdx] - 1 + + newMinOpenerIdx = openerIdx + + while openerIdx > minOpenerIdx: + opener = delimiters[openerIdx] + + if opener.marker != closer.marker: + openerIdx -= jumps[openerIdx] + 1 + continue + + if opener.open and opener.end < 0: + isOddMatch = False + + # from spec: + # + # If one of the delimiters can both open and close emphasis, then the + # sum of the lengths of the delimiter runs containing the opening and + # closing delimiters must not be a multiple of 3 unless both lengths + # are multiples of 3. + # + if ( + (opener.close or closer.open) + and ((opener.length + closer.length) % 3 == 0) + and (opener.length % 3 != 0 or closer.length % 3 != 0) + ): + isOddMatch = True + + if not isOddMatch: + # If previous delimiter cannot be an opener, we can safely skip + # the entire sequence in future checks. This is required to make + # sure algorithm has linear complexity (see *_*_*_*_*_... case). + # + if openerIdx > 0 and not delimiters[openerIdx - 1].open: + lastJump = jumps[openerIdx - 1] + 1 + else: + lastJump = 0 + + jumps[closerIdx] = closerIdx - openerIdx + lastJump + jumps[openerIdx] = lastJump + + closer.open = False + opener.end = closerIdx + opener.close = False + newMinOpenerIdx = -1 + + # treat next token as start of run, + # it optimizes skips in **<...>**a**<...>** pathological case + lastTokenIdx = -2 + + break + + openerIdx -= jumps[openerIdx] + 1 + + if newMinOpenerIdx != -1: + # If match for this delimiter run failed, we want to set lower bound for + # future lookups. This is required to make sure algorithm has linear + # complexity. + # + # See details here: + # https:#github.com/commonmark/cmark/issues/178#issuecomment-270417442 + # + openersBottom[closer.marker][ + (3 if closer.open else 0) + ((closer.length or 0) % 3) + ] = newMinOpenerIdx + + closerIdx += 1 + + +def link_pairs(state: StateInline) -> None: + tokens_meta = state.tokens_meta + maximum = len(state.tokens_meta) + + processDelimiters(state, state.delimiters) + + curr = 0 + while curr < maximum: + curr_meta = tokens_meta[curr] + if curr_meta and "delimiters" in curr_meta: + processDelimiters(state, curr_meta["delimiters"]) + curr += 1 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/emphasis.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/emphasis.py new file mode 100644 index 0000000..9a98f9e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/emphasis.py @@ -0,0 +1,102 @@ +# Process *this* and _that_ +# +from __future__ import annotations + +from .state_inline import Delimiter, StateInline + + +def tokenize(state: StateInline, silent: bool) -> bool: + """Insert each marker as a separate text token, and add it to delimiter list""" + start = state.pos + marker = state.src[start] + + if silent: + return False + + if marker not in ("_", "*"): + return False + + scanned = state.scanDelims(state.pos, marker == "*") + + for _ in range(scanned.length): + token = state.push("text", "", 0) + token.content = marker + state.delimiters.append( + Delimiter( + marker=ord(marker), + length=scanned.length, + token=len(state.tokens) - 1, + end=-1, + open=scanned.can_open, + close=scanned.can_close, + ) + ) + + state.pos += scanned.length + + return True + + +def _postProcess(state: StateInline, delimiters: list[Delimiter]) -> None: + i = len(delimiters) - 1 + while i >= 0: + startDelim = delimiters[i] + + # /* _ */ /* * */ + if startDelim.marker != 0x5F and startDelim.marker != 0x2A: + i -= 1 + continue + + # Process only opening markers + if startDelim.end == -1: + i -= 1 + continue + + endDelim = delimiters[startDelim.end] + + # If the previous delimiter has the same marker and is adjacent to this one, + # merge those into one strong delimiter. + # + # `whatever` -> `whatever` + # + isStrong = ( + i > 0 + and delimiters[i - 1].end == startDelim.end + 1 + # check that first two markers match and adjacent + and delimiters[i - 1].marker == startDelim.marker + and delimiters[i - 1].token == startDelim.token - 1 + # check that last two markers are adjacent (we can safely assume they match) + and delimiters[startDelim.end + 1].token == endDelim.token + 1 + ) + + ch = chr(startDelim.marker) + + token = state.tokens[startDelim.token] + token.type = "strong_open" if isStrong else "em_open" + token.tag = "strong" if isStrong else "em" + token.nesting = 1 + token.markup = ch + ch if isStrong else ch + token.content = "" + + token = state.tokens[endDelim.token] + token.type = "strong_close" if isStrong else "em_close" + token.tag = "strong" if isStrong else "em" + token.nesting = -1 + token.markup = ch + ch if isStrong else ch + token.content = "" + + if isStrong: + state.tokens[delimiters[i - 1].token].content = "" + state.tokens[delimiters[startDelim.end + 1].token].content = "" + i -= 1 + + i -= 1 + + +def postProcess(state: StateInline) -> None: + """Walk through delimiter list and replace text tokens with tags.""" + _postProcess(state, state.delimiters) + + for token in state.tokens_meta: + if token and "delimiters" in token: + _postProcess(state, token["delimiters"]) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/entity.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/entity.py new file mode 100644 index 0000000..ec9d396 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/entity.py @@ -0,0 +1,53 @@ +# Process html entity - {, ¯, ", ... +import re + +from ..common.entities import entities +from ..common.utils import fromCodePoint, isValidEntityCode +from .state_inline import StateInline + +DIGITAL_RE = re.compile(r"^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));", re.IGNORECASE) +NAMED_RE = re.compile(r"^&([a-z][a-z0-9]{1,31});", re.IGNORECASE) + + +def entity(state: StateInline, silent: bool) -> bool: + pos = state.pos + maximum = state.posMax + + if state.src[pos] != "&": + return False + + if pos + 1 >= maximum: + return False + + if state.src[pos + 1] == "#": + if match := DIGITAL_RE.search(state.src[pos:]): + if not silent: + match1 = match.group(1) + code = ( + int(match1[1:], 16) if match1[0].lower() == "x" else int(match1, 10) + ) + + token = state.push("text_special", "", 0) + token.content = ( + fromCodePoint(code) + if isValidEntityCode(code) + else fromCodePoint(0xFFFD) + ) + token.markup = match.group(0) + token.info = "entity" + + state.pos += len(match.group(0)) + return True + + else: + if (match := NAMED_RE.search(state.src[pos:])) and match.group(1) in entities: + if not silent: + token = state.push("text_special", "", 0) + token.content = entities[match.group(1)] + token.markup = match.group(0) + token.info = "entity" + + state.pos += len(match.group(0)) + return True + + return False diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/escape.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/escape.py new file mode 100644 index 0000000..9f68b5d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/escape.py @@ -0,0 +1,92 @@ +""" +Process escaped chars and hardbreaks +""" +from ..common.utils import isStrSpace +from .state_inline import StateInline + + +def escape(state: StateInline, silent: bool) -> bool: + """Process escaped chars and hardbreaks.""" + pos = state.pos + maximum = state.posMax + + if state.src[pos] != "\\": + return False + + pos += 1 + + # '\' at the end of the inline block + if pos >= maximum: + return False + + ch1 = state.src[pos] + ch1_ord = ord(ch1) + if ch1 == "\n": + if not silent: + state.push("hardbreak", "br", 0) + pos += 1 + # skip leading whitespaces from next line + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch): + break + pos += 1 + + state.pos = pos + return True + + escapedStr = state.src[pos] + + if ch1_ord >= 0xD800 and ch1_ord <= 0xDBFF and pos + 1 < maximum: + ch2 = state.src[pos + 1] + ch2_ord = ord(ch2) + if ch2_ord >= 0xDC00 and ch2_ord <= 0xDFFF: + escapedStr += ch2 + pos += 1 + + origStr = "\\" + escapedStr + + if not silent: + token = state.push("text_special", "", 0) + token.content = escapedStr if ch1 in _ESCAPED else origStr + token.markup = origStr + token.info = "escape" + + state.pos = pos + 1 + return True + + +_ESCAPED = { + "!", + '"', + "#", + "$", + "%", + "&", + "'", + "(", + ")", + "*", + "+", + ",", + "-", + ".", + "/", + ":", + ";", + "<", + "=", + ">", + "?", + "@", + "[", + "\\", + "]", + "^", + "_", + "`", + "{", + "|", + "}", + "~", +} diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/fragments_join.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/fragments_join.py new file mode 100644 index 0000000..f795c13 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/fragments_join.py @@ -0,0 +1,43 @@ +from .state_inline import StateInline + + +def fragments_join(state: StateInline) -> None: + """ + Clean up tokens after emphasis and strikethrough postprocessing: + merge adjacent text nodes into one and re-calculate all token levels + + This is necessary because initially emphasis delimiter markers (``*, _, ~``) + are treated as their own separate text tokens. Then emphasis rule either + leaves them as text (needed to merge with adjacent text) or turns them + into opening/closing tags (which messes up levels inside). + """ + level = 0 + maximum = len(state.tokens) + + curr = last = 0 + while curr < maximum: + # re-calculate levels after emphasis/strikethrough turns some text nodes + # into opening/closing tags + if state.tokens[curr].nesting < 0: + level -= 1 # closing tag + state.tokens[curr].level = level + if state.tokens[curr].nesting > 0: + level += 1 # opening tag + + if ( + state.tokens[curr].type == "text" + and curr + 1 < maximum + and state.tokens[curr + 1].type == "text" + ): + # collapse two adjacent text nodes + state.tokens[curr + 1].content = ( + state.tokens[curr].content + state.tokens[curr + 1].content + ) + else: + if curr != last: + state.tokens[last] = state.tokens[curr] + last += 1 + curr += 1 + + if curr != last: + del state.tokens[last:] diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/html_inline.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/html_inline.py new file mode 100644 index 0000000..9065e1d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/html_inline.py @@ -0,0 +1,43 @@ +# Process html tags +from ..common.html_re import HTML_TAG_RE +from ..common.utils import isLinkClose, isLinkOpen +from .state_inline import StateInline + + +def isLetter(ch: int) -> bool: + lc = ch | 0x20 # to lower case + # /* a */ and /* z */ + return (lc >= 0x61) and (lc <= 0x7A) + + +def html_inline(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if not state.md.options.get("html", None): + return False + + # Check start + maximum = state.posMax + if state.src[pos] != "<" or pos + 2 >= maximum: + return False + + # Quick fail on second char + ch = state.src[pos + 1] + if ch not in ("!", "?", "/") and not isLetter(ord(ch)): # /* / */ + return False + + match = HTML_TAG_RE.search(state.src[pos:]) + if not match: + return False + + if not silent: + token = state.push("html_inline", "", 0) + token.content = state.src[pos : pos + len(match.group(0))] + + if isLinkOpen(token.content): + state.linkLevel += 1 + if isLinkClose(token.content): + state.linkLevel -= 1 + + state.pos += len(match.group(0)) + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/image.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/image.py new file mode 100644 index 0000000..b4a32a9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/image.py @@ -0,0 +1,148 @@ +# Process ![image]( "title") +from __future__ import annotations + +from ..common.utils import isStrSpace, normalizeReference +from ..token import Token +from .state_inline import StateInline + + +def image(state: StateInline, silent: bool) -> bool: + label = None + href = "" + oldPos = state.pos + max = state.posMax + + if state.src[state.pos] != "!": + return False + + if state.pos + 1 < state.posMax and state.src[state.pos + 1] != "[": + return False + + labelStart = state.pos + 2 + labelEnd = state.md.helpers.parseLinkLabel(state, state.pos + 1, False) + + # parser failed to find ']', so it's not a valid link + if labelEnd < 0: + return False + + pos = labelEnd + 1 + + if pos < max and state.src[pos] == "(": + # + # Inline link + # + + # [link]( "title" ) + # ^^ skipping these spaces + pos += 1 + while pos < max: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + if pos >= max: + return False + + # [link]( "title" ) + # ^^^^^^ parsing link destination + start = pos + res = state.md.helpers.parseLinkDestination(state.src, pos, state.posMax) + if res.ok: + href = state.md.normalizeLink(res.str) + if state.md.validateLink(href): + pos = res.pos + else: + href = "" + + # [link]( "title" ) + # ^^ skipping these spaces + start = pos + while pos < max: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + # [link]( "title" ) + # ^^^^^^^ parsing link title + res = state.md.helpers.parseLinkTitle(state.src, pos, state.posMax) + if pos < max and start != pos and res.ok: + title = res.str + pos = res.pos + + # [link]( "title" ) + # ^^ skipping these spaces + while pos < max: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + else: + title = "" + + if pos >= max or state.src[pos] != ")": + state.pos = oldPos + return False + + pos += 1 + + else: + # + # Link reference + # + if "references" not in state.env: + return False + + # /* [ */ + if pos < max and state.src[pos] == "[": + start = pos + 1 + pos = state.md.helpers.parseLinkLabel(state, pos) + if pos >= 0: + label = state.src[start:pos] + pos += 1 + else: + pos = labelEnd + 1 + else: + pos = labelEnd + 1 + + # covers label == '' and label == undefined + # (collapsed reference link and shortcut reference link respectively) + if not label: + label = state.src[labelStart:labelEnd] + + label = normalizeReference(label) + + ref = state.env["references"].get(label, None) + if not ref: + state.pos = oldPos + return False + + href = ref["href"] + title = ref["title"] + + # + # We found the end of the link, and know for a fact it's a valid link + # so all that's left to do is to call tokenizer. + # + if not silent: + content = state.src[labelStart:labelEnd] + + tokens: list[Token] = [] + state.md.inline.parse(content, state.md, state.env, tokens) + + token = state.push("image", "img", 0) + token.attrs = {"src": href, "alt": ""} + token.children = tokens or None + token.content = content + + if title: + token.attrSet("title", title) + + # note, this is not part of markdown-it JS, but is useful for renderers + if label and state.md.options.get("store_labels", False): + token.meta["label"] = label + + state.pos = pos + state.posMax = max + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/link.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/link.py new file mode 100644 index 0000000..78cf912 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/link.py @@ -0,0 +1,151 @@ +# Process [link]( "stuff") + +from ..common.utils import isStrSpace, normalizeReference +from .state_inline import StateInline + + +def link(state: StateInline, silent: bool) -> bool: + href = "" + title = "" + label = None + oldPos = state.pos + maximum = state.posMax + start = state.pos + parseReference = True + + if state.src[state.pos] != "[": + return False + + labelStart = state.pos + 1 + labelEnd = state.md.helpers.parseLinkLabel(state, state.pos, True) + + # parser failed to find ']', so it's not a valid link + if labelEnd < 0: + return False + + pos = labelEnd + 1 + + if pos < maximum and state.src[pos] == "(": + # + # Inline link + # + + # might have found a valid shortcut link, disable reference parsing + parseReference = False + + # [link]( "title" ) + # ^^ skipping these spaces + pos += 1 + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + if pos >= maximum: + return False + + # [link]( "title" ) + # ^^^^^^ parsing link destination + start = pos + res = state.md.helpers.parseLinkDestination(state.src, pos, state.posMax) + if res.ok: + href = state.md.normalizeLink(res.str) + if state.md.validateLink(href): + pos = res.pos + else: + href = "" + + # [link]( "title" ) + # ^^ skipping these spaces + start = pos + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + # [link]( "title" ) + # ^^^^^^^ parsing link title + res = state.md.helpers.parseLinkTitle(state.src, pos, state.posMax) + if pos < maximum and start != pos and res.ok: + title = res.str + pos = res.pos + + # [link]( "title" ) + # ^^ skipping these spaces + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + if pos >= maximum or state.src[pos] != ")": + # parsing a valid shortcut link failed, fallback to reference + parseReference = True + + pos += 1 + + if parseReference: + # + # Link reference + # + if "references" not in state.env: + return False + + if pos < maximum and state.src[pos] == "[": + start = pos + 1 + pos = state.md.helpers.parseLinkLabel(state, pos) + if pos >= 0: + label = state.src[start:pos] + pos += 1 + else: + pos = labelEnd + 1 + + else: + pos = labelEnd + 1 + + # covers label == '' and label == undefined + # (collapsed reference link and shortcut reference link respectively) + if not label: + label = state.src[labelStart:labelEnd] + + label = normalizeReference(label) + + ref = ( + state.env["references"][label] if label in state.env["references"] else None + ) + if not ref: + state.pos = oldPos + return False + + href = ref["href"] + title = ref["title"] + + # + # We found the end of the link, and know for a fact it's a valid link + # so all that's left to do is to call tokenizer. + # + if not silent: + state.pos = labelStart + state.posMax = labelEnd + + token = state.push("link_open", "a", 1) + token.attrs = {"href": href} + + if title: + token.attrSet("title", title) + + # note, this is not part of markdown-it JS, but is useful for renderers + if label and state.md.options.get("store_labels", False): + token.meta["label"] = label + + state.linkLevel += 1 + state.md.inline.tokenize(state) + state.linkLevel -= 1 + + token = state.push("link_close", "a", -1) + + state.pos = pos + state.posMax = maximum + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/linkify.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/linkify.py new file mode 100644 index 0000000..a8a1815 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/linkify.py @@ -0,0 +1,61 @@ +"""Process links like https://example.org/""" +import re + +from .state_inline import StateInline + +# RFC3986: scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) +SCHEME_RE = re.compile(r"(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$", re.IGNORECASE) + + +def linkify(state: StateInline, silent: bool) -> bool: + """Rule for identifying plain-text links.""" + if not state.md.options.linkify: + return False + if state.linkLevel > 0: + return False + if not state.md.linkify: + raise ModuleNotFoundError("Linkify enabled but not installed.") + + pos = state.pos + maximum = state.posMax + + if ( + (pos + 3) > maximum + or state.src[pos] != ":" + or state.src[pos + 1] != "/" + or state.src[pos + 2] != "/" + ): + return False + + if not (match := SCHEME_RE.match(state.pending)): + return False + + proto = match.group(1) + if not (link := state.md.linkify.match_at_start(state.src[pos - len(proto) :])): + return False + url: str = link.url + + # disallow '*' at the end of the link (conflicts with emphasis) + url = url.rstrip("*") + + full_url = state.md.normalizeLink(url) + if not state.md.validateLink(full_url): + return False + + if not silent: + state.pending = state.pending[: -len(proto)] + + token = state.push("link_open", "a", 1) + token.attrs = {"href": full_url} + token.markup = "linkify" + token.info = "auto" + + token = state.push("text", "", 0) + token.content = state.md.normalizeLinkText(url) + + token = state.push("link_close", "a", -1) + token.markup = "linkify" + token.info = "auto" + + state.pos += len(url) - len(proto) + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/newline.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/newline.py new file mode 100644 index 0000000..ca8f1db --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/newline.py @@ -0,0 +1,43 @@ +"""Proceess '\n'.""" +from ..common.utils import charStrAt, isStrSpace +from .state_inline import StateInline + + +def newline(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if state.src[pos] != "\n": + return False + + pmax = len(state.pending) - 1 + maximum = state.posMax + + # ' \n' -> hardbreak + # Lookup in pending chars is bad practice! Don't copy to other rules! + # Pending string is stored in concat mode, indexed lookups will cause + # conversion to flat mode. + if not silent: + if pmax >= 0 and charStrAt(state.pending, pmax) == " ": + if pmax >= 1 and charStrAt(state.pending, pmax - 1) == " ": + # Find whitespaces tail of pending chars. + ws = pmax - 1 + while ws >= 1 and charStrAt(state.pending, ws - 1) == " ": + ws -= 1 + state.pending = state.pending[:ws] + + state.push("hardbreak", "br", 0) + else: + state.pending = state.pending[:-1] + state.push("softbreak", "br", 0) + + else: + state.push("softbreak", "br", 0) + + pos += 1 + + # skip heading spaces for next line + while pos < maximum and isStrSpace(state.src[pos]): + pos += 1 + + state.pos = pos + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/state_inline.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/state_inline.py new file mode 100644 index 0000000..c0c491c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/state_inline.py @@ -0,0 +1,166 @@ +from __future__ import annotations + +from collections import namedtuple +from dataclasses import dataclass +from typing import TYPE_CHECKING, Any, Literal + +from .._compat import DATACLASS_KWARGS +from ..common.utils import isMdAsciiPunct, isPunctChar, isWhiteSpace +from ..ruler import StateBase +from ..token import Token +from ..utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +@dataclass(**DATACLASS_KWARGS) +class Delimiter: + # Char code of the starting marker (number). + marker: int + + # Total length of these series of delimiters. + length: int + + # A position of the token this delimiter corresponds to. + token: int + + # If this delimiter is matched as a valid opener, `end` will be + # equal to its position, otherwise it's `-1`. + end: int + + # Boolean flags that determine if this delimiter could open or close + # an emphasis. + open: bool + close: bool + + level: bool | None = None + + +Scanned = namedtuple("Scanned", ["can_open", "can_close", "length"]) + + +class StateInline(StateBase): + def __init__( + self, src: str, md: MarkdownIt, env: EnvType, outTokens: list[Token] + ) -> None: + self.src = src + self.env = env + self.md = md + self.tokens = outTokens + self.tokens_meta: list[dict[str, Any] | None] = [None] * len(outTokens) + + self.pos = 0 + self.posMax = len(self.src) + self.level = 0 + self.pending = "" + self.pendingLevel = 0 + + # Stores { start: end } pairs. Useful for backtrack + # optimization of pairs parse (emphasis, strikes). + self.cache: dict[int, int] = {} + + # List of emphasis-like delimiters for current tag + self.delimiters: list[Delimiter] = [] + + # Stack of delimiter lists for upper level tags + self._prev_delimiters: list[list[Delimiter]] = [] + + # backticklength => last seen position + self.backticks: dict[int, int] = {} + self.backticksScanned = False + + # Counter used to disable inline linkify-it execution + # inside and markdown links + self.linkLevel = 0 + + def __repr__(self) -> str: + return ( + f"{self.__class__.__name__}" + f"(pos=[{self.pos} of {self.posMax}], token={len(self.tokens)})" + ) + + def pushPending(self) -> Token: + token = Token("text", "", 0) + token.content = self.pending + token.level = self.pendingLevel + self.tokens.append(token) + self.pending = "" + return token + + def push(self, ttype: str, tag: str, nesting: Literal[-1, 0, 1]) -> Token: + """Push new token to "stream". + If pending text exists - flush it as text token + """ + if self.pending: + self.pushPending() + + token = Token(ttype, tag, nesting) + token_meta = None + + if nesting < 0: + # closing tag + self.level -= 1 + self.delimiters = self._prev_delimiters.pop() + + token.level = self.level + + if nesting > 0: + # opening tag + self.level += 1 + self._prev_delimiters.append(self.delimiters) + self.delimiters = [] + token_meta = {"delimiters": self.delimiters} + + self.pendingLevel = self.level + self.tokens.append(token) + self.tokens_meta.append(token_meta) + return token + + def scanDelims(self, start: int, canSplitWord: bool) -> Scanned: + """ + Scan a sequence of emphasis-like markers, and determine whether + it can start an emphasis sequence or end an emphasis sequence. + + - start - position to scan from (it should point at a valid marker); + - canSplitWord - determine if these markers can be found inside a word + + """ + pos = start + maximum = self.posMax + marker = self.src[start] + + # treat beginning of the line as a whitespace + lastChar = self.src[start - 1] if start > 0 else " " + + while pos < maximum and self.src[pos] == marker: + pos += 1 + + count = pos - start + + # treat end of the line as a whitespace + nextChar = self.src[pos] if pos < maximum else " " + + isLastPunctChar = isMdAsciiPunct(ord(lastChar)) or isPunctChar(lastChar) + isNextPunctChar = isMdAsciiPunct(ord(nextChar)) or isPunctChar(nextChar) + + isLastWhiteSpace = isWhiteSpace(ord(lastChar)) + isNextWhiteSpace = isWhiteSpace(ord(nextChar)) + + left_flanking = not ( + isNextWhiteSpace + or (isNextPunctChar and not (isLastWhiteSpace or isLastPunctChar)) + ) + right_flanking = not ( + isLastWhiteSpace + or (isLastPunctChar and not (isNextWhiteSpace or isNextPunctChar)) + ) + + if not canSplitWord: + can_open = left_flanking and ((not right_flanking) or isLastPunctChar) + can_close = right_flanking and ((not left_flanking) or isNextPunctChar) + else: + can_open = left_flanking + can_close = right_flanking + + return Scanned(can_open, can_close, count) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/strikethrough.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/strikethrough.py new file mode 100644 index 0000000..ec81628 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/strikethrough.py @@ -0,0 +1,127 @@ +# ~~strike through~~ +from __future__ import annotations + +from .state_inline import Delimiter, StateInline + + +def tokenize(state: StateInline, silent: bool) -> bool: + """Insert each marker as a separate text token, and add it to delimiter list""" + start = state.pos + ch = state.src[start] + + if silent: + return False + + if ch != "~": + return False + + scanned = state.scanDelims(state.pos, True) + length = scanned.length + + if length < 2: + return False + + if length % 2: + token = state.push("text", "", 0) + token.content = ch + length -= 1 + + i = 0 + while i < length: + token = state.push("text", "", 0) + token.content = ch + ch + state.delimiters.append( + Delimiter( + marker=ord(ch), + length=0, # disable "rule of 3" length checks meant for emphasis + token=len(state.tokens) - 1, + end=-1, + open=scanned.can_open, + close=scanned.can_close, + ) + ) + + i += 2 + + state.pos += scanned.length + + return True + + +def _postProcess(state: StateInline, delimiters: list[Delimiter]) -> None: + loneMarkers = [] + maximum = len(delimiters) + + i = 0 + while i < maximum: + startDelim = delimiters[i] + + if startDelim.marker != 0x7E: # /* ~ */ + i += 1 + continue + + if startDelim.end == -1: + i += 1 + continue + + endDelim = delimiters[startDelim.end] + + token = state.tokens[startDelim.token] + token.type = "s_open" + token.tag = "s" + token.nesting = 1 + token.markup = "~~" + token.content = "" + + token = state.tokens[endDelim.token] + token.type = "s_close" + token.tag = "s" + token.nesting = -1 + token.markup = "~~" + token.content = "" + + if ( + state.tokens[endDelim.token - 1].type == "text" + and state.tokens[endDelim.token - 1].content == "~" + ): + loneMarkers.append(endDelim.token - 1) + + i += 1 + + # If a marker sequence has an odd number of characters, it's split + # like this: `~~~~~` -> `~` + `~~` + `~~`, leaving one marker at the + # start of the sequence. + # + # So, we have to move all those markers after subsequent s_close tags. + # + while loneMarkers: + i = loneMarkers.pop() + j = i + 1 + + while (j < len(state.tokens)) and (state.tokens[j].type == "s_close"): + j += 1 + + j -= 1 + + if i != j: + token = state.tokens[j] + state.tokens[j] = state.tokens[i] + state.tokens[i] = token + + +def postProcess(state: StateInline) -> None: + """Walk through delimiter list and replace text tokens with tags.""" + tokens_meta = state.tokens_meta + maximum = len(state.tokens_meta) + _postProcess(state, state.delimiters) + + curr = 0 + while curr < maximum: + try: + curr_meta = tokens_meta[curr] + except IndexError: + pass + else: + if curr_meta and "delimiters" in curr_meta: + _postProcess(state, curr_meta["delimiters"]) + curr += 1 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/text.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/text.py new file mode 100644 index 0000000..f306b2e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/text.py @@ -0,0 +1,53 @@ +# Skip text characters for text token, place those to pending buffer +# and increment current pos +from .state_inline import StateInline + +# Rule to skip pure text +# '{}$%@~+=:' reserved for extensions + +# !!!! Don't confuse with "Markdown ASCII Punctuation" chars +# http://spec.commonmark.org/0.15/#ascii-punctuation-character + + +_TerminatorChars = { + "\n", + "!", + "#", + "$", + "%", + "&", + "*", + "+", + "-", + ":", + "<", + "=", + ">", + "@", + "[", + "\\", + "]", + "^", + "_", + "`", + "{", + "}", + "~", +} + + +def text(state: StateInline, silent: bool) -> bool: + pos = state.pos + posMax = state.posMax + while (pos < posMax) and state.src[pos] not in _TerminatorChars: + pos += 1 + + if pos == state.pos: + return False + + if not silent: + state.pending += state.src[state.pos : pos] + + state.pos = pos + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/token.py b/.venv/lib/python3.12/site-packages/markdown_it/token.py new file mode 100644 index 0000000..90008b7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/token.py @@ -0,0 +1,180 @@ +from __future__ import annotations + +from collections.abc import Callable, MutableMapping +import dataclasses as dc +from typing import Any, Literal +import warnings + +from markdown_it._compat import DATACLASS_KWARGS + + +def convert_attrs(value: Any) -> Any: + """Convert Token.attrs set as ``None`` or ``[[key, value], ...]`` to a dict. + + This improves compatibility with upstream markdown-it. + """ + if not value: + return {} + if isinstance(value, list): + return dict(value) + return value + + +@dc.dataclass(**DATACLASS_KWARGS) +class Token: + type: str + """Type of the token (string, e.g. "paragraph_open")""" + + tag: str + """HTML tag name, e.g. 'p'""" + + nesting: Literal[-1, 0, 1] + """Level change (number in {-1, 0, 1} set), where: + - `1` means the tag is opening + - `0` means the tag is self-closing + - `-1` means the tag is closing + """ + + attrs: dict[str, str | int | float] = dc.field(default_factory=dict) + """HTML attributes. + Note this differs from the upstream "list of lists" format, + although than an instance can still be initialised with this format. + """ + + map: list[int] | None = None + """Source map info. Format: `[ line_begin, line_end ]`""" + + level: int = 0 + """Nesting level, the same as `state.level`""" + + children: list[Token] | None = None + """Array of child nodes (inline and img tokens).""" + + content: str = "" + """Inner content, in the case of a self-closing tag (code, html, fence, etc.),""" + + markup: str = "" + """'*' or '_' for emphasis, fence string for fence, etc.""" + + info: str = "" + """Additional information: + - Info string for "fence" tokens + - The value "auto" for autolink "link_open" and "link_close" tokens + - The string value of the item marker for ordered-list "list_item_open" tokens + """ + + meta: dict[Any, Any] = dc.field(default_factory=dict) + """A place for plugins to store any arbitrary data""" + + block: bool = False + """True for block-level tokens, false for inline tokens. + Used in renderer to calculate line breaks + """ + + hidden: bool = False + """If true, ignore this element when rendering. + Used for tight lists to hide paragraphs. + """ + + def __post_init__(self) -> None: + self.attrs = convert_attrs(self.attrs) + + def attrIndex(self, name: str) -> int: + warnings.warn( # noqa: B028 + "Token.attrIndex should not be used, since Token.attrs is a dictionary", + UserWarning, + ) + if name not in self.attrs: + return -1 + return list(self.attrs.keys()).index(name) + + def attrItems(self) -> list[tuple[str, str | int | float]]: + """Get (key, value) list of attrs.""" + return list(self.attrs.items()) + + def attrPush(self, attrData: tuple[str, str | int | float]) -> None: + """Add `[ name, value ]` attribute to list. Init attrs if necessary.""" + name, value = attrData + self.attrSet(name, value) + + def attrSet(self, name: str, value: str | int | float) -> None: + """Set `name` attribute to `value`. Override old value if exists.""" + self.attrs[name] = value + + def attrGet(self, name: str) -> None | str | int | float: + """Get the value of attribute `name`, or null if it does not exist.""" + return self.attrs.get(name, None) + + def attrJoin(self, name: str, value: str) -> None: + """Join value to existing attribute via space. + Or create new attribute if not exists. + Useful to operate with token classes. + """ + if name in self.attrs: + current = self.attrs[name] + if not isinstance(current, str): + raise TypeError( + f"existing attr 'name' is not a str: {self.attrs[name]}" + ) + self.attrs[name] = f"{current} {value}" + else: + self.attrs[name] = value + + def copy(self, **changes: Any) -> Token: + """Return a shallow copy of the instance.""" + return dc.replace(self, **changes) + + def as_dict( + self, + *, + children: bool = True, + as_upstream: bool = True, + meta_serializer: Callable[[dict[Any, Any]], Any] | None = None, + filter: Callable[[str, Any], bool] | None = None, + dict_factory: Callable[..., MutableMapping[str, Any]] = dict, + ) -> MutableMapping[str, Any]: + """Return the token as a dictionary. + + :param children: Also convert children to dicts + :param as_upstream: Ensure the output dictionary is equal to that created by markdown-it + For example, attrs are converted to null or lists + :param meta_serializer: hook for serializing ``Token.meta`` + :param filter: A callable whose return code determines whether an + attribute or element is included (``True``) or dropped (``False``). + Is called with the (key, value) pair. + :param dict_factory: A callable to produce dictionaries from. + For example, to produce ordered dictionaries instead of normal Python + dictionaries, pass in ``collections.OrderedDict``. + + """ + mapping = dict_factory((f.name, getattr(self, f.name)) for f in dc.fields(self)) + if filter: + mapping = dict_factory((k, v) for k, v in mapping.items() if filter(k, v)) + if as_upstream and "attrs" in mapping: + mapping["attrs"] = ( + None + if not mapping["attrs"] + else [[k, v] for k, v in mapping["attrs"].items()] + ) + if meta_serializer and "meta" in mapping: + mapping["meta"] = meta_serializer(mapping["meta"]) + if children and mapping.get("children", None): + mapping["children"] = [ + child.as_dict( + children=children, + filter=filter, + dict_factory=dict_factory, + as_upstream=as_upstream, + meta_serializer=meta_serializer, + ) + for child in mapping["children"] + ] + return mapping + + @classmethod + def from_dict(cls, dct: MutableMapping[str, Any]) -> Token: + """Convert a dict to a Token.""" + token = cls(**dct) + if token.children: + token.children = [cls.from_dict(c) for c in token.children] # type: ignore[arg-type] + return token diff --git a/.venv/lib/python3.12/site-packages/markdown_it/tree.py b/.venv/lib/python3.12/site-packages/markdown_it/tree.py new file mode 100644 index 0000000..6641e5a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/tree.py @@ -0,0 +1,345 @@ +"""A tree representation of a linear markdown-it token stream. + +This module is not part of upstream JavaScript markdown-it. +""" +from __future__ import annotations + +from collections.abc import Generator, Sequence +import textwrap +from typing import Any, NamedTuple, TypeVar, overload + +from .token import Token + + +class _NesterTokens(NamedTuple): + opening: Token + closing: Token + + +_NodeType = TypeVar("_NodeType", bound="SyntaxTreeNode") + + +class SyntaxTreeNode: + """A Markdown syntax tree node. + + A class that can be used to construct a tree representation of a linear + `markdown-it-py` token stream. + + Each node in the tree represents either: + - root of the Markdown document + - a single unnested `Token` + - a `Token` "_open" and "_close" token pair, and the tokens nested in + between + """ + + def __init__( + self, tokens: Sequence[Token] = (), *, create_root: bool = True + ) -> None: + """Initialize a `SyntaxTreeNode` from a token stream. + + If `create_root` is True, create a root node for the document. + """ + # Only nodes representing an unnested token have self.token + self.token: Token | None = None + + # Only containers have nester tokens + self.nester_tokens: _NesterTokens | None = None + + # Root node does not have self.parent + self._parent: Any = None + + # Empty list unless a non-empty container, or unnested token that has + # children (i.e. inline or img) + self._children: list[Any] = [] + + if create_root: + self._set_children_from_tokens(tokens) + return + + if not tokens: + raise ValueError( + "Can only create root from empty token sequence." + " Set `create_root=True`." + ) + elif len(tokens) == 1: + inline_token = tokens[0] + if inline_token.nesting: + raise ValueError( + "Unequal nesting level at the start and end of token stream." + ) + self.token = inline_token + if inline_token.children: + self._set_children_from_tokens(inline_token.children) + else: + self.nester_tokens = _NesterTokens(tokens[0], tokens[-1]) + self._set_children_from_tokens(tokens[1:-1]) + + def __repr__(self) -> str: + return f"{type(self).__name__}({self.type})" + + @overload + def __getitem__(self: _NodeType, item: int) -> _NodeType: + ... + + @overload + def __getitem__(self: _NodeType, item: slice) -> list[_NodeType]: + ... + + def __getitem__(self: _NodeType, item: int | slice) -> _NodeType | list[_NodeType]: + return self.children[item] + + def to_tokens(self: _NodeType) -> list[Token]: + """Recover the linear token stream.""" + + def recursive_collect_tokens(node: _NodeType, token_list: list[Token]) -> None: + if node.type == "root": + for child in node.children: + recursive_collect_tokens(child, token_list) + elif node.token: + token_list.append(node.token) + else: + assert node.nester_tokens + token_list.append(node.nester_tokens.opening) + for child in node.children: + recursive_collect_tokens(child, token_list) + token_list.append(node.nester_tokens.closing) + + tokens: list[Token] = [] + recursive_collect_tokens(self, tokens) + return tokens + + @property + def children(self: _NodeType) -> list[_NodeType]: + return self._children + + @children.setter + def children(self: _NodeType, value: list[_NodeType]) -> None: + self._children = value + + @property + def parent(self: _NodeType) -> _NodeType | None: + return self._parent # type: ignore + + @parent.setter + def parent(self: _NodeType, value: _NodeType | None) -> None: + self._parent = value + + @property + def is_root(self) -> bool: + """Is the node a special root node?""" + return not (self.token or self.nester_tokens) + + @property + def is_nested(self) -> bool: + """Is this node nested?. + + Returns `True` if the node represents a `Token` pair and tokens in the + sequence between them, where `Token.nesting` of the first `Token` in + the pair is 1 and nesting of the other `Token` is -1. + """ + return bool(self.nester_tokens) + + @property + def siblings(self: _NodeType) -> Sequence[_NodeType]: + """Get siblings of the node. + + Gets the whole group of siblings, including self. + """ + if not self.parent: + return [self] + return self.parent.children + + @property + def type(self) -> str: + """Get a string type of the represented syntax. + + - "root" for root nodes + - `Token.type` if the node represents an unnested token + - `Token.type` of the opening token, with "_open" suffix stripped, if + the node represents a nester token pair + """ + if self.is_root: + return "root" + if self.token: + return self.token.type + assert self.nester_tokens + return _removesuffix(self.nester_tokens.opening.type, "_open") + + @property + def next_sibling(self: _NodeType) -> _NodeType | None: + """Get the next node in the sequence of siblings. + + Returns `None` if this is the last sibling. + """ + self_index = self.siblings.index(self) + if self_index + 1 < len(self.siblings): + return self.siblings[self_index + 1] + return None + + @property + def previous_sibling(self: _NodeType) -> _NodeType | None: + """Get the previous node in the sequence of siblings. + + Returns `None` if this is the first sibling. + """ + self_index = self.siblings.index(self) + if self_index - 1 >= 0: + return self.siblings[self_index - 1] + return None + + def _add_child( + self, + tokens: Sequence[Token], + ) -> None: + """Make a child node for `self`.""" + child = type(self)(tokens, create_root=False) + child.parent = self + self.children.append(child) + + def _set_children_from_tokens(self, tokens: Sequence[Token]) -> None: + """Convert the token stream to a tree structure and set the resulting + nodes as children of `self`.""" + reversed_tokens = list(reversed(tokens)) + while reversed_tokens: + token = reversed_tokens.pop() + + if not token.nesting: + self._add_child([token]) + continue + if token.nesting != 1: + raise ValueError("Invalid token nesting") + + nested_tokens = [token] + nesting = 1 + while reversed_tokens and nesting: + token = reversed_tokens.pop() + nested_tokens.append(token) + nesting += token.nesting + if nesting: + raise ValueError(f"unclosed tokens starting {nested_tokens[0]}") + + self._add_child(nested_tokens) + + def pretty( + self, *, indent: int = 2, show_text: bool = False, _current: int = 0 + ) -> str: + """Create an XML style string of the tree.""" + prefix = " " * _current + text = prefix + f"<{self.type}" + if not self.is_root and self.attrs: + text += " " + " ".join(f"{k}={v!r}" for k, v in self.attrs.items()) + text += ">" + if ( + show_text + and not self.is_root + and self.type in ("text", "text_special") + and self.content + ): + text += "\n" + textwrap.indent(self.content, prefix + " " * indent) + for child in self.children: + text += "\n" + child.pretty( + indent=indent, show_text=show_text, _current=_current + indent + ) + return text + + def walk( + self: _NodeType, *, include_self: bool = True + ) -> Generator[_NodeType, None, None]: + """Recursively yield all descendant nodes in the tree starting at self. + + The order mimics the order of the underlying linear token + stream (i.e. depth first). + """ + if include_self: + yield self + for child in self.children: + yield from child.walk(include_self=True) + + # NOTE: + # The values of the properties defined below directly map to properties + # of the underlying `Token`s. A root node does not translate to a `Token` + # object, so calling these property getters on a root node will raise an + # `AttributeError`. + # + # There is no mapping for `Token.nesting` because the `is_nested` property + # provides that data, and can be called on any node type, including root. + + def _attribute_token(self) -> Token: + """Return the `Token` that is used as the data source for the + properties defined below.""" + if self.token: + return self.token + if self.nester_tokens: + return self.nester_tokens.opening + raise AttributeError("Root node does not have the accessed attribute") + + @property + def tag(self) -> str: + """html tag name, e.g. \"p\" """ + return self._attribute_token().tag + + @property + def attrs(self) -> dict[str, str | int | float]: + """Html attributes.""" + return self._attribute_token().attrs + + def attrGet(self, name: str) -> None | str | int | float: + """Get the value of attribute `name`, or null if it does not exist.""" + return self._attribute_token().attrGet(name) + + @property + def map(self) -> tuple[int, int] | None: + """Source map info. Format: `tuple[ line_begin, line_end ]`""" + map_ = self._attribute_token().map + if map_: + # Type ignore because `Token`s attribute types are not perfect + return tuple(map_) # type: ignore + return None + + @property + def level(self) -> int: + """nesting level, the same as `state.level`""" + return self._attribute_token().level + + @property + def content(self) -> str: + """In a case of self-closing tag (code, html, fence, etc.), it + has contents of this tag.""" + return self._attribute_token().content + + @property + def markup(self) -> str: + """'*' or '_' for emphasis, fence string for fence, etc.""" + return self._attribute_token().markup + + @property + def info(self) -> str: + """fence infostring""" + return self._attribute_token().info + + @property + def meta(self) -> dict[Any, Any]: + """A place for plugins to store an arbitrary data.""" + return self._attribute_token().meta + + @property + def block(self) -> bool: + """True for block-level tokens, false for inline tokens.""" + return self._attribute_token().block + + @property + def hidden(self) -> bool: + """If it's true, ignore this element when rendering. + Used for tight lists to hide paragraphs.""" + return self._attribute_token().hidden + + +def _removesuffix(string: str, suffix: str) -> str: + """Remove a suffix from a string. + + Replace this with str.removesuffix() from stdlib when minimum Python + version is 3.9. + """ + if suffix and string.endswith(suffix): + return string[: -len(suffix)] + return string diff --git a/.venv/lib/python3.12/site-packages/markdown_it/utils.py b/.venv/lib/python3.12/site-packages/markdown_it/utils.py new file mode 100644 index 0000000..a979372 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/utils.py @@ -0,0 +1,176 @@ +from __future__ import annotations + +from collections.abc import MutableMapping as MutableMappingABC +from pathlib import Path +from typing import Any, Callable, Iterable, MutableMapping, TypedDict, cast + +EnvType = MutableMapping[str, Any] # note: could use TypeAlias in python 3.10 +"""Type for the environment sandbox used in parsing and rendering, +which stores mutable variables for use by plugins and rules. +""" + + +class OptionsType(TypedDict): + """Options for parsing.""" + + maxNesting: int + """Internal protection, recursion limit.""" + html: bool + """Enable HTML tags in source.""" + linkify: bool + """Enable autoconversion of URL-like texts to links.""" + typographer: bool + """Enable smartquotes and replacements.""" + quotes: str + """Quote characters.""" + xhtmlOut: bool + """Use '/' to close single tags (
).""" + breaks: bool + """Convert newlines in paragraphs into
.""" + langPrefix: str + """CSS language prefix for fenced blocks.""" + highlight: Callable[[str, str, str], str] | None + """Highlighter function: (content, lang, attrs) -> str.""" + + +class PresetType(TypedDict): + """Preset configuration for markdown-it.""" + + options: OptionsType + """Options for parsing.""" + components: MutableMapping[str, MutableMapping[str, list[str]]] + """Components for parsing and rendering.""" + + +class OptionsDict(MutableMappingABC): # type: ignore + """A dictionary, with attribute access to core markdownit configuration options.""" + + # Note: ideally we would probably just remove attribute access entirely, + # but we keep it for backwards compatibility. + + def __init__(self, options: OptionsType) -> None: + self._options = cast(OptionsType, dict(options)) + + def __getitem__(self, key: str) -> Any: + return self._options[key] # type: ignore[literal-required] + + def __setitem__(self, key: str, value: Any) -> None: + self._options[key] = value # type: ignore[literal-required] + + def __delitem__(self, key: str) -> None: + del self._options[key] # type: ignore + + def __iter__(self) -> Iterable[str]: # type: ignore + return iter(self._options) + + def __len__(self) -> int: + return len(self._options) + + def __repr__(self) -> str: + return repr(self._options) + + def __str__(self) -> str: + return str(self._options) + + @property + def maxNesting(self) -> int: + """Internal protection, recursion limit.""" + return self._options["maxNesting"] + + @maxNesting.setter + def maxNesting(self, value: int) -> None: + self._options["maxNesting"] = value + + @property + def html(self) -> bool: + """Enable HTML tags in source.""" + return self._options["html"] + + @html.setter + def html(self, value: bool) -> None: + self._options["html"] = value + + @property + def linkify(self) -> bool: + """Enable autoconversion of URL-like texts to links.""" + return self._options["linkify"] + + @linkify.setter + def linkify(self, value: bool) -> None: + self._options["linkify"] = value + + @property + def typographer(self) -> bool: + """Enable smartquotes and replacements.""" + return self._options["typographer"] + + @typographer.setter + def typographer(self, value: bool) -> None: + self._options["typographer"] = value + + @property + def quotes(self) -> str: + """Quote characters.""" + return self._options["quotes"] + + @quotes.setter + def quotes(self, value: str) -> None: + self._options["quotes"] = value + + @property + def xhtmlOut(self) -> bool: + """Use '/' to close single tags (
).""" + return self._options["xhtmlOut"] + + @xhtmlOut.setter + def xhtmlOut(self, value: bool) -> None: + self._options["xhtmlOut"] = value + + @property + def breaks(self) -> bool: + """Convert newlines in paragraphs into
.""" + return self._options["breaks"] + + @breaks.setter + def breaks(self, value: bool) -> None: + self._options["breaks"] = value + + @property + def langPrefix(self) -> str: + """CSS language prefix for fenced blocks.""" + return self._options["langPrefix"] + + @langPrefix.setter + def langPrefix(self, value: str) -> None: + self._options["langPrefix"] = value + + @property + def highlight(self) -> Callable[[str, str, str], str] | None: + """Highlighter function: (content, langName, langAttrs) -> escaped HTML.""" + return self._options["highlight"] + + @highlight.setter + def highlight(self, value: Callable[[str, str, str], str] | None) -> None: + self._options["highlight"] = value + + +def read_fixture_file(path: str | Path) -> list[list[Any]]: + text = Path(path).read_text(encoding="utf-8") + tests = [] + section = 0 + last_pos = 0 + lines = text.splitlines(keepends=True) + for i in range(len(lines)): + if lines[i].rstrip() == ".": + if section == 0: + tests.append([i, lines[i - 1].strip()]) + section = 1 + elif section == 1: + tests[-1].append("".join(lines[last_pos + 1 : i])) + section = 2 + elif section == 2: + tests[-1].append("".join(lines[last_pos + 1 : i])) + section = 0 + + last_pos = i + return tests diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/LICENSE b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/LICENSE new file mode 100644 index 0000000..582ddf5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 ExecutableBookProject + +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/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/LICENSE.markdown-it b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/LICENSE.markdown-it new file mode 100644 index 0000000..7ffa058 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/LICENSE.markdown-it @@ -0,0 +1,22 @@ +Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin. + +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/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/METADATA b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/METADATA new file mode 100644 index 0000000..8a2978b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/METADATA @@ -0,0 +1,205 @@ +Metadata-Version: 2.1 +Name: markdown-it-py +Version: 3.0.0 +Summary: Python port of markdown-it. Markdown parsing, done right! +Keywords: markdown,lexer,parser,commonmark,markdown-it +Author-email: Chris Sewell +Requires-Python: >=3.8 +Description-Content-Type: text/markdown +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Text Processing :: Markup +Requires-Dist: mdurl~=0.1 +Requires-Dist: psutil ; extra == "benchmarking" +Requires-Dist: pytest ; extra == "benchmarking" +Requires-Dist: pytest-benchmark ; extra == "benchmarking" +Requires-Dist: pre-commit~=3.0 ; extra == "code_style" +Requires-Dist: commonmark~=0.9 ; extra == "compare" +Requires-Dist: markdown~=3.4 ; extra == "compare" +Requires-Dist: mistletoe~=1.0 ; extra == "compare" +Requires-Dist: mistune~=2.0 ; extra == "compare" +Requires-Dist: panflute~=2.3 ; extra == "compare" +Requires-Dist: linkify-it-py>=1,<3 ; extra == "linkify" +Requires-Dist: mdit-py-plugins ; extra == "plugins" +Requires-Dist: gprof2dot ; extra == "profiling" +Requires-Dist: mdit-py-plugins ; extra == "rtd" +Requires-Dist: myst-parser ; extra == "rtd" +Requires-Dist: pyyaml ; extra == "rtd" +Requires-Dist: sphinx ; extra == "rtd" +Requires-Dist: sphinx-copybutton ; extra == "rtd" +Requires-Dist: sphinx-design ; extra == "rtd" +Requires-Dist: sphinx_book_theme ; extra == "rtd" +Requires-Dist: jupyter_sphinx ; extra == "rtd" +Requires-Dist: coverage ; extra == "testing" +Requires-Dist: pytest ; extra == "testing" +Requires-Dist: pytest-cov ; extra == "testing" +Requires-Dist: pytest-regressions ; extra == "testing" +Project-URL: Documentation, https://markdown-it-py.readthedocs.io +Project-URL: Homepage, https://github.com/executablebooks/markdown-it-py +Provides-Extra: benchmarking +Provides-Extra: code_style +Provides-Extra: compare +Provides-Extra: linkify +Provides-Extra: plugins +Provides-Extra: profiling +Provides-Extra: rtd +Provides-Extra: testing + +# markdown-it-py + +[![Github-CI][github-ci]][github-link] +[![Coverage Status][codecov-badge]][codecov-link] +[![PyPI][pypi-badge]][pypi-link] +[![Conda][conda-badge]][conda-link] +[![Code style: black][black-badge]][black-link] +[![PyPI - Downloads][install-badge]][install-link] + +> Markdown parser done right. + +- Follows the __[CommonMark spec](http://spec.commonmark.org/)__ for baseline parsing +- Configurable syntax: you can add new rules and even replace existing ones. +- Pluggable: Adds syntax extensions to extend the parser (see the [plugin list][md-plugins]). +- High speed (see our [benchmarking tests][md-performance]) +- [Safe by default][md-security] +- Member of [Google's Assured Open Source Software](https://cloud.google.com/assured-open-source-software/docs/supported-packages) + +This is a Python port of [markdown-it], and some of its associated plugins. +For more details see: . + +For details on [markdown-it] itself, see: + +- The __[Live demo](https://markdown-it.github.io)__ +- [The markdown-it README][markdown-it-readme] + +## Installation + +```bash +conda install -c conda-forge markdown-it-py +``` + +or + +```bash +pip install markdown-it-py[plugins] +``` + +or with extras + +```bash +conda install -c conda-forge markdown-it-py linkify-it-py mdit-py-plugins +pip install markdown-it-py[linkify,plugins] +``` + +## Usage + +### Python API Usage + +Render markdown to HTML with markdown-it-py and a custom configuration +with and without plugins and features: + +```python +from markdown_it import MarkdownIt +from mdit_py_plugins.front_matter import front_matter_plugin +from mdit_py_plugins.footnote import footnote_plugin + +md = ( + MarkdownIt('commonmark' ,{'breaks':True,'html':True}) + .use(front_matter_plugin) + .use(footnote_plugin) + .enable('table') +) +text = (""" +--- +a: 1 +--- + +a | b +- | - +1 | 2 + +A footnote [^1] + +[^1]: some details +""") +tokens = md.parse(text) +html_text = md.render(text) + +## To export the html to a file, uncomment the lines below: +# from pathlib import Path +# Path("output.html").write_text(html_text) +``` + +### Command-line Usage + +Render markdown to HTML with markdown-it-py from the +command-line: + +```console +usage: markdown-it [-h] [-v] [filenames [filenames ...]] + +Parse one or more markdown files, convert each to HTML, and print to stdout + +positional arguments: + filenames specify an optional list of files to convert + +optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + +Interactive: + + $ markdown-it + markdown-it-py [version 0.0.0] (interactive) + Type Ctrl-D to complete input, or Ctrl-C to exit. + >>> # Example + ... > markdown *input* + ... +

Example

+
+

markdown input

+
+ +Batch: + + $ markdown-it README.md README.footer.md > index.html + +``` + +## References / Thanks + +Big thanks to the authors of [markdown-it]: + +- Alex Kocharin [github/rlidwka](https://github.com/rlidwka) +- Vitaly Puzrin [github/puzrin](https://github.com/puzrin) + +Also [John MacFarlane](https://github.com/jgm) for his work on the CommonMark spec and reference implementations. + +[github-ci]: https://github.com/executablebooks/markdown-it-py/workflows/Python%20package/badge.svg?branch=master +[github-link]: https://github.com/executablebooks/markdown-it-py +[pypi-badge]: https://img.shields.io/pypi/v/markdown-it-py.svg +[pypi-link]: https://pypi.org/project/markdown-it-py +[conda-badge]: https://anaconda.org/conda-forge/markdown-it-py/badges/version.svg +[conda-link]: https://anaconda.org/conda-forge/markdown-it-py +[codecov-badge]: https://codecov.io/gh/executablebooks/markdown-it-py/branch/master/graph/badge.svg +[codecov-link]: https://codecov.io/gh/executablebooks/markdown-it-py +[black-badge]: https://img.shields.io/badge/code%20style-black-000000.svg +[black-link]: https://github.com/ambv/black +[install-badge]: https://img.shields.io/pypi/dw/markdown-it-py?label=pypi%20installs +[install-link]: https://pypistats.org/packages/markdown-it-py + +[CommonMark spec]: http://spec.commonmark.org/ +[markdown-it]: https://github.com/markdown-it/markdown-it +[markdown-it-readme]: https://github.com/markdown-it/markdown-it/blob/master/README.md +[md-security]: https://markdown-it-py.readthedocs.io/en/latest/other.html +[md-performance]: https://markdown-it-py.readthedocs.io/en/latest/other.html +[md-plugins]: https://markdown-it-py.readthedocs.io/en/latest/plugins.html + diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/RECORD b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/RECORD new file mode 100644 index 0000000..fefa695 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/RECORD @@ -0,0 +1,142 @@ +../../../bin/markdown-it,sha256=383BgCvYKwSGwRENp6xe-fe7V6414bzx_weHXAG11YA,254 +markdown_it/__init__.py,sha256=9v3vCD7XQJujcZLU2F14T8O88JJO93rZaUoKu7cocH8,113 +markdown_it/__pycache__/__init__.cpython-312.pyc,, +markdown_it/__pycache__/_compat.cpython-312.pyc,, +markdown_it/__pycache__/_punycode.cpython-312.pyc,, +markdown_it/__pycache__/main.cpython-312.pyc,, +markdown_it/__pycache__/parser_block.cpython-312.pyc,, +markdown_it/__pycache__/parser_core.cpython-312.pyc,, +markdown_it/__pycache__/parser_inline.cpython-312.pyc,, +markdown_it/__pycache__/renderer.cpython-312.pyc,, +markdown_it/__pycache__/ruler.cpython-312.pyc,, +markdown_it/__pycache__/token.cpython-312.pyc,, +markdown_it/__pycache__/tree.cpython-312.pyc,, +markdown_it/__pycache__/utils.cpython-312.pyc,, +markdown_it/_compat.py,sha256=mfhalPobHpl8uYt2V6SCOZq3HqaGlWP8MjICwDvS_xE,246 +markdown_it/_punycode.py,sha256=Y_m-fzc5Ey_Kw09MPNN5TUMnPXm2cACUZE_qwUkfFrM,2364 +markdown_it/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +markdown_it/cli/__pycache__/__init__.cpython-312.pyc,, +markdown_it/cli/__pycache__/parse.cpython-312.pyc,, +markdown_it/cli/parse.py,sha256=ZiTSx6t7nLk7rGAtIi0a02EB9sDGJn7YLjKKtufdwNA,2901 +markdown_it/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +markdown_it/common/__pycache__/__init__.cpython-312.pyc,, +markdown_it/common/__pycache__/entities.cpython-312.pyc,, +markdown_it/common/__pycache__/html_blocks.cpython-312.pyc,, +markdown_it/common/__pycache__/html_re.cpython-312.pyc,, +markdown_it/common/__pycache__/normalize_url.cpython-312.pyc,, +markdown_it/common/__pycache__/utils.cpython-312.pyc,, +markdown_it/common/entities.py,sha256=6ulEjBAWYH5lVobgpn5lChPYhPKkdPyVHpNT7O1_x90,156 +markdown_it/common/html_blocks.py,sha256=1cMBp6jIdXqCHvEs2mpJqVGqTuFi6ExL4VO754yksgU,932 +markdown_it/common/html_re.py,sha256=0q5QFkSnX_l7Ob37MDSj2UYT0onCPz_07hUod2K-a6A,929 +markdown_it/common/normalize_url.py,sha256=avOXnLd9xw5jU1q5PLftjAM9pvGx8l9QDEkmZSyrMgg,2568 +markdown_it/common/utils.py,sha256=l2ypUup7jVBwGZJb8M2lxllmTWq8wN5TMV40Mndqu1A,10728 +markdown_it/helpers/__init__.py,sha256=9W7GycpZcq2up1CdVcUpdN77i9Vl4N0CT3y3qMkTjY4,253 +markdown_it/helpers/__pycache__/__init__.cpython-312.pyc,, +markdown_it/helpers/__pycache__/parse_link_destination.cpython-312.pyc,, +markdown_it/helpers/__pycache__/parse_link_label.cpython-312.pyc,, +markdown_it/helpers/__pycache__/parse_link_title.cpython-312.pyc,, +markdown_it/helpers/parse_link_destination.py,sha256=whJoEo42RmgiVpyc2TmTb73nPK3L-DZuZqfE2f8B20Q,1977 +markdown_it/helpers/parse_link_label.py,sha256=HXAnGlAL-2Op6I-lfeuzBIJBjESCRZws6xKKS3lKFSg,1036 +markdown_it/helpers/parse_link_title.py,sha256=5h5YctAUPmaeBqAlCDzzB220-i64HxYyJ27ui-xMBn0,1425 +markdown_it/main.py,sha256=7BYAkBbDmgbdVGNrpAaWZ_-u2-DoYsOCtXWg5uv3Gvg,12772 +markdown_it/parser_block.py,sha256=1bvZMDIdfBYrRNHpZPzmX6W4GXXaFUDqq2iaxDWP-BM,3911 +markdown_it/parser_core.py,sha256=asPHnvL0sk2oqWC69VM8OAqKs-Dk--GRHhGwZonLm6s,1010 +markdown_it/parser_inline.py,sha256=0ZAiRx2GkQ35va1QRxDeDZvpa44wZBNnVFsGzCyj_Po,4997 +markdown_it/port.yaml,sha256=F6WvtDFxjuZ5o0NtmJO0P8SkG6OfONCj_ggKgx4iYWU,2446 +markdown_it/presets/__init__.py,sha256=tLc9od5iXBEkKR6wbXOVPC5S5vkGYK-67tQslhWu7LY,970 +markdown_it/presets/__pycache__/__init__.cpython-312.pyc,, +markdown_it/presets/__pycache__/commonmark.cpython-312.pyc,, +markdown_it/presets/__pycache__/default.cpython-312.pyc,, +markdown_it/presets/__pycache__/zero.cpython-312.pyc,, +markdown_it/presets/commonmark.py,sha256=pqVnOnMmCmiZWHvNnXx4E1FS8VV07jcqUW1EsHuv9rE,2868 +markdown_it/presets/default.py,sha256=TgqnjjHX6SWcElk5yjW1hoP8t2-ESZ0QyrmHprmIL18,1810 +markdown_it/presets/zero.py,sha256=2vETQRRW1v9Ug3TsdRhM9r6wgZRuTcvojwcqDcsZfkI,2112 +markdown_it/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +markdown_it/renderer.py,sha256=jZ62oK-y-qaz8o8TDxCUMvS5OavraJ2-1uaWVqrUCv0,9970 +markdown_it/ruler.py,sha256=J18Pru7u77kqJfnMC5oiFWgnw_58vkbfk5hWQBgED7s,9199 +markdown_it/rules_block/__init__.py,sha256=8su1tOxDw_IR9JSdgqfkGZSNdYpZZCBC9MMmFODdbmE,553 +markdown_it/rules_block/__pycache__/__init__.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/blockquote.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/code.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/fence.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/heading.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/hr.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/html_block.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/lheading.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/list.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/paragraph.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/reference.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/state_block.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/table.cpython-312.pyc,, +markdown_it/rules_block/blockquote.py,sha256=7uymS36dcrned3DsIaRcqcbFU1NlymhvsZpEXTD3_n8,8887 +markdown_it/rules_block/code.py,sha256=ASAnisg4hS2RhnP_7_1_pjx4NbFSYmrs6lHDgtHPXIo,859 +markdown_it/rules_block/fence.py,sha256=BJgU-PqZ4vAlCqGcrc8UtdLpJJyMeRWN-G-Op-zxrMc,2537 +markdown_it/rules_block/heading.py,sha256=e9NnvXLbY1bvowq_Pd4S-g6LbVg3iCx26qzwv3jLUyE,1746 +markdown_it/rules_block/hr.py,sha256=fPJ-tubFKjxJxhKPiTAxVP-_LHYbAq32iZ52J5sFxOU,1226 +markdown_it/rules_block/html_block.py,sha256=wA8pb34LtZr1BkIATgGKQBIGX5jQNOkwZl9UGEqvb5M,2721 +markdown_it/rules_block/lheading.py,sha256=fWoEuUo7S2svr5UMKmyQMkh0hheYAHg2gMM266Mogs4,2625 +markdown_it/rules_block/list.py,sha256=gIodkAJFyOIyKCZCj5lAlL7jIj5kAzrDb-K-2MFNplY,9668 +markdown_it/rules_block/paragraph.py,sha256=pQqTn8yYDI6_mWX-_m6PXY4wvDQB1nZ4dVUp3gKu1GA,1818 +markdown_it/rules_block/reference.py,sha256=qzR-KJ_60W8ZzuwYGLlO1bgHHVQP4qlYG4yFpOpNlsA,6168 +markdown_it/rules_block/state_block.py,sha256=HowsQyy5hGUibH4HRZWKfLIlXeDUnuWL7kpF0-rSwoM,8422 +markdown_it/rules_block/table.py,sha256=Zjkc0378QtfQzrhrNWC2kVYsGnOLaZyD3dXG1ugfX-s,6987 +markdown_it/rules_core/__init__.py,sha256=JZNOpLZ4i1vR56StidUa-A_As1XtbDwQR0iEErOXyOI,394 +markdown_it/rules_core/__pycache__/__init__.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/block.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/inline.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/linkify.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/normalize.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/replacements.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/smartquotes.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/state_core.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/text_join.cpython-312.pyc,, +markdown_it/rules_core/block.py,sha256=0_JY1CUy-H2OooFtIEZAACtuoGUMohgxo4Z6A_UinSg,372 +markdown_it/rules_core/inline.py,sha256=9oWmeBhJHE7x47oJcN9yp6UsAZtrEY_A-VmfoMvKld4,325 +markdown_it/rules_core/linkify.py,sha256=mjQqpk_lHLh2Nxw4UFaLxa47Fgi-OHnmDamlgXnhmv0,5141 +markdown_it/rules_core/normalize.py,sha256=qVkBO4elitPzyP_sQENho-ycUl8s4eNZ1zZrsR2AAgk,402 +markdown_it/rules_core/replacements.py,sha256=NHL9MOuEnPuMFPLDtTYDK9yj7F2FSleMr6bPro-ciaQ,3470 +markdown_it/rules_core/smartquotes.py,sha256=CtawEcTHYgzIWZwxIGs8e8oSKhm0B7th2305I3FNEc0,7443 +markdown_it/rules_core/state_core.py,sha256=HqWZCUr5fW7xG6jeQZDdO0hE9hxxyl3_-bawgOy57HY,570 +markdown_it/rules_core/text_join.py,sha256=JVuq_27LoI0IjJDmCXOuRiTs1rmSFhFUUjh6MdF_YCk,1172 +markdown_it/rules_inline/__init__.py,sha256=Zvl8P8V830vDhcQKEleLKZ_paC-ypTn7eWpmFa9yySQ,696 +markdown_it/rules_inline/__pycache__/__init__.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/autolink.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/backticks.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/balance_pairs.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/emphasis.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/entity.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/escape.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/fragments_join.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/html_inline.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/image.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/link.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/linkify.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/newline.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/state_inline.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/strikethrough.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/text.cpython-312.pyc,, +markdown_it/rules_inline/autolink.py,sha256=l4EY7OLzuda350cT6Du_dggEwcb96TvD7YPXf2H6P1M,2079 +markdown_it/rules_inline/backticks.py,sha256=J7bezjjNxiXlKqvHc0fJkHZwH7-2nBsXVjcKydk8E4M,2037 +markdown_it/rules_inline/balance_pairs.py,sha256=vifasmne02sNaBBwuZsA4yI02vmv1gvVN4qR-b9m62E,4851 +markdown_it/rules_inline/emphasis.py,sha256=7aDLZx0Jlekuvbu3uEUTDhJp00Z0Pj6g4C3-VLhI8Co,3123 +markdown_it/rules_inline/entity.py,sha256=CE8AIGMi5isEa24RNseo0wRmTTaj5YLbgTFdDmBesAU,1651 +markdown_it/rules_inline/escape.py,sha256=5DEa7O6ByUfXdXZudcF7JZwLxXG1njAuXIOUsNDPPqU,1658 +markdown_it/rules_inline/fragments_join.py,sha256=_3JbwWYJz74gRHeZk6T8edVJT2IVSsi7FfmJJlieQlA,1493 +markdown_it/rules_inline/html_inline.py,sha256=SBg6HR0HRqCdrkkec0dfOYuQdAqyfeLRFLeQggtgjvg,1130 +markdown_it/rules_inline/image.py,sha256=AMO7kls5c-C4A_S2rBiIlKD8BQ8vIgyWUX7vCpXy_Qs,4135 +markdown_it/rules_inline/link.py,sha256=wRdTMxjNYFiV6uouZMML3fIPvyFrPtMHWzJNBQcQLV0,4318 +markdown_it/rules_inline/linkify.py,sha256=gmHw59SsMQLImv6v1RkDY9lcQAmTN-UZ4GwRFiR8jlg,1704 +markdown_it/rules_inline/newline.py,sha256=LEIhBB_3PPLeCAgaC2naheMjW5N6b9UaAB6sh47Ckz8,1296 +markdown_it/rules_inline/state_inline.py,sha256=rXmMX0P0pCf-v-013YB24MBQxMn2dJhoSZQMNYAZ8HQ,5101 +markdown_it/rules_inline/strikethrough.py,sha256=pwcPlyhkh5pqFVxRCSrdW5dNCIOtU4eDit7TVDTPIVA,3214 +markdown_it/rules_inline/text.py,sha256=GwmMVZziAmhj48l9VaXAXwzzUKDkhaA14thv-TCaS2M,901 +markdown_it/token.py,sha256=NEvuoYAeDh8_6zT6fukzdoncusVOjyUKw2zjsNgZmp4,6439 +markdown_it/tree.py,sha256=YxSqq3qSuhHHm1nQpPUhyDA4VIWHu_G_92bKdUcXXGM,11421 +markdown_it/utils.py,sha256=zPoQ8lhvxtJfg6iNSim0LcnAL0Y4XnV3G4DIIKmL8OU,5365 +markdown_it_py-3.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +markdown_it_py-3.0.0.dist-info/LICENSE,sha256=SiJg1uLND1oVGh6G2_59PtVSseK-q_mUHBulxJy85IQ,1078 +markdown_it_py-3.0.0.dist-info/LICENSE.markdown-it,sha256=eSxIxahJoV_fnjfovPnm0d0TsytGxkKnSKCkapkZ1HM,1073 +markdown_it_py-3.0.0.dist-info/METADATA,sha256=0-kME4KQNSCGPzfSEFgQc8MhUd5cmG-LO007BFk3_fw,6940 +markdown_it_py-3.0.0.dist-info/RECORD,, +markdown_it_py-3.0.0.dist-info/WHEEL,sha256=4TfKIB_xu-04bc2iKz6_zFt-gEFEEDU_31HGhqzOCE8,81 +markdown_it_py-3.0.0.dist-info/entry_points.txt,sha256=T81l7fHQ3pllpQ4wUtQK6a8g_p6wxQbnjKVHCk2WMG4,58 diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/WHEEL new file mode 100644 index 0000000..668ba4d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.7.1 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/entry_points.txt new file mode 100644 index 0000000..7d829cd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-3.0.0.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +markdown-it=markdown_it.cli.parse:main + diff --git a/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/LICENSE b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/LICENSE new file mode 100644 index 0000000..2a920c5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/LICENSE @@ -0,0 +1,46 @@ +Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin. +Copyright (c) 2021 Taneli Hukkinen + +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. + +-------------------------------------------------------------------------------- + +.parse() is based on Joyent's node.js `url` code: + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +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/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/METADATA b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/METADATA new file mode 100644 index 0000000..b4670e8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/METADATA @@ -0,0 +1,32 @@ +Metadata-Version: 2.1 +Name: mdurl +Version: 0.1.2 +Summary: Markdown URL utilities +Keywords: markdown,commonmark +Author-email: Taneli Hukkinen +Requires-Python: >=3.7 +Description-Content-Type: text/markdown +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: MacOS +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: POSIX :: Linux +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Typing :: Typed +Project-URL: Homepage, https://github.com/executablebooks/mdurl + +# mdurl + +[![Build Status](https://github.com/executablebooks/mdurl/workflows/Tests/badge.svg?branch=master)](https://github.com/executablebooks/mdurl/actions?query=workflow%3ATests+branch%3Amaster+event%3Apush) +[![codecov.io](https://codecov.io/gh/executablebooks/mdurl/branch/master/graph/badge.svg)](https://codecov.io/gh/executablebooks/mdurl) +[![PyPI version](https://img.shields.io/pypi/v/mdurl)](https://pypi.org/project/mdurl) + +This is a Python port of the JavaScript [mdurl](https://www.npmjs.com/package/mdurl) package. +See the [upstream README.md file](https://github.com/markdown-it/mdurl/blob/master/README.md) for API documentation. + diff --git a/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/RECORD b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/RECORD new file mode 100644 index 0000000..33e97b0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/RECORD @@ -0,0 +1,18 @@ +mdurl-0.1.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +mdurl-0.1.2.dist-info/LICENSE,sha256=fGBd9uKGZ6lgMRjpgnT2SknOPu0NJvzM6VNKNF4O-VU,2338 +mdurl-0.1.2.dist-info/METADATA,sha256=tTsp1I9Jk2cFP9o8gefOJ9JVg4Drv4PmYCOwLrfd0l0,1638 +mdurl-0.1.2.dist-info/RECORD,, +mdurl-0.1.2.dist-info/WHEEL,sha256=4TfKIB_xu-04bc2iKz6_zFt-gEFEEDU_31HGhqzOCE8,81 +mdurl/__init__.py,sha256=1vpE89NyXniIRZNC_4f6BPm3Ub4bPntjfyyhLRR7opU,547 +mdurl/__pycache__/__init__.cpython-312.pyc,, +mdurl/__pycache__/_decode.cpython-312.pyc,, +mdurl/__pycache__/_encode.cpython-312.pyc,, +mdurl/__pycache__/_format.cpython-312.pyc,, +mdurl/__pycache__/_parse.cpython-312.pyc,, +mdurl/__pycache__/_url.cpython-312.pyc,, +mdurl/_decode.py,sha256=3Q_gDQqU__TvDbu7x-b9LjbVl4QWy5g_qFwljcuvN_Y,3004 +mdurl/_encode.py,sha256=goJLUFt1h4rVZNqqm9t15Nw2W-bFXYQEy3aR01ImWvs,2602 +mdurl/_format.py,sha256=xZct0mdePXA0H3kAqxjGtlB5O86G35DAYMGkA44CmB4,626 +mdurl/_parse.py,sha256=ezZSkM2_4NQ2Zx047sEdcJG7NYQRFHiZK7Y8INHFzwY,11374 +mdurl/_url.py,sha256=5kQnRQN2A_G4svLnRzZcG0bfoD9AbBrYDXousDHZ3z0,284 +mdurl/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 diff --git a/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/WHEEL new file mode 100644 index 0000000..668ba4d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.7.1 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/.venv/lib/python3.12/site-packages/mdurl/__init__.py b/.venv/lib/python3.12/site-packages/mdurl/__init__.py new file mode 100644 index 0000000..cdbb640 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/__init__.py @@ -0,0 +1,18 @@ +__all__ = ( + "decode", + "DECODE_DEFAULT_CHARS", + "DECODE_COMPONENT_CHARS", + "encode", + "ENCODE_DEFAULT_CHARS", + "ENCODE_COMPONENT_CHARS", + "format", + "parse", + "URL", +) +__version__ = "0.1.2" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT + +from mdurl._decode import DECODE_COMPONENT_CHARS, DECODE_DEFAULT_CHARS, decode +from mdurl._encode import ENCODE_COMPONENT_CHARS, ENCODE_DEFAULT_CHARS, encode +from mdurl._format import format +from mdurl._parse import url_parse as parse +from mdurl._url import URL diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e5eba21f520eb6ad4db8a4d49e2050352dca5519 GIT binary patch literal 644 zcmZutO>Yx15Vd!+U)h8f34+84i3<^8P0O{aR3(czlucELsC==O*i9Gg-N?I%l%Dzn zxbqwMEu6SoDjYZT*Z8*cC0@5+3#-&|HiABEW$NaVR1jSZB{Eew>i?qPHY&Zr2Ol(!04`4{pU(XVcHB%Z`~X z(xBQKUW?g@zJM!DgFj<*RtbhETgd!8M@O>yz$Q(NP7BGV^MW#zELgcfym*gh%jT>q zUnD!bs4g1zY?e$0oFRXQL`ow;%p$RQOm?Y3aFRj}uIb zmaksf_nv#snS0)6?)=$iGb0$MSKbVLVnOKdbfXQX1mH(M0^kNZg?Pkc5iQ_pj47-W zbqmZiqr!~HPP2exME$g$XQvIke%csD(;ROQOuTUbPT(y(cZr=g3x-+DTY1wZ{j`O* z@n*nTFEURUxm0+EoQFu^&Z7y^rnLWEZs zQHUr^lmIj*Tu}6JKohTCF$x!gVw@Kgy&5P5hZS9LPB8}O{4{(q>d0m~o}Bc}MHd7g zFPtNRrGW1Z5}g-~T@6H>W)*ZVtV|hngj%(Z4 zS)Uv!G`3timfo3X>%X+Q)BE0=PT_T%Gwr(k!<4ST*{)cZt?9|XaCMt{WUqV7A$!gB zed+Vp2L5Vm22OWvI+O`qoxkQw84LA|S>{*4)y`jvclO@t&vop7*fEgr7+C8#ly5$C zS9h1my)vAyA5Q60p?B@{yp~N4SzXCvk3d5dr2f}NCAWV8m>Wo{C zN)6Hhn-=)T4#1Q|>(<81={0M6a%A0E|IpczceXre-T!Ohfpa){blqaRvVVDh&fS&` z-`VjA`84sH!~@Im9DAJXf~Ws`fH;s#o6meDM8H}eS{WvEJWepYF2QbvY+FOo%dD(F z3js=F^1=3&BeOiC7B0)PbZvlQt_0E`8+ZeKir67!ST<0*mmuSzK~a7Ru`9j6Wn2Q? zcNaUs3&zxl_n?~WaI2sgXByIG~(tfZLjPO zSTv7R>$y$ipMu6#RgO`W69t;8OL zCtk){b15p@to<6Sb*k1{Rcqe^nyO#f+MiU}@PhbMalXLXDo$6~FYf33Vy^Pb;VQp; zTQ)!ACttOnWb;yx7#(^vAadaoKGBucy%MZXY`;5|q_Z1EVeZJ?ty~Uofa}ju7>m0S5l(|t1azX9!(7vtey?4J?&XOnrXXlY03_+;#(uD zgC8FK(&b4{Wn7two3&Y2cH&lTuC{a4z2@pp9ocZY(l<>w05Lwm(aArpSs)SGYWU2E#gd-~F&@Wytz(-T(>Xow?PKtM#t-ueo}kb?7$b;r4U#_omPI`-dkh zcC3x^&a4C*r-t+3U(M<-n|9;$DP5GHdY5gCRC$asI$A2)@j2Y1%QO#H*`crMqSRcA) zw2##@_v$d68|`B~%)M?*=RW)EnE4E0n7yoeV}ZJo;37=~DNZ6!Y}$7a{o*;}HIO!1 zFh}U5UT;)rNW%f0USO6uBJ>`wR4N&!^erZvV)nyb3eFe&enR_!;s{1X5$@OY>#H{~ z6C||n5cs%3gkFmj&+y35iQy6d@W|-ksbeSoL$41`PANOe*r5~0-#9ToGG4})J_{Uv z|F%y$5Y#|VqZci;-akU>ZK-q(;|3O@d|VU`kskn^cEs2rm>>)o{|&YN1GRmDoL?Z* v#?H1J@)YWK<>mbH%_5A+;qcf0e literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_encode.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_encode.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..33c1aebfec8e8680eb7100a39ac9cef1fb4b5672 GIT binary patch literal 2872 zcmZ`*Z%iA>6`%FmYa6d^Y+M3_OK^e-hQtm*MVEwfabw6u2jmFQ>-mbTjduWp|7CW~ z1++v~6;)0^t)oT_I^74S?FU~^mB@YKzP0^Ssj7rSuC=zbhg2$+Z=7-;+J0#IX6*%X zO2^)r-@JMA=DnHs-pn8D_BsURz18o}bOHK1?dZi=1d0eFlik%&Ylfs#ywVJJ2v z3`sV^YM4zJlctC%$wj!NIbzmm#)Ktljnpv+n=rQoG9ot76yZfKVvnPULo{QjXz2&K z=n$>5j-Cqgq7f)0+G+n)(2tWrJ+e#}tD;w#+K5%;|Jk z$*nMRR=t1NDy%+(L93mw=MfDeE8FxrhiiyN5w)N>yFPN*ep-X{j71aWqUgv$D)TYq*)$7-z!-EqOgEz;cq0w+OeEr(>iE)(^G8vo_RTex& zHD#egR5pQADw`&v->91Lome6(V%4M_yvoE?Lu^)}anc6mKNG>(bP@+eyg-B{A^0vy z&*7LX1*hW#&t&5w4h9x*Y9W}2-wI|H<=J$qH_&q-D8*%bE+fR|g&8ablVX-6g3+pn z1u~0j{S20C-KxWpH()`!Ez)ODeQE%bHpZ5RB-j-)7 z-p-QiNlV_e8Y`Sx^FHiaNk6lk*k_T$yU!usl^cEmTB8XFLVh0OOcYBoA%n#jJv3UV zyPM(D!iWdzV@Ny8tb7n=%0Wmh8xI5J(3zG^qG6d+IK?y%v&rs}fI$jJ-AZ?%WwT-+ z1BzK>=R1M(qQZ$r>bkX=Ju=lpE28Nh1T&0li40mZFm(O-l#NGAd@O-2uPOH4R+W`5%CWw*b}6w*ZAa{T9U{@|xr>Kvl^;NF@iUgIb~m;(_g&hOmZi?>DtQV%_f)Rp;4{y8tp{ldxg$KTEr@PPxDd6JD-MsND2>zzE za54PRaA|Da^~vP=*stCPjRb1&3r~F;-VNb%AMDeXJM`Qcs?;~GbrfC2F~}#A zn=Ret`tAZ(sdp8|9&!cd2x!`|ISZ#BT&nQy0$vM0oGEy=PXYX&fo-A_3+ohf-*(dg`)C;V zIs#g$Qm;|S;&|@vC@z$QCyQI|p0cGU&%xH^$L@1^X8$s>@p)mzw?BY*cW#87fSn)p z8?^&fSvXyKpmLU^mhAewhrUs!{1(y;tfYrl+UaXZa{=S6bUHyU=)-=uS{IE@XF&>% zMhW#q)fr1C5^!VDH&sBm6(jU!t4gGA4niLoT7;-P+);3g1u_DWFrkkg(nTvbRH|oi z^y-c9U^F~96q+2Kh+cg=baPy7tWmGt7&NmceHlLWck_z Ie40A{184le;{X5v literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_format.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_format.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..151fdb057c94dc587b41505e23c416a851fb03a8 GIT binary patch literal 1212 zcmah}OKTHR6ux(6G8xk*)l_O1QbX-#YR&jsiHKNQD{3iPQ7aOrnQ12JJi@(`U_yi- zf=v-@-6UPLxKV$LAWT=~LZKoq+zEB%%5x{Jq%z=v`#9hE&T}50lgR`EdGzLSfd~kF z6Nq~*J5h?2M?fP z)~CC!=j(pab1A6F`6qKzxyhNS$vd}aZvh}ayni>3Ir%_DIAP)aFMvXB`~o*{1Cw1;~o)NrVnq2bK4b5D^T)#Yb3Duf2OG1CS#EH^e#+di+sIj_@8cB=C>0R1q0! zU?Uc7<*^N!@7*5U!LZkeI1#-n5p@iNbwpVH>4Hx*eEvscL}ckd%HUcAEA@ZY1Ej`h z8LA7K#_$b>uQL3U;b*GClrr&rFYnnbPHml9CS{Ud@hzrU9`#+_F_~2Mhz~^Fw?bW} zrcUw}lPut?0uw95W->8p#r7$G2{M`A^P1&3re>H`qStk8j(8CFh47)bjo>`yy8x~54s0yG`tF)aO>D&yYk+7_8L91?OG>}e1IejOZ_x7PXG^Yr>Co>FX;%}T literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_parse.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_parse.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48f84453b820821f71693a7bd3615177bca86c19 GIT binary patch literal 7249 zcmb_BTTmNGlHF44Es#JDu)yeHY!Db^9`+3Qfn|e%umRiP9WQ?9WV&r63ki2OjIC+S zc_ZfHWREvS+)RYqYeyJ1He&F3BSsthvCP-(-p}sEeH>WC((dEK7dP|ap9{R6yNkG= zy{v9^3$w8EbETlFIx8zHD>ExItN53)GBXC{g9jIHB==+3f1nSgl*=9bZ5GF{hZu>G zcmkWk$8j9>H3`j>c3dm&HmvCm88cVO6A?ta^fzyU6NK z^yAfcv_a2nB!VC=TB6BhijA_dRFXlTBy~MHlVHi%1Un4h+6(8;r0rK5FGX9@2U@yX zn_I3lcL!lWcRdlk!K97dmjHaFsXkqIwJ{XxY3%Wbf|suLTxPB`1sgB-T)Hatdg_Bl z5kDg0$3#3J;(sIJJ`pbyakGe5QMdEraL8YaU?zCP)=uQ)W z(VaHPDBWot!s(s>=G0O&P5f;=fF5ELHjb0nxQ5h`_$S1;mei9PXbI9lYN6HLAwXp2 zp&2%MEkS`6CW>Y&(L=Pf7>2)PC0ZoLVG(HnRU{5yDz-FMTpPv^Cd`zJ^hLb$rF-W~ z|IU{|`MQGzHN&TXKjSo=Vp9{TglJ$AQD%~2L?SxFPKv~Iie^RQWQt*v(J2a~38SK( zp`!G}ButC4lL!u4CKxJlok8sS{&zGqnVO?56Xny0cfm(uO1qc(iF#vz`#Bjvq%$uTJ{!+WkMAy zd?2w&>N#MNd>)?Bl9~*`;TavLi>sP_|mLzUA z!io41t12uGD{n2FPQlOUIX&IO>Eo8II6$3Hu)tJQdOP5%6lwPlVE{GNfH-Uv%rs+Q zRWJSn{2DnUeULM5$FC|o180ak{&GL+xRx^j4^pH;Se$N?oYkm6VjfJ=LN#Y#+$?f5 zQrR{R=|Q5!qeVA?W|2qQQb?6D=%1jgI0J2BJqi+MKvNhirvo=2txOt$M>Xbc#ms4# zw;aKgafY0R{!g~O)m9K&woj0W;D6in1pus!Csc3-B@zm3y1JFO9K`^$Anm9vbEv*mCmyu+&7 zc}6wY%Gfu_Qq8V16{H0$-ON=W8_nUggR{$e%T#ieV7+FLZW%fa4;*Z}!du*?^hzyP zsqByW4m_D-(`xES#tEyrI2Y$ctIpRUSI6?xeM( zf5k>C>>~^w_{pZ9AVNNI13coV0DdaVhd=c5%CkzRw0{ zeHZd|FyE)FFL{DpQY_n^Qprj^oM#gyPmxk7RwK{qktxvzSZh;Ouqgs*kv-Gi?e_=g z42xS8-byVaOQ@7(Kwc1Z42#$)IlD)x(rY+77~DZZp-Wefhpsdqmz%UE6dHT|XDA|m zoJKez-Yw#nMEr_~x4!;c32`k}fD54whlkMa&X1`)Yg05SI^G={ z9RmzeADy0t*`hv{WGKkoiFhiO6zwYNQ21ixOy4jagmr>7G+gpAQ44vt=qTp>5t4#? zBqebpS|r&-q|1T4bAqNAR z?SE-=FX&dA4lnh+XgUFl^I`r(?skq4ynBFM>$f)FysKbqcxiR~Ot-r4P=2Pc@94%p ztlExEUiov;zj$#8e|EXx>CPdz zy^0Uq&mb-b_z!X)1DDY4pN~E|%?~YCHNkhS54bjM=t~Sf`M6Ni`bSqt5;xJ+*dhY~|RPV0XOLYI@4ELw_=3PCslE(O9but<;9{+Cpt-&b01?)juDG zjXGUux4`S?lu!ef_UK5i_hpS&sNTh&d!*-aq1v}zb6~CJy_K5xmWb7wqe7sbH>}rs z=ZVLIFkHJEsygqy|7X;?H!$D1h%dbNm|L89;cWwE{f&zq3*`%jSH6bD&OH9?J&?n^ z0Vd5?JUYdPH!3i%Z{Giy`reKC4z76*uXqnH^{;w+g{F@DiTt_67XGx*a3EiiKldwF zzG}Iliyv4I99#<=SqU6j8Y=`&@F!n-1JcoHM zs;YVa7u5GBaLn$=bv`^gceG&huhw_IuyqQ)06MF0z~Xkp+rgJ*3uTMZyk^9D*HE3U>xXTjB)HNUjD1jp_*$DS3(o&xfrg3Xa*?tcV&nXj0y zJiscsRVrsacXTSvDyIpL|dd8RH0#-h6=<4?_elgMk1m)5}8VoGZ2U)qBRn^H4{z9 zBQ&}O(o?8HB6x;L%*ZkcASkM0@W-HcmQS#^8lx`w);X!sIlmv%8FhXcA7Pye;u4?g zvn9w4gL|uNXaV>FLqjmBa2Tsm`bwTpYtSnZtEyf#DKNXZnw=`Mz%Y?%7OCLari@(^ zHK$lh=}YMWuKEI@z<^^-9KB|5DbI`CLMDt4 z2d$zx#z0cWMw1g1jf5d7K~_>d`rL~ulpx9mk1|0ir;$$rN@3yE92t*nH~0*LP9Nks zazbN*EKYtbr8$HPI$2Jd*)pD;o#gLf9vV&quKdeU(PPfF5dbo{VcuI_RXQM5B;|7_wWDi{Xd-h z*YSTIhiGKgZ(tgoUb2^>ZKqA}%I)KPiiOk256KpcwjJDs?DqN$oC&a78tp-}z{_(2 zUWm~@FKBdx>0SgjOHaV95!jg|G0`xQnwo|OdC@%BKRj~2?__wik3NC$Q>f}elk~lP zX9kBxMg4{04+cm3L`(R>*hr*r^kn#KAAJU)4WjA-szy+C4pkD5r%uQ43M_k4%#`8Uk;9p>4vV$Ql;`@`3GHjWS8TxnSFO*9y_3%AdRTFg_Pw_Ma%YPcCB)2(spbcl9u2 z4lW*AF||p3n=3baFLl=fc}ZpS;-!^}_wSYq&OOUm1!P%>a&>^$JT*TuFYh^0s6M)k zxdgXQp?tjH4g+NfX)d2Y7+<+PkUPE6X?6OyI=xE+MBdmjrxy*`okE2R+@4VB7UaI% naZ~~Pjmv_jlsjRH{eJ=(4eoz~p?c%E9y@jt|8LBI%NFr}uNpg# literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_url.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_url.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db8390718a47f993e29c55a145420b50300a6960 GIT binary patch literal 667 zcmYk4F^|(Q6vyqv&4pYGLMo*vfplUE5{>RyPq(r_1&9+U1C}rLHGw1!wo@sm+W?7y z{XPTYqcE1Cvc!ZK*pLbf6L!-^c=-GG{(jGipZ#Sp2!I*SKfajVf&hHC!FKdofU83T zmw*Bab5Ot-Ld#C>6mIN7;D85!y6*r*%>C@PH8E;>q4(1UA=JC1EV&{oCi!ON8pi*11>;X(WxMeANtE(}MU>42IVaI$ z!C$dN$>=N-Y*uHKMUy!z=TV-WMpdIyUf!P^97Zxz>|RBZ*JQ?IRM1-F5jHZZ8sV9J z*J42)75uT{N-@{!!b8W3gvK^U#32Y2=p+A^ZmJ`~bIqdp_LzaQ6=|)4K2< D;AXAo literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/mdurl/_decode.py b/.venv/lib/python3.12/site-packages/mdurl/_decode.py new file mode 100644 index 0000000..9b50a2d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/_decode.py @@ -0,0 +1,104 @@ +from __future__ import annotations + +from collections.abc import Sequence +import functools +import re + +DECODE_DEFAULT_CHARS = ";/?:@&=+$,#" +DECODE_COMPONENT_CHARS = "" + +decode_cache: dict[str, list[str]] = {} + + +def get_decode_cache(exclude: str) -> Sequence[str]: + if exclude in decode_cache: + return decode_cache[exclude] + + cache: list[str] = [] + decode_cache[exclude] = cache + + for i in range(128): + ch = chr(i) + cache.append(ch) + + for i in range(len(exclude)): + ch_code = ord(exclude[i]) + cache[ch_code] = "%" + ("0" + hex(ch_code)[2:].upper())[-2:] + + return cache + + +# Decode percent-encoded string. +# +def decode(string: str, exclude: str = DECODE_DEFAULT_CHARS) -> str: + cache = get_decode_cache(exclude) + repl_func = functools.partial(repl_func_with_cache, cache=cache) + return re.sub(r"(%[a-f0-9]{2})+", repl_func, string, flags=re.IGNORECASE) + + +def repl_func_with_cache(match: re.Match, cache: Sequence[str]) -> str: + seq = match.group() + result = "" + + i = 0 + l = len(seq) # noqa: E741 + while i < l: + b1 = int(seq[i + 1 : i + 3], 16) + + if b1 < 0x80: + result += cache[b1] + i += 3 # emulate JS for loop statement3 + continue + + if (b1 & 0xE0) == 0xC0 and (i + 3 < l): + # 110xxxxx 10xxxxxx + b2 = int(seq[i + 4 : i + 6], 16) + + if (b2 & 0xC0) == 0x80: + all_bytes = bytes((b1, b2)) + try: + result += all_bytes.decode() + except UnicodeDecodeError: + result += "\ufffd" * 2 + + i += 3 + i += 3 # emulate JS for loop statement3 + continue + + if (b1 & 0xF0) == 0xE0 and (i + 6 < l): + # 1110xxxx 10xxxxxx 10xxxxxx + b2 = int(seq[i + 4 : i + 6], 16) + b3 = int(seq[i + 7 : i + 9], 16) + + if (b2 & 0xC0) == 0x80 and (b3 & 0xC0) == 0x80: + all_bytes = bytes((b1, b2, b3)) + try: + result += all_bytes.decode() + except UnicodeDecodeError: + result += "\ufffd" * 3 + + i += 6 + i += 3 # emulate JS for loop statement3 + continue + + if (b1 & 0xF8) == 0xF0 and (i + 9 < l): + # 111110xx 10xxxxxx 10xxxxxx 10xxxxxx + b2 = int(seq[i + 4 : i + 6], 16) + b3 = int(seq[i + 7 : i + 9], 16) + b4 = int(seq[i + 10 : i + 12], 16) + + if (b2 & 0xC0) == 0x80 and (b3 & 0xC0) == 0x80 and (b4 & 0xC0) == 0x80: + all_bytes = bytes((b1, b2, b3, b4)) + try: + result += all_bytes.decode() + except UnicodeDecodeError: + result += "\ufffd" * 4 + + i += 9 + i += 3 # emulate JS for loop statement3 + continue + + result += "\ufffd" + i += 3 # emulate JS for loop statement3 + + return result diff --git a/.venv/lib/python3.12/site-packages/mdurl/_encode.py b/.venv/lib/python3.12/site-packages/mdurl/_encode.py new file mode 100644 index 0000000..bc2e5b9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/_encode.py @@ -0,0 +1,85 @@ +from __future__ import annotations + +from collections.abc import Sequence +from string import ascii_letters, digits, hexdigits +from urllib.parse import quote as encode_uri_component + +ASCII_LETTERS_AND_DIGITS = ascii_letters + digits + +ENCODE_DEFAULT_CHARS = ";/?:@&=+$,-_.!~*'()#" +ENCODE_COMPONENT_CHARS = "-_.!~*'()" + +encode_cache: dict[str, list[str]] = {} + + +# Create a lookup array where anything but characters in `chars` string +# and alphanumeric chars is percent-encoded. +def get_encode_cache(exclude: str) -> Sequence[str]: + if exclude in encode_cache: + return encode_cache[exclude] + + cache: list[str] = [] + encode_cache[exclude] = cache + + for i in range(128): + ch = chr(i) + + if ch in ASCII_LETTERS_AND_DIGITS: + # always allow unencoded alphanumeric characters + cache.append(ch) + else: + cache.append("%" + ("0" + hex(i)[2:].upper())[-2:]) + + for i in range(len(exclude)): + cache[ord(exclude[i])] = exclude[i] + + return cache + + +# Encode unsafe characters with percent-encoding, skipping already +# encoded sequences. +# +# - string - string to encode +# - exclude - list of characters to ignore (in addition to a-zA-Z0-9) +# - keepEscaped - don't encode '%' in a correct escape sequence (default: true) +def encode( + string: str, exclude: str = ENCODE_DEFAULT_CHARS, *, keep_escaped: bool = True +) -> str: + result = "" + + cache = get_encode_cache(exclude) + + l = len(string) # noqa: E741 + i = 0 + while i < l: + code = ord(string[i]) + + # % + if keep_escaped and code == 0x25 and i + 2 < l: + if all(c in hexdigits for c in string[i + 1 : i + 3]): + result += string[i : i + 3] + i += 2 + i += 1 # JS for loop statement3 + continue + + if code < 128: + result += cache[code] + i += 1 # JS for loop statement3 + continue + + if code >= 0xD800 and code <= 0xDFFF: + if code >= 0xD800 and code <= 0xDBFF and i + 1 < l: + next_code = ord(string[i + 1]) + if next_code >= 0xDC00 and next_code <= 0xDFFF: + result += encode_uri_component(string[i] + string[i + 1]) + i += 1 + i += 1 # JS for loop statement3 + continue + result += "%EF%BF%BD" + i += 1 # JS for loop statement3 + continue + + result += encode_uri_component(string[i]) + i += 1 # JS for loop statement3 + + return result diff --git a/.venv/lib/python3.12/site-packages/mdurl/_format.py b/.venv/lib/python3.12/site-packages/mdurl/_format.py new file mode 100644 index 0000000..12524ca --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/_format.py @@ -0,0 +1,27 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from mdurl._url import URL + + +def format(url: URL) -> str: # noqa: A001 + result = "" + + result += url.protocol or "" + result += "//" if url.slashes else "" + result += url.auth + "@" if url.auth else "" + + if url.hostname and ":" in url.hostname: + # ipv6 address + result += "[" + url.hostname + "]" + else: + result += url.hostname or "" + + result += ":" + url.port if url.port else "" + result += url.pathname or "" + result += url.search or "" + result += url.hash or "" + + return result diff --git a/.venv/lib/python3.12/site-packages/mdurl/_parse.py b/.venv/lib/python3.12/site-packages/mdurl/_parse.py new file mode 100644 index 0000000..ffeeac7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/_parse.py @@ -0,0 +1,304 @@ +# Copyright Joyent, Inc. and other Node contributors. +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to permit +# persons to whom the Software is furnished to do so, subject to the +# following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +# USE OR OTHER DEALINGS IN THE SOFTWARE. + + +# Changes from joyent/node: +# +# 1. No leading slash in paths, +# e.g. in `url.parse('http://foo?bar')` pathname is ``, not `/` +# +# 2. Backslashes are not replaced with slashes, +# so `http:\\example.org\` is treated like a relative path +# +# 3. Trailing colon is treated like a part of the path, +# i.e. in `http://example.org:foo` pathname is `:foo` +# +# 4. Nothing is URL-encoded in the resulting object, +# (in joyent/node some chars in auth and paths are encoded) +# +# 5. `url.parse()` does not have `parseQueryString` argument +# +# 6. Removed extraneous result properties: `host`, `path`, `query`, etc., +# which can be constructed using other parts of the url. + +from __future__ import annotations + +from collections import defaultdict +import re + +from mdurl._url import URL + +# Reference: RFC 3986, RFC 1808, RFC 2396 + +# define these here so at least they only have to be +# compiled once on the first module load. +PROTOCOL_PATTERN = re.compile(r"^([a-z0-9.+-]+:)", flags=re.IGNORECASE) +PORT_PATTERN = re.compile(r":[0-9]*$") + +# Special case for a simple path URL +SIMPLE_PATH_PATTERN = re.compile(r"^(//?(?!/)[^?\s]*)(\?[^\s]*)?$") + +# RFC 2396: characters reserved for delimiting URLs. +# We actually just auto-escape these. +DELIMS = ("<", ">", '"', "`", " ", "\r", "\n", "\t") + +# RFC 2396: characters not allowed for various reasons. +UNWISE = ("{", "}", "|", "\\", "^", "`") + DELIMS + +# Allowed by RFCs, but cause of XSS attacks. Always escape these. +AUTO_ESCAPE = ("'",) + UNWISE +# Characters that are never ever allowed in a hostname. +# Note that any invalid chars are also handled, but these +# are the ones that are *expected* to be seen, so we fast-path +# them. +NON_HOST_CHARS = ("%", "/", "?", ";", "#") + AUTO_ESCAPE +HOST_ENDING_CHARS = ("/", "?", "#") +HOSTNAME_MAX_LEN = 255 +HOSTNAME_PART_PATTERN = re.compile(r"^[+a-z0-9A-Z_-]{0,63}$") +HOSTNAME_PART_START = re.compile(r"^([+a-z0-9A-Z_-]{0,63})(.*)$") +# protocols that can allow "unsafe" and "unwise" chars. + +# protocols that never have a hostname. +HOSTLESS_PROTOCOL = defaultdict( + bool, + { + "javascript": True, + "javascript:": True, + }, +) +# protocols that always contain a // bit. +SLASHED_PROTOCOL = defaultdict( + bool, + { + "http": True, + "https": True, + "ftp": True, + "gopher": True, + "file": True, + "http:": True, + "https:": True, + "ftp:": True, + "gopher:": True, + "file:": True, + }, +) + + +class MutableURL: + def __init__(self) -> None: + self.protocol: str | None = None + self.slashes: bool = False + self.auth: str | None = None + self.port: str | None = None + self.hostname: str | None = None + self.hash: str | None = None + self.search: str | None = None + self.pathname: str | None = None + + def parse(self, url: str, slashes_denote_host: bool) -> "MutableURL": + lower_proto = "" + slashes = False + rest = url + + # trim before proceeding. + # This is to support parse stuff like " http://foo.com \n" + rest = rest.strip() + + if not slashes_denote_host and len(url.split("#")) == 1: + # Try fast path regexp + simple_path = SIMPLE_PATH_PATTERN.match(rest) + if simple_path: + self.pathname = simple_path.group(1) + if simple_path.group(2): + self.search = simple_path.group(2) + return self + + proto = "" + proto_match = PROTOCOL_PATTERN.match(rest) + if proto_match: + proto = proto_match.group() + lower_proto = proto.lower() + self.protocol = proto + rest = rest[len(proto) :] + + # figure out if it's got a host + # user@server is *always* interpreted as a hostname, and url + # resolution will treat //foo/bar as host=foo,path=bar because that's + # how the browser resolves relative URLs. + if slashes_denote_host or proto or re.search(r"^//[^@/]+@[^@/]+", rest): + slashes = rest.startswith("//") + if slashes and not (proto and HOSTLESS_PROTOCOL[proto]): + rest = rest[2:] + self.slashes = True + + if not HOSTLESS_PROTOCOL[proto] and ( + slashes or (proto and not SLASHED_PROTOCOL[proto]) + ): + + # there's a hostname. + # the first instance of /, ?, ;, or # ends the host. + # + # If there is an @ in the hostname, then non-host chars *are* allowed + # to the left of the last @ sign, unless some host-ending character + # comes *before* the @-sign. + # URLs are obnoxious. + # + # ex: + # http://a@b@c/ => user:a@b host:c + # http://a@b?@c => user:a host:c path:/?@c + + # v0.12 TODO(isaacs): This is not quite how Chrome does things. + # Review our test case against browsers more comprehensively. + + # find the first instance of any hostEndingChars + host_end = -1 + for i in range(len(HOST_ENDING_CHARS)): + hec = rest.find(HOST_ENDING_CHARS[i]) + if hec != -1 and (host_end == -1 or hec < host_end): + host_end = hec + + # at this point, either we have an explicit point where the + # auth portion cannot go past, or the last @ char is the decider. + if host_end == -1: + # atSign can be anywhere. + at_sign = rest.rfind("@") + else: + # atSign must be in auth portion. + # http://a@b/c@d => host:b auth:a path:/c@d + at_sign = rest.rfind("@", 0, host_end + 1) + + # Now we have a portion which is definitely the auth. + # Pull that off. + if at_sign != -1: + auth = rest[:at_sign] + rest = rest[at_sign + 1 :] + self.auth = auth + + # the host is the remaining to the left of the first non-host char + host_end = -1 + for i in range(len(NON_HOST_CHARS)): + hec = rest.find(NON_HOST_CHARS[i]) + if hec != -1 and (host_end == -1 or hec < host_end): + host_end = hec + # if we still have not hit it, then the entire thing is a host. + if host_end == -1: + host_end = len(rest) + + if host_end > 0 and rest[host_end - 1] == ":": + host_end -= 1 + host = rest[:host_end] + rest = rest[host_end:] + + # pull out port. + self.parse_host(host) + + # we've indicated that there is a hostname, + # so even if it's empty, it has to be present. + self.hostname = self.hostname or "" + + # if hostname begins with [ and ends with ] + # assume that it's an IPv6 address. + ipv6_hostname = self.hostname.startswith("[") and self.hostname.endswith( + "]" + ) + + # validate a little. + if not ipv6_hostname: + hostparts = self.hostname.split(".") + l = len(hostparts) # noqa: E741 + i = 0 + while i < l: + part = hostparts[i] + if not part: + i += 1 # emulate statement3 in JS for loop + continue + if not HOSTNAME_PART_PATTERN.search(part): + newpart = "" + k = len(part) + j = 0 + while j < k: + if ord(part[j]) > 127: + # we replace non-ASCII char with a temporary placeholder + # we need this to make sure size of hostname is not + # broken by replacing non-ASCII by nothing + newpart += "x" + else: + newpart += part[j] + j += 1 # emulate statement3 in JS for loop + + # we test again with ASCII char only + if not HOSTNAME_PART_PATTERN.search(newpart): + valid_parts = hostparts[:i] + not_host = hostparts[i + 1 :] + bit = HOSTNAME_PART_START.search(part) + if bit: + valid_parts.append(bit.group(1)) + not_host.insert(0, bit.group(2)) + if not_host: + rest = ".".join(not_host) + rest + self.hostname = ".".join(valid_parts) + break + i += 1 # emulate statement3 in JS for loop + + if len(self.hostname) > HOSTNAME_MAX_LEN: + self.hostname = "" + + # strip [ and ] from the hostname + # the host field still retains them, though + if ipv6_hostname: + self.hostname = self.hostname[1:-1] + + # chop off from the tail first. + hash = rest.find("#") # noqa: A001 + if hash != -1: + # got a fragment string. + self.hash = rest[hash:] + rest = rest[:hash] + qm = rest.find("?") + if qm != -1: + self.search = rest[qm:] + rest = rest[:qm] + if rest: + self.pathname = rest + if SLASHED_PROTOCOL[lower_proto] and self.hostname and not self.pathname: + self.pathname = "" + + return self + + def parse_host(self, host: str) -> None: + port_match = PORT_PATTERN.search(host) + if port_match: + port = port_match.group() + if port != ":": + self.port = port[1:] + host = host[: -len(port)] + if host: + self.hostname = host + + +def url_parse(url: URL | str, *, slashes_denote_host: bool = False) -> URL: + if isinstance(url, URL): + return url + u = MutableURL() + u.parse(url, slashes_denote_host) + return URL( + u.protocol, u.slashes, u.auth, u.port, u.hostname, u.hash, u.search, u.pathname + ) diff --git a/.venv/lib/python3.12/site-packages/mdurl/_url.py b/.venv/lib/python3.12/site-packages/mdurl/_url.py new file mode 100644 index 0000000..f866e7a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/_url.py @@ -0,0 +1,14 @@ +from __future__ import annotations + +from typing import NamedTuple + + +class URL(NamedTuple): + protocol: str | None + slashes: bool + auth: str | None + port: str | None + hostname: str | None + hash: str | None # noqa: A003 + search: str | None + pathname: str | None diff --git a/.venv/lib/python3.12/site-packages/mdurl/py.typed b/.venv/lib/python3.12/site-packages/mdurl/py.typed new file mode 100644 index 0000000..7632ecf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561 diff --git a/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt new file mode 100644 index 0000000..dda2ac3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt @@ -0,0 +1,796 @@ +@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 +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 +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 +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/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt new file mode 100644 index 0000000..8e7b65e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.2.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/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA new file mode 100644 index 0000000..6141107 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA @@ -0,0 +1,89 @@ +Metadata-Version: 2.1 +Name: pip +Version: 24.2 +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 :: 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/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD new file mode 100644 index 0000000..d8b72ce --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD @@ -0,0 +1,853 @@ +../../../bin/pip,sha256=17J764YkCaumAX87V5e4oS6-3Lx4-jRIfdROeBvFjcg,255 +../../../bin/pip3,sha256=17J764YkCaumAX87V5e4oS6-3Lx4-jRIfdROeBvFjcg,255 +../../../bin/pip3.12,sha256=17J764YkCaumAX87V5e4oS6-3Lx4-jRIfdROeBvFjcg,255 +pip-24.2.dist-info/AUTHORS.txt,sha256=KDa8Pd3GDeKSogF6yFW0l9A9eMneLDOFrcIDqkL8G8s,10868 +pip-24.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-24.2.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-24.2.dist-info/METADATA,sha256=PhzCxQxIhsnZ871cPUe3Hew9PhhpgflLbfqU3WizZqM,3624 +pip-24.2.dist-info/RECORD,, +pip-24.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-24.2.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91 +pip-24.2.dist-info/entry_points.txt,sha256=eeIjuzfnfR2PrhbjnbzFU6MnSS70kZLxwaHHq6M-bD0,87 +pip-24.2.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=EQxEGXUQIu-9fNJxVEK74ufx_fTk_HpYV9lAbw-WWbs,355 +pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 +pip/__pip-runner__.py,sha256=cPPWuJ6NK_k-GzfvlejLFgwzmYUROmpAR6QC3Q-vkXQ,1450 +pip/__pycache__/__init__.cpython-312.pyc,, +pip/__pycache__/__main__.cpython-312.pyc,, +pip/__pycache__/__pip-runner__.cpython-312.pyc,, +pip/_internal/__init__.py,sha256=MfcoOluDZ8QMCFYal04IqOJ9q6m2V7a0aOsnI-WOxUo,513 +pip/_internal/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/__pycache__/build_env.cpython-312.pyc,, +pip/_internal/__pycache__/cache.cpython-312.pyc,, +pip/_internal/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/__pycache__/exceptions.cpython-312.pyc,, +pip/_internal/__pycache__/main.cpython-312.pyc,, +pip/_internal/__pycache__/pyproject.cpython-312.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-312.pyc,, +pip/_internal/build_env.py,sha256=QiusW8QEaj387y0hdRqVbuelHSHGYcT7WzVckbmMhR0,10420 +pip/_internal/cache.py,sha256=Jb698p5PNigRtpW5o26wQNkkUv4MnQ94mc471wL63A0,10369 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-312.pyc,, +pip/_internal/cli/__pycache__/index_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-312.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc,, +pip/_internal/cli/autocompletion.py,sha256=Lli3Mr6aDNu7ZkJJFFvwD2-hFxNI6Avz8OwMyS5TVrs,6865 +pip/_internal/cli/base_command.py,sha256=F8nUcSM-Y-MQljJUe724-yxmc5viFXHyM_zH70NmIh4,8289 +pip/_internal/cli/cmdoptions.py,sha256=mDqBr0d0hoztbRJs-PWtcKpqNAc7khU6ZpoesZKocT8,30110 +pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774 +pip/_internal/cli/index_command.py,sha256=YIJ84cfYcbDBACnB8eoDgqjYJU6GpiWP2Rh7Ij-Xyak,5633 +pip/_internal/cli/main.py,sha256=BDZef-bWe9g9Jpr4OVs4dDf-845HJsKw835T7AqEnAc,2817 +pip/_internal/cli/main_parser.py,sha256=laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn-vmL0GG90w,4338 +pip/_internal/cli/parser.py,sha256=QAkY6s8N-AD7w5D2PQm2Y8C2MIJSv7iuAeNjOMvDBUA,10811 +pip/_internal/cli/progress_bars.py,sha256=0FAf7eN67KnIv_gZQhTWSnKXXUzQko1ftGXEoLe5Yec,2713 +pip/_internal/cli/req_command.py,sha256=DqeFhmUMs6o6Ev8qawAcOoYNdAZsfyKS0MZI5jsJYwQ,12250 +pip/_internal/cli/spinners.py,sha256=hIJ83GerdFgFCdobIA23Jggetegl_uC4Sp586nzFbPE,5118 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882 +pip/_internal/commands/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-312.pyc,, +pip/_internal/commands/__pycache__/check.cpython-312.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-312.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-312.pyc,, +pip/_internal/commands/__pycache__/download.cpython-312.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-312.pyc,, +pip/_internal/commands/__pycache__/help.cpython-312.pyc,, +pip/_internal/commands/__pycache__/index.cpython-312.pyc,, +pip/_internal/commands/__pycache__/inspect.cpython-312.pyc,, +pip/_internal/commands/__pycache__/install.cpython-312.pyc,, +pip/_internal/commands/__pycache__/list.cpython-312.pyc,, +pip/_internal/commands/__pycache__/search.cpython-312.pyc,, +pip/_internal/commands/__pycache__/show.cpython-312.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/commands/cache.py,sha256=xg76_ZFEBC6zoQ3gXLRfMZJft4z2a0RwH4GEFZC6nnU,7944 +pip/_internal/commands/check.py,sha256=Hr_4eiMd9cgVDgEvjtIdw915NmL7ROIWW8enkr8slPQ,2268 +pip/_internal/commands/completion.py,sha256=HT4lD0bgsflHq2IDgYfiEdp7IGGtE7s6MgI3xn0VQEw,4287 +pip/_internal/commands/configuration.py,sha256=n98enwp6y0b5G6fiRQjaZo43FlJKYve_daMhN-4BRNc,9766 +pip/_internal/commands/debug.py,sha256=DNDRgE9YsKrbYzU0s3VKi8rHtKF4X13CJ_br_8PUXO0,6797 +pip/_internal/commands/download.py,sha256=0qB0nys6ZEPsog451lDsjL5Bx7Z97t-B80oFZKhpzKM,5273 +pip/_internal/commands/freeze.py,sha256=2Vt72BYTSm9rzue6d8dNzt8idxWK4Db6Hd-anq7GQ80,3203 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=RAXxmJwFhVb5S1BYzb5ifX3sn9Na8v2CCVYwSMP8pao,4731 +pip/_internal/commands/inspect.py,sha256=PGrY9TRTRCM3y5Ml8Bdk8DEOXquWRfscr4DRo1LOTPc,3189 +pip/_internal/commands/install.py,sha256=iqesiLIZc6Op9uihMQFYRhAA2DQRZUxbM4z1BwXoFls,29428 +pip/_internal/commands/list.py,sha256=RgaIV4kN-eMSpgUAXc-6bjnURzl0v3cRE11xr54O9Cg,12771 +pip/_internal/commands/search.py,sha256=hSGtIHg26LRe468Ly7oZ6gfd9KbTxBRZAAtJc9Um6S4,5628 +pip/_internal/commands/show.py,sha256=IG9L5uo8w6UA4tI_IlmaxLCoNKPa5JNJCljj3NWs0OE,7507 +pip/_internal/commands/uninstall.py,sha256=7pOR7enK76gimyxQbzxcG1OsyLXL3DvX939xmM8Fvtg,3892 +pip/_internal/commands/wheel.py,sha256=eJRhr_qoNNxWAkkdJCNiQM7CXd4E1_YyQhsqJnBPGGg,6414 +pip/_internal/configuration.py,sha256=XkAiBS0hpzsM-LF0Qu5hvPWO_Bs67-oQKRYFBuMbESs,14006 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/distributions/base.py,sha256=QeB9qvKXDIjLdPBDE5fMgpfGqMMCr-govnuoQnGuiF8,1783 +pip/_internal/distributions/installed.py,sha256=QinHFbWAQ8oE0pbD8MFZWkwlnfU1QYTccA1vnhrlYOU,842 +pip/_internal/distributions/sdist.py,sha256=PlcP4a6-R6c98XnOM-b6Lkb3rsvh9iG4ok8shaanrzs,6751 +pip/_internal/distributions/wheel.py,sha256=THBYfnv7VVt8mYhMYUtH13S1E7FDwtDyDfmUcl8ai0E,1317 +pip/_internal/exceptions.py,sha256=6qcW3QgmFVlRxlZvDSLUhSzKJ7_Tedo-lyqWA6NfdAU,25371 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/index/__pycache__/collector.cpython-312.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-312.pyc,, +pip/_internal/index/__pycache__/sources.cpython-312.pyc,, +pip/_internal/index/collector.py,sha256=RdPO0JLAlmyBWPAWYHPyRoGjz3GNAeTngCNkbGey_mE,16265 +pip/_internal/index/package_finder.py,sha256=yRC4xsyudwKnNoU6IXvNoyqYo5ScT7lB6Wa-z2eh7cs,37666 +pip/_internal/index/sources.py,sha256=dJegiR9f86kslaAHcv9-R5L_XBf5Rzm_FkyPteDuPxI,8688 +pip/_internal/locations/__init__.py,sha256=UaAxeZ_f93FyouuFf4p7SXYF-4WstXuEvd3LbmPCAno,14925 +pip/_internal/locations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc,, +pip/_internal/locations/__pycache__/base.cpython-312.pyc,, +pip/_internal/locations/_distutils.py,sha256=H9ZHK_35rdDV1Qsmi4QeaBULjFT4Mbu6QuoVGkJ6QHI,6009 +pip/_internal/locations/_sysconfig.py,sha256=IGzds60qsFneRogC-oeBaY7bEh3lPt_v47kMJChQXsU,7724 +pip/_internal/locations/base.py,sha256=RQiPi1d4FVM2Bxk04dQhXZ2PqkeljEL2fZZ9SYqIQ78,2556 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=9pU3W3s-6HtjFuYhWcLTYVmSaziklPv7k2x8p7X1GmA,4339 +pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/_json.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc,, +pip/_internal/metadata/_json.py,sha256=P0cAJrH_mtmMZvlZ16ZXm_-izA4lpr5wy08laICuiaA,2644 +pip/_internal/metadata/base.py,sha256=ft0K5XNgI4ETqZnRv2-CtvgYiMOMAeGMAzxT-f6VLJA,25298 +pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135 +pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc,, +pip/_internal/metadata/importlib/_compat.py,sha256=c6av8sP8BBjAZuFSJow1iWfygUXNM3xRTCn5nqw6B9M,2796 +pip/_internal/metadata/importlib/_dists.py,sha256=anh0mLI-FYRPUhAdipd0Va3YJJc6HelCKQ0bFhY10a0,8017 +pip/_internal/metadata/importlib/_envs.py,sha256=JHjNfnk9RsjrcQw8dLBqdfBglOKSepEe9aq03B4nRpU,7431 +pip/_internal/metadata/pkg_resources.py,sha256=U07ETAINSGeSRBfWUG93E4tZZbaW_f7PGzEqZN0hulc,10542 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-312.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-312.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-312.pyc,, +pip/_internal/models/__pycache__/index.cpython-312.pyc,, +pip/_internal/models/__pycache__/installation_report.cpython-312.pyc,, +pip/_internal/models/__pycache__/link.cpython-312.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-312.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-312.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-312.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/models/candidate.py,sha256=zzgFRuw_kWPjKpGw7LC0ZUMD2CQ2EberUIYs8izjdCA,753 +pip/_internal/models/direct_url.py,sha256=uBtY2HHd3TO9cKQJWh0ThvE5FRr-MWRYChRU4IG9HZE,6578 +pip/_internal/models/format_control.py,sha256=wtsQqSK9HaUiNxQEuB-C62eVimw6G4_VQFxV9-_KDBE,2486 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/installation_report.py,sha256=zRVZoaz-2vsrezj_H3hLOhMZCK9c7TbzWgC-jOalD00,2818 +pip/_internal/models/link.py,sha256=jHax9O-9zlSzEwjBCDkx0OXjKXwBDwOuPwn-PsR8dCs,21034 +pip/_internal/models/scheme.py,sha256=PakmHJM3e8OOWSZFtfz1Az7f1meONJnkGuQxFlt3wBE,575 +pip/_internal/models/search_scope.py,sha256=67NEnsYY84784S-MM7ekQuo9KXLH-7MzFntXjapvAo0,4531 +pip/_internal/models/selection_prefs.py,sha256=qaFfDs3ciqoXPg6xx45N1jPLqccLJw4N0s4P0PyHTQ8,2015 +pip/_internal/models/target_python.py,sha256=2XaH2rZ5ZF-K5wcJbEMGEl7SqrTToDDNkrtQ2v_v_-Q,4271 +pip/_internal/models/wheel.py,sha256=Odc1NVWL5N-i6A3vFa50BfNvCRlGvGa4som60FQM198,3601 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/network/__pycache__/auth.cpython-312.pyc,, +pip/_internal/network/__pycache__/cache.cpython-312.pyc,, +pip/_internal/network/__pycache__/download.cpython-312.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc,, +pip/_internal/network/__pycache__/session.cpython-312.pyc,, +pip/_internal/network/__pycache__/utils.cpython-312.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc,, +pip/_internal/network/auth.py,sha256=D4gASjUrqoDFlSt6gQ767KAAjv6PUyJU0puDlhXNVRE,20809 +pip/_internal/network/cache.py,sha256=48A971qCzKNFvkb57uGEk7-0xaqPS0HWj2711QNTxkU,3935 +pip/_internal/network/download.py,sha256=FLOP29dPYECBiAi7eEjvAbNkyzaKNqbyjOT2m8HPW8U,6048 +pip/_internal/network/lazy_wheel.py,sha256=2PXVduYZPCPZkkQFe1J1GbfHJWeCU--FXonGyIfw9eU,7638 +pip/_internal/network/session.py,sha256=XmanBKjVwPFmh1iJ58q6TDh9xabH37gREuQJ_feuZGA,18741 +pip/_internal/network/utils.py,sha256=Inaxel-NxBu4PQWkjyErdnfewsFCcgHph7dzR1-FboY,4088 +pip/_internal/network/xmlrpc.py,sha256=sAxzOacJ-N1NXGPvap9jC3zuYWSnnv3GXtgR2-E2APA,1838 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/__pycache__/check.cpython-312.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-312.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc,, +pip/_internal/operations/build/build_tracker.py,sha256=-ARW_TcjHCOX7D2NUOGntB4Fgc6b4aolsXkAK6BWL7w,4774 +pip/_internal/operations/build/metadata.py,sha256=9S0CUD8U3QqZeXp-Zyt8HxwU90lE4QrnYDgrqZDzBnc,1422 +pip/_internal/operations/build/metadata_editable.py,sha256=VLL7LvntKE8qxdhUdEJhcotFzUsOSI8NNS043xULKew,1474 +pip/_internal/operations/build/metadata_legacy.py,sha256=8i6i1QZX9m_lKPStEFsHKM0MT4a-CD408JOw99daLmo,2190 +pip/_internal/operations/build/wheel.py,sha256=sT12FBLAxDC6wyrDorh8kvcZ1jG5qInCRWzzP-UkJiQ,1075 +pip/_internal/operations/build/wheel_editable.py,sha256=yOtoH6zpAkoKYEUtr8FhzrYnkNHQaQBjWQ2HYae1MQg,1417 +pip/_internal/operations/build/wheel_legacy.py,sha256=K-6kNhmj-1xDF45ny1yheMerF0ui4EoQCLzEoHh6-tc,3045 +pip/_internal/operations/check.py,sha256=L24vRL8VWbyywdoeAhM89WCd8zLTnjIbULlKelUgIec,5912 +pip/_internal/operations/freeze.py,sha256=V59yEyCSz_YhZuhH09-6aV_zvYBMrS_IxFFNqn2QzlA,9864 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=PoEsNEPGbIZ2yQphPsmYTKLOCMs4gv5OcCdzW124NcA,1283 +pip/_internal/operations/install/wheel.py,sha256=X5Iz9yUg5LlK5VNQ9g2ikc6dcRu8EPi_SUi5iuEDRgo,27615 +pip/_internal/operations/prepare.py,sha256=joWJwPkuqGscQgVNImLK71e9hRapwKvRCM8HclysmvU,28118 +pip/_internal/pyproject.py,sha256=rw4fwlptDp1hZgYoplwbAGwWA32sWQkp7ysf8Ju6iXc,7287 +pip/_internal/req/__init__.py,sha256=HxBFtZy_BbCclLgr26waMtpzYdO5T3vxePvpGAXSt5s,2653 +pip/_internal/req/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc,, +pip/_internal/req/constructors.py,sha256=qXNZtUqhsXpHxkRaIQhp20_Kz6I88MDKM8SQR9fckIc,18424 +pip/_internal/req/req_file.py,sha256=hnC9Oz-trqGQpuDnCVWqwpJkAvtbCsk7-5k0EWVQhlQ,17687 +pip/_internal/req/req_install.py,sha256=yhT98NGDoAEk03jznTJnYCznzhiMEEA2ocgsUG_dcNU,35788 +pip/_internal/req/req_set.py,sha256=j3esG0s6SzoVReX9rWn4rpYNtyET_fwxbwJPRimvRxo,2858 +pip/_internal/req/req_uninstall.py,sha256=qzDIxJo-OETWqGais7tSMCDcWbATYABT-Tid3ityF0s,23853 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=3HZiJBRd1FTN6jQpI4qRO8-TbLYeIbUTS6PFvXnXs2w,24068 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=DCf669FsqyQY5uqXeePDHQY1e4QO-pBzWH8O0s9-K94,5023 +pip/_internal/resolution/resolvelib/candidates.py,sha256=07CBc85ya3J19XqdvUsLQwtVIxiTYq9km9hbTRh0jb0,19823 +pip/_internal/resolution/resolvelib/factory.py,sha256=mTTq_nG1F9Eq3VnlYPH6Ap-mydcS-mxC5y5L-CLLp80,32459 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=9hrTyQqFvl9I7Tji79F1AxHv39Qh1rkJ_7deSHSMfQc,6383 +pip/_internal/resolution/resolvelib/provider.py,sha256=bcsFnYvlmtB80cwVdW1fIwgol8ZNr1f1VHyRTkz47SM,9935 +pip/_internal/resolution/resolvelib/reporter.py,sha256=00JtoXEkTlw0-rl_sl54d71avwOsJHt9GGHcrj5Sza0,3168 +pip/_internal/resolution/resolvelib/requirements.py,sha256=7JG4Z72e5Yk4vU0S5ulGvbqTy4FMQGYhY5zQhX9zTtY,8065 +pip/_internal/resolution/resolvelib/resolver.py,sha256=nLJOsVMEVi2gQUVJoUFKMZAeu2f7GRMjGMvNSWyz0Bc,12592 +pip/_internal/self_outdated_check.py,sha256=pkjQixuWyQ1vrVxZAaYD6SSHgXuFUnHZybXEWTkh0S0,8145 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-312.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-312.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-312.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/retry.cpython-312.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-312.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/utils/_jaraco_text.py,sha256=M15uUPIh5NpP1tdUGBxRau6q1ZAEtI8-XyLEETscFfE,3350 +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ckkFveBiYQjRWjkNsajt_oWPS57tJvE8XxoC4OIYgCY,2399 +pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=k7Qg_UBAaaTdyq82YVARA6D7RmcGTXGv7fnfcgigj4Q,3707 +pip/_internal/utils/direct_url_helpers.py,sha256=r2MRtkVDACv9AGqYODBUC9CjwgtsUU1s68hmgfCJMtA,3196 +pip/_internal/utils/egg_link.py,sha256=0FePZoUYKv4RGQ2t6x7w5Z427wbA_Uo3WZnAkrgsuqo,2463 +pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169 +pip/_internal/utils/entrypoints.py,sha256=YlhLTRl2oHBAuqhc-zmL7USS67TPWVHImjeAQHreZTQ,3064 +pip/_internal/utils/filesystem.py,sha256=ajvA-q4ocliW9kPp8Yquh-4vssXbu-UKbo5FV9V4X64,4950 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=vUkWq_1pJuzcYNcGKLlQmABoUiisK8noYY1yc8Wq4w4,3734 +pip/_internal/utils/hashes.py,sha256=XGGLL0AG8-RhWnyz87xF6MFZ--BKadHU35D47eApCKI,4972 +pip/_internal/utils/logging.py,sha256=7BFKB1uFjdxD5crM-GtwA5T2qjbQ2LPD-gJDuJeDNTg,11606 +pip/_internal/utils/misc.py,sha256=HR_V97vNTHNzwq01JrnTZtsLLkWAOJ9_EeYfHJZSgDY,23745 +pip/_internal/utils/packaging.py,sha256=iI3LH43lVNR4hWBOqF6lFsZq4aycb2j0UcHlmDmcqUg,2109 +pip/_internal/utils/retry.py,sha256=mhFbykXjhTnZfgzeuy-vl9c8nECnYn_CMtwNJX2tYzQ,1392 +pip/_internal/utils/setuptools_build.py,sha256=ouXpud-jeS8xPyTPsXJ-m34NPvK5os45otAzdSV_IJE,4435 +pip/_internal/utils/subprocess.py,sha256=EsvqSRiSMHF98T8Txmu6NLU3U--MpTTQjtNgKP0P--M,8988 +pip/_internal/utils/temp_dir.py,sha256=5qOXe8M4JeY6vaFQM867d5zkp1bSwMZ-KT5jymmP0Zg,9310 +pip/_internal/utils/unpacking.py,sha256=eyDkSsk4nW8ZfiSjNzJduCznpHyaGHVv3ak_LMGsiEM,11951 +pip/_internal/utils/urls.py,sha256=qceSOZb5lbNDrHNsv7_S4L4Ytszja5NwPKUMnZHbYnM,1599 +pip/_internal/utils/virtualenv.py,sha256=S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU,3456 +pip/_internal/utils/wheel.py,sha256=b442jkydFHjXzDy6cMR7MpzWBJ1Q82hR5F33cmcHV3g,4494 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc,, +pip/_internal/vcs/bazaar.py,sha256=EKStcQaKpNu0NK4p5Q10Oc4xb3DUxFw024XrJy40bFQ,3528 +pip/_internal/vcs/git.py,sha256=3tpc9LQA_J4IVW5r5NvWaaSeDzcmJOrSFZN0J8vIKfU,18177 +pip/_internal/vcs/mercurial.py,sha256=oULOhzJ2Uie-06d1omkL-_Gc6meGaUkyogvqG9ZCyPs,5249 +pip/_internal/vcs/subversion.py,sha256=ddTugHBqHzV3ebKlU5QXHPN4gUqlyXbOx8q8NgXKvs8,11735 +pip/_internal/vcs/versioncontrol.py,sha256=cvf_-hnTAjQLXJ3d17FMNhQfcO1AcKWUF10tfrYyP-c,22440 +pip/_internal/wheel_builder.py,sha256=DL3A8LKeRj_ACp11WS5wSgASgPFqeyAeXJKdXfmaWXU,11799 +pip/_vendor/__init__.py,sha256=JYuAXvClhInxIrA2FTp5p-uuWVL7WV6-vEpTs46-Qh4,4873 +pip/_vendor/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=GiYoagwPEiJ_xR_lbwWGaoCiPtF_rz4isjfjdDAgHU4,676 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737 +pip/_vendor/cachecontrol/adapter.py,sha256=fByO_Pd_EOemjWbuocvBWdN85xT0q_TBm2lxS6vD4fk,6355 +pip/_vendor/cachecontrol/cache.py,sha256=OTQj72tUf8C1uEgczdl3Gc8vkldSzsTITKtDGKMx4z8,1952 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=9AlmmTJc6cslb6k5z_6q0sGPHVrMj8zv-uWy-simmfE,5406 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 +pip/_vendor/cachecontrol/controller.py,sha256=o-ejGJlBmpKK8QQLyTPJj0t7siU8XVHXuV8MCybCxQ8,18575 +pip/_vendor/cachecontrol/filewrapper.py,sha256=STttGmIPBvZzt2b51dUOwoWX5crcMCpKZOisM3f5BNc,4292 +pip/_vendor/cachecontrol/heuristics.py,sha256=IYe4QmHERWsMvtxNrp920WeaIsaTTyqLB14DSheSbtY,4834 +pip/_vendor/cachecontrol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/cachecontrol/serialize.py,sha256=HQd2IllQ05HzPkVLMXTF2uX5mjEQjDBkxCqUJUODpZk,5163 +pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 +pip/_vendor/certifi/__init__.py,sha256=LHXz7E80YJYBzCBv6ZyidQ5-ciYSkSebpY2E5OM0l7o,94 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-312.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=SIupYGAr8HzGP073rsEIaS_sQYIPwzKKjj894DgUmu4,291528 +pip/_vendor/certifi/core.py,sha256=2SRT5rIcQChFDbe37BQa-kULxAgJ8qN6l1jfqTp4HIs,4486 +pip/_vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/distlib/__init__.py,sha256=hJKF7FHoqbmGckncDuEINWo_OYkDNiHODtYXSMcvjcc,625 +pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc,, +pip/_vendor/distlib/compat.py,sha256=Un-uIBvy02w-D267OG4VEhuddqWgKj9nNkxVltAb75w,41487 +pip/_vendor/distlib/database.py,sha256=0V9Qvs0Vrxa2F_-hLWitIyVyRifJ0pCxyOI-kEOBwsA,51965 +pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 +pip/_vendor/distlib/locators.py,sha256=o1r_M86_bRLafSpetmyfX8KRtFu-_Q58abvQrnOSnbA,51767 +pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 +pip/_vendor/distlib/markers.py,sha256=n3DfOh1yvZ_8EW7atMyoYeZFXjYla0Nz0itQlojCd0A,5268 +pip/_vendor/distlib/metadata.py,sha256=pB9WZ9mBfmQxc9OVIldLS5CjOoQRvKAvUwwQyKwKQtQ,39693 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=8_gP9J7_tlNRicnWmPX4ZiDlP5wTwJKDeeg-8_qXUZU,18780 +pip/_vendor/distlib/t32.exe,sha256=a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS-XrqvJQVs,97792 +pip/_vendor/distlib/t64-arm.exe,sha256=68TAa32V504xVBnufojh0PcenpR3U4wAqTqf-MZqbPw,182784 +pip/_vendor/distlib/t64.exe,sha256=gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc,108032 +pip/_vendor/distlib/util.py,sha256=XSznxEi_i3T20UJuaVc0qXHz5ksGUCW1khYlBprN_QE,67530 +pip/_vendor/distlib/version.py,sha256=9pXkduchve_aN7JG6iL9VTYV_kqNSGoc2Dwl8JuySnQ,23747 +pip/_vendor/distlib/w32.exe,sha256=R4csx3-OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks,91648 +pip/_vendor/distlib/w64-arm.exe,sha256=xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4,168448 +pip/_vendor/distlib/w64.exe,sha256=ejGf-rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU-K0,101888 +pip/_vendor/distlib/wheel.py,sha256=FVQCve8u-L0QYk5-YTZc7s4WmNQdvjRWTK08KXzZVX4,43958 +pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981 +pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64 +pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/distro.cpython-312.pyc,, +pip/_vendor/distro/distro.py,sha256=XqbefacAhDT4zr_trnbA15eY8vdK4GTghgmvUGrEM_4,49430 +pip/_vendor/distro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc,, +pip/_vendor/idna/codec.py,sha256=PS6m-XmdST7Wj7J7ulRMakPDt5EBJyYrT3CPtjh-7t4,3426 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=lyhpoe2vulEaB_65xhXmoKgO-xUqFDvcwxu5hpNNO4E,12663 +pip/_vendor/idna/idnadata.py,sha256=dqRwytzkjIHMBa2R1lYvHDwACenZPt8eGVu1Y8UBE-E,78320 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=Tkt0KnIeyIlnHddOaz9WSkkislNgokJAuE-p5GorMqo,21 +pip/_vendor/idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/uts46data.py,sha256=1KuksWqLuccPXm2uyRVkhfiFLNIhM_H2m4azCcnOqEU,206503 +pip/_vendor/msgpack/__init__.py,sha256=gsMP7JTECZNUSjvOyIbdhNOkpB9Z8BcGwabVGY2UcdQ,1077 +pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc,, +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=fKp00BqDLjUtZnPd70Llr138zk8JsCuSpJkkZ5S4dt8,5629 +pip/_vendor/msgpack/fallback.py,sha256=wdUWJkWX2gzfRW9BBCTOuIE1Wvrf5PtBtR8ZtY7G_EE,33175 +pip/_vendor/packaging/__init__.py,sha256=dtw2bNmWCQ9WnMoK3bk_elL1svSlikXtLpZhCFIB9SE,496 +pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-312.pyc,, +pip/_vendor/packaging/_elffile.py,sha256=_LcJW4YNKywYsl4169B2ukKRqwxjxst_8H0FRVQKlz8,3282 +pip/_vendor/packaging/_manylinux.py,sha256=Xo4V0PZz8sbuVCbTni0t1CR0AHeir_7ib4lTmV8scD4,9586 +pip/_vendor/packaging/_musllinux.py,sha256=p9ZqNYiOItGee8KcZFeHF_YcdhVwGHdK6r-8lgixvGQ,2694 +pip/_vendor/packaging/_parser.py,sha256=s_TvTvDNK0NrM2QB3VKThdWFM4Nc0P6JnkObkl3MjpM,10236 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/_tokenizer.py,sha256=J6v5H7Jzvb-g81xp_2QACKwO7LxHQA6ikryMU7zXwN8,5273 +pip/_vendor/packaging/markers.py,sha256=dWKSqn5Sp-jDmOG-W3GfLHKjwhf1IsznbT71VlBoB5M,10671 +pip/_vendor/packaging/metadata.py,sha256=KINuSkJ12u-SyoKNTy_pHNGAfMUtxNvZ53qA1zAKcKI,32349 +pip/_vendor/packaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/packaging/requirements.py,sha256=gYyRSAdbrIyKDY66ugIDUQjRMvxkH2ALioTmX3tnL6o,2947 +pip/_vendor/packaging/specifiers.py,sha256=HfGgfNJRvrzC759gnnoojHyiWs_DYmcw5PEh5jHH-YE,39738 +pip/_vendor/packaging/tags.py,sha256=y8EbheOu9WS7s-MebaXMcHMF-jzsA_C1Lz5XRTiSy4w,18883 +pip/_vendor/packaging/utils.py,sha256=NAdYUwnlAOpkat_RthavX8a07YuVxgGL_vwrx73GSDM,5287 +pip/_vendor/packaging/version.py,sha256=wE4sSVlF-d1H6HFC1vszEe35CwTig_fh4HHIFg95hFE,16210 +pip/_vendor/pkg_resources/__init__.py,sha256=jrhDRbOubP74QuPXxd7U7Po42PH2l-LZ2XfcO7llpZ4,124463 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__init__.py,sha256=FTA6LGNm40GwNZt3gG3uLAacWvf2E_2HTmH0rAALGR8,22285 +pip/_vendor/platformdirs/__main__.py,sha256=jBJ8zb7Mpx5ebcqF83xrpO94MaeCpNGHVf9cvDN2JLg,1505 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc,, +pip/_vendor/platformdirs/android.py,sha256=xZXY9Jd46WOsxT2U6-5HsNtDZ-IQqxcEUrBLl3hYk4o,9016 +pip/_vendor/platformdirs/api.py,sha256=QBYdUac2eC521ek_y53uD1Dcq-lJX8IgSRVd4InC6uc,8996 +pip/_vendor/platformdirs/macos.py,sha256=wftsbsvq6nZ0WORXSiCrZNkRHz_WKuktl0a6mC7MFkI,5580 +pip/_vendor/platformdirs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/platformdirs/unix.py,sha256=Cci9Wqt35dAMsg6HT9nRGHSBW5obb0pR3AE1JJnsCXg,10643 +pip/_vendor/platformdirs/version.py,sha256=r7F76tZRjgQKzrpx_I0_ZMQOMU-PS7eGnHD7zEK3KB0,411 +pip/_vendor/platformdirs/windows.py,sha256=IFpiohUBwxPtCzlyKwNtxyW4Jk8haa6W8o59mfrDXVo,10125 +pip/_vendor/pygments/__init__.py,sha256=7N1oiaWulw_nCsTY4EEixYLz15pWY5u4uPAFFi-ielU,2983 +pip/_vendor/pygments/__main__.py,sha256=isIhBxLg65nLlXukG4VkMuPfNdd7gFzTZ_R_z3Q8diY,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=LIVzmAunlk9sRJJp54O4KRy9GDIN4Wu13v9p9QzfGPM,23656 +pip/_vendor/pygments/console.py,sha256=yhP9UsLAVmWKVQf2446JJewkA7AiXeeTf4Ieg3Oi2fU,1718 +pip/_vendor/pygments/filter.py,sha256=_ADNPCskD8_GmodHi6_LoVgPU3Zh336aBCT5cOeTMs0,1910 +pip/_vendor/pygments/filters/__init__.py,sha256=RdedK2KWKXlKwR7cvkfr3NUj9YiZQgMgilRMFUg2jPA,40392 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatter.py,sha256=jDWBTndlBH2Z5IYZFVDnP0qn1CaTQjTWt7iAGtCnJEg,4390 +pip/_vendor/pygments/formatters/__init__.py,sha256=8No-NUs8rBTSSBJIv4hSEQt2M0cFB4hwAT0snVc2QGE,5385 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176 +pip/_vendor/pygments/formatters/bbcode.py,sha256=3JQLI45tcrQ_kRUMjuab6C7Hb0XUsbVWqqbSn9cMjkI,3320 +pip/_vendor/pygments/formatters/groff.py,sha256=M39k0PaSSZRnxWjqBSVPkF0mu1-Vr7bm6RsFvs-CNN4,5106 +pip/_vendor/pygments/formatters/html.py,sha256=SE2jc3YCqbMS3rZW9EAmDlAUhdVxJ52gA4dileEvCGU,35669 +pip/_vendor/pygments/formatters/img.py,sha256=MwA4xWPLOwh6j7Yc6oHzjuqSPt0M1fh5r-5BTIIUfsU,23287 +pip/_vendor/pygments/formatters/irc.py,sha256=dp1Z0l_ObJ5NFh9MhqLGg5ptG5hgJqedT2Vkutt9v0M,4981 +pip/_vendor/pygments/formatters/latex.py,sha256=XMmhOCqUKDBQtG5mGJNAFYxApqaC5puo5cMmPfK3944,19306 +pip/_vendor/pygments/formatters/other.py,sha256=56PMJOliin-rAUdnRM0i1wsV1GdUPd_dvQq0_UPfF9c,5034 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=y16U00aVYYEFpeCfGXlYBSMacG425CbfoG8oKbKegIg,2218 +pip/_vendor/pygments/formatters/rtf.py,sha256=ZT90dmcKyJboIB0mArhL7IhE467GXRN0G7QAUgG03To,11957 +pip/_vendor/pygments/formatters/svg.py,sha256=KKsiophPupHuxm0So-MsbQEWOT54IAiSF7hZPmxtKXE,7174 +pip/_vendor/pygments/formatters/terminal.py,sha256=AojNG4MlKq2L6IsC_VnXHu4AbHCBn9Otog6u45XvxeI,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=kGkNUVo3FpwjytIDS0if79EuUoroAprcWt3igrcIqT0,11753 +pip/_vendor/pygments/lexer.py,sha256=TYHDt___gNW4axTl2zvPZff-VQi8fPaIh5OKRcVSjUM,35349 +pip/_vendor/pygments/lexers/__init__.py,sha256=pIlxyQJuu_syh9lE080cq8ceVbEVcKp0osAFU5fawJU,12115 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=61-h3zr103m01OS5BUq_AfUiL9YI06Ves9ipQ7k4vr4,76097 +pip/_vendor/pygments/lexers/python.py,sha256=2J_YJrPTr_A6fJY_qKiKv0GpgPwHMrlMSeo59qN3fe4,53687 +pip/_vendor/pygments/modeline.py,sha256=gtRYZBS-CKOCDXHhGZqApboHBaZwGH8gznN3O6nuxj4,1005 +pip/_vendor/pygments/plugin.py,sha256=ioeJ3QeoJ-UQhZpY9JL7vbxsTVuwwM7BCu-Jb8nN0AU,1891 +pip/_vendor/pygments/regexopt.py,sha256=Hky4EB13rIXEHQUNkwmCrYqtIlnXDehNR3MztafZ43w,3072 +pip/_vendor/pygments/scanner.py,sha256=NDy3ofK_fHRFK4hIDvxpamG871aewqcsIb6sgTi7Fhk,3092 +pip/_vendor/pygments/sphinxext.py,sha256=iOptJBcqOGPwMEJ2p70PvwpZPIGdvdZ8dxvq6kzxDgA,7981 +pip/_vendor/pygments/style.py,sha256=rSCZWFpg1_DwFMXDU0nEVmAcBHpuQGf9RxvOPPQvKLQ,6420 +pip/_vendor/pygments/styles/__init__.py,sha256=qUk6_1z5KmT8EdJFZYgESmG6P_HJF_2vVrDD7HSCGYY,2042 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/styles/_mapping.py,sha256=6lovFUE29tz6EsV3XYY4hgozJ7q1JL7cfO3UOlgnS8w,3312 +pip/_vendor/pygments/token.py,sha256=qZwT7LSPy5YBY3JgDjut642CCy7JdQzAfmqD9NmT5j0,6226 +pip/_vendor/pygments/unistring.py,sha256=p5c1i-HhoIhWemy9CUsaN9o39oomYHNxXll0Xfw6tEA,63208 +pip/_vendor/pygments/util.py,sha256=2tj2nS1X9_OpcuSjf8dOET2bDVZhs8cEKd_uT6-Fgg8,10031 +pip/_vendor/pyproject_hooks/__init__.py,sha256=kCehmy0UaBa9oVMD7ZIZrnswfnP3LXZ5lvnNJAL5JBM,491 +pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_compat.py,sha256=by6evrYnqkisiM-MQcvOKs5bgDMzlOSgZqRHNqf04zE,138 +pip/_vendor/pyproject_hooks/_impl.py,sha256=61GJxzQip0IInhuO69ZI5GbNQ82XEDUB_1Gg5_KtUoc,11920 +pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=9gQATptbFkelkIy0OfWFEACzqxXJMQDWCH9rBOAZVwQ,546 +pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=m2b34c917IW5o-Q_6TYIHlsK9lSUlNiyrITTUH_zwew,10927 +pip/_vendor/requests/__init__.py,sha256=HlB_HzhrzGtfD_aaYUwUh1zWXLZ75_YCLyit75d0Vz8,5057 +pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/requests/__version__.py,sha256=FVfglgZmNQnmYPXpOohDU58F5EUb_-VnSTaAesS187g,435 +pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 +pip/_vendor/requests/adapters.py,sha256=J7VeVxKBvawbtlX2DERVo05J9BXTcWYLMHNd1Baa-bk,27607 +pip/_vendor/requests/api.py,sha256=_Zb9Oa7tzVIizTKwFrPjDEY9ejtm_OnSRERnADxGsQs,6449 +pip/_vendor/requests/auth.py,sha256=kF75tqnLctZ9Mf_hm9TZIj4cQWnN5uxRz8oWsx5wmR0,10186 +pip/_vendor/requests/certs.py,sha256=PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs,575 +pip/_vendor/requests/compat.py,sha256=Mo9f9xZpefod8Zm-n9_StJcVTmwSukXR2p3IQyyVXvU,1485 +pip/_vendor/requests/cookies.py,sha256=bNi-iqEj4NPZ00-ob-rHvzkvObzN3lEpgw3g6paS3Xw,18590 +pip/_vendor/requests/exceptions.py,sha256=D1wqzYWne1mS2rU43tP9CeN1G7QAy7eqL9o1god6Ejw,4272 +pip/_vendor/requests/help.py,sha256=hRKaf9u0G7fdwrqMHtF3oG16RKktRf6KiwtSq2Fo1_0,3813 +pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 +pip/_vendor/requests/models.py,sha256=x4K4CmH-lC0l2Kb-iPfMN4dRXxHEcbOaEWBL_i09AwI,35483 +pip/_vendor/requests/packages.py,sha256=_ZQDCJTJ8SP3kVWunSqBsRZNPzj2c1WFVqbdr08pz3U,1057 +pip/_vendor/requests/sessions.py,sha256=ykTI8UWGSltOfH07HKollH7kTBGw4WhiBVaQGmckTw4,30495 +pip/_vendor/requests/status_codes.py,sha256=iJUAeA25baTdw-6PfD0eF4qhpINDJRJI-yaMqxs4LEI,4322 +pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 +pip/_vendor/requests/utils.py,sha256=L79vnFbzJ3SFLKtJwpoWe41Tozi3RlZv94pY1TFIyow,33631 +pip/_vendor/resolvelib/__init__.py,sha256=h509TdEcpb5-44JonaU3ex2TM15GVBLjM9CNCPwnTTs,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=fuuvVrCetu5gsxPB43ERyjfO8aReS3rFQHpDgiItbs4,5871 +pip/_vendor/resolvelib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/reporters.py,sha256=TSbRmWzTc26w0ggsV1bxVpeWDB8QNIre6twYl7GIZBE,1601 +pip/_vendor/resolvelib/resolvers.py,sha256=G8rsLZSq64g5VmIq-lB7UcIJ1gjAxIQJmTF4REZleQ0,20511 +pip/_vendor/resolvelib/structs.py,sha256=0_1_XO8z_CLhegP3Vpf9VJ3zJcfLm0NOHRM-i0Ykz3o,4963 +pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090 +pip/_vendor/rich/__main__.py,sha256=eO7Cq8JnrgG8zVoeImiAs92q3hXNMIfp0w5lMsO7Q2Y,8477 +pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-312.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=fbmeyetEdHjzE_Vx2l1uK7tnPOhMs2X1lJfO3vsKDpA,10209 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_export_format.py,sha256=RI08pSrm5tBSzPMvnbTqbD9WIalaOoN5d4M1RTmLq1Y,2128 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799 +pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_null_file.py,sha256=tGSXk_v-IZmbj1GAzHit8A3kYIQMiCpVsCFfsC-_KJ4,1387 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=Zt58apszI6hAAcXPpgdWKpu3c31UBWebOeR4mbyptvU,5471 +pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820 +pip/_vendor/rich/_windows.py,sha256=aBwaD_S56SbgopIvayVmpk0Y28uwY2C5Bab1wl3Bp-I,1925 +pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 +pip/_vendor/rich/_wrap.py,sha256=FlSsom5EX0LVkA3KWy34yHnCfLtqX-ZIepXKh-70rpc,3404 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=sCUkisXkQfoq-IQPyBELfJ8l7LihZJX3HbH8K7Cie-M,10368 +pip/_vendor/rich/ansi.py,sha256=iD6532QYqnBm6hADulKjrV8l8kFJ-9fEVooHJHH3hMg,6906 +pip/_vendor/rich/bar.py,sha256=ldbVHOzKJOnflVNuv1xS7g6dLX2E3wMnXkdPbpzJTcs,3263 +pip/_vendor/rich/box.py,sha256=nr5fYIUghB_iUCEq6y0Z3LlCT8gFPDrzN9u2kn7tJl4,10831 +pip/_vendor/rich/cells.py,sha256=aMmGK4BjXhgE6_JF1ZEGmW3O7mKkE8g84vUnj4Et4To,4780 +pip/_vendor/rich/color.py,sha256=bCRATVdRe5IClJ6Hl62de2PKQ_U4i2MZ4ugjUEg7Tao,18223 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=deFZIubq2M9A2MCsKFAsFQlWDvcOMsGuUA07QkOaHIw,99173 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=c_56TxcedGYqDepHBMTuZdUIijitAQgnox-Qde0Z1qo,5502 +pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630 +pip/_vendor/rich/default_styles.py,sha256=-Fe318kMVI_IwciK5POpThcO0-9DYJ67TZAN6DlmlmM,8082 +pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972 +pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683 +pip/_vendor/rich/filesize.py,sha256=9fTLAPCAwHmBXdRv7KZU194jSgNrRb6Wx7RIoBgqeKY,2508 +pip/_vendor/rich/highlighter.py,sha256=6ZAjUcNhBRajBCo9umFUclyi2xL0-55JL7S0vYGUJu4,9585 +pip/_vendor/rich/json.py,sha256=vVEoKdawoJRjAFayPwXkMBPLy7RSTs-f44wSQDR2nJ0,5031 +pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 +pip/_vendor/rich/layout.py,sha256=ajkSFAtEVv9EFTcFs-w4uZfft7nEXhNzL7ZVdgrT5rI,14004 +pip/_vendor/rich/live.py,sha256=vUcnJV2LMSK3sQNaILbm0-_B8BpAeiHfcQMAMLfpRe0,14271 +pip/_vendor/rich/live_render.py,sha256=zJtB471jGziBtEwxc54x12wEQtH4BuQr1SA8v9kU82w,3666 +pip/_vendor/rich/logging.py,sha256=uB-cB-3Q4bmXDLLpbOWkmFviw-Fde39zyMV6tKJ2WHQ,11903 +pip/_vendor/rich/markup.py,sha256=3euGKP5s41NCQwaSjTnJxus5iZMHjxpIM0W6fCxra38,8451 +pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=2Fd1V7e1kHxlPFIusoHY5T7-Cs0RpkrihgVG9ZVqJ4g,10705 +pip/_vendor/rich/pretty.py,sha256=5oIHP_CGWnHEnD0zMdW5qfGC5kHqIKn7zH_eC4crULE,35848 +pip/_vendor/rich/progress.py,sha256=P02xi7T2Ua3qq17o83bkshe4c0v_45cg8VyTj6US6Vg,59715 +pip/_vendor/rich/progress_bar.py,sha256=L4jw8E6Qb_x-jhOrLVhkuMaPmiAhFIl8jHQbWFrKuR8,8164 +pip/_vendor/rich/prompt.py,sha256=wdOn2X8XTJKnLnlw6PoMY7xG4iUPp3ezt4O5gqvpV-E,11304 +pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 +pip/_vendor/rich/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=5MZJZmONgC6kud-QW-_m1okXwL2aR6u6y-pUcUCJz28,4431 +pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602 +pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=hU1ueeXqI6YeFa08K9DAjlF2QLxcJY9pwZx7RsXavlk,24246 +pip/_vendor/rich/spinner.py,sha256=15koCmF0DQeD8-k28Lpt6X_zJQUlzEhgo_6A6uy47lc,4339 +pip/_vendor/rich/status.py,sha256=kkPph3YeAZBo-X-4wPp8gTqZyU466NLwZBA4PZTTewo,4424 +pip/_vendor/rich/style.py,sha256=3hiocH_4N8vwRm3-8yFWzM7tSwjjEven69XqWasSQwM,27073 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=TnZDuOD4DeHFbkaVEAji1gf8qgAlMU9Boe_GksMGCkk,35475 +pip/_vendor/rich/table.py,sha256=nGEvAZHF4dy1vT9h9Gj9O5qhSQO3ODAxJv0RY1vnIB8,39680 +pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 +pip/_vendor/rich/text.py,sha256=5rQ3zvNrg5UZKNLecbh7fiw9v3HeFulNVtRY_CBDjjE,47312 +pip/_vendor/rich/theme.py,sha256=belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN-AFdo,3777 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=CUpxYLjQWIb6vQQ6O72X0hvDV6caryGqU6UweHgOyCY,29601 +pip/_vendor/rich/tree.py,sha256=meAOUU6sYnoBEOX2ILrPLY9k5bWrWNQKkaiEFvHinXM,9167 +pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396 +pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc,, +pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633 +pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943 +pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254 +pip/_vendor/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +pip/_vendor/truststore/__init__.py,sha256=M-PhuLMIF7gxKXk7tpo2MD7dk6nqG1ae8GXWdNXbMdQ,403 +pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/truststore/_api.py,sha256=B9JIHipzBIS8pMP_J50-o1DHVZsvKZQUXTB0HQQ_UPg,10461 +pip/_vendor/truststore/_macos.py,sha256=VJ24avz5aEGYAs_kWvnGjMJtuIP4xJcYa459UQOQC3M,17608 +pip/_vendor/truststore/_openssl.py,sha256=LLUZ7ZGaio-i5dpKKjKCSeSufmn6T8pi9lDcFnvSyq0,2324 +pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130 +pip/_vendor/truststore/_windows.py,sha256=eldNViHNHeY5r3fiBoz_JFGD37atXB9S5yaRoPKEGAA,17891 +pip/_vendor/truststore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/typing_extensions.py,sha256=78hFl0HpDY-ylHUVCnWdU5nTHxUP2-S-3wEZk6CQmLk,134499 +pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333 +pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372 +pip/_vendor/urllib3/_version.py,sha256=cuJvnSrWxXGYgQ3-ZRoPMw8-qaN5tpw71jnH1t16dLA,64 +pip/_vendor/urllib3/connection.py,sha256=92k9td_y4PEiTIjNufCUa1NzMB3J3w0LEdyokYgXnW8,20300 +pip/_vendor/urllib3/connectionpool.py,sha256=Be6q65SR9laoikg-h_jmc_p8OWtEmwgq_Om_Xtig-2M,40285 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=Fef1IIUUFHqpevzXiDPbIGkDKchY2FVKeVeLGR1Qq3g,34446 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343 +pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665 +pip/_vendor/urllib3/poolmanager.py,sha256=aWyhXRtNO4JUnCSVVqKTKQd8EXTvUm1VN9pgs2bcONo,19990 +pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691 +pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=Z6WEf518eTOXP5jr5QSQ9gqJI0DVYt3Xs3EKnYaTmus,22013 +pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168 +pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296 +pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403 +pip/_vendor/vendor.txt,sha256=PxNaxxkkpBaw5zOTsDpHEY-zEaHjgkDgyrSxOuxg8nw,330 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/REQUESTED b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL new file mode 100644 index 0000000..ecaf39f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (71.1.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt new file mode 100644 index 0000000..25fcf7e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main diff --git a/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/pip/__init__.py b/.venv/lib/python3.12/site-packages/pip/__init__.py new file mode 100644 index 0000000..640e922 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "24.2" + + +def main(args: Optional[List[str]] = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/.venv/lib/python3.12/site-packages/pip/__main__.py b/.venv/lib/python3.12/site-packages/pip/__main__.py new file mode 100644 index 0000000..5991326 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py b/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py new file mode 100644 index 0000000..c633787 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8d2f98c3af2830d1e004f950ec595cdca6fe3eb GIT binary patch literal 689 zcmX|9zl#(x6i#Mlf4J)@{%FoZqm3-+1lL17kpn>lQO<+4kZp$CB)c1($%G`c=PV~& zVIgQ?cjteg_@~%tJB^B!-N|ZW<;!~KBk$$C@XhzWe9;&-tFYJp;YoTy9X*iN z)$NDc$wIMg7WG%+{(2oTGq!cp2v-{A75ujlGVk-V5THBef$#ntV-%omyp28_pa-ZI z&UPP7q$RMJB2qbFpa;3VagP)#t4J=Ga%5B(Qd&VaE25>oXi2f9NLnacWP;e#NbPLg z=@78H0A-xZe_{z2j>*hkB31}8aZcNtl#ZpFl$&u{d6@}xmo7{%p4JnU~M@ WqP@Y}BcG37*hf&mOMm%oLG>3hD7j?- literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df81fcbcb0780019f92d1301975bb8644e32b376 GIT binary patch literal 845 zcmb7C&ubGw6n?Wi`JGfMwa`{P*o!&1i?Nb`VkmkjSZqQ3K`zUhnIya2Y?j?^bSp>$ zLK_siB3OIsRmq>?MOy`#A{0D%3-sp6nI=mLtq0#>-ZyW)dEd8h=W{NX1|Ij`JgGmD z0e*>16tN*VdWitGfdD}kR0bJU5Je`AsH03^if@P{0R=NYsz<0d1U0D*?#$Ue%v8i4 zWdc3!LIeUDBhtzh0C$;doZ-RD4VWj_|6nE}r6^aVfA}0fsW89HyOHEa1dOsZ-jV@7xRvVGz38!Q0^7i!bMAzsj>e_~AllVPmng7>>VM>L&r8 z3oq}<6a6$~$F_>y;#Rp^{!rL0?i6>+JLQk1{h7J_%#HQC(aojKQaB&_-|)plIkUO8 eCr|yvbB8#)en&L!K79T7JHF6Q0G@UyxV69ee73Lv literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c12e9ccde977323489f34fa58b2f16f70cdd7230 GIT binary patch literal 2209 zcmaJ>O>7fa5T3WY{*PmW6B0s!MNk@7j@T5>)^j!v}!__ab)4u$%fAJGmLQ3bik#*kD5vXwS==|3sb2MAFs7UAJtW~Ip*0gGh zS-n&d^_*BzO9}C|ivKiG78Ny@qXyM1k!rK5p=(9lCxgLBW|C72RK!)2i&PP1Q&cS! z6QZT#X|rrl^ekJB`=YLt@pM+!-m=7-XjUxghJ|LcsvMNHwk(>KY*FWqEf(}xoZDj2 zZ!th*+b_oyAmGO|%@fEFNhH5pi~krY+%i<*LvU;5zR(23`7xU$U-NhpjanYB070)+ z_&5TvKp0vbsuI`7mt>U?xVJ}u3Vg@kCUG(rCpK?dMx3*`G?kpi`lbr%%~YvkP3zjpvsakZPBxh&jDQc$h zVN#NWe84Dc8Z{&-S*qB9p((1-xsowFe`uB(rmAZahL9X8=vld74kusfqZo_XjqG>$ za}jE>#Dj}#x4t;PMpiF8xcHaJ>bcb2gK5}8URO0-eQk#(%U(1>$nDUsOAM?Hu+Qv4 zwg{V{&d<+$cBal;H)4rKC{Ys^JDGGM2~`htJ+wh$k_mU|P1OFQ}SA4HlrH8Vr0{c85z06pWgz+g5=Bjuyyplvj9! z1972{5h^4u*nMfWG}^-AI7M&xEUGr;TriepHE{_inS-}!+#oV=KFplPNkl5JgN}TA zinvB>trF{%pD9x1-ELeEs)8B53_IE?$#HIYOQb3wO1Uwc$0v{T#$I$~2XdIYWR_^w zj;2S`(!|y4h3TK8bXKX}*LjKuDS3b9rdg!e6iO@DN6>QNM9<)CFm?<-vkTcWY1xZ+k?)ruVc=D z#EFnB%2^!7)TlTZ@ablfy{i#xC&b3EBpLfrY}LXJV7X+;d3#kesbLw1+1VhAyPeBX zcAC9~)7JhW=l`&A3jeWwH*3hYc|ynwP9Q=v3M91ch1mYZ$V)FF1KWNOd>eeM&c{|h zSh-f?d)88q`S{ad*QS4T!=JAE(@#5k*7%Ly{(5i!!@UoW)Or(*j)6yaemK`iU1{=M zAlT%EkarsdkGHuONcb7N{R|HL66^cw^!+o91Bpg#pa#)DynfR40+4O*10sAH{v^Bs zU3KVMxmNEz(da$(1m1n_i>$o&*mtl7}Y(TUQ(UtD|ecxL@!%!>Z Fe*i#FCMEy? literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py new file mode 100644 index 0000000..1a5b7f8 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb72eab62f5f9f25d46ce02a53fedf746614fbe1 GIT binary patch literal 791 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..350e8d6e28c3f7f0037f6d2e2d0078c4874c2fa7 GIT binary patch literal 12671 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 Gz5XBUGSr3u literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..40c8ec248b828dc219e9ab2834cfdbfac6a0327f GIT binary patch literal 35555 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�OZ8$fi0Ukf4Jg@_uWUda}XNIk)e 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8bc63df1e95dc80c5807a3b82f1240d003c3e7a0 GIT binary patch literal 674 zcmX|9J#Q2-5Vd#rj^mODA*xV-K{O}9S_C8rLa7i9C?F*TToXC#xjU2nu*TkljeWJdgcpX{pc1?!0<1-sFsZ4}<^KIRvv6 z0&kdRn&+(GLtaF~h%?>QF+{*2UZ(ZnI)P-A=+5)bu+v0?V?P4HAZnAl#`(5)&w5jp zDqn9Cg=5!t5qynhMtP4cCKP;jh63f}Itn?Ta?T>Q$M@LB!`&Nf5bwU*oERslSp)|- z1uaGuiYnJ4t4depAY6vVdMEruc~PiFIB)V?Y=b};0YaIXa@-eW#;5%`xJ?vFYx7U7 z(BPHH-9_O5#Ke2+Zb&&ceo}9zSyf2eSS78o(l}Rxlh>}UUQg#l7||sLyzOm0MrAD^ z)#5DeOt(zw0jU&eO=?^UrN_orH0!Vz&O{iBKgTYR2=V8koKyu!4O3LRO5Vrn5oF%U zkwF;OMuSYJP)=oTwn>toROOZQ@``lE!zHV-9W^FxLFQ3%StwJcwrP_9aDnn9#TlTIQ9D0%eBwR@{A_wF6)DC+x3m5qG5O^3@6&yd2C~nKPUOXa4{@}pVjtm x7L~4ZSi?XY9?xB%a1e9Ozp`^byFGsT#gqMHf8*`(FDK3)FdDzleuZw%@)x8rwIBch literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..309b713bbac91dac8552233281393ccafe9e48a3 GIT binary patch literal 5122 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 AlmGw# literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b4c736eca7201edd55c3515399ed0c055cf5b18 GIT binary patch literal 13619 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 Union[Tuple[str], Tuple[str, str]]: + return (a, b) if a != b else (a,) + + +class _Prefix: + def __init__(self, path: str) -> None: + self.path = path + self.setup = False + scheme = get_scheme("", prefix=path) + self.bin_dir = scheme.scripts + self.lib_dirs = _dedup(scheme.purelib, scheme.platlib) + + +def get_runnable_pip() -> str: + """Get a file to pass to a Python executable, to run the currently-running pip. + + This is used to run a pip subprocess, for installing requirements into the build + environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + if not source.is_dir(): + # This would happen if someone is using pip from inside a zip file. In that + # case, we can use that directly. + return str(source) + + return os.fsdecode(source / "__pip-runner__.py") + + +def _get_system_sitepackages() -> Set[str]: + """Get system site packages + + Usually from site.getsitepackages, + but fallback on `get_purelib()/get_platlib()` if unavailable + (e.g. in a virtualenv created by virtualenv<20) + + Returns normalized set of strings. + """ + if hasattr(site, "getsitepackages"): + system_sites = site.getsitepackages() + else: + # virtualenv < 20 overwrites site.py without getsitepackages + # fallback on get_purelib/get_platlib. + # this is known to miss things, but shouldn't in the cases + # where getsitepackages() has been removed (inside a virtualenv) + system_sites = [get_purelib(), get_platlib()] + return {os.path.normcase(path) for path in system_sites} + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps""" + + def __init__(self) -> None: + temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ("normal", "overlay") + ) + + self._bin_dirs: List[str] = [] + self._lib_dirs: List[str] = [] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = _get_system_sitepackages() + + self._site_dir = os.path.join(temp_dir.path, "site") + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open( + os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" + ) as fp: + fp.write( + textwrap.dedent( + """ + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + """ + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) + ) + + def __enter__(self) -> None: + self._save_env = { + name: os.environ.get(name, None) + for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") + } + + path = self._bin_dirs[:] + old_path = self._save_env["PATH"] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update( + { + "PATH": os.pathsep.join(path), + "PYTHONNOUSERSITE": "1", + "PYTHONPATH": os.pathsep.join(pythonpath), + } + ) + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements( + self, reqs: Iterable[str] + ) -> Tuple[Set[Tuple[str, str]], Set[str]]: + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = ( + get_environment(self._lib_dirs) + if hasattr(self, "_lib_dirs") + else get_default_environment() + ) + for req_str in reqs: + req = get_requirement(req_str) + # We're explicitly evaluating with an empty extra value, since build + # environments are not provided any mechanism to select specific extras. + if req.marker is not None and not req.marker.evaluate({"extra": ""}): + continue + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if not req.specifier.contains(dist.version, prereleases=True): + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + self._install_requirements( + get_runnable_pip(), + finder, + requirements, + prefix, + kind=kind, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + ) -> None: + args: List[str] = [ + sys.executable, + pip_runnable, + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + "--disable-pip-version-check", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append("-vv") + elif logger.getEffectiveLevel() <= VERBOSE: + args.append("-v") + for format_control in ("no_binary", "only_binary"): + formats = getattr(finder.format_control, format_control) + args.extend( + ( + "--" + format_control.replace("_", "-"), + ",".join(sorted(formats or {":none:"})), + ) + ) + + index_urls = finder.index_urls + if index_urls: + args.extend(["-i", index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(["--extra-index-url", extra_index]) + else: + args.append("--no-index") + for link in finder.find_links: + args.extend(["--find-links", link]) + + for host in finder.trusted_hosts: + args.extend(["--trusted-host", host]) + if finder.allow_all_prereleases: + args.append("--pre") + if finder.prefer_binary: + args.append("--prefer-binary") + args.append("--") + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"pip subprocess to install {kind}", + spinner=spinner, + extra_environ=extra_environ, + ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + raise NotImplementedError() diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cache.py b/.venv/lib/python3.12/site-packages/pip/_internal/cache.py new file mode 100644 index 0000000..6b45126 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 0000000..e589bb9 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c302e8819204120ef9a054f120a710f7f89ae06a GIT binary patch literal 282 zcmXv~F-`+95IlznqDc9JJCuT30WG4XKtf0~h{oF3dzS^DZTWmBU1~~t-oRV3>;3|yl)zGMp||x*(Hhz!hQ75q*DtON2)tE1Z7XI2g@r6Lt1-xS)N}&%ZbhonOevZK>e9Iw4g16%94{( hWf-=ztHzto(sew}j$_Go{K5B;5aMSd#57K`+yhwoQ_27U literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e50546ea6f1c6d2b816e1046dac4c8218c8a62e GIT binary patch literal 8610 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 MJ@p+LBR0JL7u6AnyZ`_I literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36cfee578746f1e410ebc29b0d1000165dff7da4 GIT binary patch literal 1778 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db334767093a0ed14f907774ae763b3323a13b5b GIT binary patch literal 4910 zcmb7IOKcm*8J>NRTs}pSA|>j%X5)mt10Y zX;}i9DnWrrr~%1E0ZVWL>!`*#C}{Vv5*4BJnvT$V z%|sZe8Hr7sBBr!CVoqBk7K+HS5|_3{tU7IyY-xMMuG418k#IXDzAX@C}kke5QEx~q>ySg*ak0;qBV`G)96jP460tM4uehs+7FgI zx=mMj1qxQ-J=l*>p1NJ#9bnM}^Xk?^!S?nCi;ZAPG1YKD9#j^0zD5M1y-=8It+<=oo9_z!U`J< zejZK1j8t{}EDG7?`-k-lS9F9|ZdN%6aNQgLFGm%A_>Hskt+vBizzTn=3b7&n7gZd; zKdPA%k~|%gLMF|WQ(_5GYlsO#^b!C!S`pH$U|bahYiuT#7B!Y=drLzaJus+IyhhnV zZcGq`$u(nghgv{LD!T0?GXQ-h3qMha#&ANxAPD5|0q4%?MJI6;#$49=H*=o43Ft*FucG$KO+qOEk%^ohBk+&HJ zoCl)Gzta6M7~TnzFamN=b`9j5} zo_k#HZgB8BBKin1Uh~5FGKX3_Zw1x@>#uAD!V9C@tp9<%apA(h_njc5m|Rq99d)Vx}4I`D+xZw!w_|H$}f?SeLTp-|U`^E9#kDa4{V&^!g-5Ir8E=WWx; zOcikRo+%yVfHVD2`^2jvpq-W#u+x}&Ni&OAA;>9UB#My4_%N(B#Nb}2GzMffIyQ${TxZne%v`jhv4Y(!_!<%87eHbFeo6{H08ZloIpN?aO=Z2_2 zrE2kvXsML?eb;??3UnMS_)~#W33T<6B3|x5xkBMp)ow8J^s}@WcUoZc>_SUD-U;-x z4Uc*@{%+ee{xQGN^i; zH`VrF$y-wXdXGUB%xW#Jr8*66z0R8r4HSZ1^YtEs!YQ@gpi@DEs@Exk-2(+~mp{OQ zW__mrU*i)eMxw!i@`UCe+^um>uvZ5A^Nhff99FPgJ_f#iKn)pc^NgWU;Pk$3*io<1 zTd(W-e)yE@a>kqmYu>6JH#7lSht;sr%3F=u3pN4dZbG*H36r1-_Ph=I^7d4}Az7~l z=&Q&XVo(^(u&!FR^${hY0`~zoOU^JJkB^@nKNCGW9-VsoXOnME48J}#HQzlf=Ols8$SN<%amc;-N!{`CdWf&MNyv%% zF^K~6Eu*odBnrGL^YEPDAs66t89~JSJpD4Su_Vv>mV~YO#$4udMxM>UGe&4}H!bpWa*j`nv5d+G=NbNaKGde?3!1Hx>Fa3~0S$g0KAHtmk|dThy0gY4ea6It zkw~D589}otxoJq@;-aEx46I7CRbL3Q0O{XUty6z~XqJho3c)CI5K|zUsF;|yW>!=| z&Z(Md7DK+HS)^n}RK%>tNFu1rVmJ>ykJNKCY}bdxvRPPx9)!rdBrRVNLrzR?A0H(G z@Y1Pdeboe2vy#0Pg6~aoW8@flBjTr zDuo~wLS4P+K@XFsh5muKkCaDnB@1ZJ*|p_71i6+61&{3<8Ymqa*gUay=%o_dxiGQv z9t0+?dB@Um&(cv04*hxhtJI%TrQqa4fB$B9XJD)}Ft+7CyJ+9F`-}F@Jx}MZ=f%xm z?hIZi4PGd|I9_y5>@&32RYtVaRkk5#%bufs%h6djF<#rE1(GSNd)c+*T2Z&Tc4(a# zyhbnEmTX0DxWxTr*XLifm1)*GN$q(%^ay%%%iFU!vK#2Q)wR~Ocn%Ult7Dm4;#OLT zg34Mu?^!zcI6Kj^!?l#SmR0|)&b7{M?$}e@-+6AeuEDTw!UYxAY>yxa`&I+%{cG(T z{(FJ&ABXQ)|1kbV?B0npyPRu>3zWFPHrG~@hxy!r)yAd#!q@{#!*2^EOZT3;d;Q%l zci*DvL1S?JrS+bT)5V6qqAR?}{LSv(bu=uWTRK+^^lY5mIJ((bY<^+eapIw?b@k+} zm)BlikKcT4%hg-tdWq(y>!%lINk;4Vc;dr}7072h9@xDr?-uPHMYiK#k6%NLZ9DFs zlDp@#GsT7z-yw>elc%$I=%;sj?{s`Ieb;-}RO}kx@=O#R6aOhQr2l(`JOID!I&`KV zebpZrWg#v}=LOHvPwfqzyi?t~c1?-4#h1od>0JC&A&oFoq6 zY2XoGrhEh+I8=&yL{k(C86ai*8Z~~6Z1>Tz5<2!zbmALy>^}PWeKh(F>c5YM9@x9q zyNb5{1xwl7PI-#$eftRN@{pTyZ!l#9)h2hx`?+(UkmVz%DXMdoU7cF9mJy-X#f{<3 Urp@^0fsOIfkyjq;Onr_21vy`6_W%F@ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9506dcfb4cccf46a9bbd9cf9d9e0fa5450f6e49d GIT binary patch literal 15017 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 aZ=t34K8J_<-De$q&tl8o-*S{;1N{FD1dHSV literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca30ea46bb3b12c87e7a9daec61aab712a33555d GIT binary patch literal 3838 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 MecQhz2(YF7F9UBI#sB~S literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1844d1bd0955ba7beea44e5252b645a5ce6dc81e GIT binary patch literal 7837 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 None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + # Don't complete if autocompletion environment variables + # are not present + if not os.environ.get("COMP_WORDS") or not os.environ.get("COMP_CWORD"): + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: Optional[str] = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + options += [ + (opt_str, opt.nargs) for opt_str in opt._long_opts + opt._short_opts + ] + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ```` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: List[str], cword: int, opts: Iterable[Any] +) -> Optional[str]: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(``file``, ``path`` or ``dir``) + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 0000000..bc1ab65 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 0000000..0b7cff7 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 0000000..139995a --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/index_command.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/index_command.py new file mode 100644 index 0000000..226f8da --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py new file mode 100644 index 0000000..563ac79 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 0000000..5ade356 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 0000000..b7d7c1f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,294 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Generator, List, Optional, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: Optional[str]) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: Optional[str]) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> List[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items( + self, + ) -> Generator[Tuple[str, Any], None, None]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: Dict[str, List[Tuple[str, Any]]] = { + name: [] for name in override_order + } + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + f"{val} is not a valid value for {key} option, " + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead." + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + f"{val} is not a valid value for {key} option, " + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0." + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> None: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 0000000..883359c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,94 @@ +import functools +import sys +from typing import Callable, Generator, Iterable, Iterator, Optional, Tuple + +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.cli.spinners import RateLimiter +from pip._internal.utils.logging import get_indentation + +DownloadProgressRenderer = Callable[[Iterable[bytes]], Iterator[bytes]] + + +def _rich_progress_bar( + iterable: Iterable[bytes], + *, + bar_type: str, + size: int, +) -> Generator[bytes, None, None]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: Tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("eta"), + TimeRemainingColumn(), + ) + + progress = Progress(*columns, refresh_per_second=5) + task_id = progress.add_task(" " * (get_indentation() + 2), total=total) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + + +def _raw_progress_bar( + iterable: Iterable[bytes], + *, + size: Optional[int], +) -> Generator[bytes, None, None]: + def write_progress(current: int, total: int) -> None: + sys.stdout.write("Progress %d of %d\n" % (current, total)) + sys.stdout.flush() + + current = 0 + total = size or 0 + rate_limiter = RateLimiter(0.25) + + write_progress(current, total) + for chunk in iterable: + current += len(chunk) + if rate_limiter.ready() or current == total: + write_progress(current, total) + rate_limiter.reset() + yield chunk + + +def get_download_progress_renderer( + *, bar_type: str, size: Optional[int] = None +) -> DownloadProgressRenderer: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) + elif bar_type == "raw": + return functools.partial(_raw_progress_bar, size=size) + else: + return iter # no-op, when passed an iterator diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 0000000..92900f9 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 0000000..cf2b976 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 0000000..5e29502 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 0000000..858a410 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a54ceee642898cb5a25c474b73aed8628322d63d GIT binary patch literal 4006 zcmaJ^&2!tv6<>fP2#F%8Pg}P90o#&n$`)z)BW`8Kt}I2dtXNW_#z~cAI1qP9!U6$i z0ZJxA&G67eHR-hR^k5x&P-b#S$36Ji|DhLabO?$`r}lJm=#5k5)KlLs2pLMvVnkr~ z_j~)>w{PEm=&$j3CxU1Gw;vbAk_i2iRs1K~D(uT5LQm0$2%{B*1uW{qiU8k`E|x+o zA%S6GJzR>cL`u?%REn-dITq37QpZY%fJ8(>Si;d~pu?V(P7PrYC7rkfcjDNykca<4 zz+D`T;{;9y&~A?Q;9lGpK>Im5fREs#0d$a~$MA7H6hKdK^dvroPX|ziqi670d@g_v zb94lc;`0IY0!LGL3||bOmpD3((>N1AFLQJPU%^)c=rxXB$8X^q0rY1a{W+e*Hv{M` zj=qg=<2wQL7aX0!cky%po#E&^cox4KK<{yM4&TS~uhEqlkw_Qm%!|h$= zT7@|yZ`PEOi7PtEmQ}lWNy+J|Wo4P#CB>>hH?-pBcdtEI0F|CKfApxne6VcL+XE1W2Le^NL1Ei5Rw} zl!r;)zZZPhT05( zk#6igc>98btnvoeLCGqb8*P;s>Bg4f?JJG33MhGFgw#{iRr8HuNxP9;k>u8DC)&8l zS+{GN8Ts-z9ulhMt8Z{sDXQyiwUi){wN;%cn3RcuiILL?B%TE8D6bW2!|gibbcI4= z({THzgH^xt(Fdx*mZWaxR9%4;s1$T_6^fpAt1BjEC+gCjY1z4s8(#0wgOEL2Y&ayev)|t1RIWW=*ONH8*wh7~# zxIIkMGxxh0pHhlMFB9r-)=I^KErCrdXtUj$r>fTo!h^|brO-A!oOQcqn33PZ=>IG< z=pkRxc^|w%0nQ8-An>DofPjPm!Q0n8%5_6>y~D^6 zHur1;ZH?SJ`;-mME^@d4xnL-4lxZ%I66qyy%8j1D=Bt)_msv)sUq`q7uch>eFm|H)^HW{G4l zS*L1E%`8##5gZFvCJ$##p`u}uNy8x4GvHdrJ14HDC$3~H%_igip`3vP&m5fU8NZ)Q z7BJ1uX4B=Wo5=C#Wm_b@2~L#YXWfTa1N|tY3)i3ja`*h?Zg{vc|JCvBkG_u|`7S=Z z8z0{JWG_C^nEk$gXnS_&{$78k@!)TXp%;m%o&Ik(b`w*78HHEl-IuZ6#=<_Rp+h+o z0f1%4KFgk`-pv@5giS$!EPBM)pFGc6^-Z`D*M&N=Sr+o=QHNi8{q?O6GD)n9G*TC_ zz%q0hRYR$8?YN&HEEg2DVw>YRlTrwDnzGwAT&;Rwo?)U)i)7(shn>}0NJZQz*7A7> zJ-rQ9ZbUaX2=y{1yhf^4D&!>vXA@p)Kl&CMG|VuaWKH{-yrq?3i>3Y?SacewD*UXs z;MG7sgi|kL$=^?IO@4W+G4pC*bjSYlXWxzA*&V;LH$JsDaJRAWDmvgKPj0KbN#%vC zyiE2{b~R0PyU}bGo4IV3UV*wB%bB_k!-MV5qRbIjva4m-O()I7>5 z1x4apYmR*0k&im^O`wue^9-lPP$coXuawuY7L0;nY0=MY^^=apX})KH|tzz$K*SoWRKsfaIQ}9r=_aUj`C9S@y_JebRIDoJW4< zk@>^28Bez0k>$hW+aCG3N7fFLX^;HEBjI19;2_6=gh9R|a&H%a?0It0k>L*ldjrTm zsk!Kp9|IW}CmRZk^H(0ZdRX?1C!6DBBmNuvtLg2b7yZM#$&r2ZP!Pl>6+48!?Y<_0 i&$l7|c^=(owdP<<=-;-Q2tGTHpNGEQ{E-!T%KaD0$IdqZ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef3b27dcd041cf0d3ee94b42c70fc3553286a1dd GIT binary patch literal 9705 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1363f7c22be76d2c95e5460a16481464fe05b1aa GIT binary patch literal 2596 zcma(TOK%%Rc-H&!J5CdvSCcN#&>D)}7DOp8fkGb=rJx27TBuf=-LbRDKHS;aRE`{} zhaP`#aif<;=of}0OB?|GZveQ1Ok{F4QrVfZIVYv2I0o}J?+B_8!GbM1k}5^8Xv+N@dN5ai>u^+XUOFW7fK)Lc7T0=giDrB;glCV$I)H0k_yFh zSFXHwC6pIGTv#}_xCoaM4NNr?*Y&`r8g|z#;<*lXX@w6*jb&`CYE9i()f-szF-=H; z>j%xIM<_PKCk=viiVw1Bb>cai<@!{&ZES*-0<$ud0Yd&du|UWRXfvQj{2}o!4Uqn6 z0Pa9cRL(?d%H&kuOsRs&tD-4j$rQ1S(^J4>N;p%OO!=muW?Sh>Cd@A|zXu<^e&!=g zta?isx}yv}$XAy2HLMt()6}W8WMjp|P3)T3H7x8`KUgnkm1xa3iPum*@tV}~T>ok) z51>%cNy85%f@wfpV~~!>eO71;@Bay@yMyQ;fe39y*9d)@LTH2E5a>{<%_nJ&?!*m= zCPj&;JP<=PlR$~4m0UvEKa)FJNN5RV3+%F$*xHcW;@jxz3GgP}=G##~SBf#u!F?ms z7UNss9s}+y9Zl{{uAOdY+F3Kj(y=APbPnBmLO{2w0%}VjQ~Mtlq@jf}L$?%vUBY1v=+JpXf_% z$rsv!pK8lQqT`ADB069}Ok&9)3Vz3H5mlti>(9>n3j7GZ7FYx`_=IwO*)o$9A2R7=;y1m^(OD3QZjpxD5?DZOIR1$MP8( z<_yoR+m=BiiBs#A`%f*K6;`R{UBW^4AC~6W6M1FePiYwNz`i=(6X&P(5|J=0lL4PxRKBRxI&Re>@M?)XzMDQ=+N{P~^vi`(g^I=RiOy(1^T zn%Oz>`gZzoN8X(2m8X08*l@52u-|UVn-SL_3_}txVx8L2%h@*!d z@#x5lyCO*U$IV@snvzzI=&)xGQO$&*piS9TkKC)MkBVDzN98-3@ zUq+KpcP{kulikwUZfW8{N!czb0Nfe5J+dbYh2ky`9FOuSKX!Zd^Q&L4_QobVmwwGp zen0i{{ruV9*mUP|A0h;ATrNy&QF1jc%xaqBnSqS~&THDWK(|@x0VZpj=@|fwSq;}C zSQ~U96ob1Kih&Pr8e!9yuz?lwP}Lz1Nh9-seu>C4?CL1nSe-;0%su3vgzYB!L3r!u z>ACNPiQN=en7VOpSE`6JcVF5?aC|ZTh4JN71b*fJ!6>mZrl&F)%C^^Nu!2s*JHiS- zb|aK%s|n=TojItX>ad2YhHX`sbRTPjVj}Em2p_`)Pc997U^B75-+y8G-|8GpbyKH$ z+~NOG<25mX2NAlv8dYpG7UF@xrbPJ6zjeVNuz_>%idwcsTN>3HgV8YgIA&;XBc2r* z_+M}d!hs1n#&k<8Hh@GSuK{I04PpAVIMZ*CSK)%asQyLRc6pBDeniEGXyzfB_zj)@ z37vh2Uim8}aH&TKw!JLk-r^pjQ$J^>I};Bw)7zQpyD#r#j^2>|kWO+ln`ibA9Fe7e E0K&wt7ytkO literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..60a066e4e397ba9dafaa2663b9752f6527b13ec8 GIT binary patch literal 5197 zcmbVQO>7&-6<(6dA5o-4N&Zp%*Qumh+|)}(cHzQuXxNtJ)`=~vlH4Rzgzbtuq*h*X znc1amQ6i8-fZ9L+BR~KfXb)*Gb>IMXfC6<-Ii%>N7Yk}3bz=hsnjVT?)Y?6?r@pt` zU6K;zHdzomZ)V>6=FOY;-n`}SF&3z%)ksb+mNjasdWjgO%*+)d$JDY}+m(x! zl&E~f$8k~OJQCnZ4V$@bLBCjL^3tSq?%K>%2?Z{X&x~hA$j}HmekQHZrF5yH zX+$6m?Q1np0cUrVh&oYdUan{+5igQ$J0~k>;<}Xl_hu6fA^->yaT2XR`-*rfH8<$N zO9+${NQ=EtL{^j?mb#%c#Q+oSYM_QWGDFGa*tMyt@rfC6L=bkfPFuUwml>IBHIJuq zlX28MnVls=RbxS-OR@&8P%`OFb5;c5OonK>tjHBp&sR!0GBak-7 zp&*WIgK309^SV2{g^aXr$z*D&K#a1cn&fR_FN^2Uyw>csz08Pa6K zd;?Oz4h8I)^O~N!PBLT`T%6vV8y%g-V{nCsXID?p4GS2VsTrmgr!nI<@=G-~IbdQNYEc$-8vd>X7y2FFd=s;BDu3aQJqRDkmn zw>g(5y~7JLtzL+X$)k>+2rldnO{Qp3Uvf^ZRsa8w)z<%ivhGl}MWX5GQENWN4 zWn;k#z-?ghnER|~S-(Mia4PSPKTA8Vo9(UlSpw!~vlT5W2r6LPF^QgkC`C+lIh5@3u}ahIfuBd)nLV zfxph{ev2YnaV^9;WRUa+*y7Zb&XmxEN9 zb)wYZu8TCd8Cn8#kK~Gqq?b*@ibB|CsHHF(}rqN zu?&eqE>I&4^+{S%p?+f}sGOWYF_3U0rMzr)HWW0fhsV4*pfCVaP1BR0n(;e$y~}Mz zVt3-V;~NpO79pFlJ)5z_W*^z??ceNy-z!^juH&1}xo}5xE5UWdn_2r@*8MhX`UR|C z0rh~3dc;OO*@W7Q3UuD?+=vXXMTYPD?tkZ(nU6DnjGTG~JK?Nw{csG6ms!EcHHSZj zfSoY>aIAMZ6Z!3@U6Od<%+&&>`(eqg1|B#G=mK|#&-n{n&OZmJHD2+p@>P)d!2f;+ z&((r8e$}_=CQ%0oo7KP)$5u@Aa{F1dKWE)uy=~Gf-a3Q5_PC1Q4cf)-oib*RJLc}{ z6K^N(j%p#Z&*d`rxKul|)lhpKKH*&*TudKl?sJi*IkVrT7Z12pqg_1Qpj}D{wp(8b zEq=r0Xtb+Ach&7}s}?!G4^FMd-{6FBRh)!!*fj8~XGiMN^Y(B-g}@~B9OoBBi^Isq zPf5XVh3enq49#2ZAD^1KIyFk((krA`F-%gH4TG%IqE(*2y(T2AUgy*H($xuRdTi>_ z(r^C}URe27@GG@r$}z62c5E&yL^=Z3qkFKMh8G;key#(wM;pfx*Dl zu>63B9Yl!$tCXsHcjgrsM#nWihu6E@mpy|UJ;}A6~d)?@Av?PZ9$giKAneN#B866JN%<@4R;VwT;-Jwb-G}#J4vR$JY|aAD;a6=}%8Ts;!^6vYwcD z9`MJz0Bg^|TND5O=YH;`F`t1!|MS?`tGwW6T|iF=omNDW@H;}1tf(Xvb)}*q9h0PY zDzfIxge6JQb1>Ye7D{+kGWt#hvb==(ogD%shB=7g9StXCGAjTl$xcA`V~$}E*mhie$m;Jxs_IB4v}{tFjK6afGL literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e754aee2cef89b0a4f31a83fd0f7e5104b2b83a GIT binary patch literal 13167 zcmc&aTW}lKb-UPIya+%b3BD?h|$9oMahb2+A$?1rsbdzc1eQ5gSop9 zO$^mhHU6MdXH2$9$V}`BJpBkgcBk}L)lS=yY-f_0_JaszgI+TeW$Ml}e~_t+6Zxm- z+{NNSL5iGqrVH}kyZ4^^*mKYO-hX#G?F>9;Uin)M$sAtSW%hpIuw05kPmTi%`X#H4yv|+4)WlW6B zOzk%oT*&37cUb*xtl7kzVkG;kj8q}p-{Eq#J7-y+<9GNn;$t=Q`Cud=D?U!+24b@s zKO9z6&HCK58ji<;5dg3Z#-q_-O!ApDVd#Yyo_j&FjGh}D92y<<@tSim9vcr&BuEh9 zHU3OECTVpOvKj~#Hw4DR5n0iMOVF&qnAYdR(?f*B36$+nC&$!4Bt8LCSh4RkiBD*b z84_0IKs=#NC)AL>c0IM`Ubc?Hhb{pca6@1-*fCBrjqwsUCPaX^c^Y>N|GD$BOGprxv8%MNI% zF5BXU7LQaZyCfdw<)tckuYs?rhP<|H4-d4|6@6okY?EqbJA7CDxK*ly)&}Tb4|yZ) z&&xI#w*lUpW(8l9<|*02+-3*2fLiP#JkJJW!3kN6#6!V|2xK5mMB*2rShBxNqV(%Ey&H}Nt_9*ldup<-2ONv z_*_2)`;F%Ml|me$!{p!+F$#GOGrFv=Foz^xOiUCZ=D{ygD7xv8iYUqB;TSAB0n9>h zuBeXSlFbt@$+L>6OvV!tNxUeFQd|`kc{&K(30-p^LPym-7W^l$7R^N*aY;SHOBIbCt>U4SAx;$NN%9^>F{)Jdtq)hM=pM3@>hBj zBqC0#>a^0|*O%+%kCTbMc5#NT*+7C!*M!TV{Y30H4l@NKNO*L|lpgV7LKU}9C&g!C zk$6z@tKp~&vP0bSWV`->r4xujXn_U7jFM=;#$%CLIu9My7^*!#Wsb~GkBhN*Ocvwg zVsCFkkx38aIkrF!>FrfOa*07Ai_<`FveW~!T@Dj95sc8a$T4_}$D$zia;VA)&>STz zB8)1D;c*eC2?HVMT!VunQjp&DfnEW=QvBj`P)laQiVQOWilT7|m?uPKvLa3fr>EtZ zsK#kuT(3UO#aTKAP*yMzQT_DgY_Jn#DlH=Odr=aLFCE4Sdv%&Q`Z8tdKLPSmZ!dBz zY}sKw@0|{+lh7C6bjp4B_`tRX%8U8(;T@39O4(E_u<66QQTE-|@lSjg zNNgmO)3#J8Ss(?;$!tAORnr_ZMXO7bDTLVeNUUU%IIto3cZGLy)(6Xch5n%GB&%eT z?0;te3duqHJO9l7E@=nt@7~s*-}a&KI)zx;_DGfGzx5rH4#+aIjIU}WX*CE-GwXz< z2?~&zoV+lk(;JXEkT_C1w&&T!FP>9mMLd6c^xVL(2y{7g;`G_)UJ#2}@p6!agBQV2 zLC%YT>;&q+9F}Cs50(xu$zT|nkrTntvE;Z$<0s|FG_FeLf2~5#sllV!>Cyr!NysOY zPrw4`a+Fy`m7~2gFmgHWMw-nIA-mGSlAT6>ta?;O6h4{_Q@!IpqhlyR2#TEI zZ#E<@l@+>Nzy%OQJAAb@6qN$N_=;u^O0YI#5a#psc_`~-Y;E@#o6VlBWo*uEkS!b4 zts9<(jmo3h3JPZiIQKR<&qigl0eA2*;ZAOctGHf~v38}cT`TO${(m^~_K}aQhqhq- zjAqeyK+*UhnNUK-@&%1$Dv|yJwsh$s5(RiK$7eX4@jz`E?uA;j0a3`I)-cNpl{g#q zv5KmoD6wytuW)lFVwp2ZCN#b0xXUcruR094sU1eCkb`vOrz#8YMoFzUN^{&hIa!>~ z^U_207*L~(G3yoHhAXTyS_=6bI|t_XW#(P8A%Ct2>Q1A5j-6^T%7uJRc-LY;&oKeF z(E>AwM!Aqrbri}*>787GWo+Qx&2e))#SIJVwMtAQV~ox+YNyd>l<8p9dgHB=A$zZw zAC1R3^Hie&U&!@+Fz^O54U{ZmHpi6ME+pG9cOH9iIEX$}rY3dPuJn;ic zNFOFoV$ur<`lvDJ9H2G@`lw+g9zl~@v!SUOK!N!?q>R)Oo$Ar;LP2g3^lS0JaV zsB?=px8{OX2C$@qYIeF{TBB9bA#~wpjARDycmgD@Afwl;@l)|Ih+!p8U=;)zPumfY zWDt;1@DixlCoWw7ZcLB`HK(!Y09c2z<}4AOfJXQbVgo>*g?O=(4-@RJStr5njL1YG zNR9+U4jL;fsKn8>f`>r(gwZ&Xh$ZXGN?mCA3jk400+y~acRckOPiNZG2?93b=}LRL zHmd8Ejw~L5EK|KJUA=3greP_t7=SEO)03|0x$Cre?DN*U9>(oiP?rZ5XHt{tI{&7l z>hAGiSJPq^1cPeWZf{S(Y=B(9hYuKo7 z&eZp$>w7lbb*b}feIsk$ku1kF^lmYx2G{)Qdv2!XiH(}(OwI0e&FKSWe+S-`0wx+GEx2;Ln&+QcIG=VjFMlf~t?XIZo0`1s=(}fU+;#J= zKiunJ-1VO`CR;;p!ON9Dt^ILriv4lJZAZsub^Z5;zsw5I{N=sI$ArAE90q*8Z>t&H z&3sU^<3u;}!EW0LFZaQ|t`j2nVIvFW4@CjfZre}?_u-zdp%(7v^(>Ts-XcIs_QC)q zngXRd)f6{imzEe6UiGJ}ZeYvlhH+C-uX0*~EvF?)dX>=^AaC=U!B`W7YfR(Z3FdX~ zbw0#RFd@^+K)n}0-e2La@N+yd&2fvS*D84Cia=`wWn|8zu(OPs*DVtJDx>B#iXnZA zzM#xnkOfXK2CN}3iTlyLM*jphp}nBR1Y=ambg3H{PM8xU4(A1^8sqyV-hjHshD*rFwuQT|g#2-KJn@;TO+^hfLx%QCNd zc`(cWo||EP>wY5(9r|qoO-4pEKU9=H8(Xza}o`GNd+e~3B@+F1Y;o zRR!0-M4R|3h!aNE_;aH}FA%gAH1nz9=Z+5ylV(~!div}TX~iN3@f3pet#J`KM#Z+z zTqJ{$Pc;rAJDNZhkmkU3xFE%gFWLo#8TlcQH_hC&b%v}rL>bfUb>+N@WC@tC-xP^0f zLG0Ch?qrSI!Qwr&H|Wu{B5gXRg|;iFF>> z;E<;yFTYu5VP)+at|6jPo|+rD($zD(Ppblaizwy%HOc=-A^<_8yQHXZfL zb*YY2;v+}zU5;rwLO{5cY9L$`)j&xoJnp`LCsEdWDJ#J89>Nt~%|{^s_k6*&rdUtf zF$nb%T4*opGUD5?q@)RqMxML`MIG5T+ycs#6yfA$XxWb1uVKfXWf_ugAWZQdb~^+K z;MG-?akZpfEz4@^!s<8ITrKOagYz8NHyL+(+TEUU_oUrDE2Hb~J@dk6R?ouOi_i_5(J{0bN?#vSZL9;+~I?lE|P#&GzNWEIBibli$BQS80^J5&e+aa@XD zG?R6yR~=A-m*vu9rLy=&JSIEJ;=9!7{zm{*o`wXlj)tZ;UE@tjYdufj99XOIuGgHr zZlCAo&p~X!u=zUE*3Q)Eiubnl$vaq!(Snbx?T{MQ88*t161|f*~ zsUk67VL+moFNm5s9^gPGLvR7D1^O84H~_Yqias2Drt;wgqXxpLd6ThFHxEb3wVxnF)ql^TuRR|Ga>N17|b-3afqXJkPuq0kvfAVD>NyI|F9ti?B+t14DW^ zz-LJw8pe~p5DmTIaa1oQCO8KP6FkNsaRtt@!f=*EBat~cY7&w?unel`s2sS@d6oX8 z%M0f`x-Ho+ddUdbRVaNm&oqH}U;rYAARb80OD@uam7oPlPFPTPSl5UIZGUnalW$;h z2FI$`$I{nAfpgo7^Ot1N#!=;?m|z)A`d zaFdZCaw>LarH!iC9$ML!wzl22cHA>Ft=`nxjQ3#LdobfYo%Wty_n!H9`lDainA-M*3!twXTki@?>$B_^W?FM!L5jWQ8(@w)C{ zIeDOjT9ljwgj00|k6?mI$tg_!3aknmC9H26&0k{s|;G6=ax_3w(i<=)_woN zW=m&54n33hKC|xq#>XvZbboN8Sxi;`tl_POziUc4*Bbo`7No3ir6yJqAGr^pR2gQ0 zzFdv3U$}nZzJjjs(tu;2m%G&~3_N8i@3|!(rSkJ(imzf)8MJ`WqpKAKX(HuEy9Ts7 z$6scMtEd&cHl!XSFmjExF$J%#-08<0_Y*kf#a@!>O*myJoH3w%3=#EwtP7&~4Oc*Q zPvy-3KuzvZEI^?`AaD3x!`Qs=m%V{9Yt z@3W31y@T{d1)h`UBhMmSH6U@2K^QJUrRdk#_T>IS2)iR3hQl!guZP3+8y$L-1tlF? z4QenP!#gJJ_M}N{KMSFEL4gz2NV0oKKi-8aMleH21~UTmZT=b$mZ3kKsQT<$Wl_LL zpGp_Nlvk*#R^v1zPlGLRN}C^3vxg?-(4_#}b&6<}C*cD|;_AsbT)LsR)if*irYgT` z5I|%J&NFc>daGT(5rE4miQw!8Up@<7<;AXGlYYbiZM_$~HED*?Qg%9>1N zSGuxm#j;-ci?Vmjh!6}><{c4j><1LcQj;n^rUz6e9o{q3{1Rp=w|R2kz0|Q z-&t!qyIyr}&2jF_EQhW4l}`AMTaKLryO~?NZO8k$Tl+l6E!_K-S}4E2v;O!2?)?J- zltCiucZ|r3&?Ce{Vmx^pLxq}RO;fNT=D16MUeXE{0P>#cL9GL|An%bc-?TtvprC(> zqO5bAB;?|;tYmJ0+2ACR9fbpv`EU#l>jw65OFmz||kTsFORY7AJuC@tuSx zCRH((h+YI}G#1E20&f8+$=*`{lE5%19FN06RT&sGgmbM)r(f*Op`>4IPg)I&J85e7 z6=Iq`j*P-O2|5pYU@;dFq7;d~DaEJ8MU{!|VGA^~9}*EN3Os!QPzvf8Pze>TdG)Uk zEwkS{dZ+5xP4)=WSjHKCyUJ1$ct_3-awKh5b zPEY$fp;Ethp~r$l@Sf~0tKZ8+Qv~=L@Zc@uXomBy4fimdkHJYBij%dbp7ko&&EBjHVD2kudS7eY$-KFHz`~U{2DpcG zA2*=@jsaV47yrspz8;RDSvBuwlncayimrY%gv9C$48q`lI}*LX07o+gm74dVudzOU z1a4TTCunlxbMb+y^uOD5j@WO?crK5{S*Bosd&YCx>e%kos#EeTGWr*m~8|YmTQW=lV><19Ob{nl)=cKkN=@_5hwgC*S}hpg978@4}Tx z)Ti)f2?V5g2nyBVi5T4I3K03b3AiN`!23a9)hcimh;+e#1SyB0jE2L0m1rD90?0{x zhG-)88C=*)!C z7J>Pek#jAw&Ga{z1={I ztI8JEWXITM!JfLDWgxq;pJq3o`Q_PLBU@OLJ|~gKw*~3Ips)ZI;1&b?_d|^<6;R`&u*$UWEV~ zQ4izHL8WGe>reWXG$akptj^ zNKu1oLIE(i0Z8v!(0dYE)3)J?Z=2C87dj21HLsrq)|Yn3%Wg$CL${5WP{R?$Z+t6y zeGsTB`2Zav8dgHOg2(uQh9?rk^sWfO^F693DAkf5;cGW0yAaTNSm(o|zsAb1-?25$*JW&t dX|mG6G(%XzaD$VN62sR!$_85W&NidAy7~z$jvX!+8 zQa!ZpDzyfRty`frC^b}KU~>qP4|;lFjz%bZr6$>2Y;T6|-BOF(4A=uBg47D%drahu zMDo8(q-}Ejdpuh-3GJQa0&Sn-$54RNEMJQxGO_|S`>C{)Nyw)s$K-&Z@qMXDO&Ewr zRZTb@|YS=ry>aeHBX$Esf?Ae2vx9Rk0zxw13*;P{&X@KNl8%kCL4E+AgyShyrf?BGQT>z^Kzc3{3yw`{cIA9}BFwf-8)07HU!r&+ zn4dy=$~-9+IgOdNR*#^HUu$UjFWxBx$t ztx+bGU_3dNkdb~ET^(W<60p*(Fabp_(|CZ=+#A94Yr_L$#|LCpvk@SSM5Ukr@KZco zt)87YpbBpUq}!mk1%Aqtkd=-%@cRna@U zKi?Q!5_^8n6MNm2rb|tqD|k>pb@f&8A6A+B8mt?x43Cyw*&m<+S5}lvNUoB}IIhRZ z6v=H$)W*>dkSko&6eCg7*`0(;aT1^7#^HD`i#cu-+2ny_j2pE+&;g&4AeoJsB@3SP ztES7{0+})aUep2=*QnZz@sjmra?vzE49o^`4a1r^_)T#W4_*0XfAPx2p{xTqBM7XY zlF~G5*UO;#qWZb%$Ptb6e~Je~k({EXBZ3dy+FtmrKMmO+P|;O5sIzr=1hDZ+Na)7| z%jb;E{eZj5apdw=flQkIkw?m-Z2&^sAw$V(R>l%>6-0w6*sBSNcuFpc0-bPdhhuU| zesPRGmFm}xasH5*`;*!-|2mBzB?v?z~DBOamawSZH;rM77j1jp19SwCXxeB{P@EA7d}X?^QLP1o&Eg_ z($Cdjs=vt13|x8U(ldX3a@pCk=xmu&=KBiH$L3!sI0HA6Ydo>J*9Z*wy_MJx-mfCg zszuyi!Lz^M*q;~nfA%|v(VMqD@wu`MrhcWSua}><^>tZ(*bdo;9us_j*k#7N*W7o| zsyUKOsWGSqi&;CF3W;)7M z?W0;n9)JcJ1i4Bz9_G@lMOM)qC)kK%l%^>~X{$Ml>L0Wu=wXiThQ>;H-H6sjktjxJ zI%(8VuG3=x%m#c1D%0eyw|Uvyw&-muc-xn~yB58>7NR%z7Q6?h2k%#92SrecSQa^}WkoPcC*nc`J6i>)4%|`W4Z&<^YJ#73AP+PxiHw58JmL zwe!CaO^|P(WTZ5v1Hf3`paXy|iXv=^QxSrt90$6A7>3N0DaX+ZIg=6xfmftF0}{(= z(=+7TT$y&&k}@ASjq{b zC5krMNO{kuoM{-1G|dq9YXd4?jhL48*FdbD^=|dVKo$s(Z`q$Xs&abiuu6`isA|x?YXl^=!Fv@zTY- zXJ=mA3HhqK`3?Hk#A_38U3~50!uXAg*De-XzmRWvy5R1c;a5D~Wl!6pr;X9zjBv-{ zS*>fB+woTSYu$yqj+rmsb$F+TD5@5%rno{>L&be68wd^s86&uVg~}fjode`7oXR&r zv`leRCW)KkD@n0*`Ea$0Suz0;n5KkOb6I@m1Ouj`&1AG)H~=Ec0_KY8buc{MxGJp7FA$aPx>lDJ&uhe(s>pB;>HJ+>PVgv4r#OAr;xa639X5O*z z{H?PeiG#mwCOeODj8USnj#4U_6F-2aKgoAO8Nrfa1b}b!kg33YqY^!rMdF|28G*m* z)2Rk11>8&;p_2w3D2L!COTG~^@F)sbcI===@scamXszyOG8!!3(enTmLr63bD}0{r zC1KY+Ur(XZ)oIJ`IItu>QQ_#|{(k8E0{=5}pJ>&r#c;yrqUYb4t^;wxm3^M_v4B=H zZDzBTju-^Sqx_mF0Ys4*v<-?Dp(t9+lDT{_AVP||^>vangMG(OSt@j6$#R1&6;sY) zj6j=gv}Dm4{oq_!m<3k1*(^Ek!T{WcC|RehIbMQLgpW+|DU&2lS=Ex(H1>z&lH)=2 z`a$f9k6u@WJ{64>8YQ?l+Xa%d(niUaFB8 z4*BWVu%Q|PN}!qJOg=_p5OiT~*6HI}M=%()f8%(ZDylyl@T<^?GHoIi^nWFyDE?i$ zK#-qHD@?9phd+`?1kVO+6m1nf*rb5b2|^3UYR-`~O-9skEDo%q@d-IqW(%hG5tq&y zrvL%q2_qgG3=Sva$+)VyHUzsgfuXI^(dyG+EKIW~nURtBiyEI)Vww|y^zpK!@%V+@ zfU1S1qRYsb4m)WQdeiVz{sXdUvQp)pK5?)1vH6KYZO`RLhXvnGkyGywSJ|hIo}e@H}@>Okgwi7W4Y^Wej_@+I5|1H`zcpQMf{+G}HcgIKxJe-fA?ttOrogrU+~#611?~{U z2ndp5FvSd^5C@F2K&u5tStLu2A1AaLOy80oC{Hd`hz!ZPS+J!nhKhj_9>XjXM$p7O zK>{K;a6!f`%rncnhQI2L662?kSFOrtXY`nr)Z6O8CK5&KLI?Y5akT(I4Kxz5IoaA zj7~6X!ul9gfE!5P9gT#~Wl|DY>u7+{mjK`u_$jDwf&O?FS+?H$gz6)q<4Tw&JP3YxT_TU$i!?i0&({ORm}TOJeJa!*k`} zrGv9yD>$0+LeppKjl|u@efB#$jAO3b_gni8Sw7@!M~U#ELxB7ts{z(e)=~6bB{IP$ z6nH-2;OWE^5+pukmh6%RLirZSDqAH{7G)dKpCrh3cyO>mk7Lpd&a`s?L%_wbdv=E% z4{sn25va(dpGAk6-HMV8oEY8c%+@g|zrTHqg6Vs>sBfP-P3vHWp$*I>KnpU)`mZ3X zj5CfFL$uIbO2B#u|3E716zDG*>1Ciz&204irsAmJEIXU2545Rj7~93m)kVx-c7 zav=U9#_ZP0>kC%&ybDWFjzR|3l;~X+yBEdoh0{0AUOT%aKDi<~(L7xiI~K)`1#V&A zjU(5NEQtq8?Y>3Pw=A|Uime}s+nCX+Ybyb^r9>+wUCDku4XuBk{VHt|;(D)iQDyH< z;wuc2O)hHFF+#1LH6i_P@>m$cn)fxkGvq0M;$5t9^ z$c7K3inXE`V9CG-0mG6Gk!&hH|F8rsgns=4X%wSn4k^!SqwK**07fXlqExXCQ3)6#L9jHQP`drlA4LqZKb=v>GAe^D z3LSqMgBTSHN`kJ4o{ywrGMf%Y;2PplImn(@3|BGhz~{AMcqHq_5BWtono%)&k*&jT zSdAo)L^26gPDRraEG*klY{!5bR3WlZ>S|;$UKvM?QF#RH1R36Si{qR)4%C>626VQj zBMM@+gGF275CdUvyWVGyef7+-;nTz6{=V?hGeZL>k7@4yGtZtZe`gyjL)3@^;w3@$ zirpE=ZmH}XIHsc*2>6)guURJ|GzD8=FMzPy1ye!pEAC6~H52b@zt5X(_WMp^tC>CWPETR` z-X(D##=wuf)AnxH+g(dy5Wey?ZSM@f`~2I_>z(TM~~mkl+XW za_@=7-V=r1!6oq|w5>P;;4~~dI~JWC@H}+i%)?X=jj5S^>Ycss9)A1qlGwW{wl0a= z?%^Dr*Mqlef7bYu#^r;9iw6e_J5Mf&rx@yv>)so_YrY#T*IM#VoGb)REkQh9U)Hnl zhTab0((?NT3hkxE^nTF(qmCu<5QExzz5mAGwZY}?zQyjoCGqGzv1v(cxhGc70*LRP zr*6j0wCXjJZZid(7*oc`F}z{Gdq(k{A*?yW;TIsNSnRQe!%{j5Am$7Ui`B$qDR>`& z7nK(>@NWQ!r=-T|ckqr-MN>3}DLR`P4`E39eW+c7ryXns*M-n2Bl~-(C}>!}Onz%J znZ-4cb2UsKyX$L#7v^<=H*a6FH=FChxFt|5)GkD?HL&VUV<$W{B$Oa5 z6k;Cw8}0-6bpYdDFi@v$-3&!Cu0)y0(rh3nAi@oQQK9HE=|K%7DqXB?!x~2I^yd)_ zw6f4&g#ba9OQ*Fru~wo#O+2jA`BU@;bbz2B3i{v>NaeVXiR)wH{+QT4CiYKA<0qu) zKS_6ibpM8UKOya(kf;Bfbbdnid_taN`Qt1<$nt%6ZN8cMWt(r&=9_z>VB0ZmS+j6l z$L#PLfnvUf6$`cN__ZzyT<@CO#vPbb=ld6G=D+mXU#=7QT-)m5+zT)Sikn}*HM;ot ziFK^6?Qn86H~BRJ#VzsYH9v8!V|A^?%bnzIp1##~OS#qg{_|@DzkeyLvvPf>nLD^v s)yOr^j;|3Y=69@Pv3A(aHP0PcBTy_1uVZn4dly$fd*FWw6zr`24}udZ(EtDd literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b07020f289109c1d8f1fd75969eda93da8ddafd7 GIT binary patch literal 7507 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 ZR>S-61z!f=@_M?TbRGN;LkV-Z{{jCQh9Up} literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c601d151646d28820e6da05d6e8a78b502ff91a GIT binary patch literal 4389 zcmbVP-ESMm5x*mkLQj(8lW2liTrC=Pz!<7Jv z-H}RZ7)v-a3Ht&i4wR9A@V_bhJT?MElhI(H~ynV zY7?z&U&FR5{ZywmypEL{$h2(TY*Ls-E|`sm)`btWiPdlJzP}pIszeB~E*}z4Fmx$KZia#S}9hYrdtmp(+TROtU!V+#S6+z3Q zwQSeS=39mDpDa?{#(7IC-_oj>7A@T>f>axmre+k&-Zz5`{+R`9*_~Bs&1@M+r7g=M zm{N7IrNeX)B;Y2ZBn!GQUFisPYr;R`L)-D`PJDW!+KC_eN;*O^K;L5-_Icbg1sK4& z5o_YAV2d!}ZOea>$cj*dv-E}7hCNn=6=t8{RW}GapJ(gc(64J48*U7N1Bt%avauVZ z;0en%O#__Bbpu~X%t@4Opb(~|8&$z-+;wCc=ELx(v(T*xP9lBx^xDPek)ux|#~nHG zczB^BFWi-$#ZzlnUjLLZEMjfvJap><7D^%#N&zI6f+$duP_Pt2QYnn$C<2Exf@Cbi z(T(C5JGv-@s@|21ZKHcR*4I{bKIF$v6089uu2%kdY&|NL>`VeM}!oB=kIN9sqy*dyE zTb*$XG$f(`3L>cr214OSk*$cwAijwVFf)pQ*%K)FXlToK(;G=hp<%v04eNcRdz1Bc z4;_Vi?~wF;XYY(}`4)Q<$tZ(HK(lN;+9%K-qR~3D`#`gkJ;LC=z5O4JZAl)_8)-6* zCP0(P|8I4lg@$_iy?PF6%JpJ_I?(DYpa&Y7+W)j|`N%5@%R+AYYCDi8?PNaR7esEN zZvwckSr&ktD^+v@w^wgatk^Z|g$j!%HmO1k4F)1`E08-B9ioz9Di2QptEN)LO-wXf zZ&nqP2X;ZZUel@KMHmEUQ(44Hi$Xv)T86D#Aj#Gnm=z4nctR6HnH(uv*D3`i32C7P|& zG^$h$b5S!Cty~7IpI4BnG)>#r)qiO$GyE7pqe4z1hrkcyFzb%6?ih6Ka6S)T1G=%k zJ^w+|Snf&Ng{W83z^05Z&yrN39m?kc^4yr0jZ_%7=P!B+(ObI3%nu&v6XSV@+x4vS z$!a?=ujGP#YH^J+`8>W|Hd+YhG16^q(ZDXC8mFi|O8dwqkD~M_y?vAlF&jPS5q6?- zF;|A#K?NUDH>M#z0uK=u_->SeuWD&_4XOu@(5_TB^(N0eZi2t{cXz{||FG)5UIzGsl2=Y=AlI zq{lr@C;e_W&iTT?H?)WE%cTO z=9kM~eDY-GttVq|cavPK3}Q2T#5xJZNgra{r_XewoGAoMi9Jkg?=zjbGf(EuK9$cs z1KY&!#kb{S9r@U%xcT;9-g)@W*YXc|+IJ&<5_BbvRB5?CaWNp~sm=i#L#el$25ld3 z1fd7CtHBkq?n5oC+HG`lC0O?p-7XOZ_Abcp1Bhas7w7%_5O&l1OM-p(;qK`r3a^qx zeIGbp5&JmPy&XX&tL_FGP+3tp(11ENK!PbyC-$XI?L%d@JMcRFk=QE{E(#w3{H#hg zt4VmPEB>JGQD-tQ!vuCo{P||6tx3J+M7`qBDBJNsl@+hqq@IIx`FZP06FN zyBA+(gyiu3%l9sCCk}KH2R5$%>Eh=fex1m5N8t6#tS~%&cZi2{F5s1|xuh$rYEx@q zRdr)3vs=qxhGi=H_b~T{P4|jxr2c(b;m^D57l{DTBh{?&d zOV2WA*RJeHCqrkuH8C3+-#FD3;IWzAEI*v&!@ts(jN-{=5_6;836KH8ybQyXa>Mqr z1%(J0hhZE6BG${ivk-IF8si`vwJ0( z7O#fj%3bi1JU`g()LyQZtsAreo52C+apOvhaKq!*JMwd;J-fwu7Tjx9SN@^r&GY0} zz`}r;{usJ$P!z?#3$bs6>2HO@{}PUWBb?m*b;F`~bThjnz@saN#o^D+ZP3ohp&bFn TFEiIgas0FQ|0A#`xAFe~T&xLE literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..02092d7acf4b92c04db2e15a8335ea1651899d78 GIT binary patch literal 2972 zcmai0OKcp+5$*Zy&g_Su@U#3#$|w{euMzIXN+d;sML?ivE0#b7B;!OI7?a^lb9dJB zS$EHh=88mk(18SO$T^V*9~{7dDbPTC$T>(ZfdOAk&<>e44H-xRB)2ulz<^Jwp4la- zgg~0y>Z~C!C0XEOlB;-$QX=AIH|eP*HR2Ul^HQahmoB9vIpJo!Y$@w?lsY0g>2`Wur7o|# z)GZ(pVWE1Vwf~6@_iPEVSn3tg%g9zAAzQ=hmekVr*(uy_r{R~u{qqSs`$#V37KMDr zzqr9vUSNq=O}CCIaPnP;hR`P`0?#vjJ1;V2a(epSG)vC>Y+_<^W(G9bmu|j#Z~7;* zlg90vGq+iGW_J4C)XR}D$;Z$9>i+ALWfq7NVk4-BwR&j9M~dl@FRz2Vjxgf> z1K$ZH$rekpEtM2IWhdaY2|J0Cwu)7(4T7yL;}qOOgOT*2l25brZIf17CvLo*(xHI_ z`(fSGD=?-9^T4@*Wx9IJv|cyMFhZ<~^8go8k^O81Q>qvW}KeHBvuIs@&qgnl0F(EroJhZOdWX z$H-QyT3dhI+lgxWSZZ^}D{QsS)$Tt`ZY5(YfuAeWo^jk)JCFG`XRD{*VM~lH1hk0q z+EhavGaKo#G1DyvfSHQNv}0DGVL))>0>mkf=+O|50tD>39{8BY`QdUy{Jx%7m~3Mj zvZPfB91ByHFfASdmbCG_S$9JwSFl?n{0w=Osg`FO5F^S`rX6u$OSsF33WO!*1LB!5 zsTw#wOVmt4F=0IrY)nEv5zLJ;3F1KqcCJ_nJY2N#17bGJ;!jCX#a2j* z^8lrC-LY}8@BsS{imo$PtSyF>!2e<4g-b;WNi)`hDlOKWTG4R)5EI{Yi&mVQw8*hp zs4cSe@sVjGcOn@ICkBS#IMe{Lg7(zR)LO$cgJ?Ro;#4l?{qXfk#_zNrL9zE(dU0F5xG8M@=yx}s z-1uC*b^u!-mTcjj$tEdN>m*uvb&c@-XJ7!|A}yYdkJB)IjLqs1w)uu}YvWWvA&*+r zX3&yQjVgLu6Zgx~l6VWf25woFL!NU{vxOyjNeYip%%wI?w_2GcptsJ*DC}y_nL&AR zs?jw{uczXAaRb;K-htIy`6tD>Kh(*|K0<(_7qq@BWUjl8MTt>@cc!c@L8ir!a5e=n{Nj_d6 zJPTQ(UbD>*Gp&N(jAsMLk6g}@t#=v9GfZVl{2B2q)X7CyC?c1Ep}zvMg8r^$SM7Ih zeWnd={CvN&|MA1Mha1;+I!9OK{XYG@++X_gtCKDKZz!K<&V4PR{^!3@P->{DBFKyJ zweg+w@TcTz0fF4)4M(pdvjVotj?>geVt&z?X{LeTj2ACsDOgUyKuc zoV)}&o(J?kkftOE!WXC``cHj{hQCC)f1pcG(Y2>&;wc*cN*h|u?P^2Y+R(<2ceD#D iiNnN*kbCFiA%d=XS4aqFHl!wkZZqyak`B2PZT%nn*}0Se literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0abc0140184e5b18748e4df800073295e1ad9358 GIT binary patch literal 1677 zcmZuxOK%)S5boJ|?)tHQtlx^6*nxPFvO^pRIK&abvIqiMAVWmdx@Y`Y ztwn@1BS#``VabSa;AXH9C?~pSc48CJ8dZN)Q(ayCRdxT^ z)|LZod~olxsv`mLD_7DXH^K2u2G#)tP;h`Nlm&s~jFWN2vKV90kzBbf$5?U{S1qeC zmL1K_ma_uLfcF4YRsmFzye%ei%eiH(nEjnAMS&_eEhj>RA?ZV#gltwPeb==-$l=VV zlao_3GYqyity38LxROLlq|#K5#~D}$2$Tf~${8q>MVKi|P%O((LJE|TinIad0~M5= zQ=qykC8^Ms8^{To@$0=a^Zuef&n)_!kM&BD45|0#^mx1)V85zgZQ8GWLRCKqZQmnQ zvT&791*0&+UZr{3I62NJ*N-m4XxIe{5>n7+)xw0bgclweCh#}T4#z+=Z2R0 zrt=p9+h01ff3}gWb)BwAQLQIMr}K6bvVG$|S)32A!;BP&E^(@G0f6q>|#ZO6i?k<>dQ@3!YJdTIIe5h{$- zJ6&se7U|1=q`S!SLVctz>X-Cl3+)Z;pk&%!h_GilrF2W&&T_z z=50q6D+rJWvC0*x=Gz`s0t*v_X)eGlp2-`jn4=Ow&K%}k;1(`k3anLJXnK~5s9a^Y zfl$#URjQ_W@O4S|aru1KnD<>|K(v6Zx@CNX{Tix-#F(=&szx?MMri?g3x;FQ8o_cn z?|WBDm&Xlahv-sZRc>2VL=1LfN!k6Xs}3u9aTdxi0}sl%SvHkUSQJHl@F_-@yg zwaNW_;b}+rdhUL1_grZ!+N$n+ygT&Pla9Babq#Ms-`BsbZ;d|qe6P#cZ8d)B(l`6} zx?W#XpKAH9+rMo8Njv{oJO4x*eU|TCYyaou70@yGClInjKX(s)HGL#9^qlYxzb9Xx z06$FR-_47U+65-3S*0~I=Gio9&NN*gMh;@Q)im!!mcuK+G}SbrUtvIw2;+)&+f~oU z$i(PQ#3(j7xtQN)%$`m_MG|5vvSQ<5ralD6Oagq4i)<=5Aa5|S3ic)aND|rx?oJ&J z4)02RN78`YxAEo?VAED%tMYIlhCAehTku#KBF>(@HA#Q*?Wqzj2ewyD(incJhaI~# zYmpZ>1@lLU{*Mz0tuP|&?m$G6uI~SDB(zjP$rBg%d2*06eUX3pOaUzd@?PYv?R+qTRNvc%l7%~Q+$@}#4HX3%^lH{ zmt5ZLQnD1PF%Eu^(<^MZL9L(-q61Py#$A!?Ls38Wu6;P5eGnlX$ZTz#izYzxMn@`= zyT0_B{X>zmlD0@z;_UqS=G*yZzWIH>nSb$m-3XqGAACFYod81rK?~Nynwc#pgU}-+ zB9W0$jJ|CWld;8Y49(jmd&UuSWY`#+amJh(SIni?J0vc{$9O%@O72WUtU=E^B~Qj1 z^Xhq*)cXXCKLmCJGcF>rQ4wS#MFG)N~;$;@jtmoX?$+GnqtI4BIsJ?3F9uyrQ|LuAVt_ zc4`X5x^g6)RpTP)ji zoX+X(pwD|LoxOENmL!~1WkM@1Cz7`kDSR#sg5IXreO|fox+M~oM)b-RUDV|YA&xPjaf6&2D7mBK4c!j0>l^*#cU!Ivx~NvL$t?O zu~Bs1b;O*a3%f)PbC_=jSuv#_3t1%xRtt1mNk*SyAu*RoOLSd@86szd zoH0=#0t<(gh~95{@m2jzbsWeMIVH>)3$6&`W`|R{faWAv&6Dh8()2WaS{#s4AKUt# zjZThQZJUMi?x%oesr;_zBeM^K_HLhb?dkx;wR;y+KRd+wIMlHMRVD#o{FEM+!&$hkXM`Q|&)lXmhJ@o#TetY|o zIR*wTps;O{&|=s_cz9{;2~muz`u>mSbO4B(NTzXsYP6teZYpF{Ypv;2Rwg)3@O$|* z!HU^Sv*!rb_^ceikJux>aqI22U?(2kgUSc&G+xhQ}xAUyzkG-*J#64k#J$$=$1)+>vl3lt+vgo)I& z2rwe$Um>}Jo^pW_ceuzMUYq{uyN}=9He^Lqi1lF8`{-S>KQ5ajBNCbZgQ`^)HGV`8QthPvB{nMd2nATI9Lo0KJ~Pg zJiSFvZ`tF&fAQYME!N)ZUUpa9i1*%axYtnP`ioru8nbqClRHio*47>S>FbYQ|AITQ z1@<7#Wh|VcIlxbpq!~GB6QUTSqa58iz$U1d>kaiunpv`|rWYbKYjKboA<D?ou3OMCTQ-4kjRbEc5>)g=cHjG|yKIP@_v zQ128`M|C$dNUb8k6xxr}D!TL`GPK10?(r7b**(z3u-6(Ne4#q7r0qIzvL*IU*eUZp z&&;FS_UmY#3A-jW&I(M6D)_Py#e}pXB=ZDfyecgSiL8Kc=P*fUpq!8d)5#;k1y#r- z7K9sEAUGq>VKJJ#naHNF2wH@MFq4PCM%yHuP_Qtc28NJV1z;{R5#|#lo6e>pI-V@< zo5auyK9tZIhH&tJ5*AchfUnZH8~NIHSokFkXkoY34QwM`jlpqqC&n!^G^Zq|QUC`o z^Aj42brR&5mD5?xsmMgdBB85G=tPpkG@;WKc9K_Ve!!~LI50<)AaH9=V_+JC6(=;) zur3JXAY?T=$!8b+bvqksjzW|2_mJE{&poXxj#6l>7#geCZ7uF)Zkt1V<9**fU&Utg z9@w@!c=rn*^0z!tS57~iU%gpui#+uN?q9lhsq7yt`&%CI5Ba}-bv3lnacILou+7@N zK2XupzI^FSkd1FQwXZb&sPzY}tIQADH$D5GHi!P~(tlT2X#QI1hLL~T-*|c)eLBv+F>3#e z?SEs){@G!M=7(5FHJ4(rJk47d0SN7ytlgwEuW$1QkojN9jIF?YTn%8b8LFB@Xqlyx zzw0SDKDJwge95U+xALA;i7hw__KzKw{1ghaix=I-atgv3f)gqR*R?p^48?IGByvFE zz;9_Ic%^z1oBPDt3RMkZMt7fcl!5~%m*?XPiR>*bYC)p}X&hpmxhE8TvOv}+0sW3A zE&i=FLd-JAHkF=H$T%1sW=RvgG-pyDCTWHO*+&x!Ct+8O_m0t8+DHEY`6HS;4T(Yl z(6rX@-eCMjJ}rsWZDd%y*jwk%d&*2weQ!f@2W_{Yj{Z{nkz)IiwbYaO&Gz%lzHKM! zjF#KG%e~>B4173H-hX1-<>+)TH*R~7|CLhX{$k_)a%Z^QHBj#8hbF(ff?ywzL!hxP zO3)$e?n4)})_n?9)EAjsqhMi!O6BxtCnCJh?6}aL?!#E9xn$o#aEL@zN3wK6JgLf# z0HT6SHAd9R6j;E1X10pJJ8j^2CR1N>itJrfaLzXFv|71>!y3^<;IQ>EZ*j;8be~JwQYdMA z*Ne~+r_!LNKLyUx{?PV8qXRAROI(3BBGHl??g8M>(gG2wv)T{7EV{qzhP2^_Rada<;DV&`G&CC2*kQzv`W;wzxTEA@ z7=ByFAh`&id;~|dcVTgX<}-T{puc1uF)*-z11R|4+UJ?a483h|nGp{tt}Sv@0bla>eBtjY4o`ojQ1^bnHN@;~@X1<(!ApOe!G!t1UtmnLgO=HZ-q6sii8P!W zsu&u!kvE~9oQI^=a`F~b{Ju69sM0P-EStLmKN}ccbv+p^ja}XtyZrt0k6-&rp*;5e zrcUPju1;og|D+78NKM`Zb|cXH8SCCfn4z~WkP=~BJl87fVqvDQpcJx*iKj+5w-L$fPb zB@~0maVlts;gVLGa~k&@WQ4ZC#z*0Xn)sq~CK_Kf_PsnN3xv8m^wGm5iO_-_tk436 z79d=;{EYgjs!;4SLlJ%H?n(xsa&h4Q;ixI-pqvJ32q&io-?I9rCsvs6oq8JRUf*|N zBkcPZTjgMTDHtsV zqvg;(`rkcJ?vIrE&lda7R(RBUbPKVqzU6Z-eBk-z;S;6dw~NDXe~veYr?>1-wftrU zI9cbTu|FSs;jrnB0`*;i2ONaLQ0K~Pf3dXu=D#<0K5aczZawkjz>~K1meU~77J$9f z6aYdu`udY^f3ALUe0rnjYVr8=n)2iQtI5APxPE+k-P66^bG00VBUdqaX!+c)hmr5l z_Ho1qSJ(&hD>qhKSGhH2J$Pu78+gjKtOt*jg2#%%W1md_!}Y(rzW$AOHb$;&1gAE+ z>8D)Z>eaP#UvR@;{i*@=USobe2&&e-;ja}6uAj1}M<>Ge&&C52ea?UKxgh_~eJoAG z?8J}@HXDWiNw^4@47X@pJf2Nta6GQLr z?3~8t6}V(1VNgnF@FtYtk!eUYJDjQsMGQit7NInN(7O!HaYL3Ro%0wjPBBM!oX1FK z4~8d&Xe~{sJ1ake#5Lm^?+Q*1j@;c3y0dctchANnd( zyy8LbwkUwV=gps9(6j4Tu5HsQW9)Rq;eO3U4>5os8VAQ`<9>rq zkLFYta!^fln<+ImCX7yw_6nTeB6M0snM4c*OHWuPnh=UoT9Yng-B(1CQrf^1qi=0} z1ny{nk?L2_#7+BlztlGZ7td;50WlFP#*vD$9&;o++RR&#h=LO&c~gfIEmW@!-%euV z65K#J9g`^G*{zI1%#G+8pT&{_toNcZ%qp zXK3^p8h?h)Lj5yz>=_z-&UY-gmH3V#-?8%A2H$tbx$Vp|%(3<6zW+irqksB;0P$)$ AA^-pY literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af3f5497ace011e85c9d46fa59cd0e582863d781 GIT binary patch literal 3984 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55789a99d7d40474e4ec9e6b52a133cbcfdec462 GIT binary patch literal 15761 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 Q2hlPCaAjx{8>U463o{uEW&i*H literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb83d74fa51f763b3be1e896ba83f9eb14382240 GIT binary patch literal 10481 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 0000000..3283361 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,225 @@ +import os +import textwrap +from optparse import Values +from typing import Any, List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, PipError +from pip._internal.utils import filesystem +from pip._internal.utils.logging import getLogger + +logger = getLogger(__name__) + + +class CacheCommand(Command): + """ + Inspect and manage pip's wheel cache. + + Subcommands: + + - dir: Show the cache directory. + - info: Show information about the cache. + - list: List filenames of packages stored in the cache. + - remove: Remove one or more package from the cache. + - purge: Remove all items from the cache. + + ```` can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="human", + choices=("human", "abspath"), + help="Select the output format among: human (default) or abspath", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, "*")) + + http_cache_location = self._cache_dir(options, "http-v2") + old_http_cache_location = self._cache_dir(options, "http") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_size( + filesystem.directory_size(http_cache_location) + + filesystem.directory_size(old_http_cache_location) + ) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location (pip v23.3+): {http_cache_location} + Package index page cache location (older pips): {old_http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Locally built wheels location: {wheels_cache_location} + Locally built wheels size: {wheels_cache_size} + Number of locally built wheels: {package_count} + """ # noqa: E501 + ) + .format( + http_cache_location=http_cache_location, + old_http_cache_location=old_http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ) + .strip() + ) + + logger.info(message) + + def list_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if args: + pattern = args[0] + else: + pattern = "*" + + files = self._find_wheels(options, pattern) + if options.list_format == "human": + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: List[str]) -> None: + if not files: + logger.info("No locally built wheels cached.") + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f" - {wheel} ({size})") + logger.info("Cache contents:\n") + logger.info("\n".join(sorted(results))) + + def format_for_abspath(self, files: List[str]) -> None: + if files: + logger.info("\n".join(sorted(files))) + + def remove_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if not args: + raise CommandError("Please provide a pattern") + + files = self._find_wheels(options, args[0]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += f' for pattern "{args[0]}"' + + if not files: + logger.warning(no_matching_msg) + + for filename in files: + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s", len(files)) + + def purge_cache(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + return self.remove_cache_items(options, ["*"]) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> List[str]: + old_http_dir = self._cache_dir(options, "http") + new_http_dir = self._cache_dir(options, "http-v2") + return filesystem.find_files(old_http_dir, "*") + filesystem.find_files( + new_http_dir, "*" + ) + + def _find_wheels(self, options: Values, pattern: str) -> List[str]: + wheel_dir = self._cache_dir(options, "wheels") + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py new file mode 100644 index 0000000..f54a16d --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 0000000..9e89e27 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 0000000..1a1dc6b --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 0000000..567ca96 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py new file mode 100644 index 0000000..917bbb9 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 0000000..885fdfe --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 0000000..042dac8 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py new file mode 100644 index 0000000..6206631 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py new file mode 100644 index 0000000..2e2661b --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 0000000..e810c13 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py new file mode 100644 index 0000000..ad45a2f --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py new file mode 100644 index 0000000..82fc46a --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py new file mode 100644 index 0000000..e0d329d --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py new file mode 100644 index 0000000..c54d548 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 0000000..bc0edea --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 0000000..278719f --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py b/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py new file mode 100644 index 0000000..c25273d --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 0000000..9a89a83 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88a420b12f3bd1b57458d9164fe43972f6f67c4c GIT binary patch literal 945 zcmaJ;&ubGw6rO1|yIYeqwDuxF*&+zrk{#582a8(hMFf%dpyaY_vXf+*{gKYhMpAn4 z;L&?M_A34yA#Px-@Jg@}78->N7XmFTHi{Y60zEVu2H+w!e4XO9<{PiIhB-9t z)$gjMjnmD&rjXog$$bW%H519=2=W_;al%`4DZBo>OKGr_+;|)b=>@?7Jx&;>A&q2O zV!v`Or^l(zsZ4m(!gCqQfyC_0B!Dw?ijGuv$#_Ysy39_|`}zArRh^F{zXlK0MjkF! z|G$TgPwpLLyoBXhi;}E%%q`iaR)-B}Wc{no)>4!DOnS|Laz!LHnQ&jK(eNUKHs*?m zP<*W)J<^RsN_;xt-ib$^@%V_gq#$jWRVQISB@X;%Kmyhz{h{o}(Ou{E9U_>d^}g5Y zc^xW9pY@5$B1w7V1;k(2l^`x$FzLEZf0){#*Q4&@y$fofAls1IM!q6m0d^V9`v6{{ zX&ISUKN+=;M(s;=>wITibw;K$)fckXd2L*+kIedoj>H6GF8paSJ}v0>*fP_9p1j1U;Of-KoBYcRsJ*oEE@;End4Qg3tQ=1Zt55=>Px# literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f41b1be5cde6805bb462cda6defb0064f055ce8d GIT binary patch literal 2897 zcmb7G-H#Jh6u&d=wA1dkTRsGK`5IvjTV$tv_+Zo+7DU_-S0X%Ud6>POd)p2>of+;- zcj<dc{IF2OjLpo{sI06zCbi;Mu{5r!MDny5}!P0rqgXhl1-}kmTjpeSLIf!nv!szvePZ4szh|! z&a|@CtVFmhGH|BYYAaXGNkk?m3Cmn2EX&FH&54n<_h;(uRJ^N>bfj|bcihaC<*;z} z-P0$G<8Pceerk5^WT?L71(xejyDWvJW7OxbS$-g_S{u2*+c@j^0k!S7`GvM6c#As$ za0{oYxj-BIb<1H~m}_PU$@Mm?UjXqwM9N83Vx%fFshVOkPqP$D*V9)>U1G}R(W=5T z=Zk|E#57BBmFLD`Q9FDe@y&>Fi! zE=twX8B#8Un`df}3~C00NueLhgv@9)$dzW=)c3WzE3_tcm~A-?&5H9yYc|)Y2&_7& z`+7dF!E?6BHL;e+Sd%)Pp!v8aXydtUyG#B{vAQ;`Epe^Y_5-a3$7msNHO2!jT9yNw z;p;Vrws>S0OizK2plniSU!a+;5ZnyxPV9E9>A22x+iM8QP|WA$p3`6z1N7pG``VHf zG&P?GZEq-+1AX79?YoJCiTOwUw8W5dbgA18lI&qRC}UO(&E%543sdM2M(aa_a1r%g z2h%0m&U9b_i*b(wG9A<6e)(z1GeJ3kTxx?A*4)~8NRP%ZdajSIfT_d>T5}hn20WmQ z26Qb&RvqJaIA>8!Ty4n}3lL7^X02`6zy~BPaIu!Cfg(1z!$s^#+p#XR`}VLI(F0er zARd5I=dm)cXGD+u4O4)&Fe9K?!kIGxxBUl)1O8SI!t$YXodo@(tMVms4aQZ{auT^D zT_Q$byF+eCbLCX1_-&7iP&Ew8u>!*oIQ)R0_PJe;Het>%q82d>AB}0+%0G=t({1qz zY#Vy^v49i~g84MA4)MeZzCY^zrBpfg0;cRcq2fi|Yx!)+-=D5=v+RTGu84))(h)HRdMefb+6b2oc~(}f!7Eut=J07pm*a99`u79O2M+euA5Jk z-;Xzsz_LPqEj~NoZJ4P?A4ZXd!*DE))AC)L;y?>aW|Nx>M$Cp$<(p}cOP>D#vbE^S z=_vbRJ7|j?xa@?*$NK;_y?X3?YQ2{auN(DKb#ye+t5k8gQsoUe5%AMv7-8NpS}tqb zNRJxEg*LT&Ct1T_t_ec}{wI;BSHl#onPG|cKDnN7VY&nzfw6=s=qRxbsbV4kcx}2& z;QuNyfhXyj>)K*Bl7-&fF}ZCUMp+UYfE$6}XarG#|5Bm_%jbUt%frj$54ohM-AP&5 zdS{2;CGh_Ig+KAtRY@lItulUB8Sl!9GI?X_(<3*h?-L+bQzSDHF}uY`XzN{&mnCKL z&hszdC-6pzZ4sxN8IZ^*lRuSqcNKU8e_~fRiT!{sS4Ps1qWu z;V)PY`!yP_Lwfjl6h| d9Q-*|x|crsAhTbZym97}b2rcZMSzSh`WHQBBW?fy literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04cac378cb23a14893138794796691af35e02047 GIT binary patch literal 1704 zcma)6&2Jl35P$pWwPVLdX##C&S)sJTLfs9`kqW5@fiO~tfCJhCtF_6fQ;_Kr2P6gg9_BxLi0fZ`TfX6i`RF-Xl~y zB~%CH34U9MV`P=K@wUT%NgZ9S0*E{qE@U9WQx{#F&HGK7um>#E~d*WGXods8j|G^y}#9%Tzg4pUi`u3VIB*si&$_ zr5e;Q=QUcvpG=LuL91x5XGXi0Z@wS#)C&Tj%PEY%{0I^T9HNw)US#@iCYtod4jR&aWfr)$>7n*XXy8%e$2wsH$y7(1_fxnxXUXlvPi)tZQefCsn=ZAI z+ZRQ#k}Pj^M}9zE(eXoIu208zudJ+fIj)Jxaxs}F&GA>qKR363Y;I4QI}@Wb zx!?H-b#rIcXKb?_v-xMq2?EW6L+pcuWp)f+Kgp-CUF$6pgJMbI;l1ag6&3bxNhWy z;JSIub;FpB0)gwU`v^NX_f%Y$#yvC}35ye8X~qP*T*0S_wGc5~s7;~7EaqxAjstc> z{1=>yvkGQRJV=ESfPaSSl>8y9nt@5_>r+|Mu6_I3_q*TS`;#D?DGTFNm$f^S*Wa8G zT&ISvHJ-L^O*LGnI=OLsS`o+~H(!}n1*(zS`m;4e<y>>O%(=73$L7BaYx6`_~ zo!0V{ajT23Dick~UtJ9o195E4Z@62|M@f2XHE=P$Wo-)HtF_3D2W7qAVt4T%@$B&1 hsHTb}N$2F|Z{*=Qd2mj4pXr-YWAgIOUj)~J&_9Gi$WQ

c`e7fk=(ceBRG@tzEd`{fYt)OTK#RUGm4mc? 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py new file mode 100644 index 0000000..6e4d0c9 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 0000000..ab8d53b --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 0000000..28ea5ce --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 0000000..bfadd39 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py b/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py new file mode 100644 index 0000000..2587740 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,777 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +import configparser +import contextlib +import locale +import logging +import pathlib +import re +import sys +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, Iterator, List, Literal, Optional, Union + +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + + from pip._vendor.requests.models import Request, Response + + from pip._internal.metadata import BaseDistribution + from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Union[Text, str], + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: 'Literal["error", "warning"]' = "error", + reference: Optional[str] = None, + message: Union[str, Text], + context: Optional[Union[str, Text]], + hint_stmt: Optional[Union[str, Text]], + note_stmt: Optional[Union[str, Text]] = None, + link: Optional[str] = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: "BaseDistribution", + metadata_name: str, + ) -> None: + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self) -> str: + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return f"None {self.metadata_name} metadata found for distribution: {self.dist}" + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> str: + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__( + self, + error_msg: str, + response: Optional["Response"] = None, + request: Optional["Request"] = None, + ) -> None: + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if ( + self.response is not None + and not self.request + and hasattr(response, "request") + ): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename, + user-supplied ``#egg=`` value, or an install requirement name. + """ + + def __init__( + self, ireq: "InstallRequirement", field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> str: + return ( + f"Requested {self.ireq} has inconsistent {self.field}: " + f"expected {self.f_val!r}, but metadata has {self.m_val!r}" + ) + + +class MetadataInvalid(InstallationError): + """Metadata is invalid.""" + + def __init__(self, ireq: "InstallRequirement", error: str) -> None: + self.ireq = ireq + self.error = error + + def __str__(self) -> str: + return f"Requested {self.ireq} has invalid metadata: {self.error}" + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: Optional[List[str]], + ) -> None: + if output_lines is None: + output_prompt = Text("See above for output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super(InstallationSubprocessError, self).__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: List["HashError"] = [] + + def append(self, error: "HashError") -> None: + self.errors.append(error) + + def __str__(self) -> str: + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return "\n".join(lines) + return "" + + def __bool__(self) -> bool: + return bool(self.errors) + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + + req: Optional["InstallRequirement"] = None + head = "" + order: int = -1 + + def body(self) -> str: + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f" {self._requirement_name()}" + + def __str__(self) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> str: + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else "unknown package" + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ( + "Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:" + ) + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ( + "Can't verify hashes for these file:// requirements because they " + "point to directories:" + ) + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ( + "Hashes are required in --require-hashes mode, but they are " + "missing from some requirements. Here is a list of those " + "requirements along with the hashes their downloaded archives " + "actually had. Add lines like these to your requirements files to " + "prevent tampering. (If you did not enable --require-hashes " + "manually, note that it turns on automatically when any package " + "has a hash.)" + ) + + def __init__(self, gotten_hash: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> str: + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = ( + self.req.original_link + if self.req.is_direct + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, "req", None) + ) + return " {} --hash={}:{}".format( + package or "unknown package", FAVORITE_HASH, self.gotten_hash + ) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ( + "In --require-hashes mode, all requirements must have their " + "versions pinned with ==. These do not:" + ) + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + + order = 4 + head = ( + "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " + "FILE. If you have updated the package versions, please update " + "the hashes. Otherwise, examine the package contents carefully; " + "someone may have tampered with them." + ) + + def __init__(self, allowed: Dict[str, List[str]], gots: Dict[str, "_Hash"]) -> None: + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self) -> str: + return f" {self._requirement_name()}:\n{self._hash_comparison()}" + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: str) -> "chain[str]": + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(" or")) + + lines: List[str] = [] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((f" Expected {next(prefix)} {e}") for e in expecteds) + lines.append( + f" Got {self.gots[hash_name].hexdigest()}\n" + ) + return "\n".join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file""" + + def __init__( + self, + reason: str = "could not be loaded", + fname: Optional[str] = None, + error: Optional[configparser.Error] = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> str: + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" + + +_DEFAULT_EXTERNALLY_MANAGED_ERROR = f"""\ +The Python environment under {sys.prefix} is managed externally, and may not be +manipulated by the user. Please use specific tooling from the distributor of +the Python installation to interact with this environment instead. +""" + + +class ExternallyManagedEnvironment(DiagnosticPipError): + """The current environment is externally managed. + + This is raised when the current environment is externally managed, as + defined by `PEP 668`_. The ``EXTERNALLY-MANAGED`` configuration is checked + and displayed when the error is bubbled up to the user. + + :param error: The error message read from ``EXTERNALLY-MANAGED``. + """ + + reference = "externally-managed-environment" + + def __init__(self, error: Optional[str]) -> None: + if error is None: + context = Text(_DEFAULT_EXTERNALLY_MANAGED_ERROR) + else: + context = Text(error) + super().__init__( + message="This environment is externally managed", + context=context, + note_stmt=( + "If you believe this is a mistake, please contact your " + "Python installation or OS distribution provider. " + "You can override this, at the risk of breaking your Python " + "installation or OS, by passing --break-system-packages." + ), + hint_stmt=Text("See PEP 668 for the detailed specification."), + ) + + @staticmethod + def _iter_externally_managed_error_keys() -> Iterator[str]: + # LC_MESSAGES is in POSIX, but not the C standard. The most common + # platform that does not implement this category is Windows, where + # using other categories for console message localization is equally + # unreliable, so we fall back to the locale-less vendor message. This + # can always be re-evaluated when a vendor proposes a new alternative. + try: + category = locale.LC_MESSAGES + except AttributeError: + lang: Optional[str] = None + else: + lang, _ = locale.getlocale(category) + if lang is not None: + yield f"Error-{lang}" + for sep in ("-", "_"): + before, found, _ = lang.partition(sep) + if not found: + continue + yield f"Error-{before}" + yield "Error" + + @classmethod + def from_config( + cls, + config: Union[pathlib.Path, str], + ) -> "ExternallyManagedEnvironment": + parser = configparser.ConfigParser(interpolation=None) + try: + parser.read(config, encoding="utf-8") + section = parser["externally-managed"] + for key in cls._iter_externally_managed_error_keys(): + with contextlib.suppress(KeyError): + return cls(section[key]) + except KeyError: + pass + except (OSError, UnicodeDecodeError, configparser.ParsingError): + from pip._internal.utils._log import VERBOSE + + exc_info = logger.isEnabledFor(VERBOSE) + logger.warning("Failed to read %s", config, exc_info=exc_info) + return cls(None) + + +class UninstallMissingRecord(DiagnosticPipError): + reference = "uninstall-no-record-file" + + def __init__(self, *, distribution: "BaseDistribution") -> None: + installer = distribution.installer + if not installer or installer == "pip": + dep = f"{distribution.raw_name}=={distribution.version}" + hint = Text.assemble( + "You might be able to recover from this via: ", + (f"pip install --force-reinstall --no-deps {dep}", "green"), + ) + else: + hint = Text( + f"The package was installed by {installer}. " + "You should check if it can uninstall the package." + ) + + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "The package's contents are unknown: " + f"no RECORD file was found for {distribution.raw_name}." + ), + hint_stmt=hint, + ) + + +class LegacyDistutilsInstall(DiagnosticPipError): + reference = "uninstall-distutils-installed-package" + + def __init__(self, *, distribution: "BaseDistribution") -> None: + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "It is a distutils installed project and thus we cannot accurately " + "determine which files belong to it which would lead to only a partial " + "uninstall." + ), + hint_stmt=None, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 0000000..7a17b7b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6a31596e57ef1857686a5c6fe5c7b29e9028aa0 GIT binary patch literal 236 zcmX@j%ge<81l~On>2g5&F^B^Lj8MjB4j^MXLkdF_LnWgoQ}zQ`1q9!pFz5RCF^J8=cekXq?Q#WRwe2O6y;~7CYKcJ zr)3tUrk7@>r0VOHrRJ6C=VT`77gUyHlb7e=*NSt z%S+7B&ji`79}g7BEQycTE2zB1VUwGmQks)$SHuRi6Xfh-kgq;4Gcq!MVq#=uDPjR~ E0So{_qyPW_ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5fcb2ff1435dd05a18b5a9fba36277f0324a21cb GIT binary patch literal 21621 zcmd6Pd2k!onP)f902&7g-nYb-D2W6`g1T(WvLst3b=eZFShABKabO7DBthX|xf4sa&FWk}oDcErZVTDjT?h&6?g%;9-5GMSyDQ{kcQGWgyF27zcQ3o!*=f zk!$03CGHO0owz4-Phx*)KhN1X#Wkv0z%AUB1F!JLQ|LaWQ8}m_9I`dzMd*-RryP{) zm1gB2Jr4<3 z<0hqt)pW|6QM14BPT4Z#l-u!cK$et4B_nUa+oP<{t?0Ak6`MKkG4^g7-fdS}^0PTE z?@*4T{c+5u6D?0DC*&?UfH(C@m${bi%fc&0CtTB#-u;CZc*NM*%3O07Ka$r?ov); zW)ETQcjNsa>xIEcX_fWoH%#-)R~B?DJq_vk4NI;iWczdVt*takDQMy zx-bxnrgiaTT2YPXQ!y>ASDqeE)8pyL*jOw%ta}C{2}M3PK86QKtP+7>fEwPjN<@v0oQlMv5P2(#g&(Ny-ro+NHiUejHgG!Lux7!9#`Y2YQGrOeoF)wuB=H zt6UnXagCZ}Vm;G+fP3O@j+^GExKV1i;j++t)U}}ik5jxw9vc6A#}t>g7<5qyLvsEi zhZ_5)_^6HN&T;|=bhJ+npGu`JNC2Dkc>h^Ri;gG>MU#M>X<+GNkDdy8JQ6N^G^`JZ z$#6G~YI0G79trISQ%T@1p|YYXotl(P0n1S{$U2y`?L06TaHyLwW!+_tqdVfMONy#{ z@X6G)b}5z~(d}_18L+8ash-oUM*x$g-^+a?sf5xeD;L$sWTX#BI0{VB`i5evGCUrW zmA>FbC3&$g9y{MRHjy4lCHDq*@9EQGX{C2861{*Asr8M;#`?msB+wq1+!ssA%2RzN zS%JXDCiLnsn|2r&5jMtGcVhg#_|qOhGQ+KVxY~xRJHNhj)|vHIzHsl{z0cjZ>fMs@ zZdu&%b8p~U^!pt*hW^9OOz`j<+ujNu%hoo3`E<^~)o#u?IbYQp`rx9JSeMhxto0!C zCE$v}L6~wOo6IYA*@i#6EDSkkxglP5T=s>8S?(!54`B#_nAZ(mK80kcA)#gs3{!Sm;zFUqYonU4Zavl=j>D5SAdIC{FKdNVLUx? z;XM9M+3=L_Z-RT79}Eb(LmMB%M-{^Wb1WSWt9|HP-Gu~&f~LfW3U73GILvrfIIPiR zfNC>pH`U*VWU{ezbwR63C?%XmDDt}*?v_|F=gNpp3vG*2E8@OvTi2|xA~v)8&&6hy zfC@liI!W-da9H<*!v?2C-WLvkemoL4OYB-&WdrLK=Cqak$;Iv)dcOd-QaN5;hgqh`6J{5ldJ`{&V~gonGa@3~=9g zjphMfC?O5X`bc0R{6{g7Y1@>o93zqK79&yl389#cU>-~#ER09FQD5mZJy~;jmJc{4 zZ!p5|A5o$g7~e2awD%k^QyNhsvZ69Um(<2ph1IZtA`ucpLTXY(IvYzs_^_^k=3qny z+$_FCTwjx(EX9*2O+Li>0aZvu3?x^RsWiI07>UPZtE`vG3?B7+U-1-m*JH^G$<(DJ zxTHI+JeBSnNhjiy9gvLiSTsTss_$Y_2Fne^OoJ2JH$tF@h(+Rkg0H{Hv%56+yrUB6|uzB5zbxm+KZ z8O*xsS6x!ZCFN{_+p}(WicU0j`+wshf_rMU^PWuSJ*%CEGo6Q*J@+pO_cJ7qVvPJ{ z3B@%+m;!T~;GqqO^x;mNJ9lOftGfr~>V8V@Me;Id&>G-5y-SF?ai0CtTA{lT~Y4sgaC4Sm(jpkB`E`iPaHimAes0< zL}W_q9to<8WPJP&r6>be{}76z50j@QC29>y9x}dvy_y8Ynf*&;~t#;i#kt zF-i!COv6wgrWXMk!kJXk@l;e7#v;%{9ME0W30)jgBf|-js{-*RO+-yl8M_Qpt1Bio zi+`z~M!hipw8xP^VW{GI_kQox%coX*j%0d{ywS1Tb1WkSW{%Asn;%%%zSxv?RV>x- z$hdags%&^}bV+Qw?X7v?;M~Cl`?Yhk2baBjW(IBvb@S&|gqGh34fE-r3vC9S6(c)M zjv@OjC=SSO(H)njx9lpQ^C-!h4VQ(6YDEF9ry%mL^A_3yL1`3rjph;9dIL+!R)oNL z(kZkCY4{7ZtsF?hK3Z)(74E~FEd1NNdMi6*=eKOvT~=??wsfsk7b=RmTFkJ%?Awo? zw^(l8kdqBoUxj*peY(GWlvB#5=}$v12mwh!uCm+z-9)kH9MLZtnjG9tX_aSDS<_h zi7E|&{Xu8ZjQ;iprH@r|5)nY1={c7aX_#pt1<2(Qp~r$1adBqQesGZ~vac=ye8%8V zO^Jt1`j0E=G{JieR*tk?o3!;v5UEF~tosj8S?-fQe`r^5_hfZm(=p!c+CAw`M4swJ zuZMO)U^@wu$I_D({ShEXFDXoF3Kq2bAdOUiOfhUja~4uW!(3ES*VPA*1bk`><%z7o zT!9Ouc{6sYJL9S0Vb~20SvfyGthQ0TeyS&oreetg>t-WiXRv|zuH3?jjbBeM^nYz)wK0%s46L}iZ;5RSXRmesT-@^;!Skh4 z&zxGS-nz1F|IOOvZHHEb!^D>Fo4YS7dT%$hT#a3cy<-!qYu4<}#>!k5w>fZUXG66I zrk<~HjcfKfX9m{yagKV%w;=-@jq~Xhq0Q_$E4H)Imc=bu(f5LH&bKNyksY)7TJy5F zcikm8oH-v1#+io=HHRQvVlEI{XAFM<88R2t6Ef_xi<~;}(cXq~n$9cegD&zx$UF(k zDHs(8+5Mx<1u`g9Z;`=}XU1narnwv%u;`ccauC2s%5P zM~i78XhDWOla^h})OFnz9U&o~hDSknC~&65br<{=8n9G%oi;OW!U6EcNJ2e;WdLOe zf;yj2qqvtMObbI8YdVH!$kff%7;4|37KCgw+&{Z2=MOJ_GE>`g%UAuv>ABOZzAYKw zmStbZET3)bSRBl>?VaUkgBjSMHMLiFUfH=2TdwJvb^X#?bE~#t{?gYDF8SKCUcVv1 z(P#d$Wbzsr%LPqYcFA^l8sP*`;8Rx|@Si&H41c=f8nVew#tq)?|936-yWZ+>e48AS~uQ7B~3@_ao4lADzhbLP<1Y}hB1~uwM z0yl`id13os*DcC_)w1mGdCPz1M%@pZUv2)urdKz;vHfS=KkEKj@JGSS?lVhp-jYkC zJSTYoB_-hF%34ZgfM6+L)}rlDxg*+0VWE&zv{2?mG3`|NWT*}n`C)ir6#tmoky=N~ zteqdYdh*K2tEaD=UiNQY61TGD1Ozsc?mI~yy%N+9xHnjqhKt9UI#2FHT{xdg#Z_XM zx*dK&^(o}khbSR18Qz`?l%wQ7;!h)c;WD>ovpJe`BJcPFzi=$a(S0$!#_l;M@90?Q zSjR($(F?UDu9LsWGNo&6E0Q8o2hWx5id_+i1B1{75VvE(0SA`n46!`&Lu&?5Cs2bC zcL^onr9lbwjjnPg#TpAr;Z+Ha;R8gW2jK(M7J3Ic8ZY0Z>eS5)_lBLVV=&;{2usqd znLJl#D7OJ{Pt!X}euh7d^mVe^`xid9B=p}9Z`Qq9xgzu%Afj5jZK%|Vo~P^ogwii@ zU$PY=XF1fA`RjS{Biqw7dv?h}I#1698^!>#PsYhQAtypH`LOPuB&Pl( zL^ix^lnt`cN*KR%=#X?Q64#U`4V{#Bqg+rLwb-NrM->SQl1Y#g(C<0`5vUx3TUP*RknB9L5nN5OCJZ=u&+KiGlSqhRyD}q(UQB)X8o# zynyVOpbTd<7)RK&K!OM13&4^N2hF-~Q742hznkHH2lUckJMrApOX4O5HE=gKLtAiSO?SuDapR*HvnOYoVKF#pavD~` z7BNTf^DB8$dcgR)%^x~(^($!cPx#Z~NZyA9P{}#{tB$6OqiL~j#jzu2;~l*#(mvwm zy|353F2B}7JiK?!&N(|-;kpwoz7&2YJpbsjqlx_en-`Mg=->SPy6?-cw!BMOs@}}X zavsjtx+JuG6mAe(BBEG32W{zLjtA2&j~(S4|HW*joK`RA-6!hj3QnETyfXyjnit0O zSoy-;!Ya0DkoQd%%4OSd-sz7$Oi0FQdphsp8LcYRv~p9}R~oIco(gwMC7Twegc<(% z9aF+L`Kvt7J--t>mG&a1PWjd*eM~#hdl{$AQ@n;f)%L+2jJZs?rbU!*{$M%axCL-@7r{~bV67?llxs@7?y%fVCfqjX z;nqQL`&;`ZKH!}EtOx!QiHUd!n}X*7GJ-LD$yAsO2h>DNiOW(9E+#0fBXII4aqJ2w z=~ysOz5B_vPwbwy*LCrH1Y7gS1*(mmza3Z(+vtF8 zkDU8En$BXF}ldaA^fWxbNzIy42g7Hl$FCYvq{DT=H+Wd#lU(hJjb({K4Z7hN+avhZs>{LI7i z!d2fD-)dDyrmAD{#Bx>diV(c*seGYpu4|@0>#u*|3v*w1%fEfG11)Nrt_HszoONQ3 zt9~itmlhjtbi5(1_)lV%UjOXDtgkLxS@WFdj+?99^1enK?b(4H16@4%>YV`oBt8>f z<}bUMTMHpm(0(6-=OF~$S8*7g2gQk;{UGWnF2zY?i)Vp7Q;CCevNI$qZalfzlc+eM zaJiv1dnP;qFB8R)=fNEwRmPwWF)XG)1mE1keB5;Rb)e# zGTVMo={g`?8o{<8_D~6JHA82Vjec1)5iJVzjZxVoER-#C*G5v~Ab2=h4OJ*8otc1p znkhuo9v);?Ze?qx`N67}OiS$Q?x&I3pjavOFcSmqJ#9R$mS^LGoY)$>LP@k=AnAheK%R+0` z?fc@1YOO>{Fk#L$Zf!Qkzn z3z$L|6lKh?OpLt=5+%}!M~@zZY@&@&()MX51Xipmtynjf#OjnH>9iUrK9X;g1XVrkCEx+4dcvsHv zY%u{IeKO#~$pgI6`3L~cR0ENG!z1_v4A#1n?7^fAbpSz;a3wLwU&kQo-y(r0i#`@j zh`6UA^!+11Kp3?wbPa%;+`QpqY$)GM-{c&+fN#@VIltq}hZfGg^u&u#EN$A8g=9Z; z<p_jmCWFXr=-s;V=-iDr^v$4ER&v~DQHP=!D1Lz;jfgxr`gfG038?o`LOMWkm=1G7!cc^r-d3;j6`x5a^X>6WW>I(irP<~ZE0rEeU)*>Ur!H|?)YFC93Q z*>^hAH^@qs&VF)@YUHW}N8N(Fc-OVsYa=(bmlI2Y`!XE|Gn)_PIF!86_2%9m^}a`0 zwlFpe^)E34iWZHK+AC08Prw!|jmgVX8?6Oj&Nfq(M$Wj(iM(l>4Yg?J2eF_g-4W*F zTTX88XQG|*A8G;PU@Ak3o#bv3s1@C(7#I52);v;R9~ay?~#~%$3*)^ zcx)No7j3Z7cBuL~s=}AfY3;~B>Gg1;Z)WNiG|8#CsafHdg1F?~bz|F2=g-X;AtnP$ zSTIpH<1>Gb%pWf55ePsqV;A@aX`dS|ye*~;v(((>0&_2G50fL&>=#1HKFIc=0G+(X z!WICA5<`D%Yl(?$L$@KWjk+vei^+OwRSL;k#F<`DO5INC4^izNg5ptR;Gh6qbYJUQ z?LLs{KCtY+Z|1};Z(~-hGIk2{nT5?6u`65M3_YAUM7Fhe-Rtx@30<8AYe1LmqI(|9 zGa%zX#@SFDWhmQ8_LqP@?{_8kt~M3?t>wa@WP#X!F}kM7v|?Ae$ii|_7X^XxS$uRO zFblz1_&0?eGA2l7(|H#}Ij6&Dy)|axUNjFfK{s4wod+Lq38<$KJ5t7ZAm?jp4v?&K zvVy_zqgPHL(;F_dEslf9qx>il--b&TivxJwTzZRD0pYv+b$8zJ;!1bqOI#p|ZPrua zemx)MauzcoS@}@8k;?f%~*^BROk|EE18Vo8;Dhj*M{_bhg5I1VE>VC3D_GmTL^%MY~NW7YhlTax%< zm$6#8V%k0BPLs4_7sfTIlwpOtWKQlP*zC7j6zZP{!hDR-%ws{g1p$20O z@mj;ox1niqDGIA6Hbi05$^i+WCBWz4bw_O#8kYXP4XW%?ND>Ts<7!PV}gneL-+$jjXiue6;a1;3Uw!G-=6zm)a) z=l9M%G~17pG*A%ZbMe*6t(nTLi+iv6mMia?wbP6c5Vcf);Aa1d_&`qB?0AePFHHZ9 z#uYzI*7XA%{FeJ}4y+zLn>l!P#eZ%|JomfxdpTd-J5c34=8~{yQ?dKDuj*a4qWuV_ zTJPh0E$?t*Q59Ro5gzlasK&HbeQgRfE8%A>g~vQJE-Rec~*0&>%h&uH@7eCcwkjLvLqhCx1zdkR<||d zZKb+6pe zE=4vd4pJTIPeBM1Nu&?Fwb9!NJI)JLnTH=0**JZt>7F4Vz2R&}Tn*c_B_Ab1z&Bcs zuy;)>QKH;6N*RXhfLRZ!|MmLKox5kFF`SJ1YJ3C)x` z`FG4u_NWmX83W&DZd&ss9I@H`jCh=brp44JgMb*V|<$4me_4Z99u&PF!PSLKPN0A(ZCGg zO#$O1TI1$|kIj`b!in{264%&;(89@-VFX4^g%!<hQyr4ez&K=B9)J&caViVJ)b3!^XJe2 zBvav_u(`2bjSXUsHi%i2qDtl}wry>}T}(OA2%?s=(|vGQN#aDhdU&$46!W9-Wu=uu zxJLMohm6aennSHUAtXOpkk#a;!@lUUwQ(RDXd7#K_vCXu-PvCDqd@ zp`ncyMDBWJ9IOvYm3iv^gQtGfe?hg$x^j^CCN2A0C+xnKbHM8xmTfQ3Rw5i&Wt*X5$UJ)|{tL3JX%T*`W9rlXKoXEAb z%{~Mn-mu9ynfF$G@3lR%p5HWXH3HYOja%q{ecNjN_DubD=x29ygj~@+8+$p~R0^$v5Wh(f zBTX7XL)HfKs()w3zjI04$z-iATB4@JT}W8Zxcn|;O5BAX5;Rsg#{?E(n>?JSO?GO5 z;_AqUZP(Y8V(O`6uGjoIgvquIpdiO= zzVvkh2iY0${^4_NUF^Cs@PkvYo?7vfrf0yz2TO}$SJ{bXy$+_P`FjOM;5wPVB^x;8 zmtl~47Slo$CI9hpl(RO(uyaHBEtkvU+#kFdGnWrH`k;^~=LNI`34(?Q1KCwhpyg*{ zW3#bTEvpIcf8=;VIxnKic@{s~YiNl*^->`$sa((z1X=#T=K%MDBZ^?DsO<^(=-{Dr zJkyHs9}0Hga6RLf?d40zCv(O2{1$U6a$dtipVn&O&)H&4wa8N_Smj0U@+Zj)r}fTaK4y z=pINqkW`rb2h4f@-%xAtWxGo2XQZxI;ipA3B?>(_4Cy=^OQNs;OnuqGs#vcoHDViy z?6|Td&CJXgHpj0~FuALg2W-%K%gEC=i7(Ku!0(KpBF?kVbEk%DI>XP~*Q>dTW=N0h z_InWpVA$&iGwlbntx~q5E4wKGI~H<;Lvp8zn!LY8%=3$Vd-(q!KEyfoe_%F)>K&x& z8j}Av5L+gQ^`pBy#O`7c>-;EywP!mzKLD`K_tkgN&!nwen(WNmJzZLWG)Kc0Vb&A& z_DQW|M>BQ)fX;iM#^jZoK#lIT>?>5#y^pAfR8wU7As%LZ=uNb#me+K&uqF01-D&K* z8l9191VWm3;jz0LaGn{2KQJtTLWr^uE1(}_H$7=}Q!@*2Vqg|yZpL~+kT*E=--+bV`yb>-?gcguPMPU5X@+Lzh153TPqT3`LbSHFM;cTt1Qr43rwn>ZizvCSFp z=5JkkY5K+K6>l#*Uo9OkwZGVoUEQTagDcICtT}}G%71QtWd2CDwr>8=;wS#*@$Wpo zwEZ6XWtaN-Ph5Tc%H#7VzFLuOegtnSYOo1hUx|g(HO`NJ?ZA8wVv5^4vK@Vk!5e(e z&R6fv+3od}Q0l51?zrsr4YNlf?kj3Z6nTkrzed4cJgr=xJO%J#?Jc$<$g;E1e)PQQJwgH8(l1f@loPo&DMw|fw7{x>B*LBhP#_~C*eb6_*4wq6OlhF+NlsqW4H zwwI!*q{-=C+RZSVsKm^55eBEx1$|51iDPD92r7v`m55UnDIr;_dMNQyLRyfDO-N2< z&N3EPK}Nam#qT5q!#JEGr&N{swd;!BSQFFK8mio0t|(YIJ6-UW>rJex_4`Z3bx7yc zn@fxFJ3UHV3xdO3Fyeu?lr1lD2N8nnn@a1MPN|^j1Yne)x0bIno{qsnB$wL8URX(x zVuk4lpT>?dZ(NX3ClSNXEwxb>)un^L;cxu}mhlsA2JuL!%Crle4y~SI2cZoTCSGrB zG5AeiopOTxbdJV;l}dLXwN9uTdlkp2{z*zcO-Y237$p}dd76^1Q1Ts07zuxqa<5au z$p43wTcU(X2ZrJg(PQ3es*4AW-%mQM;s+H8qdDzf7#84aJb%Y#;z&bd3R3q z^P3i;IS#jL53$?LeQWfT+jbD$qXai9!R_Y$HM-@V<}uDSKO6bxi8s!^cAAa+UW1$O zxWge?Z{qm@e!hu@7~peaHQ&0}o#Sx3(XvK293{84=4{P;?L5ww;C8L)#VxAsJ!@`O-oWkKf5-0Ood`V5v3t)h zcE9bYUUT4muH^uLaxTZ=c5RZ~ZjQY1bms8mYxHV;lDF}F^ONfwZtr7?hJ%qa>? zyv&mM{(Ik2RVZ3+pU%uV^GLk9@9yv3|Ni&i?*IPhiVCNI>(uMdU2OY?Ap9jgsFy*vJrkZ;?}V4-v&>Y@R!>y3uyw{a>!0wmux+MhwsxYH zh3zwSvw?}gY;YpTo*j6upJ-rV=S<^l(?rv3^F;G(%S6kpI3col*G%hd+eF)J`$Ri? zcF%Ooc20D%aK+4)*{+E$7OtG>o()ZeSlBbuGrM(SD+_yPdT0A4`dGMXrhj%|Vt|FK zXSU4_P7JcJZ)RwA`^0t@_RkE@?wHuY!ZkBHXLn8PV&U4E-Lrcp_ONi>%--336Z=>= zFtdO5z{CL-4$d5$Jv4EMh3jXYm_0mk*dRy_*@|&&m^m_gbmFK%xF|##f6p*+%qU1Z zq>*&w^ZUdYi#v|^pj06pXSv2MSm}4-q(g}8iZn~1 zNQ;{5f{9WhqI4?KDxJDukFry^aFTk2%>cB2n_SSTc&KnqGd+Ufb4dE$&@W97G^e6L#mU0#ha@fnuZhqQh* zZQ^MbH-NZpTHIL{H;A|)E$&=oJK7s&Z63d1jqE^c&lJQ}NGGUQNZE;$XXlNf-O1Lc z=dL88F)1#}(o8rZMa0CMcxL|0Sg#n3MWmOd_+L}k#zTgjBN9%8r)I+Oc*vfsIQRUS zk;$VcMvk5u8$X_NjLLIKDRx#$DUAc@j z%QG=VqE=`8vNRRF5S8ROo=oS$7x7ay6^_ltqEq3SXi}Ptg=eLZF;_VjdkGPdXOR_U zbMDC_;kcwcp^)WrSdL2}bFSft6i+Dehi7Cd9GM@B#S`I~87Y$UA48|)=y|;LTx@(U zF*=H#4V=VlOr!HK5rNyVEFI|bs(ySCqAiD#3PtRSv zD9L#6eD=i1$mz+E=gy6cpB;OO=F)m19KXaWcG5J*5|cA?H1O{8SE4hK$(WRwnVZ6M z&D14n>cvT!S010dthVnz`^=d$Pd$BZ-sA(Kqdmh;hUXhZR| z6u&Z)$W@#PPrVqvD2-C<@;gG#Oe2_czr^QuG8(%um#d9ljLpeXY3n(wEG4eUu_C>Vw|?9srqliriK%C zHMF3WRPocIdBGTOPp}<_a!psLdG+6jX~F!Mz6kG{c|L+Nq zc-1n~)oMup?GWS+gYYSBSs&Y9W$X>Y^TNFCs_?SudEu%dWDkci>`oEa(`=5!tCyt2 zB}o=>6E8+zl43wE1j3>+(_%C(PR-3;#)1LL5U)lPm&CA0z|a+E^|UE~9q;1>+e9FN zD^kCcrS8S@3(u;RF|gSy9u~LvB?!xia~FWc5`^0>%TgR*9*tdOUEy`HDyXxw;psWK zZ#D{W!+lDgQ)?t_$d*8VVRPl-a<7Or$zOI(z3|IMC)SlH7$Dw_ zkU{RnOy&&z$zehxct5uI;~2U~^a4X033Z^mJL6((E`fpAD|X5u+~T9jBV)9*Xf!T_ zf$bugE?$E&%KW9plCt83IhoB3RgxUi>WFg0ys46Iv{zK-T*xVRQqMhVj}?rPGf&S& zV>#1o_;St!{G77_9|3#iY=D#Vb8&1K5$XJui?W+adlhVbR^2*67I`ZY*r>>Tl%*mX zpVZ-sRYRLboK`r^xcH0cz@@oaX&@rKB!`pXfiv>lG!Som-~zDd#VgT>G|&%leQ97O zdVYYTz3u&jLj&<>Lh8HBu~&THa`f^5pbk48Hn;({V-6^ZlNT6n>%TmoYnbF{l)$Y_&seBOV%euW8x0rT|*1d!JC(ET>57G zJKJx&*IIV0)$Uw6{-H1Qz*~E>@6cuk5~nQIT-9aJdlWZ08;v9L)TLaYWL0V@at~%^gJwtG zN4JCOjixvr#_elD)*DBvtDRXVMrg{0?&F61C|BcUG8!su<(!G*+YyQ^!n_o_w8|71lZ6eGs zb%)$|70)_YMGO-rOow?|+mY1*p!<#QDzw3b6}&-Z#4On&7W`QyyJTZ@yG?RL?2dBNd>iz4NA!hZBe+gxbR(5R=Ckwg=gB z8Q6#IafC!Ao=ymukV2ec$*_psED@c$G82|XWlA~1Px|{V&v$=raA^A%KHq=nbKCm% zeBn^2V?5_paxoanRccf-f41=%kLM~9jCfRWts9i^+|@}AD-2!A{TQApjncsbEmsr% zHeSH(rm$eWW{emYtqYa~VG=R?S}@{Cr?WsUOsdOVSTNy?JONYEfG67tdaryD}3I&r4!hj7tgaEvPe$p6NOtjfLg;E)hk$;&WHz zDT#&8&w<#9#>8l1Q}2r=jCX`bsk=Jcb3oK!=OG#e14E=%tf=u4Ak)Z*=u9**-;V*s zTi`#+Mta$MNiTQgtZqKlwk3RVwc@x-|& zPb-9^IH$0n;+c^%;*M?Gi)v~kzP3+AeOPEjpSFqN1ZNXBgI3}4(TP6lWgL{G3Ir6R7;^#Ar08 zQ$$5QQAS04%t$aY6`)curtyC9m~~OdMAo( z`=U)Z8jB_-CzG|b7i-A6UyXm6iXFlY^w_ZAZcDjB+0LGnyKTKGv}C?-ug|vh(Qjk6 z>j3?BWCJZr=GQB-&0FcQVZE_?$^3ym$Tuw_O{X-(hzCM_gc>)#1GW|7N5i6V!7z=8 z(n}sJ&w#}{kzYfnda0KUaU;ZQ#zj+t7-DvnqprY;n%)$?WxQZK3uIhwla%Yr$Ai%| zOcN1aaxGex4KW#M>V{m9uF`U!#~3V{7cC2xcy&SlG&WT)5;3!$SrQuK`jSDe`IIuK zSAC}lF|K~SJ~f0|dKN5+TJ`zGZoo)u#D?4fHBSGf+KNW9Oivd~)YFI^Z(gsLR6{Qb za@~R@;$ZE3+B-XycP{ST`w(R`sr8|iW;Lw;zN>7(i`E1&SL|A_PH$1e`mdT3?~6At zy70!_LiRm3OdC@7|oYXpB_h?S2*5qS0)PR6lMs ze^uCmV5v4iR5!br@Tbh&X`(D6^0!8OzhbLxYQ6feHiN{NmR!?>6HBfIjhtR|EI8z+ z7N9y=a7-UA$%aRDPU;2VJID0V%{d}|ZN8if&c{H}vCZWe0 zpH)NpZzOUpyHHr35?Mm8*u(qV16m(+Fz7Z^Thu{~j_ZnRR4%C? zVi)(3?60&bC|*e77sDXL;+rbt{bgMz#*vBdkZVpPc|r8TyiOjDC*Av@L{Y@92a`U9 zASDKd*RoekI_V9=jKWSf7Dx*~kWO8KxRz!RvVpx~&dQmXWc~P@$bwN&yE@5AwdU-z z;ia#;iUg4cDSm10s>Z=UK1`K_ za#qfhC4+c19xQ#cWaE?3c%0Z8wU?^+n%?`bY5z?&aGA0;#efhZxMdkq#gI`KO(v^0 z$w`y-Obf-h6-ZWl)jCMb8rqt3K$fX6>$Jvm75o8`M1ox|j2Wc_HyENxl_AQRq?e(6 zi-T8AAS4swlZhsfKTEe(x)Bn}nIU|?Bokecv#XOL(*`FKCX_2#9^$d(XXtr^ZqHF< z6_iXQVq*F+kmncUIfte%lZPlv9cAG#1jYs;QHZxFqdZ2n?4>NtlhnKLRAN#YQ@p|4 zto|C65L;+TvV_@U3bULA?2rt7;zfDx%H^C>&%`9EIgcK})B^Ie)FM$BGNE#rXa*Tu zv>?-d5^~GWQ+O-gSht{LqS4LSX-r8SB}+)lSs47~Dz*1i-dlUKoQ28KWSMe%lx(Wv zEKZa&AuaXd{78j@swAdIOg0oVB}IwfLIv>=6XQ($g0F7LmUVgFIQZJZ)s9Tt@V&O- zY)vpz)0M92x>vL3_Q9pm2mZ#JPu+Mb)wTET&b!^I&Z8;cv6TDRy33PsHQsYIX6qU< zb=~Q@?xhpi>e`##H@aUty516H>W-wm zN3x#k`}O^4PyfgM#*BX;?H|b24&B*)r!(c>owt|*)p@}Lv9n$91|Y;+ytSD2^xpCP zk>}pv@odA6JCV%JZdPoh|?H zfS%=xsk&n+?=ke?x90A7I`c+rRqcbu*42*h_PyP=*0^nX%^P**%utJ(k*a^8MCS)9K~W2aO$>#+~WLop-INhC?a;q4n0z zOzUvEbvV;HnrnobkFg%p0PFY z&|nubSqp{cW^k@}Xm`fl|t+fbX^zcT#Rfm;XC zuI}4s|LIfr`i^Gnw%ze(29Kl%kEFI8P1PJ@6UhhqPHoD!JLTT}6Ho1f+TpA>po#J~ zET+23rQ;7V>UG(=?eyX!>EV&o_R&<$aixZ>Y5&&S&!&9CDfjR?=>Xc(-u8^QC++RI zy=%?8eaZ5n%bTrjTA5q5eAo51>)REn+Ww{E*mI4zj_fOt3c{?9BxCr-S>m?OmDnL+SQIk8I`! z=aT24Q}DKchhCmfiGz1KGDD;3q0!Xf@l?$TrQ18w{vCH-O8E|^+y_7AI*C-x;GN;S zb@%OuKlTPP-nO*2ZS{D{)0?vQ{_IiQAOw0p5zJM!9~0;fqyq!lz&3QOvGxh+iCQyHp9_coVzxXn4 zUlSf0jTSprP_4N9^v#JI6De`mTFvfj+eiKsbF&_yQ0;1l87Zau0BswsO*rxFObq zlnS+d{TF5eCbcgz#NQEf61f&FvFZhLIa$YoRn2V>ULRdBeQKWP%))|2hCF7`9&_o& z2KpN=+6%_TuGU@Ss~;M|7(DhleW;& z=nM(KVZx*{9S}%gg2GtjfJu^7QlTs2dkCz-2yoT|bZ<<$%IcYcO%NFi=zy(oDn#`s z#2JtRNCz#gWuWSb9Z~9KtwC;1B5*|M`Oq7fG_Xb_1kl-%Ld1x~=2&@AHH8AJ0>+2; zQi}A8;!{-eYBVnOvYLnv=Ef9Sf6$r2BHTJ+EH*WBC8A2>3-U6x#O78(+c04@Y9eL} z!fa>-S&Qs7De7uijscN8i;ls(g zbSVrz=e&ehS6Eeax|^vd6!u0PK&E{H7comO2#|=*%!^kplYy5yD^X&tG&?M?h}a^y z4v6{^k>ao|h_Ja1aYik9@;Eb!QRV_Kg!;L zT*j&pU>fo&e&jH2$-v{XCR++pzPyNfVtvYp?!~)&c`<3i&lK@B>P6CKlD=&ar*TR! z5Kb4q0Nv=Kp}^G2P|noqU8SDiG2Ao&D>j&gdEpOCR}Jz4ssd}owojtGp&U2%Z({^` zoL)wi*E{xKlw#7$m*s=W9tjo%v21h)R*b3c#MTfN%SYDk_rN``KjoW~5irddL|f?3EoMj5nT zDu&63L@&bFjoH|QTsn)9Gr^#cOx(cs(|hLZsDgDo=K*g=^>GCWRQJ~K<;xN*60MwT z;%trZ9fWRBu+KB^SF{^gTvo|croWxb&(We%)Y`>&nKR{O4<`f*Lmk|XO0yz$EQSC-6K zkME7e*A|I}tf!;S;bs2Ya+TFY|f8QO-y8Y|+ z#*Do^ZEs&4`@r6xuK^MDFd*1{Szp(6`y;F153D%XeCiVfP!O&XW*qVC`q&5+*pl>a%-#q=*(|Aiq z=wrKU>EzcvS-U@LugusR()Na|-S@!mO1Z@~d+X|{w0$6JuX|MGuvqi8Ap5U9#mK5D zjGT6vl+Z>$0=h-RGf)%38r?WymMoGrVj}4*o^0&NOi%L`XxjWoRr`= zroxvYV*|p9L(nnH@F^iCj;xufDG7WCZDEZuT#Vh4_;g)@b=vi)RMHhCUshLot>6zBzoT45S}W}!{{_goD7 z6WIyC#Fm+LW5Z@U9Lyk@r8nxPog+gdksi^GWaGMT2sh}ENgsW6gJdC{L>>MakzRrq>ELAFvRXh%YRqG4& z2V@%dsIqOshyyeY7jI`*Vn_U3K$ zY!`y9sn(t8z^=T5o}DB@aZzZS(XwTwJJr5BUB72Tz(d|{v<$8WQay*#txr5c%pl)? zsQoGYX_snQuu+c=74JWi*@5E>{9nWuF-ed?VE5sMir8_;Y%yX(jH4W9&Gs!jQe7S8C{O3i*&vkOO;Dp^jLK$feIb~M&vVVy?Q>4s^fCsKj(Ufz-#x?qk} zV&|)hcqA_jDy#AA#j~#{ua%cVS{2g#MQJsNtwwAu4lLE=syA<0Nv;qqwXrNq#S}m= zBXty(kI@+7c@QQMhW@Z4UnPE#X_<(#h7D9y+4IJ^xe+rmV$=%JCD44R#^{_dC+e-p zqSB5ChG$+y0L+u|np5A~)aig?+;YvIpnU8qXXK;hwJaE?HIbNFLRYgd!t8m0Y%OiD z+N855R-AaDb%6`m%NYI-fVHDga{zyZ%TNLeSy!mD<)*zM^ zu-e>Vs|PKnS_>*QN69FXYz(QpFL1DWp{NU7T<`)n2}Q1ct-^T!SrsmD`t5}f@%Oxj z0<>CGm!buWZ|WpxJBxc*OhIBJnY*e87^H##0IOb2(a1$Qr1{=`#_vl7{cP`0)u zTi=y!+m-bNA63}A&b(lAI63B}o)s-iS`chmzJ~yoWwC)XnKYwI{9;DTM(v4+N^PMs zqLRp2b}_?fO`@65TgF zVNzS-^M)x{_wo3vSis3|Xn>P&f?dpwngYL6t?UP){&$b5Q4` zwtm0`YJFBztz-d$6Q&6X?J#XD#VZx^OA-fMH98!{&P?fT~2mr=?4{uy;jC<6`7I}a4_(F z6&)gx+%zIeFU2gB%uLJDv^f8006?0jj28(Uv46wN(_A2uH%}}3Mq$nGDhuO+@rIFv zdW)7tbArZ_T~K|v)Uf^=F+#0i(bWnIMyOYmC8gF!rwph!Z`h`w*g=1wG*?VVp}twL zg2yww?piRT)k?H#he@feV2RoBj+J_gY6!6^k)=lA_dT;}O10=nXljrJ2XgxhvMIs$ zENWlRqF-2w#zpg09x^T3C>*jTpVSr;7iqI)R+fb3+Y?z%ZPq@h;5c3+gr%8gLf9<` zXhK+wIU66EU!x*qbrlI&8U2d`xqk=6a)!yA;iWiLg+@5I|6M#J50wFT!v1>S3)sCf z^45E_BG>tq`4}NmI~Ttm?3AF z%GFJ&!jw3qP7&4MB%ZUY`?37T)C@7Txn|xv3|h*LOH>Te#qu)&AThx*q65m6-^t0siJbjWbr$f><=r2 zZO0Aw#plukqi-ixzjV9x{nqzi{-64OuPQY#nzA>g#pfP`p2*hqW_@)x_utsh)csr2 z!L88m_n@&Yu*mS%rfP@pcKnO}AN1e%jHT>jKmVjfXg_WE`G!|$ecr&15Wd}fWT*K@ zA@`Ae)*tOOyZua|%}9*6K2jXDXf@41U`=Ar0`%UaJft#KJdC;x5%TC9?xd#&IO>w7&O}SP6fHG)2(Vr z{TJ`tra!46wMO-K(G{^3)zqQp)PL2yNzh%3?giI^8?>CEoE1E1Eb|5HS)uTVJnUlO zbfsVmC~GGG`(D$xG|}X%2F*U!9uA>dr;4>luf&)S2cq^b!(j%U2O?_g1z@BXpsBqG z3MK~b64E#@q>vdQ#8Fo_;}9sURaRE!9w!1$C(8<$G`{PQu9n-?#;;6WLgU2D(wTUY z{4;qz_30v`$7LJ=Bi4o!eu@B?UM0eh_;40Yj=~%cyb+OJkS-Ea%oL%#6A(fc^x+)d zRqq^ACX>A^5ry%+TsKYij}q<3H1cF#M}%c>A%D(v#SCSGr|D)2EOaxZ>fg`?T~ z{TM|MRaA{4;E5L`5A`b@}@VvdoU zjS7>`@uRj-S&}*&R`|@&hXJ92F#EZwgX@dkpO0(}b@%s#I+Cpy;eZBfPC`|H6Hsf+ zpAQ$}v4!;4{|#5jFaM9|g8Z9w+lpJx4sASZo0&t)mnaT8Z_tB;oD?1tsE#;J`TLaW ze3rbCjL0$!y=$nRe@w9s?nZ}ly+V=m6lrCa%5gBB@B#E1MKi+nJcWp|4OMVb^%!M# zGJzxKcwH(`g7KA!^vhLo)oKCL%la?BM2V)$a+J5|)w(gMwCx2>QB4iF0fLiO@+3dv zNpcEx4Y6O&9sEl~CmYKUsT!5NPDJUmxPd6$FVxm&YC`Fn(30~(ZE&UM8*@vpY_kZR zeq$4nsG4RUhRX+DJMghTxY9wUuxtMArIEbRSy8?24`%#>Y5!n0(6)Lk({U)>acIM2 zWLBGX)yt;5ALauYPuo3DTehP!&~`!e|P`e`@elKA(bPG&szkm9Br`K8zuQeP=*#p^{x^K3xMBa+simlc6 zrEB_@oadx$#P>b_?uDn-v>J$TN6LS56nT`L**>tQ$_|ulQ5re6SA~s`sO!(U%AOb~fh#TgMY;r(j(NZh9 z-ZN@cAlOC-giXnLZGjfBuB3g`cTzg?!7vNgB;zDICnz{7Wyflm_%?b$tE0J&*0gFF_W__Uz2F{7 ziDd#8%3pF7@+1Xf7M$!_FhNMKlprB}a#S0~qg*3jY{B?K8NJ#IeA9!rS|4C&>xgw_ z`dAF@zoGDt>DEoRRosfTw7J^y1^~%WnK3S(b%=(U3{!v5f7%tgLjiKmB-kw zlSTMoIyjgbI=&V>u~hjn7BdzOq_zzqu#F_Og_9Ys_p^+Tj*gFqOt^>Y%IN@eE@t+? zO%u4VfW*&StbL6_bn+rsK_25Y`L^6f3IB+0Bu0}7{c($Jrc9(U%K5a{JS| zKdC}!!z7?hBgLID2rV7dEVUU>+QcuJkTg$i1uM{Y?@q2X4`Nkf4Wl^#*QvoclLo_2I>;H3~TYB*}JIH4@f3oLNp%mxeO zPa0j8=7QpQqSDo=>aMh-d&5T0^&WIxSJUE&vNS!iA;bm!H1<>Y(=PR3`bIUDSFws! zQGpIX1!{(J)dD4_6-rKethtOx4nASz4V|&R38YU};v=<}Zj1Mg}7_P{-D5skH^E4M?p+ zYGYAv0*Gmf1SLOWo6+-nJhwy|q&i7t<4QeeA*3}Ttu@jFbJ=F84L&d#8D#lcf~bsHV3geG9yLiYyPcrKWTur3-$7x~EC!RB}a(?`=^L zxzcyFq&d=6@XkF1KanApryKp+I!(vpN-p-EA*A*xZ`{xPfm$X8ewFrrtroVSg{=k9 zHyG)ah9Z4{?ZVOP#~5sfYJIyLLYI@P%!rI=UNDA=n=^$AVJV>2XC;N7Wy~~LLeGO= zV%|yUV5T&6DHesb6rc2IZ)!-J&LmWZFbc3&^yPw7Ics zb9*QWg#f>paoabr`DjE0n?vHun2H>79Ly)i7;bCGnq8Y&FmDi6Fz$)?Jg%IDY>Mr& zT4j8@AfO^6) z@?TO?1vziM2(FZ^l8}uP&i|g$nUMv%J!l?UYaU*DYCYI>FF5+%fj{#7^O`?3{Y%T**3qR(%}b6rKzh+8%}b8z zHAi)mLq>UUmji?BLq`n%Tq2!kJ=?x8uCd&CGQ>Ldl4=OCL~WK_;J1|4h}Q~Vz^c@Y zZ;FRqm-(n_{o=9UdVLK%AyHCX1{cU&A<}`Es2C{Es`<|7u7x*&rPAd8k8FIv`e^1Z zu!Lc2pxol1b%Di0$`8IUwNl)d6sGE-Xf3`l9so#~Z-<53}%(NX(w;hKIQ1zg!FWb14tXyE?670?d zccg!!*`7Ge?-Zg zoBIWrjFTtrP5u4fktJDQ+~2|izeC;iBa_nI_Oz!x~9<$w2YI>e>H6*z7OXhCqdW6$<+qDJ6{A*E_a|~3asTEI2a2l zHUt@k5C`|5N*PLyZ(7xbiN8<7LkpGJcrY1GUpm;wu}~&Bc0V|_H1?pndDW4s?pbs9 zJTwXQCk=|}$KZBDc|1fF{(39_uTYYo3o4!Fn@CBv7sDkt|G=GS3iTio(dUILza#DG z$awaqJ$qC3y_;toxeFIPd|iF&qJPIYeop=c^|YjuxgeB5mQdL=b^M`C}kho+}U4aoMk$J zDF3%|16@VqSJa(k%jN+t%J9z$2DX1lAJ{TjK%+5!Aj721@P_dX)0FuVwvjJ1 zz-Y@vD}50@1{aJ8dS7;x!wT$VKV-vy-}rhHOy0~WV}K_<9Y<)V`4z)7^P-9JTvax4 zv;3b>H+MgAl0tui8^{>81N{-g^i2i!VFoMrW|gynuYtZlUP931T2w!&iZkKK_=`~- zSdA#oh~mk<;$i)i>_4DEK7$T`3bG1YdNQ56?se|^FBY@U`IF9FX>aSYVR`4u&a9{A zn}JMlZ#ua5o@ehTFi-MjJ9oiM$>D__#pi@crMGtZ;@7{DvN!+ykqa@b-#5g=f}NQv z7wy~HbiId$i%$F$3+}ZkK{n+o_l1ZeVZJ^kOqdVkK&_Qrh;^1k;SsUr*oGpT{c+Wl z`zaKVY2XT2JcWR*q}ad2E$3r4XWS@Ub)?F?jBuKc*iGgZ3HIL%62>V)tGPrW;F}G< z$Q=|-Djtd8-MY1Sw##Js5zX*fRD4Z%5bU|VpP6dI(@>_mGhN-8sos;W-gCEqt$J+9 z_OYi?G2n&=`}*b#G-~yInkkv?Ge*;-F|3iZFv6s0hG|>I;u1D~h}%uL2q7mSFbdP? zPE}k(?o6@e9>+q2`_KjROHiJ@4)dUL4oVg*?<(cth{95Cnab5*{WJ(b)5=v?^7UP? zjQzAcV{i%rq>w~;FpGxdS2f{+YTW}?j!cMf%JYKaCP1~?9*|+v zm8cO~RdL1Oq{n#H|f)6O)%J4l;3p^m*wBN9=_S^1@rU;=lfis^#PQa}(Y}Hse+#ZqUSo%jgTE^MQ&l zn8-%D{N@igv)c<0x+c~`apeNp0Gn%7(Fb@cOGK1~6AjhlTQT?-GL9!}&Jq$PDHIJU zd5vS9;}opF18s6oXKuWiiuJcrtoFV+3xG+UFU9s%Bw5l>JXK!0ZEni&?`YCapz>=% zwyI|NrInXb-YrX(tjoJ%&IEeW`0wh0z^B4T-=atbx82!tx8uJ15c|9Y9pTTo+tTi~ z)g2$WLwSeb=G(0z^VJYfk*gtXe%?p3G(XdL&(cfB(#%$xX3tbGM}#p-F6LC!kC`dA zS^)tIn(a7d!T>kDn%EURD2LyT3uXv`2ruDc=7$=-hxsAq0^icnO$trPH?-9^#+{ka z1TYPHfj%C>Rn^7`#$j_Y*j3?MFWj~;rdLq*+&+Zk%1LvS=r8axqsEddUzdwQ0V_w* zb-q^iA_Q^Cmnq^P-Hy@CM=OY_PuXTdN;eha{FGD-cBSxELmQT&O3=lirDS~BOn*gi zcNxtASyT%3ieThUWG%SwdgYRJ*_w4#{nm4eYdlvM12+a}!?$bi)ZTaR2I9z@ZH~YL zUw5{qJyWwSU9%0&^s<3wXruj=&_-8O{)`9>m~I#xfe(@0gkS#clRvIITqFFb#&NjS z^dr%LdwBqT75$^_2o#_2%YhV|Qa3gwLNE%zps031)L_>13fQ==8D0-yTPcHRing8} z+E&17%ch;7Qd!}g(1<4+i#Lbj)c=E~{4}b;l)Hu6z><@F_lC|!uRinV{;k*_0*#r# zP&zPl=im>A*8(S&#$bH}{x0jS&v;uwUap2d@b>0yLQOAr7;inylQ>O*^9k&8KqNva zno8Qr7-jK)BLLbFcYc+dCSZ9@n9OjzS>HKfB8qk%)k6{K@|aR33=ci?Np(}=JCZ>rAb{r&eNXz2Xc>Atss=m+ z`$~!=FCkKt+C^lh!|KTCikA^IV_uFu)#s=f5IKG%zL<`gI#UM6-J7Z2U zc%@f~$&vyQg}KTimjW@>-+<3C>ME83=rbj>-LTw2iE{4jA|{+BGwG+v3RZzn?K=>q z^1h3fU!w){V_KjO4AiJ?=)Yj(32fQ5V2xPbv#P5}{l!@|+8)_84Ix13m1tCBewnL( zIksSvXRwjrxG1)YC$M^Plw(>{%j&<=ZF*P@ao;I8s$!q+RO9sD$JDb$&!L9Yk%d#Q zBW9uCy$HdVToGHuK202I$+e)lG*m|jcn2reIq!ob8rTN;1sbUvX@8SGmw9)+&(905 ze@i>S;Rq9w83jryaqm)o>m#a5#U11tSy$O{1v@ztBmd82L{4I5t|P}YM@TwNbr{D3 z6jOM`qd41sW#$bJ3V2fD#l-TRpmT!-2I6NWZtp!p#=LY!qrYgog!Z0#&E-4f9S92S zD2|4Zb#&ax*)x$f9%crbbf80xg;zO3xsW3hRhRSY)B$(aOqjPwv`ZV^cKmHnepN31 z1*p~*u_XdvYY~Fg=~sziE`yHVMJc)zxp%-UyxvkQ`^HyI8M@bd@{V%6(WbcYmR~>x zMMk6Y-$hJvxR|71x(X5r>ot`*+c-p+e;CD?+&eE=_Bnsj(7SB=aeXT&OHWP8(+Vo0 z!pE7HjJspKzLieVb$-~;`|}MNjaS<{i>2THFANd%Ht@*AC_5RSg#KF_jlHF#vGZ}G zLH5rXcZ)I_B8`TO4^j)~Xt$Cjf_y1ibDCWDaXWWhL$|1=Nu#a#134s??RWE z$3FGgDPw{dwNj;Y9->mU`_&~7JQ+>UH(6oOq0bxQavt`m!zX>|IB_Y?7_PEsO?_p6 zx|F;rlckxa^#ybQ^t7LmGGw27r*|!Q2sRx=rEE(#Zp$=2k#2kfg1QH-J(<>_bn6iF zKi!@7cH@LQ2%)x0B4G|2HUw)E&VB|Td4=Y#wW7v*9|v0B^4#)d0z1-y9mvk03)y#4cKQ$|D58cIMLg)Pf8efOK5!c{ zgaO?tpSwEaYEHYFzj>8>kKcFoeQzM^uU#7XaZ~TIBU>ku$$h3SbgwRy@`h4%p}f&l zwIk~f-aLKd^lI?C&2KknTKA+|_k7@o(;uO^4-N};fknsnL*EPC9a$SXa^HOvVry^9 zY718s|LjqP5NHK|xT&)3>DKLk?jHurShYiOJ8kP62^jxXpnue1`PX&>?z#hwBJqT+DLd;9a1yLu}UveR~ya0o&)0JA7b$X9x!g5r#w9~d9 z)iDb!x?nEVuS%|&t%Pn`@eZ2iPDrfsUs3or-To2Xn1z#;QxzkyC8d>O<{YJBgaDI6 zYYV18UcIFl`9Ch-Sy~CF&<7?=AXpnn*AFat9(YVVAbxMyL7 zx?zNi=8dC(+E7iCRPQ#$erf(c_MD>;E(Kqi`IS#fm>7|xFGff;_R~&rkZxq_ud<>g zkoZ+3<$PtJZZrGIkni~-AC6`5b8(gkLFFii%4T-TijExJo>{Be2hm4!Tc&wmx_KXg zCWk+p(6WC+Ft-4~HjsD&1}%Hio;`Pa);uFA`v{kGn4qD{*{)o^D2F3bk*Gt%JH$Bt zrtLTFj}xs%3}E9hICL?|7GbNB3nEb>cuFqBmcvOVI0aGaAR&7>4E35VVt$Rjx>g2H zeYLiHd^z>nYxamGQK@!I|73a)Q4y>D{W%z>!^h{M<+}aazU#JYdlFbEXAMjHi7z&pmuyRRnCiQ~ z=7t{wWBllK`&SR657z727u4jof?l_jbPA7=itG04wsNDS_Yj|_*WbKc9hKMZIwLnv z7L}b1#N5qD*3;ili^E= z+<|g_OpUF3T6Y=F(5vm zFpBfjL_q6@(4P*&ZG2oj23}E);*>9(&Eh06|K1P~{t+OdXF-J{`tS_d|a?RN%7M9@smc?=1Sw$TMmYA(eo66E2ED<7y{LgsPC zcCgckIWrWg63C7r^q2Dq!~ycp13|zD)=gQ;2EA2x;pP!T5=f}F+PR{n6$g9hCa3Zz+eC2;NG>szV8KZAO5CqJ>A7y8^)wBD6 zJVhwMH3D(yh2t0Ki(f<_6m(bY#7DT8mpxU8!8DJ__Hnq$r>_T){Fly=tFXtxlhGQC ze@Tk;CG_JsuO0bZSt-XCieQLnTn0k~UB7L-DO@*R!)e#+2HcI;%YH-ky79$hOpR_D zKL_~bN3Bgu1>&-ub&ULTO(p)q5cAJCJf8VB2=`nUN9)2UxG_l)*85 z2uJhPDJz^V?!E2G<-WvRAAPt$D}!SoD3v_@Y1Pv4A6NZngh%M9qp*u*=v+(uNxj!62-+s)!cj3VOoSyj3&oPY&j^f+vkRW`AQVGboJ6Xol|2{od;}%kU%N?PXj?(Q_#O7*> zDK*k$;M9qHk}^C=H|mOf8lggOb5A_MAXlK%DJgSwXc;*K;vvt`25dd0whwcr>2th{xphTc@e?hifP zx0~;Kc0cge-gMt^qoJCe>;BHHzb)hMN&9^6jrR?-+_zR8q0Fl)JS+^K%Nv{6BOzrkaK_ zO-IsAN7kB-t+_{#8(%nZ3Z9;nVw4>+jgOD3U%Md8H4dwd@z8L&lgu(iqlM>|X$Rv+ zgnpYs6LkA`bR#_h$Frp!u6*+w>58o4)`RQf`>SV3WETH)s_!&Lk zq}%^RH^yrl2wbgndy?Xq_^qBoOts52{koE$X?mF)jpS}Jef=Tln31nQnhFQ6oNpqv zj{FyNBf5$6_l%e7rbo79iI9}Z7jx+`YQl`{T;efc{`hYI>{Un2wZisY*}Vs|gFEQ# z^fAMFpfhiw0I(=NdWAE_2-@kZS2#J1APk6FSDWw|FgibtXSYz_mTH6Z&|P$P8WH+; zvDhO&&dh@220A|N#F6cXjwYNtrk3!FhU)wCHVWZ{wsK&bG9arn_=yW4<={2N9TcpU z098x-$^zs=mUc?w5vYfU23KCBq(Lodkdmr1mO$DPpt5^zH^4uHWzStd<=aE~f-GLE zVqoRis_)hqB@bxT3~0%{dUCIp+^ZxTEn8P!zHPd-_z4_UZ&i{J!rSrw?ORPy#rw39 z`!=k2)N0?p!qT^E>DwuNd){ibwA}IEnfhK3B0)<_-s`eB@0juee(qLm&`-X;($c&d zxZUw~b6!C3&au1x@15MBU|zIZdR8NOlnVt_-ic3)z4O6h-w~nFYg(z#FjAY+k@eiVd)gfaXzW3~HUdnVIs9LNTtBK1cGPfN-B7`|}F(L}sS7{aL zmm>L6-<-~~?pKN&+`3<(UJf#K2B`+cHZ^CP*o~tZvmy9O(HJ^1%T&|3zD=oKYnr*l z0$!kH{cuq^_sqkiXmdJNXnOfa-A)`942Skdli>p2M=N#6bKOyh+P-v z<|Zf4hvmM({%u{X70OZks!F~-WYe?Y%dya%Qd=sGJ{gxTgY)3f$K0avH)EN&f3DrE zg`A;pJn0p+_hf7dnJWD=z$N>-t^8*Q!NBzy+JMOXIcJD+R*pngA}&s*)t2vt{5;C7 z5k+q@qbc)Iw%&@?7WIp*t#b(6g!h32y1*~; z_^t|IA_mf;lM@Hjg>l;b;z<9+e(;TReM9|&tomQFP&A0r;T#-C z!P-VRsw=(EOEdTaHCejxCCFTgfktC9yBRtvl<}BkUm#{IMX{~CJd1H0bC!eGurs{qo&rn4-Num=2tVD$6Q(>XsLmUrAMNxpw?RS2awUv##oE<39uO>aL~z z*8ic$2fdNS&uxBQ^)v`?I=W21Z|E|G45OjX@{eE~p(cs`lKbg4L^r~`IT!f6Fgv#| z#bpAToHa2|#=D4fl!q$--q=THV&Cc8D+OSdYzjp4;|0ak>Ipu#i#ipxYCS7AIF zXWsmjn@n_+2DID^K?}ZMzosaG5l^EqB=-#5|Q6QhM8v0tf1ecryY+aNG-vuV~kx9~+%>xG$1P_bA!mM!n__I%HzOKPf4GIl9hkyk_)zHjOTqPH!OQ+v{#bB)B((m8@LWcC zZcTXZKM1`a2|XVPd;UTg{YZG?r)G=62+g{|_*1uF7%?E~BjEtg@sTj{k+AP0DzNP% zp&w;F68b(8hCUJoKN1doBpm#S$@`Ic*S~ijy=Hp|4@|!0-D{4L?drW|&(=1q99{LTPTk&rH}J#uA2hvhPc@!N*M24?_`sEQgdW;@ z4c@G?GH=4~dUf53Y31x{`$|Q+dQ0AdD4@(HSldttoQZS8fzYEb8f=EGONlq;ug^ac z5d5kCw9(M_P@sGMi{|47gCAxJsTzFe8k_<>uDkuq&%*I_-a=2P)K{Cgu^`o&a<-%` z;)a7ooHGhW*H4W$LpQ!8Vdw_MY;@)6@u&Vy!{9>!x1XLdoG=-j4+Xma^jYg^tDy(2 z0OQZx8?;!b%Y9{yfRdQ%ON zhLkVjOZg-IR3H*aHAWg!O_3)4-j-}mwM1GtZBGVMt&vtvJCbdwU6Ea>_DDN_b|yPg zosmvaun3AU`)Fy0Q5ksCYS!G#bDNOc zT$LNIR^{&Fxvj`;tIB;q-i5x~l|H#c>6bf|-EtRx-F!SA#jOm|ERYURYRqBU zC--2K!wX`#_rGW$Q(;l}$jWqVKB>uxxE8kS&WTtu8M}~FbZHVfy7QE#Fyr}5LdElw zb6O&kjwN;5x%s)If+{Vi(wAb%gnU*;fs=`(l8&Vm-Dl=Lt1uN6%B4O(qbSL8sm6FL zok=I+sGn7$ykg5-jHyagrPiX;rRL1s%T&9Zi{S@PrB#iFOrx5JrR9Vi(-gdr&Lq;$ zhb_8iE~d>ywM=xLC3O!XqA3q$>|XZ zN^hD4BX+!TOj~3tcWzx#%Em3ct%4nxj zSf7-V))e^!V;P2QNmY{5Ds>V1@WR+kCZ&wY$|V-d#>SpvnOP;SsbkX#rd*s)$jaF0 zB_(}nESb14Hn*V7WYQ0h?tf@ZO=!x4?4qKM%_Zi>q6u`tuqDP47}%9Dl}}b3 zomzo&B505Pk#J94fE68k)|4H=zp)A=*R4 zpIAB+WAT~9B?YWfHOl(zxhKwqXkU#oT1?i7$Y2TU2C4h!FtaH3rLmRNY)94bYu@#v z!lnn&qVP*!pD_>Ci|5~99>dg4)fCh@C7zh(t87j|4ar!WxRzYF$I#t0tthcr%?7JR zUCG{qv9aA0(I}_F9^Dz`$1WPx-O*?&BhRCSsP2tMzcL?7(t*U2bB<-^6s9dOCsidl zV6=$3|0FTIvH+})a@{2)gonvy`){lxIN-yY-gnNl4vEz9Tbi;auh!mQ=I5&*J2iHY&1l0_9LV7N1en z5K~kDjjBr|e)&>O#j96=)`_pxvwSW&F(*XL=?TI`0Z(P&sM$&{v=Rq|63C+*tvU}f zwNWm+AcQSgMZ0d}2%ra$Y&+|Wx+kdxqzgu|>q#UU=fgk{Rd0%_m|NqX5`cwl5nT61=996tGD z?e5_-^su|Id(V>eQ)ll^2}3;Kocl*`=>EHWw#*;YGee1clfswh1>vfwIZAJG;w&Be znouf#)uNFAcwUipuNL=wSZ5a^Q!=ixkQMWvNyz!-5(PBrb zPECtYmA{C;m%n>ixMKaHa9ISMDA8dl%WBV4CLLG!p_JHlO*y`+4m;s~Z;QO45Ek@#7x5wt@ zl(fusVTm6X-3HZ!E$CLrZ9PyLB1v*;LZvNAQ!qi9 zpSsGC%MR2(P&C*|De6*v2N4tvr_j3VM&uijo6@)4ue<*>_`uSMji&Au<+a&YXYV$J zmnJs+T`OnT{C$N$%X(li9~fK@4Ce#GZ=78V>@Ng%6`l5m?v4I~cWmEtzwN%;Kk@xz z`Tmoufl$#WG&HVzhw|Q`)jbFE-bdHHkLA6Oec$?1?<6d#*5TrAq2D;Tzuxi-!SLcvA6}IwKXOpPRH%zU@ z#g&G8ENIQHehO`<{fHKY_x#Q4{-JmLLj`YO-5bh#Lu=mMJaZuLA6Ru7`oZsWuIwZR zwr#e2%h&3cEv2o_l`9igvf;Y>xn9xFe;gi!^ZxLvGt7|!@I-3SRM^V~kum}rMv9>B zh(_g1915NlS`9l)`Fxe2@Cc0LKVKR~_{ly?(E}8bo?_^7gjfY)r#Q-WI>|P8v*l*|^>&;A+n}lFfhu~<*ZXeDZ#?{#^w!z$ zxZe15erTM^?c?R%w}3JRK;6diD~A$BZC*lFMH6}kI$gw?5F#+%VA8`-Bk`>`WeaJ9 z(1cvFq}XM=lkKu&+9^ZRiMSPyY*)NW1C@n2=c>|ve0bwWo*U%?pc_GZKsPNo!roe~ z$T0k}|4Yhn$S{mThGL&kxS?|X{K&{O?4}W}wI4k~s?ms+8G*$8^!f9nZZ4J2%_P)N zGLwOMK=xle1A{BAg)-diGmQf1A;TOO3>#A&H>&Onoj+f5h|ZrM4{_z3n?x8!CLL0s zp;auSP$JDcDr-2Sd>GUg*R(kzke#hkTgMCoOT9-e-N%(JsKeX_SM`=k_2@Lqq_`5s zK}GjgZ+KHfl&}P)Kr)DaoBxam(rTNAsL>l9a@IFZO%cdm)-ZFx`B~DGYQiOf1?#`b z@x4;5Pc8`6+RkmUs-N;W(N<|MR`qnR9%vVGy%d%LDUi@kgH_gN6^F=T)*H5IrR)ha zuj1oS`GGVsmQCTkf!9xh+77Dxz}IS~#)d6xri2D6DdCF(j_1%g*F!hDN8iZZ?LI;e z9Ywp~4J;p6Zyw6y-!oL`8(i-@kncP2*13G&_|oK0y*tKl-}_U?o?^fr?J$;*Bf9F7q5l{su8K&7R|PAm!RfE=vZaZf=WV+ zqsGpzXixOxxA`ZCJ|~Fx#KC$tBlP6~(wDKmWjh1Sn4wyWF71_4dIC<;uVT-B({jV| z$2J@KeR)X2L=OrtJO0voSv2rOVrS8oA&CEgDAJB^nHI-!(A5@4T_`m>s)W!pKsg$Hv?~}e;vNtc4XaqB=0=}6{O`; z1@Dm$RZ{n^9Xw_g-xiOF_P=w2+J?5YZk($mk3T6_!A+`P6G$3^-{^U}eNy7+H^mzw zxY$Ts+`&N(V5H?3{)=ZpZDSo)QONez-9#1t$u+7)7JDt%#`DeNcMhx{ejEDd_wLZ11HyBy}pz85X8Ta>%fK6w&-@0sIW*QA9^vT}1Rp!uuAx%~=cx z2M;YyEl;jAul78&+Wt_!<>9;1qeaPQJN#bHgGC!soP2*%(Lt0`XzM7th;j>V-=>GC z5Jz*-)>887fHc7#RMBp+9W}fY4#R0f?1F{L`J)pe?yhj?~t#!jAa3%w1^hsDD#<7V_07>eCbcT(< zasfz(G7P{tGV&!jgIH|j%iIe}?@Tl=7c|lQ)O08odgkdfA%MC%KR1_zDgYm@7D~;l zTId3-I}>Ne(KgDBhIkFq463Vyw2Ye!B+>{n+$ql+L8H(QF2P#|WY;ogS8(d8+GvO? z62Fmx07q)YamxF>hc<8y!+}eGq^7iiMC3FyVcl9@TLB+#Oj#cSQ48w?+ZD%;i31RT zBn;umApw8OYB*px+HvnPwGQ4GYAPwVfQOouEo0m_@OrZu5irhO!Z_}S`MP^2Sdd~t zt#6V=e=mdStbtayMD`p??J#&~h}qzd0nt=mrKY`zI99!qy`Eilw(lGTji8^3eiM-) zTq|D=AUw-T4_=$0o#0V*l?UETDBbw zAt{v&?O;d^Wc>w7RfI3u>*rpJyc&7!xmTZC^A8uiO&rBW^35Y}$bU6^YxZvQp>^k> zcbtblR2xzC+GEFD;txdem_z!3#SVHKT$MRGgQCAZN14IVI=nMLsv4lIhBJk470#nt z{f0wR=MMH%VCh@L8QKpVmNq=QR$5-`c(voTo>zO;JbQ^VzNS}Zug~6f?lOVs!H2|K zzPdp4MKoie2sa2T$U?jJ3TAYaF#}bswsFD?Bt^H?)=rp##J~*dF^*q35FAq2{6j?d!VEI~WIN10U_`_L zv(Tov6uW8mRXe@ic;hj#!V9_qG?{?D1v|c?G)A9RQW;ID07v#tEo$5sEsO%yHsAlB zsMdY_@bM43F)hQmj$OwhqYX|+XLFP@dAminU3BN*sjXOJrXYvEgd_q~otpmWG;FhC z63F1AsAt7=?BIV{ynhGv)J{azCQPB1``5dECt{vmprKJ0DxrgkI$X%N?i?3M`R`H% z+N>WT+5Zf$%W5;VTN6H7GMf^;j!E*-_3kgxt?YS>#E|Is7Uq3BCtf4XzlT;-QgaPe zn%sH)d4K=S$#0*2{q&lD>?7qlH$Dy@vx$E%9-lOKkPUeApM zjh(!6u>`(>CNmckajq&)!$Q!=hliU9#>W!6h;aTqw-iR{Q!wg5S0`1T#Dn2(`yH#y z?8{ge#tl6ysO{QuPhHlPW$3?9)$wV*-?K0#Eo_8mp0VS&S@h3 z_-&FkUq0raSXkay=o!4LmGFJ&G&@*-;5EYTT@+Pmq7}bET|JdF|7*Qr@pW;J^euaM zyHLYB18XG^aEXcdnr&G0+%I1{JT9|B^@mrHTmOc(Oy^j^-)NlRY2?+q3cf;l6#axM z&^98mB0;P3{JO$cT6ZkA%a*H7%~vWh+gPG1 zY0imy1cL~ouwc#E7rQmGa(RHBX3>J>Cr3`YEtN{&ww10aUUlUhIb3HuE8K@m^nIx& zh z__6y9C|w>A%>cuq!BxHyg#+v;HB7DRc0OR0Ul`EcxT484^)e>JXbZ9yUIYLM|E2D@ z9Ajw!B3D|t>Z98dxckH~bwdkKXkUT$eUn z{$=NytDR@R=Ws86wJ3=VpA(B#!R5up1egC6-*w-zy7JjI=U~C#`JThGn8QbwLf<2W z&hSQKa5=s@`uJMou`P$x<6g2uPit&hes<~VsTo^nA z%cjsBMvYeA(n;uZus;}T<=+t z)?D2ijeQtS^;m4yCK^k19m)OD)C*Gu=c$4-fHrOPwjr?GvUGS=YUT1gJfb^j*=f1Q zz-hi?bWc2!OhO04VNi`LSa#f+N+5kxpW4(_P!& z^L|HR#T(n6Z*{$Kdznjd)!6;6i;8xJ9{|HD$kF)16mf4od0}+vLMD@B8Om&>h<_Q_ zPZZfr#_{+PQKWM7gTl9P4Rq_yBgVbXPqVM19BD`Dqlj^*L=@i@eD4Z@cLmqah5la% z$Jd49A4m?-@_~TpzncVn+WEP#?-#<+p9=%;xjL5G)?FQW7j10Uz@q)VrjFIl2lGw) z7yX5X;Ie%ExkYy&*uA2yOy8VY9h=M#omlNTkq@3+6`F8`W@TWd^=8XTS3WSb*zkef zD-OIbAS(8V;%RYZq9{;$b8?fXA2^4_eeVm1ww@CQ#jcg{Edj~aQ(}+UzMS0>kZc_n zyT$eu_m+TU>v6G7YRf5akqtyNfQOaE5|K4^dvBy}Q^z oluu}GE&7RqBg(V%=<>w%qbqxFj^{f@S3RS7+t^kkUh<9ne{c2X%>V!Z literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py new file mode 100644 index 0000000..5f8fdee --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py @@ -0,0 +1,494 @@ +""" +The main purpose of this module is to expose LinkCollector.collect_sources(). +""" + +import collections +import email.message +import functools +import itertools +import json +import logging +import os +import urllib.parse +import urllib.request +from dataclasses import dataclass +from html.parser import HTMLParser +from optparse import Values +from typing import ( + Callable, + Dict, + Iterable, + List, + MutableMapping, + NamedTuple, + Optional, + Protocol, + Sequence, + Tuple, + Union, +) + +from pip._vendor import requests +from pip._vendor.requests import Response +from pip._vendor.requests.exceptions import RetryError, SSLError + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import redact_auth_from_url +from pip._internal.vcs import vcs + +from .sources import CandidatesFromPage, LinkSource, build_source + +logger = logging.getLogger(__name__) + +ResponseHeaders = MutableMapping[str, str] + + +def _match_vcs_scheme(url: str) -> 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/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 0000000..0d65ce3 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py new file mode 100644 index 0000000..f4626d7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,285 @@ +import logging +import mimetypes +import os +from collections import defaultdict +from typing import Callable, Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import ( + InvalidSdistFilename, + InvalidVersion, + InvalidWheelFilename, + canonicalize_name, + parse_sdist_filename, + parse_wheel_filename, +) + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Optional[Link]: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectoryToUrls: + """Scans directory and caches results""" + + def __init__(self, path: str) -> None: + self._path = path + self._page_candidates: List[str] = [] + self._project_name_to_urls: Dict[str, List[str]] = defaultdict(list) + self._scanned_directory = False + + def _scan_directory(self) -> None: + """Scans directory once and populates both page_candidates + and project_name_to_urls at the same time + """ + for entry in os.scandir(self._path): + url = path_to_url(entry.path) + if _is_html_file(url): + self._page_candidates.append(url) + continue + + # File must have a valid wheel or sdist name, + # otherwise not worth considering as a package + try: + project_filename = parse_wheel_filename(entry.name)[0] + except (InvalidWheelFilename, InvalidVersion): + try: + project_filename = parse_sdist_filename(entry.name)[0] + except (InvalidSdistFilename, InvalidVersion): + continue + + self._project_name_to_urls[project_filename].append(url) + self._scanned_directory = True + + @property + def page_candidates(self) -> List[str]: + if not self._scanned_directory: + self._scan_directory() + + return self._page_candidates + + @property + def project_name_to_urls(self) -> Dict[str, List[str]]: + if not self._scanned_directory: + self._scan_directory() + + return self._project_name_to_urls + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + _paths_to_urls: Dict[str, _FlatDirectoryToUrls] = {} + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + project_name: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._project_name = canonicalize_name(project_name) + + # Get existing instance of _FlatDirectoryToUrls if it exists + if path in self._paths_to_urls: + self._path_to_urls = self._paths_to_urls[path] + else: + self._path_to_urls = _FlatDirectoryToUrls(path=path) + self._paths_to_urls[path] = self._path_to_urls + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for url in self._path_to_urls.page_candidates: + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for url in self._path_to_urls.project_name_to_urls[self._project_name]: + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, + project_name: str, +) -> Tuple[Optional[str], Optional[LinkSource]]: + path: Optional[str] = None + url: Optional[str] = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + project_name=project_name, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 0000000..32382be --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..847cd4f739cce56431f0359a35c3934aa267f1f8 GIT binary patch literal 16444 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 Xb`S5H>>_#gEmh`G{t0G94=ngUX_PP2 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..34d0589680dd9a619b08a2bb63568789842c2949 GIT binary patch literal 6856 zcmbtYU2GdycD_RnhyOqNp?+vt9!a)k#un+s-a2vZB(7~GiY@JC<&6^}YnI}Sq)|u? zduOP>j9kF1iaeZ`>$F(>(Q@ z84f86GQ7Z!#Cy-Z_uO;O{X5?|_uu_~4}tH}jdv&J+6nnDELdM_joAJTL&ypdNP@VD zjfjlE+=m+crW|IzGreCcFhsBk_KYLpFmf)z8M!mzgq+Q|vhIY(;BjQUSzp3u&>YbI zM8Ke(nP4`Q2pP01)0AyaG-q29E!oyYYc`w+XWJ5OMw>g+p6y6<7_=wTnT;eO2JOx4 z%XTHYfc6Rg%>Hb5qMJee9aFFF)Yqg%-kMXQ#|`r||AhTQKnQ-q2qCdoXcGH`X0cW5 z?Sw8uOPy+k`f$C}2BmhfS?m>i$8E?t9uhjPI}-;jnQj77|8#lnV#jzu=)CSo90Iu@ zQ;1w=6NhW`KA`(+bQjP^=Inh$w2SPx?I59chP+2^{APyC+TSBHOtgFc)MYuHQYAU3 z@H3Ml75N#F&&cuz{J2c{w4584CX{2mlvC7HCc`UgVSM};FRE!hm=q)^s!~QtPNvcy ze1*$45@mGfc{!U+Ee5%*isX7kI@4YqMFRlsgrUpnUTh#4xPOq zrB$813_^9+_w%SyDx*7olmkL%(*~GNPipacaq2 zDl6)2K@q9WPRdAASq9}KMb4yDQP80z1KIF2QjISZzdeYA);OEx0vKX>t?I{hW*CUho1> z6A0M#2_C`wx$nNstOhRcqU|m6F{7f=#;01>nrPlSpHE|GP;*fKTSV|{%rA%#&>X)Y zf5%#v`C~@2)j5KiZBGtnmQmmuYrd&AYqUnL`I26%q%n#O>o`&XO!<*k{bDQdYo!-S`?0l2HILLD;GMj zb|Ls2iF?h|t_6h-!5!Ig25NKikCHy3TGoPqaef_cihIg!Y17E9)miYU1~_BORQ*IZ z_ykUH?zP^6>pIaq7l0veA6b`v(Sc@&MYUByA@kxdeuHg=pl*a1R$4)nLG6 zs%8P}6~KeGZMAyHd)cxd`g|vU1KRl#7RbNx-E8G zXYvY;!SmlqafFMwAWqZNd@B9}Do=@NRf&&FRGcVCf*6lY13bk6_~Ir8o`}8pQe2T# zaUc&+nwk)mcwWlKlTuCRyXNY`5voe1VEU0s+Wr5K=Ck zDF}e6IBP&s!xhk-lVS=mT%m|$(JnnupHmDeiY8lc&Znrd3$dHQPk>`0UJx<8h$lsF z8kcgy)4|``u+B(2XPz3}{((5B`>`#Vlat0+3Tg-T;Hi%ydg-CYBANZ^5L6=wDuZwx7Rmoa zh~wCk6R$jcrS#Ip#i2*e;O4;-rM{Cz_wqp5#s8%iiV3V!zFzY3k3y}_Zrt=Y{p{NE+bi$fdS~(6 z^}$C@?~=ON5-u_~T${o0m%*OZraK+CJD}~&U97u{tYd?1E3<9uY{wISaB=W=!AQ}* z)wX{%bvLq>F891xX?v;26_uZPt9BCFR}B$Yc$L}ch?YB|Ytc%_$+Gk0rYmsMzvRE$ z^Vz_s0}s#r%kV!9m)qW2cU}6u^T4{Z=aDzK8SY#feB^K147Y8B`^(|}rNJlRwv~5p zy;~gI>gvAp#_c!mT)usI)7QM|3u78+T@N3tgkz=Fc*%DhD!0Adeh(-zS9W!R624H$ zyRX)BqbpYKihWLhIdgC3mp{4plZVq^NafdlP>H`?>H1-5^h&wwN5$bSzV|cdr_RrO zpZeCWJUIJB(-+O96BjD{#p2-dD`nsQC*G#T;cvgmG9=XdHF3c1wuU!a`^&BUmDXtS z;+C)Z=E%~>X6Vh$Q0t2Omb;85snU725<2_84!b{4bwHo*6g>QYA9~YG{?&cXG1P4T zwKIznhf17B6MYpmwDU&Gr4PDRi%K8+I?yvmRp;Th!iTA8io z4$MF2EWc!wM4hR>1OW#8y&gb0tC&nD;wR!Y%L2I|&c-IyY^E=jF~9{tr`BkU>oEkKHZ(Q#Gvc7r zh8Bo+ygY8uHK0O-hRBCX;xwQ&XlCkziXP*^j0uJ~G#mix*j}^n79ZM~og<>0Eu46`1eNfiV6% z&11?Nu_lDfQhJh?VO|v0%Iq$I)+q?2sW^b*%>}5frxiM$=Ec7$NYfal!r_tmr@SNx zw_{?A7i2yM1HsNKa13Z&%@5}&k&p|z{FJ4v8$b4Le9&O zL~RDbP>j=}&gVeiATTLTNNUJsVwMNt-kd%iMh^U;>_zg;OC->}Dy_AysSmC^eEExa zD*nrhgInIF%~0F&TshS9%-r9yJh*i28!zYMs)TcJ+aQmmF|j^$snF_duYqj>3uV>+ z$-ZeLTA0F@gAp&PR66W}E!LIm~$h={2hbSHuX%A8SV=A3_?24Lx3Bf4|ch+4o^8k2Hg zA%y6hkfJkCK#k@@@zFU&6|?cn(ilzAx%hk_UQnpvv}fYbC+coEa=HuNo3eQ8bh|RA zm@XPFBgKeR=fqiXbQRr&o-$n5ESz^lADsg^@M2brG0cN(yrLQP=0g+)KtG3{vH}Sl zW{w0xH?J;T-SF=(`}cp6zB6@us^X6>4nB4UwwhX2+HbY5blvJ&9ltA8nvNH_-v^s+ z&MeK`{BY^R)$#SqbuaKv z82197ZgwKKzpz%zw~Nh*0UEsaZQikJHyF@&0H;>F8di#KQzT0euI zf+uZ}Yv7YhC5PrM^<01xDPIJRS#)y z-;8wQe>k$)#aI2q4ATtmdC%dmn~>ZLHdpOPJn?{sY&3Gj+p>IOX`t#fiY}|@Hi{k+ zY^iz;(ntK^<)eu^3CY-0(S5%5eKDxHuVlWG~U8?-i&oi7cJmkjckXIXn zW2rGVmdv4%YK)Af0O5SwL8Jzm0Mox}-zJb%dl@FaJi1LFtGXB_wmkX`(6Mi;f6Eeg n>+-dd^WfJ|0W0pp9dLiA;8Vf%w)0`~>#+0u0sF7J8A$&h4wjV6 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc6a86650168ec200081d9de7fa357ebe3bc8668 GIT binary patch literal 8032 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 Ee^dVMBme*a literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..059889dc683bbe9ed2c1bbe5968e3dbe8c889eda GIT binary patch literal 3785 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 b>UZ>oP9MKN$J@@w(W7`nKjI(tanSz{nH6a9 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py new file mode 100644 index 0000000..0e18c6e --- /dev/null +++ b/.venv/lib/python3.12/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, cast + +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 = cast(distutils_install_command, obj) + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update({"purelib": i.install_lib, "platlib": i.install_lib}) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase + else: + prefix = i.prefix + scheme["headers"] = os.path.join( + prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join(root, path_no_drive[1:]) + + return scheme + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix() -> str: + # XXX: In old virtualenv versions, sys.prefix can contain '..' components, + # so we need to call normpath to eliminate them. + prefix = os.path.normpath(sys.prefix) + if WINDOWS: + bin_py = os.path.join(prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(prefix, "bin") + + +def get_purelib() -> str: + return get_python_lib(plat_specific=False) + + +def get_platlib() -> str: + return get_python_lib(plat_specific=True) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 0000000..ca860ea --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py new file mode 100644 index 0000000..3f9f896 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/main.py b/.venv/lib/python3.12/site-packages/pip/_internal/main.py new file mode 100644 index 0000000..33c6d24 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 0000000..aa232b6 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dbd4484cbccc8ebd38158132ba9c5853992dfa8c GIT binary patch literal 5873 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64fa01862fadaf9a3c420933046c87c880ec0022 GIT binary patch literal 2930 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 L{fNVhjo1GNiJ`-A literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb2b04d1e55a6e1893e4291b6cdb2e7706c0112d GIT binary patch literal 16088 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py new file mode 100644 index 0000000..9097dd5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py @@ -0,0 +1,84 @@ +# Extracted from https://github.com/pfmoore/pkg_metadata + +from email.header import Header, decode_header, make_header +from email.message import Message +from typing import Any, Dict, List, Union, cast + +METADATA_FIELDS = [ + # Name, Multiple-Use + ("Metadata-Version", False), + ("Name", False), + ("Version", False), + ("Dynamic", True), + ("Platform", True), + ("Supported-Platform", True), + ("Summary", False), + ("Description", False), + ("Description-Content-Type", False), + ("Keywords", False), + ("Home-page", False), + ("Download-URL", False), + ("Author", False), + ("Author-email", False), + ("Maintainer", False), + ("Maintainer-email", False), + ("License", False), + ("Classifier", True), + ("Requires-Dist", True), + ("Requires-Python", False), + ("Requires-External", True), + ("Project-URL", True), + ("Provides-Extra", True), + ("Provides-Dist", True), + ("Obsoletes-Dist", True), +] + + +def json_name(field: str) -> 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/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 0000000..9eabcdb --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py new file mode 100644 index 0000000..a779138 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b51a76c1eadc8ba1e36ac72ba07e7683d684e86 GIT binary patch literal 362 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e58fbad5c1f1e53c7b47e91f7b13b2ea82eddd11 GIT binary patch literal 12569 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..699f4138dadba44db616cde0f6cee51e590a5741 GIT binary patch literal 11083 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py new file mode 100644 index 0000000..ec1e815 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py new file mode 100644 index 0000000..36cd326 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py new file mode 100644 index 0000000..70cb7a6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py @@ -0,0 +1,189 @@ +import functools +import importlib.metadata +import logging +import os +import pathlib +import sys +import zipfile +import zipimport +from typing import Iterator, List, Optional, Sequence, Set, Tuple + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.metadata.base import BaseDistribution, BaseEnvironment +from pip._internal.models.wheel import Wheel +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION + +from ._compat import BadMetadata, BasePath, get_dist_canonical_name, get_info_location +from ._dists import Distribution + +logger = logging.getLogger(__name__) + + +def _looks_like_wheel(location: str) -> bool: + if not location.endswith(WHEEL_EXTENSION): + return False + if not os.path.isfile(location): + return False + if not Wheel.wheel_file_re.match(os.path.basename(location)): + return False + return zipfile.is_zipfile(location) + + +class _DistributionFinder: + """Finder to locate distributions. + + The main purpose of this class is to memoize found distributions' names, so + only one distribution is returned for each package name. At lot of pip code + assumes this (because it is setuptools's behavior), and not doing the same + can potentially cause a distribution in lower precedence path to override a + higher precedence one if the caller is not careful. + + Eventually we probably want to make it possible to see lower precedence + installations as well. It's useful feature, after all. + """ + + FoundResult = Tuple[importlib.metadata.Distribution, Optional[BasePath]] + + def __init__(self) -> None: + self._found_names: Set[NormalizedName] = set() + + def _find_impl(self, location: str) -> Iterator[FoundResult]: + """Find distributions in a location.""" + # Skip looking inside a wheel. Since a package inside a wheel is not + # always valid (due to .data directories etc.), its .dist-info entry + # should not be considered an installed distribution. + if _looks_like_wheel(location): + return + # To know exactly where we find a distribution, we have to feed in the + # paths one by one, instead of dumping the list to importlib.metadata. + for dist in importlib.metadata.distributions(path=[location]): + info_location = get_info_location(dist) + try: + name = get_dist_canonical_name(dist) + except BadMetadata as e: + logger.warning("Skipping %s due to %s", info_location, e.reason) + continue + if name in self._found_names: + continue + self._found_names.add(name) + yield dist, info_location + + def find(self, location: str) -> Iterator[BaseDistribution]: + """Find distributions in a location. + + The path can be either a directory, or a ZIP archive. + """ + for dist, info_location in self._find_impl(location): + if info_location is None: + installed_location: Optional[BasePath] = None + else: + installed_location = info_location.parent + yield Distribution(dist, info_location, installed_location) + + def find_linked(self, location: str) -> Iterator[BaseDistribution]: + """Read location in egg-link files and return distributions in there. + + The path should be a directory; otherwise this returns nothing. This + follows how setuptools does this for compatibility. The first non-empty + line in the egg-link is read as a path (resolved against the egg-link's + containing directory if relative). Distributions found at that linked + location are returned. + """ + path = pathlib.Path(location) + if not path.is_dir(): + return + for child in path.iterdir(): + if child.suffix != ".egg-link": + continue + with child.open() as f: + lines = (line.strip() for line in f) + target_rel = next((line for line in lines if line), "") + if not target_rel: + continue + target_location = str(path.joinpath(target_rel)) + for dist, info_location in self._find_impl(target_location): + yield Distribution(dist, info_location, path) + + def _find_eggs_in_dir(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_distributions + + from pip._internal.metadata import pkg_resources as legacy + + with os.scandir(location) as it: + for entry in it: + if not entry.name.endswith(".egg"): + continue + for dist in find_distributions(entry.path): + yield legacy.Distribution(dist) + + def _find_eggs_in_zip(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_eggs_in_zip + + from pip._internal.metadata import pkg_resources as legacy + + try: + importer = zipimport.zipimporter(location) + except zipimport.ZipImportError: + return + for dist in find_eggs_in_zip(importer, location): + yield legacy.Distribution(dist) + + def find_eggs(self, location: str) -> Iterator[BaseDistribution]: + """Find eggs in a location. + + This actually uses the old *pkg_resources* backend. We likely want to + deprecate this so we can eventually remove the *pkg_resources* + dependency entirely. Before that, this should first emit a deprecation + warning for some versions when using the fallback since importing + *pkg_resources* is slow for those who don't need it. + """ + if os.path.isdir(location): + yield from self._find_eggs_in_dir(location) + if zipfile.is_zipfile(location): + yield from self._find_eggs_in_zip(location) + + +@functools.lru_cache(maxsize=None) # Warn a distribution exactly once. +def _emit_egg_deprecation(location: Optional[str]) -> None: + deprecated( + reason=f"Loading egg at {location} is deprecated.", + replacement="to use pip for package installation", + gone_in="24.3", + issue=12330, + ) + + +class Environment(BaseEnvironment): + def __init__(self, paths: Sequence[str]) -> None: + self._paths = paths + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(sys.path) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + if paths is None: + return cls(sys.path) + return cls(paths) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + finder = _DistributionFinder() + for location in self._paths: + yield from finder.find(location) + for dist in finder.find_eggs(location): + _emit_egg_deprecation(dist.location) + yield dist + # This must go last because that's how pkg_resources tie-breaks. + yield from finder.find_linked(location) + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + canonical_name = canonicalize_name(name) + matches = ( + distribution + for distribution in self.iter_all_distributions() + if distribution.canonical_name == canonical_name + ) + return next(matches, None) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 0000000..4ea84f9 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 0000000..7855226 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce1b02640293a09e6c29c02336ed591336d4709a GIT binary patch literal 270 zcmXv}F-`+95VS)CQKbCAZ3=Fcq@h3{Y9vI7(pcua+$~&e%if%Hc>_If;4SH{+?(^RD;ve!%j-yPzgcVEC$?0Ho^Pqw$KTL&+Ys0Ga zjt#k_R^DQhPG-aqF`;9XhnO%GKI9gVxm6OHgLX zs%@Wf3P5=;h;A$a&>Af6(x_f6lMO~O8Ga0)k0^36L9X;6B=5>iNc&6dDpaK!k>?VT9C8GuxQh)h)iF+`;X(TLtKh;dtSOGKk;Ln0-><&JKZ(_`}yPy8_S6Ugv_ACUl3 zr`_2_+Gdo~DB-4Ww&Mg);D_ev`Y7bI*@&4LjQwptkW(e{TQt>I^Ao2^2*+dRgXo z)FE`0`CZ@nfW=}-?lb~Mn=1jKj=f5wRVNItIqgnzJ&w-VXJ;H9B=n88U%%luDRf!s3UU~fb+dIaEaWe!yG3=qBuU=dsfsqDZ#`Y3`KI)-mVLc#sC14pX z7Z+{Zc^B>gc*gsuaDzwwLc1&&>ekHtLz`y`2F$Kv`iYrhi-||W!Yn(Y$jxLm(5Vje z3F^Aj|5lpJeH>!>8Bl9z_sC@5`rNuRy?t_KbN1`GujV%GEoE!z+pFJP-MaYQ&FzUx z+r}j}3BguH)Lz^X=#8@H0XZw7z=u5V=87K{9>{^jbugD8nJ`W`KpD18Cp^!Oq8Pdh zZYx-sC;=1IWXFV>0`&l8TVHM}J3R%y$v%E?A|svj5^y&IGmTH1wej zoga~y*?DsYQ4{(%dkpi;#jRvVMD$b^J?dIJ?^-*1KC+UgjJdpi=h@3( z6CCmxPy-ob{1lyfj?O+sZ#_q^?rBJ>+<9pSzxanVffw-r2|bjNbbK!}WNZEfelvpS literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f6874d6071dc4332dcdde60e2043edf3c64a2e7 GIT binary patch literal 10848 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 P8lfNB{%fs>a^U|1uu9Wg literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3fd30504529b54b13c03010a2f59da6bf0114284 GIT binary patch literal 4227 zcmahMYiv{3`P`S^@iSxzgmBX&fFZUEOoK7Vq(ON!;5N`olcnm`_?#q8u6@I~*MwN1 zindHmrbvL)Ekrm_8)*gx2Qw9@|A4Jh7Kq(#~)t^eGn)7t*pcdj2vz`&7x z9^d)ycfRwz&)-{GTnO6W!jDJ(>_q5aY*BAwZL)q6CW{Co%&92DCAbWq;4?x(;24Zo z#f+4Ythu1tGWLX>Lp(Z-usDmbbf2$MNjRo#Vf*K75f)76DXQg3_98J%$6FIdTFWL? zQ-EcdGXtq)R?DVSNj04(N;a7x0Q8*DGMQu+zd@-+Q&p1H9=NvJ`k!D}L zC(J#h1-pnHyX&+7w?-8+3J&a<74KUtA(Zgq7QmH=uX--f^8yV&4qzXQfhjQ@G+Rz- zG?O$=Xjy}5YW_!Oh&n;2JgiX}uACf6XGhoqP;_~iY8iQQG@Tlilk!9|HJ%(HG6+n* zMC5ctQDWq1HYL;;WCPO>Td%(j-6ERiW?Tjb zQ>)c)a*dnjo5J~NZW<{K{AnImHJu|gh3;{2(6^uygEC8_Zs-6Y>O>vhfavUeS(d*Y zi;Zd-62s&QP3Duax2ZNpQidKIPE#_HOJfp?ULn~lF*SWDHZf(4YS}~40|#Sz+8~jd zIP};=dLpKzvj(AHRi(nKjJiLfiwJOS)&0%=Jl705ei+2gO>suu zQ_vhYhrpWoSx0j^CsAGN_iK8+2s(?ON;R|$r?T@8!QZl)U+{y7W443d+lkOMZqvPl zX|8^UO;E6!I&^$5Lcin|ISwuC62W4AFHCaO3zWg_?IXlU8U_uECLev>D#ZJLB?)(0wz5 zR(&0XzNOaRb^WI6iSPB*PC(GbvhPJ@;`j=~Pp-589|wq`bY8!`c4H|%la8`uH=Z)SzCBmBw+b|l74 zZf~CNmrX7l7HKDZ%si3Bc}3ZX2=}NSX{N*bb}k9z>oRr@QrZ;!@6;k8*Ro|IL!h`*bXKZ z$sdkHvRb5?1?89=iLgXiUu#y;AyaZW2bo2e56GbM9P`_#$@PCL9R+_q`Z-f^-gXqq z5pp!_FkO&esi9A%jZw;UV@mpjnl?-+rII8CAII2~(pgNdQWhOeJ5KAVB*kHg?twK0 z`5?>tO(9DrO_ABW&ddQapIkHYwo#~ZRH9^ZMlPu;me7y*@raUg%l&cFhT8@3ul{K3nz# zt`E)+E}SoWg4fT@pIeBt$(!?U-k5yi*;V$3imm-OQj6)E=_UJe+upkeN^SiBD*7X9 zzV8(DlJB*$zpdg!zP3W>=h<~X+SWdIvg`}pxcaFNK5tv}-1L0pE&JP7L%mDyEQj{N zE*yD&{(PaA9Z);Wc=b@Sv5(sXaZqo@BDpdAR?}deGx`XlqvAR>wsYbod zs|NHC1X%?fO`9ZG8Ln2i`R=WT-UQ`15Y+EN$HM&f!kJ>AZ_ZYBcNE@P*%>Lp&mCcw z6rYb5jy&=7e&t2}jzZhAPcAy-N(=IK7K}R|-1?x@vK7s>8O@2nBgB>Vy(Rdy?A=1o zwi!{f5bt0ik+UtitpL!eF1B2XCjAT z#nV~xbpF>aI$hSyftxtgJ|6fa9uCr87)_U=KwX}LK&O}~3k#S_lH^l5p!xDb!by z000rRt*ek)>bW&q+P0^{aNq-%ciqWm+wIZ?u5hY?*tle@TVo~2F=)>^Vj~c+1uJ~3 zv~wv{K`=Zx^g#dP5o`MB#3#bzGuE^?^zN5zcU`EXSNdI2_k*4ag5hEK(TTrA*V*)| zc1fzr+qzXe?1VaIY62dQ)RMx6BzM63D5}6S3Trf4eKY}9G-sq$y_&e%EsXjLDhf%6 zSou=7(q2_`rj#c$JKnDTFEKG-&0ICQa$NdxSFQNUPq3?f&4*bt{isM{g JBGy}<{~yYmt>FLw literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a606ab954f401c1b14b0da85e658fb01c20c17d6 GIT binary patch literal 1698 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 Z9gRFhZ$3nWzoG2kenkjBMgW}i{{ivPBTE1P literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebb9c698d589867a58d8c9d42965060e58132f4e GIT binary patch literal 26621 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6915c0fca5a43ef34966c0bb32e2fb22ef76a479 GIT binary patch literal 1027 zcmZWoOKTKC5bl|MX4Xw2_{hOSqk=5x4kkAVib^yg8Uj(!y$qe{+MU+f>9MXYt zU8M;)Sx4}eaMB{&;co17-InW+4&jA&POIP&aCz}V>Bt$!yW~FMPCrvJa{+ zV2{c+Wql@Mwj0AVnzDpb6M;}Pl!<|TbCqfUFES?8H+-MVP&dh4ra6(DG6(-JvXdo>I$#x$j-K_!?TO}w%g}bX5mZQQ96=$e4LuHEw zl}0ry@8kpy&22hHG?FpbG-W2zbT1NNM41BG(?~zlmNmM|G*B)SghncX6KYH4QCv(J z(Pp9fe`bts=XBz|;d9o3W*)DKScbA1Qe|r@)>P4KVP(}INLUwwAoGHtD|s)r_*4+Q z=&^Y6rV<1=D?G04++AOLxE5@#J>ALXfNBkgD01tf}Lpub_EFMn$(&J+6||7Y;VQ))!ws`0|hO>W3TZ>@;($QBn)& zWVM;1Kr1TX@;cY6)HY*Xd<6#|6i6MsCR|{+uVy#c%U>4r-$^ cacgfbe|FCQa%;}~F+p=uAnwx0y7`@d0G!PuI{*Lx literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b8f7a7569440f03bf4d614bb6207d9b9656f97bd GIT binary patch literal 4991 zcmb7IU2Gf25#IaZ@kf+MiIk`x|C}v55@VZ89ks3<$21_tjvH5XBezJ21oWAA5|29a znA@XlF;r!=4r&($EEQ>~^d&~n2Rn9=q%9EVE$K@N^hFAtia0x{fg(WrMn^81^r^FZ zI#Qt(AYFjFGy8YDvoqh!@UQLdJ_O~tD=$p_u@j+x5XLF4bzlV5^swkSl6@DE+;)?-=iFRhnCzKl zqW*soZam6ZURg4wv?gH;41ZF^CbXStDX-_%w4|veC6$+Q3K={#d+G$V?u>*}riP=e z)sfeYoIR-^nHei=D6*6`Q&Q2)q$UkLmns_CX;>owQ&RHj^)t}MyUwh=21ErZh)6TZ z{s<(TZ z$$}zGva;tQpKO!8iU9oj&XYXIjZgY#+oFD}Z9#07nIU5p9tldd|E2tq9&ON z7R`(zYI<5SRXtBQ$rKA}K~%Ar*7K9~ebN1hesltl*3{+pP0u%`Q|HoYe+f7U0W#wr#`kI@$aN zgRVT!BeUI^VTWqA*+`RisOCB5++}yR z*XeJzGCMtt5N59IH~XF5>{f?rwle43n?Vf9Gd$R78I^fBCwGg#xh~xa6m^w;=p%|l z%BZ1$-iVU8L9aypY*tB|qBLnLhUi$7nxCTDb*8B*XKei;`&i6REmy`g3%H~{s&MC2 zGt;V;hVpVzH5Bpm$%**H#L2y4Mn9*_zz2y6W2}ieT`p>hsOH5}vt~xm6D7{;aI6_g z)ugkU5;Mq~MFW-(o04H-@)g4aT^6fji>Ck}DCYq|uq8-^f|8dFHyQS-a4}QYLBU<= zjHKo*0kmCH&swg6WMIYe0BchMPG^*yVhNf)HKiDq`MO8CX zO%YiCm3VAM z$b^h}F6221{yf+ZNzN-ii8-F%QBh7^+2vYLOka?yV2qe9%`%yw|q|hezp+FhitFAt?(^ zhe8qqu*8;8mP~Ca#z&j?o9hk>p=<+;noFmc=>vd@H#T1jz%UKKz?nqxXel?$bdER4 z`Dn>fhwpIfeGN!z_57#N-Y?>y9uMS~_CcT})=tZ0*#3&g2lD`dxvaD!$bWb7kryB-|@H$$XD z&IUjZ#g zntcfnc#eaR3Bo1E))(0;ejdi=xCy8kN}WSdzVwIZY53b3Z%^vQye!VBV9B6Rv8Mj` ze71H#z?D(b)Al-09C|kqVjB|l6gja<(yZ1RS1%AxutC}eALYl?yIYbequ-r2*};* z8mPn;W3^!DwI5erTzql0duXM5=+5xL+k30S$E)4Xf*IAUOaq_yA#?~ z>*-q>T~rsiTBzsJ_o!h2Ds$L0C@4mG)c|;68V+bvIuDt#(t`BEu6#s}J;O1)f^G?Li^=T4<$Jq?66mBN~C;#A5Y z9>Exc$_k`XQXVn^JIRGv{8@_en_2C5r~N{+s;;U~SMBDosA z3e~IV0nfTTpLUvppGYLHf0cafJ8p-<6{Pf_GEbnr8@=Tj8>J34XS+kYvt>g`|g_Ah<6>fLogcpxCQZDH3P YCh{LvW0<2%9nl6Ji0yq~chRr^54nJ(qW}N^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc91a707502297ab8f52e75686675986c480103b GIT binary patch literal 1855 zcmZ`)&u<$=6rT0&I<{j6irT9Asi{LDTP0o^R0L6jgi3=Dl8K5C$d}c4XY4Fl&unMb z366}ELk>M~&lNaP@uzSp5=hoch)Re9H@87T;>4R>JB~#dYu~&#GjHb2_q{j%u~I1^ zXdiw3dHc5+gnrk?xLG6R>Mh?*yeT0i76kA~H= zo&2BLaEzqzaTEuFlMwXEj*uM^-xoZVBJ{K6nXHVAvpOiJh@pl-Q6oopKuybFtHkY;b`K9TS8(g4tXdD4R|}<1YB^yRZPMVhHxtg znX08TPwb=&qvFu(5x&o8axJq!da$d6BZy)unS*Ts8_&F;@v$G`-ye~Qt ziGyZ1&0Y23D7!ay)9kM5(7FH+u$|o#zt36(Fo8-Hc!z|FP2#BUNO;4LlTR!_yY;`7 zp>#!PtT6s(-`x`(=2CVb$q{jPrO?T#+!oYWyBkpE)(#jyaKoVKW)=5l?arpFf|zZL z>2sqXa=n1ZOu{qgb_8Xia?c6ZRo+sysFxHxSQW&cceH$2Wz@#g3lN`r8^kdhuAy@E z>8vxjb^B?#`fO?KvGsFdesF6`_tnA5y6zVT%eQsEFnI0WW9yf~>KXVV$J(jy)SaR} zmXi+iyrkrL5M4LadfD?HbxAmynejX-d>Afzo(e^*K((4egi;r~)HN=zfOvxBD_Vb9 z3yotc^c$ooh!gZYXWE4qrTmrr@rT0|^!oZ>^R2fp}Z=aof!``Pt{p$+{okMOI* z8Lbu2{LOEcf4bogi`p!q8%x7kt(DPD=liSQ&JDHWa1NE`{(1?tEC79W-LaE=+>4+< z(lC=%V4`-;L@i^YHeJfuUDD9?U&Z7)N#R}w&bx96CiDZSu7MbuhGG1Q7XLuof0s6l K?H33{>h>>Ci4B7Q literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80d40e2f2e2e38d291b952f585d870983c4ff373 GIT binary patch literal 4957 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 Z(orBCACS%uNdLcTP76ZshXhBi=-)nTxR(F` literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 0000000..f27f283 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 0000000..fc5ec8d --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 0000000..ccd1127 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py new file mode 100644 index 0000000..b94c325 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py new file mode 100644 index 0000000..b9c6330 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py new file mode 100644 index 0000000..2f41f2f --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 0000000..06a9a55 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 0000000..ee7bc86 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 0000000..e9b50aa --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 0000000..88925a9 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 0000000..36d4d2e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,93 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" + +import re +from typing import Dict, Iterable, List + +from pip._vendor.packaging.tags import Tag + +from pip._internal.exceptions import InvalidWheelFilename + + +class Wheel: + """A wheel file""" + + wheel_file_re = re.compile( + r"""^(?P(?P[^\s-]+?)-(?P[^\s-]*?)) + ((-(?P\d[^-]*?))?-(?P[^\s-]+?)-(?P[^\s-]+?)-(?P[^\s-]+?) + \.whl|\.dist-info)$""", + re.VERBOSE, + ) + + def __init__(self, filename: str) -> None: + """ + :raises InvalidWheelFilename: when the filename is invalid for a wheel + """ + wheel_info = self.wheel_file_re.match(filename) + if not wheel_info: + raise InvalidWheelFilename(f"{filename} is not a valid wheel filename.") + self.filename = filename + self.name = wheel_info.group("name").replace("_", "-") + # we'll assume "_" means "-" due to wheel naming scheme + # (https://github.com/pypa/pip/issues/1150) + self.version = wheel_info.group("ver").replace("_", "-") + self.build_tag = wheel_info.group("build") + self.pyversions = wheel_info.group("pyver").split(".") + self.abis = wheel_info.group("abi").split(".") + self.plats = wheel_info.group("plat").split(".") + + # All the tag combinations from this file + self.file_tags = { + Tag(x, y, z) for x in self.pyversions for y in self.abis for z in self.plats + } + + def get_formatted_file_tags(self) -> List[str]: + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags: List[Tag]) -> int: + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + try: + return next(i for i, t in enumerate(tags) if t in self.file_tags) + except StopIteration: + raise ValueError() + + def find_most_preferred_tag( + self, tags: List[Tag], tag_to_priority: Dict[Tag, int] + ) -> int: + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations achieves in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags: Iterable[Tag]) -> bool: + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 0000000..b51bde9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a9b527c464eb07446112cdea12e548cd9ec0c59 GIT binary patch literal 258 zcmXw!F-`+95Jl}If+$k%ux*60qa-b&p+t%(5shWm!)6l4w(QxBHfNyc44j1ikbgEr_+hZdU$)PmwA5m@Gp5W=W#ag!iZZ69o=(kvLf>(-IH)IgX z7F`RLULbV5@orTvmXL^X9(1+SH6{oYK#^mNPFuJn0F_t7N|m8Ijc@nfG#2mTRsPzS SNqyJvp_KAxAmu2IGX4Q$)Jv}b literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88f4859b4b52fc1bfa9bbfb6da8a7473af6fc884 GIT binary patch literal 22103 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f780030fe9f5b1faac3f538bfc9f8b7926b2b93f GIT binary patch literal 8483 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..926ba65281a763d2586ba54db9ff37690ea8382a GIT binary patch literal 11611 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 C(VS)g literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f633e228c3e884b2e240e41326d96942dd5d102 GIT binary patch literal 18878 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70f456da0dcc2cea27368b827395a360a61a3bfd GIT binary patch literal 2953 zcmZuzO>7&-6`tk(^WT(3{aCUYn^MdsCY{s`jMQkFD6ZuuQH)qXojr8D;*O+cmb=XC zQa{A1FaiUm0SBoA6jD!hfdWb39(wGtO^>~Zun`d(2XPSO&>LMjsF7a!W|vE*st4fA zdoynyXTSHpH}j8FDvqGNcJsT7f#kVh=SLf!>&%JhW;eyXEHo>mM z`1u9wuG{3DIoq;umF_uDh)rN6e#vND#*PD1pk;|>I9Oe_iRyswrUO1@b>4Q|#mxrx zQ|cQUaaJ|c)RqFjiOWU{>#sDImocdhKLMd+U)ld92)~BtU<6S?N=#=IRz`YOk6}({ zF|Tu2(0N^0mfC0;(7v8h#9&?0Wk8M76M9llQ5!7j=?U<*9M?0~c|~rc4MvGyMx{f3 z4nE>a0Mh`X)?1f|y=LgRpcSq@0m7>XFf6PY8Z{llaW!6mW-rwMuyP>#vSI0XLv0e% z7o89^KiLGpbj`)CQOCYOu-hcoLY4a-8Z@BvxBnq@zh$gWRH!KhC%LN zZ%r5&4uqOK5C?+CM7y^*kE;cg87u~Zhtz>DF9sTrDQugl#4MB~pLd!KOngaI4a;y< z)feD1A?tj;0WrtE1ZpS=PIVQM&llCcAgO&YN`lWh*jy$l@J-UR%RuKRLfl}x>p(uK zRa0{uRdwi*D9D9t-&HHCb{$uAyhgN^R)OGA+?~p@LGVfw;#euKVQZ}dC#p0y-BsKA zVfne|D~{pfQw^>9j<$lGO2cSW;P@^kmS$G0Fy|{_^vjJ+G6MhCI`aR?QjR`)5)7Od zp?iD{Jrao0Bw@scbnL8)g@csBs56AxQ5A+?ch?3(6E-PQB4B{ zQFMZ|`76{DNSc0Cfn;Ia7&V~nPG53jKS%E|9;ywJCtRn!$9ORv>Z6X9g)QD4Btngz z??9_14oraR@q_ddfSXWb4Q5M(|B6`ty)88w@B_^gJk}F+_D|fM{^_ZC<$7OT^x#Q7n5s{a+WKXWqz#eEJV(wHlT{{*@!%^p- zyth^u+C-8kM3tLC?*Z0Z@~`A|W*u#?Z=-dlBrLR&P<~w~+NWqSZAmWPaA|TbmRO&I z3Zg-(U`@xw@dZd8tkqjb=NA_*6)>&Ug&C)?zG|4bu!3FJuvTCKN?+V?3=3+tRmDCF zy9oVua+r1$J3kJzZCU|w39X(!*Pxk6=}(SRJsqs61jEf@0nb^YtrMDtzBHHac)T*uHQk+nD3B`{TX!jKD0`IhV0Owga1(~6ekebd;1q3>wkXr zFU8&LOKtvs`tS$l4RbF&(@D?V#&^@tw%J}RC+E6jGq+p2`RCggx?@MSw{C5Pbna$H zx}#44p<%Wsqwyc?BYr&Ho_~}?sp*|7_mZ>SBgfmX-h90~GPXA|+Zma?z44Lv2k-94 zncd`>$M-Wc|3V^oAIWc@`|#Xu^4M?A-B0E|c=N`a-Rx;_zMZ_4+{>QqWKV+fNaRxK zUL2)z|LJ95*LMz$)8F`)Gp~%IPeF2`n<@3S#Ku&$j!+LKL zO&oognBsE}(i1%%#-4z3qdk#I5*jP^WGcl`F5jb8y(Effb~7hBa`E3O(8k4cI|wT@4`c$Klc_4=#-|WF~IV z2a*$#VETWT`*%vYf8m9w9(l4&(=|*dWEw5BL4}9g4^DucRjh|MfDCMYJzy945jCO@ zLSN{gS{^)S0{A~cAqD|eq;p}|e?sPA3yqfZ7IZz9VVH+8hT--F#AH54BcG$gU!teK zK|lTio%sTt{ff(~9lO1_-=j>g%cujaDl$hL3{`b?ro8Fr^-I+N3 KExZjv-2V%6aoVB) literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py new file mode 100644 index 0000000..1a2606e --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py new file mode 100644 index 0000000..4d0fb54 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py new file mode 100644 index 0000000..5c3bce3 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 0000000..82ec50d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,210 @@ +"""Lazy ZIP over HTTP""" + +__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] + +from bisect import bisect_left, bisect_right +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, Dict, Generator, List, Optional, Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> BaseDistribution: + """Return a distribution object from the given wheel URL. + + This uses HTTP range requests to only fetch the portion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as zf: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + wheel = MemoryWheel(zf.name, zf) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return get_wheel_distribution(wheel, canonicalize_name(name)) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__( + self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE + ) -> None: + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers["Content-Length"]) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left: List[int] = [] + self._right: List[int] = [] + if "bytes" not in head.headers.get("Accept-Ranges", "none"): + raise HTTPRangeRequestUnsupported("range request is not supported") + self._check_zip() + + @property + def mode(self) -> str: + """Opening mode, which is always rb.""" + return "rb" + + @property + def name(self) -> str: + """Path to the underlying file.""" + return self._file.name + + def seekable(self) -> bool: + """Return whether random access is supported, which is True.""" + return True + + def close(self) -> None: + """Close the file.""" + self._file.close() + + @property + def closed(self) -> bool: + """Whether the file is closed.""" + return self._file.closed + + def read(self, size: int = -1) -> bytes: + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start + download_size, length) + start = max(0, stop - download_size) + self._download(start, stop - 1) + return self._file.read(size) + + def readable(self) -> bool: + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset: int, whence: int = 0) -> int: + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self) -> int: + """Return the current position.""" + return self._file.tell() + + def truncate(self, size: Optional[int] = None) -> int: + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self) -> bool: + """Return False.""" + return False + + def __enter__(self) -> "LazyZipOverHTTP": + self._file.__enter__() + return self + + def __exit__(self, *exc: Any) -> None: + self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Generator[None, None, None]: + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self) -> None: + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) # type: ignore + except BadZipFile: + pass + else: + break + + def _stream_response( + self, start: int, end: int, base_headers: Dict[str, str] = HEADERS + ) -> Response: + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers["Range"] = f"bytes={start}-{end}" + # TODO: Get range requests to be correctly cached + headers["Cache-Control"] = "no-cache" + return self._session.get(self._url, headers=headers, stream=True) + + def _merge( + self, start: int, end: int, left: int, right: int + ) -> Generator[Tuple[int, int], None, None]: + """Return a generator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start] + lslice[:1]) + end = max([end] + rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j - 1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start: int, end: int) -> None: + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py new file mode 100644 index 0000000..1765b4f --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py new file mode 100644 index 0000000..bba4c26 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 0000000..22ec8d2 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55d9afd72b47f8d63883ff142285125a20368800 GIT binary patch literal 201 zcmZ9FK?=e!5JeNKAVLq~!Vc$<_~l z{+rLhJkoT+f;QKE8S@p#zdpmz+*r@1e0yhh5VlXe`BqTr2BE;t%8P`Z)hEoogCkii zTPhH;4pj#=9l-Ry(rTH_7vRX_%*gyKOLSn!fFR}3Dp`XzXr(8u9Ei}87a}wLbG&MF U(bl-Oqwtsqy9n=ub8eGBKfwGpn*aa+ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7817ba372227a427c0c36b2ac2161c7774c1366 GIT binary patch literal 7108 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fad535a5f0e368508bcf0089a320c5327cde6dd1 GIT binary patch literal 10132 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 y)wM1=6(Y9B}tgB*uV3 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9f71d0dbcf82f30d385bc6a0aa7f2f13dc7f0f3 GIT binary patch literal 207 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d084274b558578b9f5f651293b38b2feda1c5eb GIT binary patch literal 1895 zcmZ`)-ES0C6uDzkAN_ zp8ZMJ3kb%^tLGZa3PQhgAse}LvDSpeR|umj!U7gup(?;ExuPdkC4uW?SN4>ulB^Y1 z^|Y$y<*KL_=_AiJfeeuA@B(kv` z*+zr-gxZl4_=X!aoVqa^P=f_6S|xAl31qvd4~qRNBpQH#-ktlECPq*keOC3q(Pl9HbrSb!7Ff6x*>L@C8;CLrR&Ut&r5O#y@do6K~1{@%Qw;( zOG-zWfX>5x1a$TE z|LAAB`jWQjriCVkmr=0A9KQi#y=nUn^O%7Ns{`){HXPrWo|-le9^6|l6bu+=k~%UY zYLbk);MNO;Gdh$L@5KQxz=ZmHGKaIkNBM%|<9JKM4Qjy31hB*{M>V^7kCep&d0TFMqt1_4sae*&Oc* zlVgaLVY1-GSt)tbb1CN(Re1z4V6i+GIDRQdIaeqz7VYDvfnJ2j3*qK*v8UjYnjTo> z&)D&21B+`F!rvX^KzTm-*le54z#}Fm^VD9n&FSt%nK=vDY_uFq%_N+NTMifE9clL=R;KM`h3*7| zoV@H?_*_Ek{b>8{mD1tcXYUQ4xpeyB&@19v@{NQ>H4eohRJiI1}gN4iL zs*3twxUY}j(Z{dP|E!l+MM<9#9*m9OA3Jep?8NQKyJP3REN&>M-`p5Lg`xEwsMvq) z(3L~iCa+9>UA*qz?c2X1@Be3AL)*;1kN}&187_a{zBhdA_9rV_&iuP7aoy&I1`$^D z@@5j{@{617ZNU1?OO*-f2ca^m{J8bqBl0ah2lA~W`O1j4tm>5^ZFxxH>k$cDmPeJ! z?)cRqP4nI9^-bp`bFRS5PUTP_YF literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4aabbf53d804558046f579198d9a5f7248b46752 GIT binary patch literal 3015 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 O`SXk0X^`lC@bC|P-LbO( literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ba3f6cc54b06925a38ac5ced4e36ae41d748f59a GIT binary patch literal 2020 zcmZuyUu+ab7@ys}-MhWpJ7{Tv{$)d3@UY&3V5v||EJ9Qe5PgtK@Up#~-fh|2J!j@x z?s8Qm#?S;qc!GqO@M`eEM<0xl`shmu80vxvi5m6oLYrXl#cy`IEmr2TGxL4(&G%=% z-}l{*>2wmoIC|;*(wvOYubhZRYGt!@0XA2Wg)G5A`EV8T0??u(R;0WnaGvDEDso<~ zD0wBIV@|x1$R`9OB8;ZmBc*FAPTmwkDxb1stXT?{tvIX+_*5)mtqYDPlUDN6SUz1B zvZ=qg`0=dZCr(tE?YX9t75&ZQHQTYq&Ei??T5ovX*+Zt|VB)9v{%xC5+bzMB9#V5% zObRnLD;H?h4u}e-)GT2?=9(4k$0tH1etQKo(=wS^uxx^h%p-MQX1G$de1%|EBW^Jk zdLGPim?ij@zK3|OqNaFWd<$I=RK!+=rug}~VTn!YrWi5>#NhSAVM$GN9a*t2r09KS zV@+X-TUj@nu}I=2Bp?-ml)6p?$fnd3zmg+Mv$6_#2XG#zhry^blfU6VszUq$2reTX(f z@N?M6)ShalBFq>QT1vM6E;=aKdk+ zwTYGYDui|EX9AOj$RWbZ!Iv>19`V(~=ZZL}cwh9WALEbe$EG~n&Bh6@3zFaykB@L5 zLX`%^?k9t1F9g*sV9G^#a$r1RM%k-i!@|?VY?#K$@U5sZ33)EnYzrH?Y3xoLjy+*i z>#Xd#dvkkUG^ow+3svY7&^D-1wW~(Kb{Qtniwv)dNsuIJ1i=`g^(drVweEL>QU3RU zbc0_SeDqJ4&ZAZb()t%t*@ajZ=9aiw?s$;MT-N5ah0fhy58X|S{?<0Um>InB-i;#* zyACdBV@s0Qp1i2E6qM<_m)>zZz2nC8Pw8As)Y83+eS`P<_TKK>yV%jSxbx+fjQaO2 zA*sLpO7gLcGRE?Dq-8GepWA+j_)sAJnB6i@d)*tq$sc13H6 zLg(nij;)Iwoy)4+*1n{nt-X(XK*d5j_fJa$$tRD~E97!7(mEd@@hR6wzKPvUyz=vg zO)VMNPv|=k>}Mn62hq2}xFLPF>9qsmt@Z@aw+^V|!}7eeWqhYR-yMU)`F_ry-zjtc zu*5lrJU$wq-xufngWC@ENk8-oFlRG{tlxL?M7!p+I=6@g>Sgkkc>G6420& zI5#m?@vNGIUnPS;@_#;h2BwxI2*Q1oxsTLeP|qLe=y`!utK`KdRuY6OCW7SOXa&HQZg5dpPX4v0YwJD!oL*F37!A| literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..080324db6312cf49cb7b54a6d08e054bfb1f4c51 GIT binary patch literal 3850 zcmb_fO>7&-6`tjCm%Gbfk)r;bIBV<2Vr7%I6J2se``}}HOs)kAsS@Dr)0_(qD|q|S0Fq>1~LQ_O?ag+;RD@giY5Pq zza&ja0;?BIxfGZPaM^DvC3QmOvSezd;6$(#ng|KVhcKGyX-%?U;>c6M(uLZ0(MdOVtc*Y_M|w}E4bAw zVkDqfVqQqKf610Jp7Oc=u_Coy<#xp`TIHOX65Nng!R0Ki6w75yK-WvTyEsd+U9H%b zWzy`V0bR0l(-@oC94Sy3C7REfW|mebE5yoUO5MbiMM^n4o3~1(T-o4uZs;v7($cJ| zU8&lxOkfI9&ilNR;<*Sp`(FJOvPZ~no+3hZ)H=}xpCQzJAH$7378k_2Km&Er5NlzC zKojpEdvClMiI4eK_Oz+la;thqX-WI#-RlSuHm-kv+`2FWUUfJbzSg>^R2K{%w-=x% zXdk1;p3c{ml4~b!@)_PeeW1`IPPi*mu)(tyMk70 zZ`FH8IHHeRWn4RPxb_!SiuF^cW-*zxK(Z~JPFr&y)?$YYwUkWQ?p>M9jEUP;!1j%) zDV(>9vv>^8V$%&Y7v)OVZ;bxzeOJL{gU%K0>6D+S(3ddK?ccP4Y2NkQ_?}Ju(4a$l zLo(A=31>e7Z94CJ*@|!L(}HqyyFz zf{)&ZY!U5hsQtuReJgQpam)$pYwxT@)+aZDXBMyjE7nd zinQ1Z_1LC*Y)kF^ec=zKC#Aos!`$%lrg9k!L)@^TqS(9Qh@IP1&Mo3OF7j1UuJnbXW z@N>MJYR)Lt5uj6kEG_)s=CwJqvuS78?Hx)pEp|UpUl;1Yw~TdLd%c5FO6}@TIp^s1 zG}bFQdzxW`$=rPak6dA=Z;>3C*ST-$a1r3I7MV}idd9eiH5;s{W=96zT0+kgoU^f^ zmo0s&Xkwby#=m3?R=d2{RI&&FaynPm0lC~Nt=$A$e)0NXe%i7qPyn=X!#QU?GlmS}-8 z4rB<`b&>?pJp%C0dKk*`tv5-Z4N3Z#F?{q1WB{Ew3MW?1|L#YNH~t=sIkE4opIaZ? zID2y=^8S+OD8cP$-`X#qU)_q1ZYrZo;!7p+AhH};q1(z4Cz|*?pe>#MZEfY+Z+^8C z8C-8)R~kq-Gvo}NUO(|X-VlZG`G$zpP(y+2TZZ~P7=CbZ`Qn2s%U4#Fwf=SC$>3IS zXv055I$@P=m`AZ}Wj@PKMWa@g+`+0PZ+a$S9@{eDhE;_I4$3fAtAGWO?Ks+L)-0Q5COhF;}BV(32Z`SkH7Y@2VEw5BoF_ZWfh(Ls|6rgU1( zv!~5e)igaOu+#c&7>>*pDL$!tuNTTgaGH;l63GcT4l)Rt8-++{7t1_IF^8)q_);0R zy%{)X1oc7gq7brDweIWtUG_<5MDM4yBVJt8TgLiF=KO^Dg~v6LfhVg4!a{_r-nf^?967E$RV)|jG)Xf< zoizqbcrU`1Ic20m9`*FI<^h)Noe@bfYt0MY>|yDK*y^(o0x86Na*8#}-cyIKvt`S` zOj#gc_t#1ug~bo@mUr#sB3OPGKDrGVFjp6fpLLX^)7kHI^g3Pd?y6E;Ui@Jrf;v(_ zMe_RHjl{^}*h@9JVs5LwYjcdeLd&6z{cVE$MXkI!BJ}2IUTINrTB^J+CuJ>)TX& z|GV3cV%=XMQSEX7W4er)LEw4~tB`AdP-6kZLC}=;Q`0 zn&$MbGflSV;Q|VT(Hvo1=Jvq5E4}ybO6SdDy6It*yN28Mwn5b{nlydzp9cm|?n>^_ zuQlEKAA)<9_a0Rt5RG|HQYD*Zu`!$VoKU1T@#0?}TO+&LKO#={-u)|AN|sSI@l|pS znt-Sg{SRaiQ3T;1C<1?lCs69)aFVvn*wP*FxmfE){H{>=U=EOTz z=)+V)1bL^uvmrs*kddsu3NUG~OE~ESqbuU_<%S6IPNc0NK?x?oNF%@`1tmK95GvC& zlTa% 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/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 0000000..c66ac35 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 0000000..27c69f0 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 0000000..c01dd1c --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 0000000..064811a --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 0000000..719d69d --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 0000000..3ee2a70 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py new file mode 100644 index 0000000..4b6fbc4 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 0000000..bb1039f --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 0000000..24d6a5d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..26dcbe504d335bd72fa1d2f90a95f3a8eb408854 GIT binary patch literal 270 zcmXw!F-`+95Jl|}K@=%>a2pAB1Zks`G)RaN(OAxU*bF$fWlvVxoPnM*a29TmmJ1-# zrNXNuznT9v(%1XnlgU^VJ$yVjvvPm>aF#ro{iv8vVa1E+iKLpxO-~a#s literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..33894d1b508528be42e261f58e788f9c91a6d1b5 GIT binary patch literal 1802 zcmZuxO>Epm6dtdC*53aln=DO3>(W-Rh^*BgP=ydE2o9)CLG(hG!_@IiHg3JPnX!{@ zv`9rlqLqqNPVJo&N)HGL?mcq>fy8P=)k?sD+oA*^^~4){lR(tBn&re|4VCIN^W)Q#H1Q+90HSARGpyG9xBr* zQlSk}g;4`srv_;No+5?SCYkrM{}?U~ItF3_Iq4QxvM#9axf?T0*ZgTPJvD70f1 zd6e^)Y`;T0_7zT(H15O$o6vO{MDdkQ=}(!@#dblM@5b^kZXnD{^rMu99&Ib4@n-4= zVZQD`HkhX?lUzit7ep&= zfTJuP7e>tJs()Q*Yf+zyYRV~w!7%p|Dzwm*&TM-e4{+=zYr^z-1P7!mzN$P3xEkjg|RI_-9-uLT&_y*0U^pz+bZNv z1tq|wT!#7(4UM5PEDY8Ag)JlZerzSh-4$CC@G?@+uqbsRqh~U-h&nXyYg?0uz#(1! z_9Gp%2l{bz3UOtlprFgJmx69jUso@q4dtMJpy&R!vH9UUIU{V>mIZQqk|Xp zu^jQlh8s)e9dkew7IVIstg$HVt(9z$B(nFfxs$mzkG`LVp&$10ng3ABUX7T2lDBmx z&ns$Sl;5fsg{yv#$+l!=sVbm0Tk#-S1HK+4DDbl4Mg6`T65tj0gz9aOi)~#PK)xPj zLi0liB+JcY^_jfZb}5T_AO@?-`I=O9sTxvEffAZzDwi3_Q|9ty!;y4!fXvL@be;ED zbQRddomF5}FZBs^I_p3?C-7ICJoz)7Q>PtC+QmtkxfA=bgZ(g}4EoB6V#>0%a(L8ej-GvG)Li_#s8wtKsHoNgRhqlG z@TfX>^YW94@q|AIfxc0fj;Y_)muB?`nhEg1tiE)_dN5y<_?W)*VzE6ViWrl~!&nsM zeE<)Hkqlz^GRbMCff6mKLT9fEoxP4_vW>*y|Ien0AMnm(v+PR6iKngDCnC-^%qSp^ zJay^b)0447SUs9t$k}6JEZ-N5Sxe@k@&p*Q0$oY1FXCGZHnCeSADC(Ht^LJ1s!$1<3PX=Rxg6 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2b2d0010c5f2f0924bb9d97ae098626f68c0dd2 GIT binary patch literal 34107 zcmch=3v^q@nI?EIaPbBRf^YB%zQi}E2PI0>lM*SJdQh^cM+`ZJDPB+_O_0n5XqgOX zGmd9XI!=q~#4W1hjOZTkm_G3&%xRx)`6M%ulk~QxyQdFe&;fnT-pDiVoz2-jXX#LG zCGOts{r@hRn;;}H_ z>aoJt4%z$}o(!JK5QgmjOiv~Y>xLZuEKim{+mr3j@#L^L{ZOty&y(lR_vHHvJOzHI z$LTNh6#9!iMgC$>vA@Jq;xF}-`pZ0JewWAPFZY!DD?AncN>8P~%2Va9_Eh^fc{cfL zJT(lSVW`$$=c)78d+OP{aj3!H=xJnO(@>M&?QyfPd8paH*|V92Ekj%UTRmG@*gCY$ z-{NUuVcXDl{|?U%f2*g}ztgjm#bpfb^0#@~{JTB7*}HvckAJUcuYaFsAA8Rn+V4N$ zIpA;iw6k}|&_Vwp&mn(@r^Dar>GU7=9A@!ZLr46NcpmY0dAj^ZJxBe=JjYmk_Rw+v z3C{_h^W{qx4R?eSb6()YTwlfaw8|KIx;30nKlpFep-uX}Q{Us`X&yxymzd`}{XI=Q zrpH(9>+zlTZStM*o$l8-5#6sP*K<~UM9lY{77Ki5L?=?6PJGvkg)itl=fom>b^74? z3gS5hvG@hSbDrgM`o7dJh$VP`Of2ReJz@>3@9BQMSc|wP zSS^*f9>mol&MVgY%J7es#-KK!UOm1ZrF~+fugcfM;+xb|aj0cVE&8pZ8*rW!n^W6^ zddFd+-kb5gmyO^SjNsP9NL*xb+Yr~1i0fl<+Yz_Jw>2@+qS#6;5jB9e6VQAt)h?uJ z^ED==`V0=@k{@5LQ0zTv(R(T7OG311+9F4-5r;Qh)DIz$Y6} zEWnJ`WyzYZld|p1W2ZX3haTxXbgZlUh^%cN9+!;=S-JRXJcKItUL5ktLdQT~P&OU$ z4f~|t;D{s}y8x1XQbH6b93Kb-Wka{`%9-&|pKLri8XOoI?j4eir=*eKNZ$xTJ-)Au zp{_nz+v5w$x-(;=fUY|`jD)h#*Bc1dX=Hm3@H@Og)O{nQvn@j%e$KTqQ#=TUApL|!o^Au3+b z(RI4>&>8R9)5pChI?uFsw4Z7BcDJACluaE2lCLj#RvJPwOAk8yM5p&y=VLvxzNhc9 z4^`F3j$U!Fw-2rH2K}R63>rE>@{JB5u1=6`JweIW>pw5`j*j{y+3Xt*j7dJ!K$1*bZ9Jq&i3_<1=)z_O$>~B2hbm0KupG?V=X8?;8QxMFLi0f zcX4j51+mvT9|sJ~c{FE%D}7o~vj?$00U<35=@1eqBpO6Lb^!gjuFfb6Y)+U@`}#&C z@laqrc0QDH>-sHRAgd+<9 z-%x*mlDac(nG&Ugmn%z(PhM#U88o1azIv%_{ zGQ7>bWovT)UD6a^tbyjyfzf8~z%W(`RzULz#*9tDKy!TMH?tY!9vw%~y-)ilOw>9z z1rMVV0UewvZrPf-h5+}bM%GKd;FvVrU1yMuUN*bEUfJxW5gHrvA#C+}zcSW4MDreR zcCWX0cz7hJ6p9EfrnD?v92pss_5-4{o16pW>?4Q9g*ojA1oGkh8*bTI9W_=jXXkw* zW7(1W4ck3|H#w9%Ecte%k_DyXFAk0LJr%&hlMW&l8+-Dhrm#N$J_6UdU}8K%T!>e3 z!Q;p=shI>F7F6d77t#z;-VKksBdb_{(6Au^UPVpft0~P_t@?EWA18&75VWYNLWytv znjWrBnAm@s^}DN9*w1LxF#Kdq1F86NTzN5Bo z!k~oq%K9M;#_$%I-&?1b8d0D`EtT~OK=_!*q7MU2o6o3p1Rv{kQWqsWN(uSP0Kp2C zy7A7Yh>IRJf;2&>Y^ev|PSN)haHhDAGo5o)^QLHK{nxst+NYjgw&g83>le2CVCS1V zztJQeT2r+njAuuxsS(xov!cBOzTIN}Ql&beskGgG?;h8a4%G=SCSqEg)~TIN2}jRpIgcGhX7Gbm9u4EwGClLF(gF~TUY z*-;I_FO>o{w1ehK0SXx$7FL zM>5vX&6us2$#_+s!PNP##-*9NAx@on0nJhFc|Mq!yVPmwTG-A_@*#dO&CFHj{-g$L zBQa;yTBOeVfZ4=}*iS{R3YF)^g`ibUJ4j=-;TfcE*zg2xYQ$ic8cOQyLgRcg=!v<+=|)DkC!jjdbPmj<=f@xCO2Zo~6jVvpdl4-KYE zA*eM1kFv2Zjg{OMF2G;W@Z4h@kAE+>Kcjt&yTWgbA2%xTb*70&Pb=u$Ravg!4Hw~K zyfxDX(i|L#qZ2dD{`j&vBaQi71O04OxUTdDTyeY>Uke)PV!()&sSvvl2WT!>;jZL)zN1bm~iK;UHE6$z*?zIVy`0HfSw6VPWM$jUMRG~p>q9|&&T$jto% z&v=zg(g@n}1pWda!kOaknK^65)z+ETtNUj5%~dT~%ECff*i!bf$u=#{b}X5kbLWFY`0PG1Dp8*WO3}XW zS9WmPcMID$!TVWGWrtP!b57S`GW^`C>&OM#_xpmqVsEf_-JX=#d>;V>+I$BS_!SZH zholthiWsCFY{R3jDpC7XEyvNe-92GHJu(t(>IyWS0-XtrCY?hjSqNf2f>_mJCdj&> zkt;-wOQZOdy3gh+_C5XUz}WT$WPU4XgH4Pd*(pC*0N)uwfDUk0+6)P}U_HfxcmhD(L`N*%i4 z3Gs-h&40r~BMaDoe-lpPV}uD{hPwH@;_WTDBF$Y^4!f>3mbv*1X)<8f)AeY1}(~ zY|auZsEriVzGtmlHE{)-SFzrU=0JYbgoPSqIvC=8ux>^Ws$_`yd5jV*f&f3xCkf4T zBOXkQv%1Lx>2mQ|q6sEOd(a5j8=iEiHlfrGda&$}PAy&a2TLAIl>(Rc)D4fC^P1-6FALnHeo`0G50-C8gx3@(|G%~8 z3(ByhsTJ*;>=~?5LrGt4+rxZD=F}w9tD)o$c~yIr>(dUD! zAJRX~OW3VL+_y9@KZ3C`OrkC!1Fh^!+@vvN82sF}e0eC*0#mR~ZEMJ+!k;t;8xpZ* zHC7ZD9x#K9HH&(hw%>se;=9^O%W$J;9Bfi^Bz@5|*qnS*L&(jG=E4NIFItGGMXZ@% zQdli<(h@QbrkR1FHDp2AwvZNX#&;8QAB5(xz=`%rYfAl%Dzte0%hSUQS<|*4Q_ZdV zJU8t6y&yQ$oT|@r!7XZEh*>YB&Y}Oo`;GQ3t|%eQ&`IqTt}b`tyB$8@WJnho@!mT;?uz3r@V`D61T(IYVb`hlGmkLw zuOiw7{|ml!82qb3+$$VFAQ|oQE3#eU2SxxHa%BGqz&!+XqnYse2t>-#m4SfI)r~v~ zz7 z$^5h3iqJtLYuuY?8GFI?;Lq7kK zEuWtl=stO-v&}`r6qf`moegR-h=YNEi@46(K%I-Rek8nN?C6uvKG_%_LVxc#8^en} z7iy1#3JmhaaTiVnTo6MKLDo*9=73w~&2>)M0tx>RB&8H3TjC;Qkq!>DkTOeN)L-F2 z4Hyi@{~0er+Rj2+%n8{5sp^0$1)+O;PF$MleGJesP=$ z)r}-dW}LDaLT!?wqtdcPnQlz}D$P(n8;u;zMEV|(jVy>#WRpK|$;%jH^u>UrjzlOiS-(w0-ai4(L&R(`>-_vsqJ7V?ik^1(ZS4Qg(Pj!EoQ#5T{$<4oh{@VHL z-fQ0ZFGX|R)8>`Dg6o&AU5e#xisWsYeenAs;G{hWRB91L@SNvuD59^m4d)IW@T>VFmz0>XYw4BLu z)i7g-84DuDf>*O{=HJMVIqM?Mx`pznvoUIHiWyrX#+J8F|K+(Ko_pW8XW6lLRmbVF zRyn{}wIUP~3L-+miqV`N&RZ2fsCl#I2hDFb|G4re?sweL`mU(+Xw-P@o>rsNgYT%? z8mnxLRJJZv?z*QFs`VdL?uuB;rjO1URxCCWLBuRY5lhjl2X7v^aYW&47Ch17ol(oK z+a(c8H>zXGo;?yV7A;rqqPp2W;Q)p@IR~8#Nq{4Js%yEj;f;N-?fXULwurH8+B|z~ zrK)~mceJW?I%CC>G5u`RQaWG$o~3fRsA7KKVtJ&pC0wz6u_x@@HFNZ?vo7Y`9C2=5 z&dj-Px@MYlFJv!NgbSOZneN5>NaoI4`|eakcAto3o>!Y7)H74_FHdocMTFjdc@vB;NBLpQz%k-|VKRf4m&rrB*bST;9 zN@C8Yh_fl|-WPT5f8TiE?t@?2qt1g%#zUA+dCpI0%UUTZyXm>%x%tG6Cl(Gb9*mZ> z#!B`^O7{Nv;!g(O8C)vqLN%TGHBOVKpX&ZZ&l&Sp1>Uw7^)MBtR6XphUoti@QOea_ zGrMLVi!w3LZ-4z1kHP=#S{AxFK;q4xZf|!T-y!@ju6E1u-Fn%8{Z<;evVQv~E|77K zn-EAnoDlgJfCxIcjr0SABbwfuz?t2297{)yDMD%j?;7a`#>P3|$$4(=HBvgx++Nl->4BG43))b@zS63}y4Yn7`u;Pbgob)Ir1(XAq4$v+U#emwgH==pyd}R1ioVrnf`~0IpkXY=4 zLgK7L^2E(EB!2*b1d<1T`#8palBa_wlD8x!21$OTUmHjH1wi>6p?s+gKp^yD2Q-2- zjW^kndJ3sy=dn1~Lt6qg!Dw@4yR!5W-X=By+sEgQ=#5XxG)Vt{McM#OOBLy7=|6bn zWTdfU;n=O*+ro6wtnbyH`JC@S(pdAK4Zme2JzrePqiTPOT=4z_K_K!jF4W0RQ?T^s z`2L?MA+gI4vDS0eEG$=67#3s}El8^#G>1;lBrwt<(visbB4NCBCw+;0-v!({4Xc6lHp1(OtSt2?80Xjh5IPcl@E1t*-zXs+B}{Sgt(&Bd zbB6h%sHG_^G_h8tZ^tM)?+dDtdJ0IiD2@RqYl|~oTP4+=!Ch> zn4AEznbCxzgd;(TiYE<;AvV&);!D@bp$^9+>7wx4a5hX5Obtwsl=UhRb^YHdA;~zg z0)TnUFJAfDm6*X9G2rwxYABoMBZi8Yp*CWujT-9Ty7+@jZ(fSI4@BGtZs$kcU3bbO z?&C4{>4^Ju)P3eX!@@LS)!a1PFx<4+YfGH7furd_ALRuT^Df6c*ewRQp_=ceFgd>VJS9O3baJJf|uOqV}kD%FD zXO_ML4+;+>mw^9e193t?`fPE_+R>3wrsu%+cWI8Y(ju1ij4BG$Wk^4!xc^8FEg9)Q zkwcq-oRMg`vbeNZVzQmqTgsLo+o4jB8o@L!q|*d|?^l@E+!R1b6(mM@Qokf0g&!-V z0~K{id%++=IVe5^(%%8@C-@6gU|$D+pT{*dgX^*vO>2n@2z+DbZ0}2ZR;*c9yJxz? zMO}BcEm=>l6qe3~7J3#PZ=Q=5woKcX3oCCn-Dp~{-ztk1cH!MpICm*xsa`3mT&mi! z_}m>swCYr}BH9!e_U2EzwJBEER_FgXtrn0@yF*Dv!)NPq>BVc7c-Vbj3sl= zE$VOS!=*&-ujX=@#cO$7M*cLvVlSUBkMD6SPHdIman58+>u2@JoWc2X3+KY6E$N<0_%E2x1m3O z-yVU;KW&fb(GU7GJ(5;WCP*lbJz~aSp&Cy5=*KjNXKFjt@>Lv0M@I>40s(hi>`kI> z`@~ZW7aU<)TEyr9n~ah$kzthN5weTqe1uIP+hj_`jbJZHrBUGyffkN@2;dFo8p$?l#BJwCYhx)d!1bMFvT?b!CJ z3bgmSCbE#E_HnVH_Hj4dy8U(gt7NOMH!!Yl#S`|_H$a=PrA9POI8$G1n*b#as_HWX zq}h92U!AP8Lyvi6bX@v5I$NP!|CmAyNd+h*!jY|Um17hQT;QT8jRZ|-Xn6NQ&kw>t z5@ymyCcR3|4LEfM>Az6I?6_c_=vb8$l+9>dT&5`VPs!9BUWi4rQ){e#U)M~e3Q#$5 zgr#7s0*0;DX&rdkFi5{dQU}mf;7tWrSvh;&)uEZ8ZwyZzxm#Eq7V=jQ@?4hldeOC_ zxwG>fQAgd>(GLucWlO1|P7|?gUbdFSteYZM2n`qOBQ<-Ltb0F(P_1pIjr4jT!CH`_ zmaU6J?^zBek}hPw)e~#l8)@2mt2feg0Epst_HEDY%EcS)lPK0-Lhpi_eTr`;>0xT#4!YeX=kY74m{(8k5wXfBN8;;y@ zykBwbrS{n?B=9N#!(C)v({own>*`ew)Tt|o38fLC^wlf#z!umKug{d*LM$NdFbD>xDI>XFV`H5cGN{^42xR zt;TwoojNHs`A2+_4Oqu)hhhCsy_zZyGGhB+pC4#oJl;nQBs>9yAA9!I zXJ?*`*{dV=>UlA?sV%apEo$E#Htv3~aR~yf3M2G~2~g6JL~0|YvLu6-PCo}-L?q&d zN6ignmR6jhBELyKg&|D~X`QMrDXOMXrWG}e-Fy^fWp1blUI)|Z042maP+CnPn;rr` zK_pBH!Gs>qAY_^wAFLD&nAG^{z^OL-r=s`=-;<<6QqTk;0f;%}`J&z(hn#ey670*{ z(ksWl+!|Moh0x~-fM?kHR~(ngfrm>T7y=(c2{52+Ao{UkFqcnBNXALMa7eY3l;a?7 zmDsG;;@lnQewT59XNXQEN5?6_$i+d4loBMc@T6H!8-Q%Uwm=I+7U;ZB`WyOA+V&fi zQrVq}iLCY80A1F&Oe^H4$N;%f7MH4=deeQwy=19dL0s2N*Q|Jb_}cK2wfb&W-u0$y zP2XysHsEXpr!ZBdhB{xhWUEF2HNWLOd)0ET^ZFClo`~hvMsjNx@|SYA zEIzv8s+>O(tJ)r^+P?VJsO!*d*Gf)dEN4?BXVd&w7OECaOF3;&HO<=!C!_YBm9tjN z*DP7;SFHPP1%LAFJI}sv?FN3aHrzKMQ8;(YXDngZR`Xe)3e9-8xuHX^{b`~5P@C>& zMkB&MYtwaTO+VXjK=|i+U5DKuwId-o^h5BZ4strlAz>X8ic3UqO8*-X#Xi z4OodAOq7-kq|-QDhrQD05|R+q(C1+}>0_jV{-;jCrwJU(WF8QKvKcPW+)tH(vXPm{ zPPR6I&%RE>unjP=-RC-izRb&Il{Y7DOvK7|Map)?(Ob#Q!W)Ik@!#);;f4V5_rY-L zMhp%a+@JD%{-%RYN_5?L{Mj^=Mk;C2uczajW7r6QyZ; zF|nMk(m<9Y;csyAWVFo~pv$nFf%E-^Cg>^bEP`Vz`c$hknc3*#R@fmVPT5h9&?}WB z+v3&e^9>Doy>If;|ASaY${kSZ^Usu&oIj#MY1{pcvX`3Y53O=~oq3_-K6#&zqf91B zE!)=h-a08-V$`2RLX0^8D^Kzk6X{5OtsDeO>THRpn#xJ8-sGu4lB7_{vFCXr7?iU< zK_X%ks9TwitWnen*vohnFYDOgrfz0(iC5}{a$8)Y%4S-M-nyhiwmIq&Qt!erSc~Vr z9JMw~buJsMVMD>(*_)5wcsyLPWhJBX^+OA~e|I#R(Hu5514Wi@#dp?I>sDNXKROJ6 zsVffmtzb2RZnNShD{ip*^vbPz62yROGWeKMcfUTq9&H{YTaPBJN4=bJYG72^f7lIY zrL~3;c7Zy;R%9PdKlPzyPw#7OaM*%O4o-rK#P*pOmKktM-!y@1!YQ{(`6XEe>Lls^ z1}I$agN}j998s4`MsnC}qe5MY1z<+}ME3e>yD2y6Mg&Tc7PB5lX{Jr{{v~6}ialrM z%1mhP#6oM-zAbFrrp!UA|AUkSoA)F(l!#20%;b>tQKCYnf29ydrQnZ?&wm4bA?M%H z2O=df|L-0?`iWN1wJevoR+-iDsPF(VGU z5;G&I-7GA@N zT*wyUXAY?GlR3fiMEaaiRw6$4b6S#(mgJ?BlNZWX^RaUBCks$c26mJrC+bWo#~I33 z(@z!#D--4Ch6)q$xxs2RK3JoMW)e4PQuOu{3KfaGMJf94MJh6(n!U8=rF~+Kn1L}( z%uA3#d#3kc{BkjV#p`NWkbqc{(%Z$Ml9c#F?*)khV$ZtosjW-q%YAS)O_qjoA;SMU z4mHYxZWY$xW;K-b2Z;{f@Px_+iN4(MsBNEgg>$B+T+sMevZCX0SsICH)|w7xoN3qK1-w@TeLd zJg$b4zS^6r4@pgB@TB^E@RS-#`fBfO2gXWCc{-Uw4T%LRRMykwYR>q4sS2J|Qx2X} zLrFhW1p_zEw+hwXovaR3<3OzxV^$HWQXx-n`hr>aSQ4Td3T;wz$1klXb~mvov}y2y znl9;oK^c!HQ>r1cSY2(ZKUu?OTMbH&Q!!A&z7G&4D_uvyM)WKdgl=Ppg z9PCTJsUfwm)s|wceCjv4(mvR)z9oIN29vd-GgRwMtW2@wGLQG|YD)H%cysmyi5F$h z%pSG0$-3ZI)YxD^4T+_LK{cH8XZ8(VNxrF}ME&D^m4I9ysvR6xQziXST_Qz8$UOMf z+_^Omq$;j2War(P3p0Ma7;Z{K>{pX&tU(EpT(P3}SZ>Aj#JDqgUvQ$u26?L*SLVWnVP zzp186`bnr5dHvUde@IP(f26`o)OZW4@s^YtZw+ltS7Y4Byr$+(`fAS)ek&QLhQw+W zs_OsFZB5h%Z8bdNJ7k_Y@K)XTNF;z~ za>pOkPqk`)Ot!MQ(AtlC`@z=~m|&9Y)$(8G|A@zo-Wg1`>CezaDMiS52i(Q|O&@*tTfi|hTz)%-~3qRrJ!nisg1K-w9wxI@;gQq=m)VCr4* z^a)nCO|i&>0}qmiGqD-_2EBaJ?MUdZrDj$b;x-qVPotxk07QPoBIE8IZYSWNQ88~9 z&zpK9FBJ+nWSAdQm}m&++FU(MtDmm@u^WcWAe!2mxRj6-3LB}C3=p-4^afF2D&Pd4 z-sU=g*@wPhmkckC!)jNYfloHeb&AOs+5HXW)`HqWbkl1ChrbRUTHN;(db&5b?po&h z4x<{f`yRcCUVsTCZ^by_91np>hnR zC+!RrnThFu0$$dPkoHhKRqTu#;&qyd9VejGnnt0OU2TaEN2*3E(_{^}yCG}*5z3MX z2SMW|8*~M0jFf{Avo%HHALSt7KT^WC;UqL@rlu4Dv78xKCru3eM6If3q}azx-uT#< z^6yblpczm}f(Ao1)$?CkxDw53gaO#$BAq0bdu&5<6n?Mjb6W~HkPxR%Qj}cPX#GkV33H^kf^)YoyQpff;Gs4 zzy|3jBr7T=2$YJr*^?q2OKVOJl2MYWQ77S1JAs7K=!S{YXRu`|Yv`-x(j-%8?p16t zv3FRWWZPOoN7{w^JaoyKtqY|ADNCI4;CO+?Rw4-w)9r$|wHQ4kmB5h=@oSrsl{!m6 z8f+EuDOErhr(p1Mc!c$d7e*UNi>!BOV)Mg#|6w^~f=;|Xrr3(TVt(&p!;*a;uG=}b zV=CElXxddl9qM|s{u4FxXhn|O!{VQ{~X z0NXhdpVA#fq`TCRdW4azPukox+crEiu+gHBx0Y<91SordEKXb};zg>H!9GBVq0S}BPOJ)rb6^*B?3rkSB`H@PHwhekUt zBP&Rk9SKjIc-X|)m=fktVOce~C#41V-)Yu#pm>@!g~c~(Zq&pI>m!A9Wwo$%`q)ZA zA-mgRy8=l~RS54|vTk3=cFh+p4BRS+W*-b&53=clOKQX?V+kbZQ5Ch6 zn#-pDlTWJCKQDcqC)~eZ8$Tw<*yBeC8V0ApH3m#t- zx@lpW&WZ%KEPwh%DUR6o#Jt_9=Q@v>H;y5xH`=;_=1I# zdcYBfn^c@)7cX(`a#ApHGiJr$5pF3Z%1>KQ!W|o)kUr)9jS)-HgqQ@Ijis2YX24Q3 z&RCO6v64%Q`+dblQ|T{G`45S)|8Y1hQ$@t zQkqHFu$2efb{wZG`!}^N@XeRb#MiS$6M=x%Wrh`+u(a zYs0&SzqY(06e?=TkFFqc1ABHW%M5ZVDH<7kXC>+T1M)d}}Iv2Y`OYt_S~_`=FJ3*P%Pu#QoG- zdaz#m)24lg8nmF-Heu|TDs68tC@Bcbpdc(l4zd=LM%sdqw3!@+sTui3d*+iE@dN5; z=WQGrW%wSB!qTVzzferz6o3PTeX8g7b@9>su6Hgh_RVQuJ&&taJ<*aak%BF^E=2OX zrmd@jGmhlQCnQJys^acYP~C5Ty_+jI$}^1na?TE69Rrb|=X%ah7QlJt5 z6)t3AW@4^#?knI!=F21Ys+hegVsBcw6t(XN8+R}YAbnpv4+y_YUqG8U&Rfu_ue$9k z+QHB8QYqw)_~{TQprxZzll_IXP{lx6cFh%+ziJt)W>8o)h6R+1lsl-`z7BZO6dcT6 z)|cO*27OB{_cqCe}2XVJ^Z-3?8f;*2z+RufJ z=M?&j)aup^0d*&%Zcd>&uV@~oS%{8DRg@>4DnvSpCOJSvw|$-k=Crr-62mL$LmH@A zYYL&rJ$(ERfRqqt#32a`Qq3O#DPcHnU7gT6CRh=khE8BWz{G-(#NwLITe8$H7ZlI+%w3!_&2%l>99KOvo^L!JvsFZF z74v(RY@6xxnYq3>^MjvvEZOQ)a^Ec|p6_5f#Yu)lqBpCpNBZ z-*4F>`g;5RgBm{lCV2o=No7ydGFG3<0Af?%Cw9iok+UNN^sI80Fy5z-`&SqvaT($$ za1)S9lL2t>7&v5b<2O}I1Ah9U7Fdjt1$HF^ztjS9+DjKiE?g`t<-}NB<`vzqNz;}8_@OXUZL@% z(vC1cZy(LT#x z*I(1m3GW+AVEP@Zy*Bs1Fzx8C+uB|Htgbyr`^tWV-p$dqml)o48W5IEUEMur+K(Ua zJk6Sbo3v)>Jhjqvy7SSqojqqdJJ@9&{4|f-H>@AVb_DIs*7n5HhaLb~iTpj!>#c$SEX;RGg$5a)?G`YOt_>2t+!BQyGaS zpVS0L*5cZ=MC({0+E%I{r<9!M$oZ6<JG2O+`7{$UsOoGg-ki zZ0Xv`${15*4FpB9T2)UeEXpEgzfGjvY}PBE6-$T^jtArnn2GGWteP#vJ2qDsM~$2G zz%LENkKb??LAJ)jY>r6(Csl`LoMPGMr&OX&^j#dgBpY!w06u)o$FzPKtqWriLn9Y2 z!d!^)>0W67x5;6Tk$&HZW+S_}EDNmHh%ZZCtCnp{*y+db9Sy)ZnzT$`-y-K{(1@9dl>UxV)0u{>XTP8T8*(iwb($B zEg-c~IEz`ERYe&}zW8Au!h02V=6bkq`#eOlCMHe)z^BaQhxYaOndYg8UQ{`|B>+ zJCj=-CdE3l{90J#l!z;dA7!aykR(f#)3VfeYK?4j61 z2}~Oxm2ciM)dd?h-x-@avRqU$)dl)~-y!}JtwC45;wV~WeoejN?`UH_wEOSt@O?Fl z*Hye)59yGu;;o!D@>camUB=tmRSw?IE17qv>Qj1K%`xe!SF)U|TJp=QnE$cK@oiYl zoY#l5HbqP|pX%^!HP01KNPZ-EaZmsYdD(Ck^vp0Y3_|%cd`3w{!mRDhKba;6IUf z&&4&kSrxXT3JrSLQ~<=HP2o+u!+TFf3m-+qN@2;XgW>wU(ZYT7rj*_owKh$4ew<(U zt+B9>^I>N0w1DDZd{#9_d*+QNUV9>%+cIrlw&aFOnj)5_6)Wt}E?Fy6>GfT2^(Xt(w^BPa(?Ltm0K5EqLn-6j4Ng3H?Q2da`V|6&n{eEDr*fFw1&%CSL)r% z#kC8yvHG@1ecO+>{-pJt)}QQtXZIa#wEj5tbK#sFwp3v`x9nE!`vr$Sad0IqxbvIU zaNmHc-7DrycJ_lc=g6{eGP*UCtw#h-#L2* z!EOZe3MoKixNWgjF_Q6dX~pZU3%gMbSG4qKSSY&ds*bs~ zMO@p$Ek~lRN5VqMvS5n|IT0ZzoaW9^Sy#hQajtg^d>Wv}o3cl*N?TO);AF@HYR*<-rWh^}-M_b5wW z?ZGjhuJkS3hlBTa*N-pX5$=fLeWxQWJ@+VTP0Q)aSkik|4%Uv3Tsw08__gEn`3tqt zoNZGl(9-y%d;Hqt^G%CI(cHaL-5;3p=Q5T|H4FQgy{qDgk#;cSCQzm3+GK;CSQ4tR zUm3H)hLZT%>CMI)jq{UBJG!HVC#UTn*ox*(F4-Cv?aS7pn6*4&EuXKCRkTDZTA~#@ zVikKM6??JbD-JJN8O7U_G`U;0WUM25xsDY`UdH>>tsIwh*gl&#l+%JFM zR)b#?BvQFHnXz=qSbI0CG?rBx$*Nr_h-Ph_I<}IP_wB&-iE9({4Y7)yk&2zsineI} z?r7GYsbe2os+Wz~%UMNG4N%;B7QIzJ)d2xLIMtQd8VI}9?2;&s|;xbWJ&{ud{SLMMuR zZ32$M96}Y8QMa{T?1<#a97R=6wM~S@t1i& z%)7<^(79*{XYH9btYnnU8=@Jt3%$5+`Om95r2dycF(5t9@8(~?vG6qf8PiVfAD3^_ z{<&_a_Lg=xzwXu?u|^~eUi&_r_4;EX?EI(#ENGG%liYREvM;-lk&t}Q@i5(v3<)s4 zs1F(5(ta;4EPIew-^jbC;it3IBjWWx5;q<{I);(cGf=OBohtl<7L+V^v_Q-?iDpP& zOxt6a7-vY`&q%5|lae*b5zsKEWefO;fC;4}Xgg(WZE*paB3hBIBX^j_^(>NtO3UHQ zj@iNm;eAunB5+;l+;i{Snpa@JFW0$TShQSJy_{bH>x0YHyC_^(`KiNX%b=ZRGwp%y zu&L>nHgMj}pQ*2(1!&U!k+t2T{nMQNy6+ni_=&FFXnI#LAo#8Ye7OOtA^!(b)d^?L zz?RQbvcc;WNBX>8>1D)9Pf`mXBWH-5PB^ehtSEiL(s#g31iixX{({o4k|UBsMtfvE z{qVq!7UdT>Z9YGYRl8NqD*>q>vjT@2#IL0W6sDRn+Qc`?`rtU3Hl9NXciL0ana)`%gHc1%C&W5>&qKY7daN}o+ zhs60?4>;8qS_0un76xgcE%lC~*Vs@DNXUZZDfx=c8=&ZXFaEE9^zrRyQG_PD9@l%FV6gjgg&*w{WLrGEgONP-NB2|^kv#Kb8j>EJ3_ zwKVu76j0RoHdAN|9NC#J3)3A`BtI>b2)28J$C*u2=@8{4k%nS4WjlS=qQSDgOSKG& zpF=%8az!z9N`e7JE;K@+F>;YwdpWha>)l8X}v%td4A6m#=2rM32c;?NraKX+< z)~+eg$pT+Kn+^JqFP~Su#qII?;``Sqb~Qub_sxN4gf}nD_bgP-f9bUh`m}E~!@+0H zg2se5cV>;e)mol!=jV@r>x923fbE38YBch-;X?3&@E67w&)llK6}VOV!zXT^xl?&3 zaHsa&C&Jr%BF%t-1gm+SJnvd~=9c!&$yJWRw+rr6zFV@!!mFn=`MiGFmODEVv29w_ z;^nT+G+jNbg;m$eSzE*m@)tZB;#XUE-aQYt5Z)~`4&Lo-s*!uuXyB{nP;+<-+nBf5 zwnlHOIVFIel{XulJ9KUQ8q6Z#{jNQG_UODhoKqjMH>~Oq1G+W?7-Gh|YM?hGPTgh? z&5W;_=*^68s}>4bIlXzhIif3Ev(f7T{t=!pn->?hEov8bzBatd(fh5OTYc|1*I4-e zIZY*hlK+Gw_x^F-#BcqCgLALIz?;LxP4`eo^Ja%%a zJiMzb(tH$}Fg#dsSovdLH&!#3&tSELe>XFGRRkLR7nZ*$A;ikpCCVwo 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/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 0000000..aef42aa --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 0000000..e6aa344 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py b/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py new file mode 100644 index 0000000..2a9cad4 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 0000000..422d851 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..946851b6ad259c340d8d933d659f0de73d8a7e6b GIT binary patch literal 3449 zcmahMTWk~A^^QGb&-f8PVml!ZFocjeftZI_78c4Ph35iW5h`^pR-=jMIvF#b@!lEd zRY#2wl|r=@;iC;w)sMD6R8VO@`$_j9Rqc;Wps{8_W!0|K{WBXRTKdy-#~vr^cH863 zz31F}?m6e)dmcA`3I=@$;GGY@KlMIff2D*2olRupZ3dxLBqNzoQKr!|83t&V>MFQ1 zZibGzRkpxoxPm9+DR?v90-xavLPoIXSk+hXXZ(P3vPTURf|;O=d)1CYC=;@AUJVx_ znFxcXkSzR)$wXZUGx&ufM$sp^%@ zVHoY$LQY^a#gZThApzR>p|PS$W0^Rm%wUZQHLk)sPmbsdU_)x&c{57*UVN zxV{HBf?1h44x{s~l)Gh#M0a%s8zt4WSWPP6%dmT16e%i-mQNH5x?EBz9uUP3N|M@~ zaT_MFLZT>Xnr_-s3{m_I+MxPhOX+F7fYUObA<}}B{w~q;IBOc|9Gt~eNs)1S3^p>8 zR+Y(gao(KPwL@bE4yFyo#QTa;_PR8MjdW2drbR_FF@a-G!=}?BkcugaW5szA0X=q; z0L1V@^CR@!7rc3%&>OaAtN<)(9lzxv*enq(+jLXlLWqTL0KSbJH18k=j;xHv(fh*) zEiz>$52Nj1_%1-mm6@NTU$`7MzVR)*WhUqP8MDeT=)(~f&708rx-OGhFzV`(O z-2XJ_+1yAU0RNm)^+`z;bvpzMizT`a-a@a~@)QZqDRWkARw9~cWQkIwagen=!U~ok z2H+ziy;@5s&S&*PQBiT02jLD-AE$o1@kiL*Dl%Ialy7DWhmrOs=TK$j$aIRk> zbPaa4=v(xc{ds!DZ9tCypFOzCzD-NM#R`8u-X<1EnSH=Hdsz&~9{Ssqq`73zVn9G( zRo8#6Ei+|T*sZLn$e4K#}!x!=@BZD`D-_=S=$3D8XXNj!rIBs)c$N-A2?oW@BzpC?r) zFk?QOb=cIClQ@}$8Ufir%0co=PD?X%iLB3RsxHZNT$7U}jV4MUs2nF}rfeY#JDVEm zvaAlGvL-M(OvjRg#)4~aa-sW_Y2pF|HL#VmW)h;aw73MMlBtVXU4xumxSaA3dPigz zZRpLA-Lx5`4SfuxqL#m@3F?Vq`QIfnCRiR-Q=5T5RPm69?fPi>x1?*Uvt=lj#iC?R z8`v~xN}(>$0y}e)4yv3s^eBxB;NDB<<#rV9Uylq|Bg2nVCm#mZQkT{umzOSl;f*}y zJ8t`L`D=l6EfBta{?_@G{HlIOUrP+F1%_X8Zoyagp-AV_`M(LBKk2Itrq>4#R|gOO zdGJUzuygs`%Jo{PXFW9fC^Y&soLKeW@mKoZ_#OW^eCla@$4{@-Mh>r!oUD$V{KM7C z$jP;lE0x&LD>q8)TDeyDprO%9c%aTkf(L5h-u3W6H9Sy@?W%3-r+>XWYpD~pUFq8P zp?U~KcE3b?B>G}IiVfX+YklF<-L+^4(U9}jenC%qrP;RpN^SNHf{_LH8s0RJ?}ji>yd z4tgoRH+4Gh{VY!TKkMdB@A9U4NeX0GUh1+C9G1WJG{gp>mCEv%^F^2;v_=wIkq9k1 zgl0rSOPkdTua~jb>t(EDDylKol-KZh+l_Ki3mb1d>PwEd*-t;qOGm(o?AM^>g{PLP z!ZS>m!sbOgmI(bTZT%K1b2dQO7g1^DpSc6LjKBbnr_w{0xmgLjzy4oZq$Nt#=?_?{e3=&{Gw9?!LJu z>|XM`@F16eW%pyI>y?XPI_e0T4L5Ri*KLyLn7&#xQRzxmqa$@UP|vxJ<Rw9m4kb{^ xhl25yiCdTIeo6&U?~ZzqVjU>fT@O(#jKZ;cgkn+T@l||%Rj&VKC(!m8{TmK9Lt6j< literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9829552975ee04716a10d843bf8b19315595fdac GIT binary patch literal 21222 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9bdbe5a1ae2ca583ca1cc23ea6a8185f361c8d4e GIT binary patch literal 21436 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ec8e50137727b717925e20e8ef55551975006a7 GIT binary patch literal 5487 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 PpPrXE&i9BQwb%R)#DC32 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c10645657264c55bd10aa2aca060691546dd521 GIT binary patch literal 32098 zcmb`wdsJN4nJ0Qqy`NM8#rst}1e7E|ZzNd{OF}}jBote+71LIiOH}a^P~@CKm`V|= z-Ck{Q;}&W=Ei_45c;eN@6K9NPGGk>XJ&`g=w|i#Rbd?Jkd_r!NJ6bc-Yu!JPa9_vn zdvEUV+o#Ss1(ZxW-CJUxefI0@=eNJt{_4Lvoi+~cnzrEew z?`U`QJKLT8S?yWENt#8 z>@R9BVqr^PaeqmB2@6~MO8d*&%lgaP%h|iFucF`E?(MH^uk5dCuj;REuV(S~zMB3G z?Hl@Q+iTgoqpz;NzP+C3bX=$`7kk%)*~5v^nSw*%0D`e5bw$89FV& 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 Tuple[str, Optional[str]]: + m = re.match(r"^(.+)(\[[^\]]+\])$", path) + extras = None + if m: + path_no_extras = m.group(1) + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras: Optional[str]) -> Set[str]: + if not extras: + return set() + return get_requirement("placeholder" + extras.lower()).extras + + +def _set_requirement_extras(req: Requirement, new_extras: Set[str]) -> Requirement: + """ + Returns a new requirement based on the given one, with the supplied extras. If the + given requirement already has extras those are replaced (or dropped if no new extras + are given). + """ + match: Optional[re.Match[str]] = re.fullmatch( + # see https://peps.python.org/pep-0508/#complete-grammar + r"([\w\t .-]+)(\[[^\]]*\])?(.*)", + str(req), + flags=re.ASCII, + ) + # ireq.req is a valid requirement so the regex should always match + assert ( + match is not None + ), f"regex match on requirement {req} failed, this should never happen" + pre: Optional[str] = match.group(1) + post: Optional[str] = match.group(3) + assert ( + pre is not None and post is not None + ), f"regex group selection for requirement {req} failed, this should never happen" + extras: str = "[%s]" % ",".join(sorted(new_extras)) if new_extras else "" + return get_requirement(f"{pre}{extras}{post}") + + +def parse_editable(editable_req: str) -> Tuple[Optional[str], str, Set[str]]: + """Parses an editable requirement into: + - a requirement name + - an URL + - extras + - editable options + Accepted requirements: + svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + .[some_extra] + """ + + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith("file:"): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + get_requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f"{version_control}:"): + url = f"{version_control}+{url}" + break + + link = Link(url) + + if not link.is_vcs: + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f"{editable_req} is not a valid editable requirement. " + f"It should either be a path to a local project or a VCS URL " + f"(beginning with {backends})." + ) + + package_name = link.egg_fragment + if not package_name: + raise InstallationError( + f"Could not detect requirement name for '{editable_req}', " + "please specify one with #egg=your_package_name" + ) + return package_name, url, set() + + +def check_first_requirement_in_file(filename: str) -> None: + """Check if file is parsable as a requirements file. + + This is heavily based on ``pkg_resources.parse_requirements``, but + simplified to just check the first meaningful line. + + :raises InvalidRequirement: If the first meaningful line cannot be parsed + as an requirement. + """ + with open(filename, encoding="utf-8", errors="ignore") as f: + # Create a steppable iterator, so we can handle \-continuations. + lines = ( + line + for line in (line.strip() for line in f) + if line and not line.startswith("#") # Skip blank lines/comments. + ) + + for line in lines: + # Drop comments -- a hash without a space may be in a URL. + if " #" in line: + line = line[: line.find(" #")] + # If there is a line continuation, drop it, and append the next line. + if line.endswith("\\"): + line = line[:-2].strip() + next(lines, "") + get_requirement(line) + return + + +def deduce_helpful_msg(req: str) -> str: + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + if not os.path.exists(req): + return f" File '{req}' does not exist." + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + check_first_requirement_in_file(req) + except InvalidRequirement: + logger.debug("Cannot parse '%s' as requirements file", req) + else: + msg += ( + f"The argument you provided " + f"({req}) appears to be a" + f" requirements file. If that is the" + f" case, use the '-r' flag to install" + f" the packages specified within it." + ) + return msg + + +@dataclass(frozen=True) +class RequirementParts: + requirement: Optional[Requirement] + link: Optional[Link] + markers: Optional[Marker] + extras: Set[str] + + +def parse_req_from_editable(editable_req: str) -> RequirementParts: + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req: Optional[Requirement] = get_requirement(name) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {name!r}: {exc}") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req: str, + comes_from: Optional[Union[InstallRequirement, str]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + user_supplied: bool = False, + permit_editable_wheels: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + permit_editable_wheels=permit_editable_wheels, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + extras=parts.extras, + ) + + +def _looks_like_path(name: str) -> bool: + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path: str, name: str) -> Optional[str]: + """ + First, it checks whether a provided path is an installable directory. If it + is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + # TODO: The is_installable_dir test here might not be necessary + # now that it is done in load_pyproject_toml too. + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split("@", 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + "Requirement %r looks like a filename, but the file does not exist", + name, + ) + return path_to_url(path) + + +def parse_req_from_line(name: str, line_source: Optional[str]) -> RequirementParts: + if is_url(name): + marker_sep = "; " + else: + marker_sep = ";" + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == "file" and re.search(r"\.\./", link.url): + link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text: str) -> str: + if not line_source: + return text + return f"{text} (from {line_source})" + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + return get_requirement(req_as_string) + except InvalidRequirement as exc: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif "=" in req_as_string and not any( + op in req_as_string for op in operators + ): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = "" + msg = with_source(f"Invalid requirement: {req_as_string!r}: {exc}") + if add_msg: + msg += f"\nHint: {add_msg}" + raise InstallationError(msg) + + if req_as_string is not None: + req: Optional[Requirement] = _parse_req_string(req_as_string) + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name: str, + comes_from: Optional[Union[str, InstallRequirement]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, + comes_from, + link=parts.link, + markers=parts.markers, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string: str, + comes_from: Optional[InstallRequirement] = None, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + try: + req = get_requirement(req_string) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {req_string!r}: {exc}") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if ( + req.url + and comes_from + and comes_from.link + and comes_from.link.netloc in domains_not_allowed + ): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + f"{comes_from.name} depends on {req} " + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + use_pep517=use_pep517, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req: ParsedRequirement, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + config_settings=config_settings, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + global_options=( + parsed_req.options.get("global_options", []) + if parsed_req.options + else [] + ), + hash_options=( + parsed_req.options.get("hashes", {}) if parsed_req.options else {} + ), + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + config_settings=config_settings, + ) + return req + + +def install_req_from_link_and_ireq( + link: Link, ireq: InstallRequirement +) -> InstallRequirement: + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + ) + + +def install_req_drop_extras(ireq: InstallRequirement) -> InstallRequirement: + """ + Creates a new InstallationRequirement using the given template but without + any extras. Sets the original requirement as the new one's parent + (comes_from). + """ + return InstallRequirement( + req=( + _set_requirement_extras(ireq.req, set()) if ireq.req is not None else None + ), + comes_from=ireq, + editable=ireq.editable, + link=ireq.link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + constraint=ireq.constraint, + extras=[], + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + permit_editable_wheels=ireq.permit_editable_wheels, + ) + + +def install_req_extend_extras( + ireq: InstallRequirement, + extras: Collection[str], +) -> InstallRequirement: + """ + Returns a copy of an installation requirement with some additional extras. + Makes a shallow copy of the ireq object. + """ + result = copy.copy(ireq) + result.extras = {*ireq.extras, *extras} + result.req = ( + _set_requirement_extras(ireq.req, result.extras) + if ireq.req is not None + else None + ) + return result diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 0000000..53ad867 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,551 @@ +""" +Requirements file parsing +""" + +import logging +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Generator, + Iterable, + List, + NoReturn, + Optional, + Tuple, +) + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +from pip._internal.models.search_scope import SearchScope +from pip._internal.utils.encoding import auto_decode + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + from pip._internal.network.session import PipSession + +__all__ = ["parse_requirements"] + +ReqFileLines = Iterable[Tuple[int, str]] + +LineParser = Callable[[str], Tuple[str, Values]] + +SCHEME_RE = re.compile(r"^(http|https|file):", re.I) +COMMENT_RE = re.compile(r"(^|\s+)#.*$") + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r"(?P\$\{(?P[A-Z0-9_]+)\})") + +SUPPORTED_OPTIONS: List[Callable[..., optparse.Option]] = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.global_options, + cmdoptions.hash, + cmdoptions.config_settings, +] + +SUPPORTED_OPTIONS_EDITABLE_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.config_settings, +] + + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] +SUPPORTED_OPTIONS_EDITABLE_REQ_DEST = [ + str(o().dest) for o in SUPPORTED_OPTIONS_EDITABLE_REQ +] + +logger = logging.getLogger(__name__) + + +class ParsedRequirement: + def __init__( + self, + requirement: str, + is_editable: bool, + comes_from: str, + constraint: bool, + options: Optional[Dict[str, Any]] = None, + line_source: Optional[str] = None, + ) -> None: + self.requirement = requirement + self.is_editable = is_editable + self.comes_from = comes_from + self.options = options + self.constraint = constraint + self.line_source = line_source + + +class ParsedLine: + def __init__( + self, + filename: str, + lineno: int, + args: str, + opts: Values, + constraint: bool, + ) -> None: + self.filename = filename + self.lineno = lineno + self.opts = opts + self.constraint = constraint + + if args: + self.is_requirement = True + self.is_editable = False + self.requirement = args + elif opts.editables: + self.is_requirement = True + self.is_editable = True + # We don't support multiple -e on one line + self.requirement = opts.editables[0] + else: + self.is_requirement = False + + +def parse_requirements( + filename: str, + session: "PipSession", + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + constraint: bool = False, +) -> Generator[ParsedRequirement, None, None]: + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, options=options, finder=finder, session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content: str) -> ReqFileLines: + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, +) -> ParsedRequirement: + # preserve for the nested code path + line_comes_from = "{} {} (line {})".format( + "-c" if line.constraint else "-r", + line.filename, + line.lineno, + ) + + assert line.is_requirement + + # get the options that apply to requirements + if line.is_editable: + supported_dest = SUPPORTED_OPTIONS_EDITABLE_REQ_DEST + else: + supported_dest = SUPPORTED_OPTIONS_REQ_DEST + req_options = {} + for dest in supported_dest: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f"line {line.lineno} of {line.filename}" + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts: Values, + filename: str, + lineno: int, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + session: Optional["PipSession"] = None, +) -> None: + if opts.hashes: + logger.warning( + "%s line %s has --hash but no requirement, and will be ignored.", + filename, + lineno, + ) + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + no_index = finder.search_scope.no_index + if opts.no_index is True: + no_index = True + index_urls = [] + if opts.index_url and not no_index: + index_urls = [opts.index_url] + if opts.extra_index_urls and not no_index: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + no_index=no_index, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f"line {lineno} of {filename}" + session.add_trusted_host(host, source=source) + + +def handle_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, + finder: Optional["PackageFinder"] = None, + session: Optional["PipSession"] = None, +) -> Optional[ParsedRequirement]: + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.is_requirement: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session: "PipSession", + line_parser: LineParser, + ) -> None: + self._session = session + self._line_parser = line_parser + + def parse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + """Parse a given file, yielding parsed lines.""" + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + for line in self._parse_file(filename, constraint): + if not line.is_requirement and ( + line.opts.requirements or line.opts.constraints + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + req_path = os.path.join( + os.path.dirname(filename), + req_path, + ) + + yield from self._parse_and_recurse(req_path, nested_constraint) + else: + yield line + + def _parse_file( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f"Invalid requirement: {line}\n{e.msg}" + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder: Optional["PackageFinder"]) -> LineParser: + def parse_line(line: str) -> Tuple[str, Values]: + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + try: + options = shlex.split(options_str) + except ValueError as e: + raise OptionParsingError(f"Could not split options: {options_str}") from e + + opts, _ = parser.parse_args(options, defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line: str) -> Tuple[str, str]: + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(" ") + args = [] + options = tokens[:] + for token in tokens: + if token.startswith("-") or token.startswith("--"): + break + else: + args.append(token) + options.pop(0) + return " ".join(args), " ".join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg: str) -> None: + self.msg = msg + + +def build_parser() -> optparse.OptionParser: + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self: Any, msg: str) -> "NoReturn": + raise OptionParsingError(msg) + + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line: List[str] = [] + for line_number, line in lines_enum: + if not line.endswith("\\") or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = " " + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip("\\")) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub("", line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url: str, session: "PipSession") -> Tuple[str, str]: + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = urllib.parse.urlsplit(url).scheme + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ["http", "https", "file"]: + # Delay importing heavy network modules until absolutely necessary. + from pip._internal.network.utils import raise_for_status + + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + # Assume this is a bare path. + try: + with open(url, "rb") as f: + content = auto_decode(f.read()) + except OSError as exc: + raise InstallationError(f"Could not open requirements file: {exc}") + return url, content diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 0000000..834bc51 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 0000000..ec7a6e0 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 0000000..26df208 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..527008281551f170699170bcc914be4135120cdd GIT binary patch literal 201 zcmX@j%ge<81l~On=^*+sh(HIQS%4zb87dhx8U0o=6fpsLpFwJVW$0(*=cekXq?Q#W zRwe2O6y;~7CYKcJr)3tUrk7@>r0VOHrRJ6C=VT`77gUyHlb7e=*MT~m82HsCFbZCr55Msl$K=X=jq1-MKep{(@z(h$13N6}`wJEZfXWy1HMPokY@;hzAee z`!^K-6fY@WWIzE|_4?{s|TT7GTdG%BA7Hcaha3*$IkjX_(tqe5x-POhRX4dVvadvB(N!sC0;?L`t2 zNENa(zq$88wJ6ZeawcH3j9`NS^SNNYAvj92NRU8j!UU)7peW0)2pb&qC#P*oILNw# zO2gGtSHlACL6OCMkh&_fOa&6Ug`R7zLF;i)^zuBD3PkW^4InPGBSH0K+A??4;7&P{ zKbk|c!4$`>T(2hkGrq}JHo2Z%$<)mxkIO7UT$eJFSRSi@xGkw;au=F{V%6*QAHrM9 z67U4{Ww;)CcV+enTB`8cSf@@e65uuakoLVeTJ`dQTFcV&&9mpcB2sWV4_lAJ4isJ< z! j!`Y>++VP=vV%WGev@U%yjl;%}9r|9Y@?&2anlkoJKY%m0 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 0000000..42dade1 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dc03302013afdc7499625882be89015965e78371 GIT binary patch literal 208 zcmZ8aK?=e!5Nxc12z`hLyQo+31A=(;7Gk@`Xqtp1EyOo?_YJv4JX|o)Yw^eWw5jQjFoqA6c%|a zYJ{>w)qxZTFu|X+T9)$#IN@<-Sao3>9T;JN3gyu%Cc&c9vh_kMkjPmTfX1irl$IvE Y#;Zoxt;Dq*#eNdUCGp7#AvTZd2Y+ojRsaA1 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c004bf36fc2581466387c726dd95d10034a83254 GIT binary patch literal 22583 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 0000000..1dd0d70 --- /dev/null +++ b/.venv/lib/python3.12/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/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d8479ff5f1b3c80400d78d28bc20ecadedde21eb GIT binary patch literal 212 zcmX@j%ge<81l~On=^*+sh(HIQS%4zb87dhx8U0o=6fpsLpFwJV73*i@=cekXq?Q#W zRwe2O6y;~7CYKcJr)3tUrk7@>r0VOHrRJ6C=VT`77gUyHlb7e=*MT~m82HsCFbZCr55Msl$K=X=RufdsUXeqKn0m4@$q^EmA5!-a`RJ4 ab5iY!Sb=U}1ma>4<0CU8BV!RWkOcseX*(PM literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..001d442328237565c2f12e3635e5960cd42a2092 GIT binary patch literal 8153 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 AUjP6A literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8643249caee1dc26e6377f9e09b11b13bff81af GIT binary patch literal 32290 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

    FFO0=l%XVaKyOiH}-6Ng=Q-VKE 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