Skip to main content

This project provides some extra functionalities to be used with Django REST Framework

Project description

drf-addons-plus

Some magic to the base Django REST Framework


Overview

This project provides some extra functionalities to be used with Django REST Framework

  • Field selection to Viewsets, eg. ?fields=id,name
  • Conditional filtering to Viewsets, eg. ?conditional=active,-inactive

Requirements

  • Python 3.8+
  • Django 4.2, 5.0, 5.1
  • Django REST Framework 3.0+ or less, you can test it

Installation

Install using pip...

pip install drf_addons_plus

Examples

  • models.py:
from django.db import models

class FooModel(models.Model):
    name = models.CharField(max_length=100)
    status = models.BooleanField()
  • serializers.py:
from drf_addons_plus import serializers

from .models import FooModel


class FooSerializer(serializers.DynamicFieldsModelSerializer):
    class Meta:
        model = FooModel
        fields = ['name', 'status']
  • views.py:
from rest_framework import filters
from drf_addons_plus import filters as filters_plus
from drf_addons_plus import viewsets

from .models import FooModel
from .serializers import FooSerializer


class FooViewSet(viewsets.FieldsModelViewSet):
    queryset = FooModel.objects.all()
    serializer_class = FooSerializer
    permission_classes = []
    filter_backends = [filters.SearchFilter, filters_plus.ConditionalFilter]
    search_fields = ['name']
    conditional_fields = ['status']
  • Request http://localhost:8000/foo/:
[
    {
        "name": "Bar",
        "status": false
    }
]
  • Request http://localhost:8000/foo/?fields=name&conditional=-status:
[
    {
        "name": "Bar"
    }
]
  • Request http://localhost:8000/foo/?conditional=status:
[]

Disclaimer

This project has started and maybe will be maintened, but it's simple enough to probably not give you any trouble.

Credits

Django REST Framework YAtOff

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drf_addons_plus-0.1.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

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

drf_addons_plus-0.1-py3-none-any.whl (25.2 kB view details)

Uploaded Python 3

File details

Details for the file drf_addons_plus-0.1.tar.gz.

File metadata

  • Download URL: drf_addons_plus-0.1.tar.gz
  • Upload date:
  • Size: 16.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for drf_addons_plus-0.1.tar.gz
Algorithm Hash digest
SHA256 05f53528c81dec98791bccfedd186314dd38c0263a73801c3deea54f4d4b876d
MD5 bc75c31a95945ecd9200b955c42f5035
BLAKE2b-256 e9e2729a5aad1ba954960541f473b3bcd5df41a9c0f8f4db3b5a1809450615f8

See more details on using hashes here.

File details

Details for the file drf_addons_plus-0.1-py3-none-any.whl.

File metadata

  • Download URL: drf_addons_plus-0.1-py3-none-any.whl
  • Upload date:
  • Size: 25.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for drf_addons_plus-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 614884e0dfd269f9ee08f3f4fa76211ff2626e8b1fba0f2cbdfd2fa38c8a77e8
MD5 122bce066ef08a54401ec246fefbfc23
BLAKE2b-256 55330f19f68688144ad8ca9a087cce8a5fd5c906ac1c8f1aca244ac805a782c1

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