diff options
author | neodarz <neodarz@neodarz.net> | 2020-04-11 20:02:29 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2020-04-11 20:02:29 +0200 |
commit | 9ddb45ffbfe0c10c8ae01f84e7b353cf2536454d (patch) | |
tree | 908297bc1d0215299ff7fb260a9512d77c88c642 | |
parent | de53984b3d2179000ccd0c89e0cc0b46cbc1e503 (diff) | |
download | pyfunkwhale-9ddb45ffbfe0c10c8ae01f84e7b353cf2536454d.tar.xz pyfunkwhale-9ddb45ffbfe0c10c8ae01f84e7b353cf2536454d.zip |
Add artists endpoint documentation
-rw-r--r-- | pyfunkwhale/funkwhale.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyfunkwhale/funkwhale.py b/pyfunkwhale/funkwhale.py index 53e5937..c2ca78a 100644 --- a/pyfunkwhale/funkwhale.py +++ b/pyfunkwhale/funkwhale.py @@ -29,6 +29,9 @@ class Funkwhale(object): def artists(self, q: str = None, ordering: str = None, playable: bool = None, page: int = None, page_size: int = None) -> dict: + """ + List artists + """ arguments = locals() |