12345678910111213141516 |
- """
- 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'
|