A model JSONField with an integrated form for django.
Project description
A model JSONField with an integrated form for django.
Before doing this app we looked up for a JSONField implementation, but all that we have found had nothing that fit our needs. Our needs are just a model field to store a json string and a form that is able to validate user input against our json fields requirements.
Installation
Just copy this project to any folder in your computer or use pip.
pip install vlk-django-jsonfield
Usage
### Model
To create your JSONField just use the same notation as an usual model field:
jsonfield = VLKJSONField(null=True, default=lambda: {‘field1’: False, ‘field2’: ‘abc’})
[You must use lambda when using a dict as default] (https://docs.djangoproject.com/en/dev/ref/models/fields/#default)
### Form
To use this field in a form just use the form field with the same name of your model field and the subname separated by __:
jsonfield__field1 = forms.CharField() jsonfield__field2 = forms.IntegerField(required=False)
The right side is the usual of a form field.
Who is using
This project is used in Vialink software since January, 2013. Are you using it? Let us know :)
Contributing
Do the usual github fork and pull request dance.
License
Released under the MIT license. Read LICENSE.md for more information.
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
File details
Details for the file vlk-django-jsonfield-1.2.1.tar.gz
.
File metadata
- Download URL: vlk-django-jsonfield-1.2.1.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cc6081b26970dfd721b628f8ab81d977c4476b7462140673452632d4dc83070 |
|
MD5 | c639791367758b9340105b5bccef198c |
|
BLAKE2b-256 | 02729787c0de74d565c0329f8d0215b50b04171032b659d49e1c63b7bdab8e66 |