I think it would simplify the client (from user perspective) to merge get_xxx and get_all_xxx methods (where xxx can be user, group, corpus, etc...)
Example for user methods
def get_user(self, user_id=None):
route = 'user'
if user_id is not None:
route = route + '/' + user_id
return self.get(route)
@juandelamontana @clbarras what do you think?
I think it would simplify the client (from user perspective) to merge
get_xxxandget_all_xxxmethods (wherexxxcan beuser,group,corpus, etc...)Example for
usermethods@juandelamontana @clbarras what do you think?