├── .gitignore ├── README.md ├── app.py ├── datafoo └── spotify.py ├── samples ├── images │ ├── prince-page.jpg │ └── prince-search.jpg └── spotify │ ├── get-artist.json │ ├── related-artists.json │ ├── search-item.json │ └── top-tracks.json ├── static ├── css │ ├── bootstrap.css │ ├── mediaelementplayer.css │ └── mystyles.css └── js │ ├── audiojs │ ├── audio.min.js │ ├── audiojs.swf │ └── player-graphics.gif │ ├── jquery.js │ └── mediaelement-and-player.min.js └── templates ├── artist.html ├── homepage.html ├── partials ├── foot.html ├── footer.html ├── head.html ├── header.html └── tracks-list.html └── search.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/app.py -------------------------------------------------------------------------------- /datafoo/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/datafoo/spotify.py -------------------------------------------------------------------------------- /samples/images/prince-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/samples/images/prince-page.jpg -------------------------------------------------------------------------------- /samples/images/prince-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/samples/images/prince-search.jpg -------------------------------------------------------------------------------- /samples/spotify/get-artist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/samples/spotify/get-artist.json -------------------------------------------------------------------------------- /samples/spotify/related-artists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/samples/spotify/related-artists.json -------------------------------------------------------------------------------- /samples/spotify/search-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/samples/spotify/search-item.json -------------------------------------------------------------------------------- /samples/spotify/top-tracks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/samples/spotify/top-tracks.json -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/mediaelementplayer.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/css/mystyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/static/css/mystyles.css -------------------------------------------------------------------------------- /static/js/audiojs/audio.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/static/js/audiojs/audio.min.js -------------------------------------------------------------------------------- /static/js/audiojs/audiojs.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/static/js/audiojs/audiojs.swf -------------------------------------------------------------------------------- /static/js/audiojs/player-graphics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/static/js/audiojs/player-graphics.gif -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /static/js/mediaelement-and-player.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/static/js/mediaelement-and-player.min.js -------------------------------------------------------------------------------- /templates/artist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/templates/artist.html -------------------------------------------------------------------------------- /templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/templates/homepage.html -------------------------------------------------------------------------------- /templates/partials/foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/templates/partials/foot.html -------------------------------------------------------------------------------- /templates/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/templates/partials/footer.html -------------------------------------------------------------------------------- /templates/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/templates/partials/head.html -------------------------------------------------------------------------------- /templates/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/templates/partials/header.html -------------------------------------------------------------------------------- /templates/partials/tracks-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/templates/partials/tracks-list.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datademofun/spotify-flask/HEAD/templates/search.html --------------------------------------------------------------------------------