aboutsummaryrefslogtreecommitdiff
path: root/discord/user.py
Commit message (Expand)AuthorAgeFilesLines
* Minor speedup when doing comparisons.Rapptz2017-05-181-2/+4
* Fix User == Member comparisons.Rapptz2017-05-181-2/+2
* Use describe instead of tables for supported operations.Rapptz2017-05-131-26/+30
* First pass at documentation reform.Rapptz2017-05-121-2/+2
* Fix premium key being missing in profile endpoint.Rapptz2017-03-131-2/+3
* Add User.is_blocked and User.is_friend shortcut methods.Rapptz2017-02-271-0/+14
* Add User.avatar_url_as to convert a user's avatar.Rapptz2017-02-221-5/+37
* Fix Member.display_name to work.Rapptz2017-02-101-1/+1
* Better group DM support.Rapptz2017-02-091-0/+39
* Add ClientUser.friends and ClientUser.blockedRapptz2017-01-271-0/+10
* Implement User.profile coroutine to get a user's profile.Rapptz2017-01-241-1/+37
* Update copyright year to 2017.Rapptz2017-01-201-1/+1
* Add support for relationships.Rapptz2017-01-201-2/+89
* Add ClientUser.premium boolean.Rapptz2017-01-201-1/+4
* Make ClientUser separate from a regular User.Rapptz2017-01-191-68/+207
* Remove _get_guild_id from Messageable ABC.Rapptz2017-01-141-3/+0
* Remove extraneous unneeded hash calls.Rapptz2017-01-101-1/+1
* Return default avatar URL if an avatar is not given for User.avatar_urlRapptz2017-01-091-4/+7
* Use CDN URL for default avatars.Rapptz2017-01-091-1/+1
* Move global user cache to a WeakValueDictionary.Rapptz2017-01-041-1/+1
* Make User and Member messageable.Rapptz2017-01-031-1/+36
* Add useful repr to all data classes.Rapptz2017-01-031-0/+3
* Rename Server to Guild everywhere.Rapptz2017-01-031-1/+1
* Slots use tuples instead now.Rapptz2017-01-031-1/+1
* Switch IDs to use int instead of strRapptz2017-01-031-6/+6
* Begin working on the rewrite.Rapptz2017-01-031-8/+9
* Support animated avatars in User.avatar_url.Rapptz2016-12-231-1/+6
* Add User.mentioned_in helper to check if a message mentions you.Rapptz2016-04-291-0/+16
* Fix Member.display_name returning NoneKhazhismel Kumykov2016-04-291-1/+1
* Simplify User.display_name a bit.Rapptz2016-04-291-2/+1
* Add support for server specific nicknames.Rapptz2016-04-291-0/+11
* Add User.bot attribute to check if a user is a bot account.Rapptz2016-04-091-1/+4
* User.__str__ now includes the discriminator.Rapptz2016-04-011-12/+12
* Add default avatar property to User.Khazhismel Kumykov2016-03-311-0/+11
* Add created_at properties for Server and User.Rapptz2016-03-061-0/+9
* Move Member.permissions_in to User.permissions_in.Rapptz2016-01-211-0/+16
* Update license of files to 2016.Rapptz2016-01-041-1/+1
* Revert "Use super() in classes that could be subclassed."Rapptz2016-01-041-1/+0
* Use super() in classes that could be subclassed.Rapptz2016-01-041-0/+1
* Add __slots__ where appropriate to data classes.Rapptz2015-12-191-5/+7
* Most data classes now support hashing.Rapptz2015-12-171-0/+5
* Clean-up documentation to use NumPy style docs on remaining classes.Rapptz2015-12-161-1/+1
* All data classes now support !=, == and str(obj).Rapptz2015-12-131-3/+1
* Changed functions that return a constant value into properties.Rapptz2015-12-131-0/+2
* Switch to NumPy style documentation.Rapptz2015-12-041-10/+6
* Document supported operations in discord.UserRapptz2015-11-271-0/+12
* Initial commitRapptz2015-08-211-0/+73