OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4730
/
usr
/
lib
/
python3
/
dist-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
63 bytes
10/18/2024 05:04:47 PM
rw-r--r--
📄
candidate.py
931 bytes
10/18/2024 05:04:47 PM
rw-r--r--
📄
direct_url.py
6.73 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
format_control.py
2.43 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
index.py
1.01 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
installation_report.py
2.75 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
link.py
20.29 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
scheme.py
738 bytes
10/18/2024 05:04:47 PM
rw-r--r--
📄
search_scope.py
4.53 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
selection_prefs.py
1.86 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
target_python.py
4.17 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
wheel.py
3.52 KB
10/18/2024 05:04:47 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