X7ROOT File Manager
Current Path:
/opt/hc_python/lib/python3.12/site-packages/wheel
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
wheel
/
ðŸ“
..
📄
__init__.py
(59 B)
📄
__main__.py
(455 B)
ðŸ“
__pycache__
📄
_bdist_wheel.py
(21.19 KB)
📄
_setuptools_logging.py
(781 B)
📄
bdist_wheel.py
(1.08 KB)
ðŸ“
cli
📄
macosx_libfile.py
(16.18 KB)
📄
metadata.py
(6.03 KB)
📄
util.py
(423 B)
ðŸ“
vendored
📄
wheelfile.py
(8.21 KB)
Editing: util.py
from __future__ import annotations import base64 import logging log = logging.getLogger("wheel") def urlsafe_b64encode(data: bytes) -> bytes: """urlsafe_b64encode without padding""" return base64.urlsafe_b64encode(data).rstrip(b"=") def urlsafe_b64decode(data: bytes) -> bytes: """urlsafe_b64decode without padding""" pad = b"=" * (4 - (len(data) & 3)) return base64.urlsafe_b64decode(data + pad)
Upload File
Create Folder