Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
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 /
setuptools /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 16:44
_distutils
[ DIR ]
drwxr-xr-x
2025-04-08 16:44
_vendor
[ DIR ]
drwxr-xr-x
2025-04-08 16:44
command
[ DIR ]
drwxr-xr-x
2025-04-08 16:44
config
[ DIR ]
drwxr-xr-x
2025-04-08 16:44
extern
[ DIR ]
drwxr-xr-x
2025-04-08 16:44
__init__.py
8.96
KB
-rw-r--r--
2023-01-20 19:58
_deprecation_warning.py
218
B
-rw-r--r--
2023-01-20 19:58
_entry_points.py
2.23
KB
-rw-r--r--
2023-01-20 19:58
_imp.py
2.34
KB
-rw-r--r--
2023-01-20 19:58
_importlib.py
1.28
KB
-rw-r--r--
2023-01-20 19:58
_itertools.py
675
B
-rw-r--r--
2023-01-20 19:58
_path.py
749
B
-rw-r--r--
2023-01-20 19:58
_reqs.py
501
B
-rw-r--r--
2023-01-20 19:58
archive_util.py
7.17
KB
-rw-r--r--
2023-01-20 19:58
build_meta.py
19.14
KB
-rw-r--r--
2023-01-20 19:58
dep_util.py
949
B
-rw-r--r--
2023-01-20 19:58
depends.py
5.37
KB
-rw-r--r--
2023-01-20 19:58
discovery.py
20.33
KB
-rw-r--r--
2023-01-20 19:58
dist.py
44.46
KB
-rw-r--r--
2024-12-31 00:08
errors.py
2.41
KB
-rw-r--r--
2023-01-20 19:58
extension.py
5.46
KB
-rw-r--r--
2023-01-20 19:58
glob.py
4.76
KB
-rw-r--r--
2023-01-20 19:58
installer.py
3.73
KB
-rw-r--r--
2023-01-20 19:58
launch.py
812
B
-rw-r--r--
2023-01-20 19:58
logging.py
1.2
KB
-rw-r--r--
2023-01-20 19:58
monkey.py
4.74
KB
-rw-r--r--
2023-01-20 19:58
msvc.py
46.61
KB
-rw-r--r--
2023-01-20 19:58
namespaces.py
3.02
KB
-rw-r--r--
2023-01-20 19:58
package_index.py
39.43
KB
-rw-r--r--
2024-12-31 00:08
py34compat.py
245
B
-rw-r--r--
2023-01-20 19:58
sandbox.py
14.01
KB
-rw-r--r--
2023-01-20 19:58
script (dev).tmpl
218
B
-rw-r--r--
2023-01-20 19:58
script.tmpl
138
B
-rw-r--r--
2023-01-20 19:58
unicode_utils.py
941
B
-rw-r--r--
2023-01-20 19:58
version.py
144
B
-rw-r--r--
2023-01-20 19:58
wheel.py
8.18
KB
-rw-r--r--
2023-01-20 19:58
windows_support.py
718
B
-rw-r--r--
2023-01-20 19:58
Save
Rename
import sys import inspect import logging import distutils.log from . import monkey def _not_warning(record): return record.levelno < logging.WARNING def configure(): """ Configure logging to emit warning and above to stderr and everything else to stdout. This behavior is provided for compatibility with distutils.log but may change in the future. """ err_handler = logging.StreamHandler() err_handler.setLevel(logging.WARNING) out_handler = logging.StreamHandler(sys.stdout) out_handler.addFilter(_not_warning) handlers = err_handler, out_handler logging.basicConfig( format="{message}", style='{', handlers=handlers, level=logging.DEBUG) if inspect.ismodule(distutils.dist.log): monkey.patch_func(set_threshold, distutils.log, 'set_threshold') # For some reason `distutils.log` module is getting cached in `distutils.dist` # and then loaded again when patched, # implying: id(distutils.log) != id(distutils.dist.log). # Make sure the same module object is used everywhere: distutils.dist.log = distutils.log def set_threshold(level): logging.root.setLevel(level*10) return set_threshold.unpatched(level)