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 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 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.10.2.tar.gz (1.6 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.10.2-py3-none-any.whl (375.7 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for django-ninja-0.10.2.tar.gz
Algorithm Hash digest
SHA256 d514a0872ce3654f3652cf138f6263748083fb931f9cc7dfb2c1bb81f9ab7e47
MD5 a76a9607d0d5008c25c478aca24ff5b3
BLAKE2b-256 75e5982eb674495c1247d6cf33c6122aa12ed7b17471f709edf50dad0fb5c2b8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for django_ninja-0.10.2-py3-none-any.whl
Algorithm Hash digest
SHA256 684a97952ec5f5dd7a8e3948fd44412d70d27c5b3796fac714ffdbe6b0fdddc2
MD5 e53a2298ae6c621ae56723c18cdd35e8
BLAKE2b-256 40599418554100b7638c44c783a6845205ddf9258d3df6ed552c81196b306d86

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