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
你也通过环境变量 TYPER_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.4.tar.gz
(3.1 kB
view details)
Built Distribution
File details
Details for the file fastapi_fastcli-0.1.4.tar.gz
.
File metadata
- Download URL: fastapi_fastcli-0.1.4.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.12 Linux/5.15.0-83-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e9ac1569864e55a74c1d30213ba860fd8f5bc32a522e115611b4adf0ec9e18b |
|
MD5 | 3a5e258f3cf138e9d8e60b472dad2a93 |
|
BLAKE2b-256 | a68fe94fd03e15af350fe5f149f45cd0a2a2ee0ee520b2918d365a117efe72c1 |
File details
Details for the file fastapi_fastcli-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: fastapi_fastcli-0.1.4-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.12 Linux/5.15.0-83-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2c5d37ebf904c48ed47a3343595e2c54cf72ae431167c33481a2c08b635e2b9 |
|
MD5 | 654e2d7e99d90cc6ad8aa3a4bf82f974 |
|
BLAKE2b-256 | add0b50285614d153fbc52af6dbcfe45bb589b6f3212137ef0470ae1445408fe |