Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.214.78
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
wheel /
cli /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
2.51
KB
-rw-r--r--
convert.py
9.28
KB
-rw-r--r--
pack.py
3.29
KB
-rw-r--r--
unpack.py
673
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : unpack.py
from __future__ import print_function import os.path import sys from ..wheelfile import WheelFile def unpack(path, dest='.'): """Unpack a wheel. Wheel content will be unpacked to {dest}/{name}-{ver}, where {name} is the package name and {ver} its version. :param path: The path to the wheel. :param dest: Destination directory (default to current directory). """ with WheelFile(path) as wf: namever = wf.parsed_filename.group('namever') destination = os.path.join(dest, namever) print("Unpacking to: {}...".format(destination), end='') sys.stdout.flush() wf.extractall(destination) print('OK')
Close