diff options
author | neodarz <neodarz@neodarz.net> | 2020-04-11 20:10:36 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2020-04-11 20:10:36 +0200 |
commit | 74756a15d3a1453d471c4531f0573bf884e4c4ce (patch) | |
tree | 2b394a5f76f71cffd8cf2aa235198505339cbb0e | |
parent | 505be2cf00b17b23dd25efd1db52fbc263889e83 (diff) | |
download | pyfunkwhale-74756a15d3a1453d471c4531f0573bf884e4c4ce.tar.xz pyfunkwhale-74756a15d3a1453d471c4531f0573bf884e4c4ce.zip |
Add ability to list artist librairies
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | pyfunkwhale/funkwhale.py | 13 |
2 files changed, 14 insertions, 1 deletions
@@ -72,7 +72,7 @@ List of features implemented or planned: - [/] Artists - [x] List artists - [x] Retrieve a single artist - - [ ] List available user libraries containing work from this artist + - [x] List available user libraries containing work from this artist - [ ] Albums - [ ] List albums - [ ] Retrieve a single album diff --git a/pyfunkwhale/funkwhale.py b/pyfunkwhale/funkwhale.py index c2ca78a..6b63227 100644 --- a/pyfunkwhale/funkwhale.py +++ b/pyfunkwhale/funkwhale.py @@ -54,3 +54,16 @@ class Funkwhale(object): params = self._build_params(arguments) return self.client.call(f'/artists/{_id}', 'get', params).json() + + def artist_librairies(self, _id: int, page: int = None, + page_size: int = None): + """ + List available user libraries containing work from this artist + """ + + arguments = locals() + + params = self._build_params(arguments) + + return self.client.call( + f'/artists/{_id}/libraries/', 'get', params).json() |