OXIESEC PANEL
- Current Dir:
/
/
lib
/
python3.9
/
site-packages
/
pip
/
_internal
/
models
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
__init__.py
63 bytes
10/02/2024 07:13:31 PM
rw-r--r--
📁
__pycache__
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
candidate.py
990 bytes
10/02/2024 07:13:31 PM
rw-r--r--
📄
direct_url.py
6.2 KB
10/02/2024 07:13:31 PM
rw-r--r--
📄
format_control.py
2.46 KB
10/02/2024 07:13:31 PM
rw-r--r--
📄
index.py
1.01 KB
10/02/2024 07:13:31 PM
rw-r--r--
📄
link.py
9.59 KB
10/02/2024 07:13:31 PM
rw-r--r--
📄
scheme.py
738 bytes
10/02/2024 07:13:31 PM
rw-r--r--
📄
search_scope.py
4.41 KB
10/02/2024 07:13:31 PM
rw-r--r--
📄
selection_prefs.py
1.86 KB
10/02/2024 07:13:31 PM
rw-r--r--
📄
target_python.py
3.77 KB
10/02/2024 07:13:31 PM
rw-r--r--
📄
wheel.py
3.42 KB
10/02/2024 07:13:31 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. """ SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] class Scheme: """A Scheme holds paths which are used as the base directories for artifacts associated with a Python package. """ __slots__ = SCHEME_KEYS def __init__( self, platlib: str, purelib: str, headers: str, scripts: str, data: str, ) -> None: self.platlib = platlib self.purelib = purelib self.headers = headers self.scripts = scripts self.data = data