S
SQLAlchemy
Python SQL toolkit and ORM — both low-level SQL expression language and high-level ORM, the standard for Python database access.
SQLAlchemy provides two distinct APIs — the Core SQL expression language for precise SQL control, and the ORM for mapping Python classes to tables. Its unit-of-work pattern, lazy loading, and connection pooling make it robust for complex applications. FastAPI and Flask both use SQLAlchemy as the recommended ORM.
// tags
ormdatabasesqlpythonpostgresqlmysqlsqlitebackend