A simple personal book tracker web app I built to learn Flask and SQLAlchemy.
- Add books with title and author
- Track reading status (To Read / Reading / Finished)
- View all books in a table
- Flask (Python web framework)
- SQLite with SQLAlchemy ORM
- HTML templates with Jinja2
- python -m venv venv
- source venv/bin/activate
- pip install -r requirements.txt
- python app.py
- Visit
http://localhost:5000