All FormAlchemy‘s objects live under the formalchemy package
forms related classes:
>>> from formalchemy import FieldSet, Field
>>> 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 *