forked from s434650/CatOrNot
17 lines
380 B
Python
17 lines
380 B
Python
"""
|
|
WTForms
|
|
=======
|
|
|
|
WTForms is a flexible forms validation and rendering library for python web
|
|
development.
|
|
|
|
:copyright: Copyright (c) 2008 by the WTForms team.
|
|
:license: BSD, see LICENSE.rst for details.
|
|
"""
|
|
from wtforms import validators, widgets
|
|
from wtforms.fields import *
|
|
from wtforms.form import Form
|
|
from wtforms.validators import ValidationError
|
|
|
|
__version__ = '2.2.1'
|