17 lines
403 B
Python
17 lines
403 B
Python
![]() |
"""
|
||
|
WTForms
|
||
|
=======
|
||
|
|
||
|
WTForms is a flexible forms validation and rendering library for python web
|
||
|
development.
|
||
|
|
||
|
:copyright: Copyright (c) 2010 by Thomas Johansson, James Crasta and others.
|
||
|
:license: BSD, see LICENSE.txt for details.
|
||
|
"""
|
||
|
from wtforms import validators, widgets
|
||
|
from wtforms.fields import *
|
||
|
from wtforms.form import Form
|
||
|
from wtforms.validators import ValidationError
|
||
|
|
||
|
__version__ = '2.1'
|