Skip to content

Instantly share code, notes, and snippets.

@kshade
kshade / wtforms-test.py
Last active October 18, 2017 00:09
wtforms-test.py
#!/bin/env python3
import wtforms
import wtforms_json
wtforms_json.init()
class TestSchemaJson(wtforms.Form):
name = wtforms.StringField('name', validators=[wtforms.validators.Optional(),
wtforms.validators.Length(2, 128)])
potato = wtforms.StringField('potato', validators=[wtforms.validators.Optional(),