美文网首页
Python click使用

Python click使用

作者: 圈圈55 | 来源:发表于2020-07-17 21:12 被阅读0次

import click

@click.command()

@click.option('--count', default=1, help='Number of greetings.')

@click.option('--name', prompt='Your name',

              help='The person to greet.')

def hello(count, name):

    """Simple program that greets NAME for a total of COUNT times."""

    for x in range(count):

        click.echo('Hello %s!' % name)

if __name__ == '__main__':

    hello()

相关文章

网友评论

      本文标题:Python click使用

      本文链接:https://www.haomeiwen.com/subject/krbnhktx.html