A platform independent form serializer for Django.
Project description
django_remote_jsonschema_forms
A package that allows you to serialize django forms, including fields and widgets into Python dictionary for easy conversion into JSON Schema.
This way one can expose a django form using the JSON Schema standard.
These forms can be then rendered using JS libraries like react-jsonschema-form.
This package is heavily based on django-remote-forms, which we have used as an example.
We have changed the output format that django-remote-forms provides and return a JSON Schema compatible format.
Usage
Say you have a django form like this one:
from django.db import models
from django import forms
class Task(models.Model):
text = models.TextField("Text")
email = models.TextField("Text")
class MyForm(forms.ModelForm):
class Meta:
model = Task
You can create a view to expose it in JSON Schema like this:
from .forms import MyForm
from django_remote_jsonschema_forms.forms import RemoteJSONSChemaForm
from django.http import JsonResponse
def json_schema_form_view(request):
form = MyForm()
remote_form = RemoteJSONSChemaForm(form)
return JsonResponse(remote_form.as_dict())
Remember that you will need to register a url in urls.py to expose it.
Project details
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
File details
Details for the file django_remote_jsonschema_forms-1.0.1.tar.gz.
File metadata
- Download URL: django_remote_jsonschema_forms-1.0.1.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b21e1826eeaf17320b14ba28e73726f1a6ab312557fea87f47866e7238555ab
|
|
| MD5 |
b2d7c5c20c18349a921a82095cc143b5
|
|
| BLAKE2b-256 |
d24955aedb049aca45aba67be840b214f383178a8f26eb785fbf0a54cbf29f90
|