keybaseclient package¶
Submodules¶
keybaseclient.raw_api module¶
- exception keybaseclient.raw_api.InvalidRequestException(message, status=None)[source]¶
Bases: exceptions.Exception
Exception containing information about failed request.
- keybaseclient.raw_api.get_salt(username)[source]¶
Retrieve salt, token, and session for user with provided username.
Arguments: username – username for the desired user
Returns: If successful, tuple with salt, csrf token and login session If failed, InvalidRequestException
- keybaseclient.raw_api.login(username, password)[source]¶
Login user with the given username and password.
Arguments: username – username for the user to login password – password for the user to login
Returns: If successful, tuple containing session and user object If failed, InvalidRequestException