3.2 python命令行click

文档地址:https://click.palletsprojects.com/en/7.x/api/?highlight=argument#click.Argument

1、示例

#! 

import click


@click.command()
@click.argument('name', type=click.Choice(['text', 'ocr']))
@click.option('-p', type=int, required=True, help='Enter the number of processes ')
@click.option('-c', type=int, required=True, help='Enter the number of cycles')
@click.option('-t', default=20, help='Enter timeout')
def run(name, p, c, t):
    """ Simple program that greets NAME. """
    if name == 'text':
        print(name, p, c, t)
    else:
        print(name, p, c, t)


if __name__ == '__main__':
    run()

 2、执行

python cli.py text -p 10 -c 20

3、服务器上配置命令别名

alias run='python cli.py'

4、 用run命令执行

run text -p 10 -c 20

5、使用nano方式

新建命令文件

nano /usr/bin/mycommand 

编辑命令

#!/bin/bash
echo "hello world"
python3 $file text -p 10 -c 20

 把命令修改为可执行

chmod +x /usr/bin/mycommand

把cli.py导入环境变量中

 export file="/opt/crawl/py_tools/file_check/cli.py"

执行mycommand命令即可 

你可能感兴趣的:(python,python)