[ Th3_Err0r Bypassed ]




Upload:

Command:

liwaavux@216.73.216.252: ~ $
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, 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:
            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[cmd_name]()
        command.parser.print_help()

        return SUCCESS

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
__init__.py File 2.18 KB 0644
bundle.py File 1.75 KB 0644
completion.py File 1.79 KB 0644
freeze.py File 4.55 KB 0644
help.py File 927 B 0644
install.py File 13.46 KB 0644
list.py File 6.65 KB 0644
search.py File 4.63 KB 0644
show.py File 2.7 KB 0644
uninstall.py File 2.15 KB 0644
unzip.py File 185 B 0644
wheel.py File 7.53 KB 0644
zip.py File 14.47 KB 0644