This project models the relationships between Authors, Articles, and Magazines using SQLite and Python with raw SQL queries.
- Author can write many Articles.
- Magazine can publish many Articles.
- Articles belong to one Author and one Magazine.
python -m venv env
source env/bin/activate # For Windows: env\Scripts\activatepip install pytestpython scripts/setup_db.pylib/models: Author, Article, Magazine classes.lib/db: SQLite connection, schema, seed.scripts: Setup scripts.