I\'m new to Python and SQLAlchemy. I\'ve been playing about with retrieving things from the database, and it\'s worked every time, but im a little unsure what to do when the sel
Your query is correct, you just need to change the way you interact with the result. The method you are looking for is all().
application = Applications.query.filter_by(brochureID=brochure.id) entries = application.all()