xiaoh2018 commited on
Commit
2ead3f3
·
verified ·
1 Parent(s): 33cfa2a

Delete venv

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. venv/Lib/site-packages/_distutils_hack/__init__.py +0 -128
  2. venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc +0 -0
  3. venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc +0 -0
  4. venv/Lib/site-packages/_distutils_hack/override.py +0 -1
  5. venv/Lib/site-packages/distutils-precedence.pth +0 -3
  6. venv/Lib/site-packages/pip-21.2.3.dist-info/INSTALLER +0 -1
  7. venv/Lib/site-packages/pip-21.2.3.dist-info/LICENSE.txt +0 -20
  8. venv/Lib/site-packages/pip-21.2.3.dist-info/METADATA +0 -92
  9. venv/Lib/site-packages/pip-21.2.3.dist-info/RECORD +0 -795
  10. venv/Lib/site-packages/pip-21.2.3.dist-info/REQUESTED +0 -0
  11. venv/Lib/site-packages/pip-21.2.3.dist-info/WHEEL +0 -5
  12. venv/Lib/site-packages/pip-21.2.3.dist-info/entry_points.txt +0 -5
  13. venv/Lib/site-packages/pip-21.2.3.dist-info/top_level.txt +0 -1
  14. venv/Lib/site-packages/pip/__init__.py +0 -13
  15. venv/Lib/site-packages/pip/__main__.py +0 -31
  16. venv/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc +0 -0
  17. venv/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc +0 -0
  18. venv/Lib/site-packages/pip/_internal/__init__.py +0 -19
  19. venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc +0 -0
  20. venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc +0 -0
  21. venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc +0 -0
  22. venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc +0 -0
  23. venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc +0 -0
  24. venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc +0 -0
  25. venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc +0 -0
  26. venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc +0 -0
  27. venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc +0 -0
  28. venv/Lib/site-packages/pip/_internal/build_env.py +0 -294
  29. venv/Lib/site-packages/pip/_internal/cache.py +0 -287
  30. venv/Lib/site-packages/pip/_internal/cli/__init__.py +0 -4
  31. venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc +0 -0
  32. venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc +0 -0
  33. venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc +0 -0
  34. venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc +0 -0
  35. venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc +0 -0
  36. venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc +0 -0
  37. venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc +0 -0
  38. venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc +0 -0
  39. venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc +0 -0
  40. venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc +0 -0
  41. venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc +0 -0
  42. venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc +0 -0
  43. venv/Lib/site-packages/pip/_internal/cli/autocompletion.py +0 -163
  44. venv/Lib/site-packages/pip/_internal/cli/base_command.py +0 -214
  45. venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py +0 -1009
  46. venv/Lib/site-packages/pip/_internal/cli/command_context.py +0 -27
  47. venv/Lib/site-packages/pip/_internal/cli/main.py +0 -70
  48. venv/Lib/site-packages/pip/_internal/cli/main_parser.py +0 -87
  49. venv/Lib/site-packages/pip/_internal/cli/parser.py +0 -292
  50. venv/Lib/site-packages/pip/_internal/cli/progress_bars.py +0 -250
venv/Lib/site-packages/_distutils_hack/__init__.py DELETED
@@ -1,128 +0,0 @@
1
- import sys
2
- import os
3
- import re
4
- import importlib
5
- import warnings
6
-
7
-
8
- is_pypy = '__pypy__' in sys.builtin_module_names
9
-
10
-
11
- warnings.filterwarnings('ignore',
12
- r'.+ distutils\b.+ deprecated',
13
- DeprecationWarning)
14
-
15
-
16
- def warn_distutils_present():
17
- if 'distutils' not in sys.modules:
18
- return
19
- if is_pypy and sys.version_info < (3, 7):
20
- # PyPy for 3.6 unconditionally imports distutils, so bypass the warning
21
- # https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250
22
- return
23
- warnings.warn(
24
- "Distutils was imported before Setuptools, but importing Setuptools "
25
- "also replaces the `distutils` module in `sys.modules`. This may lead "
26
- "to undesirable behaviors or errors. To avoid these issues, avoid "
27
- "using distutils directly, ensure that setuptools is installed in the "
28
- "traditional way (e.g. not an editable install), and/or make sure "
29
- "that setuptools is always imported before distutils.")
30
-
31
-
32
- def clear_distutils():
33
- if 'distutils' not in sys.modules:
34
- return
35
- warnings.warn("Setuptools is replacing distutils.")
36
- mods = [name for name in sys.modules if re.match(r'distutils\b', name)]
37
- for name in mods:
38
- del sys.modules[name]
39
-
40
-
41
- def enabled():
42
- """
43
- Allow selection of distutils by environment variable.
44
- """
45
- which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib')
46
- return which == 'local'
47
-
48
-
49
- def ensure_local_distutils():
50
- clear_distutils()
51
- distutils = importlib.import_module('setuptools._distutils')
52
- distutils.__name__ = 'distutils'
53
- sys.modules['distutils'] = distutils
54
-
55
- # sanity check that submodules load as expected
56
- core = importlib.import_module('distutils.core')
57
- assert '_distutils' in core.__file__, core.__file__
58
-
59
-
60
- def do_override():
61
- """
62
- Ensure that the local copy of distutils is preferred over stdlib.
63
-
64
- See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401
65
- for more motivation.
66
- """
67
- if enabled():
68
- warn_distutils_present()
69
- ensure_local_distutils()
70
-
71
-
72
- class DistutilsMetaFinder:
73
- def find_spec(self, fullname, path, target=None):
74
- if path is not None:
75
- return
76
-
77
- method_name = 'spec_for_{fullname}'.format(**locals())
78
- method = getattr(self, method_name, lambda: None)
79
- return method()
80
-
81
- def spec_for_distutils(self):
82
- import importlib.abc
83
- import importlib.util
84
-
85
- class DistutilsLoader(importlib.abc.Loader):
86
-
87
- def create_module(self, spec):
88
- return importlib.import_module('setuptools._distutils')
89
-
90
- def exec_module(self, module):
91
- pass
92
-
93
- return importlib.util.spec_from_loader('distutils', DistutilsLoader())
94
-
95
- def spec_for_pip(self):
96
- """
97
- Ensure stdlib distutils when running under pip.
98
- See pypa/pip#8761 for rationale.
99
- """
100
- if self.pip_imported_during_build():
101
- return
102
- clear_distutils()
103
- self.spec_for_distutils = lambda: None
104
-
105
- @staticmethod
106
- def pip_imported_during_build():
107
- """
108
- Detect if pip is being imported in a build script. Ref #2355.
109
- """
110
- import traceback
111
- return any(
112
- frame.f_globals['__file__'].endswith('setup.py')
113
- for frame, line in traceback.walk_stack(None)
114
- )
115
-
116
-
117
- DISTUTILS_FINDER = DistutilsMetaFinder()
118
-
119
-
120
- def add_shim():
121
- sys.meta_path.insert(0, DISTUTILS_FINDER)
122
-
123
-
124
- def remove_shim():
125
- try:
126
- sys.meta_path.remove(DISTUTILS_FINDER)
127
- except ValueError:
128
- pass
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc DELETED
Binary file (5.15 kB)
 
venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc DELETED
Binary file (250 Bytes)
 
venv/Lib/site-packages/_distutils_hack/override.py DELETED
@@ -1 +0,0 @@
1
- __import__('_distutils_hack').do_override()
 
 
venv/Lib/site-packages/distutils-precedence.pth DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7ea7ffef3fe2a117ee12c68ed6553617f0d7fd2f0590257c25c484959a3b7373
3
- size 152
 
 
 
 
venv/Lib/site-packages/pip-21.2.3.dist-info/INSTALLER DELETED
@@ -1 +0,0 @@
1
- pip
 
 
venv/Lib/site-packages/pip-21.2.3.dist-info/LICENSE.txt DELETED
@@ -1,20 +0,0 @@
1
- Copyright (c) 2008-2021 The pip developers (see AUTHORS.txt file)
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip-21.2.3.dist-info/METADATA DELETED
@@ -1,92 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pip
3
- Version: 21.2.3
4
- Summary: The PyPA recommended tool for installing Python packages.
5
- Home-page: https://pip.pypa.io/
6
- Author: The pip developers
7
- Author-email: distutils-sig@python.org
8
- License: MIT
9
- Project-URL: Documentation, https://pip.pypa.io
10
- Project-URL: Source, https://github.com/pypa/pip
11
- Project-URL: Changelog, https://pip.pypa.io/en/stable/news/
12
- Platform: UNKNOWN
13
- Classifier: Development Status :: 5 - Production/Stable
14
- Classifier: Intended Audience :: Developers
15
- Classifier: License :: OSI Approved :: MIT License
16
- Classifier: Topic :: Software Development :: Build Tools
17
- Classifier: Programming Language :: Python
18
- Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3 :: Only
20
- Classifier: Programming Language :: Python :: 3.6
21
- Classifier: Programming Language :: Python :: 3.7
22
- Classifier: Programming Language :: Python :: 3.8
23
- Classifier: Programming Language :: Python :: 3.9
24
- Classifier: Programming Language :: Python :: Implementation :: CPython
25
- Classifier: Programming Language :: Python :: Implementation :: PyPy
26
- Requires-Python: >=3.6
27
- License-File: LICENSE.txt
28
-
29
- pip - The Python Package Installer
30
- ==================================
31
-
32
- .. image:: https://img.shields.io/pypi/v/pip.svg
33
- :target: https://pypi.org/project/pip/
34
-
35
- .. image:: https://readthedocs.org/projects/pip/badge/?version=latest
36
- :target: https://pip.pypa.io/en/latest
37
-
38
- pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes.
39
-
40
- Please take a look at our documentation for how to install and use pip:
41
-
42
- * `Installation`_
43
- * `Usage`_
44
-
45
- We release updates regularly, with a new version every 3 months. Find more details in our documentation:
46
-
47
- * `Release notes`_
48
- * `Release process`_
49
-
50
- In pip 20.3, we've `made a big improvement to the heart of pip`_; `learn more`_. We want your input, so `sign up for our user experience research studies`_ to help us do it right.
51
-
52
- **Note**: pip 21.0, in January 2021, removed Python 2 support, per pip's `Python 2 support policy`_. Please migrate to Python 3.
53
-
54
- If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms:
55
-
56
- * `Issue tracking`_
57
- * `Discourse channel`_
58
- * `User IRC`_
59
-
60
- 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:
61
-
62
- * `GitHub page`_
63
- * `Development documentation`_
64
- * `Development mailing list`_
65
- * `Development IRC`_
66
-
67
- Code of Conduct
68
- ---------------
69
-
70
- Everyone interacting in the pip project's codebases, issue trackers, chat
71
- rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_.
72
-
73
- .. _package installer: https://packaging.python.org/guides/tool-recommendations/
74
- .. _Python Package Index: https://pypi.org
75
- .. _Installation: https://pip.pypa.io/en/stable/installation/
76
- .. _Usage: https://pip.pypa.io/en/stable/
77
- .. _Release notes: https://pip.pypa.io/en/stable/news.html
78
- .. _Release process: https://pip.pypa.io/en/latest/development/release-process/
79
- .. _GitHub page: https://github.com/pypa/pip
80
- .. _Development documentation: https://pip.pypa.io/en/latest/development
81
- .. _made a big improvement to the heart of pip: https://pyfound.blogspot.com/2020/11/pip-20-3-new-resolver.html
82
- .. _learn more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020
83
- .. _sign up for our user experience research studies: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html
84
- .. _Python 2 support policy: https://pip.pypa.io/en/latest/development/release-process/#python-2-support
85
- .. _Issue tracking: https://github.com/pypa/pip/issues
86
- .. _Discourse channel: https://discuss.python.org/c/packaging
87
- .. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/
88
- .. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa
89
- .. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev
90
- .. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md
91
-
92
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip-21.2.3.dist-info/RECORD DELETED
@@ -1,795 +0,0 @@
1
- ../../Scripts/pip.exe,sha256=U22BM6itznlzrP8HMUlQoiy_IuZMJJqDXU2Wgja2WNs,106390
2
- ../../Scripts/pip3.10.exe,sha256=U22BM6itznlzrP8HMUlQoiy_IuZMJJqDXU2Wgja2WNs,106390
3
- ../../Scripts/pip3.exe,sha256=U22BM6itznlzrP8HMUlQoiy_IuZMJJqDXU2Wgja2WNs,106390
4
- pip-21.2.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
5
- pip-21.2.3.dist-info/LICENSE.txt,sha256=gJDJthjxG8mDPXZg96yUjnIt4bce2hULfec5mrfNnmI,1110
6
- pip-21.2.3.dist-info/METADATA,sha256=BA4M-MqDkwwNoSPm1cVEoleu3sEr_iN4HbpM3cjr6rI,4165
7
- pip-21.2.3.dist-info/RECORD,,
8
- pip-21.2.3.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- pip-21.2.3.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
10
- pip-21.2.3.dist-info/entry_points.txt,sha256=HtfDOwpUlr9s73jqLQ6wF9V0_0qvUXJwCBz7Vwx0Ue0,125
11
- pip-21.2.3.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
12
- pip/__init__.py,sha256=qXU49Q5cd1uydhWo2AnReaOxEtM0o8t5EP9EvhtRCN8,370
13
- pip/__main__.py,sha256=8mTMucDffyV05KR_fXWM2p1JQEnHPu1-CWjbthYHYis,1229
14
- pip/__pycache__/__init__.cpython-310.pyc,,
15
- pip/__pycache__/__main__.cpython-310.pyc,,
16
- pip/_internal/__init__.py,sha256=OLxitHt9NAlSaObDjAlRSYUkAftIjV9sUpv1yIZDO4E,592
17
- pip/_internal/__pycache__/__init__.cpython-310.pyc,,
18
- pip/_internal/__pycache__/build_env.cpython-310.pyc,,
19
- pip/_internal/__pycache__/cache.cpython-310.pyc,,
20
- pip/_internal/__pycache__/configuration.cpython-310.pyc,,
21
- pip/_internal/__pycache__/exceptions.cpython-310.pyc,,
22
- pip/_internal/__pycache__/main.cpython-310.pyc,,
23
- pip/_internal/__pycache__/pyproject.cpython-310.pyc,,
24
- pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc,,
25
- pip/_internal/__pycache__/wheel_builder.cpython-310.pyc,,
26
- pip/_internal/build_env.py,sha256=YMIinJTDdKm_x5JC8IjJZp-_Zw42kBm6fkiWprBi-Hk,10415
27
- pip/_internal/cache.py,sha256=bjyh33eOAq6kX1kPk84Oxb_JXazpP6izVZipJLq0eJI,10245
28
- pip/_internal/cli/__init__.py,sha256=9gMw_A_StJXzDh2Rhxil6bd8tFP-ZR719Q1pINHAw5I,136
29
- pip/_internal/cli/__pycache__/__init__.cpython-310.pyc,,
30
- pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc,,
31
- pip/_internal/cli/__pycache__/base_command.cpython-310.pyc,,
32
- pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc,,
33
- pip/_internal/cli/__pycache__/command_context.cpython-310.pyc,,
34
- pip/_internal/cli/__pycache__/main.cpython-310.pyc,,
35
- pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc,,
36
- pip/_internal/cli/__pycache__/parser.cpython-310.pyc,,
37
- pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc,,
38
- pip/_internal/cli/__pycache__/req_command.cpython-310.pyc,,
39
- pip/_internal/cli/__pycache__/spinners.cpython-310.pyc,,
40
- pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc,,
41
- pip/_internal/cli/autocompletion.py,sha256=_d6Ugrj-KQOCoDgDscSr_238-RcwedXzpLmW8F_L_uc,6562
42
- pip/_internal/cli/base_command.py,sha256=mZH7AMA9tBoiYEysFx9l3Pe_h23mnNZy8K8M_ZhsRSs,7810
43
- pip/_internal/cli/cmdoptions.py,sha256=Kalu7Z2ZAvySgOOIo4e_Ah3Vv8HDmGhLQlkDysI-ihw,29292
44
- pip/_internal/cli/command_context.py,sha256=ocjEqsuP6pFF98N_ljRyLToYLm5fBgMaZicVjMy_f0Y,787
45
- pip/_internal/cli/main.py,sha256=D6DAuHgfr4na5SuEbtLyx1FlZhcGHIB9BltXsjrrKsA,2542
46
- pip/_internal/cli/main_parser.py,sha256=rusU-JYOLpcJ8cFXWiPvuDoNpTptRlndY3WyBh2UXq4,2701
47
- pip/_internal/cli/parser.py,sha256=0eTD4_7ucvjv_VnZajerOhzHUAIOju5KDlQM0rv5VP4,11080
48
- pip/_internal/cli/progress_bars.py,sha256=-bhkKHcjsZ0tWdf-DH9eGHsJuGedVPih8E0vV2_rJXg,8550
49
- pip/_internal/cli/req_command.py,sha256=_9w-fMnI0j8bey7mryr-iLxjCoUT_jIU3lkNp2PQJVU,17001
50
- pip/_internal/cli/spinners.py,sha256=rQJtl8c9JiMpOCsOk-YRFYtWdhiFoFectJuryMM-jn4,5233
51
- pip/_internal/cli/status_codes.py,sha256=1xaB32lG8Nf1nMl_6e0yy5z2Iyvv81OTUpuHwXgGsfU,122
52
- pip/_internal/commands/__init__.py,sha256=LoscneenHTO4OCqGIah4KtHyPNURU6F7bUeGRjbcr_k,3888
53
- pip/_internal/commands/__pycache__/__init__.cpython-310.pyc,,
54
- pip/_internal/commands/__pycache__/cache.cpython-310.pyc,,
55
- pip/_internal/commands/__pycache__/check.cpython-310.pyc,,
56
- pip/_internal/commands/__pycache__/completion.cpython-310.pyc,,
57
- pip/_internal/commands/__pycache__/configuration.cpython-310.pyc,,
58
- pip/_internal/commands/__pycache__/debug.cpython-310.pyc,,
59
- pip/_internal/commands/__pycache__/download.cpython-310.pyc,,
60
- pip/_internal/commands/__pycache__/freeze.cpython-310.pyc,,
61
- pip/_internal/commands/__pycache__/hash.cpython-310.pyc,,
62
- pip/_internal/commands/__pycache__/help.cpython-310.pyc,,
63
- pip/_internal/commands/__pycache__/index.cpython-310.pyc,,
64
- pip/_internal/commands/__pycache__/install.cpython-310.pyc,,
65
- pip/_internal/commands/__pycache__/list.cpython-310.pyc,,
66
- pip/_internal/commands/__pycache__/search.cpython-310.pyc,,
67
- pip/_internal/commands/__pycache__/show.cpython-310.pyc,,
68
- pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc,,
69
- pip/_internal/commands/__pycache__/wheel.cpython-310.pyc,,
70
- pip/_internal/commands/cache.py,sha256=XqHqGkiyZ6A0Vf0oIGJhWiNY4k9JIC0nlNmooiaCtuo,7453
71
- pip/_internal/commands/check.py,sha256=FZ7IHeRkwnWkwgdaMI1AjFPcI4xrPK4_4jODp8aDyiA,1617
72
- pip/_internal/commands/completion.py,sha256=RXEru4uYaBfUUtZJ2bLE7s6FJUe9t1BAVSUQ8wPzW0o,3005
73
- pip/_internal/commands/configuration.py,sha256=1Fr4QLwdu1OcBL_FZQh6uY3i7i38qI70OJGG-JhoUuI,9228
74
- pip/_internal/commands/debug.py,sha256=Bb2Lxzn7XEQRYgBYOZbuK3EYeLphKHo8Gubg_EZ6JnU,6851
75
- pip/_internal/commands/download.py,sha256=sT3gInhPvMyhuZ-rVBf1OlpLzh52J0hStM57_CPdvCA,5088
76
- pip/_internal/commands/freeze.py,sha256=xzVjiTJT5DBJceJPNnAYyCF4oGITyuSpfsfkSKR70Fg,2869
77
- pip/_internal/commands/hash.py,sha256=XoLZ3Hx_b72asRLGOe1WXSvJ6ClwSFhn-aFPgbcB9Zk,1719
78
- pip/_internal/commands/help.py,sha256=zV8LmdIbJOnVOIZTz1TwlNWQZQLEWZnJGwXSSh9SSEw,1173
79
- pip/_internal/commands/index.py,sha256=qTchSIS-zCEiJCrZ9X-o5_93kMYCSVZDRTmeY_fhOOE,4920
80
- pip/_internal/commands/install.py,sha256=oj_4a73RMGXgmFQV1jUZEZTnvnZw5kkT6pA3naYj3PA,28243
81
- pip/_internal/commands/list.py,sha256=1K-dhUMEs8akjPE16n5Eq9GsalONKkS7bvWwSCNzQe8,12090
82
- pip/_internal/commands/search.py,sha256=Dtebo30wNJJ0Blr5MkmiET1wIuNioxzoH8vR82ma7Tc,5707
83
- pip/_internal/commands/show.py,sha256=G-ak6SZS-H2MJqQI89D2x4TLd8l9amVYhtaa5dhCFeE,8208
84
- pip/_internal/commands/uninstall.py,sha256=sTUTiJSTp0NKeFHUBJHD3f-fSVPGFjBY6go_DhpvC0Q,3580
85
- pip/_internal/commands/wheel.py,sha256=dIRE7v6g9HTpTw0nsOG2HHoG0uvwrWV5-xyp0kuJdhU,6365
86
- pip/_internal/configuration.py,sha256=g_C1ByxxCGrYfY26B-X8v-3mbUwzlXdj9EKwDs-0kH0,14128
87
- pip/_internal/distributions/__init__.py,sha256=99Rzk077wS5wGire_mchcAjtJG9vbwTLPXZKLWrh_D4,879
88
- pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc,,
89
- pip/_internal/distributions/__pycache__/base.cpython-310.pyc,,
90
- pip/_internal/distributions/__pycache__/installed.cpython-310.pyc,,
91
- pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc,,
92
- pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc,,
93
- pip/_internal/distributions/base.py,sha256=VCEqCFm36o5SSpu3esHmM055Wv5TOxGFLXtxpY8m-L8,1244
94
- pip/_internal/distributions/installed.py,sha256=UZU2Q4-jcAaPexNZzqk5YXhols1jTjyh4xAA0ZQ_A8g,667
95
- pip/_internal/distributions/sdist.py,sha256=5OpYaS51ll8tqsZC-h86ij62RQkid3YZEOqUXCRq8TA,3957
96
- pip/_internal/distributions/wheel.py,sha256=8lzZqqpA5oUUHANOZlf0qcKLIunsJ3K821VP29hLYdg,1217
97
- pip/_internal/exceptions.py,sha256=yiMEmKFvLIPNGaLCQxxtnacfNhUisQayQ4XiqPuRLZU,13567
98
- pip/_internal/index/__init__.py,sha256=x0ifDyFChwwQC4V_eHBFF1fvzLwbXRYG3nq15-Axy24,32
99
- pip/_internal/index/__pycache__/__init__.cpython-310.pyc,,
100
- pip/_internal/index/__pycache__/collector.cpython-310.pyc,,
101
- pip/_internal/index/__pycache__/package_finder.cpython-310.pyc,,
102
- pip/_internal/index/__pycache__/sources.cpython-310.pyc,,
103
- pip/_internal/index/collector.py,sha256=pB-NFZkI-KjQnhTBo7JzArphtu6OVJ52WVQlFQrSbFU,18179
104
- pip/_internal/index/package_finder.py,sha256=k7qar-7Lw778ODq0iB-ETXjof-MUhRh4YHXsVNjl6eo,37120
105
- pip/_internal/index/sources.py,sha256=SW2LlD5eAF2Rj74TbpEUNjADU9UH-K76oqgJFNtDlWc,6781
106
- pip/_internal/locations/__init__.py,sha256=bReITFXFSX786ngLRJhXhsb1npYOw8YbpOuOngrQUik,11584
107
- pip/_internal/locations/__pycache__/__init__.cpython-310.pyc,,
108
- pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc,,
109
- pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc,,
110
- pip/_internal/locations/__pycache__/base.cpython-310.pyc,,
111
- pip/_internal/locations/_distutils.py,sha256=OUPuNiGJP2vmiYgwdAR-ZQryj_2yANs9DebSm4afDZU,6040
112
- pip/_internal/locations/_sysconfig.py,sha256=sJJD4PQujUcLAaKiOeXYsILmQb0-hjznP79PzKPiA4Q,8137
113
- pip/_internal/locations/base.py,sha256=KMpxtATY6iOshQ3AimpymGTy81zK-pM1CWPemJQ0mj4,1631
114
- pip/_internal/main.py,sha256=yXF5_lVS3QQTxrbbvNk31juR2E1_16H1iu-xuXAod9o,364
115
- pip/_internal/metadata/__init__.py,sha256=p3NvOGG_3quhV9bOlDPvWSAEByPsdn63cO4FrsFubM0,1624
116
- pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc,,
117
- pip/_internal/metadata/__pycache__/base.cpython-310.pyc,,
118
- pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc,,
119
- pip/_internal/metadata/base.py,sha256=dCfs9XIcicyYSoFtVtzq6rFvduUYNdV6U_EDDlG4yJ0,8170
120
- pip/_internal/metadata/pkg_resources.py,sha256=azUoAkvyF-h80pORd0czY4-fWUIRe_z3i2qNHuKiSjE,5353
121
- pip/_internal/models/__init__.py,sha256=j2kiRfNTH6h5JVP5yO_N2Yn0DqiNzJUtaPjHe2xMcgg,65
122
- pip/_internal/models/__pycache__/__init__.cpython-310.pyc,,
123
- pip/_internal/models/__pycache__/candidate.cpython-310.pyc,,
124
- pip/_internal/models/__pycache__/direct_url.cpython-310.pyc,,
125
- pip/_internal/models/__pycache__/format_control.cpython-310.pyc,,
126
- pip/_internal/models/__pycache__/index.cpython-310.pyc,,
127
- pip/_internal/models/__pycache__/link.cpython-310.pyc,,
128
- pip/_internal/models/__pycache__/scheme.cpython-310.pyc,,
129
- pip/_internal/models/__pycache__/search_scope.cpython-310.pyc,,
130
- pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc,,
131
- pip/_internal/models/__pycache__/target_python.cpython-310.pyc,,
132
- pip/_internal/models/__pycache__/wheel.cpython-310.pyc,,
133
- pip/_internal/models/candidate.py,sha256=L4nKS2HIgdOfbylU-2MIO2APVWEWueJpHu_gcwO0iH4,977
134
- pip/_internal/models/direct_url.py,sha256=36n2ed5kddmPLhNLh4b1GzGr36dUdSgl23Xrbcxd_ck,6482
135
- pip/_internal/models/format_control.py,sha256=PZ5PExPrxArZWzzPFATSj6W07UqvxjtrMBgFNAUxae4,2641
136
- pip/_internal/models/index.py,sha256=vqgOrXoZqQW4AA928wBmEGjKbxjeb-_NALLGZH0kMXY,1090
137
- pip/_internal/models/link.py,sha256=SrRPbWmpzWh1LfQd-eurbYAuMvOvpD5fzMvNDlRFpQ8,10227
138
- pip/_internal/models/scheme.py,sha256=moDcYk85amZUkf6Je5TDvXh4xMHxsSgf8rkD1ykpQhU,769
139
- pip/_internal/models/search_scope.py,sha256=D_Q6xSo1dTjSRljshHz_xVe4vXXivl2H7_rtj0dSHpU,4600
140
- pip/_internal/models/selection_prefs.py,sha256=0DZIWNPT8q2EiuqZCAQxczCoVnbs9_C4zugNfhNnvaw,1923
141
- pip/_internal/models/target_python.py,sha256=NUm2Ua7qbJHFK0UzKAlfHixudx4-FgmAFKPKf3B2RyU,3981
142
- pip/_internal/models/wheel.py,sha256=NLmn_y8dVc5vfTcAYw3EfS692hAF9MPPMDr5wTBu_4E,3633
143
- pip/_internal/network/__init__.py,sha256=IEtuAPVGqBTS0C7M0KJ95xqGcA76coOc2AsDcgIBP-8,52
144
- pip/_internal/network/__pycache__/__init__.cpython-310.pyc,,
145
- pip/_internal/network/__pycache__/auth.cpython-310.pyc,,
146
- pip/_internal/network/__pycache__/cache.cpython-310.pyc,,
147
- pip/_internal/network/__pycache__/download.cpython-310.pyc,,
148
- pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc,,
149
- pip/_internal/network/__pycache__/session.cpython-310.pyc,,
150
- pip/_internal/network/__pycache__/utils.cpython-310.pyc,,
151
- pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc,,
152
- pip/_internal/network/auth.py,sha256=820jI8SAsVfNnfoOfxfH7HaGVFtYX_M8vsHEtiHCS14,11961
153
- pip/_internal/network/cache.py,sha256=KfaWDbALIGsUnP4qi1MfvKSpCJ0vlC5lviELSTNKLtQ,2169
154
- pip/_internal/network/download.py,sha256=-EnS83XhpNVRsfB107nYU-OPZsHd29QQdG6lNokemAk,6200
155
- pip/_internal/network/lazy_wheel.py,sha256=LFVwrv2nHpwr0pl17i-3sbEAedJjraaLdRTFRfS23vo,7825
156
- pip/_internal/network/session.py,sha256=9KBZpMGrtEmek4iPgpZiLEBgyxQ6bPH3yUUxNbEEQ54,17036
157
- pip/_internal/network/utils.py,sha256=K4d2srYGzR_tz5vVBbKFC7rBWA-G_DqqX9io2flIrI0,4155
158
- pip/_internal/network/xmlrpc.py,sha256=oFCngChTOtIVcc55ExwdX1HJcPvL-6PKMNl5ok6nMQk,1851
159
- pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
- pip/_internal/operations/__pycache__/__init__.cpython-310.pyc,,
161
- pip/_internal/operations/__pycache__/check.cpython-310.pyc,,
162
- pip/_internal/operations/__pycache__/freeze.cpython-310.pyc,,
163
- pip/_internal/operations/__pycache__/prepare.cpython-310.pyc,,
164
- pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
- pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc,,
166
- pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc,,
167
- pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc,,
168
- pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc,,
169
- pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc,,
170
- pip/_internal/operations/build/metadata.py,sha256=-06VLFRgwxsIuqHL_56NxXdn7TQuZHeaL4RYXDnjB18,1200
171
- pip/_internal/operations/build/metadata_legacy.py,sha256=1V8i8VVGUF7GauyS_KPEhcl7dIwrocD6lyT5kWvXkBA,1991
172
- pip/_internal/operations/build/wheel.py,sha256=r2IKZgek1REUjP4xA0RLEG5O1-HsPZtzfy7q7W3_nhQ,1144
173
- pip/_internal/operations/build/wheel_legacy.py,sha256=4ddx179dnTTHJertW50M6869gchuyrNEdYcyWe4w5Yg,3337
174
- pip/_internal/operations/check.py,sha256=eCLrRScb_ZJDxTK9rMjU5kbLuu1xRngdoLxATNPuPQE,5448
175
- pip/_internal/operations/freeze.py,sha256=WEglEwdf9rD9M6jGzMyRVhiN-WF8p-hhiHGnwsWlDDc,10833
176
- pip/_internal/operations/install/__init__.py,sha256=Zug2xxRJjeI2LdVd45iwmeavUBYXA4ltbhFFwc4BEOg,53
177
- pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc,,
178
- pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc,,
179
- pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc,,
180
- pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc,,
181
- pip/_internal/operations/install/editable_legacy.py,sha256=FhvBds_MF_Flabnylh6EVwCD3mFDxa-RmdKq3jl5JGM,1443
182
- pip/_internal/operations/install/legacy.py,sha256=xyGakzR-Xnfa9H37-OzT6cKH-AQMsctBkFxfUr3jlvw,4537
183
- pip/_internal/operations/install/wheel.py,sha256=oV6IB77355YCaI_ta4mqWXyHlkQF8OqBRZAdq8jpQYs,30269
184
- pip/_internal/operations/prepare.py,sha256=QB3-cmVD1agyO6_B9oiRs9HCQyyDMHF9pLTboLtufxo,25503
185
- pip/_internal/pyproject.py,sha256=DQoqc7F3HyFBO7fG82HOPsdP-GfEzfuqTUGOG0v2E1c,7246
186
- pip/_internal/req/__init__.py,sha256=5eiQnk8IiwtrWHU4r1ttcLy545MCrUdg5eRRq7_ZNz0,2925
187
- pip/_internal/req/__pycache__/__init__.cpython-310.pyc,,
188
- pip/_internal/req/__pycache__/constructors.cpython-310.pyc,,
189
- pip/_internal/req/__pycache__/req_file.cpython-310.pyc,,
190
- pip/_internal/req/__pycache__/req_install.cpython-310.pyc,,
191
- pip/_internal/req/__pycache__/req_set.cpython-310.pyc,,
192
- pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc,,
193
- pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc,,
194
- pip/_internal/req/constructors.py,sha256=Izde_5pbxkMzDWN-khLufzKKpC0uaGNTPRO9ShWrud8,16300
195
- pip/_internal/req/req_file.py,sha256=RN04-oHRNn5xECciUcs0Gh3LxA1RdlVw1X6wbVs0r7k,17936
196
- pip/_internal/req/req_install.py,sha256=gIGZ3t9QzqCBoeL04my4DIuqM86j0i5nId6iwZIGYzQ,32517
197
- pip/_internal/req/req_set.py,sha256=yeKmy9-oH5tW2Oe7SHobrp9btcDBZ3DxdFJ3HqAKQ44,7762
198
- pip/_internal/req/req_tracker.py,sha256=tFN50kuTTWwpY0WJkPK6QCPUZePmUhaBbuKVSgkWl1A,4312
199
- pip/_internal/req/req_uninstall.py,sha256=T6n_Pgpljq30LLQ81Qs4kpPoxSuJUkUvbvG9b697rGs,24450
200
- pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
- pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc,,
202
- pip/_internal/resolution/__pycache__/base.cpython-310.pyc,,
203
- pip/_internal/resolution/base.py,sha256=qMuP4GV1NJU-81E3gUKzczQxzS-f_SWF0Dk59YVrH9A,575
204
- pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
- pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc,,
206
- pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc,,
207
- pip/_internal/resolution/legacy/resolver.py,sha256=6nUm1wcBGRT58gUOu0-B0TE354XrCx_dexslaFtlDis,18005
208
- pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
- pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc,,
210
- pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc,,
211
- pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc,,
212
- pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc,,
213
- pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc,,
214
- pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc,,
215
- pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc,,
216
- pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc,,
217
- pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc,,
218
- pip/_internal/resolution/resolvelib/base.py,sha256=IWvd3KNMJtIqDLcqeUuGV4MbimM83JOofBKwggVYxzI,5434
219
- pip/_internal/resolution/resolvelib/candidates.py,sha256=a8-csKtuj_Bz8UeYgk2cz8mP1EOObTyXsZrCO8wq2Tc,19397
220
- pip/_internal/resolution/resolvelib/factory.py,sha256=clwGzM3_u3SReBwOOG9sAvcdd2pNqk03T5qrCyryeB4,27559
221
- pip/_internal/resolution/resolvelib/found_candidates.py,sha256=9kFfU_ZFugtCMaCIez6UYrG4hyfqwDaQYxP9db9XQvE,5427
222
- pip/_internal/resolution/resolvelib/provider.py,sha256=qXB9l3kjEca0orqTS2e6TGaWHJIn537kEqJYClBIShQ,8617
223
- pip/_internal/resolution/resolvelib/reporter.py,sha256=AwjzTX3LytVk9wuVS1LdJAk1V2kPhEdn1dE7MfrPwLM,2669
224
- pip/_internal/resolution/resolvelib/requirements.py,sha256=FKE-HcZmsljRrcLpr545XprOOqDd09149GjjF8AfTiw,5621
225
- pip/_internal/resolution/resolvelib/resolver.py,sha256=Bmwfy5pO8cLzI-13YMgWEAWwFlpjLKdKeCBHMrdWyWM,10795
226
- pip/_internal/self_outdated_check.py,sha256=cNOjZkFVtwJmftBZt34cH2j9SJ5Gd4vSbJY8FBYM6tg,6671
227
- pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
- pip/_internal/utils/__pycache__/__init__.cpython-310.pyc,,
229
- pip/_internal/utils/__pycache__/_log.cpython-310.pyc,,
230
- pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc,,
231
- pip/_internal/utils/__pycache__/compat.cpython-310.pyc,,
232
- pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc,,
233
- pip/_internal/utils/__pycache__/datetime.cpython-310.pyc,,
234
- pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc,,
235
- pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc,,
236
- pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc,,
237
- pip/_internal/utils/__pycache__/encoding.cpython-310.pyc,,
238
- pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc,,
239
- pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc,,
240
- pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc,,
241
- pip/_internal/utils/__pycache__/glibc.cpython-310.pyc,,
242
- pip/_internal/utils/__pycache__/hashes.cpython-310.pyc,,
243
- pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc,,
244
- pip/_internal/utils/__pycache__/logging.cpython-310.pyc,,
245
- pip/_internal/utils/__pycache__/misc.cpython-310.pyc,,
246
- pip/_internal/utils/__pycache__/models.cpython-310.pyc,,
247
- pip/_internal/utils/__pycache__/packaging.cpython-310.pyc,,
248
- pip/_internal/utils/__pycache__/parallel.cpython-310.pyc,,
249
- pip/_internal/utils/__pycache__/pkg_resources.cpython-310.pyc,,
250
- pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc,,
251
- pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc,,
252
- pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc,,
253
- pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc,,
254
- pip/_internal/utils/__pycache__/urls.cpython-310.pyc,,
255
- pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc,,
256
- pip/_internal/utils/__pycache__/wheel.cpython-310.pyc,,
257
- pip/_internal/utils/_log.py,sha256=t0zjUNjMLPYna4ZbL0MJB8wrxGdFvC8JsPs7f3UUdz0,1053
258
- pip/_internal/utils/appdirs.py,sha256=JKsp6Dlfk0BjBfni2Geq_uzpSycc8pV0Ap5A5qAwhag,1220
259
- pip/_internal/utils/compat.py,sha256=U1ofuQpRkcmWNtCsZccTK_24YsauhWl0KPDMnC69adM,1947
260
- pip/_internal/utils/compatibility_tags.py,sha256=f0RJ5Wb3Jj2T5z57i0RPLyoWNtqYvymealy3aUucrVU,5622
261
- pip/_internal/utils/datetime.py,sha256=NhzGBwpDdc5W1hX7-ynGHSFH5T8srUUPpFw6zOORiMM,253
262
- pip/_internal/utils/deprecation.py,sha256=onEDau8zZyztsQf5HjhHTckTChbXIIdOWRh_Ugz1PSQ,3304
263
- pip/_internal/utils/direct_url_helpers.py,sha256=7xVyieLJtD1SmB1xsNhIPsYBGIDK7AZGQUtfZyRi0tQ,3073
264
- pip/_internal/utils/distutils_args.py,sha256=fw5ZrUBHRy2IWgLciAKUl7RA4Ryu6jWL-M9LNv90V2k,1291
265
- pip/_internal/utils/encoding.py,sha256=3Hr_T_shHHq5EJmQg7sUCeNY37pvmxEmQay6aPsK_4o,1205
266
- pip/_internal/utils/entrypoints.py,sha256=Iq8laJFPEcErDlGcPIshG_-VrUmfwLB3_nLWlT1EIKI,1082
267
- pip/_internal/utils/filesystem.py,sha256=8UhURyTKl2R1l9TAnYXuULsGNNMkH9IBPHAoRy4QEaU,6075
268
- pip/_internal/utils/filetypes.py,sha256=0VA-FQmevfgw7_9OAe7YXjxB3DcYUxpUypVKERWlU_I,789
269
- pip/_internal/utils/glibc.py,sha256=6i1vPIDuLfV3vKQeFe2oUa9QjSHGVlOkvysujEldOEE,3262
270
- pip/_internal/utils/hashes.py,sha256=dV10-3U4kcopR-XrArkX6vFSiLS9uNOhPbrv8olu8Qw,5332
271
- pip/_internal/utils/inject_securetransport.py,sha256=Wa89Vhq5SdlBGreg8wdE40iDJGTouYEyFuugMrOVUI0,846
272
- pip/_internal/utils/logging.py,sha256=cRHg2gUYXEUknl_WzZ2Zdxxah485Gr69wl8TpymaAHc,12735
273
- pip/_internal/utils/misc.py,sha256=Zt509grPCYtfQEI16CHULTX9nW8eRXbBucPQQasuOYk,24472
274
- pip/_internal/utils/models.py,sha256=89bZ42cL0YJUmV9GCaFLfs4ZiG_cDW1udAHc6UTCI2c,1376
275
- pip/_internal/utils/packaging.py,sha256=xTyBldqCDRn0_v9CQizadbHd3ZUTgjXeElTxrJW_JKo,2989
276
- pip/_internal/utils/parallel.py,sha256=7IFve8sBfphARNXprnhhuSyzlxfdDWaMP3LTFwCUL9c,3325
277
- pip/_internal/utils/pkg_resources.py,sha256=bkYDe05U5fph4t8TO-q06fpHQwuzookJqP0MokucHWg,1146
278
- pip/_internal/utils/setuptools_build.py,sha256=tO48Mgcb28GJf3zmkQlzBvsRR-2hdrpm1dipXFBkyaE,5220
279
- pip/_internal/utils/subprocess.py,sha256=0GB0g9r2muHAnljX2s_sX-x805eWWoDtdN_9JcCwKu8,10324
280
- pip/_internal/utils/temp_dir.py,sha256=gFwfsfEtM-y5Lb9ZqpbP1wy_K3o-vUPsMouAFQCy7mg,8210
281
- pip/_internal/utils/unpacking.py,sha256=klIaodkk3_rIg-VjN2s-PQFPfGXaVhOWpOwd46T7bHo,9317
282
- pip/_internal/utils/urls.py,sha256=pJQSXBv1vKtBFr9KPbSMYA5lY7-G9rjLHq0A8plI7yo,1863
283
- pip/_internal/utils/virtualenv.py,sha256=3JeTdc_O-2uZbfn7EmQKLyXurWKD3nKSEi856ZZWSC4,3675
284
- pip/_internal/utils/wheel.py,sha256=xeIImmT3FJfVBPv3J4jxsHJy2wLinnJXAsZOcrrMSAM,6479
285
- pip/_internal/vcs/__init__.py,sha256=6ZAbu6NoqDWJjYPWCtn8PaZjulAEgs-R0Xngq2Z174Q,611
286
- pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc,,
287
- pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc,,
288
- pip/_internal/vcs/__pycache__/git.cpython-310.pyc,,
289
- pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc,,
290
- pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc,,
291
- pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc,,
292
- pip/_internal/vcs/bazaar.py,sha256=6_3dygJ3x0TrnlsMx2-sokvNKpk-6EfH2zsMgAmLj4o,3058
293
- pip/_internal/vcs/git.py,sha256=vYxXxg4M6YIUxNQCswMJJ2ZiBkb4capqTziRrATcp0E,17853
294
- pip/_internal/vcs/mercurial.py,sha256=jrfkmZF7SLOwxrJroz-NjvTTMCvaWl8BnZATPdu1CsE,5234
295
- pip/_internal/vcs/subversion.py,sha256=Oy4kcrNGmimnatKWHGKtED-0Da6bjfuc2DtsnitUam0,12195
296
- pip/_internal/vcs/versioncontrol.py,sha256=7w9WNAlFXQj5pRlWA-3jA8XUwn1VSxbNfmWvI-aY2p0,23998
297
- pip/_internal/wheel_builder.py,sha256=3bibo47mjXw7rRChRqudDQObp5JynLQ5uZ8x81PtBq8,12100
298
- pip/_vendor/__init__.py,sha256=3sjRJDFysoLez0JAFlt8jJA0FUzWVPkt9AlJlcuNsC0,4814
299
- pip/_vendor/__pycache__/__init__.cpython-310.pyc,,
300
- pip/_vendor/__pycache__/appdirs.cpython-310.pyc,,
301
- pip/_vendor/__pycache__/distro.cpython-310.pyc,,
302
- pip/_vendor/__pycache__/pyparsing.cpython-310.pyc,,
303
- pip/_vendor/__pycache__/six.cpython-310.pyc,,
304
- pip/_vendor/appdirs.py,sha256=Od1rs7d0yMmHLUc0FQn2DleIUbC--EEmM-UtXvFqAjM,26540
305
- pip/_vendor/cachecontrol/__init__.py,sha256=SR74BEsga7Z2I6-CH8doh2Oq_vH0GG7RCwjJg7TntdI,313
306
- pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc,,
307
- pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc,,
308
- pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc,,
309
- pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc,,
310
- pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc,,
311
- pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc,,
312
- pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc,,
313
- pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc,,
314
- pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc,,
315
- pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc,,
316
- pip/_vendor/cachecontrol/_cmd.py,sha256=KIO6PIJoXmNr5RGS2pZjDum1-40oR4fw5kE0LguxrY4,1352
317
- pip/_vendor/cachecontrol/adapter.py,sha256=FBRrYfpkXaH8hKogEgw6wYCScnL2SJFDZlHBNF0EvLE,5015
318
- pip/_vendor/cachecontrol/cache.py,sha256=gCo5R0D__iptJ49dUfxwWfu2Lc2OjpDs-MERy2hTpK8,844
319
- pip/_vendor/cachecontrol/caches/__init__.py,sha256=rN8Ox5dd2ucPtgkybgz77XfTTUL4HFTO2-n2ACK2q3E,88
320
- pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc,,
321
- pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc,,
322
- pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc,,
323
- pip/_vendor/cachecontrol/caches/file_cache.py,sha256=tw35e4ZnOsxqrlZ2fQ2VYz2FlUlCbFMerNu2tPwtRHY,4299
324
- pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=hFJ_J9MCUTjblJCBT_cV_glP--2toqHDCKLRGUIHSOQ,889
325
- pip/_vendor/cachecontrol/compat.py,sha256=3BisP29GBHAo0QxUrbpBsMeXSp8YzKQcGHwEW7VYU2U,724
326
- pip/_vendor/cachecontrol/controller.py,sha256=fTDK1V7NjpnU1hwfMboX4Vyh73-uWgL6QkghtvvyTrY,14525
327
- pip/_vendor/cachecontrol/filewrapper.py,sha256=YsK9ISeZg26n-rS0z7MdEcMTyQ9gW_fLb6zIRJvE2rg,2613
328
- pip/_vendor/cachecontrol/heuristics.py,sha256=yndlfXHJZ5u_TC1ECrV4fVl68OuWiXnDS0HPyscK1MM,4205
329
- pip/_vendor/cachecontrol/serialize.py,sha256=7Jq5PcVBH6RVI-qkKkQsV5yAiZCFQa7yFhvITw_DYsc,7279
330
- pip/_vendor/cachecontrol/wrapper.py,sha256=tKJnzRvbl7uJRxOChwlNLdJf9NR0QlnknQxgNzQW2kM,719
331
- pip/_vendor/certifi/__init__.py,sha256=mRf2Fl2WmJxc7O-Zob068lpqa3nlsU4215CXzbkoBBU,65
332
- pip/_vendor/certifi/__main__.py,sha256=4JJNpOgznsXzgISGReUBrJGB6Q4zJOlIV99WFE185fM,267
333
- pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc,,
334
- pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc,,
335
- pip/_vendor/certifi/__pycache__/core.cpython-310.pyc,,
336
- pip/_vendor/certifi/cacert.pem,sha256=3i-hfE2K5o3CBKG2tYt6ehJWk2fP64o6Th83fHPoPp4,259465
337
- pip/_vendor/certifi/core.py,sha256=u1ccq2BcSYX_ZtX61r6UFpwbKCKxNavjrzse_QVQ_PI,2916
338
- pip/_vendor/chardet/__init__.py,sha256=yxky3TQpsr5YTFEf5XYv0O4wq2e1WSilELYZ9e2AEes,3354
339
- pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc,,
340
- pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc,,
341
- pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc,,
342
- pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc,,
343
- pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc,,
344
- pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc,,
345
- pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc,,
346
- pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc,,
347
- pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc,,
348
- pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc,,
349
- pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc,,
350
- pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc,,
351
- pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc,,
352
- pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc,,
353
- pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc,,
354
- pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc,,
355
- pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc,,
356
- pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc,,
357
- pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc,,
358
- pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc,,
359
- pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc,,
360
- pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc,,
361
- pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc,,
362
- pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc,,
363
- pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc,,
364
- pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc,,
365
- pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc,,
366
- pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc,,
367
- pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc,,
368
- pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc,,
369
- pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc,,
370
- pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc,,
371
- pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc,,
372
- pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc,,
373
- pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc,,
374
- pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc,,
375
- pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc,,
376
- pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc,,
377
- pip/_vendor/chardet/__pycache__/version.cpython-310.pyc,,
378
- pip/_vendor/chardet/big5freq.py,sha256=dwRzRlsGp3Zgr1JQSSSwnxvyaZ7_q-5kuPfCVMuy4to,31640
379
- pip/_vendor/chardet/big5prober.py,sha256=TpmdoNfRtnQ7x9Q_p-a1CHaG-ok2mbisN5e9UHAtOiY,1804
380
- pip/_vendor/chardet/chardistribution.py,sha256=NzboAhfS6GODy_Tp6BkmUOL4NuxwTVfdVFcKA9bdUAo,9644
381
- pip/_vendor/chardet/charsetgroupprober.py,sha256=NPYh0Agp8UnrfqIls_qdbwszQ1mv9imGawGUCErFT6M,3946
382
- pip/_vendor/chardet/charsetprober.py,sha256=kk5-m0VdjqzbEhPRkBZ386R3fBQo3DxsBrdL-WFyk1o,5255
383
- pip/_vendor/chardet/cli/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
384
- pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc,,
385
- pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc,,
386
- pip/_vendor/chardet/cli/chardetect.py,sha256=535zsG4tA_x-_xPtEeDvn46QLib2nvF-5NT_nJdGgVs,2831
387
- pip/_vendor/chardet/codingstatemachine.py,sha256=qz9ZwK1q4mZ4s4zDRbyXu5KaGunYbk7g1Z7fqfb4mA4,3678
388
- pip/_vendor/chardet/compat.py,sha256=3j2eGvEAakISaIanHZ4wZutzfttNdRSdlo6RSjpyxsM,1236
389
- pip/_vendor/chardet/cp949prober.py,sha256=5NnMVUcel3jDY3w8ljD0cXyj2lcrvdagxOVE1jxl7xc,1904
390
- pip/_vendor/chardet/enums.py,sha256=3H_EIVP-VUYOdKqe2xmYdyooEDSLqS8sACMbn_3oejU,1737
391
- pip/_vendor/chardet/escprober.py,sha256=5MrTnVtZGEt3ssnY-lOXmOo3JY-CIqz9ruG3KjDpkbY,4051
392
- pip/_vendor/chardet/escsm.py,sha256=xQbwmM3Ieuskg-Aohyc6-bSfg3vsY0tx2TEKLDoVZGg,10756
393
- pip/_vendor/chardet/eucjpprober.py,sha256=PHumemJS19xMhDR4xPrsvxMfyBfsb297kVWmYz6zgy8,3841
394
- pip/_vendor/chardet/euckrfreq.py,sha256=MrLrIWMtlaDI0LYt-MM3MougBbLtSWHs6kvZx0VasIM,13741
395
- pip/_vendor/chardet/euckrprober.py,sha256=VbiOn7_id7mL9Q5GdeV0Ze3w5fG0nRCpUkEzeR-bnnY,1795
396
- pip/_vendor/chardet/euctwfreq.py,sha256=ZPBIHZDwNknGf7m6r4xGH8bX0W38qBpnTwVVv1QHw_M,32008
397
- pip/_vendor/chardet/euctwprober.py,sha256=hlUyGKUxzOPfBxCcyUcvRZSxgkLuvRoDU9wejp6YMiM,1793
398
- pip/_vendor/chardet/gb2312freq.py,sha256=aLHs-2GS8vmSM2ljyoWWgeVq_xRRcS_gN7ykpIiV43A,20998
399
- pip/_vendor/chardet/gb2312prober.py,sha256=msVbrDFcrJRE_XvsyETiqbTGfvdFhVIEZ2zBd-OENaE,1800
400
- pip/_vendor/chardet/hebrewprober.py,sha256=r81LqgKb24ZbvOmfi95MzItUxx7bkrjJR1ppkj5rvZw,14130
401
- pip/_vendor/chardet/jisfreq.py,sha256=vrqCR4CmwownBVXJ3Hh_gsfiDnIHOELbcNmTyC6Jx3w,26102
402
- pip/_vendor/chardet/jpcntx.py,sha256=Cn4cypo2y8CpqCan-zsdfYdEgXkRCnsqQoYaCu6FRjI,19876
403
- pip/_vendor/chardet/langbulgarianmodel.py,sha256=IuDOQ4uAe5spaYXt1F-2_496DFYd3J5lyLKKbVg-Nkw,110347
404
- pip/_vendor/chardet/langgreekmodel.py,sha256=cZRowhYjEUNYCevhuD5ZMHMiOIf3Pk1IpRixjTpRPB0,103969
405
- pip/_vendor/chardet/langhebrewmodel.py,sha256=p-xw_b2XvGVSIQFgQL91cVpS7u3vPpGJZ0udYxD07Do,103159
406
- pip/_vendor/chardet/langhungarianmodel.py,sha256=EKIZs5Z8Y-l6ORDcBzE9htOMMnAnr2j6Wb1PFRBMVxM,107148
407
- pip/_vendor/chardet/langrussianmodel.py,sha256=TFH-3rTFzbCBF15oasmoqf92FKBnwWY_HaN2ptl5WVo,136898
408
- pip/_vendor/chardet/langthaimodel.py,sha256=rTzLQ2x_RjQEzZfIksCR--SCFQyuP5eCtQpqxyl5-x8,107695
409
- pip/_vendor/chardet/langturkishmodel.py,sha256=fWI_tafe_UQ24gdOGqOWy1tnEY2jxKHoi4ueoT3rrrc,100329
410
- pip/_vendor/chardet/latin1prober.py,sha256=s1SFkEFY2NGe2_9bgX2MhOmyM_U_qSd_jVSdkdSgZxs,5515
411
- pip/_vendor/chardet/mbcharsetprober.py,sha256=hzFVD-brxTAVLnTAkDqa1ztd6RwGGwb5oAdvhj1-lE8,3504
412
- pip/_vendor/chardet/mbcsgroupprober.py,sha256=DlT-X7KRUl5y3SWJNqF1NXqvkjVc47jPKjJ2j4KVs3A,2066
413
- pip/_vendor/chardet/mbcssm.py,sha256=LGUDh1VB61rWsZB4QlJBzaCjI2PUEUgbBc91gPlX4DQ,26053
414
- pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
- pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc,,
416
- pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc,,
417
- pip/_vendor/chardet/metadata/languages.py,sha256=pGf_EnapgynSUCViRjUcwEi7AWw_bYPJFHCqerAFSbQ,19784
418
- pip/_vendor/chardet/sbcharsetprober.py,sha256=VPAZ5z-o8ixIIfEGTScLVXeQxkd3Zqi1eceerr0rb78,6281
419
- pip/_vendor/chardet/sbcsgroupprober.py,sha256=p8XICsXYXOF78Anypfvdne8K_0p8qFC-SUF5nwD1fo4,4392
420
- pip/_vendor/chardet/sjisprober.py,sha256=1WGev_SSHpa7AVXmM0DIONl1OvyKc8mdydUNaKtGGNI,3866
421
- pip/_vendor/chardet/universaldetector.py,sha256=C3ryFrDZ9JuroNMdYwgDa2_zAYJlWuPHyHLX5WtCY-g,12789
422
- pip/_vendor/chardet/utf8prober.py,sha256=rGwn69WfIvmibp0sWvYuH_TPoXs7zzwKHTX79Ojbr9o,2848
423
- pip/_vendor/chardet/version.py,sha256=LCY3oiBIflXJGeBYm7ly2aw6P9n272rhp3t7qz3oOHo,251
424
- pip/_vendor/colorama/__init__.py,sha256=besK61Glmusp-wZ1wjjSlsPKEY_6zndaeulh1FkVStw,245
425
- pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc,,
426
- pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc,,
427
- pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc,,
428
- pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc,,
429
- pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc,,
430
- pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc,,
431
- pip/_vendor/colorama/ansi.py,sha256=121ZIWJSdXR76TcqKXusVZQRgyb0AIlRnf5EW6oSGlQ,2624
432
- pip/_vendor/colorama/ansitowin32.py,sha256=bZByVMjpiUp-LSAK21KNvCh63UN9CPkXdHFPUsq20kA,10775
433
- pip/_vendor/colorama/initialise.py,sha256=J92wwYPAAEgdlAyw-ady4JJxl1j9UmXPodi0HicWDwg,1995
434
- pip/_vendor/colorama/win32.py,sha256=fI0Ani_DO_cYDAbHz_a0BsMbDKHCA1-P3PGcj0eDCmA,5556
435
- pip/_vendor/colorama/winterm.py,sha256=Zurpa5AEwarU62JTuERX53gGelEWH5SBUiAXN4CxMtA,6607
436
- pip/_vendor/distlib/__init__.py,sha256=iP0jP2IxDeV5bLyzuna9JsdxOw2AO-VqAMXslthb-oQ,604
437
- pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc,,
438
- pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc,,
439
- pip/_vendor/distlib/__pycache__/database.cpython-310.pyc,,
440
- pip/_vendor/distlib/__pycache__/index.cpython-310.pyc,,
441
- pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc,,
442
- pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc,,
443
- pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc,,
444
- pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc,,
445
- pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc,,
446
- pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc,,
447
- pip/_vendor/distlib/__pycache__/util.cpython-310.pyc,,
448
- pip/_vendor/distlib/__pycache__/version.cpython-310.pyc,,
449
- pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc,,
450
- pip/_vendor/distlib/_backport/__init__.py,sha256=XkACqtjaFfFn1QQBFDNxSqhMva0LqXeeh6H3fVwwLQ4,280
451
- pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-310.pyc,,
452
- pip/_vendor/distlib/_backport/__pycache__/misc.cpython-310.pyc,,
453
- pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-310.pyc,,
454
- pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-310.pyc,,
455
- pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc,,
456
- pip/_vendor/distlib/_backport/misc.py,sha256=focjmI7975W3LgEtiNC99lvxohfZdsNSLTakOcPNShs,1012
457
- pip/_vendor/distlib/_backport/shutil.py,sha256=h-yIttFtLq-_LKn5lLn4beHXzRwcmo2wEg4UKU7hX6E,26471
458
- pip/_vendor/distlib/_backport/sysconfig.cfg,sha256=LoipPkR2PfCKC7JUQBGxp6OFVlWIiWBXT-rNuzv8acU,2701
459
- pip/_vendor/distlib/_backport/sysconfig.py,sha256=qV5ZK6YVkHS-gUFacIT2TpFBw7bZJFH3DYa8PbT6O54,27640
460
- pip/_vendor/distlib/_backport/tarfile.py,sha256=fzwGLsCdTmO8uzoHjyjSgu4-srrDQEAcw4jNKUfvQH0,95235
461
- pip/_vendor/distlib/compat.py,sha256=Z8PBQ-ZPCJuRvzs5rtHuzceFOB8iYV8HHjAGrW3SQ8s,42528
462
- pip/_vendor/distlib/database.py,sha256=m_LtL3siDUdcSvftoTnXcjhUJA-WZhDwTvHO7rg72SA,52398
463
- pip/_vendor/distlib/index.py,sha256=LMZK2uX_oH2SNgPQ_lnnoJFFx6X5ByY-LBP8qgUTuC0,21248
464
- pip/_vendor/distlib/locators.py,sha256=mefGpRbPPG1Bl-UhNUquwBQR50J8uL0x2CSG-c5mbJs,53265
465
- pip/_vendor/distlib/manifest.py,sha256=0TlGw5ZyFp8wxr_GJz7tAAXGYwUJvceMIOsh9ydAXpM,15204
466
- pip/_vendor/distlib/markers.py,sha256=lTFISO7AcGHoYk2AQx_VFrjDltOFAg5YnPTvBGnOZtE,4474
467
- pip/_vendor/distlib/metadata.py,sha256=tCLNLfWfC-lQacX4bY-mBTKPgJZTiowKnLX2HWUcQeE,40167
468
- pip/_vendor/distlib/resources.py,sha256=DMriFf8j-5IXduPHW0YPnx50jQIbaOlvTQkPcdN5r88,11178
469
- pip/_vendor/distlib/scripts.py,sha256=-jtzATPNKOj8VpnxJUh1aXdUUkNpXiop-bOwsojbwWA,17671
470
- pip/_vendor/distlib/t32.exe,sha256=NS3xBCVAld35JVFNmb-1QRyVtThukMrwZVeXn4LhaEQ,96768
471
- pip/_vendor/distlib/t64.exe,sha256=oAqHes78rUWVM0OtVqIhUvequl_PKhAhXYQWnUf7zR0,105984
472
- pip/_vendor/distlib/util.py,sha256=w5nS2W71eWhilj69cZbERp6NR5rV1p_yIUbkwpvtqu4,69523
473
- pip/_vendor/distlib/version.py,sha256=cI1oZGIqY11EQn5P-jI_OqQml7jIxLFS52syBFIpXNU,24247
474
- pip/_vendor/distlib/w32.exe,sha256=lJtnZdeUxTZWya_EW5DZos_K5rswRECGspIl8ZJCIXs,90112
475
- pip/_vendor/distlib/w64.exe,sha256=0aRzoN2BO9NWW4ENy4_4vHkHR4qZTFZNVSAJJYlODTI,99840
476
- pip/_vendor/distlib/wheel.py,sha256=NNoICc3pe4uSF-gHpmqgGwQs3Q-0dnn5418JHS1ZI6c,44118
477
- pip/_vendor/distro.py,sha256=ni3ahks9qSr3P1FMur9zTPEF_xcAdaHW8iWZWqwB5mU,44858
478
- pip/_vendor/html5lib/__init__.py,sha256=Bmlpvs5dN2GoaWRAvN2UZ1yF_p7xb2zROelA0QxBKis,1195
479
- pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc,,
480
- pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc,,
481
- pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc,,
482
- pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc,,
483
- pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc,,
484
- pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc,,
485
- pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc,,
486
- pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc,,
487
- pip/_vendor/html5lib/_ihatexml.py,sha256=IyMKE35pNPCYYGs290_oSUhWXF1BQZsbVcXBzGuFvl4,17017
488
- pip/_vendor/html5lib/_inputstream.py,sha256=EA6Wj46jxuK6544Vnk9YOjIpFwGbfJW0Ar2cMH1H0VU,33271
489
- pip/_vendor/html5lib/_tokenizer.py,sha256=BUDNWZENVB0oFBiKR49sZsqQU4rzLLa13-byISlYRfA,78775
490
- pip/_vendor/html5lib/_trie/__init__.py,sha256=kfSo27BaU64El8U7bg4ugLmI3Ksywu54xE6BlhVgggA,114
491
- pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc,,
492
- pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc,,
493
- pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc,,
494
- pip/_vendor/html5lib/_trie/_base.py,sha256=LTpLNz1pn7LAcfn2TFvRp4moVPbFTkkbhzjPKUrvGes,1053
495
- pip/_vendor/html5lib/_trie/py.py,sha256=LmuYcbypKw-aMLcT0-IY6WewATGzg1QRkmyd8hTBQeY,1842
496
- pip/_vendor/html5lib/_utils.py,sha256=dLFxoZDTv5r38HOIHy45uxWwUY7VhLgbEFWNQw6Wppo,5090
497
- pip/_vendor/html5lib/constants.py,sha256=P9n6_ScDgAFkst0YfKaB-yaAlxVtUS9uMn5Lh8ywbQo,86410
498
- pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
499
- pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc,,
500
- pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc,,
501
- pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc,,
502
- pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc,,
503
- pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc,,
504
- pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc,,
505
- pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc,,
506
- pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc,,
507
- pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=0TV6VWJzhNkcLFiR7BNZUJsTJgAEEyZ02in6-PuL2gU,948
508
- pip/_vendor/html5lib/filters/base.py,sha256=6D2t423hbOLtjnvAAOrs1mWX1vsabMLBrWQF67ITPho,298
509
- pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=J-W5X3LyosH1sUipiHU1x-2ocd7g9JSudpIek_QlCUU,3018
510
- pip/_vendor/html5lib/filters/lint.py,sha256=O6sK29HXXW02Nv-EIEOfGvdQMuXxWvBePu2sQ2ecbJc,3736
511
- pip/_vendor/html5lib/filters/optionaltags.py,sha256=IVHcJ35kr6_MYBqahFMIK-Gel-ALLUk6Wk9X-or_yXk,10795
512
- pip/_vendor/html5lib/filters/sanitizer.py,sha256=uwT0HNJHjnw3Omf2LpmvfoVdIgAWb9_3VrMcWD1es_M,27813
513
- pip/_vendor/html5lib/filters/whitespace.py,sha256=bCC0mMQZicbq8HCg67pip_oScN5Fz_KkkvldfE137Kw,1252
514
- pip/_vendor/html5lib/html5parser.py,sha256=2xGZMaUvdkuuswAmpkazK1CXHT_y3-XTy4lS71PYUuU,119981
515
- pip/_vendor/html5lib/serializer.py,sha256=vMivcnRcQxjCSTrbMFdevLMhJ2HbF0cfv_CkroTODZM,16168
516
- pip/_vendor/html5lib/treeadapters/__init__.py,sha256=76InX2oJAx-C4rGAJziZsoE_CHI8_3thl6TeMgP-ypk,709
517
- pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc,,
518
- pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc,,
519
- pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc,,
520
- pip/_vendor/html5lib/treeadapters/genshi.py,sha256=nQHNa4Hu0IMpu4bqHbJJS3_Cd1pKXgDO1pgMZ6gADDg,1769
521
- pip/_vendor/html5lib/treeadapters/sax.py,sha256=PAmV6NG9BSpfMHUY72bDbXwAe6Q2tPn1BC2yAD-K1G0,1826
522
- pip/_vendor/html5lib/treebuilders/__init__.py,sha256=zfrXDjeqDo2M7cJFax6hRJs70Az4pfHFiZbuLOZ9YE4,3680
523
- pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc,,
524
- pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc,,
525
- pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc,,
526
- pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc,,
527
- pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc,,
528
- pip/_vendor/html5lib/treebuilders/base.py,sha256=Yao9LOJd-4KaLEx-3ysqRkAkhv1YaDqhTksvX6nuQyY,14982
529
- pip/_vendor/html5lib/treebuilders/dom.py,sha256=QWkBtUprtDosTiTFlIY6QpgKwk2-pD0AV84qVTNgiLo,9164
530
- pip/_vendor/html5lib/treebuilders/etree.py,sha256=k-LHrme562Hd5GmIi87r1_vfF25MtURGPurT3mAp8sY,13179
531
- pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=CviyyGjvv2TwN-m47DC8DFWdx0Gt-atRw9jMTv4v8-Q,15158
532
- pip/_vendor/html5lib/treewalkers/__init__.py,sha256=buyxCJb9LFfJ_1ZIMdc-Do1zV93Uw-7L942o2H-Swy0,5873
533
- pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc,,
534
- pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc,,
535
- pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc,,
536
- pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc,,
537
- pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc,,
538
- pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc,,
539
- pip/_vendor/html5lib/treewalkers/base.py,sha256=g-cLq7VStBtpZZZ1v_Tbwp3GhJjQ2oG5njgeHVhAaXE,7728
540
- pip/_vendor/html5lib/treewalkers/dom.py,sha256=fBJht3gn5a6y1WN2KE9gsUru158yTQ0KikT3vOM7Xc4,1456
541
- pip/_vendor/html5lib/treewalkers/etree.py,sha256=VtcKOS13qy9nv2PAaYoB1j9V1Z8n9o0AEA9KoGAgYOg,4682
542
- pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=u9X06RqSrHanDb0qGI-v8I99-PqzOzmnpZOspHHz_Io,6572
543
- pip/_vendor/html5lib/treewalkers/genshi.py,sha256=P_2Tnc2GkbWJfuodXN9oYIg6kN9E26aWXXe9iL0_eX4,2378
544
- pip/_vendor/idna/__init__.py,sha256=aHTBHXXun6n0ecdus8ToBvhs-4Ziin24HuNbJ9ZXE3o,893
545
- pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc,,
546
- pip/_vendor/idna/__pycache__/codec.cpython-310.pyc,,
547
- pip/_vendor/idna/__pycache__/compat.cpython-310.pyc,,
548
- pip/_vendor/idna/__pycache__/core.cpython-310.pyc,,
549
- pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc,,
550
- pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc,,
551
- pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc,,
552
- pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc,,
553
- pip/_vendor/idna/codec.py,sha256=LtpT6KflQ-NkZZXgLc0_ADLiShhKuC__nz_JmYyLnXs,3570
554
- pip/_vendor/idna/compat.py,sha256=Y-t409G3-dxunv_cSx0zrDjJkOKtC60ALLuqSknryXc,376
555
- pip/_vendor/idna/core.py,sha256=PWa20xVmQMBN8zgaBNXGNKCbQHOdnqKEpdcWCxXTidw,13235
556
- pip/_vendor/idna/idnadata.py,sha256=z3JZKnxitScqic6U-cO3rM_SmC2P0-UjUHEDnGv1xsQ,44400
557
- pip/_vendor/idna/intranges.py,sha256=Ipf6IPZDhD56FppDz_tjl_1YWzzh_viPiEBBp_nSQ8k,1991
558
- pip/_vendor/idna/package_data.py,sha256=MMuW8HkL_d3g6tkyzl7kIEN-fg9uyv6YDmk_v_jjL3U,23
559
- pip/_vendor/idna/uts46data.py,sha256=l_0BwSDthDPKq_AX35avb7jnXUgPEKgjf816traOf8s,210287
560
- pip/_vendor/msgpack/__init__.py,sha256=OhoFouHD7wOYMP2PN-Hlyk9RAZw39V-iPTDRsmkoIns,1172
561
- pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc,,
562
- pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc,,
563
- pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc,,
564
- pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc,,
565
- pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc,,
566
- pip/_vendor/msgpack/_version.py,sha256=qcv5IclQy1PSvtCYDvZyjaUSFWdHPIRzdGjv3YwkKCs,21
567
- pip/_vendor/msgpack/exceptions.py,sha256=2fCtczricqQgdT3NtW6cTqmZn3WA7GQtmlPuT-NhLyM,1129
568
- pip/_vendor/msgpack/ext.py,sha256=3Xznjz11nxxfQJe50uLzKDznWOvxOBxWSZ833DL_DDs,6281
569
- pip/_vendor/msgpack/fallback.py,sha256=ZaNwBMO2hh9WrqHnYqdHJaCv8zzPMnva9YhD5yInTpM,39113
570
- pip/_vendor/packaging/__about__.py,sha256=eoW72tGZd0YfLOf_tDScx_kjG1SFtdXMg79yNoJrxg4,687
571
- pip/_vendor/packaging/__init__.py,sha256=Rtl7XZgdQyDFurOf4u9TWH8UM8-Y6pNC9mfN1QP5NZY,522
572
- pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc,,
573
- pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc,,
574
- pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc,,
575
- pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc,,
576
- pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc,,
577
- pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc,,
578
- pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc,,
579
- pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc,,
580
- pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc,,
581
- pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc,,
582
- pip/_vendor/packaging/__pycache__/version.cpython-310.pyc,,
583
- pip/_vendor/packaging/_manylinux.py,sha256=qLGjZQVH7CwWE2jjOIyE2f4hektTsbtFc7UxfRCQzMI,11789
584
- pip/_vendor/packaging/_musllinux.py,sha256=Eq-8bd_ZnxcxPEZ-N4TTl7_HATTosVSmxMhZidXvg5g,4514
585
- pip/_vendor/packaging/_structures.py,sha256=9-rULC3_oZTgVRl9Furm3bFZe7xVsZeGiway_piR3c0,1696
586
- pip/_vendor/packaging/markers.py,sha256=nTk-tDQYPWjSMZSUIwGVaIvY3NbYmtQQLSXvAgBBxL8,8791
587
- pip/_vendor/packaging/requirements.py,sha256=PKbV9AWRNnqd0jGBMi83GPyS3hAUmx8IMxjQSJEBXsY,4822
588
- pip/_vendor/packaging/specifiers.py,sha256=HeDND7swHCqUzD9mKLuvXwBp8Rl-sBdWoA9okxul8cA,31792
589
- pip/_vendor/packaging/tags.py,sha256=aUZfcmH14rf5DAwYCHHjx5Z9zWnPAYqm9QKJf0yEkRk,16198
590
- pip/_vendor/packaging/utils.py,sha256=wl4SX90PE-_rF8s24QsN30N9afxY8BX42yKBmwI3wtU,4336
591
- pip/_vendor/packaging/version.py,sha256=CfhEcnRcBUAgA2viaZV9i5f84V0goapf5vSGgg3Yxl0,15169
592
- pip/_vendor/pep517/__init__.py,sha256=_xFPzQ0RNMbFs0cvD091C2aMOneiq-cTNfGj9uSTc3k,136
593
- pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc,,
594
- pip/_vendor/pep517/__pycache__/build.cpython-310.pyc,,
595
- pip/_vendor/pep517/__pycache__/check.cpython-310.pyc,,
596
- pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc,,
597
- pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc,,
598
- pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc,,
599
- pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc,,
600
- pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc,,
601
- pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc,,
602
- pip/_vendor/pep517/build.py,sha256=MDBFdwDA7ygdOFkHRZDA2vmbLuM5vIg3PYnHAszhMz8,3596
603
- pip/_vendor/pep517/check.py,sha256=FwTS6MXy67e7MCC3QPsN4g7sou0Pg1FkXxMBLimFJQ4,6303
604
- pip/_vendor/pep517/colorlog.py,sha256=uOdcoDYZ0ocKGRPPs5JgvpLYVDIfoEVvoMpc43ICQFU,4213
605
- pip/_vendor/pep517/compat.py,sha256=BmdEmQQW3XQqBjgDov0EWT-q1V-ECANNzDp692gUTdg,1113
606
- pip/_vendor/pep517/dirtools.py,sha256=hrSzAJOGDo3tXdtCbgJ6LqoLhPVJn6JGmekz1ofLi6o,1173
607
- pip/_vendor/pep517/envbuild.py,sha256=D8XnGq1CZKAuIAMZQxpJQrvDwkjKRzKotHAOpr_AF1M,6283
608
- pip/_vendor/pep517/in_process/__init__.py,sha256=IZ3Qr3CBsGM77dePRWUxnF9FADyAi0imlDLX5MWGPz8,580
609
- pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc,,
610
- pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc,,
611
- pip/_vendor/pep517/in_process/_in_process.py,sha256=MW1-Z-5WuMGVy0cdY3-kgSr2rEO7bIYDlhgMuMHciEw,11182
612
- pip/_vendor/pep517/meta.py,sha256=ZkHYB0YHt4FDuSE5NdFuVsat3xfZ6LgW6VS6d4D6vIQ,2555
613
- pip/_vendor/pep517/wrappers.py,sha256=mgBTFXDKJtKluWpQ7VMZda49ZUzFGSNu5d_PYJLoor0,13629
614
- pip/_vendor/pkg_resources/__init__.py,sha256=zeMvnKzGEcWISjTwy6YtFKWamTFJdwBwYjBAFUoyf7A,111573
615
- pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc,,
616
- pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc,,
617
- pip/_vendor/pkg_resources/py31compat.py,sha256=tzQGe-w8g7GEXb6Ozw2-v8ZHaIygADmw0LAgriYzPAc,585
618
- pip/_vendor/progress/__init__.py,sha256=YTntFxK5CZDfVAa1b77EbNkWljGqvyM72YKRTHaHap8,5034
619
- pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc,,
620
- pip/_vendor/progress/__pycache__/bar.cpython-310.pyc,,
621
- pip/_vendor/progress/__pycache__/counter.cpython-310.pyc,,
622
- pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc,,
623
- pip/_vendor/progress/bar.py,sha256=evFQod41y2bMU60teK16uV-A5F4yVUehab8dtCiXj1E,2945
624
- pip/_vendor/progress/counter.py,sha256=c8AdstUGrFQvIQbvtHjjXxZx6LCflrY-a7DVM6IYTBs,1413
625
- pip/_vendor/progress/spinner.py,sha256=zLcx2RFinPfM6UwveJJrcJ8YABE3aLCAKqQFVD3pHow,1423
626
- pip/_vendor/pyparsing.py,sha256=lD3A8iEK1JYvnNDP00Cgve4vZjwEFonCvrpo7mEl3Q8,280501
627
- pip/_vendor/requests/__init__.py,sha256=IPdrlLH8zOpx45fFKwMSH9HT_d9wfwdjjoka0HEY9ps,5267
628
- pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc,,
629
- pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc,,
630
- pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc,,
631
- pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc,,
632
- pip/_vendor/requests/__pycache__/api.cpython-310.pyc,,
633
- pip/_vendor/requests/__pycache__/auth.cpython-310.pyc,,
634
- pip/_vendor/requests/__pycache__/certs.cpython-310.pyc,,
635
- pip/_vendor/requests/__pycache__/compat.cpython-310.pyc,,
636
- pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc,,
637
- pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc,,
638
- pip/_vendor/requests/__pycache__/help.cpython-310.pyc,,
639
- pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc,,
640
- pip/_vendor/requests/__pycache__/models.cpython-310.pyc,,
641
- pip/_vendor/requests/__pycache__/packages.cpython-310.pyc,,
642
- pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc,,
643
- pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc,,
644
- pip/_vendor/requests/__pycache__/structures.cpython-310.pyc,,
645
- pip/_vendor/requests/__pycache__/utils.cpython-310.pyc,,
646
- pip/_vendor/requests/__version__.py,sha256=SKjnGRNIWoxDQR1pAkRW3fen6mAXw7MruEBPlqvEjuE,455
647
- pip/_vendor/requests/_internal_utils.py,sha256=zDALdxFfs4pAp4CME_TTw2rGyYR2EGBpSehYHgfn8o0,1138
648
- pip/_vendor/requests/adapters.py,sha256=v-nXh1zlxNzGQWQicaDrnsMmus75p2c99GPOtPl-6uw,22081
649
- pip/_vendor/requests/api.py,sha256=IPHU2zrGr6hURdheImh9lqurXPhQlv4PFOkjik6dmSQ,6561
650
- pip/_vendor/requests/auth.py,sha256=xe7s91xl3ENjQgRlZP3-2KsACnXYHAiLOuHLDw6nyyQ,10512
651
- pip/_vendor/requests/certs.py,sha256=fFBPJjnP90gWELetFYPbzrsfZgSZopej7XhlkrnVVec,483
652
- pip/_vendor/requests/compat.py,sha256=xfkhI1O0M1RPT9n92GEeoalPuBOYMsdApi7TONmwWD8,2121
653
- pip/_vendor/requests/cookies.py,sha256=PIxSKntoUn6l2irwR-CBMgm0scK8s-6yUZzwoCVIAdo,18979
654
- pip/_vendor/requests/exceptions.py,sha256=-_Uvqm89mT79nPWoxlf_NF7JawnsfHcJdAeIipOiAQg,3377
655
- pip/_vendor/requests/help.py,sha256=HQ9KRPaFWwmEYS46TnLTyaGYXGNv-G3RQyO9yUfa7Gg,4104
656
- pip/_vendor/requests/hooks.py,sha256=LAWGUHI8SB52PkhFYbwyPcT6mWsjuVJeeZpM0RUTADc,791
657
- pip/_vendor/requests/models.py,sha256=eBTofFVVYXXqpuqkMrPzRNYKJfuICHhw5bPn6bi-lEI,35890
658
- pip/_vendor/requests/packages.py,sha256=ry2VlKGoCDdr8ZJyNCXxDcAF1HfENfmoylCK-_VzXh0,711
659
- pip/_vendor/requests/sessions.py,sha256=xn0NHgjfsCdvZoi11vUDP8zS0LPM0sVuZP_6qYNC7kw,30949
660
- pip/_vendor/requests/status_codes.py,sha256=ef_TQlJHa44J6_nrl_hTw6h7I-oZS8qg2MHCu9YyzYY,4311
661
- pip/_vendor/requests/structures.py,sha256=ssrNLrH8XELX89hk4yRQYEVeHnbopq1HAJBfgu38bi8,3110
662
- pip/_vendor/requests/utils.py,sha256=dZh-kGRO-A8sLHdHp_hcS_5u4syIDRRE2T-un0s4HwM,32407
663
- pip/_vendor/resolvelib/__init__.py,sha256=g_NlynQjt3xlCb_JRtRIrV6Y-zBYSkQMxH4NtoC4Axc,563
664
- pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc,,
665
- pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc,,
666
- pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc,,
667
- pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc,,
668
- pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc,,
669
- pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
670
- pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc,,
671
- pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc,,
672
- pip/_vendor/resolvelib/compat/collections_abc.py,sha256=RCp_gXYFZUg2DF2iUPTTD-XSpBTia4xEuJhjbXNzQyM,162
673
- pip/_vendor/resolvelib/providers.py,sha256=4rEMGvu_xM5qx42oiIeMwgfwsrd1vCUZusmbfvMknWg,5762
674
- pip/_vendor/resolvelib/reporters.py,sha256=Yi7l5VMEKyhL20KIEglPukQHWJHkweV4e4amcJs-4yk,1401
675
- pip/_vendor/resolvelib/resolvers.py,sha256=nlrz0Zql6opJgYgnBoFg3FwG_Z9lGp8rAi7hooQ33E8,17698
676
- pip/_vendor/resolvelib/structs.py,sha256=8HTLTjfJCdDs2FBt3EqaNiFbn0oelLG9OQK9htCvBpE,4959
677
- pip/_vendor/six.py,sha256=MB08ff_RApHF8XMk2vSx581-xTyX6sf_pQOtz6j1BZU,35547
678
- pip/_vendor/tenacity/__init__.py,sha256=YfrArVagvtYH5gcjBOlOQ2u6dx2C2N4X1x0DOUBXv5Y,18774
679
- pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc,,
680
- pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc,,
681
- pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc,,
682
- pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc,,
683
- pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc,,
684
- pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc,,
685
- pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc,,
686
- pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc,,
687
- pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc,,
688
- pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc,,
689
- pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc,,
690
- pip/_vendor/tenacity/_asyncio.py,sha256=jZcrONVfckAiLERCKTxI9DJ_Aeq4fquZj9G7Vr1_I7s,3406
691
- pip/_vendor/tenacity/_utils.py,sha256=J2-zhV7bDTTuye-U8jtimO7lN1x70_a23qAdKniuzSE,2012
692
- pip/_vendor/tenacity/after.py,sha256=mJq5ygM_NzL69Bx63RbI24IU5KgGHqmwl3AbQXiTCTc,1542
693
- pip/_vendor/tenacity/before.py,sha256=RmWTv09-aU_3kFVRJw6PX3dp74ZZqnRD1UZUoCWw5XY,1417
694
- pip/_vendor/tenacity/before_sleep.py,sha256=gSQPoPHevxpluUv0ASzd2Z4AOfq8Q8Y7XOns32cL4n8,1966
695
- pip/_vendor/tenacity/nap.py,sha256=5DH1ui6-d3X4ZsQCRKJhY5jaQ0NdYZ2AEqt7Svt5VFM,1426
696
- pip/_vendor/tenacity/retry.py,sha256=VsJQ9DcYTMr0ZeV43yhQfBDDJD1y5av52TJ0OSwvqLw,6858
697
- pip/_vendor/tenacity/stop.py,sha256=lVnfBu2fzvqVtsL-HH8o1m_HborN7zLnlXBWa2UzM-A,2886
698
- pip/_vendor/tenacity/tornadoweb.py,sha256=2wGpfDdTztK9Sk74ARv8prohTReTQzst9a1m1qo5bBs,2204
699
- pip/_vendor/tenacity/wait.py,sha256=t16nLHioncGDdKA6ETwTNzABC-RrZiR-7HS1pXikVsg,6882
700
- pip/_vendor/tomli/__init__.py,sha256=fUFJngh-LwLWqbgw4Vc7wvxnfTdrIK8Nc7wvydyxOjw,236
701
- pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc,,
702
- pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc,,
703
- pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc,,
704
- pip/_vendor/tomli/_parser.py,sha256=946C00VAWqHjKSueGK44YSAU_Ufwg4LQmvd8yqta2dg,23118
705
- pip/_vendor/tomli/_re.py,sha256=tGGogP0HJnQDBSITAPldXRB5TLQeaC069FBzxVOOy5k,2764
706
- pip/_vendor/urllib3/__init__.py,sha256=FzLqycdKhCzSxjYOPTX50D3qf0lTCe6UgfZdwT-Li7o,2848
707
- pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc,,
708
- pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc,,
709
- pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc,,
710
- pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc,,
711
- pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc,,
712
- pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc,,
713
- pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc,,
714
- pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc,,
715
- pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc,,
716
- pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc,,
717
- pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc,,
718
- pip/_vendor/urllib3/_collections.py,sha256=RQtWWhudTDETvb2BCVqih1QTpXS2Q5HSf77UJY5ditA,11148
719
- pip/_vendor/urllib3/_version.py,sha256=Cs83ZyfrMWqd18tvuyiZ-SW91-r7-fsCZ-S3EnE-7Vk,65
720
- pip/_vendor/urllib3/connection.py,sha256=ml6ucQ9HfP5eR3t_x7Qpgkke62PF92i-b_XYrIUdZeI,19293
721
- pip/_vendor/urllib3/connectionpool.py,sha256=itteZaSObupTC6p-6YYcI3KTQdLwgQxlS01w_hOoQqA,38198
722
- pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
723
- pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc,,
724
- pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc,,
725
- pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc,,
726
- pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc,,
727
- pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc,,
728
- pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc,,
729
- pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc,,
730
- pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=POYJSeNWacJYwXQdv0If3v56lcoiHuL6MQE8pwG1Yoc,993
731
- pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
732
- pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc,,
733
- pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc,,
734
- pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc,,
735
- pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=jreOmmwBW-Cio0m7I_OjmP028nqgrGuo_oB2f7Gir3s,18168
736
- pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=0KKeznz3h0z-SBDbCtGorDfgCgiZ30VQOqkX5ZgaPBY,14304
737
- pip/_vendor/urllib3/contrib/appengine.py,sha256=nlIR6iWZ0A1cV9X4dYwdx7H1F1tqGE7ai9QCfJ7ntFo,11348
738
- pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=JCCrvNQpXdL3eb_D4AoviNnl71nYhSX2r-hG9N-dPf4,4668
739
- pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=093d4DdfHcz0h8KcEg-D9fQEUtXaVLENmOkzOqNQ5eU,17402
740
- pip/_vendor/urllib3/contrib/securetransport.py,sha256=ozB5tLGYiVgN2NLx9vvzVxjdtY9nNj9mBxGsCYTwEGI,35356
741
- pip/_vendor/urllib3/contrib/socks.py,sha256=RqYih4HGeICnKzmYnG3MMo2xMlCdwb1bAdEuo6zCA_Y,7313
742
- pip/_vendor/urllib3/exceptions.py,sha256=QDT9xy1fNxui5aS7dMabeb1gokQOQ-zOT7XiDp-O5Qo,8540
743
- pip/_vendor/urllib3/fields.py,sha256=0KSfpuXxzXUMLkI2npM9siWOqCJO1H4wCiJN6neVmlA,8853
744
- pip/_vendor/urllib3/filepost.py,sha256=BVkEES0YAO9tFwXGBj1mD9yO92pRwk4pX5Q6cO5IRb8,2538
745
- pip/_vendor/urllib3/packages/__init__.py,sha256=FsOIVHqBFBlT3XxZnaD5y2yq0mvtVwmY4kut3GEfcBI,113
746
- pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc,,
747
- pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc,,
748
- pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
749
- pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc,,
750
- pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc,,
751
- pip/_vendor/urllib3/packages/backports/makefile.py,sha256=DREmQjGcs2LoVH_Q3hrggClhTNdcI5Y3GJglsuihjAM,1468
752
- pip/_vendor/urllib3/packages/six.py,sha256=dUImuFN7dZON9oeQQqHjXdwH3n2Oxr9148Ns4K4Y2xg,35743
753
- pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py,sha256=d-Tyw37qbvVdcjcVF4WLYiM7AXaOpIg386C2P2uB5Ks,951
754
- pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-310.pyc,,
755
- pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-310.pyc,,
756
- pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py,sha256=WXs1yNtk9PsYVmeTJQAcqeAm81zbzeabEWWf-xRJSAo,5839
757
- pip/_vendor/urllib3/poolmanager.py,sha256=blNTYqVqFg9zUGncVtyXk1HQsTxKO1Cy9hfGVLAGvhM,20299
758
- pip/_vendor/urllib3/request.py,sha256=Fe4bQCUhum8qh3t1dihpSsQwdyfd5nB44cNX8566DmM,6155
759
- pip/_vendor/urllib3/response.py,sha256=LjfUJBUhwPrJTrGgNI3WoySUizNEPd1Xiv71YxE2J7Y,29024
760
- pip/_vendor/urllib3/util/__init__.py,sha256=UV_J7p9b29cJXXQ6wTvBZppJDLUeKQ6mcv0v1ptl13c,1204
761
- pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc,,
762
- pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc,,
763
- pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc,,
764
- pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc,,
765
- pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc,,
766
- pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc,,
767
- pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc,,
768
- pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc,,
769
- pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc,,
770
- pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc,,
771
- pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc,,
772
- pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc,,
773
- pip/_vendor/urllib3/util/connection.py,sha256=hoiT3Z-vROOSOB-4JrFyRKzF67xYt-ZTFMTiYj1yd6Q,5070
774
- pip/_vendor/urllib3/util/proxy.py,sha256=xMGYpCWlY1Obf1nod_fhOG3rk3NTUM2q_BJmj6B_NmU,1660
775
- pip/_vendor/urllib3/util/queue.py,sha256=mY2d0cfoJG51UEKZwk_sJMwYraofNfQWq7Larj9xh_o,520
776
- pip/_vendor/urllib3/util/request.py,sha256=O-NJTFysuN_wgY33pne8xA1P35qv3R7uh67ER9zwqYM,4266
777
- pip/_vendor/urllib3/util/response.py,sha256=685vBStgxTo8u3KoOilR6Kuh7IGPZr7TmzrP9awEtqU,3617
778
- pip/_vendor/urllib3/util/retry.py,sha256=6xS4OYGWN2gz8kX34RH6ly7Uc6YcfCb2Z3V0QMdHpys,21993
779
- pip/_vendor/urllib3/util/ssl_.py,sha256=WILvlnNl3FxrO1-AuSJzGBuFTLCNIfkzRbhNvIuxseU,17672
780
- pip/_vendor/urllib3/util/ssltransport.py,sha256=r8zXGD19jRdpYPlAt9wR-mBg9aVRIB3UkV1GiT5uENQ,7152
781
- pip/_vendor/urllib3/util/timeout.py,sha256=Ym2WjTspeYp4fzcCYGTQ5aSU1neVSMHXBAgDp1rcETw,10271
782
- pip/_vendor/urllib3/util/url.py,sha256=3MdcqSYaGz4A2FIwYwe4KclwnrTn6ZdEG1-sUoCniUo,14479
783
- pip/_vendor/urllib3/util/wait.py,sha256=qk2qJQNb3FjhOm9lKJtpByhnsLWRVapWdhW_NLr7Eog,5557
784
- pip/_vendor/vendor.txt,sha256=gryMWlplkGEQkjoFzG1xYAfARSAghGWVWX-fGObCxOw,386
785
- pip/_vendor/webencodings/__init__.py,sha256=kG5cBDbIrAtrrdU-h1iSPVYq10ayTFldU1CTRcb1ym4,10921
786
- pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc,,
787
- pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc,,
788
- pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc,,
789
- pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc,,
790
- pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc,,
791
- pip/_vendor/webencodings/labels.py,sha256=e9gPVTA1XNYalJMVVX7lXvb52Kurc4UdnXFJDPcBXFE,9210
792
- pip/_vendor/webencodings/mklabels.py,sha256=tyhoDDc-TC6kjJY25Qn5TlsyMs2_IyPf_rfh4L6nSrg,1364
793
- pip/_vendor/webencodings/tests.py,sha256=7J6TdufKEml8sQSWcYEsl-e73QXtPmsIHF6pPT0sq08,6716
794
- pip/_vendor/webencodings/x_user_defined.py,sha256=CMn5bx2ccJ4y3Bsqf3xC24bYO4ONC3ZY_lv5vrqhKAY,4632
795
- pip/py.typed,sha256=9_aEgAx4lyfhJKT_8nv7mk-FpX3Mdtn8cV5Fw11xicg,290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip-21.2.3.dist-info/REQUESTED DELETED
File without changes
venv/Lib/site-packages/pip-21.2.3.dist-info/WHEEL DELETED
@@ -1,5 +0,0 @@
1
- Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.36.2)
3
- Root-Is-Purelib: true
4
- Tag: py3-none-any
5
-
 
 
 
 
 
 
venv/Lib/site-packages/pip-21.2.3.dist-info/entry_points.txt DELETED
@@ -1,5 +0,0 @@
1
- [console_scripts]
2
- pip = pip._internal.cli.main:main
3
- pip3 = pip._internal.cli.main:main
4
- pip3.8 = pip._internal.cli.main:main
5
-
 
 
 
 
 
 
venv/Lib/site-packages/pip-21.2.3.dist-info/top_level.txt DELETED
@@ -1 +0,0 @@
1
- pip
 
 
venv/Lib/site-packages/pip/__init__.py DELETED
@@ -1,13 +0,0 @@
1
- from typing import List, Optional
2
-
3
- __version__ = "21.2.3"
4
-
5
-
6
- def main(args: Optional[List[str]] = None) -> int:
7
- """This is an internal API only meant for use by pip's own console scripts.
8
-
9
- For additional details, see https://github.com/pypa/pip/issues/7498.
10
- """
11
- from pip._internal.utils.entrypoints import _wrapper
12
-
13
- return _wrapper(args)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/__main__.py DELETED
@@ -1,31 +0,0 @@
1
- import os
2
- import sys
3
- import warnings
4
-
5
- # Remove '' and current working directory from the first entry
6
- # of sys.path, if present to avoid using current directory
7
- # in pip commands check, freeze, install, list and show,
8
- # when invoked as python -m pip <command>
9
- if sys.path[0] in ("", os.getcwd()):
10
- sys.path.pop(0)
11
-
12
- # If we are running from a wheel, add the wheel to sys.path
13
- # This allows the usage python pip-*.whl/pip install pip-*.whl
14
- if __package__ == "":
15
- # __file__ is pip-*.whl/pip/__main__.py
16
- # first dirname call strips of '/__main__.py', second strips off '/pip'
17
- # Resulting path is the name of the wheel itself
18
- # Add that to sys.path so we can import pip
19
- path = os.path.dirname(os.path.dirname(__file__))
20
- sys.path.insert(0, path)
21
-
22
- if __name__ == "__main__":
23
- # Work around the error reported in #9540, pending a proper fix.
24
- # Note: It is essential the warning filter is set *before* importing
25
- # pip, as the deprecation happens at import time, not runtime.
26
- warnings.filterwarnings(
27
- "ignore", category=DeprecationWarning, module=".*packaging\\.version"
28
- )
29
- from pip._internal.cli.main import main as _main
30
-
31
- sys.exit(_main())
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc DELETED
Binary file (644 Bytes)
 
venv/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc DELETED
Binary file (605 Bytes)
 
venv/Lib/site-packages/pip/_internal/__init__.py DELETED
@@ -1,19 +0,0 @@
1
- from typing import List, Optional
2
-
3
- import pip._internal.utils.inject_securetransport # noqa
4
- from pip._internal.utils import _log
5
-
6
- # init_logging() must be called before any call to logging.getLogger()
7
- # which happens at import of most modules.
8
- _log.init_logging()
9
-
10
-
11
- def main(args: (Optional[List[str]]) = None) -> int:
12
- """This is preserved for old console scripts that may still be referencing
13
- it.
14
-
15
- For additional details, see https://github.com/pypa/pip/issues/7498.
16
- """
17
- from pip._internal.utils.entrypoints import _wrapper
18
-
19
- return _wrapper(args)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc DELETED
Binary file (765 Bytes)
 
venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc DELETED
Binary file (9.14 kB)
 
venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc DELETED
Binary file (7.77 kB)
 
venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc DELETED
Binary file (10.7 kB)
 
venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc DELETED
Binary file (15.3 kB)
 
venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc DELETED
Binary file (589 Bytes)
 
venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc DELETED
Binary file (3.46 kB)
 
venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc DELETED
Binary file (4.37 kB)
 
venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc DELETED
Binary file (8.3 kB)
 
venv/Lib/site-packages/pip/_internal/build_env.py DELETED
@@ -1,294 +0,0 @@
1
- """Build Environment used for isolation during sdist building
2
- """
3
-
4
- import contextlib
5
- import logging
6
- import os
7
- import pathlib
8
- import sys
9
- import textwrap
10
- import zipfile
11
- from collections import OrderedDict
12
- from sysconfig import get_paths
13
- from types import TracebackType
14
- from typing import TYPE_CHECKING, Iterable, Iterator, List, Optional, Set, Tuple, Type
15
-
16
- from pip._vendor.certifi import where
17
- from pip._vendor.packaging.requirements import Requirement
18
- from pip._vendor.packaging.version import Version
19
-
20
- from pip import __file__ as pip_location
21
- from pip._internal.cli.spinners import open_spinner
22
- from pip._internal.locations import get_platlib, get_prefixed_libs, get_purelib
23
- from pip._internal.metadata import get_environment
24
- from pip._internal.utils.subprocess import call_subprocess
25
- from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds
26
-
27
- if TYPE_CHECKING:
28
- from pip._internal.index.package_finder import PackageFinder
29
-
30
- logger = logging.getLogger(__name__)
31
-
32
-
33
- class _Prefix:
34
-
35
- def __init__(self, path):
36
- # type: (str) -> None
37
- self.path = path
38
- self.setup = False
39
- self.bin_dir = get_paths(
40
- 'nt' if os.name == 'nt' else 'posix_prefix',
41
- vars={'base': path, 'platbase': path}
42
- )['scripts']
43
- self.lib_dirs = get_prefixed_libs(path)
44
-
45
-
46
- @contextlib.contextmanager
47
- def _create_standalone_pip() -> Iterator[str]:
48
- """Create a "standalone pip" zip file.
49
-
50
- The zip file's content is identical to the currently-running pip.
51
- It will be used to install requirements into the build environment.
52
- """
53
- source = pathlib.Path(pip_location).resolve().parent
54
-
55
- # Return the current instance if `source` is not a directory. We can't build
56
- # a zip from this, and it likely means the instance is already standalone.
57
- if not source.is_dir():
58
- yield str(source)
59
- return
60
-
61
- with TempDirectory(kind="standalone-pip") as tmp_dir:
62
- pip_zip = os.path.join(tmp_dir.path, "__env_pip__.zip")
63
- kwargs = {}
64
- if sys.version_info >= (3, 8):
65
- kwargs["strict_timestamps"] = False
66
- with zipfile.ZipFile(pip_zip, "w", **kwargs) as zf:
67
- for child in source.rglob("*"):
68
- zf.write(child, child.relative_to(source.parent).as_posix())
69
- yield os.path.join(pip_zip, "pip")
70
-
71
-
72
- class BuildEnvironment:
73
- """Creates and manages an isolated environment to install build deps
74
- """
75
-
76
- def __init__(self):
77
- # type: () -> None
78
- temp_dir = TempDirectory(
79
- kind=tempdir_kinds.BUILD_ENV, globally_managed=True
80
- )
81
-
82
- self._prefixes = OrderedDict(
83
- (name, _Prefix(os.path.join(temp_dir.path, name)))
84
- for name in ('normal', 'overlay')
85
- )
86
-
87
- self._bin_dirs = [] # type: List[str]
88
- self._lib_dirs = [] # type: List[str]
89
- for prefix in reversed(list(self._prefixes.values())):
90
- self._bin_dirs.append(prefix.bin_dir)
91
- self._lib_dirs.extend(prefix.lib_dirs)
92
-
93
- # Customize site to:
94
- # - ensure .pth files are honored
95
- # - prevent access to system site packages
96
- system_sites = {
97
- os.path.normcase(site) for site in (get_purelib(), get_platlib())
98
- }
99
- self._site_dir = os.path.join(temp_dir.path, 'site')
100
- if not os.path.exists(self._site_dir):
101
- os.mkdir(self._site_dir)
102
- with open(os.path.join(self._site_dir, 'sitecustomize.py'), 'w') as fp:
103
- fp.write(textwrap.dedent(
104
- '''
105
- import os, site, sys
106
-
107
- # First, drop system-sites related paths.
108
- original_sys_path = sys.path[:]
109
- known_paths = set()
110
- for path in {system_sites!r}:
111
- site.addsitedir(path, known_paths=known_paths)
112
- system_paths = set(
113
- os.path.normcase(path)
114
- for path in sys.path[len(original_sys_path):]
115
- )
116
- original_sys_path = [
117
- path for path in original_sys_path
118
- if os.path.normcase(path) not in system_paths
119
- ]
120
- sys.path = original_sys_path
121
-
122
- # Second, add lib directories.
123
- # ensuring .pth file are processed.
124
- for path in {lib_dirs!r}:
125
- assert not path in sys.path
126
- site.addsitedir(path)
127
- '''
128
- ).format(system_sites=system_sites, lib_dirs=self._lib_dirs))
129
-
130
- def __enter__(self):
131
- # type: () -> None
132
- self._save_env = {
133
- name: os.environ.get(name, None)
134
- for name in ('PATH', 'PYTHONNOUSERSITE', 'PYTHONPATH')
135
- }
136
-
137
- path = self._bin_dirs[:]
138
- old_path = self._save_env['PATH']
139
- if old_path:
140
- path.extend(old_path.split(os.pathsep))
141
-
142
- pythonpath = [self._site_dir]
143
-
144
- os.environ.update({
145
- 'PATH': os.pathsep.join(path),
146
- 'PYTHONNOUSERSITE': '1',
147
- 'PYTHONPATH': os.pathsep.join(pythonpath),
148
- })
149
-
150
- def __exit__(
151
- self,
152
- exc_type, # type: Optional[Type[BaseException]]
153
- exc_val, # type: Optional[BaseException]
154
- exc_tb # type: Optional[TracebackType]
155
- ):
156
- # type: (...) -> None
157
- for varname, old_value in self._save_env.items():
158
- if old_value is None:
159
- os.environ.pop(varname, None)
160
- else:
161
- os.environ[varname] = old_value
162
-
163
- def check_requirements(self, reqs):
164
- # type: (Iterable[str]) -> Tuple[Set[Tuple[str, str]], Set[str]]
165
- """Return 2 sets:
166
- - conflicting requirements: set of (installed, wanted) reqs tuples
167
- - missing requirements: set of reqs
168
- """
169
- missing = set()
170
- conflicting = set()
171
- if reqs:
172
- env = get_environment(self._lib_dirs)
173
- for req_str in reqs:
174
- req = Requirement(req_str)
175
- dist = env.get_distribution(req.name)
176
- if not dist:
177
- missing.add(req_str)
178
- continue
179
- if isinstance(dist.version, Version):
180
- installed_req_str = f"{req.name}=={dist.version}"
181
- else:
182
- installed_req_str = f"{req.name}==={dist.version}"
183
- if dist.version not in req.specifier:
184
- conflicting.add((installed_req_str, req_str))
185
- # FIXME: Consider direct URL?
186
- return conflicting, missing
187
-
188
- def install_requirements(
189
- self,
190
- finder, # type: PackageFinder
191
- requirements, # type: Iterable[str]
192
- prefix_as_string, # type: str
193
- message # type: str
194
- ):
195
- # type: (...) -> None
196
- prefix = self._prefixes[prefix_as_string]
197
- assert not prefix.setup
198
- prefix.setup = True
199
- if not requirements:
200
- return
201
- with contextlib.ExitStack() as ctx:
202
- # TODO: Remove this block when dropping 3.6 support. Python 3.6
203
- # lacks importlib.resources and pep517 has issues loading files in
204
- # a zip, so we fallback to the "old" method by adding the current
205
- # pip directory to the child process's sys.path.
206
- if sys.version_info < (3, 7):
207
- pip_runnable = os.path.dirname(pip_location)
208
- else:
209
- pip_runnable = ctx.enter_context(_create_standalone_pip())
210
- self._install_requirements(
211
- pip_runnable,
212
- finder,
213
- requirements,
214
- prefix,
215
- message,
216
- )
217
-
218
- @staticmethod
219
- def _install_requirements(
220
- pip_runnable: str,
221
- finder: "PackageFinder",
222
- requirements: Iterable[str],
223
- prefix: _Prefix,
224
- message: str,
225
- ) -> None:
226
- args = [
227
- sys.executable, pip_runnable, 'install',
228
- '--ignore-installed', '--no-user', '--prefix', prefix.path,
229
- '--no-warn-script-location',
230
- ] # type: List[str]
231
- if logger.getEffectiveLevel() <= logging.DEBUG:
232
- args.append('-v')
233
- for format_control in ('no_binary', 'only_binary'):
234
- formats = getattr(finder.format_control, format_control)
235
- args.extend(('--' + format_control.replace('_', '-'),
236
- ','.join(sorted(formats or {':none:'}))))
237
-
238
- index_urls = finder.index_urls
239
- if index_urls:
240
- args.extend(['-i', index_urls[0]])
241
- for extra_index in index_urls[1:]:
242
- args.extend(['--extra-index-url', extra_index])
243
- else:
244
- args.append('--no-index')
245
- for link in finder.find_links:
246
- args.extend(['--find-links', link])
247
-
248
- for host in finder.trusted_hosts:
249
- args.extend(['--trusted-host', host])
250
- if finder.allow_all_prereleases:
251
- args.append('--pre')
252
- if finder.prefer_binary:
253
- args.append('--prefer-binary')
254
- args.append('--')
255
- args.extend(requirements)
256
- extra_environ = {"_PIP_STANDALONE_CERT": where()}
257
- with open_spinner(message) as spinner:
258
- call_subprocess(args, spinner=spinner, extra_environ=extra_environ)
259
-
260
-
261
- class NoOpBuildEnvironment(BuildEnvironment):
262
- """A no-op drop-in replacement for BuildEnvironment
263
- """
264
-
265
- def __init__(self):
266
- # type: () -> None
267
- pass
268
-
269
- def __enter__(self):
270
- # type: () -> None
271
- pass
272
-
273
- def __exit__(
274
- self,
275
- exc_type, # type: Optional[Type[BaseException]]
276
- exc_val, # type: Optional[BaseException]
277
- exc_tb # type: Optional[TracebackType]
278
- ):
279
- # type: (...) -> None
280
- pass
281
-
282
- def cleanup(self):
283
- # type: () -> None
284
- pass
285
-
286
- def install_requirements(
287
- self,
288
- finder, # type: PackageFinder
289
- requirements, # type: Iterable[str]
290
- prefix_as_string, # type: str
291
- message # type: str
292
- ):
293
- # type: (...) -> None
294
- raise NotImplementedError()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cache.py DELETED
@@ -1,287 +0,0 @@
1
- """Cache Management
2
- """
3
-
4
- import hashlib
5
- import json
6
- import logging
7
- import os
8
- from typing import Any, Dict, List, Optional, Set
9
-
10
- from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version
11
- from pip._vendor.packaging.utils import canonicalize_name
12
-
13
- from pip._internal.exceptions import InvalidWheelFilename
14
- from pip._internal.models.format_control import FormatControl
15
- from pip._internal.models.link import Link
16
- from pip._internal.models.wheel import Wheel
17
- from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds
18
- from pip._internal.utils.urls import path_to_url
19
-
20
- logger = logging.getLogger(__name__)
21
-
22
-
23
- def _hash_dict(d):
24
- # type: (Dict[str, str]) -> str
25
- """Return a stable sha224 of a dictionary."""
26
- s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True)
27
- return hashlib.sha224(s.encode("ascii")).hexdigest()
28
-
29
-
30
- class Cache:
31
- """An abstract class - provides cache directories for data from links
32
-
33
-
34
- :param cache_dir: The root of the cache.
35
- :param format_control: An object of FormatControl class to limit
36
- binaries being read from the cache.
37
- :param allowed_formats: which formats of files the cache should store.
38
- ('binary' and 'source' are the only allowed values)
39
- """
40
-
41
- def __init__(self, cache_dir, format_control, allowed_formats):
42
- # type: (str, FormatControl, Set[str]) -> None
43
- super().__init__()
44
- assert not cache_dir or os.path.isabs(cache_dir)
45
- self.cache_dir = cache_dir or None
46
- self.format_control = format_control
47
- self.allowed_formats = allowed_formats
48
-
49
- _valid_formats = {"source", "binary"}
50
- assert self.allowed_formats.union(_valid_formats) == _valid_formats
51
-
52
- def _get_cache_path_parts(self, link):
53
- # type: (Link) -> List[str]
54
- """Get parts of part that must be os.path.joined with cache_dir
55
- """
56
-
57
- # We want to generate an url to use as our cache key, we don't want to
58
- # just re-use the URL because it might have other items in the fragment
59
- # and we don't care about those.
60
- key_parts = {"url": link.url_without_fragment}
61
- if link.hash_name is not None and link.hash is not None:
62
- key_parts[link.hash_name] = link.hash
63
- if link.subdirectory_fragment:
64
- key_parts["subdirectory"] = link.subdirectory_fragment
65
-
66
- # Include interpreter name, major and minor version in cache key
67
- # to cope with ill-behaved sdists that build a different wheel
68
- # depending on the python version their setup.py is being run on,
69
- # and don't encode the difference in compatibility tags.
70
- # https://github.com/pypa/pip/issues/7296
71
- key_parts["interpreter_name"] = interpreter_name()
72
- key_parts["interpreter_version"] = interpreter_version()
73
-
74
- # Encode our key url with sha224, we'll use this because it has similar
75
- # security properties to sha256, but with a shorter total output (and
76
- # thus less secure). However the differences don't make a lot of
77
- # difference for our use case here.
78
- hashed = _hash_dict(key_parts)
79
-
80
- # We want to nest the directories some to prevent having a ton of top
81
- # level directories where we might run out of sub directories on some
82
- # FS.
83
- parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]]
84
-
85
- return parts
86
-
87
- def _get_candidates(self, link, canonical_package_name):
88
- # type: (Link, str) -> List[Any]
89
- can_not_cache = (
90
- not self.cache_dir or
91
- not canonical_package_name or
92
- not link
93
- )
94
- if can_not_cache:
95
- return []
96
-
97
- formats = self.format_control.get_allowed_formats(
98
- canonical_package_name
99
- )
100
- if not self.allowed_formats.intersection(formats):
101
- return []
102
-
103
- candidates = []
104
- path = self.get_path_for_link(link)
105
- if os.path.isdir(path):
106
- for candidate in os.listdir(path):
107
- candidates.append((candidate, path))
108
- return candidates
109
-
110
- def get_path_for_link(self, link):
111
- # type: (Link) -> str
112
- """Return a directory to store cached items in for link.
113
- """
114
- raise NotImplementedError()
115
-
116
- def get(
117
- self,
118
- link, # type: Link
119
- package_name, # type: Optional[str]
120
- supported_tags, # type: List[Tag]
121
- ):
122
- # type: (...) -> Link
123
- """Returns a link to a cached item if it exists, otherwise returns the
124
- passed link.
125
- """
126
- raise NotImplementedError()
127
-
128
-
129
- class SimpleWheelCache(Cache):
130
- """A cache of wheels for future installs.
131
- """
132
-
133
- def __init__(self, cache_dir, format_control):
134
- # type: (str, FormatControl) -> None
135
- super().__init__(cache_dir, format_control, {"binary"})
136
-
137
- def get_path_for_link(self, link):
138
- # type: (Link) -> str
139
- """Return a directory to store cached wheels for link
140
-
141
- Because there are M wheels for any one sdist, we provide a directory
142
- to cache them in, and then consult that directory when looking up
143
- cache hits.
144
-
145
- We only insert things into the cache if they have plausible version
146
- numbers, so that we don't contaminate the cache with things that were
147
- not unique. E.g. ./package might have dozens of installs done for it
148
- and build a version of 0.0...and if we built and cached a wheel, we'd
149
- end up using the same wheel even if the source has been edited.
150
-
151
- :param link: The link of the sdist for which this will cache wheels.
152
- """
153
- parts = self._get_cache_path_parts(link)
154
- assert self.cache_dir
155
- # Store wheels within the root cache_dir
156
- return os.path.join(self.cache_dir, "wheels", *parts)
157
-
158
- def get(
159
- self,
160
- link, # type: Link
161
- package_name, # type: Optional[str]
162
- supported_tags, # type: List[Tag]
163
- ):
164
- # type: (...) -> Link
165
- candidates = []
166
-
167
- if not package_name:
168
- return link
169
-
170
- canonical_package_name = canonicalize_name(package_name)
171
- for wheel_name, wheel_dir in self._get_candidates(
172
- link, canonical_package_name
173
- ):
174
- try:
175
- wheel = Wheel(wheel_name)
176
- except InvalidWheelFilename:
177
- continue
178
- if canonicalize_name(wheel.name) != canonical_package_name:
179
- logger.debug(
180
- "Ignoring cached wheel %s for %s as it "
181
- "does not match the expected distribution name %s.",
182
- wheel_name, link, package_name,
183
- )
184
- continue
185
- if not wheel.supported(supported_tags):
186
- # Built for a different python/arch/etc
187
- continue
188
- candidates.append(
189
- (
190
- wheel.support_index_min(supported_tags),
191
- wheel_name,
192
- wheel_dir,
193
- )
194
- )
195
-
196
- if not candidates:
197
- return link
198
-
199
- _, wheel_name, wheel_dir = min(candidates)
200
- return Link(path_to_url(os.path.join(wheel_dir, wheel_name)))
201
-
202
-
203
- class EphemWheelCache(SimpleWheelCache):
204
- """A SimpleWheelCache that creates it's own temporary cache directory
205
- """
206
-
207
- def __init__(self, format_control):
208
- # type: (FormatControl) -> None
209
- self._temp_dir = TempDirectory(
210
- kind=tempdir_kinds.EPHEM_WHEEL_CACHE,
211
- globally_managed=True,
212
- )
213
-
214
- super().__init__(self._temp_dir.path, format_control)
215
-
216
-
217
- class CacheEntry:
218
- def __init__(
219
- self,
220
- link, # type: Link
221
- persistent, # type: bool
222
- ):
223
- self.link = link
224
- self.persistent = persistent
225
-
226
-
227
- class WheelCache(Cache):
228
- """Wraps EphemWheelCache and SimpleWheelCache into a single Cache
229
-
230
- This Cache allows for gracefully degradation, using the ephem wheel cache
231
- when a certain link is not found in the simple wheel cache first.
232
- """
233
-
234
- def __init__(self, cache_dir, format_control):
235
- # type: (str, FormatControl) -> None
236
- super().__init__(cache_dir, format_control, {'binary'})
237
- self._wheel_cache = SimpleWheelCache(cache_dir, format_control)
238
- self._ephem_cache = EphemWheelCache(format_control)
239
-
240
- def get_path_for_link(self, link):
241
- # type: (Link) -> str
242
- return self._wheel_cache.get_path_for_link(link)
243
-
244
- def get_ephem_path_for_link(self, link):
245
- # type: (Link) -> str
246
- return self._ephem_cache.get_path_for_link(link)
247
-
248
- def get(
249
- self,
250
- link, # type: Link
251
- package_name, # type: Optional[str]
252
- supported_tags, # type: List[Tag]
253
- ):
254
- # type: (...) -> Link
255
- cache_entry = self.get_cache_entry(link, package_name, supported_tags)
256
- if cache_entry is None:
257
- return link
258
- return cache_entry.link
259
-
260
- def get_cache_entry(
261
- self,
262
- link, # type: Link
263
- package_name, # type: Optional[str]
264
- supported_tags, # type: List[Tag]
265
- ):
266
- # type: (...) -> Optional[CacheEntry]
267
- """Returns a CacheEntry with a link to a cached item if it exists or
268
- None. The cache entry indicates if the item was found in the persistent
269
- or ephemeral cache.
270
- """
271
- retval = self._wheel_cache.get(
272
- link=link,
273
- package_name=package_name,
274
- supported_tags=supported_tags,
275
- )
276
- if retval is not link:
277
- return CacheEntry(retval, persistent=True)
278
-
279
- retval = self._ephem_cache.get(
280
- link=link,
281
- package_name=package_name,
282
- supported_tags=supported_tags,
283
- )
284
- if retval is not link:
285
- return CacheEntry(retval, persistent=False)
286
-
287
- return None
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cli/__init__.py DELETED
@@ -1,4 +0,0 @@
1
- """Subpackage containing all of pip's command line interface related code
2
- """
3
-
4
- # This file intentionally does not import submodules
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc DELETED
Binary file (284 Bytes)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc DELETED
Binary file (5.19 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc DELETED
Binary file (5.99 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc DELETED
Binary file (22.4 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc DELETED
Binary file (1.32 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc DELETED
Binary file (1.38 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc DELETED
Binary file (2.17 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc DELETED
Binary file (9.96 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc DELETED
Binary file (7.62 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc DELETED
Binary file (12.2 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc DELETED
Binary file (4.96 kB)
 
venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc DELETED
Binary file (363 Bytes)
 
venv/Lib/site-packages/pip/_internal/cli/autocompletion.py DELETED
@@ -1,163 +0,0 @@
1
- """Logic that powers autocompletion installed by ``pip completion``.
2
- """
3
-
4
- import optparse
5
- import os
6
- import sys
7
- from itertools import chain
8
- from typing import Any, Iterable, List, Optional
9
-
10
- from pip._internal.cli.main_parser import create_main_parser
11
- from pip._internal.commands import commands_dict, create_command
12
- from pip._internal.metadata import get_default_environment
13
-
14
-
15
- def autocomplete() -> None:
16
- """Entry Point for completion of main and subcommand options."""
17
- # Don't complete if user hasn't sourced bash_completion file.
18
- if "PIP_AUTO_COMPLETE" not in os.environ:
19
- return
20
- cwords = os.environ["COMP_WORDS"].split()[1:]
21
- cword = int(os.environ["COMP_CWORD"])
22
- try:
23
- current = cwords[cword - 1]
24
- except IndexError:
25
- current = ""
26
-
27
- parser = create_main_parser()
28
- subcommands = list(commands_dict)
29
- options = []
30
-
31
- # subcommand
32
- subcommand_name: Optional[str] = None
33
- for word in cwords:
34
- if word in subcommands:
35
- subcommand_name = word
36
- break
37
- # subcommand options
38
- if subcommand_name is not None:
39
- # special case: 'help' subcommand has no options
40
- if subcommand_name == "help":
41
- sys.exit(1)
42
- # special case: list locally installed dists for show and uninstall
43
- should_list_installed = not current.startswith("-") and subcommand_name in [
44
- "show",
45
- "uninstall",
46
- ]
47
- if should_list_installed:
48
- env = get_default_environment()
49
- lc = current.lower()
50
- installed = [
51
- dist.canonical_name
52
- for dist in env.iter_installed_distributions(local_only=True)
53
- if dist.canonical_name.startswith(lc)
54
- and dist.canonical_name not in cwords[1:]
55
- ]
56
- # if there are no dists installed, fall back to option completion
57
- if installed:
58
- for dist in installed:
59
- print(dist)
60
- sys.exit(1)
61
-
62
- subcommand = create_command(subcommand_name)
63
-
64
- for opt in subcommand.parser.option_list_all:
65
- if opt.help != optparse.SUPPRESS_HELP:
66
- for opt_str in opt._long_opts + opt._short_opts:
67
- options.append((opt_str, opt.nargs))
68
-
69
- # filter out previously specified options from available options
70
- prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]]
71
- options = [(x, v) for (x, v) in options if x not in prev_opts]
72
- # filter options by current input
73
- options = [(k, v) for k, v in options if k.startswith(current)]
74
- # get completion type given cwords and available subcommand options
75
- completion_type = get_path_completion_type(
76
- cwords,
77
- cword,
78
- subcommand.parser.option_list_all,
79
- )
80
- # get completion files and directories if ``completion_type`` is
81
- # ``<file>``, ``<dir>`` or ``<path>``
82
- if completion_type:
83
- paths = auto_complete_paths(current, completion_type)
84
- options = [(path, 0) for path in paths]
85
- for option in options:
86
- opt_label = option[0]
87
- # append '=' to options which require args
88
- if option[1] and option[0][:2] == "--":
89
- opt_label += "="
90
- print(opt_label)
91
- else:
92
- # show main parser options only when necessary
93
-
94
- opts = [i.option_list for i in parser.option_groups]
95
- opts.append(parser.option_list)
96
- flattened_opts = chain.from_iterable(opts)
97
- if current.startswith("-"):
98
- for opt in flattened_opts:
99
- if opt.help != optparse.SUPPRESS_HELP:
100
- subcommands += opt._long_opts + opt._short_opts
101
- else:
102
- # get completion type given cwords and all available options
103
- completion_type = get_path_completion_type(cwords, cword, flattened_opts)
104
- if completion_type:
105
- subcommands = list(auto_complete_paths(current, completion_type))
106
-
107
- print(" ".join([x for x in subcommands if x.startswith(current)]))
108
- sys.exit(1)
109
-
110
-
111
- def get_path_completion_type(
112
- cwords: List[str], cword: int, opts: Iterable[Any]
113
- ) -> Optional[str]:
114
- """Get the type of path completion (``file``, ``dir``, ``path`` or None)
115
-
116
- :param cwords: same as the environmental variable ``COMP_WORDS``
117
- :param cword: same as the environmental variable ``COMP_CWORD``
118
- :param opts: The available options to check
119
- :return: path completion type (``file``, ``dir``, ``path`` or None)
120
- """
121
- if cword < 2 or not cwords[cword - 2].startswith("-"):
122
- return None
123
- for opt in opts:
124
- if opt.help == optparse.SUPPRESS_HELP:
125
- continue
126
- for o in str(opt).split("/"):
127
- if cwords[cword - 2].split("=")[0] == o:
128
- if not opt.metavar or any(
129
- x in ("path", "file", "dir") for x in opt.metavar.split("/")
130
- ):
131
- return opt.metavar
132
- return None
133
-
134
-
135
- def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]:
136
- """If ``completion_type`` is ``file`` or ``path``, list all regular files
137
- and directories starting with ``current``; otherwise only list directories
138
- starting with ``current``.
139
-
140
- :param current: The word to be completed
141
- :param completion_type: path completion type(`file`, `path` or `dir`)i
142
- :return: A generator of regular files and/or directories
143
- """
144
- directory, filename = os.path.split(current)
145
- current_path = os.path.abspath(directory)
146
- # Don't complete paths if they can't be accessed
147
- if not os.access(current_path, os.R_OK):
148
- return
149
- filename = os.path.normcase(filename)
150
- # list all files that start with ``filename``
151
- file_list = (
152
- x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename)
153
- )
154
- for f in file_list:
155
- opt = os.path.join(current_path, f)
156
- comp_file = os.path.normcase(os.path.join(directory, f))
157
- # complete regular files when there is not ``<dir>`` after option
158
- # complete directories when there is ``<file>``, ``<path>`` or
159
- # ``<dir>``after option
160
- if completion_type != "dir" and os.path.isfile(opt):
161
- yield comp_file
162
- elif os.path.isdir(opt):
163
- yield os.path.join(comp_file, "")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cli/base_command.py DELETED
@@ -1,214 +0,0 @@
1
- """Base Command class, and related routines"""
2
-
3
- import logging
4
- import logging.config
5
- import optparse
6
- import os
7
- import sys
8
- import traceback
9
- from optparse import Values
10
- from typing import Any, List, Optional, Tuple
11
-
12
- from pip._internal.cli import cmdoptions
13
- from pip._internal.cli.command_context import CommandContextMixIn
14
- from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter
15
- from pip._internal.cli.status_codes import (
16
- ERROR,
17
- PREVIOUS_BUILD_DIR_ERROR,
18
- UNKNOWN_ERROR,
19
- VIRTUALENV_NOT_FOUND,
20
- )
21
- from pip._internal.exceptions import (
22
- BadCommand,
23
- CommandError,
24
- InstallationError,
25
- NetworkConnectionError,
26
- PreviousBuildDirError,
27
- UninstallationError,
28
- )
29
- from pip._internal.utils.deprecation import deprecated
30
- from pip._internal.utils.filesystem import check_path_owner
31
- from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging
32
- from pip._internal.utils.misc import get_prog, normalize_path
33
- from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry
34
- from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry
35
- from pip._internal.utils.virtualenv import running_under_virtualenv
36
-
37
- __all__ = ["Command"]
38
-
39
- logger = logging.getLogger(__name__)
40
-
41
-
42
- class Command(CommandContextMixIn):
43
- usage: str = ""
44
- ignore_require_venv: bool = False
45
-
46
- def __init__(self, name: str, summary: str, isolated: bool = False) -> None:
47
- super().__init__()
48
-
49
- self.name = name
50
- self.summary = summary
51
- self.parser = ConfigOptionParser(
52
- usage=self.usage,
53
- prog=f"{get_prog()} {name}",
54
- formatter=UpdatingDefaultsHelpFormatter(),
55
- add_help_option=False,
56
- name=name,
57
- description=self.__doc__,
58
- isolated=isolated,
59
- )
60
-
61
- self.tempdir_registry: Optional[TempDirRegistry] = None
62
-
63
- # Commands should add options to this option group
64
- optgroup_name = f"{self.name.capitalize()} Options"
65
- self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name)
66
-
67
- # Add the general options
68
- gen_opts = cmdoptions.make_option_group(
69
- cmdoptions.general_group,
70
- self.parser,
71
- )
72
- self.parser.add_option_group(gen_opts)
73
-
74
- self.add_options()
75
-
76
- def add_options(self) -> None:
77
- pass
78
-
79
- def handle_pip_version_check(self, options: Values) -> None:
80
- """
81
- This is a no-op so that commands by default do not do the pip version
82
- check.
83
- """
84
- # Make sure we do the pip version check if the index_group options
85
- # are present.
86
- assert not hasattr(options, "no_index")
87
-
88
- def run(self, options: Values, args: List[Any]) -> int:
89
- raise NotImplementedError
90
-
91
- def parse_args(self, args: List[str]) -> Tuple[Any, Any]:
92
- # factored out for testability
93
- return self.parser.parse_args(args)
94
-
95
- def main(self, args: List[str]) -> int:
96
- try:
97
- with self.main_context():
98
- return self._main(args)
99
- finally:
100
- logging.shutdown()
101
-
102
- def _main(self, args: List[str]) -> int:
103
- # We must initialize this before the tempdir manager, otherwise the
104
- # configuration would not be accessible by the time we clean up the
105
- # tempdir manager.
106
- self.tempdir_registry = self.enter_context(tempdir_registry())
107
- # Intentionally set as early as possible so globally-managed temporary
108
- # directories are available to the rest of the code.
109
- self.enter_context(global_tempdir_manager())
110
-
111
- options, args = self.parse_args(args)
112
-
113
- # Set verbosity so that it can be used elsewhere.
114
- self.verbosity = options.verbose - options.quiet
115
-
116
- level_number = setup_logging(
117
- verbosity=self.verbosity,
118
- no_color=options.no_color,
119
- user_log_file=options.log,
120
- )
121
-
122
- # TODO: Try to get these passing down from the command?
123
- # without resorting to os.environ to hold these.
124
- # This also affects isolated builds and it should.
125
-
126
- if options.no_input:
127
- os.environ["PIP_NO_INPUT"] = "1"
128
-
129
- if options.exists_action:
130
- os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action)
131
-
132
- if options.require_venv and not self.ignore_require_venv:
133
- # If a venv is required check if it can really be found
134
- if not running_under_virtualenv():
135
- logger.critical("Could not find an activated virtualenv (required).")
136
- sys.exit(VIRTUALENV_NOT_FOUND)
137
-
138
- if options.cache_dir:
139
- options.cache_dir = normalize_path(options.cache_dir)
140
- if not check_path_owner(options.cache_dir):
141
- logger.warning(
142
- "The directory '%s' or its parent directory is not owned "
143
- "or is not writable by the current user. The cache "
144
- "has been disabled. Check the permissions and owner of "
145
- "that directory. If executing pip with sudo, you should "
146
- "use sudo's -H flag.",
147
- options.cache_dir,
148
- )
149
- options.cache_dir = None
150
-
151
- if getattr(options, "build_dir", None):
152
- deprecated(
153
- reason=(
154
- "The -b/--build/--build-dir/--build-directory "
155
- "option is deprecated and has no effect anymore."
156
- ),
157
- replacement=(
158
- "use the TMPDIR/TEMP/TMP environment variable, "
159
- "possibly combined with --no-clean"
160
- ),
161
- gone_in="21.3",
162
- issue=8333,
163
- )
164
-
165
- if "2020-resolver" in options.features_enabled:
166
- logger.warning(
167
- "--use-feature=2020-resolver no longer has any effect, "
168
- "since it is now the default dependency resolver in pip. "
169
- "This will become an error in pip 21.0."
170
- )
171
-
172
- try:
173
- status = self.run(options, args)
174
- assert isinstance(status, int)
175
- return status
176
- except PreviousBuildDirError as exc:
177
- logger.critical(str(exc))
178
- logger.debug("Exception information:", exc_info=True)
179
-
180
- return PREVIOUS_BUILD_DIR_ERROR
181
- except (
182
- InstallationError,
183
- UninstallationError,
184
- BadCommand,
185
- NetworkConnectionError,
186
- ) as exc:
187
- logger.critical(str(exc))
188
- logger.debug("Exception information:", exc_info=True)
189
-
190
- return ERROR
191
- except CommandError as exc:
192
- logger.critical("%s", exc)
193
- logger.debug("Exception information:", exc_info=True)
194
-
195
- return ERROR
196
- except BrokenStdoutLoggingError:
197
- # Bypass our logger and write any remaining messages to stderr
198
- # because stdout no longer works.
199
- print("ERROR: Pipe to stdout was broken", file=sys.stderr)
200
- if level_number <= logging.DEBUG:
201
- traceback.print_exc(file=sys.stderr)
202
-
203
- return ERROR
204
- except KeyboardInterrupt:
205
- logger.critical("Operation cancelled by user")
206
- logger.debug("Exception information:", exc_info=True)
207
-
208
- return ERROR
209
- except BaseException:
210
- logger.critical("Exception:", exc_info=True)
211
-
212
- return UNKNOWN_ERROR
213
- finally:
214
- self.handle_pip_version_check(options)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py DELETED
@@ -1,1009 +0,0 @@
1
- """
2
- shared options and groups
3
-
4
- The principle here is to define options once, but *not* instantiate them
5
- globally. One reason being that options with action='append' can carry state
6
- between parses. pip parses general options twice internally, and shouldn't
7
- pass on state. To be consistent, all options will follow this design.
8
- """
9
-
10
- # The following comment should be removed at some point in the future.
11
- # mypy: strict-optional=False
12
-
13
- import os
14
- import textwrap
15
- import warnings
16
- from functools import partial
17
- from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values
18
- from textwrap import dedent
19
- from typing import Any, Callable, Dict, Optional, Tuple
20
-
21
- from pip._vendor.packaging.utils import canonicalize_name
22
-
23
- from pip._internal.cli.parser import ConfigOptionParser
24
- from pip._internal.cli.progress_bars import BAR_TYPES
25
- from pip._internal.exceptions import CommandError
26
- from pip._internal.locations import USER_CACHE_DIR, get_src_prefix
27
- from pip._internal.models.format_control import FormatControl
28
- from pip._internal.models.index import PyPI
29
- from pip._internal.models.target_python import TargetPython
30
- from pip._internal.utils.hashes import STRONG_HASHES
31
- from pip._internal.utils.misc import strtobool
32
-
33
-
34
- def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None:
35
- """
36
- Raise an option parsing error using parser.error().
37
-
38
- Args:
39
- parser: an OptionParser instance.
40
- option: an Option instance.
41
- msg: the error text.
42
- """
43
- msg = f"{option} error: {msg}"
44
- msg = textwrap.fill(" ".join(msg.split()))
45
- parser.error(msg)
46
-
47
-
48
- def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup:
49
- """
50
- Return an OptionGroup object
51
- group -- assumed to be dict with 'name' and 'options' keys
52
- parser -- an optparse Parser
53
- """
54
- option_group = OptionGroup(parser, group["name"])
55
- for option in group["options"]:
56
- option_group.add_option(option())
57
- return option_group
58
-
59
-
60
- def check_install_build_global(
61
- options: Values, check_options: Optional[Values] = None
62
- ) -> None:
63
- """Disable wheels if per-setup.py call options are set.
64
-
65
- :param options: The OptionParser options to update.
66
- :param check_options: The options to check, if not supplied defaults to
67
- options.
68
- """
69
- if check_options is None:
70
- check_options = options
71
-
72
- def getname(n: str) -> Optional[Any]:
73
- return getattr(check_options, n, None)
74
-
75
- names = ["build_options", "global_options", "install_options"]
76
- if any(map(getname, names)):
77
- control = options.format_control
78
- control.disallow_binaries()
79
- warnings.warn(
80
- "Disabling all use of wheels due to the use of --build-option "
81
- "/ --global-option / --install-option.",
82
- stacklevel=2,
83
- )
84
-
85
-
86
- def check_dist_restriction(options: Values, check_target: bool = False) -> None:
87
- """Function for determining if custom platform options are allowed.
88
-
89
- :param options: The OptionParser options.
90
- :param check_target: Whether or not to check if --target is being used.
91
- """
92
- dist_restriction_set = any(
93
- [
94
- options.python_version,
95
- options.platforms,
96
- options.abis,
97
- options.implementation,
98
- ]
99
- )
100
-
101
- binary_only = FormatControl(set(), {":all:"})
102
- sdist_dependencies_allowed = (
103
- options.format_control != binary_only and not options.ignore_dependencies
104
- )
105
-
106
- # Installations or downloads using dist restrictions must not combine
107
- # source distributions and dist-specific wheels, as they are not
108
- # guaranteed to be locally compatible.
109
- if dist_restriction_set and sdist_dependencies_allowed:
110
- raise CommandError(
111
- "When restricting platform and interpreter constraints using "
112
- "--python-version, --platform, --abi, or --implementation, "
113
- "either --no-deps must be set, or --only-binary=:all: must be "
114
- "set and --no-binary must not be set (or must be set to "
115
- ":none:)."
116
- )
117
-
118
- if check_target:
119
- if dist_restriction_set and not options.target_dir:
120
- raise CommandError(
121
- "Can not use any platform or abi specific options unless "
122
- "installing via '--target'"
123
- )
124
-
125
-
126
- def _path_option_check(option: Option, opt: str, value: str) -> str:
127
- return os.path.expanduser(value)
128
-
129
-
130
- def _package_name_option_check(option: Option, opt: str, value: str) -> str:
131
- return canonicalize_name(value)
132
-
133
-
134
- class PipOption(Option):
135
- TYPES = Option.TYPES + ("path", "package_name")
136
- TYPE_CHECKER = Option.TYPE_CHECKER.copy()
137
- TYPE_CHECKER["package_name"] = _package_name_option_check
138
- TYPE_CHECKER["path"] = _path_option_check
139
-
140
-
141
- ###########
142
- # options #
143
- ###########
144
-
145
- help_: Callable[..., Option] = partial(
146
- Option,
147
- "-h",
148
- "--help",
149
- dest="help",
150
- action="help",
151
- help="Show help.",
152
- )
153
-
154
- isolated_mode: Callable[..., Option] = partial(
155
- Option,
156
- "--isolated",
157
- dest="isolated_mode",
158
- action="store_true",
159
- default=False,
160
- help=(
161
- "Run pip in an isolated mode, ignoring environment variables and user "
162
- "configuration."
163
- ),
164
- )
165
-
166
- require_virtualenv: Callable[..., Option] = partial(
167
- Option,
168
- # Run only if inside a virtualenv, bail if not.
169
- "--require-virtualenv",
170
- "--require-venv",
171
- dest="require_venv",
172
- action="store_true",
173
- default=False,
174
- help=SUPPRESS_HELP,
175
- )
176
-
177
- verbose: Callable[..., Option] = partial(
178
- Option,
179
- "-v",
180
- "--verbose",
181
- dest="verbose",
182
- action="count",
183
- default=0,
184
- help="Give more output. Option is additive, and can be used up to 3 times.",
185
- )
186
-
187
- no_color: Callable[..., Option] = partial(
188
- Option,
189
- "--no-color",
190
- dest="no_color",
191
- action="store_true",
192
- default=False,
193
- help="Suppress colored output.",
194
- )
195
-
196
- version: Callable[..., Option] = partial(
197
- Option,
198
- "-V",
199
- "--version",
200
- dest="version",
201
- action="store_true",
202
- help="Show version and exit.",
203
- )
204
-
205
- quiet: Callable[..., Option] = partial(
206
- Option,
207
- "-q",
208
- "--quiet",
209
- dest="quiet",
210
- action="count",
211
- default=0,
212
- help=(
213
- "Give less output. Option is additive, and can be used up to 3"
214
- " times (corresponding to WARNING, ERROR, and CRITICAL logging"
215
- " levels)."
216
- ),
217
- )
218
-
219
- progress_bar: Callable[..., Option] = partial(
220
- Option,
221
- "--progress-bar",
222
- dest="progress_bar",
223
- type="choice",
224
- choices=list(BAR_TYPES.keys()),
225
- default="on",
226
- help=(
227
- "Specify type of progress to be displayed ["
228
- + "|".join(BAR_TYPES.keys())
229
- + "] (default: %default)"
230
- ),
231
- )
232
-
233
- log: Callable[..., Option] = partial(
234
- PipOption,
235
- "--log",
236
- "--log-file",
237
- "--local-log",
238
- dest="log",
239
- metavar="path",
240
- type="path",
241
- help="Path to a verbose appending log.",
242
- )
243
-
244
- no_input: Callable[..., Option] = partial(
245
- Option,
246
- # Don't ask for input
247
- "--no-input",
248
- dest="no_input",
249
- action="store_true",
250
- default=False,
251
- help="Disable prompting for input.",
252
- )
253
-
254
- proxy: Callable[..., Option] = partial(
255
- Option,
256
- "--proxy",
257
- dest="proxy",
258
- type="str",
259
- default="",
260
- help="Specify a proxy in the form [user:passwd@]proxy.server:port.",
261
- )
262
-
263
- retries: Callable[..., Option] = partial(
264
- Option,
265
- "--retries",
266
- dest="retries",
267
- type="int",
268
- default=5,
269
- help="Maximum number of retries each connection should attempt "
270
- "(default %default times).",
271
- )
272
-
273
- timeout: Callable[..., Option] = partial(
274
- Option,
275
- "--timeout",
276
- "--default-timeout",
277
- metavar="sec",
278
- dest="timeout",
279
- type="float",
280
- default=15,
281
- help="Set the socket timeout (default %default seconds).",
282
- )
283
-
284
-
285
- def exists_action() -> Option:
286
- return Option(
287
- # Option when path already exist
288
- "--exists-action",
289
- dest="exists_action",
290
- type="choice",
291
- choices=["s", "i", "w", "b", "a"],
292
- default=[],
293
- action="append",
294
- metavar="action",
295
- help="Default action when a path already exists: "
296
- "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.",
297
- )
298
-
299
-
300
- cert: Callable[..., Option] = partial(
301
- PipOption,
302
- "--cert",
303
- dest="cert",
304
- type="path",
305
- metavar="path",
306
- help=(
307
- "Path to PEM-encoded CA certificate bundle. "
308
- "If provided, overrides the default. "
309
- "See 'SSL Certificate Verification' in pip documentation "
310
- "for more information."
311
- ),
312
- )
313
-
314
- client_cert: Callable[..., Option] = partial(
315
- PipOption,
316
- "--client-cert",
317
- dest="client_cert",
318
- type="path",
319
- default=None,
320
- metavar="path",
321
- help="Path to SSL client certificate, a single file containing the "
322
- "private key and the certificate in PEM format.",
323
- )
324
-
325
- index_url: Callable[..., Option] = partial(
326
- Option,
327
- "-i",
328
- "--index-url",
329
- "--pypi-url",
330
- dest="index_url",
331
- metavar="URL",
332
- default=PyPI.simple_url,
333
- help="Base URL of the Python Package Index (default %default). "
334
- "This should point to a repository compliant with PEP 503 "
335
- "(the simple repository API) or a local directory laid out "
336
- "in the same format.",
337
- )
338
-
339
-
340
- def extra_index_url() -> Option:
341
- return Option(
342
- "--extra-index-url",
343
- dest="extra_index_urls",
344
- metavar="URL",
345
- action="append",
346
- default=[],
347
- help="Extra URLs of package indexes to use in addition to "
348
- "--index-url. Should follow the same rules as "
349
- "--index-url.",
350
- )
351
-
352
-
353
- no_index: Callable[..., Option] = partial(
354
- Option,
355
- "--no-index",
356
- dest="no_index",
357
- action="store_true",
358
- default=False,
359
- help="Ignore package index (only looking at --find-links URLs instead).",
360
- )
361
-
362
-
363
- def find_links() -> Option:
364
- return Option(
365
- "-f",
366
- "--find-links",
367
- dest="find_links",
368
- action="append",
369
- default=[],
370
- metavar="url",
371
- help="If a URL or path to an html file, then parse for links to "
372
- "archives such as sdist (.tar.gz) or wheel (.whl) files. "
373
- "If a local path or file:// URL that's a directory, "
374
- "then look for archives in the directory listing. "
375
- "Links to VCS project URLs are not supported.",
376
- )
377
-
378
-
379
- def trusted_host() -> Option:
380
- return Option(
381
- "--trusted-host",
382
- dest="trusted_hosts",
383
- action="append",
384
- metavar="HOSTNAME",
385
- default=[],
386
- help="Mark this host or host:port pair as trusted, even though it "
387
- "does not have valid or any HTTPS.",
388
- )
389
-
390
-
391
- def constraints() -> Option:
392
- return Option(
393
- "-c",
394
- "--constraint",
395
- dest="constraints",
396
- action="append",
397
- default=[],
398
- metavar="file",
399
- help="Constrain versions using the given constraints file. "
400
- "This option can be used multiple times.",
401
- )
402
-
403
-
404
- def requirements() -> Option:
405
- return Option(
406
- "-r",
407
- "--requirement",
408
- dest="requirements",
409
- action="append",
410
- default=[],
411
- metavar="file",
412
- help="Install from the given requirements file. "
413
- "This option can be used multiple times.",
414
- )
415
-
416
-
417
- def editable() -> Option:
418
- return Option(
419
- "-e",
420
- "--editable",
421
- dest="editables",
422
- action="append",
423
- default=[],
424
- metavar="path/url",
425
- help=(
426
- "Install a project in editable mode (i.e. setuptools "
427
- '"develop mode") from a local project path or a VCS url.'
428
- ),
429
- )
430
-
431
-
432
- def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None:
433
- value = os.path.abspath(value)
434
- setattr(parser.values, option.dest, value)
435
-
436
-
437
- src: Callable[..., Option] = partial(
438
- PipOption,
439
- "--src",
440
- "--source",
441
- "--source-dir",
442
- "--source-directory",
443
- dest="src_dir",
444
- type="path",
445
- metavar="dir",
446
- default=get_src_prefix(),
447
- action="callback",
448
- callback=_handle_src,
449
- help="Directory to check out editable projects into. "
450
- 'The default in a virtualenv is "<venv path>/src". '
451
- 'The default for global installs is "<current dir>/src".',
452
- )
453
-
454
-
455
- def _get_format_control(values: Values, option: Option) -> Any:
456
- """Get a format_control object."""
457
- return getattr(values, option.dest)
458
-
459
-
460
- def _handle_no_binary(
461
- option: Option, opt_str: str, value: str, parser: OptionParser
462
- ) -> None:
463
- existing = _get_format_control(parser.values, option)
464
- FormatControl.handle_mutual_excludes(
465
- value,
466
- existing.no_binary,
467
- existing.only_binary,
468
- )
469
-
470
-
471
- def _handle_only_binary(
472
- option: Option, opt_str: str, value: str, parser: OptionParser
473
- ) -> None:
474
- existing = _get_format_control(parser.values, option)
475
- FormatControl.handle_mutual_excludes(
476
- value,
477
- existing.only_binary,
478
- existing.no_binary,
479
- )
480
-
481
-
482
- def no_binary() -> Option:
483
- format_control = FormatControl(set(), set())
484
- return Option(
485
- "--no-binary",
486
- dest="format_control",
487
- action="callback",
488
- callback=_handle_no_binary,
489
- type="str",
490
- default=format_control,
491
- help="Do not use binary packages. Can be supplied multiple times, and "
492
- 'each time adds to the existing value. Accepts either ":all:" to '
493
- 'disable all binary packages, ":none:" to empty the set (notice '
494
- "the colons), or one or more package names with commas between "
495
- "them (no colons). Note that some packages are tricky to compile "
496
- "and may fail to install when this option is used on them.",
497
- )
498
-
499
-
500
- def only_binary() -> Option:
501
- format_control = FormatControl(set(), set())
502
- return Option(
503
- "--only-binary",
504
- dest="format_control",
505
- action="callback",
506
- callback=_handle_only_binary,
507
- type="str",
508
- default=format_control,
509
- help="Do not use source packages. Can be supplied multiple times, and "
510
- 'each time adds to the existing value. Accepts either ":all:" to '
511
- 'disable all source packages, ":none:" to empty the set, or one '
512
- "or more package names with commas between them. Packages "
513
- "without binary distributions will fail to install when this "
514
- "option is used on them.",
515
- )
516
-
517
-
518
- platforms: Callable[..., Option] = partial(
519
- Option,
520
- "--platform",
521
- dest="platforms",
522
- metavar="platform",
523
- action="append",
524
- default=None,
525
- help=(
526
- "Only use wheels compatible with <platform>. Defaults to the "
527
- "platform of the running system. Use this option multiple times to "
528
- "specify multiple platforms supported by the target interpreter."
529
- ),
530
- )
531
-
532
-
533
- # This was made a separate function for unit-testing purposes.
534
- def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]:
535
- """
536
- Convert a version string like "3", "37", or "3.7.3" into a tuple of ints.
537
-
538
- :return: A 2-tuple (version_info, error_msg), where `error_msg` is
539
- non-None if and only if there was a parsing error.
540
- """
541
- if not value:
542
- # The empty string is the same as not providing a value.
543
- return (None, None)
544
-
545
- parts = value.split(".")
546
- if len(parts) > 3:
547
- return ((), "at most three version parts are allowed")
548
-
549
- if len(parts) == 1:
550
- # Then we are in the case of "3" or "37".
551
- value = parts[0]
552
- if len(value) > 1:
553
- parts = [value[0], value[1:]]
554
-
555
- try:
556
- version_info = tuple(int(part) for part in parts)
557
- except ValueError:
558
- return ((), "each version part must be an integer")
559
-
560
- return (version_info, None)
561
-
562
-
563
- def _handle_python_version(
564
- option: Option, opt_str: str, value: str, parser: OptionParser
565
- ) -> None:
566
- """
567
- Handle a provided --python-version value.
568
- """
569
- version_info, error_msg = _convert_python_version(value)
570
- if error_msg is not None:
571
- msg = "invalid --python-version value: {!r}: {}".format(
572
- value,
573
- error_msg,
574
- )
575
- raise_option_error(parser, option=option, msg=msg)
576
-
577
- parser.values.python_version = version_info
578
-
579
-
580
- python_version: Callable[..., Option] = partial(
581
- Option,
582
- "--python-version",
583
- dest="python_version",
584
- metavar="python_version",
585
- action="callback",
586
- callback=_handle_python_version,
587
- type="str",
588
- default=None,
589
- help=dedent(
590
- """\
591
- The Python interpreter version to use for wheel and "Requires-Python"
592
- compatibility checks. Defaults to a version derived from the running
593
- interpreter. The version can be specified using up to three dot-separated
594
- integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor
595
- version can also be given as a string without dots (e.g. "37" for 3.7.0).
596
- """
597
- ),
598
- )
599
-
600
-
601
- implementation: Callable[..., Option] = partial(
602
- Option,
603
- "--implementation",
604
- dest="implementation",
605
- metavar="implementation",
606
- default=None,
607
- help=(
608
- "Only use wheels compatible with Python "
609
- "implementation <implementation>, e.g. 'pp', 'jy', 'cp', "
610
- " or 'ip'. If not specified, then the current "
611
- "interpreter implementation is used. Use 'py' to force "
612
- "implementation-agnostic wheels."
613
- ),
614
- )
615
-
616
-
617
- abis: Callable[..., Option] = partial(
618
- Option,
619
- "--abi",
620
- dest="abis",
621
- metavar="abi",
622
- action="append",
623
- default=None,
624
- help=(
625
- "Only use wheels compatible with Python abi <abi>, e.g. 'pypy_41'. "
626
- "If not specified, then the current interpreter abi tag is used. "
627
- "Use this option multiple times to specify multiple abis supported "
628
- "by the target interpreter. Generally you will need to specify "
629
- "--implementation, --platform, and --python-version when using this "
630
- "option."
631
- ),
632
- )
633
-
634
-
635
- def add_target_python_options(cmd_opts: OptionGroup) -> None:
636
- cmd_opts.add_option(platforms())
637
- cmd_opts.add_option(python_version())
638
- cmd_opts.add_option(implementation())
639
- cmd_opts.add_option(abis())
640
-
641
-
642
- def make_target_python(options: Values) -> TargetPython:
643
- target_python = TargetPython(
644
- platforms=options.platforms,
645
- py_version_info=options.python_version,
646
- abis=options.abis,
647
- implementation=options.implementation,
648
- )
649
-
650
- return target_python
651
-
652
-
653
- def prefer_binary() -> Option:
654
- return Option(
655
- "--prefer-binary",
656
- dest="prefer_binary",
657
- action="store_true",
658
- default=False,
659
- help="Prefer older binary packages over newer source packages.",
660
- )
661
-
662
-
663
- cache_dir: Callable[..., Option] = partial(
664
- PipOption,
665
- "--cache-dir",
666
- dest="cache_dir",
667
- default=USER_CACHE_DIR,
668
- metavar="dir",
669
- type="path",
670
- help="Store the cache data in <dir>.",
671
- )
672
-
673
-
674
- def _handle_no_cache_dir(
675
- option: Option, opt: str, value: str, parser: OptionParser
676
- ) -> None:
677
- """
678
- Process a value provided for the --no-cache-dir option.
679
-
680
- This is an optparse.Option callback for the --no-cache-dir option.
681
- """
682
- # The value argument will be None if --no-cache-dir is passed via the
683
- # command-line, since the option doesn't accept arguments. However,
684
- # the value can be non-None if the option is triggered e.g. by an
685
- # environment variable, like PIP_NO_CACHE_DIR=true.
686
- if value is not None:
687
- # Then parse the string value to get argument error-checking.
688
- try:
689
- strtobool(value)
690
- except ValueError as exc:
691
- raise_option_error(parser, option=option, msg=str(exc))
692
-
693
- # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool()
694
- # converted to 0 (like "false" or "no") caused cache_dir to be disabled
695
- # rather than enabled (logic would say the latter). Thus, we disable
696
- # the cache directory not just on values that parse to True, but (for
697
- # backwards compatibility reasons) also on values that parse to False.
698
- # In other words, always set it to False if the option is provided in
699
- # some (valid) form.
700
- parser.values.cache_dir = False
701
-
702
-
703
- no_cache: Callable[..., Option] = partial(
704
- Option,
705
- "--no-cache-dir",
706
- dest="cache_dir",
707
- action="callback",
708
- callback=_handle_no_cache_dir,
709
- help="Disable the cache.",
710
- )
711
-
712
- no_deps: Callable[..., Option] = partial(
713
- Option,
714
- "--no-deps",
715
- "--no-dependencies",
716
- dest="ignore_dependencies",
717
- action="store_true",
718
- default=False,
719
- help="Don't install package dependencies.",
720
- )
721
-
722
- build_dir: Callable[..., Option] = partial(
723
- PipOption,
724
- "-b",
725
- "--build",
726
- "--build-dir",
727
- "--build-directory",
728
- dest="build_dir",
729
- type="path",
730
- metavar="dir",
731
- help=SUPPRESS_HELP,
732
- )
733
-
734
- ignore_requires_python: Callable[..., Option] = partial(
735
- Option,
736
- "--ignore-requires-python",
737
- dest="ignore_requires_python",
738
- action="store_true",
739
- help="Ignore the Requires-Python information.",
740
- )
741
-
742
- no_build_isolation: Callable[..., Option] = partial(
743
- Option,
744
- "--no-build-isolation",
745
- dest="build_isolation",
746
- action="store_false",
747
- default=True,
748
- help="Disable isolation when building a modern source distribution. "
749
- "Build dependencies specified by PEP 518 must be already installed "
750
- "if this option is used.",
751
- )
752
-
753
-
754
- def _handle_no_use_pep517(
755
- option: Option, opt: str, value: str, parser: OptionParser
756
- ) -> None:
757
- """
758
- Process a value provided for the --no-use-pep517 option.
759
-
760
- This is an optparse.Option callback for the no_use_pep517 option.
761
- """
762
- # Since --no-use-pep517 doesn't accept arguments, the value argument
763
- # will be None if --no-use-pep517 is passed via the command-line.
764
- # However, the value can be non-None if the option is triggered e.g.
765
- # by an environment variable, for example "PIP_NO_USE_PEP517=true".
766
- if value is not None:
767
- msg = """A value was passed for --no-use-pep517,
768
- probably using either the PIP_NO_USE_PEP517 environment variable
769
- or the "no-use-pep517" config file option. Use an appropriate value
770
- of the PIP_USE_PEP517 environment variable or the "use-pep517"
771
- config file option instead.
772
- """
773
- raise_option_error(parser, option=option, msg=msg)
774
-
775
- # Otherwise, --no-use-pep517 was passed via the command-line.
776
- parser.values.use_pep517 = False
777
-
778
-
779
- use_pep517: Any = partial(
780
- Option,
781
- "--use-pep517",
782
- dest="use_pep517",
783
- action="store_true",
784
- default=None,
785
- help="Use PEP 517 for building source distributions "
786
- "(use --no-use-pep517 to force legacy behaviour).",
787
- )
788
-
789
- no_use_pep517: Any = partial(
790
- Option,
791
- "--no-use-pep517",
792
- dest="use_pep517",
793
- action="callback",
794
- callback=_handle_no_use_pep517,
795
- default=None,
796
- help=SUPPRESS_HELP,
797
- )
798
-
799
- install_options: Callable[..., Option] = partial(
800
- Option,
801
- "--install-option",
802
- dest="install_options",
803
- action="append",
804
- metavar="options",
805
- help="Extra arguments to be supplied to the setup.py install "
806
- 'command (use like --install-option="--install-scripts=/usr/local/'
807
- 'bin"). Use multiple --install-option options to pass multiple '
808
- "options to setup.py install. If you are using an option with a "
809
- "directory path, be sure to use absolute path.",
810
- )
811
-
812
- build_options: Callable[..., Option] = partial(
813
- Option,
814
- "--build-option",
815
- dest="build_options",
816
- metavar="options",
817
- action="append",
818
- help="Extra arguments to be supplied to 'setup.py bdist_wheel'.",
819
- )
820
-
821
- global_options: Callable[..., Option] = partial(
822
- Option,
823
- "--global-option",
824
- dest="global_options",
825
- action="append",
826
- metavar="options",
827
- help="Extra global options to be supplied to the setup.py "
828
- "call before the install or bdist_wheel command.",
829
- )
830
-
831
- no_clean: Callable[..., Option] = partial(
832
- Option,
833
- "--no-clean",
834
- action="store_true",
835
- default=False,
836
- help="Don't clean up build directories.",
837
- )
838
-
839
- pre: Callable[..., Option] = partial(
840
- Option,
841
- "--pre",
842
- action="store_true",
843
- default=False,
844
- help="Include pre-release and development versions. By default, "
845
- "pip only finds stable versions.",
846
- )
847
-
848
- disable_pip_version_check: Callable[..., Option] = partial(
849
- Option,
850
- "--disable-pip-version-check",
851
- dest="disable_pip_version_check",
852
- action="store_true",
853
- default=False,
854
- help="Don't periodically check PyPI to determine whether a new version "
855
- "of pip is available for download. Implied with --no-index.",
856
- )
857
-
858
-
859
- def _handle_merge_hash(
860
- option: Option, opt_str: str, value: str, parser: OptionParser
861
- ) -> None:
862
- """Given a value spelled "algo:digest", append the digest to a list
863
- pointed to in a dict by the algo name."""
864
- if not parser.values.hashes:
865
- parser.values.hashes = {}
866
- try:
867
- algo, digest = value.split(":", 1)
868
- except ValueError:
869
- parser.error(
870
- "Arguments to {} must be a hash name " # noqa
871
- "followed by a value, like --hash=sha256:"
872
- "abcde...".format(opt_str)
873
- )
874
- if algo not in STRONG_HASHES:
875
- parser.error(
876
- "Allowed hash algorithms for {} are {}.".format( # noqa
877
- opt_str, ", ".join(STRONG_HASHES)
878
- )
879
- )
880
- parser.values.hashes.setdefault(algo, []).append(digest)
881
-
882
-
883
- hash: Callable[..., Option] = partial(
884
- Option,
885
- "--hash",
886
- # Hash values eventually end up in InstallRequirement.hashes due to
887
- # __dict__ copying in process_line().
888
- dest="hashes",
889
- action="callback",
890
- callback=_handle_merge_hash,
891
- type="string",
892
- help="Verify that the package's archive matches this "
893
- "hash before installing. Example: --hash=sha256:abcdef...",
894
- )
895
-
896
-
897
- require_hashes: Callable[..., Option] = partial(
898
- Option,
899
- "--require-hashes",
900
- dest="require_hashes",
901
- action="store_true",
902
- default=False,
903
- help="Require a hash to check each requirement against, for "
904
- "repeatable installs. This option is implied when any package in a "
905
- "requirements file has a --hash option.",
906
- )
907
-
908
-
909
- list_path: Callable[..., Option] = partial(
910
- PipOption,
911
- "--path",
912
- dest="path",
913
- type="path",
914
- action="append",
915
- help="Restrict to the specified installation path for listing "
916
- "packages (can be used multiple times).",
917
- )
918
-
919
-
920
- def check_list_path_option(options: Values) -> None:
921
- if options.path and (options.user or options.local):
922
- raise CommandError("Cannot combine '--path' with '--user' or '--local'")
923
-
924
-
925
- list_exclude: Callable[..., Option] = partial(
926
- PipOption,
927
- "--exclude",
928
- dest="excludes",
929
- action="append",
930
- metavar="package",
931
- type="package_name",
932
- help="Exclude specified package from the output",
933
- )
934
-
935
-
936
- no_python_version_warning: Callable[..., Option] = partial(
937
- Option,
938
- "--no-python-version-warning",
939
- dest="no_python_version_warning",
940
- action="store_true",
941
- default=False,
942
- help="Silence deprecation warnings for upcoming unsupported Pythons.",
943
- )
944
-
945
-
946
- use_new_feature: Callable[..., Option] = partial(
947
- Option,
948
- "--use-feature",
949
- dest="features_enabled",
950
- metavar="feature",
951
- action="append",
952
- default=[],
953
- choices=["2020-resolver", "fast-deps", "in-tree-build"],
954
- help="Enable new functionality, that may be backward incompatible.",
955
- )
956
-
957
- use_deprecated_feature: Callable[..., Option] = partial(
958
- Option,
959
- "--use-deprecated",
960
- dest="deprecated_features_enabled",
961
- metavar="feature",
962
- action="append",
963
- default=[],
964
- choices=["legacy-resolver"],
965
- help=("Enable deprecated functionality, that will be removed in the future."),
966
- )
967
-
968
-
969
- ##########
970
- # groups #
971
- ##########
972
-
973
- general_group: Dict[str, Any] = {
974
- "name": "General Options",
975
- "options": [
976
- help_,
977
- isolated_mode,
978
- require_virtualenv,
979
- verbose,
980
- version,
981
- quiet,
982
- log,
983
- no_input,
984
- proxy,
985
- retries,
986
- timeout,
987
- exists_action,
988
- trusted_host,
989
- cert,
990
- client_cert,
991
- cache_dir,
992
- no_cache,
993
- disable_pip_version_check,
994
- no_color,
995
- no_python_version_warning,
996
- use_new_feature,
997
- use_deprecated_feature,
998
- ],
999
- }
1000
-
1001
- index_group: Dict[str, Any] = {
1002
- "name": "Package Index Options",
1003
- "options": [
1004
- index_url,
1005
- extra_index_url,
1006
- no_index,
1007
- find_links,
1008
- ],
1009
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cli/command_context.py DELETED
@@ -1,27 +0,0 @@
1
- from contextlib import ExitStack, contextmanager
2
- from typing import ContextManager, Iterator, TypeVar
3
-
4
- _T = TypeVar("_T", covariant=True)
5
-
6
-
7
- class CommandContextMixIn:
8
- def __init__(self) -> None:
9
- super().__init__()
10
- self._in_main_context = False
11
- self._main_context = ExitStack()
12
-
13
- @contextmanager
14
- def main_context(self) -> Iterator[None]:
15
- assert not self._in_main_context
16
-
17
- self._in_main_context = True
18
- try:
19
- with self._main_context:
20
- yield
21
- finally:
22
- self._in_main_context = False
23
-
24
- def enter_context(self, context_provider: ContextManager[_T]) -> _T:
25
- assert self._in_main_context
26
-
27
- return self._main_context.enter_context(context_provider)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cli/main.py DELETED
@@ -1,70 +0,0 @@
1
- """Primary application entrypoint.
2
- """
3
- import locale
4
- import logging
5
- import os
6
- import sys
7
- from typing import List, Optional
8
-
9
- from pip._internal.cli.autocompletion import autocomplete
10
- from pip._internal.cli.main_parser import parse_command
11
- from pip._internal.commands import create_command
12
- from pip._internal.exceptions import PipError
13
- from pip._internal.utils import deprecation
14
-
15
- logger = logging.getLogger(__name__)
16
-
17
-
18
- # Do not import and use main() directly! Using it directly is actively
19
- # discouraged by pip's maintainers. The name, location and behavior of
20
- # this function is subject to change, so calling it directly is not
21
- # portable across different pip versions.
22
-
23
- # In addition, running pip in-process is unsupported and unsafe. This is
24
- # elaborated in detail at
25
- # https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program.
26
- # That document also provides suggestions that should work for nearly
27
- # all users that are considering importing and using main() directly.
28
-
29
- # However, we know that certain users will still want to invoke pip
30
- # in-process. If you understand and accept the implications of using pip
31
- # in an unsupported manner, the best approach is to use runpy to avoid
32
- # depending on the exact location of this entry point.
33
-
34
- # The following example shows how to use runpy to invoke pip in that
35
- # case:
36
- #
37
- # sys.argv = ["pip", your, args, here]
38
- # runpy.run_module("pip", run_name="__main__")
39
- #
40
- # Note that this will exit the process after running, unlike a direct
41
- # call to main. As it is not safe to do any processing after calling
42
- # main, this should not be an issue in practice.
43
-
44
-
45
- def main(args: Optional[List[str]] = None) -> int:
46
- if args is None:
47
- args = sys.argv[1:]
48
-
49
- # Configure our deprecation warnings to be sent through loggers
50
- deprecation.install_warning_logger()
51
-
52
- autocomplete()
53
-
54
- try:
55
- cmd_name, cmd_args = parse_command(args)
56
- except PipError as exc:
57
- sys.stderr.write(f"ERROR: {exc}")
58
- sys.stderr.write(os.linesep)
59
- sys.exit(1)
60
-
61
- # Needed for locale.getpreferredencoding(False) to work
62
- # in pip._internal.utils.encoding.auto_decode
63
- try:
64
- locale.setlocale(locale.LC_ALL, "")
65
- except locale.Error as e:
66
- # setlocale can apparently crash if locale are uninitialized
67
- logger.debug("Ignoring error %s when setting locale", e)
68
- command = create_command(cmd_name, isolated=("--isolated" in cmd_args))
69
-
70
- return command.main(cmd_args)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cli/main_parser.py DELETED
@@ -1,87 +0,0 @@
1
- """A single place for constructing and exposing the main parser
2
- """
3
-
4
- import os
5
- import sys
6
- from typing import List, Tuple
7
-
8
- from pip._internal.cli import cmdoptions
9
- from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter
10
- from pip._internal.commands import commands_dict, get_similar_commands
11
- from pip._internal.exceptions import CommandError
12
- from pip._internal.utils.misc import get_pip_version, get_prog
13
-
14
- __all__ = ["create_main_parser", "parse_command"]
15
-
16
-
17
- def create_main_parser() -> ConfigOptionParser:
18
- """Creates and returns the main parser for pip's CLI"""
19
-
20
- parser = ConfigOptionParser(
21
- usage="\n%prog <command> [options]",
22
- add_help_option=False,
23
- formatter=UpdatingDefaultsHelpFormatter(),
24
- name="global",
25
- prog=get_prog(),
26
- )
27
- parser.disable_interspersed_args()
28
-
29
- parser.version = get_pip_version()
30
-
31
- # add the general options
32
- gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser)
33
- parser.add_option_group(gen_opts)
34
-
35
- # so the help formatter knows
36
- parser.main = True # type: ignore
37
-
38
- # create command listing for description
39
- description = [""] + [
40
- f"{name:27} {command_info.summary}"
41
- for name, command_info in commands_dict.items()
42
- ]
43
- parser.description = "\n".join(description)
44
-
45
- return parser
46
-
47
-
48
- def parse_command(args: List[str]) -> Tuple[str, List[str]]:
49
- parser = create_main_parser()
50
-
51
- # Note: parser calls disable_interspersed_args(), so the result of this
52
- # call is to split the initial args into the general options before the
53
- # subcommand and everything else.
54
- # For example:
55
- # args: ['--timeout=5', 'install', '--user', 'INITools']
56
- # general_options: ['--timeout==5']
57
- # args_else: ['install', '--user', 'INITools']
58
- general_options, args_else = parser.parse_args(args)
59
-
60
- # --version
61
- if general_options.version:
62
- sys.stdout.write(parser.version)
63
- sys.stdout.write(os.linesep)
64
- sys.exit()
65
-
66
- # pip || pip help -> print_help()
67
- if not args_else or (args_else[0] == "help" and len(args_else) == 1):
68
- parser.print_help()
69
- sys.exit()
70
-
71
- # the subcommand name
72
- cmd_name = args_else[0]
73
-
74
- if cmd_name not in commands_dict:
75
- guess = get_similar_commands(cmd_name)
76
-
77
- msg = [f'unknown command "{cmd_name}"']
78
- if guess:
79
- msg.append(f'maybe you meant "{guess}"')
80
-
81
- raise CommandError(" - ".join(msg))
82
-
83
- # all the args without the subcommand
84
- cmd_args = args[:]
85
- cmd_args.remove(cmd_name)
86
-
87
- return cmd_name, cmd_args
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cli/parser.py DELETED
@@ -1,292 +0,0 @@
1
- """Base option parser setup"""
2
-
3
- import logging
4
- import optparse
5
- import shutil
6
- import sys
7
- import textwrap
8
- from contextlib import suppress
9
- from typing import Any, Dict, Iterator, List, Tuple
10
-
11
- from pip._internal.cli.status_codes import UNKNOWN_ERROR
12
- from pip._internal.configuration import Configuration, ConfigurationError
13
- from pip._internal.utils.misc import redact_auth_from_url, strtobool
14
-
15
- logger = logging.getLogger(__name__)
16
-
17
-
18
- class PrettyHelpFormatter(optparse.IndentedHelpFormatter):
19
- """A prettier/less verbose help formatter for optparse."""
20
-
21
- def __init__(self, *args: Any, **kwargs: Any) -> None:
22
- # help position must be aligned with __init__.parseopts.description
23
- kwargs["max_help_position"] = 30
24
- kwargs["indent_increment"] = 1
25
- kwargs["width"] = shutil.get_terminal_size()[0] - 2
26
- super().__init__(*args, **kwargs)
27
-
28
- def format_option_strings(self, option: optparse.Option) -> str:
29
- return self._format_option_strings(option)
30
-
31
- def _format_option_strings(
32
- self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", "
33
- ) -> str:
34
- """
35
- Return a comma-separated list of option strings and metavars.
36
-
37
- :param option: tuple of (short opt, long opt), e.g: ('-f', '--format')
38
- :param mvarfmt: metavar format string
39
- :param optsep: separator
40
- """
41
- opts = []
42
-
43
- if option._short_opts:
44
- opts.append(option._short_opts[0])
45
- if option._long_opts:
46
- opts.append(option._long_opts[0])
47
- if len(opts) > 1:
48
- opts.insert(1, optsep)
49
-
50
- if option.takes_value():
51
- assert option.dest is not None
52
- metavar = option.metavar or option.dest.lower()
53
- opts.append(mvarfmt.format(metavar.lower()))
54
-
55
- return "".join(opts)
56
-
57
- def format_heading(self, heading: str) -> str:
58
- if heading == "Options":
59
- return ""
60
- return heading + ":\n"
61
-
62
- def format_usage(self, usage: str) -> str:
63
- """
64
- Ensure there is only one newline between usage and the first heading
65
- if there is no description.
66
- """
67
- msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " "))
68
- return msg
69
-
70
- def format_description(self, description: str) -> str:
71
- # leave full control over description to us
72
- if description:
73
- if hasattr(self.parser, "main"):
74
- label = "Commands"
75
- else:
76
- label = "Description"
77
- # some doc strings have initial newlines, some don't
78
- description = description.lstrip("\n")
79
- # some doc strings have final newlines and spaces, some don't
80
- description = description.rstrip()
81
- # dedent, then reindent
82
- description = self.indent_lines(textwrap.dedent(description), " ")
83
- description = f"{label}:\n{description}\n"
84
- return description
85
- else:
86
- return ""
87
-
88
- def format_epilog(self, epilog: str) -> str:
89
- # leave full control over epilog to us
90
- if epilog:
91
- return epilog
92
- else:
93
- return ""
94
-
95
- def indent_lines(self, text: str, indent: str) -> str:
96
- new_lines = [indent + line for line in text.split("\n")]
97
- return "\n".join(new_lines)
98
-
99
-
100
- class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter):
101
- """Custom help formatter for use in ConfigOptionParser.
102
-
103
- This is updates the defaults before expanding them, allowing
104
- them to show up correctly in the help listing.
105
-
106
- Also redact auth from url type options
107
- """
108
-
109
- def expand_default(self, option: optparse.Option) -> str:
110
- default_values = None
111
- if self.parser is not None:
112
- assert isinstance(self.parser, ConfigOptionParser)
113
- self.parser._update_defaults(self.parser.defaults)
114
- assert option.dest is not None
115
- default_values = self.parser.defaults.get(option.dest)
116
- help_text = super().expand_default(option)
117
-
118
- if default_values and option.metavar == "URL":
119
- if isinstance(default_values, str):
120
- default_values = [default_values]
121
-
122
- # If its not a list, we should abort and just return the help text
123
- if not isinstance(default_values, list):
124
- default_values = []
125
-
126
- for val in default_values:
127
- help_text = help_text.replace(val, redact_auth_from_url(val))
128
-
129
- return help_text
130
-
131
-
132
- class CustomOptionParser(optparse.OptionParser):
133
- def insert_option_group(
134
- self, idx: int, *args: Any, **kwargs: Any
135
- ) -> optparse.OptionGroup:
136
- """Insert an OptionGroup at a given position."""
137
- group = self.add_option_group(*args, **kwargs)
138
-
139
- self.option_groups.pop()
140
- self.option_groups.insert(idx, group)
141
-
142
- return group
143
-
144
- @property
145
- def option_list_all(self) -> List[optparse.Option]:
146
- """Get a list of all options, including those in option groups."""
147
- res = self.option_list[:]
148
- for i in self.option_groups:
149
- res.extend(i.option_list)
150
-
151
- return res
152
-
153
-
154
- class ConfigOptionParser(CustomOptionParser):
155
- """Custom option parser which updates its defaults by checking the
156
- configuration files and environmental variables"""
157
-
158
- def __init__(
159
- self,
160
- *args: Any,
161
- name: str,
162
- isolated: bool = False,
163
- **kwargs: Any,
164
- ) -> None:
165
- self.name = name
166
- self.config = Configuration(isolated)
167
-
168
- assert self.name
169
- super().__init__(*args, **kwargs)
170
-
171
- def check_default(self, option: optparse.Option, key: str, val: Any) -> Any:
172
- try:
173
- return option.check_value(key, val)
174
- except optparse.OptionValueError as exc:
175
- print(f"An error occurred during configuration: {exc}")
176
- sys.exit(3)
177
-
178
- def _get_ordered_configuration_items(self) -> Iterator[Tuple[str, Any]]:
179
- # Configuration gives keys in an unordered manner. Order them.
180
- override_order = ["global", self.name, ":env:"]
181
-
182
- # Pool the options into different groups
183
- section_items: Dict[str, List[Tuple[str, Any]]] = {
184
- name: [] for name in override_order
185
- }
186
- for section_key, val in self.config.items():
187
- # ignore empty values
188
- if not val:
189
- logger.debug(
190
- "Ignoring configuration key '%s' as it's value is empty.",
191
- section_key,
192
- )
193
- continue
194
-
195
- section, key = section_key.split(".", 1)
196
- if section in override_order:
197
- section_items[section].append((key, val))
198
-
199
- # Yield each group in their override order
200
- for section in override_order:
201
- for key, val in section_items[section]:
202
- yield key, val
203
-
204
- def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]:
205
- """Updates the given defaults with values from the config files and
206
- the environ. Does a little special handling for certain types of
207
- options (lists)."""
208
-
209
- # Accumulate complex default state.
210
- self.values = optparse.Values(self.defaults)
211
- late_eval = set()
212
- # Then set the options with those values
213
- for key, val in self._get_ordered_configuration_items():
214
- # '--' because configuration supports only long names
215
- option = self.get_option("--" + key)
216
-
217
- # Ignore options not present in this parser. E.g. non-globals put
218
- # in [global] by users that want them to apply to all applicable
219
- # commands.
220
- if option is None:
221
- continue
222
-
223
- assert option.dest is not None
224
-
225
- if option.action in ("store_true", "store_false"):
226
- try:
227
- val = strtobool(val)
228
- except ValueError:
229
- self.error(
230
- "{} is not a valid value for {} option, " # noqa
231
- "please specify a boolean value like yes/no, "
232
- "true/false or 1/0 instead.".format(val, key)
233
- )
234
- elif option.action == "count":
235
- with suppress(ValueError):
236
- val = strtobool(val)
237
- with suppress(ValueError):
238
- val = int(val)
239
- if not isinstance(val, int) or val < 0:
240
- self.error(
241
- "{} is not a valid value for {} option, " # noqa
242
- "please instead specify either a non-negative integer "
243
- "or a boolean value like yes/no or false/true "
244
- "which is equivalent to 1/0.".format(val, key)
245
- )
246
- elif option.action == "append":
247
- val = val.split()
248
- val = [self.check_default(option, key, v) for v in val]
249
- elif option.action == "callback":
250
- assert option.callback is not None
251
- late_eval.add(option.dest)
252
- opt_str = option.get_opt_string()
253
- val = option.convert_value(opt_str, val)
254
- # From take_action
255
- args = option.callback_args or ()
256
- kwargs = option.callback_kwargs or {}
257
- option.callback(option, opt_str, val, self, *args, **kwargs)
258
- else:
259
- val = self.check_default(option, key, val)
260
-
261
- defaults[option.dest] = val
262
-
263
- for key in late_eval:
264
- defaults[key] = getattr(self.values, key)
265
- self.values = None
266
- return defaults
267
-
268
- def get_default_values(self) -> optparse.Values:
269
- """Overriding to make updating the defaults after instantiation of
270
- the option parser possible, _update_defaults() does the dirty work."""
271
- if not self.process_default_values:
272
- # Old, pre-Optik 1.5 behaviour.
273
- return optparse.Values(self.defaults)
274
-
275
- # Load the configuration, or error out in case of an error
276
- try:
277
- self.config.load()
278
- except ConfigurationError as err:
279
- self.exit(UNKNOWN_ERROR, str(err))
280
-
281
- defaults = self._update_defaults(self.defaults.copy()) # ours
282
- for option in self._get_all_options():
283
- assert option.dest is not None
284
- default = defaults.get(option.dest)
285
- if isinstance(default, str):
286
- opt_str = option.get_opt_string()
287
- defaults[option.dest] = option.check_value(opt_str, default)
288
- return optparse.Values(defaults)
289
-
290
- def error(self, msg: str) -> None:
291
- self.print_usage(sys.stderr)
292
- self.exit(UNKNOWN_ERROR, f"{msg}\n")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
venv/Lib/site-packages/pip/_internal/cli/progress_bars.py DELETED
@@ -1,250 +0,0 @@
1
- import itertools
2
- import sys
3
- from signal import SIGINT, default_int_handler, signal
4
- from typing import Any
5
-
6
- from pip._vendor.progress.bar import Bar, FillingCirclesBar, IncrementalBar
7
- from pip._vendor.progress.spinner import Spinner
8
-
9
- from pip._internal.utils.compat import WINDOWS
10
- from pip._internal.utils.logging import get_indentation
11
- from pip._internal.utils.misc import format_size
12
-
13
- try:
14
- from pip._vendor import colorama
15
- # Lots of different errors can come from this, including SystemError and
16
- # ImportError.
17
- except Exception:
18
- colorama = None
19
-
20
-
21
- def _select_progress_class(preferred: Bar, fallback: Bar) -> Bar:
22
- encoding = getattr(preferred.file, "encoding", None)
23
-
24
- # If we don't know what encoding this file is in, then we'll just assume
25
- # that it doesn't support unicode and use the ASCII bar.
26
- if not encoding:
27
- return fallback
28
-
29
- # Collect all of the possible characters we want to use with the preferred
30
- # bar.
31
- characters = [
32
- getattr(preferred, "empty_fill", ""),
33
- getattr(preferred, "fill", ""),
34
- ]
35
- characters += list(getattr(preferred, "phases", []))
36
-
37
- # Try to decode the characters we're using for the bar using the encoding
38
- # of the given file, if this works then we'll assume that we can use the
39
- # fancier bar and if not we'll fall back to the plaintext bar.
40
- try:
41
- "".join(characters).encode(encoding)
42
- except UnicodeEncodeError:
43
- return fallback
44
- else:
45
- return preferred
46
-
47
-
48
- _BaseBar: Any = _select_progress_class(IncrementalBar, Bar)
49
-
50
-
51
- class InterruptibleMixin:
52
- """
53
- Helper to ensure that self.finish() gets called on keyboard interrupt.
54
-
55
- This allows downloads to be interrupted without leaving temporary state
56
- (like hidden cursors) behind.
57
-
58
- This class is similar to the progress library's existing SigIntMixin
59
- helper, but as of version 1.2, that helper has the following problems:
60
-
61
- 1. It calls sys.exit().
62
- 2. It discards the existing SIGINT handler completely.
63
- 3. It leaves its own handler in place even after an uninterrupted finish,
64
- which will have unexpected delayed effects if the user triggers an
65
- unrelated keyboard interrupt some time after a progress-displaying
66
- download has already completed, for example.
67
- """
68
-
69
- def __init__(self, *args: Any, **kwargs: Any) -> None:
70
- """
71
- Save the original SIGINT handler for later.
72
- """
73
- # https://github.com/python/mypy/issues/5887
74
- super().__init__(*args, **kwargs) # type: ignore
75
-
76
- self.original_handler = signal(SIGINT, self.handle_sigint)
77
-
78
- # If signal() returns None, the previous handler was not installed from
79
- # Python, and we cannot restore it. This probably should not happen,
80
- # but if it does, we must restore something sensible instead, at least.
81
- # The least bad option should be Python's default SIGINT handler, which
82
- # just raises KeyboardInterrupt.
83
- if self.original_handler is None:
84
- self.original_handler = default_int_handler
85
-
86
- def finish(self) -> None:
87
- """
88
- Restore the original SIGINT handler after finishing.
89
-
90
- This should happen regardless of whether the progress display finishes
91
- normally, or gets interrupted.
92
- """
93
- super().finish() # type: ignore
94
- signal(SIGINT, self.original_handler)
95
-
96
- def handle_sigint(self, signum, frame): # type: ignore
97
- """
98
- Call self.finish() before delegating to the original SIGINT handler.
99
-
100
- This handler should only be in place while the progress display is
101
- active.
102
- """
103
- self.finish()
104
- self.original_handler(signum, frame)
105
-
106
-
107
- class SilentBar(Bar):
108
- def update(self) -> None:
109
- pass
110
-
111
-
112
- class BlueEmojiBar(IncrementalBar):
113
-
114
- suffix = "%(percent)d%%"
115
- bar_prefix = " "
116
- bar_suffix = " "
117
- phases = ("\U0001F539", "\U0001F537", "\U0001F535")
118
-
119
-
120
- class DownloadProgressMixin:
121
- def __init__(self, *args: Any, **kwargs: Any) -> None:
122
- # https://github.com/python/mypy/issues/5887
123
- super().__init__(*args, **kwargs) # type: ignore
124
- self.message: str = (" " * (get_indentation() + 2)) + self.message
125
-
126
- @property
127
- def downloaded(self) -> str:
128
- return format_size(self.index) # type: ignore
129
-
130
- @property
131
- def download_speed(self) -> str:
132
- # Avoid zero division errors...
133
- if self.avg == 0.0: # type: ignore
134
- return "..."
135
- return format_size(1 / self.avg) + "/s" # type: ignore
136
-
137
- @property
138
- def pretty_eta(self) -> str:
139
- if self.eta: # type: ignore
140
- return f"eta {self.eta_td}" # type: ignore
141
- return ""
142
-
143
- def iter(self, it): # type: ignore
144
- for x in it:
145
- yield x
146
- # B305 is incorrectly raised here
147
- # https://github.com/PyCQA/flake8-bugbear/issues/59
148
- self.next(len(x)) # noqa: B305
149
- self.finish()
150
-
151
-
152
- class WindowsMixin:
153
- def __init__(self, *args: Any, **kwargs: Any) -> None:
154
- # The Windows terminal does not support the hide/show cursor ANSI codes
155
- # even with colorama. So we'll ensure that hide_cursor is False on
156
- # Windows.
157
- # This call needs to go before the super() call, so that hide_cursor
158
- # is set in time. The base progress bar class writes the "hide cursor"
159
- # code to the terminal in its init, so if we don't set this soon
160
- # enough, we get a "hide" with no corresponding "show"...
161
- if WINDOWS and self.hide_cursor: # type: ignore
162
- self.hide_cursor = False
163
-
164
- # https://github.com/python/mypy/issues/5887
165
- super().__init__(*args, **kwargs) # type: ignore
166
-
167
- # Check if we are running on Windows and we have the colorama module,
168
- # if we do then wrap our file with it.
169
- if WINDOWS and colorama:
170
- self.file = colorama.AnsiToWin32(self.file) # type: ignore
171
- # The progress code expects to be able to call self.file.isatty()
172
- # but the colorama.AnsiToWin32() object doesn't have that, so we'll
173
- # add it.
174
- self.file.isatty = lambda: self.file.wrapped.isatty()
175
- # The progress code expects to be able to call self.file.flush()
176
- # but the colorama.AnsiToWin32() object doesn't have that, so we'll
177
- # add it.
178
- self.file.flush = lambda: self.file.wrapped.flush()
179
-
180
-
181
- class BaseDownloadProgressBar(WindowsMixin, InterruptibleMixin, DownloadProgressMixin):
182
-
183
- file = sys.stdout
184
- message = "%(percent)d%%"
185
- suffix = "%(downloaded)s %(download_speed)s %(pretty_eta)s"
186
-
187
-
188
- class DefaultDownloadProgressBar(BaseDownloadProgressBar, _BaseBar):
189
- pass
190
-
191
-
192
- class DownloadSilentBar(BaseDownloadProgressBar, SilentBar):
193
- pass
194
-
195
-
196
- class DownloadBar(BaseDownloadProgressBar, Bar):
197
- pass
198
-
199
-
200
- class DownloadFillingCirclesBar(BaseDownloadProgressBar, FillingCirclesBar):
201
- pass
202
-
203
-
204
- class DownloadBlueEmojiProgressBar(BaseDownloadProgressBar, BlueEmojiBar):
205
- pass
206
-
207
-
208
- class DownloadProgressSpinner(
209
- WindowsMixin, InterruptibleMixin, DownloadProgressMixin, Spinner
210
- ):
211
-
212
- file = sys.stdout
213
- suffix = "%(downloaded)s %(download_speed)s"
214
-
215
- def next_phase(self) -> str:
216
- if not hasattr(self, "_phaser"):
217
- self._phaser = itertools.cycle(self.phases)
218
- return next(self._phaser)
219
-
220
- def update(self) -> None:
221
- message = self.message % self
222
- phase = self.next_phase()
223
- suffix = self.suffix % self
224
- line = "".join(
225
- [
226
- message,
227
- " " if message else "",
228
- phase,
229
- " " if suffix else "",
230
- suffix,
231
- ]
232
- )
233
-
234
- self.writeln(line)
235
-
236
-
237
- BAR_TYPES = {
238
- "off": (DownloadSilentBar, DownloadSilentBar),
239
- "on": (DefaultDownloadProgressBar, DownloadProgressSpinner),
240
- "ascii": (DownloadBar, DownloadProgressSpinner),
241
- "pretty": (DownloadFillingCirclesBar, DownloadProgressSpinner),
242
- "emoji": (DownloadBlueEmojiProgressBar, DownloadProgressSpinner),
243
- }
244
-
245
-
246
- def DownloadProgressProvider(progress_bar, max=None): # type: ignore
247
- if max is None or max == 0:
248
- return BAR_TYPES[progress_bar][1]().iter
249
- else:
250
- return BAR_TYPES[progress_bar][0](max=max).iter