├── .gitattributes ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── constants.py ├── generate.py ├── heroku.yml ├── requirements.txt └── runtime.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/bot.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/constants.py -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/generate.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/heroku.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammedfurkan/Spotify-Telegram-Bio-Updater/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.8 2 | --------------------------------------------------------------------------------