├── .gitignore ├── LICENSE ├── README.md ├── Screenshot └── 2020-05-20_21-12.png ├── app.py ├── config.ini └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terladev/Spotify-downloader-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terladev/Spotify-downloader-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terladev/Spotify-downloader-python/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/2020-05-20_21-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terladev/Spotify-downloader-python/HEAD/Screenshot/2020-05-20_21-12.png -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terladev/Spotify-downloader-python/HEAD/app.py -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terladev/Spotify-downloader-python/HEAD/config.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | spotdl==1.2.4 2 | termcolor==1.1.0 3 | --------------------------------------------------------------------------------