Moving Beyond Flat Files in Python With SQLAlchemy and SQLite



Moving Beyond Flat Files in Python With SQLAlchemy and SQLite

Moving Beyond Flat Files in Python With SQLAlchemy and SQLite

All programs process data in one form or another, and many need to be able to save and retrieve that data from one invocation to the next. Python, SQLite, and SQLAlchemy give your programs database functionality, allowing you to store data in a single file without the need for a database server.

This is a portion of the complete course, which you can find here:
https://realpython.com/courses/sqlite-sqlalchemy-python/

The rest of the course covers:
– Using SQLAlchemy as an ORM
– Using SQLAlchemy Core Statements
– Creating Many-to-Many Relationships

Comments are closed.