Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
ensurepip /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
8.95
KB
-rwxr-xr-x
2022-07-01 10:30
__init__.pyc
7.55
KB
-rw-r--r--
2022-10-05 19:26
__main__.py
88
B
-rw-r--r--
2022-07-01 10:30
__main__.pyc
263
B
-rw-r--r--
2022-10-05 19:26
_uninstall.py
808
B
-rw-r--r--
2022-07-01 10:30
_uninstall.pyc
1.09
KB
-rw-r--r--
2022-10-05 19:26
Save
Rename
"""Basic pip uninstallation support, helper for the Windows uninstaller""" import argparse import ensurepip import sys def _main(argv=None): parser = argparse.ArgumentParser(prog="python -m ensurepip._uninstall") parser.add_argument( "--version", action="version", version="pip {}".format(ensurepip.version()), help="Show the version of pip this will attempt to uninstall.", ) parser.add_argument( "-v", "--verbose", action="count", default=0, dest="verbosity", help=("Give more output. Option is additive, and can be used up to 3 " "times."), ) args = parser.parse_args(argv) return ensurepip._uninstall_helper(verbosity=args.verbosity) if __name__ == "__main__": sys.exit(_main())