Browse Source

Adding API method for Get User endpoint (#103)

pull/109/head
Kyriog 7 years ago
committed by Andrei Zbikowski
parent
commit
4032094bd2
  1. 4
      disco/api/client.py

4
disco/api/client.py

@ -493,6 +493,10 @@ class APIClient(LoggingClass):
webhooks = Webhook.create_hash(self.client, 'id', data['webhooks'])
return AuditLogEntry.create_map(self.client, r.json()['audit_log_entries'], users, webhooks, guild_id=guild)
def users_get(self, user):
r = self.http(Routes.USERS_GET, dict(user=user))
return User.create(self.client, r.json())
def users_me_get(self):
return User.create(self.client, self.http(Routes.USERS_ME_GET).json())

Loading…
Cancel
Save