X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/pip/_internal/models
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
pip
/
_internal
/
models
/
ðŸ“
..
📄
__init__.py
(63 B)
ðŸ“
__pycache__
📄
candidate.py
(753 B)
📄
direct_url.py
(6.42 KB)
📄
format_control.py
(2.43 KB)
📄
index.py
(1.01 KB)
📄
installation_report.py
(2.75 KB)
📄
link.py
(20.95 KB)
📄
scheme.py
(575 B)
📄
search_scope.py
(4.42 KB)
📄
selection_prefs.py
(1.97 KB)
📄
target_python.py
(4.17 KB)
📄
wheel.py
(4.43 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