├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── pylint.yml ├── .gitignore ├── CHANGELOG.md ├── COMMON_ERRORS.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── requirements.txt └── source ├── Resources ├── ZSPlogo.png ├── ZSpot_Banner.png ├── ZSpot_Icon.png ├── ZSpotifyBanner.png ├── ZSpotifyBannerTP.png ├── cover_default.jpg ├── folderIcon.png ├── iconmonstr-text-26-64.png ├── listenQueueIcon.png ├── mutedIcon.png ├── nextIcon.png ├── pauseIcon.png ├── playIcon.png ├── prevIcon.png ├── repeatOffIcon.png ├── repeatOnIcon.png ├── shuffleOffIcon.png ├── shuffleOnIcon.png └── volIcon.png ├── __main__.py ├── album.py ├── app.py ├── appGui.py ├── audio.py ├── config.py ├── const.py ├── download.py ├── item.py ├── itemTree.py ├── login_dialog.py ├── login_dialog.ui ├── main_window.py ├── main_window.ui ├── playlist.py ├── podcast.py ├── termoutput.py ├── track.py ├── utils.py ├── view.py ├── worker.py └── zspotify.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COMMON_ERRORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/COMMON_ERRORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/requirements.txt -------------------------------------------------------------------------------- /source/Resources/ZSPlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/ZSPlogo.png -------------------------------------------------------------------------------- /source/Resources/ZSpot_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/ZSpot_Banner.png -------------------------------------------------------------------------------- /source/Resources/ZSpot_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/ZSpot_Icon.png -------------------------------------------------------------------------------- /source/Resources/ZSpotifyBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/ZSpotifyBanner.png -------------------------------------------------------------------------------- /source/Resources/ZSpotifyBannerTP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/ZSpotifyBannerTP.png -------------------------------------------------------------------------------- /source/Resources/cover_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/cover_default.jpg -------------------------------------------------------------------------------- /source/Resources/folderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/folderIcon.png -------------------------------------------------------------------------------- /source/Resources/iconmonstr-text-26-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/iconmonstr-text-26-64.png -------------------------------------------------------------------------------- /source/Resources/listenQueueIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/listenQueueIcon.png -------------------------------------------------------------------------------- /source/Resources/mutedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/mutedIcon.png -------------------------------------------------------------------------------- /source/Resources/nextIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/nextIcon.png -------------------------------------------------------------------------------- /source/Resources/pauseIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/pauseIcon.png -------------------------------------------------------------------------------- /source/Resources/playIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/playIcon.png -------------------------------------------------------------------------------- /source/Resources/prevIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/prevIcon.png -------------------------------------------------------------------------------- /source/Resources/repeatOffIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/repeatOffIcon.png -------------------------------------------------------------------------------- /source/Resources/repeatOnIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/repeatOnIcon.png -------------------------------------------------------------------------------- /source/Resources/shuffleOffIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/shuffleOffIcon.png -------------------------------------------------------------------------------- /source/Resources/shuffleOnIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/shuffleOnIcon.png -------------------------------------------------------------------------------- /source/Resources/volIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/Resources/volIcon.png -------------------------------------------------------------------------------- /source/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/__main__.py -------------------------------------------------------------------------------- /source/album.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/album.py -------------------------------------------------------------------------------- /source/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/app.py -------------------------------------------------------------------------------- /source/appGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/appGui.py -------------------------------------------------------------------------------- /source/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/audio.py -------------------------------------------------------------------------------- /source/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/config.py -------------------------------------------------------------------------------- /source/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/const.py -------------------------------------------------------------------------------- /source/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/download.py -------------------------------------------------------------------------------- /source/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/item.py -------------------------------------------------------------------------------- /source/itemTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/itemTree.py -------------------------------------------------------------------------------- /source/login_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/login_dialog.py -------------------------------------------------------------------------------- /source/login_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/login_dialog.ui -------------------------------------------------------------------------------- /source/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/main_window.py -------------------------------------------------------------------------------- /source/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/main_window.ui -------------------------------------------------------------------------------- /source/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/playlist.py -------------------------------------------------------------------------------- /source/podcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/podcast.py -------------------------------------------------------------------------------- /source/termoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/termoutput.py -------------------------------------------------------------------------------- /source/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/track.py -------------------------------------------------------------------------------- /source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/utils.py -------------------------------------------------------------------------------- /source/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/view.py -------------------------------------------------------------------------------- /source/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/worker.py -------------------------------------------------------------------------------- /source/zspotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacketSurf/ZSpotifyGUI/HEAD/source/zspotify.py --------------------------------------------------------------------------------