Django-ninja-aio-crud

Latest version: v0.7.8

Safety actively analyzes 723607 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 4

0.6.0

What's Changed

News:
* Added support for query params into APIViewSet schemas by caspel26.
* Improved ModelUtil get object function by caspel26.
* Improved error handling and make error responses more verborse by caspel26.

**Full Changelog**: https://github.com/caspel26/django-ninja-aio-crud/compare/v0.5.0...v0.6.0

🚀 Query params support
* define your query params fields in this way. They are applied on CRUD list endpoint and will be shown also into swagger.

python
views.py
from ninja_aio import NinjaAIO
from ninja_aio.views import APIViewSet

from .models import Foo

api = NinjaAIO()


class FooAPI(APIViewSet):
model = Foo
api = api
query_params = {"name": (str, None), "active": (bool, None)}

async def query_params_handler(self, queryset, filters):
return queryset.filter(**{k: v for k, v in filters.items() if v is not None})

FooAPI().add_views_to_route()

ModelUtil get object improvement
You can now give extra getters and filters attribute to make the object query!


And that's it! For more information check **<a href="https://github.com/caspel26/django-ninja-aio-crud/blob/main/README.md">README</a>**

0.5.0

What's Changed

News:
* Added support for excluded fields into serialization schemas by caspel26.
* Added possibility to exclude crud endpoints into APIViewSet by caspel26.
* Improved dynamical obtaining of object's pk for crud paths using pydantic by caspel26.

**Full Changelog**: https://github.com/caspel26/django-ninja-aio-crud/compare/v0.4.0...v0.5.0

🚀 Schema excluded fields support
* define your excluded fields in this way.

python
models.py
from django.db import models
from ninja_aio.models import ModelSerializer


class Foo(ModelSerializer):
name = models.CharField(max_length=30)
bar = models.CharField(max_length=30, default="")
active = models.BooleanField(default=False)

class ReadSerializer:
excludes = ["bar"]

class CreateSerializer:
fields = ["name"]
optionals = [("bar", str), ("active", bool)]

class UpdateSerializer:
excludes = ["id", "name"]
optionals = [[("bar", str), ("active", bool)]

🚀 Exclude CRUD endpoints into Views
You are able to exclude every crud endpoint, except for the additional views added by yourself, defining "disbale" APIViewSet's attribute.
python
views.py
from ninja_aio import NinjaAIO
from ninja_aio.views import APIViewSet

from .models import Foo

api = NinjaAIO()


class FooAPI(APIViewSet):
model = Foo
api = api
disable = ["retrieve", "update"]


FooAPI().add_views_to_route()


And that's it! For more information check **<a href="https://github.com/caspel26/django-ninja-aio-crud/blob/main/README.md">README</a>**

0.4.0

What's Changed

News:
* Added support for optional fields into serialization schemas by caspel26.
* Better code error handling using Django Ninja exception handlers by caspel26

**Full Changelog**: https://github.com/caspel26/django-ninja-aio-crud/compare/v0.3.1...v0.4.0

🚀 Schema optional fields support
* It's an improved version of Django Ninja optional fields into dynamic schemas definition.

* define your optional fields in this way.

Python
models.py
from django.db import models
from ninja_aio.models import ModelSerializer


class Foo(ModelSerializer):
name = models.CharField(max_length=30)
bar = models.CharField(max_length=30, default="")
active = models.BooleanField(default=False)

class ReadSerializer:
fields = ["id", "name", "bar"]

class CreateSerializer:
fields = ["name"]
optionals = [("bar", str), ("active", bool)]

class UpdateSerializer:
optionals = [[("bar", str), ("active", bool)]

* And that's it! For more information check **<a href="https://github.com/caspel26/django-ninja-aio-crud/blob/main/README.md">README</a>**

0.3.1

What's Changed
* fix: render and imports by caspel26 in https://github.com/caspel26/django-ninja-aio-crud/pull/8


**Full Changelog**: https://github.com/caspel26/django-ninja-aio-crud/compare/v0.3.0...v0.3.1

0.3.0

What's Changed

News:
* Vanilla Django Model automatic async CRUD support by caspel26.

**Full Changelog**: https://github.com/caspel26/django-ninja-aio-crud/compare/v0.2.2...v0.3.0

🚀 Django Model Auto Async CRUD
* Now you can give to APIViewSet a vanilla django Model (including its schemas or CRUD will not work) as model class attribute. Like ModelSerializer also forward and reverse relations are supported.

* define your models.

Python
models.py
from django.db import models


class Bar(models.Model):
name = models.CharField(max_length=30)
description = models.TextField(max_length=30)


class Foo(models.Model):
name = models.CharField(max_length=30)
active = models.BooleanField(default=False)
bar = models.ForeignKey(Bar, on_delete=models.CASCADE, related_name="foos")


* define your schemas. See **<a href="https://django-ninja.dev/guides/response/">Django Ninja Schema documentation</a>**

Python
schema.py
from ninja import Schema


class BarSchemaIn(Schema):
name: str
description: str


class BarSchemaRelated(Schema):
id: int
name: str
description: str


class BarSchemaOut(BarSchemaRelated):
foos: list["FooSchemaRelated"]


class BarSchemaUpdate(Schema):
description: str

class FooSchemaIn(Schema):
name: str
active: bool
bar: int


This schema will be used into bar schema out for reverse relation
It can be used for every model related, it's just an example like BarSchemaRelated
class FooSchemaRelated(Schema):
id: int
name: str
active: bool


class FooSchemaOut(FooSchemaRelated):
bar: BarSchemaRelated


class FooSchemaUpdate(Schema):
name: str
active: bool



* then define your views.

Python
views.py
from ninja_aio import NinjaAIO
from ninja_aio.views import APIViewSet

from . import models, schemas

api = NinjaAIO()


class FooAPI(APIViewSet):
model = models.Foo
api = api
schema_in = schemas.FooSchemaIn
schema_out = schemas.FooSchemaOut
schema_update = schemas.FooSchemaUpdate


class BarAPI(APIViewSet):
model = models.Bar
api = api
schema_in = schemas.BarSchemaIn
schema_out = schemas.BarSchemaOut
schema_update = schemas.BarSchemaUpdate


FooAPI().add_views_to_route()
BarAPI().add_views_to_route()


* now run the server and go on /docs urls.

![image](https://github.com/user-attachments/assets/e25b6195-344d-45b6-b1bc-bd6c31e31b84)
![image](https://github.com/user-attachments/assets/a65ad631-f322-4cc4-a976-080593e5ba19)
![image](https://github.com/user-attachments/assets/2a745c1e-8ec4-4019-bd40-3f214ce10e3d)

0.2.2

What's New
* Better error handling implementation by caspel26


**Full Changelog**: https://github.com/caspel26/django-ninja-aio-crud/compare/v0.2.1...v0.2.2

Page 3 of 4

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.