Limiting SQL Alchemy queries
-
Comments:
- here.
Note for future reference: especially since the data migration script I was running today was running out of memory and crashing.
You can use slice notation, which limits the query:
>>> for p in db.query(Person)[:10]:
... print p
This rocks.