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
Capn
fd3a176793
Fix documentation for Channel.last_message
6 years ago
Rapptz
35c0476dbb
Add TextChannel.last_message_id and TextChannel.last_message
6 years ago
NCPlayz
fb02191b80
Organise documentation
6 years ago
Rapptz
cb9ae7bd76
Sorting bucket requires an integer.
6 years ago
Rapptz
f3f2f882fd
Fix typo in private property name.
6 years ago
Rapptz
5061915b2a
Add support for store channels.
6 years ago
Rapptz
a70db36cfc
Handle type updates in TextChannel._update for news channels.
6 years ago
Nadir Chowdhury
999ac0a0e3
Add Category.create_text_channel/Category.create_voice_channel ( #1976 )
Fixes #1971
6 years ago
Rapptz
5ea84fb971
Add support for guild news channels.
6 years ago
Steve C
8beabcc39a
Fix typing for Channel.purge's limit kwarg.
PyCharm was throwing a fit when I set it to None. 😒
6 years ago
Pedro Cunha
4ebe02ab1f
Fix documentation typo in CategoryChannel
6 years ago
Chris
1222bce271
Add CategoryChannel.text_channels and voice_channels
6 years ago
Dante Dam
9656a21ebe
Bumped copyright years to 2019.
6 years ago
Michael H
f45aef7c2e
Handle implicit perms in discord.VoiceChannel.permissions_for
This adds some implicit permission handling for `discord.VoiceChannel.permissions_for`
This is not documented behavior in discord's developer documentation, but it can easily be verified as correct.
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
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
5c24e69cf2
Fix up the Sphinx strings causing warnings.
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
BeatButton
a4d1599ce9
Change docstrings to raw-strings
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
c8b49d37be
[lint] Fix incorrect and inconsistent whitespace
Adjust whitespace to be consistent with the rest of the library.
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
Steve C
0e945915b7
Fixes various documentation errors/inconsistencies
Mostly dealing with permissions, also fixes Raw Events inclusion.
7 years ago
Rapptz
1590441dbf
Fix typo in TextChannel.delete_messages documentation.
7 years ago
Jared Shields
2f562bd695
Update docstrings for channel.py
`delete_messages` requires `manage_messages`; the docs in here, nor on RTD reflect this.
Small amendment at line 180, adding three additional.
7 years ago
Tobotimus
3112e1c17e
Add intersphinx
7 years ago
Rapptz
89bbbec37e
Missing name parameter in VoiceChannel.edit documentation.
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
37b0fdb898
Add webhook support.
Allows for usage of either `requests` and `aiohttp` when used in
"Standalone" mode.
Fixes #704
8 years ago
Rapptz
3b3b8a5150
Remove incorrect extraneous usage of reason keyword argument.
Fixes #726
8 years ago
Rapptz
63231ef033
Remove reason keyword argument from message deletion.
Apparently this is unsupported.
Affected functions include:
* abc.Messageable.send
* Message.delete
* TextChannel.delete_messages
* TextChannel.purge
8 years ago
khazhyk
f1e08cccac
Add bulk argument to TextChannel.purge
bulk=False will never use bulk message delete. Useful e.g. for
using the purge interface for deleting the bot's own messages.
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
3fbeb94cdb
Expose reverse parameter in TextChannel.purge
8 years ago
Rapptz
ea078f1c68
Fix TextChannel.purge not working.
8 years ago
Rapptz
77f04539b1
Typo in docstring for TextChannel.delete_messages
8 years ago
Rapptz
64cba11656
Allow TextChannel.delete_messages to take lists of 0 or 1 element.
8 years ago
Rapptz
f4e01b3a92
Make supported operations stand out more than attributes.
8 years ago
Rapptz
f73eb087c9
Use describe instead of tables for supported operations.
8 years ago
Rapptz
cf2269fdf4
Fix some left over incorrect snippets.
8 years ago
Rapptz
b44bba6ee6
First pass at documentation reform.
8 years ago
Rapptz
be2e706b2a
Rename abc.Callable to abc.Connectable.
8 years ago
Rapptz
dff6bcc745
Add support for audit log reasons.
Most routes now have a 'reason' keyword argument.
8 years ago
Rapptz
3f45db5c3b
Better TextChannel.is_nsfw() check.
8 years ago
Rapptz
d3a86a5fb6
Add TextChannel.is_nsfw method to check for NSFW channels.
8 years ago
Rapptz
1fc08bc5a2
Remove unused imports.
8 years ago
Rapptz
3b1b26ffb1
Re-implement voice sending.
This is a complete redesign of the old voice code.
A list of major changes is as follows:
* The voice websocket will now automatically reconnect with
exponential back-off just like the regular Client does.
* Removal of the stream player concept.
* Audio now gracefully pauses and resumes when a disconnect is found.
* Introduce a discord.AudioSource concept to abstract streams
* Flatten previous stream player functionality with the
VoiceClient, e.g. player.stop() is now voice_client.stop()
* With the above re-coupling this means you no longer have to
store players anywhere.
* The after function now requires a single parameter, the error,
if any existed. This will typically be None.
A lot of this design is experimental.
8 years ago