kepler.api.user module

The module contains the functionality for REST API calls related to users.

class kepler.api.user.GetUsersParams

Bases: kepler.api.api_util.ApiParamsBase

The parameter class for the REST API call get_users.

account_name = The account name used for searching users.
email = The email used for searching users.
class kepler.api.user.SearchUserParams

Bases: kepler.api.api_util.ApiParamsBase

The parameter class for the REST API call search_user.

search_string = The email or account name used for searching a user.
kepler.api.user.get_user_info(request)

The function implements the REST API call get_user_info.

kepler.api.user.get_users(request)

The function implements the REST API call get_users.

kepler.api.user.search_user(request)

The function implements the REST API call search_user.