Skip to main content

Django Ninja - Fast Django REST framework

Project description

SCR-20230123-m1t

^ Please read ^

Fast to learn, fast to code, fast to run

Test Coverage PyPI version Downloads

Django Ninja - Fast Django REST Framework

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).

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 !

Now you've just created an API that:

  • receives an HTTP GET request at /api/add
  • takes, validates and type-casts GET parameters a and b
  • 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):

Swagger UI

What 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.22.0.tar.gz (3.5 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.22.0-py3-none-any.whl (2.3 MB view details)

Uploaded Python 3

File details

Details for the file django_ninja-0.22.0.tar.gz.

File metadata

  • Download URL: django_ninja-0.22.0.tar.gz
  • Upload date:
  • Size: 3.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for django_ninja-0.22.0.tar.gz
Algorithm Hash digest
SHA256 b678183244361ea838cc33f6258c41da0f0b31fe3bc2cabba341a42ab1f47902
MD5 cb26cc8a2504fc01a3988f2e6ff2799b
BLAKE2b-256 8d9c193e2ba119e463bc22104a2c2d184dd5f74d267ee1edcba4889527054c52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: django_ninja-0.22.0-py3-none-any.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for django_ninja-0.22.0-py3-none-any.whl
Algorithm Hash digest
SHA256 43fadd6d6947b35a64bd84d91e522abab336d3036dd165da31f64180b0d42729
MD5 8a6d6f92532ead00b777e2565dc2dfe1
BLAKE2b-256 4b517010bf45472f5375e0e872fa7cc940799badf6f8a893961c471cbf5bbac3

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