aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2020-04-11 20:10:36 +0200
committerneodarz <neodarz@neodarz.net>2020-04-11 20:10:36 +0200
commit74756a15d3a1453d471c4531f0573bf884e4c4ce (patch)
tree2b394a5f76f71cffd8cf2aa235198505339cbb0e
parent505be2cf00b17b23dd25efd1db52fbc263889e83 (diff)
downloadpyfunkwhale-74756a15d3a1453d471c4531f0573bf884e4c4ce.tar.xz
pyfunkwhale-74756a15d3a1453d471c4531f0573bf884e4c4ce.zip
Add ability to list artist librairies
-rw-r--r--README.md2
-rw-r--r--pyfunkwhale/funkwhale.py13
2 files changed, 14 insertions, 1 deletions
diff --git a/README.md b/README.md
index acf5eaf..0ee4cec 100644
--- a/README.md
+++ b/README.md
@@ -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()