OXIESEC PANEL
- Current Dir:
/
/
lib
/
python3.6
/
site-packages
/
pip
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/07/2025 11:05:01 PM
rwxr-xr-x
📄
__init__.py
11.65 KB
04/06/2024 01:40:45 PM
rw-r--r--
📄
__main__.py
584 bytes
04/06/2024 01:40:45 PM
rw-r--r--
📁
__pycache__
-
02/07/2025 07:34:08 PM
rwxr-xr-x
📁
_vendor
-
02/07/2025 07:34:08 PM
rwxr-xr-x
📄
basecommand.py
11.63 KB
04/06/2024 01:40:45 PM
rw-r--r--
📄
baseparser.py
10.22 KB
04/06/2024 01:40:45 PM
rw-r--r--
📄
cmdoptions.py
16.09 KB
04/06/2024 01:40:45 PM
rw-r--r--
📁
commands
-
02/07/2025 07:34:08 PM
rwxr-xr-x
📁
compat
-
02/07/2025 07:34:08 PM
rwxr-xr-x
📄
download.py
32.08 KB
04/06/2024 01:40:45 PM
rw-r--r--
📄
exceptions.py
7.93 KB
04/06/2024 01:40:45 PM
rw-r--r--
📄
index.py
40.58 KB
04/06/2024 01:40:45 PM
rw-r--r--
📄
locations.py
5.49 KB
04/06/2024 01:40:45 PM
rw-r--r--
📁
models
-
02/07/2025 07:34:08 PM
rwxr-xr-x
📁
operations
-
02/07/2025 07:34:08 PM
rwxr-xr-x
📄
pep425tags.py
10.72 KB
04/06/2024 01:40:45 PM
rw-r--r--
📁
req
-
02/07/2025 07:34:08 PM
rwxr-xr-x
📄
status_codes.py
156 bytes
04/06/2024 01:40:45 PM
rw-r--r--
📁
utils
-
02/07/2025 07:34:08 PM
rwxr-xr-x
📁
vcs
-
02/07/2025 07:34:08 PM
rwxr-xr-x
📄
wheel.py
31.53 KB
04/06/2024 01:40:45 PM
rw-r--r--
Editing: __main__.py
Close
from __future__ import absolute_import import os import sys # If we are running from a wheel, add the wheel to sys.path # This allows the usage python pip-*.whl/pip install pip-*.whl if __package__ == '': # __file__ is pip-*.whl/pip/__main__.py # first dirname call strips of '/__main__.py', second strips off '/pip' # Resulting path is the name of the wheel itself # Add that to sys.path so we can import pip path = os.path.dirname(os.path.dirname(__file__)) sys.path.insert(0, path) import pip # noqa if __name__ == '__main__': sys.exit(pip.main())