sanic-api 0.4.1
pip install sanic-api
Latest version
Released:
Sanic 框架实用API工具集,拥有自动生成文档、参数校验、配置的导入、日志功能的优化等功能,更好的助力接口的开发
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License
- Tags Sanic, Sanic扩展, 异步
- Requires: Python >=3.10
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
Sanic-API
让您的sanic服务程序更好的支持API文档、参数校验、日志打印、响应规范等
特性
-
无需任何多余改动,全自动生成openapi文档,使用更加方便 (新版方案正在积极优化开发中)
-
基于
pydantic
的参数校验器,让接口的请求及响应更符合你的预期,使用更方便 -
使用
loguru
库代替官方logging
日志库,并对访问日志进行扩展,支持写入文件及推送loki -
使用了基于
pydantic-settings
的项目配置方案,支持json、yml、ini、.env等多种格式 -
对sanic的启动进行了简单的封装,可快速启动项目
截图
路线图
-
全自动生成openapi文档
-
编写详细文档
安装
使用 pip 安装 sanic-api
pip install sanic-api
使用方法/示例
最小示例
from sanic_api.app import BaseApp
class App(BaseApp):
"""
最小的sanic服务示例
"""
if __name__ == "__main__":
App.run()
带参数校验的示例
from pydantic import BaseModel, Field
from sanic import Blueprint, Sanic, json
from sanic.log import logger
from sanic_api.api import BaseRespTml, Request
from sanic_api.app import BaseApp
user_blueprint = Blueprint("user", "/user")
class UserInfoModel(BaseModel):
user_id: int = Field(title="用户ID")
class UserInfoResponse(BaseRespTml):
user_name: str = Field(title="用户名")
class UseLoginRequest(Request):
form_data: UserInfoModel
@user_blueprint.post("info")
async def user_info(request: Request, json_data: UserInfoModel):
"""
获取用户信息
"""
logger.info(f"data: {json_data}")
info = UserInfoResponse(user_name="张三")
info.temp_data.code = "0000"
info.temp_data.msg = "查询成功"
return info.resp()
@user_blueprint.post("login")
async def user_login(request: UseLoginRequest):
"""
用户登录
"""
logger.info(f"user_id: {request.form_data.user_id}")
return json(request.form_data.model_dump())
class App(BaseApp):
"""
服务示例
"""
async def setup_route(self, app: Sanic):
api = Blueprint.group(url_prefix="api")
api.append(user_blueprint)
app.blueprint(api)
if __name__ == "__main__":
App.run()
开发
要部署这个项目,请先安装rye
rye sync
文档
正在编写中,敬请期待
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License
- Tags Sanic, Sanic扩展, 异步
- Requires: Python >=3.10
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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
Built Distribution
File details
Details for the file sanic_api-0.4.1.tar.gz
.
File metadata
- Download URL: sanic_api-0.4.1.tar.gz
- Upload date:
- Size: 118.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bac304510f209066fd33da15089bc1d50c08fec24f8acda700c54ee9517246ed |
|
MD5 | c50ce9f63651f2108eab000c86c63893 |
|
BLAKE2b-256 | 931300681432c0909dc1ae88777a6cf486bf2d0bd1c49c71df72bfad6ad6d49f |
File details
Details for the file sanic_api-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: sanic_api-0.4.1-py3-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bda3b9d656fb508b0d6bec836e17b064e6c1a4b4ee20cd24a053b99aa3df31f |
|
MD5 | 9eba2886934a3fab28688eb57b1cebdb |
|
BLAKE2b-256 | 1d5727c622689d7de6f73e1215823a95f62125718bd19be46abf64ce64dae506 |