01. Introduction¶
Overview¶
Architechture¶
From: https://aosabook.org/en/v2/sqlalchemy.html
SQLAlchemy's ORM query API simplifies the way we write database queries. Instead of writing raw SQL queries, we can construct queries on our SQLAlchemy session by chaining together methods to retrieve data. We're going to dive into SQLAlchemy's extensive query API to get an idea of all the ways we can query our data.