Rapptz
54288879e2
Remove userbot functionality
This has a lot of legacy and cruft so there may be some stuff I've
missed but this first pass is enough to get a clear separation.
4 years ago
Rapptz
59aa1a0e5f
Remove asyncio.Task subclass in preference to task names
4 years ago
Rapptz
9d39b135f4
Modernize code to use f-strings
This also removes the encoding on the top, since Python 3 does it by
default. It also changes some methods to use `yield from`.
4 years ago
Nadir Chowdhury
6887d3946a
[docs] Fix fetch_members/guilds documentation
4 years ago
apple502j
954dd09e18
Deprecate Client.logout
4 years ago
Nadir Chowdhury
63ec23bac2
Code optimisations and refactoring via Sourcery
4 years ago
Nadir Chowdhury
427e387a2f
Deprecate non-bot methods
4 years ago
Nihaal Sangha
69bdc3a184
Change copyright year to present
4 years ago
Nadir Chowdhury
6b803acde4
[chore] Remove redundant imports
This also removes the historical patch for NullHandler implemented in bbf1c54
, as it has been available since Python 3.1.
4 years ago
Rapptz
12d0ae71df
Add a way to check if the websocket is rate limited.
This is mainly for low level decision making for utilities that need
to know whether to fetch a member by HTTP or to query through the
websocket.
The library already does this trick in some places so it's only fair
that end users possess the same ability as well.
4 years ago
Rapptz
28e5b2a5e1
Add Client.intents to query the current intents
Closes #5854
5 years ago
Rapptz
005a80303f
Add chunk_guilds_at_startup and deprecate fetch_offline_members
5 years ago
Rapptz
625a5c2a0b
Some documentation fixes for MemberCacheFlags and Intents
5 years ago
Rapptz
8d5c05ed20
Default MemberCacheFlags based on intents
5 years ago
Rapptz
bf8ca58996
Add a special exception for required privileged intents
5 years ago
Rapptz
23ae084b8c
Allow finer grained control over the member cache.
5 years ago
Rapptz
cb8cb557f5
Add Guild.chunk and deprecated Client.request_offline_members
5 years ago
Rapptz
055fe76241
Fix Client.request_offline_members no longer working
5 years ago
Rapptz
a6381dcf77
Add support for guild intents
5 years ago
Rapptz
0b93fa3a82
Implement VoiceProtocol lower level hooks.
This allows changing the connect flow and taking control of it without
relying on internal events or tricks.
5 years ago
Michael
93fa46713a
Fix and add documentation
5 years ago
Tarek
7f17dc79a6
Remove namedtuples to better future guard the library
5 years ago
alkatar21
dce653a0eb
Don't call close() if we've already been closed in Client.run
5 years ago
Nanofaux
dd408f6871
Fix hyperlink reference to PartialInviteChannel in Client
5 years ago
Josh
a947c7a6ec
Fix gramatical error in Client guild_subscriptions docs
5 years ago
Rapptz
d37b91dfc6
Add guild_ready_timeout to control the timeout of GUILD_CREATE stream
This also fixes a timing issue where READY would take far too long to
load for big bot authors.
Closes #4112
5 years ago
Rapptz
e2f42597a5
Handle Connection Reset by Peer connection errors.
This should work both on Windows and on Linux.
Apparently these types of blips are considered normal for Discord. So
rather than letting the reconnect logic handler expect these to be
catastrophic, it should handle it specially so it doesn't waste an
IDENTIFY for what ultimately should just be a small networking blip.
This also makes it less noisy for the end-user as these complaints
happen from time to time.
5 years ago
Rapptz
394b514cc9
Add before_identify_hook to have finer control over IDENTIFY syncing
5 years ago
Rapptz
b8154e365f
Rewrite gateway to use aiohttp instead of websockets
5 years ago
Rapptz
09ecb16680
Rewrite of AutoShardedClient to prevent overlapping identify
This is experimental and I'm unsure if it actually works
5 years ago
NCPlayz
ce03c62c6b
[bugs] stop resolving Object for template/invite; remove dupe methods
5 years ago
Nadir Chowdhury
2b3c6e0d47
Add support for Discord templates
5 years ago
Sebastian Law
b4b953bfc6
Fix various inconsistencies within the documentation ( #5067 )
5 years ago
Rapptz
66c6be50d8
Prepare for the discord.com domain rename
5 years ago
Rapptz
13a3f760e6
Fix timeout issues with fetching members via query_members
This uses the nonce field to properly disambiguate queries. There's
also some redesigning going on behind the scenes and minor clean-up.
Originally I planned on working on this more to account for the more
widespread chunking changes planned for gateway v7 but I realized that
this would indiscriminately slow down everyone else who isn't planning
on working with intents for now.
I will work on the larger chunking changes in the future, should time
allow for it.
5 years ago
Rapptz
d853a57e86
Rename allowed mention parameters to allowed_mentions
5 years ago
Rapptz
730d79d60a
Allow introspection and setting of global allowed mention configuration
5 years ago
Rapptz
481b335f2d
Fix various implementation bugs with allowed mentions
5 years ago
Rapptz
041785937e
Add support for configuring allowed mentions per message or bot wide.
5 years ago
Rapptz
6c764465c0
Fix regression with Member.activities not clearing
5 years ago
Rapptz
403651a144
Change default close code to 4000 instead of 1000.
This prevents our sessions from being invalidated by Discord which
caused a lot of failures when resuming. This caused an unnecessary
amount of IDENTIFYs to happen depending on the circumstances.
Closes #2631
See also discord/discord-api-docs#1472
5 years ago
jack1142
7b3335a0b0
Don't add None to Member.activities tuple
5 years ago
Glazed_Belmont
6525ac948c
fixing the BaseActivity links
5 years ago
Rapptz
17f343b03e
Minor documentation fixes
5 years ago
Rapptz
02397306b2
Drop superfluous zero in version related changes in the documentation
5 years ago
Rapptz
6071607176
Bump copyright year to 2020
Closes #2510
5 years ago
Rapptz
5f7a97ff96
Document BaseActivity
5 years ago
Rapptz
42a084028c
Expose _ActivityTag as BaseActivity to easily refer to.
5 years ago
Rapptz
c62b6c3e88
Fix more deprecation warnings for 3.8
5 years ago
Rapptz
a6f61dcbde
Fix all deprecation warnings for 3.8
5 years ago