Django Ninja - Fast Django REST framework
Project description
Fast to learn, fast to code, fast to run
Django Ninja - Fast Django REST Framework
v1.0 What's new
Read more details here - https://django-ninja.dev/whatsnew_v1/
Or Watch here:
Django Ninja is a web framework for building APIs with Django and Python 3.6+ type hints.
Key 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.
- Production ready: Used by multiple companies on live projects (If you use django-ninja and would like to publish your feedback, please email ppr.vitaly@gmail.com).
Documentation: https://django-ninja.dev
Installation
pip install django-ninja
Usage
In your django project next to urls.py create new api.py
file:
from ninja import NinjaAPI
api = NinjaAPI()
@api.get("/add")
def add(request, a: int, b: int):
return {"result": a + b}
Now go to urls.py
and add the following:
...
from .api import api
urlpatterns = [
path("admin/", admin.site.urls),
path("api/", api.urls), # <---------- !
]
That's it !
Now you've just created an API that:
- receives an HTTP GET request at
/api/add
- takes, validates and type-casts GET parameters
a
andb
- decodes the result to JSON
- generates an OpenAPI schema for defined operation
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 or Redoc):
What next?
- Read the full documentation here - https://django-ninja.dev
- To support this project, please give star it on Github.
- Share it via Twitter
- If you already using django-ninja, please share your feedback to ppr.vitaly@gmail.com
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-1.3.0.tar.gz
.
File metadata
- Download URL: django_ninja-1.3.0.tar.gz
- Upload date:
- Size: 3.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b320e2dc0f41a6032bfa7e1ebc33559ae1e911a426f0c6be6674a50b20819be |
|
MD5 | 179b1e838251d6b08761550b0eb454ac |
|
BLAKE2b-256 | 9c7789ee4ebaa5151b7d85cebaf8d6ec0b9e5074326c3ad8259c763763306d51 |
File details
Details for the file django_ninja-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: django_ninja-1.3.0-py3-none-any.whl
- Upload date:
- Size: 2.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f58096b6c767d1403dfd6c49743f82d780d7b9688d9302ecab316ac1fa6131bb |
|
MD5 | 20acba9dd4741bdae746d6f37fd87546 |
|
BLAKE2b-256 | 0072fd2589323b40893d3224e174eeec0c4ce5a42c7d2d384d11ba269ad4d050 |