Python单击多个命令名

2024-09-29 22:34:23 发布

您现在位置:Python中文网/ 问答频道 /正文

用Python Click可以做这样的事情吗?在

@click.command(name=['my-command', 'my-cmd'])
def my_command():
    pass

我希望我的命令行类似于:

^{pr2}$

以及

mycli my-cmd 

但引用相同的函数。在

我需要像AliasedGroup这样的类吗?在


Tags: 函数命令行namecmdmydefpass事情
2条回答

这里有一个更简单的方法来解决同样的问题:

class AliasedGroup(click.Group):
    def get_command(self, ctx, cmd_name):
        try:
            cmd_name = ALIASES[cmd_name].name
        except KeyError:
            pass
        return super().get_command(ctx, cmd_name)


@click.command(cls=AliasedGroup)
def cli():
    ...

@click.command()
def install():
    ...

@click.command()
def remove():
    ....


cli.add_command(install)
cli.add_command(remove)


ALIASES = {
    "it": install,
    "rm": remove,
}

AliasedGroup不是您所追求的,因为它允许最短的前缀匹配,而且您似乎需要实际的别名。但这个例子确实提供了一些有用的提示。它继承了click.Group并覆盖了一些行为。在

以下是一种接近你所追求目标的方法:

自定义类

这个类覆盖了用来修饰命令函数的click.Group.command()方法。它增加了传递命令别名列表的功能。这个类还添加了一个引用别名命令的简短帮助。在

class CustomMultiCommand(click.Group):

    def command(self, *args, **kwargs):
        """Behaves the same as `click.Group.command()` except if passed
        a list of names, all after the first will be aliases for the first.
        """
        def decorator(f):
            if isinstance(args[0], list):
                _args = [args[0][0]] + list(args[1:])
                for alias in args[0][1:]:
                    cmd = super(CustomMultiCommand, self).command(
                        alias, *args[1:], **kwargs)(f)
                    cmd.short_help = "Alias for '{}'".format(_args[0])
            else:
                _args = args
            cmd = super(CustomMultiCommand, self).command(
                *_args, **kwargs)(f)
            return cmd

        return decorator

使用自定义类

通过将cls参数传递给click.group()修饰符,通过group.command()添加到组中的任何命令都可以传递一个命令名列表。在

^{pr2}$

测试代码:

import click

@click.group(cls=CustomMultiCommand)
def cli():
    """My Excellent CLI"""


@cli.command(['my-command', 'my-cmd'])
def my_command():
    """This is my command"""
    print('Running the command')


if __name__ == '__main__':
    cli(' help'.split())

测试结果:

Usage: my_cli [OPTIONS] COMMAND [ARGS]...

  My Excellent CLI

Options:
   help  Show this message and exit.

Commands:
  my-cmd      Alias for 'my-command'
  my-command  This is my command

相关问题 更多 >

    热门问题