Web Relational Database Using Flask and Python

Project Overview

This project involves the creation of a web relational database application using Flask, Python, and MySQL. The application allows users to perform CRUD (Create, Read, Update, Delete) operations on the database through a web interface.

Schema Design

A database schema was devised that would accomodate for functionalities such as account creation, playlist creation, and playlist editing.

Initialization

A Flask app environment and an instance of the database are created:

db init

A full database dump .sql file is available on the GitHub repository with the CREATE statements for all other tables.

Implementing CRUD functions

The account functionality was implemented, allowing users to create accounts and sign in:

Account functionality

Users can create a new account, which stores their credentials in MySQL, and sign in to access their playlists:

Sign-in page

Once signed in, users can create and manage playlists:

Playlist functionality

Filtered Reports

The final functionality implemented was allowing users to filter playlist songs based on attributes like genre and decade. A stored procedure was used for querying the data:

Stored procedure

Table Indexing and Transaction Concurrency

To enhance performance, indexing was applied to certain columns like PlaylistID, SongID, and UserID. This reduces query execution time. Additionally, transaction isolation levels were considered to ensure the database maintains integrity.

Code

The code for this project is available on GitHub. The following files are included:

Future Work

Future improvements could include integrating the Spotify API to fetch real user data and improving the front-end for a better user experience.

Project Takeaways

This project helped me gain a deeper understanding of Flask, web development, relational databases, and SQL injection prevention.