├── .gitignore ├── .gitmodules ├── .isort.cfg ├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── setup.py ├── tests ├── __init__.py ├── test_boolean_field.py ├── test_errors.py ├── test_field_type_coercion.py ├── test_json_decoder.py ├── test_object_defaults.py ├── test_patch_data.py ├── test_select_multiple_field.py └── test_wtforms_alchemy.py ├── tox.ini └── wtforms_json └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/.gitmodules -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/docs/make.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_boolean_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tests/test_boolean_field.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_field_type_coercion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tests/test_field_type_coercion.py -------------------------------------------------------------------------------- /tests/test_json_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tests/test_json_decoder.py -------------------------------------------------------------------------------- /tests/test_object_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tests/test_object_defaults.py -------------------------------------------------------------------------------- /tests/test_patch_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tests/test_patch_data.py -------------------------------------------------------------------------------- /tests/test_select_multiple_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tests/test_select_multiple_field.py -------------------------------------------------------------------------------- /tests/test_wtforms_alchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tests/test_wtforms_alchemy.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/tox.ini -------------------------------------------------------------------------------- /wtforms_json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvesteri/wtforms-json/HEAD/wtforms_json/__init__.py --------------------------------------------------------------------------------