├── .gitignore ├── LICENSE ├── README.md ├── SetUp.md └── api ├── requirements.txt ├── spotify-playing.py └── templates ├── preview.html └── spotify.html.j2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novatorem/spotify-readme/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novatorem/spotify-readme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novatorem/spotify-readme/HEAD/README.md -------------------------------------------------------------------------------- /SetUp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novatorem/spotify-readme/HEAD/SetUp.md -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- 1 | flask==1.1.2 2 | requests==2.24.0 3 | python-dotenv==0.14.0 -------------------------------------------------------------------------------- /api/spotify-playing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novatorem/spotify-readme/HEAD/api/spotify-playing.py -------------------------------------------------------------------------------- /api/templates/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novatorem/spotify-readme/HEAD/api/templates/preview.html -------------------------------------------------------------------------------- /api/templates/spotify.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novatorem/spotify-readme/HEAD/api/templates/spotify.html.j2 --------------------------------------------------------------------------------