Every line of 'unable to import flask_sqlalchemy' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
30 def _sqlalchemy_installed(): 31 try: 32 import sqlalchemy 33 except ImportError: 34 raise ImproperlyConfigured( 35 'The database result backend requires SQLAlchemy to be installed.' 36 'See http://pypi.python.org/pypi/SQLAlchemy') 37 return sqlalchemy