├── Dockerfile ├── README.md ├── bot ├── bot.py ├── login.py └── spotify.py ├── requirements.txt └── run.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuhortet/spotify-lyrics-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuhortet/spotify-lyrics-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuhortet/spotify-lyrics-bot/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuhortet/spotify-lyrics-bot/HEAD/bot/login.py -------------------------------------------------------------------------------- /bot/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuhortet/spotify-lyrics-bot/HEAD/bot/spotify.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuhortet/spotify-lyrics-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuhortet/spotify-lyrics-bot/HEAD/run.py --------------------------------------------------------------------------------