X7ROOT File Manager
Current Path:
/opt/hc_python/lib/python3.12/site-packages/pip/_internal/models
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
pip
/
_internal
/
models
/
??
..
??
__init__.py
(62 B)
??
__pycache__
??
candidate.py
(753 B)
??
direct_url.py
(6.4 KB)
??
format_control.py
(2.41 KB)
??
index.py
(1.01 KB)
??
installation_report.py
(2.77 KB)
??
link.py
(21.28 KB)
??
pylock.py
(6.07 KB)
??
scheme.py
(575 B)
??
search_scope.py
(4.4 KB)
??
selection_prefs.py
(1.97 KB)
??
target_python.py
(4.14 KB)
??
wheel.py
(2.85 KB)
Editing: scheme.py
""" For types associated with installation schemes. For a general overview of available schemes and their context, see https://docs.python.org/3/install/index.html#alternate-installation. """ from dataclasses import dataclass SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] @dataclass(frozen=True) class Scheme: """A Scheme holds paths which are used as the base directories for artifacts associated with a Python package. """ __slots__ = SCHEME_KEYS platlib: str purelib: str headers: str scripts: str data: str
Upload File
Create Folder