├── Pipfile ├── Pipfile.lock ├── Procfile ├── README.md ├── app.py ├── requirements.txt ├── static ├── Fixed_image.png ├── Frame_6.png ├── Montserrat-Black.ttf ├── artists.jpg ├── favicon.png ├── genre.jpg ├── landing2.css ├── recommend.png ├── script2.js ├── seee.png ├── songs.jpg ├── style2.css └── template.png ├── templates ├── create.html ├── index.html └── info.html └── utils.py /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | spotipy 3 | pandas 4 | gunicorn 5 | pillow 6 | -------------------------------------------------------------------------------- /static/Fixed_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/Fixed_image.png -------------------------------------------------------------------------------- /static/Frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/Frame_6.png -------------------------------------------------------------------------------- /static/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/Montserrat-Black.ttf -------------------------------------------------------------------------------- /static/artists.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/artists.jpg -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/genre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/genre.jpg -------------------------------------------------------------------------------- /static/landing2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/landing2.css -------------------------------------------------------------------------------- /static/recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/recommend.png -------------------------------------------------------------------------------- /static/script2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/script2.js -------------------------------------------------------------------------------- /static/seee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/seee.png -------------------------------------------------------------------------------- /static/songs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/songs.jpg -------------------------------------------------------------------------------- /static/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/style2.css -------------------------------------------------------------------------------- /static/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/static/template.png -------------------------------------------------------------------------------- /templates/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/templates/create.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/templates/info.html -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanchit-Jain07/Spotify-Stats/HEAD/utils.py --------------------------------------------------------------------------------