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