Skip to main content

A Simple json renderer for django.

Project description

A Simple json renderer for django.

Install

pip install django-json-renderer

Api

JsonResponse

Native Django JsonResponse (or it’s polyfill).

ModelJSONEncoder

Inherit from DjangoJSONEncoder, extends the parser of QuerySet (using list(queryset.values())) and Models (using model_to_dict).

render_json(encoder=ModelJSONEncoder, safe=True, **kwargs)

Return the decorator that convert json-serializable to JsonResponse (using ModelJSONEncoder as default). encoder and safe params has the same meaning as Django JsonResponse.

Example

from django.db import models
from django_json_encoder import render_json

class Person(models.Model):
    first_name = models.CharField(max_length=30)
    last_name = models.CharField(max_length=30)

@render_json()
def get_first_person(request):
    return Person.objects.all().first()

## `safe` params
@render_json(safe=False)
def get_all_person(request):
    return Person.objects.all()

License

MIT

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

django-json-renderer-0.1.2.tar.gz (2.4 kB view hashes)

Uploaded Source

Supported by

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