├── .gitignore ├── LICENSE ├── README.md ├── beetsplug ├── __init__.py └── beetstream │ ├── __init__.py │ ├── albums.py │ ├── artists.py │ ├── coverart.py │ ├── dummy.py │ ├── playlistprovider.py │ ├── playlists.py │ ├── search.py │ ├── songs.py │ ├── stream.py │ ├── users.py │ └── utils.py ├── missing-endpoints.md ├── pyproject.toml ├── requirements.txt └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/README.md -------------------------------------------------------------------------------- /beetsplug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/__init__.py -------------------------------------------------------------------------------- /beetsplug/beetstream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/__init__.py -------------------------------------------------------------------------------- /beetsplug/beetstream/albums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/albums.py -------------------------------------------------------------------------------- /beetsplug/beetstream/artists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/artists.py -------------------------------------------------------------------------------- /beetsplug/beetstream/coverart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/coverart.py -------------------------------------------------------------------------------- /beetsplug/beetstream/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/dummy.py -------------------------------------------------------------------------------- /beetsplug/beetstream/playlistprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/playlistprovider.py -------------------------------------------------------------------------------- /beetsplug/beetstream/playlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/playlists.py -------------------------------------------------------------------------------- /beetsplug/beetstream/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/search.py -------------------------------------------------------------------------------- /beetsplug/beetstream/songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/songs.py -------------------------------------------------------------------------------- /beetsplug/beetstream/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/stream.py -------------------------------------------------------------------------------- /beetsplug/beetstream/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/users.py -------------------------------------------------------------------------------- /beetsplug/beetstream/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/beetsplug/beetstream/utils.py -------------------------------------------------------------------------------- /missing-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/missing-endpoints.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBrain/Beetstream/HEAD/setup.cfg --------------------------------------------------------------------------------