├── .github └── workflows │ └── pushmirror.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── INSTALLATION.md ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── zotify ├── __init__.py ├── __main__.py ├── album.py ├── app.py ├── config.py ├── const.py ├── loader.py ├── playlist.py ├── podcast.py ├── termoutput.py ├── track.py ├── utils.py └── zotify.py /.github/workflows/pushmirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/.github/workflows/pushmirror.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/setup.cfg -------------------------------------------------------------------------------- /zotify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zotify/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/__main__.py -------------------------------------------------------------------------------- /zotify/album.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/album.py -------------------------------------------------------------------------------- /zotify/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/app.py -------------------------------------------------------------------------------- /zotify/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/config.py -------------------------------------------------------------------------------- /zotify/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/const.py -------------------------------------------------------------------------------- /zotify/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/loader.py -------------------------------------------------------------------------------- /zotify/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/playlist.py -------------------------------------------------------------------------------- /zotify/podcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/podcast.py -------------------------------------------------------------------------------- /zotify/termoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/termoutput.py -------------------------------------------------------------------------------- /zotify/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/track.py -------------------------------------------------------------------------------- /zotify/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/utils.py -------------------------------------------------------------------------------- /zotify/zotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotify-dev/zotify/HEAD/zotify/zotify.py --------------------------------------------------------------------------------