gitextract_nsm2hc9e/ ├── .github/ │ └── workflows/ │ ├── lint.yml │ └── test.yaml ├── .gitignore ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── Makefile │ ├── advanced.rst │ ├── api.rst │ ├── column_conversion.rst │ ├── conf.py │ ├── configuration.rst │ ├── customization.rst │ ├── index.rst │ ├── introduction.rst │ ├── license.rst │ ├── make.bat │ ├── relationships.rst │ ├── types.rst │ └── validators.rst ├── pyproject.toml ├── setup.py ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_class_map.py │ ├── test_column_aliases.py │ ├── test_configuration.py │ ├── test_country_field.py │ ├── test_custom_fields.py │ ├── test_deep_form_relations.py │ ├── test_descriptions.py │ ├── test_field_exclusion.py │ ├── test_field_order.py │ ├── test_field_parameters.py │ ├── test_field_trimming.py │ ├── test_form_meta.py │ ├── test_hybrid_properties.py │ ├── test_i18n_extension.py │ ├── test_inheritance.py │ ├── test_labels.py │ ├── test_model_field_list.py │ ├── test_model_form_factory.py │ ├── test_model_form_field.py │ ├── test_phone_number.py │ ├── test_phone_number_field.py │ ├── test_query_select_field.py │ ├── test_select_field.py │ ├── test_synonym.py │ ├── test_types.py │ ├── test_unique_validator.py │ ├── test_utils.py │ ├── test_validators.py │ ├── test_weekdays_field.py │ └── test_widgets.py ├── tox.ini └── wtforms_alchemy/ ├── __init__.py ├── exc.py ├── fields.py ├── generator.py ├── utils.py └── validators.py