Current Path: > > lib > python3.6 > site-packages > > pip > commands
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 | - | - | |
__init__.py | File | 2244 bytes | April 06 2024 13:40:45. | |
check.py | File | 1382 bytes | April 06 2024 13:40:45. | |
completion.py | File | 2453 bytes | April 06 2024 13:40:45. | |
download.py | File | 7810 bytes | April 06 2024 13:40:45. | |
freeze.py | File | 2835 bytes | April 06 2024 13:40:45. | |
hash.py | File | 1597 bytes | April 06 2024 13:40:45. | |
help.py | File | 982 bytes | April 06 2024 13:40:45. | |
install.py | File | 18289 bytes | April 06 2024 13:40:45. | |
list.py | File | 11369 bytes | April 06 2024 13:40:45. | |
search.py | File | 4502 bytes | April 06 2024 13:40:45. | |
show.py | File | 5891 bytes | April 06 2024 13:40:45. | |
uninstall.py | File | 2884 bytes | April 06 2024 13:40:45. | |
wheel.py | File | 7729 bytes | April 06 2024 13:40:45. |
from __future__ import absolute_import from pip.basecommand import Command, SUCCESS from pip.exceptions import CommandError class HelpCommand(Command): """Show help for commands""" name = 'help' usage = """ %prog <command>""" summary = 'Show help for commands.' def run(self, options, args): from pip.commands import commands_dict, get_similar_commands try: # 'pip help' with no args is handled by pip.__init__.parseopt() cmd_name = args[0] # the command we need help for except IndexError: return SUCCESS if cmd_name not in commands_dict: guess = get_similar_commands(cmd_name) msg = ['unknown command "%s"' % cmd_name] if guess: msg.append('maybe you meant "%s"' % guess) raise CommandError(' - '.join(msg)) command = commands_dict[cmd_name]() command.parser.print_help() return SUCCESS
SILENT KILLER Tool