formalchemy – Imports

All FormAlchemy‘s objects live under the formalchemy package

forms related classes:

>>> from formalchemy import FieldSet, Field

validators:

>>> from formalchemy import validators, ValidationError

For manual Field definition:

>>> from formalchemy import types

tables for collection rendering:

>>> from formalchemy import Grid

Advanced fields customization:

>>> from formalchemy import FieldRenderer, AbstractFieldSet

The above imports are equivalent to:

>>> from formalchemy import *

Previous topic

Modules contents

Next topic

formalchemy.fieldsFields and Renderers

This Page