__init__.py 431 B

12345678910
  1. import warnings
  2. warnings.warn(
  3. 'wtforms.ext.sqlalchemy is deprecated, and will be removed in WTForms 3.0. '
  4. 'The package has been extracted to a separate package wtforms_sqlalchemy: '
  5. 'https://github.com/wtforms/wtforms-sqlalchemy .\n'
  6. 'Or alternately, check out the WTForms-Alchemy package which provides declarative mapping and more: '
  7. 'https://github.com/kvesteri/wtforms-alchemy',
  8. DeprecationWarning
  9. )