SQLAlchemy is an object relational mapper (ORM) for Python that works with databases like SQLite, MySQL and Postgres. But what does it do and how can you perform basic operations like creating a database, tables, insert data, read data and create relationships?
C H A P T E R S
0:00 What is an ORM?
1:30 Create database schema
3:40 Insert data
4:37 Select data (query)
5:12 Database relationships
8:04 Downsides of an ORM
M Y O N L I N E T R A I N I N G
🎓Do you like my style of teaching? Try free chapters of my online courses: https://pythonforeveryone.com
L I N K S I N T H E V I D E O
SQLAlchemy docs: https://docs.sqlalchemy.org/en/20/
#sqlalchemy #ORM #python