Embed presentation
Download to read offline
















SQLAlchemy is a Python SQL toolkit and ORM that allows you to work directly with SQL, map data to classes for object relational mapping, and version databases with alembic. The core provides a flexible tool to work with databases using SQL. The ORM allows mapping database tables to domain objects and working with those objects. It uses a unit of work pattern to track object changes and flush those changes to the database in a transaction. Alembic can be used to version control a database schema.














