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 complete class-based fashion of building and setting up APIs at incredible speed with incredible performance. It utilizes Django Ninja core features without compromising speed.
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 to APIController class and utilizing them where needed
Requirements
- Python >= 3.6
- django >= 2.1
- pydantic >= 1.6
- Django-Ninja >= 0.16.1
Django-Ninja Benchmark
Django-Ninja-Extra uses Django-Ninja under the hood, it can be assumed that Django-Ninja-Extra has the same benchmark with Django-Ninja
Full documentation, visit.
Example
Checkout this sample project: https://github.com/eadwinCode/bookstoreapi
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, api_controller, http_get
api = NinjaExtraAPI()
# function based definition
@api.get("/add", tags=['Math'])
def add(request, a: int, b: int):
return {"result": a + b}
#class based definition
@api_controller
class MathAPI:
@http_get('/subtract',)
def subtract(self, a: int, b: int):
"""Subtracts a from b"""
return {"result": a - b}
@http_get('/divide',)
def divide(self, a: int, b: int):
"""Divides a by b"""
return {"result": a / b}
@http_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 django.urls import path
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-easy-0.15.4.tar.gz
.
File metadata
- Download URL: django-ninja-extra-easy-0.15.4.tar.gz
- Upload date:
- Size: 7.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.27.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34096e3028452d7aad5058d3be83bdc0a2892111336514721a07ad6c0a7853c1 |
|
MD5 | edd20176ad0c0cbbeacf267c67877fa9 |
|
BLAKE2b-256 | 7bff8b518dfe6e60240c3cbfda530ced9b9c8abcef0bd201b38e5da3d3df1259 |
File details
Details for the file django_ninja_extra_easy-0.15.4-py3-none-any.whl
.
File metadata
- Download URL: django_ninja_extra_easy-0.15.4-py3-none-any.whl
- Upload date:
- Size: 47.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.27.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c826d84df23110a5c99dab55435b9536fa3786a16d6b4ea270b5ef36c0f86d5 |
|
MD5 | 049601ec36bb8abb53e920239148a60e |
|
BLAKE2b-256 | eb328beb23fe736efef17aadd9efb5ba0bbb83ae5a90c586058fce6d86c4237a |