├── .gitignore ├── README.md ├── core ├── downloader │ ├── base.py │ ├── exceptions.py │ └── soundloader │ │ └── soundloader.py ├── logger │ └── main.py ├── meta │ └── singleton.py └── playlist │ ├── extractor │ ├── base.py │ └── spotify │ │ └── spotify.py │ └── playlist.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | .idea 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/README.md -------------------------------------------------------------------------------- /core/downloader/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/core/downloader/base.py -------------------------------------------------------------------------------- /core/downloader/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/core/downloader/exceptions.py -------------------------------------------------------------------------------- /core/downloader/soundloader/soundloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/core/downloader/soundloader/soundloader.py -------------------------------------------------------------------------------- /core/logger/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/core/logger/main.py -------------------------------------------------------------------------------- /core/meta/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/core/meta/singleton.py -------------------------------------------------------------------------------- /core/playlist/extractor/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/core/playlist/extractor/base.py -------------------------------------------------------------------------------- /core/playlist/extractor/spotify/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/core/playlist/extractor/spotify/spotify.py -------------------------------------------------------------------------------- /core/playlist/playlist.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teplinsky-maxim/spotify-playlist-downloader/HEAD/requirements.txt --------------------------------------------------------------------------------