Вот пример:
atses = session.query(model.ATS).populate_existing().all()
atses = session.query(model.ATS).all()
Return a Query that will expire and refresh all instances as they are loaded, or reused from the current Session.
populate_existing() does not improve behavior when the ORM is used normally - the Session object’s usual behavior of maintaining a transaction and expiring all attributes after rollback or commit handles object state automatically. This method is not intended for general use.