Browse Source

add User.get_avatar_url to support more formats/sizes

feature/docs
Andrei 8 years ago
parent
commit
d2d7166e66
  1. 14
      disco/types/user.py

14
disco/types/user.py

@ -14,14 +14,20 @@ class User(SlottedModel, with_equality('id'), with_hash('id')):
presence = Field(None)
@property
def avatar_url(self):
def get_avatar_url(self, fmt='webp', size=1024):
if not self.avatar:
return None
return 'https://discordapp.com/api/users/{}/avatars/{}.jpg'.format(
return 'https://cdn.discordapp.com/avatars/{}/{}.{}?size={}'.format(
self.id,
self.avatar)
self.avatar,
fmt,
size
)
@property
def avatar_url(self):
return self.get_avatar_url()
@property
def mention(self):

Loading…
Cancel
Save