tptimer/env/lib/python2.7/site-packages/wtforms/__init__.py

17 lines
403 B
Python
Raw Normal View History

2018-07-20 05:43:02 +00:00
"""
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'