Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
hc_python /
lib /
python3.12 /
site-packages /
build /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_compat
[ DIR ]
drwxr-xr-x
__init__.py
837
B
-rw-r--r--
__main__.py
15.15
KB
-rw-r--r--
_builder.py
13.15
KB
-rw-r--r--
_ctx.py
2.82
KB
-rw-r--r--
_exceptions.py
1.59
KB
-rw-r--r--
_types.py
553
B
-rw-r--r--
_util.py
2.27
KB
-rw-r--r--
env.py
13.91
KB
-rw-r--r--
py.typed
0
B
-rw-r--r--
util.py
1.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : util.py
# SPDX-License-Identifier: MIT from __future__ import annotations import pathlib import tempfile import pyproject_hooks from . import ProjectBuilder from ._compat import importlib from ._types import StrPath, SubprocessRunner from .env import DefaultIsolatedEnv def _project_wheel_metadata(builder: ProjectBuilder) -> importlib.metadata.PackageMetadata: with tempfile.TemporaryDirectory() as tmpdir: path = pathlib.Path(builder.metadata_path(tmpdir)) metadata = importlib.metadata.PathDistribution(path).metadata assert metadata is not None return metadata def project_wheel_metadata( source_dir: StrPath, isolated: bool = True, *, runner: SubprocessRunner = pyproject_hooks.quiet_subprocess_runner, ) -> importlib.metadata.PackageMetadata: """ Return the wheel metadata for a project. Uses the ``prepare_metadata_for_build_wheel`` hook if available, otherwise ``build_wheel``. :param source_dir: Project source directory :param isolated: Whether or not to run invoke the backend in the current environment or to create an isolated one and invoke it there. :param runner: An alternative runner for backend subprocesses """ if isolated: with DefaultIsolatedEnv() as env: builder = ProjectBuilder.from_isolated_env( env, source_dir, runner=runner, ) env.install(builder.build_system_requires) env.install(builder.get_requires_for_build('wheel')) return _project_wheel_metadata(builder) else: builder = ProjectBuilder( source_dir, runner=runner, ) return _project_wheel_metadata(builder) __all__ = [ 'project_wheel_metadata', ]
Close