Devon R
f5ebf42e1f
Return invites as https, various URL normalization
5 years ago
Willy
e713b86154
Added Optional to ClientUser.premium_type type hint
6 years ago
Tyler
c7a1f5e6e9
Disambiguate and normalize documentation for non-bot only methods
6 years ago
Reece Dunham
de1a96b9f7
Fix: another capitalization issue in docstring
6 years ago
Steve C
ae4989e474
Fix return type docstring for BaseUser.default_avatar
6 years ago
Rapptz
5c1b239b47
Different method of upgrading user instances
6 years ago
Rapptz
e75c248a9a
Properly populate __slots__ for derived user types.
Fixes #2265
6 years ago
NCPlayz
3c9bcc2851
Improve documentation
6 years ago
Rapptz
fcf02414fe
Fix stray colon in Asset related docstrings
6 years ago
Rapptz
9674055c2a
Add support for animated guild icons.
6 years ago
Harmon
2fd589874f
Fix wording in documentation for ClientUser.locale
6 years ago
Vexs
bf5b267c55
Correct the documentation for methods and properties that return Assets
6 years ago
Rapptz
f9e95a35f9
Fix USER_UPDATE changes not triggering for member instances.
Also add a ClientUser.locale attribute.
6 years ago
Rapptz
6f26a4aad8
Improve performance of value -> enum by about 5x.
6 years ago
Rapptz
cc68cfb896
Add notes to all relationship endpoints that they don't work on bots.
6 years ago
Rapptz
7d385b23a1
Fix copy paste error in ClientUser.edit_settings
6 years ago
NCPlayz
be227ebcf0
Redesign asset retrieval in the library.
Most assets now return a new class named `Asset`. This allows for the
assets to be consistently saved via a `save` method instead of special
casing for `Attachment`.
`AppInfo` is no longer a namedtuple it is a fully documented dataclass,
as well as having the state attached to it.
Fixes #1997
6 years ago
CapnS
4ec7213506
Added functionality to edit user settings
Changing docs to fit other parts of the lib
Co-Authored-By: CapnS <[email protected] >
Removing Type Checking
Made all of Rapptz's suggested changes
Removing imports that are no longer needed
6 years ago
NCPlayz
fb02191b80
Organise documentation
6 years ago
Liam H
79f172cf80
Add PremiumType enumeration and ClientUser.premium_type
6 years ago
CapnS
2c7c541f4e
Added User.mutual_friends()
6 years ago
bmintz
c184b0a53d
add support for Bug Hunter and Early Supporter flags
7 years ago
Hornwitser
efb4ff850e
[lint] Fix import order
Reorder imports to be consistenly grouped by standard library, third
party library, and local modules in that order thoughout the library.
7 years ago
Rapptz
860d6a9ace
Revert "Rework documentation to not duplicate inherited members."
This reverts commit 96981210b3
.
7 years ago
Rapptz
96981210b3
Rework documentation to not duplicate inherited members.
This will probably be reverted in 1 week.
7 years ago
Rapptz
095f0ec2fc
Optimise some member and user related routines.
* Skip user update if possible
* Drop copy.copy in favour of manual copy
Credit to Hornwitser for these findings.
7 years ago
MusicOnline
2c1ba84346
Add colour attribute for BaseUser
7 years ago
Rapptz
5c24e69cf2
Fix up the Sphinx strings causing warnings.
7 years ago
BeatButton
a4d1599ce9
Change docstrings to raw-strings
7 years ago
Bryan Forbes
d7218259aa
Call Http.start_group() in ClientUser.create_group()
7 years ago
mental
ee57e89488
Added hypesquad house functionality
7 years ago
Hornwitser
c557ee33ca
[lint] Fix types used for __slots__ and __all__
Stay consistent with the rest of the library and use lists for module
__all__ values and tuples for class __slots__ attributes.
7 years ago
Hornwitser
d58fc0ccee
[lint] Remove unused imports
Left over from various refactoring and rewrites.
7 years ago
khazhyk
2c7a855e11
Revert "Ensure gif avatar urls end in `.gif`"
This reverts commit 456390f417
.
This commit isn't needed anymore - the image proxy now properly
handles gifs that do not end in .gif
7 years ago
Rapptz
f25091efe1
Drop support for Python 3.4 and make minimum version 3.5.2.
7 years ago
Tobotimus
3112e1c17e
Add intersphinx
7 years ago
khazhyk
456390f417
Ensure gif avatar urls end in `.gif`
This is a workaround for discord having trouble animating gifs if
the url does not end in exactly `.gif`. Since avatar_url is common
for thumbnails etc., adding this workaround here is handy, and
likely restores expected behavior (animated avatars animating).
7 years ago
Mippy (William)
b5bc5a36ce
Fix Spelling Error
8 years ago
khazhyk
ebecb90c96
is_avatar_animated should always return bool
Was returning None when User.avatar was None
8 years ago
Rapptz
51a39b5b1c
Rename avatar_is_animated to is_avatar_animated and make it a method.
8 years ago
khazhyk
12ca0d9b16
avatar_url_as improvements
static_format will only apply to static (not animated) avatars. Makes
it easier to grab gif-or-'format' of an avatar. Defaults to 'webp'
This is for a similar usecase to avatar_url_as(format=None), except
one can specify the non-animated format, instead of always using
webp.
add User.avatar_is_animated property.
add validation for avatar_url_as, since invalid arguments result in
a url which will return 415, which can be confusing for a user. (They
just see a blank page)
Discord accepts size=16-2048, but images cap at 1024px, so accept 16-1024
Discord accepts "jpg", "jpeg", "png", "gif", and "webp", *unless* the
avatar is not animated, in which case "gif" is not supported. :\
8 years ago
Rapptz
25a1d8c300
Add support for user flags in Profile.
8 years ago
Rapptz
f588876587
Use Python3Lexer instead of PythonLexer for pygments.
8 years ago
Rapptz
229c471106
More broken Channel references.
8 years ago
Rapptz
f4e01b3a92
Make supported operations stand out more than attributes.
8 years ago
Rapptz
8526995004
Minor speedup when doing comparisons.
Shred 2 getattr calls + 1 global lookup to 1 global lookup.
8 years ago
Rapptz
8e34a256a4
Fix User == Member comparisons.
8 years ago
Rapptz
f73eb087c9
Use describe instead of tables for supported operations.
8 years ago
Rapptz
b44bba6ee6
First pass at documentation reform.
8 years ago
Rapptz
058f1f13eb
Fix premium key being missing in profile endpoint.
8 years ago