Skip to main content

Django Ninja - Fast Django REST framework

Project description

Fast to learn, fast to code, fast to run

Test Coverage PyPI version

Django Ninja - Fast Django REST Framework

Django Ninja is a web framework for building APIs with Django and Python 3.6+ based type hints.

Key features

  • Easy: Designed to be easy to use and intuitive.
  • Fast: Very high performance thanks to Pydantic and async support.
  • Fast to code: Type hints and automatic docs let's 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) have good integration with Django core an ORM.
  • Production ready: Used by multiple companies on live projects (If you use django-ninja and would like to publish your feedback - please email to ppr.vitaly@gmail.com)

Django Ninja REST Framework

Documentation: https://django-ninja.rest-framework.com


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 !

And you already have:

  • API that receives HTTP GET request at /api/add
  • Takes, validates and type-casts GET parameters a and b
  • Decodes to JSON operation result
  • 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):

Swagger UI

Next

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

django-ninja-0.9.5.tar.gz (1.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_ninja-0.9.5-py3-none-any.whl (23.7 kB view details)

Uploaded Python 3

File details

Details for the file django-ninja-0.9.5.tar.gz.

File metadata

  • Download URL: django-ninja-0.9.5.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.25.1

File hashes

Hashes for django-ninja-0.9.5.tar.gz
Algorithm Hash digest
SHA256 3bb435e5e3a2ac8b3edcfbcdff7f1b5f9d25c8d2e596771eab6c875b66b063a5
MD5 84e7333e37ab3e3ee2be2224b5a0b1d0
BLAKE2b-256 a32c979b890144f70b39103150677b1f123029c4fe23f811b791583d0b5ff8f4

See more details on using hashes here.

File details

Details for the file django_ninja-0.9.5-py3-none-any.whl.

File metadata

  • Download URL: django_ninja-0.9.5-py3-none-any.whl
  • Upload date:
  • Size: 23.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.25.1

File hashes

Hashes for django_ninja-0.9.5-py3-none-any.whl
Algorithm Hash digest
SHA256 a969706aee30f5e85d896eb3d24d91a10a94d15bf67c74dcc7818e17bb2050f3
MD5 01ad69f785e784a54d3c507247c56973
BLAKE2b-256 bbfeb7bf0ca1d44c042f2ec5f5799474aa3f84c604be479d6e33ca302c95e540

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page