aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2021-01-31 21:19:53 +0100
committerneodarz <neodarz@neodarz.net>2021-01-31 21:19:53 +0100
commitbc8c6fbade098548765ac0ebf57032ee8831e8bc (patch)
treedadbc9c6bd955ffae4e78ec0fabf86b296997d05
parent7426a032387c6db0679a3b0a8fd920c2521d1333 (diff)
downloadpyfunkwhale-bc8c6fbade098548765ac0ebf57032ee8831e8bc.tar.xz
pyfunkwhale-bc8c6fbade098548765ac0ebf57032ee8831e8bc.zip
Add some doc for Client init
-rw-r--r--pyfunkwhale/client.py38
1 files changed, 34 insertions, 4 deletions
diff --git a/pyfunkwhale/client.py b/pyfunkwhale/client.py
index 9e0b72c..bebb271 100644
--- a/pyfunkwhale/client.py
+++ b/pyfunkwhale/client.py
@@ -22,11 +22,41 @@ class InvalidTokenError(Exception):
class Client(object):
- def __init__(self, client_name, redirect_uri, username, password, domain,
- login_endpoint, client_secret = None, scopes = None,
- client_id = None, authorization_endpoint = None,
- token_filename = None):
+ def __init__(
+ self, client_name: str, redirect_uri: str, username: str,
+ password: str, domain: str, login_endpoint: str,
+ client_secret: str = None, scopes: str = None, client_id: str = None,
+ authorization_endpoint: str = None, token_filename: str = None
+ ):
+ """
+ Client initialization.
+
+ If the login_endpoint contain the path 'oauth' then the OAuth2
+ Authorization Code flow will be used instead of the plain HTTP login.
+ Parameters
+ ----------
+ client_name: str
+ The name of the client using the API
+ redirect_uri: str
+ The redirect URI to use on the API
+ username: str
+ The username to use for login
+ password: str
+ The password to use for login
+ login_endpoint: str
+ The API login endpoint to use
+ client_secret: str
+ OAuth2 only. The client secret
+ scopes: str
+ OAuth2 only. The scopes of the client
+ client_id: str
+ OAuth2 only. The client id to use (A one registred on the API)
+ authorization_endpoint: str
+ OAuth2 only. The authorization endpoint to use on the API
+ token_filename: str
+ OAuth2 only. The token filename where to save the token
+ """
self.client_name = client_name
self.redirect_uri = redirect_uri
self.token = None