Skip to main content

Simple rest framework is an abstraction for building rest api with well written documentations

Project description

Simple Django Rest Framework - sdrf

Simple Django Rest Framework (sdrf) is django based app used to provide abstraction that combines both django rest framework with drf_yasg a swagger generator to implement good looking and well documented apis using djang

Quick Start

Install

  1. assuming you already have a django project that you need to add this app to you need to start with installing the package using
pip install sdrf
  1. install required apps to INSTALLED_APPS in django settings
INSTALLED_APPS = [
    ...
    "rest_framework",
    "drf_yasg",
    'sdrf',
]
  1. add swagger docs url to your project urls
from django.contrib import admin
from django.urls import path,include

urlpatterns = [
    ...
    path('',include('sdrf.urls'))
]
  1. check out if everything is okay by visting default swagger docs url at http://<your-project-url>/rest Empty Swagger UI example

Configure

now you have an rest app up and running you can configure it as you want. addtionally for django rest framework configuration and drf_yasg configuration you have our sdrf configs you can make with these default values

config variable name default value description
REST_APP_NAME Weather API the app name used in swagger docs view
REST_APP_VERSION v1 the api version used in swagger docs view
REST_APP_CREATOR {'name': '','email': '','url': ''} the contact information for communicating the rest app creator used in swagger docs view
REST_APP_BASE_URL rest/ the base url that the swagger docs will be viewd on and a prefix for default api endpoint

Usage

Build Single Method API Endpoints

  1. assuming you have an django app that already exsist create and an API endpoint class that inheiret APIEndPoint class for example see out hello world here
from sdrf.api_endpoint import APIEndpoint
from sdrf.endpoint_config import APIEndpointConfig


class HelloEndPoint(APIEndpoint):
    def configure(self, config: APIEndpointConfig) -> APIEndpointConfig:
        ...
        return config

    @staticmethod
    def execute(request: Request, *args, **kwargs) -> Response:
        name = request.query_params.get('name')
        return HttpResponse(f'Hello {name}')
  1. configure your api endpoint using configure method, in this method you have all sort of configuration that you can configure for your rest api even the auhentication and authorization configurations, http method, routing, and swagger view configs simplified with easy and nice looking config code
from sdrf.api_endpoint import APIEndpoint
from sdrf.endpoint_config import APIEndpointConfig


class HelloEndPoint(APIEndpoint):
    def configure(self, config: APIEndpointConfig) -> APIEndpointConfig:
        config.name = 'Hello Rest!'
        config.description= """
        First Well documented API endpoint that says hello to name that you send
        """
        config.endpoint= 'hello'
        config.http_method = 'GET'
        config.set_response(200,'hello [name]')
        config.add_parameter('name',self.DataType.STRING,self.ParameterTypes.QUERY_PARAM)
        config.add_tag('First API')
        return config

    @staticmethod
    def execute(request: Request, *args, **kwargs) -> Response:
        name = request.query_params.get('name')
        return HttpResponse(f'Hello {name}')
  1. finally add your api endpoint to your app urls using as_url static method
from .views import HelloEndPoint

urlpatterns = [
    HelloEndPoint.as_url()
]
  1. check your output and test your api in the swagger view

An example of swagger output of APIEndPoint

Build Model API EndPoint

just like you would do in normal django rest framework and make ViewSet you dont need to learn anything new to that but instead of inherting rest_framework.viewsets.ModelViewSetyou will inherit ourModelEndPoint`like that

from .models import Person,PersonSeralizer
from sdrf.model_endpoint import ModelEndPoint
...
class PersonEndPoint(ModelEndPoint):
    queryset = Person.objects.all()
    serializer_class = PersonSeralizer

then simply make it as urls in urls.py

from .views import PersonEndPoint

urlpatterns = [
    ...
    PersonEndPoint.as_urls(),
]

Model EndPoint Swagger output

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

sdrf-0.1.1.tar.gz (8.7 kB view hashes)

Uploaded Source

Built Distribution

sdrf-0.1.1-py3-none-any.whl (9.1 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