Skip to main content

Django Ninja Extra - Class Based Utility and more for Django Ninja(Fast Django REST framework)

Project description

Test PyPI version PyPI version PyPI version PyPI version

Django Ninja Extra

Django Ninja Extra is a utility library built on top of Django Ninja for building and setting up APIs at incredible speed and performance. It adds DRF batteries to Django Ninja and they are really extensible for custom use-cases.

Key features: All Django-Ninja features are fully supported plus others below:

  • Class Based: Design your APIs in a class based fashion.
  • Route Permissions: Protect endpoint(s) at ease with defined permissions. It could be specific to a route or general to all routes
  • Dependency Injection: Controller classes supports dependency injection with python Injector or django_injector

Documentation

Full documentation, visit.

Installation

pip install django-ninja-extra

After installation, add ninja_extra to your INSTALLED_APPS

INSTALLED_APPS = [
    ...,
    'ninja_extra',
]

Usage

In your django project next to urls.py create new api.py file:

from ninja_extra import NinjaExtraAPI, APIController, route, router

api = NinjaExtraAPI()

# function based definition
@api.get("/add", tags=['Math'])
def add(request, a: int, b: int):
    return {"result": a + b}

#class based definition
@router('/', tags=['Math'], permissions=[])
class MathAPI(APIController):

    @route.get('/subtract',)
    def subtract(self, a: int, b: int):
        """Subtracts a from b"""
        return {"result": a - b}

    @route.get('/divide',)
    def divide(self, a: int, b: int):
        """Divides a by b"""
        return {"result": a / b}
    
    @route.get('/multiple',)
    def multiple(self, a: int, b: int):
        """Multiples a with b"""
        return {"result": a * b}
    
api.register_controllers(
    MathAPI
)

Now go to urls.py and add the following:

...
from .api import api

urlpatterns = [
    path("admin/", admin.site.urls),
    path("api/", api.urls),  # <---------- !
]

Interactive API docs

Now go to http://127.0.0.1:8000/api/docs

You will see the automatic interactive API documentation (provided by Swagger UI):

Swagger UI

What next?

  • To support this project, please give star it on Github

Download files

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

Source Distribution

django-ninja-extra-0.12.0.tar.gz (3.6 MB view details)

Uploaded Source

Built Distribution

django_ninja_extra-0.12.0-py3-none-any.whl (27.5 kB view details)

Uploaded Python 3

File details

Details for the file django-ninja-extra-0.12.0.tar.gz.

File metadata

  • Download URL: django-ninja-extra-0.12.0.tar.gz
  • Upload date:
  • Size: 3.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.26.0

File hashes

Hashes for django-ninja-extra-0.12.0.tar.gz
Algorithm Hash digest
SHA256 970e68554e3ce31abd8821f9cbc163d1c961fc445ac167429551ad54275abdeb
MD5 a0be2cb56410b96f178a55f4e5e58654
BLAKE2b-256 58589d3850ce4cd349a137374a9d776bd19f5589387dd58bf9ce72050a4c9157

See more details on using hashes here.

File details

Details for the file django_ninja_extra-0.12.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_ninja_extra-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e8a7c11f38e7c993388dc47c50b5ec5a28b02fd6e56db1cb86dbe329c31d7b26
MD5 976b067baf06d949bbd0293da78e41c6
BLAKE2b-256 8bb8911a4f58f691444a1cb064c2d3ae023f9c4c4fc39351ad4a3650764a8bc0

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