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.130.95
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 /
setuptools /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_distutils
[ DIR ]
drwxr-xr-x
_vendor
[ DIR ]
drwxr-xr-x
command
[ DIR ]
drwxr-xr-x
extern
[ DIR ]
drwxr-xr-x
__init__.py
7.27
KB
-rw-r--r--
_deprecation_warning.py
218
B
-rw-r--r--
_imp.py
2.34
KB
-rw-r--r--
archive_util.py
6.91
KB
-rw-r--r--
build_meta.py
10.29
KB
-rw-r--r--
config.py
22.61
KB
-rw-r--r--
dep_util.py
949
B
-rw-r--r--
depends.py
5.37
KB
-rw-r--r--
dist.py
42.15
KB
-rw-r--r--
errors.py
1.52
KB
-rw-r--r--
extension.py
1.64
KB
-rw-r--r--
glob.py
4.76
KB
-rw-r--r--
installer.py
3.73
KB
-rw-r--r--
launch.py
812
B
-rw-r--r--
monkey.py
5.09
KB
-rw-r--r--
msvc.py
49.38
KB
-rw-r--r--
namespaces.py
3.02
KB
-rw-r--r--
package_index.py
40.89
KB
-rw-r--r--
py34compat.py
245
B
-rw-r--r--
sandbox.py
14.01
KB
-rw-r--r--
script (dev).tmpl
218
B
-rw-r--r--
script.tmpl
138
B
-rw-r--r--
unicode_utils.py
941
B
-rw-r--r--
version.py
144
B
-rw-r--r--
wheel.py
8.09
KB
-rw-r--r--
windows_support.py
714
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : unicode_utils.py
import unicodedata import sys # HFS Plus uses decomposed UTF-8 def decompose(path): if isinstance(path, str): return unicodedata.normalize('NFD', path) try: path = path.decode('utf-8') path = unicodedata.normalize('NFD', path) path = path.encode('utf-8') except UnicodeError: pass # Not UTF-8 return path def filesys_decode(path): """ Ensure that the given path is decoded, NONE when no expected encoding works """ if isinstance(path, str): return path fs_enc = sys.getfilesystemencoding() or 'utf-8' candidates = fs_enc, 'utf-8' for enc in candidates: try: return path.decode(enc) except UnicodeDecodeError: continue def try_encode(string, enc): "turn unicode encoding into a functional routine" try: return string.encode(enc) except UnicodeEncodeError: return None
Close