Rapptz
7b8d50a988
Add support for guild subscriptions.
6 years ago
Rapptz
8f691ae775
Only return exception in Client.run when it's not cancelled.
6 years ago
Rapptz
b2f247bef3
Propagate exception in Client.run
Fix #2237
6 years ago
NCPlayz
dfcf9cdb0a
Rename error type for `X.fetch_channel(s)`.
6 years ago
Reece Dunham
34b93c757c
docs: Fix minor typo
6 years ago
NCPlayz
3c9bcc2851
Improve documentation
6 years ago
NCPlayz
f7c6c5995d
Implementing GET '/channels/:id' & '/guilds/:id/channels'
Signed-off-by: NCPlayz <[email protected] >
6 years ago
Rapptz
82b54933e2
Add asyncio.Task subclass for better __repr__ for events.
6 years ago
NCPlayz
38eb2b4828
Validate kwargs in Client.start
6 years ago
Rapptz
123e151978
Add back signal handling to Client.run
Apparently Python does not transform SIGTERM to KeyboardInterrupt as
nicely as I thought.
6 years ago
Rapptz
de6240f1e7
Rewrite loop cleanup code (again...) and remove signal handling.
This should hopefully be the last time I touch this.
6 years ago
Rapptz
186d9a7f9c
Use a regular boolean instead of asyncio.Event for close status.
6 years ago
Rapptz
ceb154718d
Add note about overriding Client.close vs Client.logout
6 years ago
khazhyk
b1fae0861a
add read-only cached_messages property to Client
For those of us who want access to this sweet trove of zero hop messages
6 years ago
Rapptz
14d66e7b9c
Internal consistency with message related HTTPClient methods
6 years ago
Rapptz
50dcdac5ca
[commands] Fix references in Bot to actually link.
Exceptions can't seem to link due to a bug in Sphinx.
6 years ago
Vexs
4df0f79a6b
Add notes warning that fetch_ methods are api calls
Also recommends using cache attributes/methods instead
6 years ago
Rapptz
e77dec85e9
Fix cleanup code on Linux not working properly.
6 years ago
Rapptz
dcdcf1adac
Stop the event loop if it's running during cleanup.
Also handle the coroutine directly instead of using run_until_complete
6 years ago
NCPlayz
7acb7de195
Add notes stating what Guild.fetch_guild and Guild.fetch_guilds returns
Also fixed two typos.
6 years ago
Rapptz
61ee88b0fc
Fix oversight where on_disconnect did not get called on WS termination.
6 years ago
Rapptz
72b6152e96
Client.event raises TypeError instead of ClientException.
6 years ago
Rapptz
84c1eac62a
Don't raise an exception during the signal handlers.
6 years ago
Rapptz
239d430539
Simplify bot loop cleanup routine.
Attempted solution for #2040
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
NCPlayz
8a30a4cac0
Add support for guild widget
6 years ago
NCPlayz
f507f508a2
Expose Metadata
Added access to:
* `/users/@me/guilds`
* `/guilds/{guild_id}`
* `/guilds/{guild_id}/members/{member_id}`
BREAKING CHANGE:
* `get_user_info` -> `fetch_user_info` to match naming scheme.
Remove useless note
Remove `reverse` and corresponding documentation
Update documentation to reflect #1988
Rename `get_` HTTP functions to `fetch_`
Breaking Changes:
* `get_message` -> `fetch_message`
* `get_invite` -> `fetch_invite`
* `get_user_profile` -> `fetch_user_profile`
* `get_webhook_info` -> `fetch_webhook`
* `get_ban` -> `fetch_ban`
Fix InviteConverter, update migrating.rst
Rename get_message to fetch_message
6 years ago
NCPlayz
fb02191b80
Organise documentation
6 years ago
Rapptz
963cf4b34e
Add on_disconnect event.
I assume this is where it has to be. Fix #1937
6 years ago
NCPlayz
8b8e9a619e
Moved http.close to before _closed.set
6 years ago
Rapptz
5d78f43e55
Expose more information from partial invites, along with counts.
This adds the following information.
* `PartialInviteGuild` to replace `Object` patching
* `PartialInviteChannel` to replace `Object` patching
* Invite.approximate_member_count and Invite.approximate_presence_count
The new partial objects provide better documentation on what is
expected when you fetch random invites.
Fixes #1830
6 years ago
Dante Dam
9656a21ebe
Bumped copyright years to 2019.
6 years ago
Rapptz
1f2602d11e
Support discordapp.com invite URLs.
6 years ago
SnowyLuma
e89e7dfe93
Add support for multiple activities
7 years ago
Hornwitser
1c3a5831f9
[lint] Removed unused variable handler
Left over by the removal of handlers in 2721689
.
7 years ago
Hornwitser
df144b0959
[lint] Changed missed docstrings to raw-string
Missed by a4d1599
despite being pointed out in #1570 .
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
Hornwitser
fa46b07db1
[lint] Rename exception variables to exc
Use the more explicit (and common) exc instead of e as the variable
holding the exception in except handlers.
7 years ago
Hornwitser
a71b3b5fa0
[lint] Limit unneccessarily broad except clauses
Add exception qualifier(s) to bare except clauses swallowing exceptions.
7 years ago
Rapptz
2721689254
Optimise tight loops in DiscordGateway.received_message
* type(x) is y is faster than isinstance(x, y)
* Re-arrange if-statements for common statements
* Drop handler getattr for most events that don't use it
7 years ago
Rapptz
5c24e69cf2
Fix up the Sphinx strings causing warnings.
7 years ago
Hornwitser
c8b49d37be
[lint] Fix incorrect and inconsistent whitespace
Adjust whitespace to be consistent with the rest of the library.
7 years ago
Hornwitser
119c5a0618
[lint] Remove unused variables
Left over from various refactoring and rewrites.
7 years ago
El Laggron
395af228b1
More informations for the Application info
This adds the rpc_origin, bot_public and
bot_require_code_grant attributes
7 years ago
Rapptz
8ccb98d395
Explicitly mark event handlers private
7 years ago
Rapptz
8d39ab8c8c
Fix dumb typo in the warning.
7 years ago
Rapptz
12236325f6
Add a warning for self-bots in Client.login
Closes #1449
7 years ago
Kot
e15452e198
Add clarification about creating guilds
7 years ago
bmintz
87d9eefdef
[docs] discord/client: remove reference to async_event
7 years ago
bmintz
ec3435b224
Remove remaining asyncio.coroutine calls.
Also remove Client.async_event
7 years ago