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
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/20449.html