Current Path: > > lib > python3.6 > site-packages > pip > _vendor
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
cachecontrol | Directory | - | - | |
certifi | Directory | - | - | |
chardet | Directory | - | - | |
colorama | Directory | - | - | |
distlib | Directory | - | - | |
html5lib | Directory | - | - | |
idna | Directory | - | - | |
lockfile | Directory | - | - | |
packaging | Directory | - | - | |
pkg_resources | Directory | - | - | |
progress | Directory | - | - | |
requests | Directory | - | - | |
urllib3 | Directory | - | - | |
webencodings | Directory | - | - | |
__init__.py | File | 4670 bytes | April 06 2024 13:40:45. | |
appdirs.py | File | 22368 bytes | April 06 2024 13:40:45. | |
distro.py | File | 38349 bytes | April 06 2024 13:40:45. | |
ipaddress.py | File | 80176 bytes | April 06 2024 13:40:45. | |
pyparsing.py | File | 224171 bytes | April 06 2024 13:40:45. | |
re-vendor.py | File | 773 bytes | April 06 2024 13:40:45. | |
retrying.py | File | 9972 bytes | April 06 2024 13:40:45. | |
six.py | File | 30098 bytes | April 06 2024 13:40:45. |
import os import sys import pip import glob import shutil here = os.path.abspath(os.path.dirname(__file__)) def usage(): print("Usage: re-vendor.py [clean|vendor]") sys.exit(1) def clean(): for fn in os.listdir(here): dirname = os.path.join(here, fn) if os.path.isdir(dirname): shutil.rmtree(dirname) # six is a single file, not a package os.unlink(os.path.join(here, 'six.py')) def vendor(): pip.main(['install', '-t', here, '-r', 'vendor.txt']) for dirname in glob.glob('*.egg-info'): shutil.rmtree(dirname) if __name__ == '__main__': if len(sys.argv) != 2: usage() if sys.argv[1] == 'clean': clean() elif sys.argv[1] == 'vendor': vendor() else: usage()
SILENT KILLER Tool