Metadata-Version: 2.0
Name: WTForms-ParsleyJS
Version: 2.0.1
Summary: Generate client side, parsley.js validation attributes automatically from WTForms server side validators.
Home-page: https://github.com/fuhrysteve/wtforms-parsleyjs
Author: Johannes Gehrs
Author-email: jgehrs@gmail.com
License: MIT
Download-URL: https://github.com/fuhrysteve/wtforms-parsleyjs/tarball/2.0.1
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: WTForms (>=1.0.5)
Requires-Dist: frozen-flask (>=0.12)


This is a small library which you can hook into your WTForms form classes in order to
enable client side validation.

WTForms allows you to validate your forms on the server side. Ideally, we could reuse
these validators on the client side with JavaScript without writing any extra code. This
will allow for more direct user feedback in our forms.

This library uses ParsleyJS for this task. ParsleyJS is a popular client side
JavaScript validation library. It is configured using specific HTML markup in the forms.

This library will generate these attributes from your WTForms validators.

For more information consult the README.md in the Github repository at
https://github.com/fuhrysteve/wtforms-parsleyjs



