OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
pip
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/17/2025 09:32:20 AM
rwxr-xr-x
📄
__init__.py
11.27 KB
03/02/2023 02:03:51 PM
rw-r--r--
📄
__main__.py
584 bytes
11/06/2016 06:49:45 PM
rw-r--r--
📁
__pycache__
-
05/09/2024 06:58:03 AM
rwxr-xr-x
📁
_vendor
-
05/09/2024 06:58:02 AM
rwxr-xr-x
📄
basecommand.py
11.63 KB
11/06/2016 06:49:45 PM
rw-r--r--
📄
baseparser.py
10.22 KB
11/06/2016 06:49:45 PM
rw-r--r--
📄
cmdoptions.py
16.09 KB
03/02/2023 02:03:51 PM
rw-r--r--
📁
commands
-
05/09/2024 06:58:02 AM
rwxr-xr-x
📁
compat
-
05/09/2024 06:58:02 AM
rwxr-xr-x
📄
download.py
32.03 KB
03/02/2023 02:03:51 PM
rw-r--r--
📄
exceptions.py
7.93 KB
11/06/2016 06:49:45 PM
rw-r--r--
📄
index.py
39.02 KB
03/02/2023 02:03:51 PM
rw-r--r--
📄
locations.py
5.49 KB
11/06/2016 06:49:45 PM
rw-r--r--
📁
models
-
05/09/2024 06:58:02 AM
rwxr-xr-x
📁
operations
-
05/09/2024 06:58:02 AM
rwxr-xr-x
📄
pep425tags.py
10.72 KB
11/06/2016 06:49:45 PM
rw-r--r--
📁
req
-
05/09/2024 06:58:02 AM
rwxr-xr-x
📄
status_codes.py
156 bytes
11/06/2016 06:49:45 PM
rw-r--r--
📁
utils
-
05/09/2024 06:58:02 AM
rwxr-xr-x
📁
vcs
-
05/09/2024 06:58:02 AM
rwxr-xr-x
📄
wheel.py
31.29 KB
03/02/2023 02:03:51 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())