OXIESEC PANEL
- Current Dir:
/
/
lib
/
python3.9
/
site-packages
/
pip
/
_internal
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
__init__.py
587 bytes
10/02/2024 07:13:31 PM
rw-r--r--
📁
__pycache__
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
build_env.py
9.72 KB
10/02/2024 07:13:31 PM
rw-r--r--
📄
cache.py
9.22 KB
10/02/2024 07:13:31 PM
rw-r--r--
📁
cli
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📁
commands
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
configuration.py
12.84 KB
10/02/2024 07:13:31 PM
rw-r--r--
📁
distributions
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
exceptions.py
12.46 KB
10/02/2024 07:13:31 PM
rw-r--r--
📁
index
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📁
locations
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
main.py
340 bytes
10/02/2024 07:13:31 PM
rw-r--r--
📁
metadata
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📁
models
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📁
network
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📁
operations
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
pyproject.py
7.05 KB
10/02/2024 07:13:31 PM
rw-r--r--
📁
req
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📁
resolution
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
self_outdated_check.py
6.24 KB
10/02/2024 07:13:31 PM
rw-r--r--
📁
utils
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📁
vcs
-
02/13/2025 08:32:46 PM
rwxr-xr-x
📄
wheel_builder.py
11.96 KB
10/02/2024 07:13:31 PM
rw-r--r--
Editing: __init__.py
Close
from typing import List, Optional import pip._internal.utils.inject_securetransport # noqa from pip._internal.utils import _log # init_logging() must be called before any call to logging.getLogger() # which happens at import of most modules. _log.init_logging() def main(args: (Optional[List[str]]) = None) -> int: """This is preserved for old console scripts that may still be referencing it. For additional details, see https://github.com/pypa/pip/issues/7498. """ from pip._internal.utils.entrypoints import _wrapper return _wrapper(args, _nowarn=True)