Skip to main content

No project description provided

Project description

fastapi_kit

认证

from fastapi import FastAPI
from fastapi_kit.auth import register_auth

app = FastAPI(...)

register_auth(app)

完成以上操作,即可在request中拿到user

异常

内置异常:

  • ExistException对于已经存在的异常
  • NoPermissionException对于无权限操作的异常
  • NotFoundException对于不存在的异常
  • OverLimitException对于超出限制的异常

对于自定义的业务报错,可以继承CustomException直接在业务处抛错。

注意:自定义异常类,需要使用app.add_exception_handler来注册。

from fastapi_kit.exception import error_exception_handler
app.add_exception_handler(自定义异常类, error_exception_handler)

权限

直接在路由定义处设置权限

from fastapi import APIRouter, Request
from fastapi_kit.permission import permission

router = APIRouter()
@router.post('/subscribe')
@permission('bidding_subscribe_create')
async def subscribe(request: Request):
    """ 创建用户订阅器 """

通用schema返回

对于正常的数据返回,使用RestfulResponse

对于具有翻页的数据返回,使用RestfulPageResponse

  • RestfulResponse
from fastapi_kit.schema import RestfulResponse
@router.post('/subscribe', response_model=RestfulResponse[对象的schema])
async def subscribe(request):
    """ 创建用户订阅器 """

    return dict(data=对象)
  • RestfulPageResponse(常用于列表)
from fastapi_kit.schema import RestfulPageResponse
@router.get('/subscribe', response_model=RestfulPageResponse[List[对象的schema]])
async def subscribe(request):
    """ 获取用户订阅器 """
    return RestfulPageResponse(data=对象)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastapi_kit-0.1.5.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

fastapi_kit-0.1.5-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_kit-0.1.5.tar.gz.

File metadata

  • Download URL: fastapi_kit-0.1.5.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.2 Darwin/22.3.0

File hashes

Hashes for fastapi_kit-0.1.5.tar.gz
Algorithm Hash digest
SHA256 3d11e5a83d9aabbdeae1389661eaf649c0316722941c18b587309c7db9cf62f7
MD5 ce24568201503a9a07dfd3191f08943a
BLAKE2b-256 9feb3d27c2bfabbe0ce890d9620d1bda1599b78bd7271ea1f178c75bcfa232a2

See more details on using hashes here.

File details

Details for the file fastapi_kit-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: fastapi_kit-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 5.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.2 Darwin/22.3.0

File hashes

Hashes for fastapi_kit-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 decbb20fd0ed46677b92264219b9cd0f757d9aac45da6f693b8fa353b4cb8b52
MD5 92bb6e66f94ae93097f61277560ea06b
BLAKE2b-256 10deb0629464988c6345d39ac5ac2f8220329b704906b1606760764ca8d2b5e7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page