OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4730
/
lib
/
python3.12
/
site-packages
/
pip
/
_internal
/
models
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/10/2025 09:51:14 PM
rwxr-xr-x
📄
__init__.py
62 bytes
06/10/2025 09:50:50 PM
rw-r--r--
📁
__pycache__
-
06/10/2025 09:51:14 PM
rwxr-xr-x
📄
candidate.py
753 bytes
06/10/2025 09:50:50 PM
rw-r--r--
📄
direct_url.py
6.42 KB
06/10/2025 09:50:50 PM
rw-r--r--
📄
format_control.py
2.43 KB
06/10/2025 09:50:50 PM
rw-r--r--
📄
index.py
1.01 KB
06/10/2025 09:50:50 PM
rw-r--r--
📄
installation_report.py
2.75 KB
06/10/2025 09:50:50 PM
rw-r--r--
📄
link.py
21.01 KB
06/10/2025 09:50:50 PM
rw-r--r--
📄
pylock.py
6.05 KB
06/10/2025 09:50:50 PM
rw-r--r--
📄
scheme.py
575 bytes
06/10/2025 09:50:50 PM
rw-r--r--
📄
search_scope.py
4.42 KB
06/10/2025 09:50:50 PM
rw-r--r--
📄
selection_prefs.py
1.97 KB
06/10/2025 09:50:50 PM
rw-r--r--
📄
target_python.py
4.17 KB
06/10/2025 09:50:50 PM
rw-r--r--
📄
wheel.py
5.38 KB
06/10/2025 09:50:50 PM
rw-r--r--
Editing: scheme.py
Close
""" 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