OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
venv
/
lib
/
python3.6
/
site-packages
/
pip
/
_internal
/
models
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 06:58:42 AM
rwxr-xr-x
📄
__init__.py
63 bytes
05/09/2024 06:58:42 AM
rw-r--r--
📄
candidate.py
990 bytes
05/09/2024 06:58:42 AM
rw-r--r--
📄
direct_url.py
6.2 KB
05/09/2024 06:58:42 AM
rw-r--r--
📄
format_control.py
2.46 KB
05/09/2024 06:58:42 AM
rw-r--r--
📄
index.py
1.01 KB
05/09/2024 06:58:42 AM
rw-r--r--
📄
link.py
9.59 KB
05/09/2024 06:58:42 AM
rw-r--r--
📄
scheme.py
738 bytes
05/09/2024 06:58:42 AM
rw-r--r--
📄
search_scope.py
4.41 KB
05/09/2024 06:58:42 AM
rw-r--r--
📄
selection_prefs.py
1.86 KB
05/09/2024 06:58:42 AM
rw-r--r--
📄
target_python.py
3.77 KB
05/09/2024 06:58:42 AM
rw-r--r--
📄
wheel.py
3.42 KB
05/09/2024 06:58:42 AM
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