File size: 654 Bytes
765049a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b411141
765049a
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Moody Lyrics

Song recommendation website.

## High-Level Functional Features

- Associates a song with a mood based on the lyrics.
- Lists out similar songs.

## Eventual Non-Functional Features

- Scale - 1 million reqs/second
- Availability - Limited downtime

### High Level Architecture

- A simple web app that takes in song name and artist.
- A backend server that -
  - Fetches the lyrics - possibly on genius.com (crawler?)
  - Passes the lyrics into the model to assign a mood.
  - Uses this mood to fetch similar songs.
- Backend served and scaled by TFX?

### Tech Stack

- Front-end - React
- Rest of the stuff in Python.
- Database - TDB