A package to help bridge the gap between Django's Forms and VueFormGenerator's Schemas using DjangoRestFramework.
Project description
A package to help bridge the gap between Django’s Forms and VueFormGenerator’s Schemas using DjangoRestFramework.
Documentation
The full documentation is at https://django-vueformgenerator.readthedocs.org.
Quickstart
Install Django-VueFormGenerator:
pip install django-vueformgenerator
Then use it in a project:
from django_vueformgenerator.schema import Schema from django import forms import json class TestForm(forms.Form): title = forms.CharField(max_length=128) content = forms.TextField(max_length=1280) form = TestForm() # or TestForm(data={'title':'My Title'}) schema = Schema().render(form) print(json.dumps(schema))
Features
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install -r requirements_test.txt (myenv) $ python runtests.py
Credits
Tools used in rendering this package:
History
0.2.3 (2016-11-03)
Add support for dotted models. Use this feature by defining your Form with a field that has a name with double-underscores (e.g. “foo__bar__baz”, which will become “foo.bar.baz” in the schema’s model field).
0.2.2 (2016-11-01)
Fix implementation of using initial data in forms. Previously, if you used CharField(initial=’foo’) then this information would not be preserved when creating the schema.
0.2.1 (2016-10-27)
Fix bug in tests so that the tests run successfully in Python 2.7.
0.2.0 (2016-10-25)
Add ability to use existing data in form
DEPRECATED: Any code which previously used Schema().render(MyForm) should now use Schema().render(MyForm()) (in other words, render() accepts an instance of a form, rather than a form itself). To check if you are calling the function against contract, you can run your code with python -Wd (e.g. python -Wd manage.py runserver).
0.1.1 (2016-10-18)
Add additional tests for schema generation
Add components for numbers and for selecting between choices
Add Python 2 support
Add better documentation
Fix exception raised on bad widget
0.1.0 (2016-10-11)
First release on PyPI.
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
Built Distribution
File details
Details for the file django-vueformgenerator-0.2.3.tar.gz
.
File metadata
- Download URL: django-vueformgenerator-0.2.3.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3dd1cd47b42bc2972dc80c2883df69960f8f0979f8666938cf544071b4db68d0 |
|
MD5 | 528bbbd3258eb30503a328b141cf973d |
|
BLAKE2b-256 | c79c4e0426ed6700dd13351792b61f06cb34d3221baecd05730bdd469a663eb5 |
File details
Details for the file django_vueformgenerator-0.2.3-py2.py3-none-any.whl
.
File metadata
- Download URL: django_vueformgenerator-0.2.3-py2.py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e86f97e6209d0b2cde6646c43fbb4164d98ef6766cb46e2d94e91c484158d4b0 |
|
MD5 | 227699d811f3789b4ea4862356a14b0c |
|
BLAKE2b-256 | 9a3f91069d74fc76d5453daff96c1d5cda5958a6b338ba41e7e2f3bfae24e3f1 |