Django Ninja Extra - Class Based Utility and more for Django Ninja(Fast Django REST framework)
Project description
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
from ninja_extra import APIController, route, router
from ninja_extra.shortcuts import get_object_or_404
from django.contrib.auth import get_user_model
from .models import UserProfile
api = NinjaExtraAPI()
user_model = get_user_model()
# 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):
What next?
- To support this project, please give star it on Github
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-ninja-extra-0.11.2.tar.gz
.
File metadata
- Download URL: django-ninja-extra-0.11.2.tar.gz
- Upload date:
- Size: 3.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.26.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14922b9dde806c031faae62c251c7e0a87e96ba61b1ee90918236b2a0e04e301 |
|
MD5 | 16223d371b5d1f594d4685287832ead6 |
|
BLAKE2b-256 | 9c32263bbf0af7a07565c3d8958588f82b73f7206bab6bc705a910ba2bf92295 |
File details
Details for the file django_ninja_extra-0.11.2-py3-none-any.whl
.
File metadata
- Download URL: django_ninja_extra-0.11.2-py3-none-any.whl
- Upload date:
- Size: 24.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.26.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 748d30d5416724788c3b46920252343bae05a99e4139a90276cd9643131a727b |
|
MD5 | ed83856605c50d350faf8c0e5cf6c3c1 |
|
BLAKE2b-256 | 3491aafec86573453716d7ab40bcab1d7afecd37dda889dd0bde016495288617 |