Metadata-Version: 2.1
Name: WTForms
Version: 2.2.1
Summary: A flexible forms validation and rendering library for Python web development.
Home-page: https://wtforms.readthedocs.io/
Author: Thomas Johansson, James Crasta
Author-email: wtforms@simplecodes.com
Maintainer: WTForms team
Maintainer-email: davidism@gmail.com
License: BSD
Project-URL: Code, https://github.com/wtforms/wtforms
Project-URL: Issue tracker, https://github.com/wtforms/wtforms/issues
Project-URL: Documentation, https://wtforms.readthedocs.io/
Description: WTForms
        =======
        
        WTForms is a flexible forms validation and rendering library for Python
        web development. It is `framework agnostic`_ and can work with whatever
        web framework and template engine you choose. There are various
        community libraries that provide closer integration with popular
        frameworks.
        
        To get started using WTForms, we recommend reading the `crash course`_
        in the docs.
        
        .. _crash course: https://wtforms.readthedocs.io/en/stable/crash_course.html
        .. _framework agnostic: https://wtforms.readthedocs.io/en/stable/faq.html#does-wtforms-work-with-library-here
        
        
        Installation
        ------------
        
        Install and update using pip::
        
            pip install -U WTForms
        
        
        Third-Party Library Integrations
        --------------------------------
        
        WTForms is designed to work with any web framework and template engine.
        There are a number of community-provided libraries that make integrating
        with frameworks even better.
        
        -   `Flask-WTF`_ integrates with the Flask framework. It can
            automatically load data from the request, uses Flask-Babel to
            translate based on user-selected locale, provides full-application
            CSRF, and more.
        -   `WTForms-Alchemy`_ provides rich support for generating forms from
            SQLAlchemy models, including an expanded set of fields and
            validators.
        -   `WTForms-SQLAlchemy`_ provides ORM-backed fields and form generation
            from SQLAlchemy models.
        -   `WTForms-AppEngine`_ provides ORM-backed fields and form generation
            from AppEnding db/ndb schema
        -   `WTForms-AppEngine`_ provides ORM-backed fields and form generation
            from Django models, as well as integration with Django's I18N
            support.
        
        .. _Flask-WTF: https://flask-wtf.readthedocs.io/
        .. _WTForms-Alchemy: https://wtforms-alchemy.readthedocs.io/
        .. _WTForms-SQLAlchemy: https://github.com/wtforms/wtforms-sqlalchemy
        .. _WTForms-AppEngine: https://github.com/wtforms/wtforms-appengine
        .. _WTForms-Django: https://github.com/wtforms/wtforms-django
        
        
        Links
        -----
        
        -   Documentation: https://wtforms.readthedocs.io/
        -   License: `BSD <https://github.com/wtforms/wtforms/blob/master/LICENSE>`_
        -   Releases: https://pypi.org/project/WTForms/
        -   Code: https://github.com/wtforms/wtforms
        -   Issue tracker: https://github.com/wtforms/wtforms/issues
        -   Test status:
        
            -   Linux: https://travis-ci.org/wtforms/wtforms
        
        -   Test coverage: https://coveralls.io/github/wtforms/wtforms
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: locale
