Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
wheel /
cli /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-02-27 13:31
__init__.py
2.51
KB
-rw-r--r--
2021-12-22 21:21
convert.py
9.28
KB
-rw-r--r--
2021-12-22 21:21
pack.py
3.29
KB
-rw-r--r--
2021-12-22 21:21
unpack.py
673
B
-rw-r--r--
2021-12-22 21:21
Save
Rename
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')