FastAPI CLI
Project description
Fastapi CLI
在使用FastAPI前,我个人使用Flask居多,比较喜欢Flask的CLI,使用起来比较方便,这个项目就是解决FastAPI没有CLI的问题
使用它自动加载项目中已有的Typer实例
使用前
假设我们的CLI代码在下面的路径app/cli/init.py
import typer
app = typer.Typer()
@app.command()
def version():
return "1.0.0"
为了方便执行,我们需要在项目根目录新增一个入口文件如cli.py并添加下面的内容
from app.cli import app
if __name__ == __main__:
app()
最后执行
python cli.py --help
使用后
使用fastcli由于app.cli:app在默认路径下,因此会自动加载,我们只需要运行下面的命令即可
fastcli --help
安装使用
安装
pip install fastapi-fastcli
# 安装TAB自动补全
fastcli --install-completion
查看路由列表
fastcli routes
启动FastAPI应用
fastcli run
在运行时所在的目录 查找下列路径
- app.commands:app
- app.cli:app
- cli:app
- main:cli
- manage:cli
- app:cli
你也通过环境变量 FASTAPI_APP指定 比如
export FASTAPI_APP=app:app
功能
- 查看路由
- 启动FastAPI应用(uvicron)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fastapi_fastcli-0.1.8.tar.gz
(3.1 kB
view details)
Built Distribution
File details
Details for the file fastapi_fastcli-0.1.8.tar.gz
.
File metadata
- Download URL: fastapi_fastcli-0.1.8.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.8.0-41-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 384d6ba5919870ab8a9b996e61b0cf5ff447fb0314ee78f48c5c731cb62a99ac |
|
MD5 | ceba713a2bf47a56389f7f57898808bf |
|
BLAKE2b-256 | 66090053bba76cc508eb9ecfcb29ed231b85a86d9b81e3add888cdc7d2be5f25 |
File details
Details for the file fastapi_fastcli-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: fastapi_fastcli-0.1.8-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.8.0-41-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35665ba45c4839371134d29c5e1bf968149bae563e1e7fa7add65686be1e4568 |
|
MD5 | b6a7d26a6610dcf50dd85af539be26d1 |
|
BLAKE2b-256 | 31d874a6a9569b8ee2580bf6c0b50be4994eed74fef630e5b0cc00a39fb16a4b |