Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.8 /
site-packages /
pip /
_internal /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
cli
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
commands
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
distributions
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
models
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
network
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
operations
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
req
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
utils
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
vcs
[ DIR ]
drwxr-xr-x
2026-02-18 14:58
__init__.py
80
B
-rw-r--r--
2023-10-18 00:00
build_env.py
7.34
KB
-rw-r--r--
2023-10-18 00:00
cache.py
8.17
KB
-rw-r--r--
2023-10-18 00:00
collector.py
17.58
KB
-rw-r--r--
2023-10-18 00:00
configuration.py
13.88
KB
-rw-r--r--
2023-10-18 00:00
download.py
20.32
KB
-rw-r--r--
2023-10-18 00:00
exceptions.py
10.01
KB
-rw-r--r--
2023-10-18 00:00
index.py
36.02
KB
-rw-r--r--
2023-10-18 00:00
legacy_resolve.py
16.83
KB
-rw-r--r--
2023-10-18 00:00
locations.py
5.29
KB
-rw-r--r--
2023-10-18 00:00
main.py
1.33
KB
-rw-r--r--
2023-10-18 00:00
pep425tags.py
15.57
KB
-rw-r--r--
2023-10-18 00:00
pyproject.py
6.34
KB
-rw-r--r--
2023-10-18 00:00
self_outdated_check.py
7.75
KB
-rw-r--r--
2023-10-18 00:00
wheel.py
42.07
KB
-rw-r--r--
2023-10-18 00:00
Save
Rename
"""Primary application entrypoint. """ # The following comment should be removed at some point in the future. # mypy: disallow-untyped-defs=False from __future__ import absolute_import import locale import logging import os import sys from pip._internal.cli.autocompletion import autocomplete from pip._internal.cli.main_parser import parse_command from pip._internal.commands import create_command from pip._internal.exceptions import PipError from pip._internal.utils import deprecation logger = logging.getLogger(__name__) def main(args=None): if args is None: args = sys.argv[1:] # Configure our deprecation warnings to be sent through loggers deprecation.install_warning_logger() autocomplete() try: cmd_name, cmd_args = parse_command(args) except PipError as exc: sys.stderr.write("ERROR: %s" % exc) sys.stderr.write(os.linesep) sys.exit(1) # Needed for locale.getpreferredencoding(False) to work # in pip._internal.utils.encoding.auto_decode try: locale.setlocale(locale.LC_ALL, '') except locale.Error as e: # setlocale can apparently crash if locale are uninitialized logger.debug("Ignoring error %s when setting locale", e) command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) return command.main(cmd_args)