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
Rapptz
5e65ec978c
Take back ownership of files from aiohttp for retrying requests.
Fix #1809
6 years ago
SnowyLuma
42a7c4f7e5
Add support for guild banners
Document banner attribute of Guild and Invite
Update discord/utils.py
Co-Authored-By: SnowyLuma <[email protected] >
6 years ago
Tarek1337
616616b847
Add support for guild descriptions
6 years ago
Rapptz
df130e10f0
Prevent AttributeError when closing HTTPClient early.
6 years ago
Rapptz
48b60b2eac
Prepare fix for aiohttp 4.0 breaking change with session creation.
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
Toby Harradine
8586251089
Use non-deprecated method of acquiring lock
6 years ago
Dante Dam
9656a21ebe
Bumped copyright years to 2019.
6 years ago
Tyler
febb8a965c
Allow additional parameters on channel creation
6 years ago
Rapptz
dec14faea9
Log rate limit hits into WARNING instead of INFO.
6 years ago
Rapptz
648e62031d
Add support for explicit_content_filter in Guild.edit
6 years ago
CapnS
2c7c541f4e
Added User.mutual_friends()
6 years ago
Rapptz
8b18fa307b
Add support for default notification level in audit logs and Guild.edit
6 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
51d626eabe
[lint] Remove redundant paranthesis
Remove redundant parenthisis around await expressions. Left over from
f25091ef
.
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
4ae8e81660
[lint] Remove redundant exception variables
Use bare raise statement when reraising the exception that occured, and
remove unused exception variables. Also remove a pointless exception
handler in discord.opus.
7 years ago
Rapptz
0352c80a17
Add support for Discord's slow mode.
Adds the following:
* `slowmode_delay` for `TextChannel.edit`
* `slowmode_delay` attribute for `TextChannel`
7 years ago
mental
ee57e89488
Added hypesquad house functionality
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
d58fc0ccee
[lint] Remove unused imports
Left over from various refactoring and rewrites.
7 years ago
PikalaxALT
0e6082c57d
Implement roles kwarg for guild.create_custom_emoji and emoji.edit
7 years ago
Rapptz
4aecdea052
Make TextChannel.create_webhook name parameter mandatory.
7 years ago
Rapptz
f25091efe1
Drop support for Python 3.4 and make minimum version 3.5.2.
7 years ago
slice
9fe7776a33
Add support for getting individual ban entries
7 years ago
Rapptz
6782fdd34d
Add missing coroutine decorator to HTTPClient.get_attachment
Fixes #1104
7 years ago
Rapptz
da9828c41f
Use the proper endpoint for removing your own reaction.
7 years ago
Rapptz
5c5a59c18e
Add Client.clear to clear the bot's internal state to a clean slate.
In case you want to have some external restart loop.
7 years ago
Rapptz
f0c53e4519
Fix URI quoting in Route.
8 years ago
Gorialis
6fc2b51dea
Quote all Route params
8 years ago
Rapptz
47a58d354d
Reimplement zlib streaming.
This time with less bugs. It turned out that the crash was due to a
synchronisation issue between the pending reads and the actual shard
polling mechanism.
Essentially the pending reads would be cancelled via a simple bool but
there would still be a pass left and thus we would have a single
pending read left before or after running the polling mechanism and
this would cause a race condition.
Now the pending read mechanism is properly waited for before returning
control back to the caller.
8 years ago
Rapptz
92a37c2e4f
Revert "Implement zlib streaming for the gateway."
This reverts commit 462191a08b
.
8 years ago
Rapptz
462191a08b
Implement zlib streaming for the gateway.
8 years ago
Rapptz
065f408a10
Move pre-emptive message to DEBUG log level.
8 years ago
Rapptz
711dfb83ab
Allow creating a channel with a category.
8 years ago
Rapptz
f86ac47b28
Don't use Bulk Channel Edit endpoint if not actually moving channels.
Should make the category-only edit cases more straightforward since
it does not rely on other guilds in the cache, outside of the category
itself.
8 years ago
Harmon
91e2163523
Fix typo in http.create_channel
8 years ago
Rapptz
53b4890435
Add category support.
This adds:
* CategoryChannel, which represents a category
* Guild.by_category() which traverses the channels grouping by category
* Guild.categories to get a list of categories
* abc.GuildChannel.category to get the category a channel belongs to
* sync_permissions keyword argument to abc.GuildChannel.edit to sync
permissions with a pre-existing or new category
* category keyword argument to abc.GuildChannel.edit to move a channel
to a category
8 years ago
Rapptz
63bca6604b
Manually format reason parameter for kick and ban.
Related to: https://github.com/aio-libs/aiohttp/issues/2235
8 years ago
Rapptz
37b0fdb898
Add webhook support.
Allows for usage of either `requests` and `aiohttp` when used in
"Standalone" mode.
Fixes #704
8 years ago
Rapptz
13c6a0a17a
Add support for Guild.system_channel
8 years ago
PapyrusThePlant
0d21e83b7f
Fix the proxy support for aiohttp>=1.4.
8 years ago
khazhyk
62cdfbdbcd
Raise in HTTPClient.request when out of retries
Raise after loop completes without returning with most recent values
for r, data. This is a bit less fragile than checking tries < 4, since
changing the retry count requires changing values in multiple places.
(There seemed to already be handling in the 502 retry, tries <= 5,
which always evaluated to true, e.g.)
Previously, once out of retries, we would always return None without
raising.
This won't NameError so long as we make at least one HTTP request.
8 years ago
khazhyk
2850995062
Retry on 500 in HTTPClient.request
Discord official client retries on 500, so worst case scenario, we're
not any worse than the official client which seriously outnumbers us.
8 years ago
Rapptz
6e0902ef57
Implement new-style NSFW channels.
No idea how these will change in the future but this is barebones
enough for now.
8 years ago
Rapptz
851d4ce22a
Properly quote reason header so non-ASCII works in audit log reasons.
8 years ago
Rapptz
b06899e7d4
Defer logging formatting until the logger is actually called.
This would cause unnecessary format calls even if you didn't have
logging enabled.
8 years ago
Rapptz
3330a19f35
Support for sending a nonce.
8 years ago