typer

Typer是一个用于构建CLI的FastAPI

是FastAPI的升级版

安装

pip install typer

eg:

import typer

def main(name: str):
    typer.echo(f"Hello {name}")

if __name__ == "__main__":
    typer.run(main)

运行

python index.py baby

结果输出

Hello baby

posted @ 2021-01-04 17:35  慕尘  阅读(724)  评论(1编辑  收藏  举报