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 brings alot batteries to Django Ninja which are also extensible for customization.

Key features:

All Django-Ninja features :

  • Easy: Designed to be easy to use and intuitive.
  • FAST execution: Very high performance thanks to Pydantic and async support.
  • Fast to code: Type hints and automatic docs lets you focus only on business logic.
  • Standards-based: Based on the open standards for APIs: OpenAPI (previously known as Swagger) and JSON Schema.
  • Django friendly: (obviously) has good integration with the Django core and ORM.

Plus Extra:

  • Class Based: Design your APIs in a class based fashion.
  • Permissions: Protect endpoint(s) at ease with defined permissions and authorizations at route level or controller level.
  • Dependency Injection: Controller classes supports dependency injection with python Injector or django_injector. Giving you the ability to inject API dependable services at the controller class constructor and utilizing them where needed

Requirements

  • Python >= 3.6
  • django >= 2.1
  • pydantic >= 1.6
  • Django-Ninja >= 0.16.1

Django-Ninja Benchmark

Both Django-Ninja and Django-Ninja-Extra shares the same benchmark because Django-Ninja-Extra operational core is Django-Ninja Django Ninja REST Framework

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.4.tar.gz (3.6 MB view details)

Uploaded Source

Built Distribution

django_ninja_extra-0.12.4-py3-none-any.whl (29.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: django-ninja-extra-0.12.4.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.4.tar.gz
Algorithm Hash digest
SHA256 b30a3d201933a68de6bc254c5a73f13c1c4f8d92aea3072ed49c982132a5e77a
MD5 0e0fa73453bc639a102b04aff45667b4
BLAKE2b-256 4a2bcdb66fab20bf8f2e5bc28f2538b8f3c73a08ec7f020cf8b6ef6a686a9353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_ninja_extra-0.12.4-py3-none-any.whl
Algorithm Hash digest
SHA256 5f65cd9f047eb8d14c046a35ceab5aec499d4786332f3160e2d60e7c8eaa9120
MD5 54bb36362ecbc6c90625558fc8096f45
BLAKE2b-256 20919540ea97198a16f52e913e4a649d1193fb177922008cd6409495fa7c871a

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