├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── api └── webhook.py ├── helpers ├── bot.py └── spotify.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/mySPOTIFY/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/mySPOTIFY/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/mySPOTIFY/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/mySPOTIFY/HEAD/README.md -------------------------------------------------------------------------------- /api/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/mySPOTIFY/HEAD/api/webhook.py -------------------------------------------------------------------------------- /helpers/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/mySPOTIFY/HEAD/helpers/bot.py -------------------------------------------------------------------------------- /helpers/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/mySPOTIFY/HEAD/helpers/spotify.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautamajay52/mySPOTIFY/HEAD/requirements.txt --------------------------------------------------------------------------------