Tagged Questions
2
votes
2answers
2k views
sqlalchemy exists for query
How to check that data in query is exists?
For example:
users_query = User.query.filter_by(email='x@x.com')
How I can check that users with that email exists?
Now i check this with
...