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
The above imports are equivalent to:
>>> from formalchemy import *