Skip to main content

Django api manager and unifier

Project description

django-morest - make your api more rest

v0.0.1 - Basic functionality of api

Documentation

settings.py

INSTALLED_APPS = [
    ...
    "morest",
    ...
]

MIDDLEWARE = [
    "morest.middlewares.RequestIDMiddleware",
    "morest.middlewares.ExceptionMiddleware",
    ...
]

REST_FRAMEWORK = {
    'EXCEPTION_HANDLER': "morest.middlewares.DRFExceptionMiddleware",
}

usage

test view

from django.http import HttpRequest
from rest_framework.views import APIView
from morest.api import Response


class TestView(APIView):
    def get(self, request: HttpRequest):
        return Response({
            "key": "value"
        })

response

{
    "data": {
        "key": "value"
    },
    "status": "ok",
    "status_code": 200,
    "request_id": "4d06538d2d7b40db8e729757a363fe55",
    "message": "OK"
}

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

django_morest-0.0.3.tar.gz (9.7 kB view details)

Uploaded Source

File details

Details for the file django_morest-0.0.3.tar.gz.

File metadata

  • Download URL: django_morest-0.0.3.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for django_morest-0.0.3.tar.gz
Algorithm Hash digest
SHA256 9ff2268f4117ad0a7ba69a27d28f7c1a1bc6c4dccc6c797826f91f184d484f6f
MD5 4cf586210d6647f5aa8b3a28f5dc04b8
BLAKE2b-256 32b255c1f51572591abb989b4ef070bf9ed1c39a6a80a736f21152b043de5314

See more details on using hashes here.

Supported by

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