Skip to main content

No project description provided

Project description

jsend-python

This is a package to response jsend-like format

requirements

pip install django djangorestframework

Installation

pip install git+https://github.com/Visapick-Team/jsend-python.git

Response

Django

settings.py

INSTALLED_APPS = [
    ...
    "jsend2",
]
REST_FRAMEWORK = {
    # jsend2 limit/offset pagination 
    "DEFAULT_PAGINATION_CLASS": "jsend2.django.utils.JSendLimitOffsetPagination",
    
    # jsend2 response
    "DEFAULT_RENDERER_CLASSES": [
        "jsend2.django.utils.JSendRenderer",
    ],
}

output

{
    "status": "faild",
    "message": "Any message",
    "data": {
        ...
    },
    "code": "-100",
    "total": 100,
    "offset": 12

}

status: str

  • required
  • API status as a string, standard values are success, fail and error.

message: str

  • optional
  • Default is None and not included in response.

data: Any

  • required
  • The original result of API response.

code: int

  • optional
  • Default is None and not included in response.

total: int

  • optional
  • Total objects retrieved if the result is paginated.

count: int

  • optional
  • Object's count in the data if the result is paginated.

offset: int

  • optional
  • Object's offset if the result is paginated.

``

FastAPI

main.py

from fastapi import FastAPI
from fastapi_pagination import add_pagination
from router import router

app = FastAPI()

app.include_router(router)

add_pagination(app)

router.py

from fastapi import APIRouter
from fastapi import Query
from pagination import Pagination
from response import Response

router = APIRouter()

single Object

@router.get(
    "/user",
    response_model=Response[UserOut],
    response_model_exclude_none=True
    )
async def get_user(user_id: int = Query(ge=0)):
    user: UserOut = find_user(user_id)
    return Response(
        data=user,
        status="success"  # default 'success'
    )

Paginated

@router.get(
    "/users",
    response_model=Pagination[UserOut],
    response_model_exclude_none=True
    )
async def get_users():
    response = paginate(users)
    response.status = "success"  # default 'success'
    return response

Exception Handling

Django

settings.py

REST_FRAMEWORK = {
    # jsend2 exception handler
    "EXCEPTION_HANDLER": "jsend2.django.exception.jsend_exception_handler",
    
}

FastAPI

main.py

from fastapi import FastAPI, HTTPException
from api import router
from src.jsend2.jfast.exception import ExceptionMiddleware

app = FastAPI()

app.include_router(router)

ExceptionMiddleware(app)

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

jsend2-0.0.4.tar.gz (6.0 kB view hashes)

Uploaded Source

Built Distribution

jsend2-0.0.4-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

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