├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── config.py ├── helper ├── audio_features.py ├── create_playlist.py ├── figures.py ├── get_seed_artist.py └── recommendations.py ├── requirements.txt ├── static ├── css │ └── site.css ├── images │ ├── 1.jpg │ ├── 1_04.png │ ├── 2.jpg │ ├── 2_04.png │ ├── 3.png │ ├── favicon.ico │ └── structure.png └── js │ └── main.js └── templates ├── analyzer.html ├── index.html └── landing.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/config.py -------------------------------------------------------------------------------- /helper/audio_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/helper/audio_features.py -------------------------------------------------------------------------------- /helper/create_playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/helper/create_playlist.py -------------------------------------------------------------------------------- /helper/figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/helper/figures.py -------------------------------------------------------------------------------- /helper/get_seed_artist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/helper/get_seed_artist.py -------------------------------------------------------------------------------- /helper/recommendations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/helper/recommendations.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/static/css/site.css -------------------------------------------------------------------------------- /static/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/static/images/1.jpg -------------------------------------------------------------------------------- /static/images/1_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/static/images/1_04.png -------------------------------------------------------------------------------- /static/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/static/images/2.jpg -------------------------------------------------------------------------------- /static/images/2_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/static/images/2_04.png -------------------------------------------------------------------------------- /static/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/static/images/3.png -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/static/images/structure.png -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/static/js/main.js -------------------------------------------------------------------------------- /templates/analyzer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/templates/analyzer.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marwonn/spotify-playlist-generator-analyzer/HEAD/templates/landing.html --------------------------------------------------------------------------------