NCPlayz
f7c6c5995d
Implementing GET '/channels/:id' & '/guilds/:id/channels'
Signed-off-by: NCPlayz <[email protected] >
6 years ago
Rapptz
320dbc0618
Add support for system channel flags
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
Rapptz
a048815c60
Add Guild.premium_subscription_count
6 years ago
Rapptz
e40c68b75a
Add Guild.premium_tier and corresponding limits.
6 years ago
Rapptz
2cd6d771ec
Make __repr__ slightly more detailed and add a few missing ones.
This includes raw events (which didn't have any) and a few other
types that were missing them. Upon review some more useful fields were
added to the repr output which would be more useful during debugging.
6 years ago
Ehren Julien-Neitzert
fc5a2936dd
Fix pluralization errors in various files
* Replaced instances of 'return an' with 'returns an'
* fixed pluralization errors
6 years ago
Vexs
bf5b267c55
Correct the documentation for methods and properties that return Assets
6 years ago
DevilXD
b8e45afe9a
Fixed TextChannel edit method missing slowmode unit
6 years ago
Rapptz
30d87ca557
Add currently undocumented premium_tier field.
Needs more testing to find out what it is.
6 years ago
Rapptz
519f0c07ea
Add compute_prune_count to Guild.prune_members
Fix #2085
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
51c64a3b73
Fix documentation so Sphinx can build semi-cleanly.
6 years ago
khazhyk
52c45da0bc
simplify AuditLogIterator ordering
rename reverse to oldest_first and remove cases where messages would
be ordered differently from the order we fetch audit log entries,
similar to HistoryIterator
6 years ago
NCPlayz
1d701f32b6
Add fetch custom emoji, all custom emojis; Add user property to Emoji
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
numbermaniac
77dd4e3de0
guild.py: change wording for create_role error
6 years ago
NCPlayz
a1caaf8dcf
Add Guild.max_presences and Guild.max_members
Fixes #1822
Fixes #1418
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
5061915b2a
Add support for store channels.
6 years ago
Jeremy "EndenDragon" Zhang
682c0d962f
Consider news channel type as a TextChannel
6 years ago
Nadir Chowdhury
8f7ce7c64e
Add support for reading guild descriptions
Added `Guild.description` and `PartialInviteGuild.description`.
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
numbermaniac
5516b0b2c9
guild.py: change word in create_role's docstring
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
Tyler
febb8a965c
Allow additional parameters on channel creation
6 years ago
Rapptz
b79a53cae4
Fix typo in exception message in Guild.edit
6 years ago
Rapptz
648e62031d
Add support for explicit_content_filter in Guild.edit
6 years ago
Rapptz
c7396dc8ac
Add support for mobile indicators and per-client statuses.
6 years ago
Rapptz
e6a8eb1a7c
Fix bug in Guild.splash_url
6 years ago
Rapptz
8b18fa307b
Add support for default notification level in audit logs and Guild.edit
6 years ago
Chris
1ac432d9f0
Add Guild.default_notifications
6 years ago
SnowyLuma
e89e7dfe93
Add support for multiple activities
7 years ago
Hornwitser
0e7b378151
[lint] Remove extra whitespace in guild.py
Remove trailing whitespace in guild.py introduced by 3727ea9
.
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
Matt (IPv4)
3727ea9811
Add Guild.splash_url_as
7 years ago
Rapptz
1da6962580
Fix up Guild.create_custom_emoji docstring.
7 years ago
MusicOnline
60d86b6c1a
Add note regarding MORE_EMOJI in Guild.create_custom_emoji
7 years ago
MusicOnline
2f84d05f0b
Correct Guild.create_custom_emoji documentation
7 years ago
Rapptz
3d03dbc451
Change internal role storage in Guild to a dict instead of a list.
This adds the following APIs:
* Guild.get_role
This removes the following APIs:
* Guild.role_hierarchy
To compensate for the removed APIs, Guild.roles is now a sorted list
based on hierarchy. The first element will always be the @everyone
role.
This speeds up access at the cost of some memory, theoretically.
7 years ago
Vexs
262c0d3a9e
Correct note note about editing emoji in Guild.create_custom_emoji.
Remove incorrect note; extension of #1575
7 years ago
Rapptz
5c24e69cf2
Fix up the Sphinx strings causing warnings.
7 years ago
PikalaxALT
0e6082c57d
Implement roles kwarg for guild.create_custom_emoji and emoji.edit
7 years ago
bmintz
ec3435b224
Remove remaining asyncio.coroutine calls.
Also remove Client.async_event
7 years ago
Rapptz
f25091efe1
Drop support for Python 3.4 and make minimum version 3.5.2.
7 years ago