Completed as part of my Introduction to Computer Science course.

This project is a discussion board surrounding music artists; users can register accounts, create comments on artist profiles, and view comments created by other users. The backend was developed using Python's Flask framework, and SQLite was used to store the input in a database; passwords are securely saved and hashed with bcrypt. Artist data was queried using the MusicBrainz web API, and this data was then used to scrape further information about artists using BeautifulSoup. In the end, all of this data was displayed on the frontend using Vue.js. On the frontend users can compare an artist's average track length and amount of features across albums and mixtapes. Although this was my first time using the framework, I found it simple and easy to use. I look forward to using Vue.js for future projects.