Discord Models#
Models are classes that are received from Discord and are not meant to be created by the user of the library.
Danger
The classes listed below are not intended to be created by users and are also read-only.
For example, this means that you should not make your own User instances
nor should you modify the User instance yourself.
If you want to get one of these model classes instances they'd have to be through
the cache, and a common way of doing so is through the utils.find() function
or attributes of model classes that you receive from the events specified in the
Event Reference.
Note
Nearly all classes here have __slots__ defined which means that it is impossible to have dynamic attributes to the data classes.
- defis_animated
- asyncread
- defreplace
- asyncsave
- defwith_format
- defwith_size
- defwith_static_format
- class discord.Asset(state, *, url, key, animated=False)[source]#
Represents a CDN asset on Discord.
- str(x)
Returns the URL of the CDN asset.
- len(x)
Returns the length of the CDN asset's URL.
- x == y
Checks if the asset is equal to another asset.
- x != y
Checks if the asset is not equal to another asset.
- hash(x)
Returns the hash of the asset.
- replace(*, size=..., format=..., static_format=...)[source]#
Returns a new asset with the passed components replaced.
- Parameters:
- Returns:
The newly updated asset.
- Return type:
- Raises:
InvalidArgument -- An invalid size or format was passed.
- with_size(size, /)[source]#
Returns a new asset with the specified size.
- Parameters:
size (
int) -- The new size of the asset.- Returns:
The new updated asset.
- Return type:
- Raises:
InvalidArgument -- The asset had an invalid size.
- with_format(format, /)[source]#
Returns a new asset with the specified format.
- Parameters:
format (
str) -- The new format of the asset.- Returns:
The new updated asset.
- Return type:
- Raises:
InvalidArgument -- The asset has an invalid format.
- with_static_format(format, /)[source]#
Returns a new asset with the specified static format.
This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed.
- Parameters:
format (
str) -- The new static format of the asset.- Returns:
The new updated asset.
- Return type:
- Raises:
InvalidArgument -- The asset had an invalid format.
- await read()#
This function is a coroutine.
Retrieves the content of this asset as a
bytesobject.- Returns:
The content of the asset.
- Return type:
- Raises:
DiscordException -- There was no internal connection state.
HTTPException -- Downloading the asset failed.
NotFound -- The asset was deleted.
- await save(fp, *, seek_begin=True)#
This function is a coroutine.
Saves this asset into a file-like object.
- Parameters:
fp (Union[
io.BufferedIOBase,os.PathLike]) -- The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead.seek_begin (
bool) -- Whether to seek to the beginning of the file after saving is successfully done.
- Returns:
The number of bytes written.
- Return type:
- Raises:
DiscordException -- There was no internal connection state.
HTTPException -- Downloading the asset failed.
NotFound -- The asset was deleted.
- class discord.Spotify[source]#
Represents a Spotify listening activity from Discord. This is a special case of
Activitythat makes it easier to work with the Spotify integration.- x == y
Checks if two activities are equal.
- x != y
Checks if two activities are not equal.
- hash(x)
Returns the activity's hash.
- str(x)
Returns the string 'Spotify'.
- property type#
Returns the activity's type. This is for compatibility with
Activity.It always returns
ActivityType.listening.- Return type:
ActivityType
- property created_at#
When the user started listening in UTC.
New in version 1.3.
- Return type:
datetime.datetime | None
- property colour#
Returns the Spotify integration colour, as a
Colour.There is an alias for this named
color- Return type:
- property color#
Returns the Spotify integration colour, as a
Colour.There is an alias for this named
colour- Return type:
- property artists#
The artists of the song being played.
- property artist#
The artist of the song being played.
This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist.
- Return type:
- class discord.VoiceState(*, data, channel=None)[source]#
Represents a Discord user's voice state.
- self_stream#
Indicates if the user is currently streaming via 'Go Live' feature.
New in version 1.3.
- Type:
- suppress#
Indicates if the user is suppressed from speaking.
Only applies to stage channels.
New in version 1.7.
- Type:
- requested_to_speak_at#
An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be
Noneif they are not requesting to speak anymore or have been accepted to speak.Only applicable to stage channels.
New in version 1.7.
- Type:
Optional[
datetime.datetime]
- channel#
The voice channel that the user is currently connected to.
Noneif the user is not currently in a voice channel.- Type:
Optional[Union[
VoiceChannel,StageChannel]]
- Parameters:
data (VoiceStatePayload) --
channel (VocalGuildChannel | None) --
- defcan_send
- asyncfetch_message
- defget_partial_message
- defhistory
- asyncpins
- asyncsend
- asynctrigger_typing
- deftyping
- class discord.PartialMessageable(state, id, type=None)[source]#
Represents a partial messageable to aid with working messageable channels when only a channel ID are present.
The only way to construct this class is through
Client.get_partial_messageable().Note that this class is trimmed down and has no rich attributes.
New in version 2.0.
- x == y
Checks if two partial messageables are equal.
- x != y
Checks if two partial messageables are not equal.
- hash(x)
Returns the partial messageable's hash.
- type#
The channel type associated with this partial messageable, if given.
- Type:
Optional[
ChannelType]
- Parameters:
state (ConnectionState) --
id (int) --
type (ChannelType | None) --
- can_send(*objects)#
Returns a
boolindicating whether you have the permissions to send the object(s).
- await fetch_message(id, /)#
This function is a coroutine.
Retrieves a single
Messagefrom the destination.- Parameters:
id (
int) -- The message ID to look for.- Returns:
The message asked for.
- Return type:
- Raises:
NotFound -- The specified message was not found.
Forbidden -- You do not have the permissions required to get a message.
HTTPException -- Retrieving the message failed.
- history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#
Returns an
AsyncIteratorthat enables receiving the destination's message history.You must have
read_message_historypermissions to use this.- Parameters:
limit (Optional[
int]) -- The number of messages to retrieve. IfNone, retrieves every message in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.around (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages.oldest_first (Optional[
bool]) -- If set toTrue, return messages in oldest->newest order. Defaults toTrueifafteris specified, otherwiseFalse.
- Yields:
Message-- The message with the message data parsed.- Raises:
Forbidden -- You do not have permissions to get channel message history.
HTTPException -- The request to get message history failed.
Examples
Usage
counter = 0 async for message in channel.history(limit=200): if message.author == client.user: counter += 1
Flattening into a list:
messages = await channel.history(limit=123).flatten() # messages is now a list of Message...
All parameters are optional.
- Return type:
HistoryIterator
- await pins()#
This function is a coroutine.
Retrieves all messages that are currently pinned in the channel.
Note
Due to a limitation with the Discord API, the
Messageobjects returned by this method do not contain completeMessage.reactionsdata.- Returns:
The messages that are currently pinned.
- Return type:
List[
Message]- Raises:
HTTPException -- Retrieving the pinned messages failed.
- await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None)#
This function is a coroutine.
Sends a message to the destination with the content given.
The content must be a type that can convert to a string through
str(content). If the content is set toNone(the default), then theembedparameter must be provided.To upload a single file, the
fileparameter should be used with a singleFileobject. To upload multiple files, thefilesparameter should be used with alistofFileobjects. Specifying both parameters will lead to an exception.To upload a single embed, the
embedparameter should be used with a singleEmbedobject. To upload multiple embeds, theembedsparameter should be used with alistofEmbedobjects. Specifying both parameters will lead to an exception.- Parameters:
content (Optional[
str]) -- The content of the message to send.tts (
bool) -- Indicates if the message should be sent using text-to-speech.embed (
Embed) -- The rich embed for the content.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.nonce (
int) -- The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value.delete_after (
float) -- If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored.allowed_mentions (
AllowedMentions) --Controls the mentions being processed in this message. If this is passed, then the object is merged with
allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.New in version 1.4.
reference (Union[
Message,MessageReference,PartialMessage]) --A reference to the
Messageto which you are replying, this can be created usingto_reference()or passed directly as aMessage. You can control whether this mentions the author of the referenced message using thereplied_userattribute ofallowed_mentionsor by settingmention_author.New in version 1.6.
mention_author (Optional[
bool]) --If set, overrides the
replied_userattribute ofallowed_mentions.New in version 1.6.
view (
discord.ui.View) -- A Discord UI View to add to the message.embeds (List[
Embed]) --A list of embeds to upload. Must be a maximum of 10.
New in version 2.0.
stickers (Sequence[Union[
GuildSticker,StickerItem]]) --A list of stickers to upload. Must be a maximum of 3.
New in version 2.0.
suppress (
bool) -- Whether to suppress embeds for the message.
- Returns:
The message that was sent.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
Forbidden -- You do not have the proper permissions to send the message.
InvalidArgument -- The
fileslist is not of the appropriate size, you specified bothfileandfiles, or you specified bothembedandembeds, or thereferenceobject is not aMessage,MessageReferenceorPartialMessage.
- await trigger_typing()#
This function is a coroutine.
Triggers a typing indicator to the destination.
Typing indicator will go away after 10 seconds, or after a message is sent.
- Return type:
- typing()#
Returns a context manager that allows you to type for an indefinite period of time.
This is useful for denoting long computations in your bot.
Note
This is both a regular context manager and an async context manager. This means that both
withandasync withwork with this.Example Usage:
async with channel.typing(): # simulate something heavy await asyncio.sleep(10) await channel.send('done!')
- Return type:
Typing
- get_partial_message(message_id, /)[source]#
Creates a
PartialMessagefrom the message ID.This is useful if you want to work with a message and only have its ID without doing an unnecessary API call.
- Parameters:
message_id (
int) -- The message ID to create a partial message for.- Returns:
The partial message.
- Return type:
Users#
- asyncedit
- defmentioned_in
- class discord.ClientUser(*, state, data)[source]#
Represents your Discord user.
- x == y
Checks if two users are equal.
- x != y
Checks if two users are not equal.
- hash(x)
Return the user's hash.
- str(x)
Returns the user's name with discriminator.
- system#
Specifies if the user is a system user (i.e. represents Discord officially).
New in version 1.3.
- Type:
- Parameters:
state (
ConnectionState) --data (
User) --
- await edit(*, username=..., avatar=...)[source]#
This function is a coroutine.
Edits the current profile of the client.
Note
To upload an avatar, a bytes-like object must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via
open('some_filename', 'rb')and the bytes-like object is given through the use offp.read().The only image formats supported for uploading is JPEG and PNG.
Changed in version 2.0: The edit is no longer in-place, instead the newly edited client user is returned.
- Parameters:
username (
str) -- The new username you wish to change to.avatar (
bytes) -- A bytes-like object representing the image to upload. Could beNoneto denote no avatar.
- Returns:
The newly edited client user.
- Return type:
- Raises:
HTTPException -- Editing your profile failed.
InvalidArgument -- Wrong image format passed for
avatar.
- property accent_color#
Returns the user's accent color, if applicable.
There is an alias for this named
accent_colour.New in version 2.0.
Note
This information is only available via
Client.fetch_user().- Return type:
Colour | None
- property accent_colour#
Returns the user's accent colour, if applicable.
There is an alias for this named
accent_color.New in version 2.0.
Note
This information is only available via
Client.fetch_user().- Return type:
Colour | None
- property avatar#
Returns an
Assetfor the avatar the user has.If the user does not have a traditional avatar,
Noneis returned. If you want the avatar that a user has displayed, considerdisplay_avatar.- Return type:
Asset | None
- property banner#
Returns the user's banner asset, if available.
New in version 2.0.
Note
This information is only available via
Client.fetch_user().- Return type:
Asset | None
- property color#
A property that returns a color denoting the rendered color for the user. This always returns
Colour.default().There is an alias for this named
colour.- Return type:
- property colour#
A property that returns a colour denoting the rendered colour for the user. This always returns
Colour.default().There is an alias for this named
color.- Return type:
- property created_at#
Returns the user's creation time in UTC.
This is when the user's Discord account was created.
- Return type:
- property default_avatar#
Returns the default avatar for a given user. This is calculated by the user's discriminator.
- Return type:
- property display_avatar#
Returns the user's display avatar.
For regular users this is just their default avatar or uploaded avatar.
New in version 2.0.
- Return type:
- property display_name#
Returns the user's display name.
For regular users this is just their username, but if they have a guild specific nickname then that is returned instead.
- Return type:
- property jump_url#
Returns a URL that allows the client to jump to the user.
New in version 2.0.
- Return type:
- mentioned_in(message)#
Checks if the user is mentioned in the specified message.
- property public_flags#
The publicly available flags the user has.
- Return type:
- defcan_send
- asynccreate_dm
- asyncfetch_message
- defhistory
- defmentioned_in
- asyncpins
- asyncsend
- asynctrigger_typing
- deftyping
- class discord.User(*, state, data)[source]#
Represents a Discord user.
- x == y
Checks if two users are equal.
- x != y
Checks if two users are not equal.
- hash(x)
Return the user's hash.
- str(x)
Returns the user's name with discriminator.
- Parameters:
state (
ConnectionState) --data (
User) --
- async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#
Returns an
AsyncIteratorthat enables receiving the destination's message history.You must have
read_message_historypermissions to use this.- Parameters:
limit (Optional[
int]) -- The number of messages to retrieve. IfNone, retrieves every message in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.around (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages.oldest_first (Optional[
bool]) -- If set toTrue, return messages in oldest->newest order. Defaults toTrueifafteris specified, otherwiseFalse.
- Yields:
Message-- The message with the message data parsed.- Raises:
Forbidden -- You do not have permissions to get channel message history.
HTTPException -- The request to get message history failed.
Examples
Usage
counter = 0 async for message in channel.history(limit=200): if message.author == client.user: counter += 1
Flattening into a list:
messages = await channel.history(limit=123).flatten() # messages is now a list of Message...
All parameters are optional.
- Return type:
HistoryIterator
- async with typing()#
Returns a context manager that allows you to type for an indefinite period of time.
This is useful for denoting long computations in your bot.
Note
This is both a regular context manager and an async context manager. This means that both
withandasync withwork with this.Example Usage:
async with channel.typing(): # simulate something heavy await asyncio.sleep(10) await channel.send('done!')
- Return type:
Typing
- property dm_channel#
Returns the channel associated with this user if it exists.
If this returns
None, you can create a DM channel by calling thecreate_dm()coroutine function.- Return type:
DMChannel | None
- property mutual_guilds#
The guilds that the user shares with the client.
Note
This will only return mutual guilds within the client's internal cache.
New in version 1.7.
- property accent_color#
Returns the user's accent color, if applicable.
There is an alias for this named
accent_colour.New in version 2.0.
Note
This information is only available via
Client.fetch_user().- Return type:
Colour | None
- property accent_colour#
Returns the user's accent colour, if applicable.
There is an alias for this named
accent_color.New in version 2.0.
Note
This information is only available via
Client.fetch_user().- Return type:
Colour | None
- property avatar#
Returns an
Assetfor the avatar the user has.If the user does not have a traditional avatar,
Noneis returned. If you want the avatar that a user has displayed, considerdisplay_avatar.- Return type:
Asset | None
- property banner#
Returns the user's banner asset, if available.
New in version 2.0.
Note
This information is only available via
Client.fetch_user().- Return type:
Asset | None
- can_send(*objects)#
Returns a
boolindicating whether you have the permissions to send the object(s).
- property color#
A property that returns a color denoting the rendered color for the user. This always returns
Colour.default().There is an alias for this named
colour.- Return type:
- property colour#
A property that returns a colour denoting the rendered colour for the user. This always returns
Colour.default().There is an alias for this named
color.- Return type:
- await create_dm()[source]#
This function is a coroutine.
Creates a
DMChannelwith this user.This should be rarely called, as this is done transparently for most people.
- Returns:
The channel that was created.
- Return type:
- property created_at#
Returns the user's creation time in UTC.
This is when the user's Discord account was created.
- Return type:
- property default_avatar#
Returns the default avatar for a given user. This is calculated by the user's discriminator.
- Return type:
- property display_avatar#
Returns the user's display avatar.
For regular users this is just their default avatar or uploaded avatar.
New in version 2.0.
- Return type:
- property display_name#
Returns the user's display name.
For regular users this is just their username, but if they have a guild specific nickname then that is returned instead.
- Return type:
- await fetch_message(id, /)#
This function is a coroutine.
Retrieves a single
Messagefrom the destination.- Parameters:
id (
int) -- The message ID to look for.- Returns:
The message asked for.
- Return type:
- Raises:
NotFound -- The specified message was not found.
Forbidden -- You do not have the permissions required to get a message.
HTTPException -- Retrieving the message failed.
- property jump_url#
Returns a URL that allows the client to jump to the user.
New in version 2.0.
- Return type:
- mentioned_in(message)#
Checks if the user is mentioned in the specified message.
- await pins()#
This function is a coroutine.
Retrieves all messages that are currently pinned in the channel.
Note
Due to a limitation with the Discord API, the
Messageobjects returned by this method do not contain completeMessage.reactionsdata.- Returns:
The messages that are currently pinned.
- Return type:
List[
Message]- Raises:
HTTPException -- Retrieving the pinned messages failed.
- property public_flags#
The publicly available flags the user has.
- Return type:
- await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None)#
This function is a coroutine.
Sends a message to the destination with the content given.
The content must be a type that can convert to a string through
str(content). If the content is set toNone(the default), then theembedparameter must be provided.To upload a single file, the
fileparameter should be used with a singleFileobject. To upload multiple files, thefilesparameter should be used with alistofFileobjects. Specifying both parameters will lead to an exception.To upload a single embed, the
embedparameter should be used with a singleEmbedobject. To upload multiple embeds, theembedsparameter should be used with alistofEmbedobjects. Specifying both parameters will lead to an exception.- Parameters:
content (Optional[
str]) -- The content of the message to send.tts (
bool) -- Indicates if the message should be sent using text-to-speech.embed (
Embed) -- The rich embed for the content.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.nonce (
int) -- The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value.delete_after (
float) -- If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored.allowed_mentions (
AllowedMentions) --Controls the mentions being processed in this message. If this is passed, then the object is merged with
allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.New in version 1.4.
reference (Union[
Message,MessageReference,PartialMessage]) --A reference to the
Messageto which you are replying, this can be created usingto_reference()or passed directly as aMessage. You can control whether this mentions the author of the referenced message using thereplied_userattribute ofallowed_mentionsor by settingmention_author.New in version 1.6.
mention_author (Optional[
bool]) --If set, overrides the
replied_userattribute ofallowed_mentions.New in version 1.6.
view (
discord.ui.View) -- A Discord UI View to add to the message.embeds (List[
Embed]) --A list of embeds to upload. Must be a maximum of 10.
New in version 2.0.
stickers (Sequence[Union[
GuildSticker,StickerItem]]) --A list of stickers to upload. Must be a maximum of 3.
New in version 2.0.
suppress (
bool) -- Whether to suppress embeds for the message.
- Returns:
The message that was sent.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
Forbidden -- You do not have the proper permissions to send the message.
InvalidArgument -- The
fileslist is not of the appropriate size, you specified bothfileandfiles, or you specified bothembedandembeds, or thereferenceobject is not aMessage,MessageReferenceorPartialMessage.
Messages#
- defis_spoiler
- asyncread
- asyncsave
- asyncto_file
- class discord.Attachment(*, data, state)[source]#
Represents an attachment from Discord.
- str(x)
Returns the URL of the attachment.
- x == y
Checks if the attachment is equal to another attachment.
- x != y
Checks if the attachment is not equal to another attachment.
- hash(x)
Returns the hash of the attachment.
Changed in version 1.7: Attachment can now be cast to
strand is hashable.- height#
The attachment's height, in pixels. Only applicable to images and videos.
- Type:
Optional[
int]
- url#
The attachment URL. If the message this attachment was attached to is deleted, then this will 404.
- Type:
- proxy_url#
The proxy URL. This is a cached version of the
urlin the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all.- Type:
- content_type#
The attachment's media type
- Type:
Optional[
str]
- Parameters:
data (
Attachment) --state (
ConnectionState) --
- await save(fp, *, seek_begin=True, use_cached=False)[source]#
This function is a coroutine.
Saves this attachment into a file-like object.
- Parameters:
fp (Union[
io.BufferedIOBase,os.PathLike]) -- The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead.seek_begin (
bool) -- Whether to seek to the beginning of the file after saving is successfully done.use_cached (
bool) -- Whether to useproxy_urlrather thanurlwhen downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments.
- Returns:
The number of bytes written.
- Return type:
- Raises:
HTTPException -- Saving the attachment failed.
NotFound -- The attachment was deleted.
- await read(*, use_cached=False)[source]#
This function is a coroutine.
Retrieves the content of this attachment as a
bytesobject.New in version 1.1.
- Parameters:
use_cached (
bool) -- Whether to useproxy_urlrather thanurlwhen downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments.- Returns:
The contents of the attachment.
- Return type:
- Raises:
HTTPException -- Downloading the attachment failed.
Forbidden -- You do not have permissions to access this attachment
NotFound -- The attachment was deleted.
- await to_file(*, use_cached=False, spoiler=False)[source]#
This function is a coroutine.
Converts the attachment into a
Filesuitable for sending viaabc.Messageable.send().New in version 1.3.
- Parameters:
use_cached (
bool) --Whether to use
proxy_urlrather thanurlwhen downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments.New in version 1.4.
spoiler (
bool) --Whether the file is a spoiler.
New in version 1.4.
- Returns:
The attachment as a file suitable for sending.
- Return type:
- Raises:
HTTPException -- Downloading the attachment failed.
Forbidden -- You do not have permissions to access this attachment
NotFound -- The attachment was deleted.
- activity
- application
- attachments
- author
- channel
- channel_mentions
- clean_content
- components
- content
- created_at
- edited_at
- embeds
- flags
- guild
- id
- interaction
- jump_url
- mention_everyone
- mentions
- nonce
- pinned
- raw_channel_mentions
- raw_mentions
- raw_role_mentions
- reactions
- reference
- role_mentions
- stickers
- system_content
- thread
- tts
- type
- webhook_id
- asyncadd_reaction
- asyncclear_reaction
- asyncclear_reactions
- asynccreate_thread
- asyncdelete
- asyncedit
- defis_system
- asyncpin
- asyncpublish
- asyncremove_reaction
- asyncreply
- defto_reference
- asyncunpin
- class discord.Message(*, state, channel, data)[source]#
Represents a message from Discord.
- x == y
Checks if two messages are equal.
- x != y
Checks if two messages are not equal.
- hash(x)
Returns the message's hash.
- tts#
Specifies if the message was done with text-to-speech. This can only be accurately received in
on_message()due to a discord limitation.- Type:
- type#
The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for
system_content.- Type:
- author#
A
Memberthat sent the message. Ifchannelis a private channel or the user has the left the guild, then it is aUserinstead.
- nonce#
The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally.
- channel#
The
TextChannelorThreadthat the message was sent from. Could be aDMChannelorGroupChannelif it's a private message.- Type:
Union[
TextChannel,Thread,DMChannel,GroupChannel,PartialMessageable]
- reference#
The message that this message references. This is only applicable to messages of type
MessageType.pins_add, crossposted messages created by a followed channel integration, or message replies.New in version 1.5.
- Type:
Optional[
MessageReference]
- mention_everyone#
Specifies if the message mentions everyone.
Note
This does not check if the
@everyoneor the@heretext is in the message itself. Rather this boolean indicates if either the@everyoneor the@heretext is in the message and it did end up mentioning.- Type:
- mentions#
A list of
Memberthat were mentioned. If the message is in a private message then the list will be ofUserinstead. For messages that are not of typeMessageType.default, this array can be used to aid in system messages. For more information, seesystem_content.Warning
The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library.
- Type:
List[
abc.User]
- channel_mentions#
A list of
abc.GuildChannelthat were mentioned. If the message is in a private message then the list is always empty.- Type:
List[
abc.GuildChannel]
- role_mentions#
A list of
Rolethat were mentioned. If the message is in a private message then the list is always empty.- Type:
List[
Role]
- webhook_id#
If this message was sent by a webhook, then this is the webhook ID's that sent this message.
- Type:
Optional[
int]
- attachments#
A list of attachments given to a message.
- Type:
List[
Attachment]
- flags#
Extra features of the message.
New in version 1.3.
- Type:
- reactions#
Reactions to a message. Reactions can be either custom emoji or standard unicode emoji.
- Type:
List[
Reaction]
- activity#
The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member.
It is a dictionary with the following optional keys:
type: An integer denoting the type of message activity being requested.party_id: The party ID associated with the party.
- Type:
Optional[
dict]
- application#
The rich presence enabled application associated with this message.
It is a dictionary with the following keys:
id: A string representing the application's ID.name: A string representing the application's name.description: A string representing the application's description.icon: A string representing the icon ID of the application.cover_image: A string representing the embed's image asset ID.
- Type:
Optional[
dict]
- stickers#
A list of sticker items given to the message.
New in version 1.6.
- Type:
List[
StickerItem]
- interaction#
The interaction associated with the message, if applicable.
- Type:
Optional[
MessageInteraction]
- thread#
The thread created from this message, if applicable.
New in version 2.0.
- Type:
Optional[
Thread]
- Parameters:
state (
ConnectionState) --channel (
Union[TextChannel,VoiceChannel,Thread,DMChannel,PartialMessageable,GroupChannel]) --data (
Message) --
- raw_mentions#
A property that returns an array of user IDs matched with the syntax of
<@user_id>in the message content.This allows you to receive the user IDs of mentioned users even in a private message context.
- raw_channel_mentions#
A property that returns an array of channel IDs matched with the syntax of
<#channel_id>in the message content.
- raw_role_mentions#
A property that returns an array of role IDs matched with the syntax of
<@&role_id>in the message content.
- clean_content#
A property that returns the content in a "cleaned up" manner. This basically means that mentions are transformed into the way the client shows it. e.g.
<#id>will transform into#name.This will also transform @everyone and @here mentions into non-mentions.
Note
This does not affect markdown. If you want to escape or remove markdown then use
utils.escape_markdown()orutils.remove_markdown()respectively, along with this function.
- property edited_at#
An aware UTC datetime object containing the edited time of the message.
- Return type:
datetime.datetime | None
- is_system()[source]#
Whether the message is a system message.
A system message is a message that is constructed entirely by the Discord API in response to something.
New in version 1.3.
- Return type:
- system_content#
A property that returns the content that is rendered regardless of the
Message.type.In the case of
MessageType.defaultandMessageType.reply, this just returns the regularMessage.content. Otherwise, this returns an English message denoting the contents of the system message.
- await delete(*, delay=None, reason=None)[source]#
This function is a coroutine.
Deletes the message.
Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the
manage_messagespermission.Changed in version 1.1: Added the new
delaykeyword-only parameter.- Parameters:
- Raises:
Forbidden -- You do not have proper permissions to delete the message.
NotFound -- The message was deleted already
HTTPException -- Deleting the message failed.
- Return type:
None
- await edit(content=..., embed=..., embeds=..., file=..., files=..., attachments=..., suppress=..., delete_after=None, allowed_mentions=..., view=...)[source]#
This function is a coroutine.
Edits the message.
The content must be able to be transformed into a string via
str(content).Changed in version 1.3: The
suppresskeyword-only parameter was added.- Parameters:
content (Optional[
str]) -- The new content to replace the message with. Could beNoneto remove the content.embed (Optional[
Embed]) -- The new embed to replace the original with. Could beNoneto remove the embed.embeds (List[
Embed]) --The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds
[]should be passed.New in version 2.0.
file (Sequence[
File]) -- A new file to add to the message.files (List[Sequence[
File]]) -- New files to add to the message.attachments (List[
Attachment]) -- A list of attachments to keep in the message. If[]is passed then all attachments are removed.suppress (
bool) -- Whether to suppress embeds for the message. This removes all the embeds if set toTrue. If set toFalsethis brings the embeds back if they were suppressed. Using this parameter requiresmanage_messages.delete_after (Optional[
float]) -- If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored.allowed_mentions (Optional[
AllowedMentions]) --Controls the mentions being processed in this message. If this is passed, then the object is merged with
allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.New in version 1.4.
view (Optional[
View]) -- The updated view to update this message with. IfNoneis passed then the view is removed.
- Raises:
HTTPException -- Editing the message failed.
Forbidden -- Tried to suppress a message without permissions or edited a message's content or embed that isn't yours.
InvalidArgument -- You specified both
embedandembeds, specified bothfileandfiles, or either``file`` orfileswere of the wrong type.
- Return type:
- await publish()[source]#
This function is a coroutine.
Publishes this message to your announcement channel.
You must have the
send_messagespermission to do this.If the message is not your own then the
manage_messagespermission is also needed.- Raises:
Forbidden -- You do not have the proper permissions to publish this message.
HTTPException -- Publishing the message failed.
- Return type:
- await pin(*, reason=None)[source]#
This function is a coroutine.
Pins the message.
You must have the
manage_messagespermission to do this in a non-private channel context.- Parameters:
reason (Optional[
str]) --The reason for pinning the message. Shows up on the audit log.
New in version 1.4.
- Raises:
Forbidden -- You do not have permissions to pin the message.
NotFound -- The message or channel was not found or deleted.
HTTPException -- Pinning the message failed, probably due to the channel having more than 50 pinned messages.
- Return type:
None
- await unpin(*, reason=None)[source]#
This function is a coroutine.
Unpins the message.
You must have the
manage_messagespermission to do this in a non-private channel context.- Parameters:
reason (Optional[
str]) --The reason for unpinning the message. Shows up on the audit log.
New in version 1.4.
- Raises:
Forbidden -- You do not have permissions to unpin the message.
NotFound -- The message or channel was not found or deleted.
HTTPException -- Unpinning the message failed.
- Return type:
None
- await add_reaction(emoji)[source]#
This function is a coroutine.
Add a reaction to the message.
The emoji may be a unicode emoji or a custom guild
Emoji.You must have the
read_message_historypermission to use this. If nobody else has reacted to the message using this emoji, theadd_reactionspermission is required.- Parameters:
emoji (Union[
Emoji,Reaction,PartialEmoji,str]) -- The emoji to react with.- Raises:
HTTPException -- Adding the reaction failed.
Forbidden -- You do not have the proper permissions to react to the message.
NotFound -- The emoji you specified was not found.
InvalidArgument -- The emoji parameter is invalid.
- Return type:
- await remove_reaction(emoji, member)[source]#
This function is a coroutine.
Remove a reaction by the member from the message.
The emoji may be a unicode emoji or a custom guild
Emoji.If the reaction is not your own (i.e.
memberparameter is not you) then themanage_messagespermission is needed.The
memberparameter must represent a member and meet theabc.Snowflakeabc.- Parameters:
emoji (Union[
Emoji,Reaction,PartialEmoji,str]) -- The emoji to remove.member (
abc.Snowflake) -- The member for which to remove the reaction.
- Raises:
HTTPException -- Removing the reaction failed.
Forbidden -- You do not have the proper permissions to remove the reaction.
NotFound -- The member or emoji you specified was not found.
InvalidArgument -- The emoji parameter is invalid.
- Return type:
None
- await clear_reaction(emoji)[source]#
This function is a coroutine.
Clears a specific reaction from the message.
The emoji may be a unicode emoji or a custom guild
Emoji.You need the
manage_messagespermission to use this.New in version 1.3.
- Parameters:
emoji (Union[
Emoji,Reaction,PartialEmoji,str]) -- The emoji to clear.- Raises:
HTTPException -- Clearing the reaction failed.
Forbidden -- You do not have the proper permissions to clear the reaction.
NotFound -- The emoji you specified was not found.
InvalidArgument -- The emoji parameter is invalid.
- Return type:
None
- await clear_reactions()[source]#
This function is a coroutine.
Removes all the reactions from the message.
You need the
manage_messagespermission to use this.- Raises:
HTTPException -- Removing the reactions failed.
Forbidden -- You do not have the proper permissions to remove all the reactions.
- Return type:
- await create_thread(*, name, auto_archive_duration=...)[source]#
This function is a coroutine.
Creates a public thread from this message.
You must have
create_public_threadsin order to create a public thread from a message.The channel this message belongs in must be a
TextChannel.New in version 2.0.
- Parameters:
- Returns:
The created thread.
- Return type:
- Raises:
Forbidden -- You do not have permissions to create a thread.
HTTPException -- Creating the thread failed.
InvalidArgument -- This message does not have guild info attached.
- await reply(content=None, **kwargs)[source]#
This function is a coroutine.
A shortcut method to
abc.Messageable.send()to reply to theMessage.New in version 1.6.
- Returns:
The message that was sent.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
Forbidden -- You do not have the proper permissions to send the message.
InvalidArgument -- The
fileslist is not of the appropriate size, or you specified bothfileandfiles.
- Parameters:
content (str | None) --
- to_reference(*, fail_if_not_exists=True)[source]#
Creates a
MessageReferencefrom the current message.New in version 1.6.
- Parameters:
fail_if_not_exists (
bool) --Whether replying using the message reference should raise
HTTPExceptionif the message no longer exists or Discord could not fetch the message.New in version 1.7.
- Returns:
The reference to this message.
- Return type:
- class discord.DeletedReferencedMessage(parent)[source]#
A special sentinel type that denotes whether the resolved message referenced message had since been deleted.
The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted.
New in version 1.6.
- Parameters:
parent (
MessageReference) --
- class discord.Reaction(*, message, data, emoji=None)[source]#
Represents a reaction to a message.
Depending on the way this object was created, some of the attributes can have a value of
None.- x == y
Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered "equal".
- x != y
Checks if two reactions are not equal.
- hash(x)
Returns the reaction's hash.
- str(x)
Returns the string form of the reaction's emoji.
- emoji#
The reaction emoji. May be a custom emoji, or a unicode emoji.
- Type:
Union[
Emoji,PartialEmoji,str]
- Parameters:
message (Message) --
data (ReactionPayload) --
emoji (PartialEmoji | Emoji | str | None) --
- async for ... in users(*, limit=None, after=None)[source]#
Returns an
AsyncIteratorrepresenting the users that have reacted to the message.The
afterparameter must represent a member and meet theabc.Snowflakeabc.- Parameters:
limit (Optional[
int]) -- The maximum number of results to return. If not provided, returns all the users who reacted to the message.after (Optional[
abc.Snowflake]) -- For pagination, reactions are sorted by member.
- Yields:
Union[
User,Member] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be aMemberis in a guild message context. Sometimes it can be aUserif the member has left the guild.- Raises:
HTTPException -- Getting the users for the reaction failed.
Examples
Usage
# I do not actually recommend doing this. async for user in reaction.users(): await channel.send(f'{user} has reacted with {reaction.emoji}!')
Flattening into a list:
users = await reaction.users().flatten() # users is now a list of User... winner = random.choice(users) await channel.send(f'{winner} has won the raffle.')
- Return type:
ReactionIterator
- await remove(user)[source]#
This function is a coroutine.
Remove the reaction by the provided
Userfrom the message.If the reaction is not your own (i.e.
userparameter is not you) then themanage_messagespermission is needed.The
userparameter must represent a user or member and meet theabc.Snowflakeabc.- Parameters:
user (
abc.Snowflake) -- The user or member from which to remove the reaction.- Raises:
HTTPException -- Removing the reaction failed.
Forbidden -- You do not have the proper permissions to remove the reaction.
NotFound -- The user you specified, or the reaction's message was not found.
- Return type:
- await clear()[source]#
This function is a coroutine.
Clears this reaction from the message.
You need the
manage_messagespermission to use this.New in version 1.3.
- Raises:
HTTPException -- Clearing the reaction failed.
Forbidden -- You do not have the proper permissions to clear the reaction.
NotFound -- The emoji you specified was not found.
InvalidArgument -- The emoji parameter is invalid.
- Return type:
Guild#
- afk_channel
- afk_timeout
- approximate_member_count
- approximate_presence_count
- banner
- bitrate_limit
- categories
- channels
- chunked
- created_at
- default_notifications
- default_role
- description
- discovery_splash
- emoji_limit
- emojis
- explicit_content_filter
- features
- filesize_limit
- forum_channels
- icon
- id
- invites_disabled
- jump_url
- large
- max_members
- max_presences
- max_video_channel_users
- me
- member_count
- members
- mfa_level
- name
- nsfw_level
- owner
- owner_id
- preferred_locale
- premium_progress_bar_enabled
- premium_subscriber_role
- premium_subscribers
- premium_subscription_count
- premium_tier
- public_updates_channel
- roles
- rules_channel
- scheduled_events
- self_role
- shard_id
- splash
- stage_channels
- stage_instances
- sticker_limit
- stickers
- system_channel
- system_channel_flags
- text_channels
- threads
- unavailable
- verification_level
- voice_channels
- voice_client
- asyncactive_threads
- defaudit_logs
- asyncban
- asyncbans
- defby_category
- asyncchange_voice_state
- asyncchunk
- asynccreate_auto_moderation_rule
- asynccreate_category
- asynccreate_category_channel
- asynccreate_custom_emoji
- asynccreate_forum_channel
- asynccreate_integration
- asynccreate_role
- asynccreate_scheduled_event
- asynccreate_stage_channel
- asynccreate_sticker
- asynccreate_template
- asynccreate_text_channel
- asynccreate_voice_channel
- asyncdelete
- asyncdelete_emoji
- asyncdelete_sticker
- asyncedit
- asyncedit_role_positions
- asyncedit_welcome_screen
- asyncedit_widget
- asyncestimate_pruned_members
- asyncfetch_auto_moderation_rule
- asyncfetch_auto_moderation_rules
- asyncfetch_ban
- asyncfetch_channel
- asyncfetch_channels
- asyncfetch_emoji
- asyncfetch_emojis
- asyncfetch_member
- deffetch_members
- asyncfetch_roles
- asyncfetch_scheduled_event
- asyncfetch_scheduled_events
- asyncfetch_sticker
- asyncfetch_stickers
- defget_channel
- defget_channel_or_thread
- defget_member
- defget_member_named
- defget_role
- defget_scheduled_event
- defget_stage_instance
- defget_thread
- asyncintegrations
- asyncinvites
- asynckick
- asyncleave
- asyncprune_members
- asyncquery_members
- asyncset_mfa_required
- asynctemplates
- asyncunban
- asyncvanity_invite
- asyncwebhooks
- asyncwelcome_screen
- asyncwidget
- class discord.Guild(*, data, state)[source]#
Represents a Discord guild.
This is referred to as a "server" in the official Discord UI.
- x == y
Checks if two guilds are equal.
- x != y
Checks if two guilds are not equal.
- hash(x)
Returns the guild's hash.
- str(x)
Returns the guild's name.
- stickers#
All stickers that the guild owns.
New in version 2.0.
- Type:
Tuple[
GuildSticker, ...]
- afk_channel#
The channel that denotes the AFK channel.
Noneif it doesn't exist.- Type:
Optional[
VoiceChannel]
- owner_id#
The guild owner's ID. Use
Guild.ownerinstead.- Type:
Indicates if the guild is unavailable. If this is
Truethen the reliability of other attributes outside ofGuild.idis slim and they might all beNone. It is best to not do anything with the guild if it is unavailable.Check the
on_guild_unavailable()andon_guild_available()events.- Type:
- max_members#
The maximum amount of members for the guild.
Note
This attribute is only available via
Client.fetch_guild().- Type:
Optional[
int]
- max_video_channel_users#
The maximum amount of users in a video channel.
New in version 1.4.
- Type:
Optional[
int]
- mfa_level#
Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do.
- Type:
- verification_level#
The guild's verification level.
- Type:
- explicit_content_filter#
The guild's explicit content filter.
- Type:
- default_notifications#
The guild's notification settings.
- Type:
- features#
A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord.
They are currently as follows:
ANIMATED_BANNER: Guild can upload an animated banner.ANIMATED_ICON: Guild can upload an animated icon.APPLICATION_COMMAND_PERMISSIONS_V2: Guild is using the old command permissions behavior.AUTO_MODERATION: Guild has enabled the auto moderation system.BANNER: Guild can upload and use a banner. (i.e.banner)CHANNEL_BANNER: Guild can upload and use a channel banners.COMMERCE: Guild can sell things using store channels, which have now been removed.COMMUNITY: Guild is a community server.DEVELOPER_SUPPORT_SERVER: Guild has been set as a support server on the App Directory.DISCOVERABLE: Guild shows up in Server Discovery.FEATURABLE: Guild can be featured in the Server Directory.HAS_DIRECTORY_ENTRY: Unknown.HUB: Hubs contain a directory channel that let you find school-related, student-run servers for your school or university.INTERNAL_EMPLOYEE_ONLY: Indicates that only users with the staff badge can join the guild.INVITES_DISABLED: Guild Invites are disabled.INVITE_SPLASH: Guild's invite page can have a special splash.LINKED_TO_HUB: 'Guild is linked to a hub.MEMBER_PROFILES: Unknown.MEMBER_VERIFICATION_GATE_ENABLED: Guild has Membership Screening enabled.MONETIZATION_ENABLED: Guild has enabled monetization.MORE_EMOJI: Guild has increased custom emoji slots.MORE_STICKERS: Guild has increased custom sticker slots.NEWS: Guild can create news channels.NEW_THREAD_PERMISSIONS: Guild has new thread permissions.PARTNERED: Guild is a partnered server.PREMIUM_TIER_3_OVERRIDE: Forces the server to server boosting level 3 (specifically created by Discord Staff Member "Jethro" for their personal server).PREVIEW_ENABLED: Guild can be viewed before being accepted via Membership Screening.ROLE_ICONS: Guild can set an image or emoji as a role icon.ROLE_SUBSCRIPTIONS_AVAILABLE_FOR_PURCHASE: Role subscriptions are available for purchasing.ROLE_SUBSCRIPTIONS_ENABLED: Guild is able to view and manage role subscriptions.SEVEN_DAY_THREAD_ARCHIVE: Users can set the thread archive time to 7 days.TEXT_IN_VOICE_ENABLED: Guild has a chat button inside voice channels that opens a dedicated text channel in a sidebar similar to thread view.THREADS_ENABLED_TESTING: Used by bot developers to test their bots with threads in guilds with 5 or fewer members and a bot. Also gives the premium thread features.THREE_DAY_THREAD_ARCHIVE: Users can set the thread archive time to 3 days.TICKETED_EVENTS_ENABLED: Guild has enabled ticketed events.VANITY_URL: Guild can have a vanity invite URL (e.g. discord.gg/discord-api).VERIFIED: Guild is a verified server.VIP_REGIONS: Guild has VIP voice regions.WELCOME_SCREEN_ENABLED: Guild has enabled the welcome screen.
- Type:
List[
str]
The premium tier for this guild. Corresponds to "Nitro Server" in the official UI. The number goes from 0 to 3 inclusive.
- Type:
The number of "boosts" this guild currently has.
- Type:
Indicates if the guild has premium progress bar enabled.
New in version 2.0.
- Type:
- preferred_locale#
The preferred locale for the guild. Used when filtering Server Discovery results to a specific language.
- Type:
Optional[
str]
- approximate_member_count#
The approximate number of members in the guild. This is
Noneunless the guild is obtained usingClient.fetch_guild()withwith_counts=True.New in version 2.0.
- Type:
Optional[
int]
- approximate_presence_count#
The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is
Noneunless the guild is obtained usingClient.fetch_guild()withwith_counts=True.New in version 2.0.
- Type:
Optional[
int]
- Parameters:
data (
Guild) --state (
ConnectionState) --
- async for ... in fetch_members(*, limit=1000, after=None)[source]#
Retrieves an
AsyncIteratorthat enables receiving the guild's members. In order to use this,Intents.members()must be enabled.Note
This method is an API call. For general usage, consider
membersinstead.New in version 1.3.
All parameters are optional.
- Parameters:
limit (Optional[
int]) -- The number of members to retrieve. Defaults to 1000. PassNoneto fetch all members. Note that this is potentially slow.after (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.
- Yields:
Member-- The member with the member data parsed.- Raises:
ClientException -- The members intent is not enabled.
HTTPException -- Getting the members failed.
Examples
Usage
async for member in guild.fetch_members(limit=150): print(member.name)
Flattening into a list
members = await guild.fetch_members(limit=150).flatten() # members is now a list of Member...
- Return type:
MemberIterator
- async for ... in audit_logs(*, limit=100, before=None, after=None, oldest_first=None, user=None, action=None)[source]#
Returns an
AsyncIteratorthat enables receiving the guild's audit logs.You must have the
view_audit_logpermission to use this.- Parameters:
limit (Optional[
int]) -- The number of entries to retrieve. IfNoneretrieve all entries.before (Union[
abc.Snowflake,datetime.datetime]) -- Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Union[
abc.Snowflake,datetime.datetime]) -- Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.oldest_first (
bool) -- If set toTrue, return entries in oldest->newest order. Defaults toTrueifafteris specified, otherwiseFalse.user (
abc.Snowflake) -- The moderator to filter entries from.action (
AuditLogAction) -- The action to filter with.
- Yields:
AuditLogEntry-- The audit log entry.- Raises:
Forbidden -- You are not allowed to fetch audit logs
HTTPException -- An error occurred while fetching the audit logs.
Examples
Getting the first 100 entries:
async for entry in guild.audit_logs(limit=100): print(f'{entry.user} did {entry.action} to {entry.target}')
Getting entries for a specific action:
async for entry in guild.audit_logs(action=discord.AuditLogAction.ban): print(f'{entry.user} banned {entry.target}')
Getting entries made by a specific user:
entries = await guild.audit_logs(limit=None, user=guild.me).flatten() await channel.send(f'I made {len(entries)} moderation actions.')
- Return type:
AuditLogIterator
- property channels#
A list of channels that belong to this guild.
- property threads#
A list of threads that you have permission to view.
New in version 2.0.
- property jump_url#
Returns a URL that allows the client to jump to the guild.
New in version 2.0.
- Return type:
- property large#
Indicates if the guild is a 'large' guild.
A large guild is defined as having more than
large_thresholdcount members, which for this library is set to the maximum of 250.- Return type:
- property voice_channels#
A list of voice channels that belong to this guild.
This is sorted by the position and are in UI order from top to bottom.
- property stage_channels#
A list of stage channels that belong to this guild.
New in version 1.7.
This is sorted by the position and are in UI order from top to bottom.
- property forum_channels#
A list of forum channels that belong to this guild.
New in version 2.0.
This is sorted by the position and are in UI order from top to bottom.
- property me#
Similar to
Client.userexcept an instance ofMember. This is essentially used to get the member version of yourself.- Return type:
- property voice_client#
Returns the
VoiceProtocolassociated with this guild, if any.- Return type:
VoiceProtocol | None
- property text_channels#
A list of text channels that belong to this guild.
This is sorted by the position and are in UI order from top to bottom.
- property categories#
A list of categories that belong to this guild.
This is sorted by the position and are in UI order from top to bottom.
- by_category()[source]#
Returns every
CategoryChanneland their associated channels.These channels and categories are sorted in the official Discord UI order.
If the channels do not have a category, then the first element of the tuple is
None.- Returns:
The categories and their associated channels.
- Return type:
List[Tuple[Optional[
CategoryChannel], List[abc.GuildChannel]]]
- get_channel_or_thread(channel_id, /)[source]#
Returns a channel or thread with the given ID.
New in version 2.0.
- Parameters:
channel_id (
int) -- The ID to search for.- Returns:
The returned channel or thread or
Noneif not found.- Return type:
Optional[Union[
Thread,abc.GuildChannel]]
- get_channel(channel_id, /)[source]#
Returns a channel with the given ID.
Note
This does not search for threads.
- Parameters:
channel_id (
int) -- The ID to search for.- Returns:
The returned channel or
Noneif not found.- Return type:
Optional[
abc.GuildChannel]
- property system_channel#
Returns the guild's channel used for system messages.
If no channel is set, then this returns
None.- Return type:
TextChannel | None
- property system_channel_flags#
Returns the guild's system channel settings.
- Return type:
- property rules_channel#
Return's the guild's channel used for the rules. The guild must be a Community guild.
If no channel is set, then this returns
None.New in version 1.3.
- Return type:
TextChannel | None
- property public_updates_channel#
Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild.
If no channel is set, then this returns
None.New in version 1.4.
- Return type:
TextChannel | None
- property sticker_limit#
The maximum number of sticker slots this guild has.
New in version 2.0.
- Return type:
- property bitrate_limit#
The maximum bitrate for voice channels this guild can have.
- Return type:
- property filesize_limit#
The maximum number of bytes files can have when uploaded to this guild.
- Return type:
- property members#
A list of members that belong to this guild.
A list of members who have "boosted" this guild.
- property roles#
Returns a
listof the guild's roles in hierarchy order.The first element of this list will be the lowest role in the hierarchy.
Gets the premium subscriber role, AKA "boost" role, in this guild.
New in version 1.6.
- Return type:
Role | None
- property self_role#
Gets the role associated with this client's user, if any.
New in version 1.6.
- Return type:
Role | None
- property stage_instances#
Returns a
listof the guild's stage instances that are currently running.New in version 2.0.
- get_stage_instance(stage_instance_id, /)[source]#
Returns a stage instance with the given ID.
New in version 2.0.
- Parameters:
stage_instance_id (
int) -- The ID to search for.- Returns:
The stage instance or
Noneif not found.- Return type:
Optional[
StageInstance]
- property discovery_splash#
Returns the guild's discovery splash asset, if available.
- Return type:
Asset | None
- property member_count#
Returns the true member count regardless of it being loaded fully or not.
Warning
Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires
Intents.membersto be specified.- Return type:
- property chunked#
Returns a boolean indicating if the guild is "chunked".
A chunked guild means that
member_countis equal to the number of members stored in the internalmemberscache.If this value returns
False, then you should request for offline members.- Return type:
- property invites_disabled#
Returns a boolean indicating if the guild invites are disabled.
- Return type:
- get_member_named(name, /)[source]#
Returns the first member found that matches the name provided.
The name can have an optional discriminator argument, e.g. "Jake#0001" or "Jake" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work.
If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique.
If no member is found,
Noneis returned.
- await create_text_channel(name, *, reason=None, category=None, position=..., topic=..., slowmode_delay=..., nsfw=..., overwrites=...)[source]#
This function is a coroutine.
Creates a
TextChannelfor the guild.Note that you need the
manage_channelspermission to create the channel.The
overwritesparameter can be used to create a 'secret' channel upon creation. This parameter expects adictof overwrites with the target (either aMemberor aRole) as the key and aPermissionOverwriteas the value.Note
Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to
edit()will be required to update the position of the channel in the channel list.- Parameters:
name (
str) -- The channel's name.overwrites (Dict[Union[
Role,Member,Snowflake],PermissionOverwrite]) -- The overwrites to apply to the channel. Useful for creating secret channels.category (Optional[
CategoryChannel]) -- The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided.position (
int) -- The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0.topic (
str) -- The new channel's topic.slowmode_delay (
int) -- Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is 21600.nsfw (
bool) -- To mark the channel as NSFW or not.reason (Optional[
str]) -- The reason for creating this channel. Shows up on the audit log.
- Returns:
The channel that was just created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
InvalidArgument -- The permission overwrite information is not in proper form.
Examples
Creating a basic channel:
channel = await guild.create_text_channel('cool-channel')
Creating a "secret" channel:
overwrites = { guild.default_role: discord.PermissionOverwrite(read_messages=False), guild.me: discord.PermissionOverwrite(read_messages=True) } channel = await guild.create_text_channel('secret', overwrites=overwrites)
- await create_voice_channel(name, *, reason=None, category=None, position=..., bitrate=..., user_limit=..., rtc_region=..., video_quality_mode=..., overwrites=...)[source]#
This function is a coroutine.
This is similar to
create_text_channel()except makes aVoiceChannelinstead.- Parameters:
name (
str) -- The channel's name.overwrites (Dict[Union[
Role,Member,Snowflake],PermissionOverwrite]) -- The overwrites to apply to the channel. Useful for creating secret channels.category (Optional[
CategoryChannel]) -- The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided.position (
int) -- The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0.bitrate (
int) -- The channel's preferred audio bitrate in bits per second.user_limit (
int) -- The channel's limit for number of members that can be in a voice channel.rtc_region (Optional[
VoiceRegion]) --The region for the voice channel's voice communication. A value of
Noneindicates automatic voice region detection.New in version 1.7.
video_quality_mode (
VideoQualityMode) --The camera video quality for the voice channel's participants.
New in version 2.0.
reason (Optional[
str]) -- The reason for creating this channel. Shows up on the audit log.
- Returns:
The channel that was just created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
InvalidArgument -- The permission overwrite information is not in proper form.
- await create_stage_channel(name, *, topic, position=..., overwrites=..., category=None, reason=None)[source]#
This function is a coroutine.
This is similar to
create_text_channel()except makes aStageChannelinstead.New in version 1.7.
- Parameters:
name (
str) -- The channel's name.topic (
str) -- The new channel's topic.overwrites (Dict[Union[
Role,Member,Snowflake],PermissionOverwrite]) -- The overwrites to apply to the channel. Useful for creating secret channels.category (Optional[
CategoryChannel]) -- The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided.position (
int) -- The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0.reason (Optional[
str]) -- The reason for creating this channel. Shows up on the audit log.
- Returns:
The channel that was just created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
InvalidArgument -- The permission overwrite information is not in proper form.
- await create_forum_channel(name, *, reason=None, category=None, position=..., topic=..., slowmode_delay=..., nsfw=..., overwrites=...)[source]#
This function is a coroutine.
Creates a
ForumChannelfor the guild.Note that you need the
manage_channelspermission to create the channel.The
overwritesparameter can be used to create a 'secret' channel upon creation. This parameter expects adictof overwrites with the target (either aMemberor aRole) as the key and aPermissionOverwriteas the value.Note
Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to
edit()will be required to update the position of the channel in the channel list.- Parameters:
name (
str) -- The channel's name.overwrites (Dict[Union[
Role,Member,Snowflake],PermissionOverwrite]) -- The overwrites to apply to the channel. Useful for creating secret channels.category (Optional[
CategoryChannel]) -- The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided.position (
int) -- The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0.topic (
str) -- The new channel's topic.slowmode_delay (
int) -- Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is 21600.nsfw (
bool) -- To mark the channel as NSFW or not.reason (Optional[
str]) -- The reason for creating this channel. Shows up on the audit log.
- Returns:
The channel that was just created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
InvalidArgument -- The permission overwrite information is not in proper form.
Examples
Creating a basic channel:
channel = await guild.create_forum_channel('cool-channel')
Creating a "secret" channel:
overwrites = { guild.default_role: discord.PermissionOverwrite(read_messages=False), guild.me: discord.PermissionOverwrite(read_messages=True) } channel = await guild.create_forum_channel('secret', overwrites=overwrites)
- await create_category(name, *, overwrites=..., reason=None, position=...)[source]#
This function is a coroutine.
Same as
create_text_channel()except makes aCategoryChannelinstead.Note
The
categoryparameter is not supported in this function since categories cannot have categories.- Returns:
The channel that was just created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
InvalidArgument -- The permission overwrite information is not in proper form.
- Parameters:
- await create_category_channel(name, *, overwrites=..., reason=None, position=...)#
This function is a coroutine.
Same as
create_text_channel()except makes aCategoryChannelinstead.Note
The
categoryparameter is not supported in this function since categories cannot have categories.- Returns:
The channel that was just created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
InvalidArgument -- The permission overwrite information is not in proper form.
- Parameters:
- await leave()[source]#
This function is a coroutine.
Leaves the guild.
Note
You cannot leave the guild that you own, you must delete it instead via
delete().- Raises:
HTTPException -- Leaving the guild failed.
- Return type:
- await delete()[source]#
This function is a coroutine.
Deletes the guild. You must be the guild owner to delete the guild.
- Raises:
HTTPException -- Deleting the guild failed.
Forbidden -- You do not have permissions to delete the guild.
- Return type:
- await set_mfa_required(required, *, reason=None)[source]#
This function is a coroutine.
Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this.
- Parameters:
- Raises:
HTTPException -- The operation failed.
Forbidden -- You are not the owner of the guild.
- Return type:
- await edit(*, reason=..., name=..., description=..., icon=..., banner=..., splash=..., discovery_splash=..., community=..., afk_channel=..., owner=..., afk_timeout=..., default_notifications=..., verification_level=..., explicit_content_filter=..., vanity_code=..., system_channel=..., system_channel_flags=..., preferred_locale=..., rules_channel=..., public_updates_channel=..., premium_progress_bar_enabled=..., disable_invites=...)[source]#
This function is a coroutine.
Edits the guild.
You must have the
manage_guildpermission to edit the guild.Changed in version 1.4: The rules_channel and public_updates_channel keyword-only parameters were added.
Changed in version 2.0: The discovery_splash and community keyword-only parameters were added.
Changed in version 2.0: The newly updated guild is returned.
- Parameters:
name (
str) -- The new name of the guild.description (Optional[
str]) -- The new description of the guild. Could beNonefor no description. This is only available to guilds that containPUBLICinGuild.features.icon (
bytes) -- A bytes-like object representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that containANIMATED_ICONinGuild.features. Could beNoneto denote removal of the icon.banner (
bytes) -- A bytes-like object representing the banner. Could beNoneto denote removal of the banner. This is only available to guilds that containBANNERinGuild.features.splash (
bytes) -- A bytes-like object representing the invite splash. Only PNG/JPEG supported. Could beNoneto denote removing the splash. This is only available to guilds that containINVITE_SPLASHinGuild.features.discovery_splash (
bytes) -- A bytes-like object representing the discovery splash. Only PNG/JPEG supported. Could beNoneto denote removing the splash. This is only available to guilds that containDISCOVERABLEinGuild.features.community (
bool) -- Whether the guild should be a Community guild. If set toTrue, bothrules_channelandpublic_updates_channelparameters are required.afk_channel (Optional[
VoiceChannel]) -- The new channel that is the AFK channel. Could beNonefor no AFK channel.afk_timeout (
int) -- The number of seconds until someone is moved to the AFK channel.owner (
Member) -- The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this.verification_level (
VerificationLevel) -- The new verification level for the guild.default_notifications (
NotificationLevel) -- The new default notification level for the guild.explicit_content_filter (
ContentFilter) -- The new explicit content filter for the guild.vanity_code (
str) -- The new vanity code for the guild.system_channel (Optional[
TextChannel]) -- The new channel that is used for the system channel. Could beNonefor no system channel.system_channel_flags (
SystemChannelFlags) -- The new system channel settings to use with the new system channel.preferred_locale (
str) -- The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g.en-USorjaorzh-CN.rules_channel (Optional[
TextChannel]) -- The new channel that is used for rules. This is only available to guilds that containPUBLICinGuild.features. Could beNonefor no rules channel.public_updates_channel (Optional[
TextChannel]) -- The new channel that is used for public updates from Discord. This is only available to guilds that containPUBLICinGuild.features. Could beNonefor no public updates channel.premium_progress_bar_enabled (
bool) -- Whether the guild should have premium progress bar enabled.disable_invites (
bool) -- Whether the guild should have server invites enabled or disabled.reason (Optional[
str]) -- The reason for editing this guild. Shows up on the audit log.
- Raises:
Forbidden -- You do not have permissions to edit the guild.
HTTPException -- Editing the guild failed.
InvalidArgument -- The image format passed in to
iconis invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer.
- Returns:
The newly updated guild. Note that this has the same limitations as mentioned in
Client.fetch_guild()and may not have full data.- Return type:
- await fetch_channels()[source]#
This function is a coroutine.
Retrieves all
abc.GuildChannelthat the guild has.Note
This method is an API call. For general usage, consider
channelsinstead.New in version 1.2.
- Returns:
All channels in the guild.
- Return type:
Sequence[
abc.GuildChannel]- Raises:
InvalidData -- An unknown channel type was received from Discord.
HTTPException -- Retrieving the channels failed.
- await active_threads()[source]#
This function is a coroutine.
Returns a list of active
Threadthat the client can access.This includes both private and public threads.
New in version 2.0.
- Returns:
The active threads
- Return type:
List[
Thread]- Raises:
HTTPException -- The request to get the active threads failed.
- await fetch_member(member_id, /)[source]#
This function is a coroutine.
Retrieves a
Memberfrom a guild ID, and a member ID.Note
This method is an API call. If you have
Intents.membersand member cache enabled, considerget_member()instead.- Parameters:
member_id (
int) -- The member's ID to fetch from.- Returns:
The member from the member ID.
- Return type:
- Raises:
Forbidden -- You do not have access to the guild.
HTTPException -- Fetching the member failed.
- await fetch_ban(user)[source]#
This function is a coroutine.
Retrieves the
BanEntryfor a user.You must have the
ban_memberspermission to get this information.- Parameters:
user (
abc.Snowflake) -- The user to get ban information from.- Returns:
The
BanEntryobject for the specified user.- Return type:
- Raises:
Forbidden -- You do not have proper permissions to get the information.
NotFound -- This user is not banned.
HTTPException -- An error occurred while fetching the information.
- await fetch_channel(channel_id, /)[source]#
This function is a coroutine.
Retrieves a
abc.GuildChannelorThreadwith the specified ID.Note
This method is an API call. For general usage, consider
get_channel_or_thread()instead.New in version 2.0.
- Returns:
The channel from the ID.
- Return type:
Union[
abc.GuildChannel,Thread]- Raises:
InvalidData -- An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to.
HTTPException -- Retrieving the channel failed.
NotFound -- Invalid Channel ID.
Forbidden -- You do not have permission to fetch this channel.
- Parameters:
channel_id (int) --
- bans(limit=None, before=None, after=None)[source]#
This function is a coroutine.
Retrieves an
AsyncIteratorthat enables receiving the guild's bans. In order to use this, you must have theban_memberspermission.Changed in version 2.0: The
limit,before. andafterparameters were added. Now returns aBanIteratorinstead of a list ofBanEntryobjects.All parameters are optional.
- Parameters:
limit (Optional[
int]) -- The number of bans to retrieve. Defaults to 1000.before (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Retrieve bans before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Retrieve bans after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.
- Yields:
BanEntry-- The ban entry for the ban.- Raises:
Forbidden -- You do not have proper permissions to get the information.
HTTPException -- An error occurred while fetching the information.
Examples
Usage
async for ban in guild.bans(limit=150): print(ban.user.name)
Flattening into a list
bans = await guild.bans(limit=150).flatten() # bans is now a list of BanEntry...
- Return type:
BanIterator
- await prune_members(*, days, compute_prune_count=True, roles=..., reason=None)[source]#
This function is a coroutine.
Prunes the guild from its inactive members.
The inactive members are denoted if they have not logged on in
daysnumber of days and have no roles.You must have the
kick_memberspermission to use this.To check how many members you would prune without actually pruning, see the
estimate_pruned_members()function.To prune members that have specific roles see the
rolesparameter.Changed in version 1.4: The
roleskeyword-only parameter was added.- Parameters:
days (
int) -- The number of days before counting as inactive.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.compute_prune_count (
bool) -- Whether to compute the prune count. This defaults toTruewhich makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this toFalse. If this is set toFalse, then this function will always returnNone.roles (List[
abc.Snowflake]) -- A list ofabc.Snowflakethat represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded.
- Raises:
Forbidden -- You do not have permissions to prune members.
HTTPException -- An error occurred while pruning members.
InvalidArgument -- An integer was not passed for
days.
- Returns:
The number of members pruned. If
compute_prune_countisFalsethen this returnsNone.- Return type:
Optional[
int]
- await templates()[source]#
This function is a coroutine.
Gets the list of templates from this guild.
Requires
manage_guildpermissions.New in version 1.7.
- await webhooks()[source]#
This function is a coroutine.
Gets the list of webhooks from this guild.
Requires
manage_webhookspermissions.
- await estimate_pruned_members(*, days, roles=...)[source]#
This function is a coroutine.
Similar to
prune_members()except instead of actually pruning members, it returns how many members it would prune from the guild had it been called.- Parameters:
days (
int) -- The number of days before counting as inactive.roles (List[
abc.Snowflake]) --A list of
abc.Snowflakethat represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded.New in version 1.7.
- Returns:
The number of members estimated to be pruned.
- Return type:
- Raises:
Forbidden -- You do not have permissions to prune members.
HTTPException -- An error occurred while fetching the prune members estimate.
InvalidArgument -- An integer was not passed for
days.
- await invites()[source]#
This function is a coroutine.
Returns a list of all active instant invites from the guild.
You must have the
manage_guildpermission to get this information.- Returns:
The list of invites that are currently active.
- Return type:
List[
Invite]- Raises:
Forbidden -- You do not have proper permissions to get the information.
HTTPException -- An error occurred while fetching the information.
- await create_template(*, name, description=...)[source]#
This function is a coroutine.
Creates a template for the guild.
You must have the
manage_guildpermission to do this.New in version 1.7.
- await create_integration(*, type, id)[source]#
This function is a coroutine.
Attaches an integration to the guild.
You must have the
manage_guildpermission to do this.New in version 1.4.
- Parameters:
- Raises:
Forbidden -- You do not have permission to create the integration.
HTTPException -- The account could not be found.
- Return type:
- await integrations()[source]#
This function is a coroutine.
Returns a list of all integrations attached to the guild.
You must have the
manage_guildpermission to do this.New in version 1.4.
- Returns:
The list of integrations that are attached to the guild.
- Return type:
List[
Integration]- Raises:
Forbidden -- You do not have permission to create the integration.
HTTPException -- Fetching the integrations failed.
- await fetch_stickers()[source]#
This function is a coroutine.
Retrieves a list of all
Stickers for the guild.New in version 2.0.
Note
This method is an API call. For general usage, consider
stickersinstead.- Raises:
HTTPException -- An error occurred fetching the stickers.
- Returns:
The retrieved stickers.
- Return type:
List[
GuildSticker]
- await fetch_sticker(sticker_id, /)[source]#
This function is a coroutine.
Retrieves a custom
Stickerfrom the guild.New in version 2.0.
Note
This method is an API call. For general usage, consider iterating over
stickersinstead.- Parameters:
sticker_id (
int) -- The sticker's ID.- Returns:
The retrieved sticker.
- Return type:
- Raises:
NotFound -- The sticker requested could not be found.
HTTPException -- An error occurred fetching the sticker.
- await create_sticker(*, name, description=None, emoji, file, reason=None)[source]#
This function is a coroutine.
Creates a
Stickerfor the guild.You must have
manage_emojis_and_stickerspermission to do this.New in version 2.0.
- Parameters:
name (
str) -- The sticker name. Must be 2 to 30 characters.description (Optional[
str]) -- The sticker's description. If used, must be 2 to 100 characters.emoji (
str) -- The name of a unicode emoji that represents the sticker's expression.file (
File) -- The file of the sticker to upload.reason (
str) -- The reason for creating this sticker. Shows up on the audit log.
- Returns:
The created sticker.
- Return type:
- Raises:
Forbidden -- You are not allowed to create stickers.
HTTPException -- An error occurred creating a sticker.
TypeError -- The parameters for the sticker are not correctly formatted.
- await delete_sticker(sticker, *, reason=None)[source]#
This function is a coroutine.
Deletes the custom
Stickerfrom the guild.You must have
manage_emojis_and_stickerspermission to do this.New in version 2.0.
- Parameters:
sticker (
abc.Snowflake) -- The sticker you are deleting.reason (Optional[
str]) -- The reason for deleting this sticker. Shows up on the audit log.
- Raises:
Forbidden -- You are not allowed to delete stickers.
HTTPException -- An error occurred deleting the sticker.
- Return type:
None
- await fetch_emojis()[source]#
This function is a coroutine.
Retrieves all custom
Emojis from the guild.Note
This method is an API call. For general usage, consider
emojisinstead.- Raises:
HTTPException -- An error occurred fetching the emojis.
- Returns:
The retrieved emojis.
- Return type:
List[
Emoji]
- await fetch_emoji(emoji_id, /)[source]#
This function is a coroutine.
Retrieves a custom
Emojifrom the guild.Note
This method is an API call. For general usage, consider iterating over
emojisinstead.- Parameters:
emoji_id (
int) -- The emoji's ID.- Returns:
The retrieved emoji.
- Return type:
- Raises:
NotFound -- The emoji requested could not be found.
HTTPException -- An error occurred fetching the emoji.
- await create_custom_emoji(*, name, image, roles=..., reason=None)[source]#
This function is a coroutine.
Creates a custom
Emojifor the guild.There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the
MORE_EMOJIfeature which extends the limit to 200.You must have the
manage_emojispermission to do this.- Parameters:
name (
str) -- The emoji name. Must be at least 2 characters.image (
bytes) -- The bytes-like object representing the image data to use. Only JPG, PNG and GIF images are supported.roles (List[
Role]) -- AlistofRoles that can use this emoji. Leave empty to make it available to everyone.reason (Optional[
str]) -- The reason for creating this emoji. Shows up on the audit log.
- Raises:
Forbidden -- You are not allowed to create emojis.
HTTPException -- An error occurred creating an emoji.
- Returns:
The created emoji.
- Return type:
- await delete_emoji(emoji, *, reason=None)[source]#
This function is a coroutine.
Deletes the custom
Emojifrom the guild.You must have
manage_emojispermission to do this.- Parameters:
emoji (
abc.Snowflake) -- The emoji you are deleting.reason (Optional[
str]) -- The reason for deleting this emoji. Shows up on the audit log.
- Raises:
Forbidden -- You are not allowed to delete emojis.
HTTPException -- An error occurred deleting the emoji.
- Return type:
None
- await fetch_roles()[source]#
This function is a coroutine.
Retrieves all
Rolethat the guild has.Note
This method is an API call. For general usage, consider
rolesinstead.New in version 1.3.
- Returns:
All roles in the guild.
- Return type:
List[
Role]- Raises:
HTTPException -- Retrieving the roles failed.
- await create_role(*, name=..., permissions=..., color=..., colour=..., hoist=..., mentionable=..., reason=None)[source]#
This function is a coroutine.
Creates a
Rolefor the guild.All fields are optional.
You must have the
manage_rolespermission to do this.Changed in version 1.6: Can now pass
inttocolourkeyword-only parameter.- Parameters:
name (
str) -- The role name. Defaults to 'new role'.permissions (
Permissions) -- The permissions to have. Defaults to no permissions.colour (Union[
Colour,int]) -- The colour for the role. Defaults toColour.default(). This is aliased tocoloras well.hoist (
bool) -- Indicates if the role should be shown separately in the member list. Defaults toFalse.mentionable (
bool) -- Indicates if the role should be mentionable by others. Defaults toFalse.reason (Optional[
str]) -- The reason for creating this role. Shows up on the audit log.
- Returns:
The newly created role.
- Return type:
- Raises:
Forbidden -- You do not have permissions to create the role.
HTTPException -- Creating the role failed.
InvalidArgument -- An invalid keyword argument was given.
- await edit_role_positions(positions, *, reason=None)[source]#
This function is a coroutine.
Bulk edits a list of
Rolein the guild.You must have the
manage_rolespermission to do this.New in version 1.4.
Example:
positions = { bots_role: 1, # penultimate role tester_role: 2, admin_role: 6 } await guild.edit_role_positions(positions=positions)
- Parameters:
- Returns:
A list of all the roles in the guild.
- Return type:
List[
Role]- Raises:
Forbidden -- You do not have permissions to move the roles.
HTTPException -- Moving the roles failed.
InvalidArgument -- An invalid keyword argument was given.
- await kick(user, *, reason=None)[source]#
This function is a coroutine.
Kicks a user from the guild.
The user must meet the
abc.Snowflakeabc.You must have the
kick_memberspermission to do this.- Parameters:
user (
abc.Snowflake) -- The user to kick from their guild.reason (Optional[
str]) -- The reason the user got kicked.
- Raises:
Forbidden -- You do not have the proper permissions to kick.
HTTPException -- Kicking failed.
- Return type:
None
- await ban(user, *, delete_message_seconds=None, delete_message_days=None, reason=None)[source]#
This function is a coroutine.
Bans a user from the guild.
The user must meet the
abc.Snowflakeabc.You must have the
ban_memberspermission to do this.- Parameters:
user (
abc.Snowflake) -- The user to ban from their guild.delete_message_seconds (Optional[
int]) -- The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0.delete_message_days (Optional[
int]) -- *Deprecated parameter*, same asdelete_message_secondsbut is used for days instead.reason (Optional[
str]) -- The reason the user got banned.
- Raises:
Forbidden -- You do not have the proper permissions to ban.
HTTPException -- Banning failed.
- Return type:
None
- await unban(user, *, reason=None)[source]#
This function is a coroutine.
Unbans a user from the guild.
The user must meet the
abc.Snowflakeabc.You must have the
ban_memberspermission to do this.- Parameters:
user (
abc.Snowflake) -- The user to unban.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.
- Raises:
Forbidden -- You do not have the proper permissions to unban.
HTTPException -- Unbanning failed.
- Return type:
None
- await vanity_invite()[source]#
This function is a coroutine.
Returns the guild's special vanity invite.
The guild must have
VANITY_URLinfeatures.You must have the
manage_guildpermission to use this as well.- Returns:
The special vanity invite. If
Nonethen the guild does not have a vanity invite set.- Return type:
Optional[
Invite]- Raises:
Forbidden -- You do not have the proper permissions to get this.
HTTPException -- Retrieving the vanity invite failed.
- await widget()[source]#
This function is a coroutine.
Returns the widget of the guild.
Note
The guild must have the widget enabled to get this information.
- Returns:
The guild's widget.
- Return type:
- Raises:
Forbidden -- The widget for this guild is disabled.
HTTPException -- Retrieving the widget failed.
- await edit_widget(*, enabled=..., channel=...)[source]#
This function is a coroutine.
Edits the widget of the guild.
You must have the
manage_guildpermission to use thisNew in version 2.0.
- Parameters:
- Raises:
Forbidden -- You do not have permission to edit the widget.
HTTPException -- Editing the widget failed.
- Return type:
None
- await chunk(*, cache=True)[source]#
This function is a coroutine.
Requests all members that belong to this guild. In order to use this,
Intents.members()must be enabled.This is a websocket operation and can be slow.
New in version 1.5.
- Parameters:
cache (
bool) -- Whether to cache the members as well.- Raises:
ClientException -- The members intent is not enabled.
- Return type:
- await query_members(query=None, *, limit=5, user_ids=None, presences=False, cache=True)[source]#
This function is a coroutine.
Request members that belong to this guild whose username starts with the query given.
This is a websocket operation and can be slow.
New in version 1.3.
- Parameters:
query (Optional[
str]) -- The string that the username's start with.limit (
int) -- The maximum number of members to send back. This must be a number between 5 and 100.presences (
bool) --Whether to request for presences to be provided. This defaults to
False.New in version 1.6.
cache (
bool) -- Whether to cache the members internally. This makes operations such asget_member()work for those that matched.user_ids (Optional[List[
int]]) --List of user IDs to search for. If the user ID is not in the guild then it won't be returned.
New in version 1.4.
- Returns:
The list of members that have matched the query.
- Return type:
List[
Member]- Raises:
asyncio.TimeoutError -- The query timed out waiting for the members.
ValueError -- Invalid parameters were passed to the function
ClientException -- The presences intent is not enabled.
- await change_voice_state(*, channel, self_mute=False, self_deaf=False)[source]#
This function is a coroutine.
Changes client's voice state in the guild.
New in version 1.4.
- Parameters:
channel (Optional[
VoiceChannel]) -- Channel the client wants to join. UseNoneto disconnect.self_mute (
bool) -- Indicates if the client should be self-muted.self_deaf (
bool) -- Indicates if the client should be self-deafened.
- await welcome_screen()[source]#
This function is a coroutine.
Returns the
WelcomeScreenof the guild.The guild must have
COMMUNITYinfeatures.You must have the
manage_guildpermission in order to get this.New in version 2.0.
- Returns:
The welcome screen of guild.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to get this.
HTTPException -- Retrieving the welcome screen failed somehow.
NotFound -- The guild doesn't have a welcome screen or community feature is disabled.
- await edit_welcome_screen(**options)[source]#
This function is a coroutine.
A shorthand for
WelcomeScreen.editwithout fetching the welcome screen.You must have the
manage_guildpermission in the guild to do this.The guild must have
COMMUNITYinGuild.features- Parameters:
description (Optional[
str]) -- The new description of welcome screen.welcome_channels (Optional[List[
WelcomeScreenChannel]]) -- The welcome channels. The order of the channels would be same as the passed list order.enabled (Optional[
bool]) -- Whether the welcome screen should be displayed.reason (Optional[
str]) -- The reason that shows up on audit log.
- Returns:
The edited welcome screen.
- Return type:
- Raises:
HTTPException -- Editing the welcome screen failed somehow.
Forbidden -- You don't have permissions to edit the welcome screen.
NotFound -- This welcome screen does not exist.
- await fetch_scheduled_events(*, with_user_count=True)[source]#
This function is a coroutine.
Returns a list of
ScheduledEventin the guild.Note
This method is an API call. For general usage, consider
scheduled_eventsinstead.- Parameters:
with_user_count (Optional[
bool]) -- If the scheduled event should be fetched with the number of users that are interested in the events. Defaults toTrue.- Returns:
The fetched scheduled events.
- Return type:
List[
ScheduledEvent]- Raises:
ClientException -- The scheduled events intent is not enabled.
HTTPException -- Getting the scheduled events failed.
- await fetch_scheduled_event(event_id, /, *, with_user_count=True)[source]#
This function is a coroutine.
Retrieves a
ScheduledEventfrom event ID.Note
This method is an API call. If you have
Intents.scheduled_events, considerget_scheduled_event()instead.- Parameters:
- Returns:
The scheduled event from the event ID.
- Return type:
Optional[
ScheduledEvent]- Raises:
HTTPException -- Fetching the event failed.
NotFound -- Event not found.
- get_scheduled_event(event_id, /)[source]#
Returns a Scheduled Event with the given ID.
- Parameters:
event_id (
int) -- The ID to search for.- Returns:
The scheduled event or
Noneif not found.- Return type:
Optional[
ScheduledEvent]
- await create_scheduled_event(*, name, description=..., start_time, end_time=..., location, privacy_level=<ScheduledEventPrivacyLevel.guild_only: 2>, reason=None)[source]#
This function is a coroutine. Creates a scheduled event.
- Parameters:
name (
str) -- The name of the scheduled event.description (Optional[
str]) -- The description of the scheduled event.start_time (
datetime.datetime) -- A datetime object of when the scheduled event is supposed to start.end_time (Optional[
datetime.datetime]) -- A datetime object of when the scheduled event is supposed to end.location (
ScheduledEventLocation) -- The location of where the event is happening.privacy_level (
ScheduledEventPrivacyLevel) -- The privacy level of the event. Currently, the only possible value isScheduledEventPrivacyLevel.guild_only, which is default, so there is no need to change this parameter.reason (Optional[
str]) -- The reason to show in the audit log.
- Returns:
The created scheduled event.
- Return type:
Optional[
ScheduledEvent]- Raises:
Forbidden -- You do not have the Manage Events permission.
HTTPException -- The operation failed.
- property scheduled_events#
A list of scheduled events in this guild.
- await fetch_auto_moderation_rules()[source]#
This function is a coroutine.
Retrieves a list of auto moderation rules for this guild.
- Returns:
The auto moderation rules for this guild.
- Return type:
List[
AutoModRule]- Raises:
HTTPException -- Getting the auto moderation rules failed.
Forbidden -- You do not have the Manage Guild permission.
- await fetch_auto_moderation_rule(id)[source]#
This function is a coroutine.
Retrieves a
AutoModRulefrom rule ID.- Returns:
The requested auto moderation rule.
- Return type:
- Raises:
HTTPException -- Getting the auto moderation rule failed.
Forbidden -- You do not have the Manage Guild permission.
- Parameters:
id (
int) --
- await create_auto_moderation_rule(*, name, event_type, trigger_type, trigger_metadata, actions, enabled=False, exempt_roles=None, exempt_channels=None, reason=None)[source]#
Creates an auto moderation rule.
- Parameters:
name (
str) -- The name of the auto moderation rule.event_type (
AutoModEventType) -- The type of event that triggers the rule.trigger_type (
AutoModTriggerType) -- The rule's trigger type.trigger_metadata (
AutoModTriggerMetadata) -- The rule's trigger metadata.actions (List[
AutoModAction]) -- The actions to take when the rule is triggered.enabled (
bool) -- Whether the rule is enabled.exempt_roles (List[
abc.Snowflake]) -- A list of roles that are exempt from the rule.exempt_channels (List[
abc.Snowflake]) -- A list of channels that are exempt from the rule.reason (Optional[
str]) -- The reason for creating the rule. Shows up in the audit log.
- Returns:
The new auto moderation rule.
- Return type:
- Raises:
HTTPException -- Creating the auto moderation rule failed.
Forbidden -- You do not have the Manage Guild permission.
- accent_color
- accent_colour
- activities
- activity
- avatar
- banner
- bot
- color
- colour
- communication_disabled_until
- created_at
- default_avatar
- desktop_status
- discriminator
- display_avatar
- display_name
- dm_channel
- guild
- guild_avatar
- guild_permissions
- id
- joined_at
- jump_url
- mention
- mobile_status
- mutual_guilds
- name
- nick
- pending
- premium_since
- public_flags
- raw_status
- roles
- status
- system
- timed_out
- top_role
- voice
- web_status
- asyncadd_roles
- asyncban
- defcan_send
- asynccreate_dm
- asyncedit
- asyncfetch_message
- defget_role
- defhistory
- defis_on_mobile
- asynckick
- defmentioned_in
- asyncmove_to
- asyncpins
- asyncremove_roles
- asyncremove_timeout
- asyncrequest_to_speak
- asyncsend
- asynctimeout
- asynctimeout_for
- asynctrigger_typing
- deftyping
- asyncunban
- class discord.Member(*, data, guild, state)[source]#
Represents a Discord member to a
Guild.This implements a lot of the functionality of
User.- x == y
Checks if two members are equal. Note that this works with
Userinstances too.
- x != y
Checks if two members are not equal. Note that this works with
Userinstances too.
- hash(x)
Returns the member's hash.
- str(x)
Returns the member's name with the discriminator.
- joined_at#
An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be
None.- Type:
Optional[
datetime.datetime]
- activities#
The activities that the user is currently doing.
Note
Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters.
- Type:
Tuple[Union[
BaseActivity,Spotify]]
An aware datetime object that specifies the date and time in UTC when the member used their "Nitro boost" on the guild, if available. This could be
None.- Type:
Optional[
datetime.datetime]
- communication_disabled_until#
An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout.
New in version 2.0.
- Type:
Optional[
datetime.datetime]
- Parameters:
data (
MemberWithUser) --guild (
Guild) --state (
ConnectionState) --
- async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#
Returns an
AsyncIteratorthat enables receiving the destination's message history.You must have
read_message_historypermissions to use this.- Parameters:
limit (Optional[
int]) -- The number of messages to retrieve. IfNone, retrieves every message in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.around (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages.oldest_first (Optional[
bool]) -- If set toTrue, return messages in oldest->newest order. Defaults toTrueifafteris specified, otherwiseFalse.
- Yields:
Message-- The message with the message data parsed.- Raises:
Forbidden -- You do not have permissions to get channel message history.
HTTPException -- The request to get message history failed.
Examples
Usage
counter = 0 async for message in channel.history(limit=200): if message.author == client.user: counter += 1
Flattening into a list:
messages = await channel.history(limit=123).flatten() # messages is now a list of Message...
All parameters are optional.
- Return type:
HistoryIterator
- async with typing()#
Returns a context manager that allows you to type for an indefinite period of time.
This is useful for denoting long computations in your bot.
Note
This is both a regular context manager and an async context manager. This means that both
withandasync withwork with this.Example Usage:
async with channel.typing(): # simulate something heavy await asyncio.sleep(10) await channel.send('done!')
- Return type:
Typing
- property discriminator#
Equivalent to
User.discriminator
- property system#
Equivalent to
User.system
- property created_at#
Equivalent to
User.created_at
- property default_avatar#
Equivalent to
User.default_avatar
- property avatar#
Equivalent to
User.avatar
- property dm_channel#
Equivalent to
User.dm_channel
- await create_dm()#
This function is a coroutine.
Creates a
DMChannelwith this user.This should be rarely called, as this is done transparently for most people.
- Returns:
The channel that was created.
- Return type:
- property mutual_guilds#
Equivalent to
User.mutual_guilds
- property public_flags#
Equivalent to
User.public_flags
- property banner#
Equivalent to
User.banner
- property accent_color#
Equivalent to
User.accent_color
- property accent_colour#
Equivalent to
User.accent_colour
- property raw_status#
The member's overall status as a string value.
New in version 1.5.
- Return type:
- property status#
The member's overall status. If the value is unknown, then it will be a
strinstead.- Return type:
Status
- property mobile_status#
The member's status on a mobile device, if applicable.
- Return type:
Status
- property desktop_status#
The member's status on the desktop client, if applicable.
- Return type:
Status
- property web_status#
The member's status on the web client, if applicable.
- Return type:
Status
- is_on_mobile()[source]#
A helper function that determines if a member is active on a mobile device.
- Return type:
- property colour#
A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of
Colour.default()is returned.There is an alias for this named
color.- Return type:
- property color#
A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of
Colour.default()is returned.There is an alias for this named
colour.- Return type:
- property roles#
A
listofRolethat the member belongs to. Note that the first element of this list is always the default '@everyone' role.These roles are sorted by their position in the role hierarchy.
- property display_name#
Returns the user's display name.
For regular users this is just their username, but if they have a guild specific nickname then that is returned instead.
- Return type:
- property display_avatar#
Returns the member's display avatar.
For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead.
New in version 2.0.
- Return type:
- property guild_avatar#
Returns an
Assetfor the guild avatar the member has. If unavailable,Noneis returned.New in version 2.0.
- Return type:
Asset | None
- property activity#
Returns the primary activity the user is currently doing. Could be
Noneif no activity is being done.Note
Due to a Discord API limitation, this may be
Noneif the user is listening to a song on Spotify with a title longer than 128 characters.Note
A user may have multiple activities, these can be accessed under
activities.- Return type:
ActivityTypes | None
- property top_role#
Returns the member's highest role.
This is useful for figuring where a member stands in the role hierarchy chain.
- Return type:
- property guild_permissions#
Returns the member's guild permissions.
This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use
abc.GuildChannel.permissions_for().This does take into consideration guild ownership and the administrator implication.
- Return type:
- property voice#
Returns the member's current voice state.
- Return type:
VoiceState | None
- await ban(*, delete_message_seconds=None, delete_message_days=None, reason=None)[source]#
This function is a coroutine.
Bans this member. Equivalent to
Guild.ban().
- await unban(*, reason=None)[source]#
This function is a coroutine.
Unbans this member. Equivalent to
Guild.unban().- Parameters:
reason (str | None) --
- Return type:
None
- await kick(*, reason=None)[source]#
This function is a coroutine.
Kicks this member. Equivalent to
Guild.kick().- Parameters:
reason (str | None) --
- Return type:
None
- await edit(*, nick=..., mute=..., deafen=..., suppress=..., roles=..., voice_channel=..., reason=None, communication_disabled_until=...)[source]#
This function is a coroutine.
Edits the member's data.
Depending on the parameter passed, this requires different permissions listed below:
Parameter
Permission
nick
mute
deafen
roles
voice_channel
communication_disabled_until
All parameters are optional.
Changed in version 1.1: Can now pass
Nonetovoice_channelto kick a member from voice.Changed in version 2.0: The newly member is now optionally returned, if applicable.
- Parameters:
nick (Optional[
str]) -- The member's new nickname. UseNoneto remove the nickname.mute (
bool) -- Indicates if the member should be guild muted or un-muted.deafen (
bool) -- Indicates if the member should be guild deafened or un-deafened.suppress (
bool) --Indicates if the member should be suppressed in stage channels.
New in version 1.7.
roles (List[
Role]) -- The member's new list of roles. This replaces the roles.voice_channel (Optional[
VoiceChannel]) -- The voice channel to move the member to. PassNoneto kick them from voice.reason (Optional[
str]) -- The reason for editing this member. Shows up on the audit log.communication_disabled_until (Optional[
datetime.datetime]) --Temporarily puts the member in timeout until this time. If the value is
None, then the user is removed from timeout.New in version 2.0.
- Returns:
The newly updated member, if applicable. This is only returned when certain fields are updated.
- Return type:
Optional[
Member]- Raises:
Forbidden -- You do not have the proper permissions to the action requested.
HTTPException -- The operation failed.
- await timeout(until, *, reason=None)[source]#
This function is a coroutine.
Applies a timeout to a member in the guild until a set datetime.
You must have the
moderate_memberspermission to timeout a member.- Parameters:
until (
datetime.datetime) -- The date and time to timeout the member for. If this isNonethen the member is removed from timeout.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.
- Raises:
Forbidden -- You do not have permissions to timeout members.
HTTPException -- An error occurred doing the request.
- Return type:
None
- await timeout_for(duration, *, reason=None)[source]#
This function is a coroutine.
Applies a timeout to a member in the guild for a set duration. A shortcut method for
timeout(), and equivalent totimeout(until=datetime.utcnow() + duration, reason=reason).You must have the
moderate_memberspermission to timeout a member.- Parameters:
duration (
datetime.timedelta) -- The duration to timeout the member for.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.
- Raises:
Forbidden -- You do not have permissions to timeout members.
HTTPException -- An error occurred doing the request.
- Return type:
None
- await remove_timeout(*, reason=None)[source]#
This function is a coroutine.
Removes the timeout from a member.
You must have the
moderate_memberspermission to remove the timeout.This is equivalent to calling
timeout()and passingNoneto theuntilparameter.- Parameters:
reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.- Raises:
Forbidden -- You do not have permissions to remove the timeout.
HTTPException -- An error occurred doing the request.
- Return type:
None
- await request_to_speak()[source]#
This function is a coroutine.
Request to speak in the connected channel.
Only applies to stage channels.
Note
Requesting members that are not the client is equivalent to
editprovidingsuppressasFalse.New in version 1.7.
- Raises:
Forbidden -- You do not have the proper permissions to the action requested.
HTTPException -- The operation failed.
- Return type:
- await move_to(channel, *, reason=None)[source]#
This function is a coroutine.
Moves a member to a new voice channel (they must be connected first).
You must have the
move_memberspermission to use this.This raises the same exceptions as
edit().Changed in version 1.1: Can now pass
Noneto kick a member from voice.- Parameters:
channel (Optional[
VoiceChannel]) -- The new voice channel to move the member to. PassNoneto kick them from voice.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.
- Return type:
None
- await add_roles(*roles, reason=None, atomic=True)[source]#
This function is a coroutine.
Gives the member a number of
Roles.You must have the
manage_rolespermission to use this, and the addedRoles must appear lower in the list of roles than the highest role of the member.- Parameters:
*roles (
abc.Snowflake) -- An argument list ofabc.Snowflakerepresenting aRoleto give to the member.reason (Optional[
str]) -- The reason for adding these roles. Shows up on the audit log.atomic (
bool) -- Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache.
- Raises:
Forbidden -- You do not have permissions to add these roles.
HTTPException -- Adding roles failed.
- Return type:
None
- can_send(*objects)#
Returns a
boolindicating whether you have the permissions to send the object(s).
- await fetch_message(id, /)#
This function is a coroutine.
Retrieves a single
Messagefrom the destination.- Parameters:
id (
int) -- The message ID to look for.- Returns:
The message asked for.
- Return type:
- Raises:
NotFound -- The specified message was not found.
Forbidden -- You do not have the permissions required to get a message.
HTTPException -- Retrieving the message failed.
- property jump_url#
Equivalent to
User.jump_url
- await pins()#
This function is a coroutine.
Retrieves all messages that are currently pinned in the channel.
Note
Due to a limitation with the Discord API, the
Messageobjects returned by this method do not contain completeMessage.reactionsdata.- Returns:
The messages that are currently pinned.
- Return type:
List[
Message]- Raises:
HTTPException -- Retrieving the pinned messages failed.
- await remove_roles(*roles, reason=None, atomic=True)[source]#
This function is a coroutine.
Removes
Roles from this member.You must have the
manage_rolespermission to use this, and the removedRoles must appear lower in the list of roles than the highest role of the member.- Parameters:
*roles (
abc.Snowflake) -- An argument list ofabc.Snowflakerepresenting aRoleto remove from the member.reason (Optional[
str]) -- The reason for removing these roles. Shows up on the audit log.atomic (
bool) -- Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache.
- Raises:
Forbidden -- You do not have permissions to remove these roles.
HTTPException -- Removing the roles failed.
- Return type:
None
- await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None)#
This function is a coroutine.
Sends a message to the destination with the content given.
The content must be a type that can convert to a string through
str(content). If the content is set toNone(the default), then theembedparameter must be provided.To upload a single file, the
fileparameter should be used with a singleFileobject. To upload multiple files, thefilesparameter should be used with alistofFileobjects. Specifying both parameters will lead to an exception.To upload a single embed, the
embedparameter should be used with a singleEmbedobject. To upload multiple embeds, theembedsparameter should be used with alistofEmbedobjects. Specifying both parameters will lead to an exception.- Parameters:
content (Optional[
str]) -- The content of the message to send.tts (
bool) -- Indicates if the message should be sent using text-to-speech.embed (
Embed) -- The rich embed for the content.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.nonce (
int) -- The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value.delete_after (
float) -- If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored.allowed_mentions (
AllowedMentions) --Controls the mentions being processed in this message. If this is passed, then the object is merged with
allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.New in version 1.4.
reference (Union[
Message,MessageReference,PartialMessage]) --A reference to the
Messageto which you are replying, this can be created usingto_reference()or passed directly as aMessage. You can control whether this mentions the author of the referenced message using thereplied_userattribute ofallowed_mentionsor by settingmention_author.New in version 1.6.
mention_author (Optional[
bool]) --If set, overrides the
replied_userattribute ofallowed_mentions.New in version 1.6.
view (
discord.ui.View) -- A Discord UI View to add to the message.embeds (List[
Embed]) --A list of embeds to upload. Must be a maximum of 10.
New in version 2.0.
stickers (Sequence[Union[
GuildSticker,StickerItem]]) --A list of stickers to upload. Must be a maximum of 3.
New in version 2.0.
suppress (
bool) -- Whether to suppress embeds for the message.
- Returns:
The message that was sent.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
Forbidden -- You do not have the proper permissions to send the message.
InvalidArgument -- The
fileslist is not of the appropriate size, you specified bothfileandfiles, or you specified bothembedandembeds, or thereferenceobject is not aMessage,MessageReferenceorPartialMessage.
- asynccreate_guild
- asyncdelete
- asyncedit
- asyncsync
- class discord.Template(*, state, data)[source]#
Represents a Discord template.
New in version 1.4.
- created_at#
An aware datetime in UTC representing when the template was created.
- Type:
- updated_at#
An aware datetime in UTC representing when the template was last updated. This is referred to as "last synced" in the official Discord client.
- Type:
- Parameters:
state (
ConnectionState) --data (
Template) --
- await create_guild(name, icon=None)[source]#
This function is a coroutine.
Creates a
Guildusing the template.Bot accounts in more than 10 guilds are not allowed to create guilds.
- Parameters:
name (
str) -- The name of the guild.icon (
bytes) -- The bytes-like object representing the icon. SeeClientUser.edit()for more details on what is expected.
- Returns:
The guild created. This is not the same guild that is added to cache.
- Return type:
- Raises:
HTTPException -- Guild creation failed.
InvalidArgument -- Invalid icon image format given. Must be PNG or JPG.
- await sync()[source]#
This function is a coroutine.
Sync the template to the guild's current state.
You must have the
manage_guildpermission in the source guild to do this.New in version 1.7.
Changed in version 2.0: The template is no longer synced in-place, instead it is returned.
- Returns:
The newly synced template.
- Return type:
- Raises:
HTTPException -- Syncing the template failed.
Forbidden -- You don't have permissions to sync the template.
NotFound -- This template does not exist.
- await edit(*, name=..., description=...)[source]#
This function is a coroutine.
Edit the template metadata.
You must have the
manage_guildpermission in the source guild to do this.New in version 1.7.
Changed in version 2.0: The template is no longer edited in-place, instead it is returned.
- Parameters:
- Returns:
The newly edited template.
- Return type:
- Raises:
HTTPException -- Editing the template failed.
Forbidden -- You don't have permissions to edit the template.
NotFound -- This template does not exist.
- await delete()[source]#
This function is a coroutine.
Delete the template.
You must have the
manage_guildpermission in the source guild to do this.New in version 1.7.
- Raises:
HTTPException -- Deleting the template failed.
Forbidden -- You don't have permissions to delete the template.
NotFound -- This template does not exist.
- Return type:
- class discord.AutoModRule(*, state, data)[source]#
Represents a guild's auto moderation rule.
New in version 2.0.
- x == y
Checks if two rules are equal.
- x != y
Checks if two rules are not equal.
- hash(x)
Returns the rule's hash.
- str(x)
Returns the rule's name.
- event_type#
Indicates in what context the rule is checked.
- Type:
AutoModEventType
- trigger_type#
Indicates what type of information is checked to determine whether the rule is triggered.
- Type:
AutoModTriggerType
- trigger_metadata#
The rule's trigger metadata.
- Type:
AutoModTriggerMetadata
- actions#
The actions to perform when the rule is triggered.
- Type:
List[
AutoModAction]
- Parameters:
state (
ConnectionState) --data (
AutoModRule) --
- property guild#
The guild this rule belongs to.
- property creator#
The member who created this rule.
- property exempt_roles#
The roles that are exempt from this rule.
If a role is not found in the guild's cache, then it will be returned as an
Object.
- property exempt_channels#
The channels that are exempt from this rule.
If a channel is not found in the guild's cache, then it will be returned as an
Object.
- await delete(reason=None)[source]#
This function is a coroutine.
Deletes this rule.
- Parameters:
reason (Optional[
str]) -- The reason for deleting this rule. Shows up in the audit log.- Raises:
Forbidden -- You do not have the Manage Guild permission.
HTTPException -- The operation failed.
- Return type:
None
- await edit(*, name=..., event_type=..., trigger_metadata=..., actions=..., enabled=..., exempt_roles=..., exempt_channels=..., reason=None)[source]#
This function is a coroutine.
Edits this rule.
- Parameters:
name (
str) -- The rule's new name.event_type (
AutoModEventType) -- The new context in which the rule is checked.trigger_metadata (
AutoModTriggerMetadata) -- The new trigger metadata.actions (List[
AutoModAction]) -- The new actions to perform when the rule is triggered.enabled (
bool) -- Whether this rule is enabled.exempt_roles (List[
Snowflake]) -- The roles that will be exempt from this rule.exempt_channels (List[
Snowflake]) -- The channels that will be exempt from this rule.reason (Optional[
str]) -- The reason for editing this rule. Shows up in the audit log.
- Returns:
The newly updated rule, if applicable. This is only returned when fields are updated.
- Return type:
Optional[
AutoModRule]- Raises:
Forbidden -- You do not have the Manage Guild permission.
HTTPException -- The operation failed.
Invites#
- class discord.PartialInviteGuild(state, data, id)[source]#
Represents a "partial" invite guild.
This model will be given when the user is not part of the guild the
Inviteresolves to.- x == y
Checks if two partial guilds are the same.
- x != y
Checks if two partial guilds are not the same.
- hash(x)
Return the partial guild's hash.
- str(x)
Returns the partial guild's name.
- verification_level#
The partial guild's verification level.
- Type:
- features#
A list of features the guild has. See
Guild.featuresfor more information.- Type:
List[
str]
- Parameters:
state (
ConnectionState) --data (
InviteGuild) --id (
int) --
- class discord.PartialInviteChannel(data)[source]#
Represents a "partial" invite channel.
This model will be given when the user is not part of the guild the
Inviteresolves to.- x == y
Checks if two partial channels are the same.
- x != y
Checks if two partial channels are not the same.
- hash(x)
Return the partial channel's hash.
- str(x)
Returns the partial channel's name.
- type#
The partial channel's type.
- Type:
- Parameters:
data (
PartialChannel) --
- asyncdelete
- defset_scheduled_event
- class discord.Invite(*, state, data, guild=None, channel=None)[source]#
Represents a Discord
Guildorabc.GuildChannelinvite.Depending on the way this object was created, some of the attributes can have a value of
None.- x == y
Checks if two invites are equal.
- x != y
Checks if two invites are not equal.
- hash(x)
Returns the invite hash.
- str(x)
Returns the invite URL.
The following table illustrates what methods will obtain the attributes:
Attribute
Method
Client.fetch_invite()with with_counts enabledClient.fetch_invite()with with_counts enabledClient.fetch_invite()with with_expiration enabledIf it's not in the table above then it is available by all methods.
- max_age#
How long before the invite expires in seconds. A value of
0indicates that it doesn't expire.- Type:
- guild#
The guild the invite is for. Can be
Noneif it's from a group direct message.- Type:
Optional[Union[
Guild,Object,PartialInviteGuild]]
- created_at#
An aware UTC datetime object denoting the time the invite was created.
- Type:
- temporary#
Indicates that the invite grants temporary membership. If
True, members who joined via this invite will be kicked upon disconnect.- Type:
- max_uses#
How many times the invite can be used. A value of
0indicates that it has unlimited uses.- Type:
- approximate_presence_count#
The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded.
- Type:
Optional[
int]
- expires_at#
The expiration date of the invite. If the value is
Nonewhen received through Client.fetch_invite with with_expiration enabled, the invite will never expire.New in version 2.0.
- Type:
Optional[
datetime.datetime]
- channel#
The channel the invite is for.
- Type:
Union[
abc.GuildChannel,Object,PartialInviteChannel]
- target_type#
The type of target for the voice channel invite.
New in version 2.0.
- Type:
- target_user#
The user whose stream to display for this invite, if any.
New in version 2.0.
- Type:
Optional[
User]
- target_application#
The embedded application the invite targets, if any.
New in version 2.0.
- Type:
Optional[
PartialAppInfo]
- scheduled_event#
The scheduled event linked with the invite.
- Type:
Optional[
ScheduledEvent]
- Parameters:
state (ConnectionState) --
data (InvitePayload) --
guild (PartialInviteGuild | Guild | None) --
channel (PartialInviteChannel | GuildChannel | None) --
- await delete(*, reason=None)[source]#
This function is a coroutine.
Revokes the instant invite.
You must have the
manage_channelspermission to do this.- Parameters:
reason (Optional[
str]) -- The reason for deleting this invite. Shows up on the audit log.- Raises:
Forbidden -- You do not have permissions to revoke invites.
NotFound -- The invite is invalid or expired.
HTTPException -- Revoking the invite failed.
- set_scheduled_event(event)[source]#
Links the given scheduled event to this invite.
Note
Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using
abc.GuildChannel.create_invite(),Client.fetch_invite(), or this method, you can link scheduled events.New in version 2.0.
- Parameters:
event (
ScheduledEvent) -- The scheduled event object to link.- Return type:
Role#
- asyncdelete
- asyncedit
- defis_assignable
- defis_bot_managed
- defis_default
- defis_integration
- defis_premium_subscriber
- class discord.Role(*, guild, state, data)[source]#
Represents a Discord role in a
Guild.- x == y
Checks if two roles are equal.
- x != y
Checks if two roles are not equal.
- x > y
Checks if a role is higher than another in the hierarchy.
- x < y
Checks if a role is lower than another in the hierarchy.
- x >= y
Checks if a role is higher or equal to another in the hierarchy.
- x <= y
Checks if a role is lower or equal to another in the hierarchy.
- hash(x)
Return the role's hash.
- str(x)
Returns the role's name.
- position#
The position of the role. This number is usually positive. The bottom role has a position of 0.
Warning
Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves.
- Type:
- managed#
Indicates if the role is managed by the guild through some form of integrations such as Twitch.
- Type:
- unicode_emoji#
The role's unicode emoji. Only available to guilds that contain
ROLE_ICONSinGuild.features.New in version 2.0.
- Type:
Optional[
str]
- Parameters:
guild (
Guild) --state (
ConnectionState) --data (
Role) --
- is_bot_managed()[source]#
Whether the role is associated with a bot.
New in version 1.6.
- Return type:
Whether the role is the premium subscriber, AKA "boost", role for the guild.
New in version 1.6.
- Return type:
- is_integration()[source]#
Whether the role is managed by an integration.
New in version 1.6.
- Return type:
- is_assignable()[source]#
Whether the role is able to be assigned or removed by the bot.
New in version 2.0.
- Return type:
- property permissions#
Returns the role's permissions.
- Return type:
- property members#
Returns all the members with this role.
- property icon#
Returns the role's icon asset, if available.
New in version 2.0.
- Return type:
Asset | None
- await edit(*, name=..., permissions=..., colour=..., color=..., hoist=..., mentionable=..., position=..., reason=..., icon=..., unicode_emoji=...)[source]#
This function is a coroutine.
Edits the role.
You must have the
manage_rolespermission to use this.All fields are optional.
Changed in version 1.4: Can now pass
inttocolourkeyword-only parameter.Changed in version 2.0: Edits are no longer in-place, the newly edited role is returned instead. Added
iconandunicode_emoji.- Parameters:
name (
str) -- The new role name to change to.permissions (
Permissions) -- The new permissions to change to.colour (Union[
Colour,int]) -- The new colour to change to. (aliased to color as well)hoist (
bool) -- Indicates if the role should be shown separately in the member list.mentionable (
bool) -- Indicates if the role should be mentionable by others.position (
int) -- The new role's position. This must be below your top role's position, or it will fail.reason (Optional[
str]) -- The reason for editing this role. Shows up on the audit log.icon (Optional[
bytes]) -- A bytes-like object representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed,unicode_emojiis set to None. Only available to guilds that containROLE_ICONSinGuild.features. Could beNoneto denote removal of the icon.unicode_emoji (Optional[
str]) -- The role's unicode emoji. If this argument is passed,iconis set to None. Only available to guilds that containROLE_ICONSinGuild.features.
- Returns:
The newly edited role.
- Return type:
- Raises:
Forbidden -- You do not have permissions to change the role.
HTTPException -- Editing the role failed.
InvalidArgument -- An invalid position was given or the default role was asked to be moved.
- await delete(*, reason=None)[source]#
This function is a coroutine.
Deletes the role.
You must have the
manage_rolespermission to use this.- Parameters:
reason (Optional[
str]) -- The reason for deleting this role. Shows up on the audit log.- Raises:
Forbidden -- You do not have permissions to delete the role.
HTTPException -- Deleting the role failed.
- Return type:
None
- class discord.RoleTags(data)[source]#
Represents tags on a role.
A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed.
While this can be accessed, a useful interface is also provided in the
RoleandGuildclasses as well.New in version 1.6.
- Parameters:
data (
RoleTags) --
Whether the role is the premium subscriber, AKA "boost", role for the guild.
- Return type:
Scheduled Event#
- class discord.ScheduledEvent(*, state, guild, creator, data)[source]#
Represents a Discord Guild Scheduled Event.
- x == y
Checks if two scheduled events are equal.
- x != y
Checks if two scheduled events are not equal.
- hash(x)
Returns the scheduled event's hash.
- str(x)
Returns the scheduled event's name.
New in version 2.0.
- start_time#
The time when the event will start
- Type:
- end_time#
The time when the event is supposed to end.
- Type:
Optional[
datetime.datetime]
- status#
The status of the scheduled event.
- Type:
- location#
The location of the event. See
ScheduledEventLocationfor more information.- Type:
- subscriber_count#
The number of users that have marked themselves as interested in the event.
- Type:
Optional[
int]
- creator_id#
The ID of the user who created the event. It may be
Nonebecause events created before October 25th, 2021, haven't had their creators tracked.- Type:
Optional[
int]
- privacy_level#
The privacy level of the event. Currently, the only possible value is
ScheduledEventPrivacyLevel.guild_only, which is default, so there is no need to use this attribute.
- Parameters:
- property interested#
An alias to
subscriber_count- Return type:
int | None
- property cover#
Returns the scheduled event cover image asset, if available.
- Return type:
Asset | None
- await edit(*, reason=None, name=..., description=..., status=..., location=..., start_time=..., end_time=..., cover=..., privacy_level=<ScheduledEventPrivacyLevel.guild_only: 2>)[source]#
This function is a coroutine.
Edits the Scheduled Event's data
All parameters are optional unless
location.typeisScheduledEventLocationType.external, thenend_timeis required.Will return a new
ScheduledEventobject if applicable.- Parameters:
name (
str) -- The new name of the event.description (
str) -- The new description of the event.location (
ScheduledEventLocation) -- The location of the event.status (
ScheduledEventStatus) -- The status of the event. It is recommended, however, to usestart(),complete(), andcancel()to edit statuses instead.start_time (
datetime.datetime) -- The new starting time for the event.end_time (
datetime.datetime) -- The new ending time of the event.privacy_level (
ScheduledEventPrivacyLevel) -- The privacy level of the event. Currently, the only possible value isScheduledEventPrivacyLevel.guild_only, which is default, so there is no need to change this parameter.reason (Optional[
str]) -- The reason to show in the audit log.cover (Optional[
bytes]) -- The cover image of the scheduled event.
- Returns:
The newly updated scheduled event object. This is only returned when certain fields are updated.
- Return type:
Optional[
ScheduledEvent]- Raises:
Forbidden -- You do not have the Manage Events permission.
HTTPException -- The operation failed.
- await delete()[source]#
This function is a coroutine.
Deletes the scheduled event.
- Raises:
Forbidden -- You do not have the Manage Events permission.
HTTPException -- The operation failed.
- Return type:
- await start(*, reason=None)[source]#
This function is a coroutine.
Starts the scheduled event. Shortcut from
edit().Note
This method can only be used if
statusisScheduledEventStatus.scheduled.- Parameters:
reason (Optional[
str]) -- The reason to show in the audit log.- Returns:
The newly updated scheduled event object.
- Return type:
Optional[
ScheduledEvent]- Raises:
Forbidden -- You do not have the Manage Events permission.
HTTPException -- The operation failed.
- await complete(*, reason=None)[source]#
This function is a coroutine.
Ends/completes the scheduled event. Shortcut from
edit().Note
This method can only be used if
statusisScheduledEventStatus.active.- Parameters:
reason (Optional[
str]) -- The reason to show in the audit log.- Returns:
The newly updated scheduled event object.
- Return type:
Optional[
ScheduledEvent]- Raises:
Forbidden -- You do not have the Manage Events permission.
HTTPException -- The operation failed.
- await cancel(*, reason=None)[source]#
This function is a coroutine.
Cancels the scheduled event. Shortcut from
edit().Note
This method can only be used if
statusisScheduledEventStatus.scheduled.- Parameters:
reason (Optional[
str]) -- The reason to show in the audit log.- Returns:
The newly updated scheduled event object.
- Return type:
Optional[
ScheduledEvent]- Raises:
Forbidden -- You do not have the Manage Events permission.
HTTPException -- The operation failed.
- subscribers(*, limit=100, as_member=False, before=None, after=None)[source]#
Returns an
AsyncIteratorrepresenting the users or members subscribed to the event.The
afterandbeforeparameters must represent member or user objects and meet theabc.Snowflakeabc.Note
Even is
as_memberis set toTrue, if the user is outside the guild, it will be aUserobject.- Parameters:
limit (Optional[
int]) -- The maximum number of results to return.as_member (Optional[
bool]) -- Whether to fetchMemberobjects instead of user objects. There may still beUserobjects if the user is outside the guild.before (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.
- Yields:
Union[
User,Member] -- The subscribedMember. Ifas_memberis set toFalseor the user is outside the guild, it will be aUserobject.- Raises:
HTTPException -- Fetching the subscribed users failed.
Examples
Usage
async for user in event.subscribers(limit=100): print(user.name)
Flattening into a list:
users = await event.subscribers(limit=100).flatten() # users is now a list of User...
Getting members instead of user objects:
async for member in event.subscribers(limit=100, as_member=True): print(member.display_name)
- Return type:
- class discord.ScheduledEventLocation(*, state, value)[source]#
Represents a scheduled event's location.
Setting the
valueto its corresponding type will set the location type automatically:Type of Input
Location Type
ScheduledEventLocationType.stage_instanceScheduledEventLocationType.voiceScheduledEventLocationType.externalNew in version 2.0.
- value#
The actual location of the scheduled event.
- Type:
Union[
str,StageChannel,VoiceChannel,Object]
- type#
The type of location.
- Parameters:
state (ConnectionState) --
value (str | int | StageChannel | VoiceChannel) --
Welcome Screen#
- asyncedit
- class discord.WelcomeScreen(data, guild)[source]#
Represents the welcome screen of a guild.
New in version 2.0.
- welcome_channels#
A list of channels displayed on welcome screen.
- Type:
List[
WelcomeScreenChannel]
- Parameters:
data (
WelcomeScreen) --guild (
Guild) --
- await edit(**options)[source]#
This function is a coroutine.
Edits the welcome screen.
You must have the
manage_guildpermission in the guild to do this.- Parameters:
description (Optional[
str]) -- The new description of welcome screen.welcome_channels (Optional[List[
WelcomeScreenChannel]]) -- The welcome channels. The order of the channels would be same as the passed list order.enabled (Optional[
bool]) -- Whether the welcome screen should be displayed.reason (Optional[
str]) -- The reason that shows up on Audit log.
- Raises:
HTTPException -- Editing the welcome screen failed somehow.
Forbidden -- You don't have permissions to edit the welcome screen.
NotFound -- This welcome screen does not exist.
Example
rules_channel = guild.get_channel(12345678) announcements_channel = guild.get_channel(87654321) custom_emoji = utils.get(guild.emojis, name='loudspeaker') await welcome_screen.edit( description='This is a very cool community server!', welcome_channels=[ WelcomeChannel(channel=rules_channel, description='Read the rules!', emoji='👨🏫'), WelcomeChannel(channel=announcements_channel, description='Watch out for announcements!', emoji=custom_emoji), ] )
Note
Welcome channels can only accept custom emojis if
premium_tieris level 2 or above.
- class discord.WelcomeScreenChannel(channel, description, emoji)[source]#
Represents a welcome channel displayed on
WelcomeScreenNew in version 2.0.
- channel#
The channel that is being referenced.
- Type:
- emoji#
The emoji of the channel that is shown on welcome screen.
- Type:
Union[
Emoji,PartialEmoji,str]
- Parameters:
channel (Snowflake) --
description (str) --
emoji (Emoji | PartialEmoji | str) --
Integration#
- class discord.Integration(*, data, guild)[source]#
Represents a guild integration.
New in version 1.4.
- account#
The account linked to this integration.
- Type:
- await delete(*, reason=None)[source]#
This function is a coroutine.
Deletes the integration.
You must have the
manage_guildpermission to do this.- Parameters:
reason (
str) --The reason the integration was deleted. Shows up on the audit log.
New in version 2.0.
- Raises:
Forbidden -- You do not have permission to delete the integration.
HTTPException -- Deleting the integration failed.
- Return type:
None
- class discord.IntegrationAccount(data)[source]#
Represents an integration account.
New in version 1.4.
- Parameters:
data (
IntegrationAccount) --
- class discord.BotIntegration(*, data, guild)[source]#
Represents a bot integration on discord.
New in version 2.0.
- account#
The integration account information.
- Type:
- application#
The application tied to this integration.
- Type:
- class discord.IntegrationApplication(*, data, state)[source]#
Represents an application for a bot integration.
New in version 2.0.
- Parameters:
data (
IntegrationApplication) --
- class discord.StreamIntegration(*, data, guild)[source]#
Represents a stream integration for Twitch or YouTube.
New in version 2.0.
- enable_emoticons#
Whether emoticons should be synced for this integration (currently twitch only).
- Type:
Optional[
bool]
- expire_behaviour#
The behaviour of expiring subscribers. Aliased to
expire_behavioras well.- Type:
- account#
The integration account information.
- Type:
- synced_at#
An aware UTC datetime representing when the integration was last synced.
- Type:
- property expire_behavior#
An alias for
expire_behaviour.- Return type:
ExpireBehaviour
- await edit(*, expire_behaviour=..., expire_grace_period=..., enable_emoticons=...)[source]#
This function is a coroutine.
Edits the integration.
You must have the
manage_guildpermission to do this.- Parameters:
expire_behaviour (
ExpireBehaviour) -- The behaviour when an integration subscription lapses. Aliased toexpire_behavioras well.expire_grace_period (
int) -- The period (in days) where the integration will ignore lapsed subscriptions.enable_emoticons (
bool) -- Where emoticons should be synced for this integration (currently twitch only).
- Raises:
Forbidden -- You do not have permission to edit the integration.
HTTPException -- Editing the guild failed.
InvalidArgument --
expire_behaviourdid not receive aExpireBehaviour.
- Return type:
- await sync()[source]#
This function is a coroutine.
Syncs the integration.
You must have the
manage_guildpermission to do this.- Raises:
Forbidden -- You do not have permission to sync the integration.
HTTPException -- Syncing the integration failed.
- Return type:
Widget#
- asyncfetch_invite
- class discord.Widget(*, state, data)[source]#
Represents a
Guildwidget.- x == y
Checks if two widgets are the same.
- x != y
Checks if two widgets are not the same.
- str(x)
Returns the widget's JSON URL.
- channels#
The accessible voice channels in the guild.
- Type:
List[
WidgetChannel]
- members#
The online members in the server. Offline members do not appear in the widget.
Note
Due to a Discord limitation, if this data is available the users will be "anonymized" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped.
- Type:
List[
Member]
- Parameters:
state (
ConnectionState) --data (
Widget) --
- await fetch_invite(*, with_counts=True)[source]#
This function is a coroutine.
Retrieves an
Invitefrom the widget's invite URL. This is the same asClient.fetch_invite(); the invite code is abstracted away.- Parameters:
with_counts (
bool) -- Whether to include count information in the invite. This fills theInvite.approximate_member_countandInvite.approximate_presence_countfields.- Returns:
The invite from the widget's invite URL.
- Return type:
- class discord.WidgetChannel(id, name, position)[source]#
Represents a "partial" widget channel.
- x == y
Checks if two partial channels are the same.
- x != y
Checks if two partial channels are not the same.
- hash(x)
Return the partial channel's hash.
- str(x)
Returns the partial channel's name.
- defmentioned_in
- class discord.WidgetMember(*, state, data, connected_channel=None)[source]#
Represents a "partial" member of the widget's guild.
- x == y
Checks if two widget members are the same.
- x != y
Checks if two widget members are not the same.
- hash(x)
Return the widget member's hash.
- str(x)
Returns the widget member's name#discriminator.
- activity#
The member's activity.
- Type:
Optional[Union[
BaseActivity,Spotify]]
- connected_channel#
Which channel the member is connected to.
- Type:
Optional[
WidgetChannel]
- Parameters:
state (ConnectionState) --
data (WidgetMemberPayload) --
connected_channel (WidgetChannel | None) --
- property accent_color#
Returns the user's accent color, if applicable.
There is an alias for this named
accent_colour.New in version 2.0.
Note
This information is only available via
Client.fetch_user().- Return type:
Colour | None
- property accent_colour#
Returns the user's accent colour, if applicable.
There is an alias for this named
accent_color.New in version 2.0.
Note
This information is only available via
Client.fetch_user().- Return type:
Colour | None
- property banner#
Returns the user's banner asset, if available.
New in version 2.0.
Note
This information is only available via
Client.fetch_user().- Return type:
Asset | None
- property color#
A property that returns a color denoting the rendered color for the user. This always returns
Colour.default().There is an alias for this named
colour.- Return type:
- property colour#
A property that returns a colour denoting the rendered colour for the user. This always returns
Colour.default().There is an alias for this named
color.- Return type:
- property created_at#
Returns the user's creation time in UTC.
This is when the user's Discord account was created.
- Return type:
- property default_avatar#
Returns the default avatar for a given user. This is calculated by the user's discriminator.
- Return type:
- property display_avatar#
Returns the user's display avatar.
For regular users this is just their default avatar or uploaded avatar.
New in version 2.0.
- Return type:
- property jump_url#
Returns a URL that allows the client to jump to the user.
New in version 2.0.
- Return type:
- mentioned_in(message)#
Checks if the user is mentioned in the specified message.
- property public_flags#
The publicly available flags the user has.
- Return type:
Threads#
- applied_tags
- archive_timestamp
- archived
- auto_archive_duration
- category
- category_id
- created_at
- flags
- guild
- id
- invitable
- jump_url
- last_message
- last_message_id
- locked
- me
- member_count
- members
- mention
- message_count
- name
- owner
- owner_id
- parent
- parent_id
- slowmode_delay
- starting_message
- total_message_sent
- type
- asyncadd_user
- asyncarchive
- defcan_send
- asyncdelete
- asyncdelete_messages
- asyncedit
- asyncfetch_members
- asyncfetch_message
- defget_partial_message
- defhistory
- defis_news
- defis_nsfw
- defis_pinned
- defis_private
- asyncjoin
- asyncleave
- defpermissions_for
- asyncpins
- asyncpurge
- asyncremove_user
- asyncsend
- asynctrigger_typing
- deftyping
- asyncunarchive
- class discord.Thread(*, guild, state, data)[source]#
Represents a Discord thread.
- x == y
Checks if two threads are equal.
- x != y
Checks if two threads are not equal.
- hash(x)
Returns the thread's hash.
- str(x)
Returns the thread's name.
New in version 2.0.
- parent_id#
The parent
TextChannelID this thread belongs to.- Type:
- last_message_id#
The last message ID of the message sent to this thread. It may not point to an existing or valid message.
- Type:
Optional[
int]
- slowmode_delay#
The number of seconds a member must wait between sending messages in this thread. A value of 0 denotes that it is disabled. Bots and users with
manage_channelsormanage_messagesbypass slowmode.- Type:
- me#
A thread member representing yourself, if you've joined the thread. This could not be available.
- Type:
Optional[
ThreadMember]
- invitable#
Whether non-moderators can add other non-moderators to this thread. This is always
Truefor public threads.- Type:
- auto_archive_duration#
The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080.
- Type:
- archive_timestamp#
An aware timestamp of when the thread's archived status was last updated in UTC.
- Type:
- created_at#
An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09.
- Type:
Optional[
datetime.datetime]
- flags#
Extra features of the thread.
New in version 2.0.
- Type:
- total_message_sent#
Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted.
New in version 2.3.
- Type:
- Parameters:
guild (
Guild) --state (
ConnectionState) --data (
Thread) --
- async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#
Returns an
AsyncIteratorthat enables receiving the destination's message history.You must have
read_message_historypermissions to use this.- Parameters:
limit (Optional[
int]) -- The number of messages to retrieve. IfNone, retrieves every message in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.around (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages.oldest_first (Optional[
bool]) -- If set toTrue, return messages in oldest->newest order. Defaults toTrueifafteris specified, otherwiseFalse.
- Yields:
Message-- The message with the message data parsed.- Raises:
Forbidden -- You do not have permissions to get channel message history.
HTTPException -- The request to get message history failed.
Examples
Usage
counter = 0 async for message in channel.history(limit=200): if message.author == client.user: counter += 1
Flattening into a list:
messages = await channel.history(limit=123).flatten() # messages is now a list of Message...
All parameters are optional.
- Return type:
HistoryIterator
- async with typing()#
Returns a context manager that allows you to type for an indefinite period of time.
This is useful for denoting long computations in your bot.
Note
This is both a regular context manager and an async context manager. This means that both
withandasync withwork with this.Example Usage:
async with channel.typing(): # simulate something heavy await asyncio.sleep(10) await channel.send('done!')
- Return type:
Typing
- property type#
The channel's Discord type.
- Return type:
ChannelType
- property parent#
The parent channel this thread belongs to.
- Return type:
TextChannel | ForumChannel | None
- property jump_url#
Returns a URL that allows the client to jump to the thread.
New in version 2.0.
- Return type:
- property members#
A list of thread members in this thread.
This requires
Intents.membersto be properly filled. Most of the time however, this data is not provided by the gateway and a call tofetch_members()is needed.
- property applied_tags#
A list of tags applied to this thread.
This is only available for threads in forum channels.
- Type:
List[
ForumTag]
- property last_message#
Returns the last message from this thread in cache.
The message might not be valid or point to an existing message.
Reliable Fetching
For a slightly more reliable method of fetching the last message, consider using either
history()orfetch_message()with thelast_message_idattribute.- Returns:
The last message in this channel or
Noneif not found.- Return type:
Optional[
Message]
- property category#
The category channel the parent channel belongs to, if applicable.
- Returns:
The parent channel's category.
- Return type:
Optional[
CategoryChannel]- Raises:
ClientException -- The parent channel was not cached and returned
None.
- property category_id#
The category channel ID the parent channel belongs to, if applicable.
- Returns:
The parent channel's category ID.
- Return type:
Optional[
int]- Raises:
ClientException -- The parent channel was not cached and returned
None.
- property starting_message#
Returns the message that started this thread.
The message might not be valid or point to an existing message.
Note
The ID for this message is the same as the thread ID.
- Returns:
The message that started this thread or
Noneif not found in the cache.- Return type:
Optional[
Message]
- is_pinned()[source]#
Whether the thread is pinned to the top of its parent forum channel.
New in version 2.3.
- Return type:
- is_private()[source]#
Whether the thread is a private thread.
A private thread is only viewable by those that have been explicitly invited or have
manage_threads.- Return type:
- is_news()[source]#
Whether the thread is a news thread.
A news thread is a thread that has a parent that is a news channel, i.e.
TextChannel.is_news()isTrue.- Return type:
- is_nsfw()[source]#
Whether the thread is NSFW or not.
An NSFW thread is a thread that has a parent that is an NSFW channel, i.e.
TextChannel.is_nsfw()isTrue.- Return type:
- permissions_for(obj, /)[source]#
Handles permission resolution for the
MemberorRole.Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling
permissions_for()on the parent channel.- Parameters:
obj (Union[
Member,Role]) -- The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed.- Returns:
The resolved permissions for the member or role.
- Return type:
- Raises:
ClientException -- The parent channel was not cached and returned
None
- await delete_messages(messages, *, reason=None)[source]#
This function is a coroutine.
Deletes a list of messages. This is similar to
Message.delete()except it bulk deletes multiple messages.As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used.
You cannot bulk delete more than 100 messages or messages that are older than 14 days old.
You must have the
manage_messagespermission to use this.Usable only by bot accounts.
- Parameters:
messages (Iterable[
abc.Snowflake]) -- An iterable of messages denoting which ones to bulk delete.reason (Optional[
str]) -- The reason for deleting the messages. Shows up on the audit log.
- Raises:
ClientException -- The number of messages to delete was more than 100.
Forbidden -- You do not have proper permissions to delete the messages, or you're not using a bot account.
NotFound -- If single delete, then the message was already deleted.
HTTPException -- Deleting the messages failed.
- Return type:
None
- await purge(*, limit=100, check=..., before=None, after=None, around=None, oldest_first=False, bulk=True, reason=None)[source]#
This function is a coroutine.
Purges a list of messages that meet the criteria given by the predicate
check. If acheckis not provided then all messages are deleted without discrimination.You must have the
manage_messagespermission to delete messages even if they are your own (unless you are a user account). Theread_message_historypermission is also needed to retrieve message history.- Parameters:
limit (Optional[
int]) -- The number of messages to search through. This is not the number of messages that will be deleted, though it can be.check (Callable[[
Message],bool]) -- The function used to check if a message should be deleted. It must take aMessageas its sole parameter.before (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asbeforeinhistory().after (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asafterinhistory().around (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asaroundinhistory().oldest_first (Optional[
bool]) -- Same asoldest_firstinhistory().bulk (
bool) -- IfTrue, use bulk delete. Setting this toFalseis useful for mass-deleting a bot's own messages withoutPermissions.manage_messages. WhenTrue, will fall back to single delete if messages are older than two weeks.reason (Optional[
str]) -- The reason for deleting the messages. Shows up on the audit log.
- Returns:
The list of messages that were deleted.
- Return type:
List[
Message]- Raises:
Forbidden -- You do not have proper permissions to do the actions required.
HTTPException -- Purging the messages failed.
Examples
Deleting bot's messages
def is_me(m): return m.author == client.user deleted = await thread.purge(limit=100, check=is_me) await thread.send(f'Deleted {len(deleted)} message(s)')
- await edit(*, name=..., archived=..., locked=..., invitable=..., slowmode_delay=..., auto_archive_duration=..., pinned=..., applied_tags=..., reason=None)[source]#
This function is a coroutine.
Edits the thread.
Editing the thread requires
Permissions.manage_threads. The thread creator can also editname,archivedorauto_archive_duration. Note that if the thread is locked then only those withPermissions.manage_threadscan unarchive a thread.The thread must be unarchived to be edited.
- Parameters:
name (
str) -- The new name of the thread.archived (
bool) -- Whether to archive the thread or not.locked (
bool) -- Whether to lock the thread or not.invitable (
bool) -- Whether non-moderators can add other non-moderators to this thread. Only available for private threads.auto_archive_duration (
int) -- The new duration in minutes before a thread is automatically archived for inactivity. Must be one of60,1440,4320, or10080.slowmode_delay (
int) -- Specifies the slowmode rate limit for user in this thread, in seconds. A value of0disables slowmode. The maximum value possible is21600.reason (Optional[
str]) -- The reason for editing this thread. Shows up on the audit log.pinned (
bool) -- Whether to pin the thread or not. This only works if the thread is part of a forum.applied_tags (List[
ForumTag]) --The set of tags to apply to the thread. Each tag object should have an ID set.
New in version 2.3.
- Returns:
The newly edited thread.
- Return type:
- Raises:
Forbidden -- You do not have permissions to edit the thread.
HTTPException -- Editing the thread failed.
- await archive(locked=...)[source]#
This function is a coroutine.
Archives the thread. This is a shorthand of
edit().
- await unarchive()[source]#
This function is a coroutine.
Unarchives the thread. This is a shorthand of
edit().- Returns:
The updated thread.
- Return type:
- await join()[source]#
This function is a coroutine.
Joins this thread.
You must have
send_messages_in_threadsto join a thread. If the thread is private,manage_threadsis also needed.- Raises:
Forbidden -- You do not have permissions to join the thread.
HTTPException -- Joining the thread failed.
- await leave()[source]#
This function is a coroutine.
Leaves this thread.
- Raises:
HTTPException -- Leaving the thread failed.
- await add_user(user)[source]#
This function is a coroutine.
Adds a user to this thread.
You must have
send_messages_in_threadsto add a user to a public thread. If the thread is private andinvitableisFalse, thenmanage_threadsis required.- Parameters:
user (
abc.Snowflake) -- The user to add to the thread.- Raises:
Forbidden -- You do not have permissions to add the user to the thread.
HTTPException -- Adding the user to the thread failed.
- await remove_user(user)[source]#
This function is a coroutine.
Removes a user from this thread.
You must have
manage_threadsor be the creator of the thread to remove a user.- Parameters:
user (
abc.Snowflake) -- The user to remove from the thread.- Raises:
Forbidden -- You do not have permissions to remove the user from the thread.
HTTPException -- Removing the user from the thread failed.
- await fetch_members()[source]#
This function is a coroutine.
Retrieves all
ThreadMemberthat are in this thread.This requires
Intents.membersto get information about members other than yourself.- Returns:
All thread members in the thread.
- Return type:
List[
ThreadMember]- Raises:
HTTPException -- Retrieving the members failed.
- await delete()[source]#
This function is a coroutine.
Deletes this thread.
You must have
manage_threadsto delete threads.- Raises:
Forbidden -- You do not have permissions to delete this thread.
HTTPException -- Deleting the thread failed.
- get_partial_message(message_id, /)[source]#
Creates a
PartialMessagefrom the message ID.This is useful if you want to work with a message and only have its ID without doing an unnecessary API call.
New in version 2.0.
- Parameters:
message_id (
int) -- The message ID to create a partial message for.- Returns:
The partial message.
- Return type:
- can_send(*objects)#
Returns a
boolindicating whether you have the permissions to send the object(s).
- await fetch_message(id, /)#
This function is a coroutine.
Retrieves a single
Messagefrom the destination.- Parameters:
id (
int) -- The message ID to look for.- Returns:
The message asked for.
- Return type:
- Raises:
NotFound -- The specified message was not found.
Forbidden -- You do not have the permissions required to get a message.
HTTPException -- Retrieving the message failed.
- await pins()#
This function is a coroutine.
Retrieves all messages that are currently pinned in the channel.
Note
Due to a limitation with the Discord API, the
Messageobjects returned by this method do not contain completeMessage.reactionsdata.- Returns:
The messages that are currently pinned.
- Return type:
List[
Message]- Raises:
HTTPException -- Retrieving the pinned messages failed.
- await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None)#
This function is a coroutine.
Sends a message to the destination with the content given.
The content must be a type that can convert to a string through
str(content). If the content is set toNone(the default), then theembedparameter must be provided.To upload a single file, the
fileparameter should be used with a singleFileobject. To upload multiple files, thefilesparameter should be used with alistofFileobjects. Specifying both parameters will lead to an exception.To upload a single embed, the
embedparameter should be used with a singleEmbedobject. To upload multiple embeds, theembedsparameter should be used with alistofEmbedobjects. Specifying both parameters will lead to an exception.- Parameters:
content (Optional[
str]) -- The content of the message to send.tts (
bool) -- Indicates if the message should be sent using text-to-speech.embed (
Embed) -- The rich embed for the content.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.nonce (
int) -- The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value.delete_after (
float) -- If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored.allowed_mentions (
AllowedMentions) --Controls the mentions being processed in this message. If this is passed, then the object is merged with
allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.New in version 1.4.
reference (Union[
Message,MessageReference,PartialMessage]) --A reference to the
Messageto which you are replying, this can be created usingto_reference()or passed directly as aMessage. You can control whether this mentions the author of the referenced message using thereplied_userattribute ofallowed_mentionsor by settingmention_author.New in version 1.6.
mention_author (Optional[
bool]) --If set, overrides the
replied_userattribute ofallowed_mentions.New in version 1.6.
view (
discord.ui.View) -- A Discord UI View to add to the message.embeds (List[
Embed]) --A list of embeds to upload. Must be a maximum of 10.
New in version 2.0.
stickers (Sequence[Union[
GuildSticker,StickerItem]]) --A list of stickers to upload. Must be a maximum of 3.
New in version 2.0.
suppress (
bool) -- Whether to suppress embeds for the message.
- Returns:
The message that was sent.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
Forbidden -- You do not have the proper permissions to send the message.
InvalidArgument -- The
fileslist is not of the appropriate size, you specified bothfileandfiles, or you specified bothembedandembeds, or thereferenceobject is not aMessage,MessageReferenceorPartialMessage.
- class discord.ThreadMember(parent, data)[source]#
Represents a Discord thread member.
- x == y
Checks if two thread members are equal.
- x != y
Checks if two thread members are not equal.
- hash(x)
Returns the thread member's hash.
- str(x)
Returns the thread member's name.
New in version 2.0.
- joined_at#
The time the member joined the thread in UTC.
- Type:
- Parameters:
parent (
Thread) --data (
ThreadMember) --
Stages#
- asyncclone
- asyncconnect
- asynccreate_instance
- asynccreate_invite
- asyncdelete
- asyncedit
- asyncfetch_instance
- asyncinvites
- asyncmove
- defoverwrites_for
- defpermissions_for
- asyncset_permissions
- class discord.StageChannel(*, state, guild, data)[source]#
Represents a Discord guild stage channel.
New in version 1.7.
- x == y
Checks if two channels are equal.
- x != y
Checks if two channels are not equal.
- hash(x)
Returns the channel's hash.
- str(x)
Returns the channel's name.
- position#
The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be
Noneif the channel was received in an interaction.- Type:
Optional[
int]
- rtc_region#
The region for the stage channel's voice communication. A value of
Noneindicates automatic voice region detection.- Type:
Optional[
VoiceRegion]
- video_quality_mode#
The camera video quality for the stage channel's participants.
New in version 2.0.
- Type:
- flags#
Extra features of the channel.
New in version 2.0.
- Type:
- Parameters:
state (ConnectionState) --
guild (Guild) --
data (VoiceChannelPayload | StageChannelPayload) --
- property requesting_to_speak#
A list of members who are requesting to speak in the stage channel.
- property speakers#
A list of members who have been permitted to speak in the stage channel.
New in version 2.0.
- property listeners#
A list of members who are listening in the stage channel.
New in version 2.0.
- property moderators#
A list of members who are moderating the stage channel.
New in version 2.0.
- property type#
The channel's Discord type.
- Return type:
ChannelType
- await clone(*, name=None, reason=None)[source]#
This function is a coroutine.
Clones this channel. This creates a channel with the same properties as this channel.
You must have the
manage_channelspermission to do this.New in version 1.1.
- Parameters:
- Returns:
The channel that was created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
- property instance#
The running stage instance of the stage channel.
New in version 2.0.
- Return type:
StageInstance | None
- await create_instance(*, topic, privacy_level=..., reason=None, send_notification=False)[source]#
This function is a coroutine.
Create a stage instance.
You must have the
manage_channelspermission to use this.New in version 2.0.
- Parameters:
topic (
str) -- The stage instance's topic.privacy_level (
StagePrivacyLevel) -- The stage instance's privacy level. Defaults toStagePrivacyLevel.guild_only.reason (
str) -- The reason the stage instance was created. Shows up on the audit log.send_notification (
bool) -- Send a notification to everyone in the server that the stage instance has started. Defaults toFalse. Requires themention_everyonepermission.
- Returns:
The newly created stage instance.
- Return type:
- Raises:
InvalidArgument -- If the
privacy_levelparameter is not the proper type.Forbidden -- You do not have permissions to create a stage instance.
HTTPException -- Creating a stage instance failed.
- await fetch_instance()[source]#
This function is a coroutine.
Gets the running
StageInstance.New in version 2.0.
- Returns:
The stage instance.
- Return type:
- Raises:
NotFound -- The stage instance or channel could not be found.
HTTPException -- Getting the stage instance failed.
- await edit(*, reason=None, **options)[source]#
This function is a coroutine.
Edits the channel.
You must have the
manage_channelspermission to use this.Changed in version 2.0: The
topicparameter must now be set viacreate_instance.Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.
- Parameters:
name (
str) -- The new channel's name.position (
int) -- The new channel's position.sync_permissions (
bool) -- Whether to sync permissions with the channel's new or pre-existing category. Defaults toFalse.category (Optional[
CategoryChannel]) -- The new category for this channel. Can beNoneto remove the category.reason (Optional[
str]) -- The reason for editing this channel. Shows up on the audit log.overwrites (Dict[Union[
Role,Member,Snowflake],PermissionOverwrite]) -- The overwrites to apply to channel permissions. Useful for creating secret channels.rtc_region (Optional[
VoiceRegion]) -- The new region for the stage channel's voice communication. A value ofNoneindicates automatic voice region detection.video_quality_mode (
VideoQualityMode) --The camera video quality for the stage channel's participants.
New in version 2.0.
- Returns:
The newly edited stage channel. If the edit was only positional then
Noneis returned instead.- Return type:
Optional[
StageChannel]- Raises:
InvalidArgument -- If the permission overwrite information is not in proper form.
Forbidden -- You do not have permissions to edit the channel.
HTTPException -- Editing the channel failed.
- property category#
The category this channel belongs to.
If there is no category then this is
None.- Return type:
CategoryChannel | None
- property changed_roles#
Returns a list of roles that have been overridden from their default values in the
rolesattribute.
- await connect(*, timeout=60.0, reconnect=True, cls=<class 'discord.voice_client.VoiceClient'>)#
This function is a coroutine.
Connects to voice and creates a
VoiceClientto establish your connection to the voice server.This requires
Intents.voice_states.- Parameters:
timeout (
float) -- The timeout in seconds to wait for the voice endpoint.reconnect (
bool) -- Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down.cls (Type[
VoiceProtocol]) -- A type that subclassesVoiceProtocolto connect with. Defaults toVoiceClient.
- Returns:
A voice client that is fully connected to the voice server.
- Return type:
- Raises:
asyncio.TimeoutError -- Could not connect to the voice channel in time.
ClientException -- You are already connected to a voice channel.
OpusNotLoaded -- The opus library has not been loaded.
- await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_event=None, target_type=None, target_user=None, target_application_id=None)#
This function is a coroutine.
Creates an instant invite from a text or voice channel.
You must have the
create_instant_invitepermission to do this.- Parameters:
max_age (
int) -- How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to0.max_uses (
int) -- How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to0.temporary (
bool) -- Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults toFalse.unique (
bool) -- Indicates if a unique invite URL should be created. Defaults to True. If this is set toFalsethen it will return a previously created invite.reason (Optional[
str]) -- The reason for creating this invite. Shows up on the audit log.target_type (Optional[
InviteTarget]) --The type of target for the voice channel invite, if any.
New in version 2.0.
target_user (Optional[
User]) --The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.
New in version 2.0.
target_application_id (Optional[
int]) --The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.
New in version 2.0.
target_event (Optional[
ScheduledEvent]) --The scheduled event object to link to the event. Shortcut to
Invite.set_scheduled_event()See
Invite.set_scheduled_event()for more info on event invite linking.New in version 2.0.
- Returns:
The invite that was created.
- Return type:
- Raises:
HTTPException -- Invite creation failed.
NotFound -- The channel that was passed is a category or an invalid channel.
- await delete(*, reason=None)#
This function is a coroutine.
Deletes the channel.
You must have
manage_channelspermission to use this.- Parameters:
reason (Optional[
str]) -- The reason for deleting this channel. Shows up on the audit log.- Raises:
Forbidden -- You do not have proper permissions to delete the channel.
NotFound -- The channel was not found or was already deleted.
HTTPException -- Deleting the channel failed.
- Return type:
None
- await invites()#
This function is a coroutine.
Returns a list of all active instant invites from this channel.
You must have
manage_channelsto get this information.- Returns:
The list of invites that are currently active.
- Return type:
List[
Invite]- Raises:
Forbidden -- You do not have proper permissions to get the information.
HTTPException -- An error occurred while fetching the information.
- property jump_url#
Returns a URL that allows the client to jump to the channel.
New in version 2.0.
- Return type:
- property members#
Returns all members that are currently inside this voice channel.
- await move(**kwargs)#
This function is a coroutine.
A rich interface to help move a channel relative to other channels.
If exact position movement is required,
editshould be used instead.You must have the
manage_channelspermission to do this.Note
Voice channels will always be sorted below text channels. This is a Discord limitation.
New in version 1.7.
- Parameters:
beginning (
bool) -- Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive withend,before, andafter.end (
bool) -- Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive withbeginning,before, andafter.before (
Snowflake) -- The channel that should be before our current channel. This is mutually exclusive withbeginning,end, andafter.after (
Snowflake) -- The channel that should be after our current channel. This is mutually exclusive withbeginning,end, andbefore.offset (
int) -- The number of channels to offset the move by. For example, an offset of2withbeginning=Truewould move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after thebeginning,end,before, andafterparameters.category (Optional[
Snowflake]) -- The category to move this channel under. IfNoneis given then it moves it out of the category. This parameter is ignored if moving a category channel.sync_permissions (
bool) -- Whether to sync the permissions with the category (if given).reason (
str) -- The reason for the move.
- Raises:
InvalidArgument -- An invalid position was given or a bad mix of arguments was passed.
Forbidden -- You do not have permissions to move the channel.
HTTPException -- Moving the channel failed.
- Return type:
- property overwrites#
Returns all of the channel's overwrites.
This is returned as a dictionary where the key contains the target which can be either a
Roleor aMemberand the value is the overwrite as aPermissionOverwrite.- Returns:
The channel's permission overwrites.
- Return type:
Dict[Union[
Role,Member],PermissionOverwrite]
- overwrites_for(obj)#
Returns the channel-specific overwrites for a member or a role.
- permissions_for(obj, /)#
Handles permission resolution for the
MemberorRole.This function takes into consideration the following cases:
Guild owner
Guild roles
Channel overrides
Member overrides
If a
Roleis passed, then it checks the permissions someone with that role would have, which is essentially:The default role permissions
The permissions of the role used as a parameter
The default role permission overwrites
The permission overwrites of the role used as a parameter
Changed in version 2.0: The object passed in can now be a role object.
- property permissions_synced#
Whether the permissions for this channel are synced with the category it belongs to.
If there is no category then this is
False.New in version 1.3.
- Return type:
- await set_permissions(target, *, overwrite=..., reason=None, **permissions)#
This function is a coroutine.
Sets the channel specific permission overwrites for a target in the channel.
The
targetparameter should either be aMemberor aRolethat belongs to guild.The
overwriteparameter, if given, must either beNoneorPermissionOverwrite. For convenience, you can pass in keyword arguments denotingPermissionsattributes. If this is done, then you cannot mix the keyword arguments with theoverwriteparameter.If the
overwriteparameter isNone, then the permission overwrites are deleted.You must have the
manage_rolespermission to use this.Note
This method replaces the old overwrites with the ones given.
Examples
Setting allow and deny:
await message.channel.set_permissions(message.author, read_messages=True, send_messages=False)
Deleting overwrites
await channel.set_permissions(member, overwrite=None)
Using
PermissionOverwriteoverwrite = discord.PermissionOverwrite() overwrite.send_messages = False overwrite.read_messages = True await channel.set_permissions(member, overwrite=overwrite)
- Parameters:
target (Union[
Member,Role]) -- The member or role to overwrite permissions for.overwrite (Optional[
PermissionOverwrite]) -- The permissions to allow and deny to the target, orNoneto delete the overwrite.**permissions -- A keyword argument list of permissions to set for ease of use. Cannot be mixed with
overwrite.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.
- Raises:
Forbidden -- You do not have permissions to edit channel specific permissions.
HTTPException -- Editing channel specific permissions failed.
NotFound -- The role or member being edited is not part of the guild.
InvalidArgument -- The overwrite parameter invalid or the target type was not
RoleorMember.
- property voice_states#
Returns a mapping of member IDs who have voice states in this channel.
New in version 1.3.
Note
This function is intentionally low level to replace
memberswhen the member cache is unavailable.- Returns:
The mapping of member ID to a voice state.
- Return type:
Mapping[
int,VoiceState]
- class discord.StageInstance(*, state, guild, data)[source]#
Represents a stage instance of a stage channel in a guild.
New in version 2.0.
- x == y
Checks if two stage instances are equal.
- x != y
Checks if two stage instances are not equal.
- hash(x)
Returns the stage instance's hash.
- privacy_level#
The privacy level of the stage instance.
- Type:
- scheduled_event#
The scheduled event linked with the stage instance, if any.
- Type:
Optional[
ScheduledEvent]
- Parameters:
state (
ConnectionState) --guild (
Guild) --data (
StageInstance) --
- channel#
The channel that stage instance is running in.
- await edit(*, topic=..., privacy_level=..., reason=None)[source]#
This function is a coroutine.
Edits the stage instance.
You must have the
manage_channelspermission to use this.- Parameters:
topic (
str) -- The stage instance's new topic.privacy_level (
StagePrivacyLevel) -- The stage instance's new privacy level.reason (
str) -- The reason the stage instance was edited. Shows up on the audit log.
- Raises:
InvalidArgument -- If the
privacy_levelparameter is not the proper type.Forbidden -- You do not have permissions to edit the stage instance.
HTTPException -- Editing a stage instance failed.
- Return type:
None
- await delete(*, reason=None)[source]#
This function is a coroutine.
Deletes the stage instance.
You must have the
manage_channelspermission to use this.- Parameters:
reason (
str) -- The reason the stage instance was deleted. Shows up on the audit log.- Raises:
Forbidden -- You do not have permissions to delete the stage instance.
HTTPException -- Deleting the stage instance failed.
- Return type:
None
Interactions#
- defdelete_original_message
- asyncdelete_original_response
- defedit_original_message
- asyncedit_original_response
- defis_command
- defis_component
- deforiginal_message
- asyncoriginal_response
- defto_dict
- class discord.Interaction(*, data, state)[source]#
Represents a Discord interaction.
An interaction happens when a user does an action that needs to be notified. Current examples are slash commands and components.
New in version 2.0.
- type#
The interaction type.
- Type:
- user#
The user or member that sent the interaction. Will be None in PING interactions.
- Parameters:
data (
Interaction) --state (
ConnectionState) --
- channel#
The channel the interaction was sent from.
Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are
PartialMessageableinstead.
- property permissions#
The resolved permissions of the member in the channel, including overwrites.
In a non-guild context where this doesn't apply, an empty permissions object is returned.
- Return type:
- app_permissions#
The resolved permissions of the application in the channel, including overwrites.
- response#
Returns an object responsible for handling responding to the interaction.
A response can only be done once. If secondary messages need to be sent, consider using
followupinstead.
- followup#
Returns the followup webhook for followup interactions.
- await original_response()[source]#
This function is a coroutine.
Fetches the original interaction response message associated with the interaction.
If the interaction response was
InteractionResponse.send_message()then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction.Repeated calls to this will return a cached value.
- Returns:
The original interaction response message.
- Return type:
- Raises:
HTTPException -- Fetching the original response message failed.
ClientException -- The channel for the message could not be resolved.
- await original_message()[source]#
An alias for
original_response().- Returns:
The original interaction response message.
- Return type:
- Raises:
HTTPException -- Fetching the original response message failed.
ClientException -- The channel for the message could not be resolved.
- await edit_original_response(*, content=..., embeds=..., embed=..., file=..., files=..., attachments=..., view=..., allowed_mentions=None, delete_after=None)[source]#
This function is a coroutine.
Edits the original interaction response message.
This is a lower level interface to
InteractionMessage.edit()in case you do not want to fetch the message and save an HTTP request.This method is also the only way to edit the original message if the message sent was ephemeral.
- Parameters:
content (Optional[
str]) -- The content to edit the message with orNoneto clear it.embeds (List[
Embed]) -- A list of embeds to edit the message with.embed (Optional[
Embed]) -- The embed to edit the message with.Nonesuppresses the embeds. This should not be mixed with theembedsparameter.file (
File) -- The file to upload. This cannot be mixed withfilesparameter.files (List[
File]) -- A list of files to send with the content. This cannot be mixed with thefileparameter.attachments (List[
Attachment]) -- A list of attachments to keep in the message. If[]is passed then all attachments are removed.allowed_mentions (
AllowedMentions) -- Controls the mentions being processed in this message. Seeabc.Messageable.send()for more information.view (Optional[
View]) -- The updated view to update this message with. IfNoneis passed then the view is removed.delete_after (Optional[
float]) -- If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored.
- Returns:
The newly edited message.
- Return type:
- Raises:
HTTPException -- Editing the message failed.
Forbidden -- Edited a message that is not yours.
TypeError -- You specified both
embedandembedsorfileandfilesValueError -- The length of
embedswas invalid.
- await edit_original_message(**kwargs)[source]#
An alias for
edit_original_response().- Returns:
The newly edited message.
- Return type:
- Raises:
HTTPException -- Editing the message failed.
Forbidden -- Edited a message that is not yours.
TypeError -- You specified both
embedandembedsorfileandfilesValueError -- The length of
embedswas invalid.
- await delete_original_response(*, delay=None)[source]#
This function is a coroutine.
Deletes the original interaction response message.
This is a lower level interface to
InteractionMessage.delete()in case you do not want to fetch the message and save an HTTP request.- Parameters:
delay (Optional[
float]) -- If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored.- Raises:
HTTPException -- Deleting the message failed.
Forbidden -- Deleted a message that is not yours.
- Return type:
None
- await delete_original_message(**kwargs)[source]#
An alias for
delete_original_response().- Raises:
HTTPException -- Deleting the message failed.
Forbidden -- Deleted a message that is not yours.
- asyncdefer
- asyncedit_message
- defis_done
- asyncpong
- asyncsend_autocomplete_result
- asyncsend_message
- asyncsend_modal
- class discord.InteractionResponse(parent)[source]#
Represents a Discord interaction response.
This type can be accessed through
Interaction.response.New in version 2.0.
- Parameters:
parent (
Interaction) --
- is_done()[source]#
Indicates whether an interaction response has been done before.
An interaction can only be responded to once.
- Return type:
- await defer(*, ephemeral=False, invisible=True)[source]#
This function is a coroutine.
Defers the interaction response.
This is typically used when the interaction is acknowledged and a secondary action will be done later.
This can only be used with the following interaction types:
- Parameters:
ephemeral (
bool) -- Indicates whether the deferred message will eventually be ephemeral. This only applies toInteractionType.application_commandinteractions, or ifinvisibleisFalse.invisible (
bool) -- Indicates whether the deferred type should be 'invisible' (InteractionResponseType.deferred_message_update) instead of 'thinking' (InteractionResponseType.deferred_channel_message). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message viaInteraction.followupto make this thinking state go away. This parameter does not apply to interactions of typeInteractionType.application_command.
- Raises:
HTTPException -- Deferring the interaction failed.
InteractionResponded -- This interaction has already been responded to before.
- Return type:
- await pong()[source]#
This function is a coroutine.
Pongs the ping interaction.
This should rarely be used.
- Raises:
HTTPException -- Ponging the interaction failed.
InteractionResponded -- This interaction has already been responded to before.
- Return type:
- await send_message(content=None, *, embed=None, embeds=None, view=None, tts=False, ephemeral=False, allowed_mentions=None, file=None, files=None, delete_after=None)[source]#
This function is a coroutine.
Responds to this interaction by sending a message.
- Parameters:
content (Optional[
str]) -- The content of the message to send.embeds (List[
Embed]) -- A list of embeds to send with the content. Maximum of 10. This cannot be mixed with theembedparameter.embed (
Embed) -- The rich embed for the content to send. This cannot be mixed withembedsparameter.tts (
bool) -- Indicates if the message should be sent using text-to-speech.view (
discord.ui.View) -- The view to send with the message.ephemeral (
bool) -- Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes.allowed_mentions (
AllowedMentions) -- Controls the mentions being processed in this message. Seeabc.Messageable.send()for more information.delete_after (
float) -- If provided, the number of seconds to wait in the background before deleting the message we just sent.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.
- Returns:
The interaction object associated with the sent message.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
TypeError -- You specified both
embedandembeds.ValueError -- The length of
embedswas invalid.InteractionResponded -- This interaction has already been responded to before.
- await edit_message(*, content=..., embed=..., embeds=..., file=..., files=..., attachments=..., view=..., delete_after=None)[source]#
This function is a coroutine.
Responds to this interaction by editing the original message of a component or modal interaction.
- Parameters:
content (Optional[
str]) -- The new content to replace the message with.Noneremoves the content.embeds (List[
Embed]) -- A list of embeds to edit the message with.embed (Optional[
Embed]) -- The embed to edit the message with.Nonesuppresses the embeds. This should not be mixed with theembedsparameter.file (
File) -- A new file to add to the message. This cannot be mixed withfilesparameter.files (List[
File]) -- A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with thefileparameter.attachments (List[
Attachment]) -- A list of attachments to keep in the message. If[]is passed then all attachments are removed.view (Optional[
View]) -- The updated view to update this message with. IfNoneis passed then the view is removed.delete_after (Optional[
float]) -- If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored.
- Raises:
HTTPException -- Editing the message failed.
TypeError -- You specified both
embedandembeds.InteractionResponded -- This interaction has already been responded to before.
- Return type:
None
- await send_autocomplete_result(*, choices)[source]#
This function is a coroutine. Responds to this interaction by sending the autocomplete choices.
- Parameters:
choices (List[
OptionChoice]) -- A list of choices.- Raises:
HTTPException -- Sending the result failed.
InteractionResponded -- This interaction has already been responded to before.
- await send_modal(modal)[source]#
This function is a coroutine. Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission.
- Parameters:
modal (
discord.ui.Modal) -- The modal dialog to display to the user.- Raises:
HTTPException -- Sending the modal failed.
InteractionResponded -- This interaction has already been responded to before.
- Return type:
- class discord.InteractionMessage(*, state, channel, data)[source]#
Represents the original interaction response message.
This allows you to edit or delete the message associated with the interaction response. To retrieve this object see
Interaction.original_response().This inherits from
discord.Messagewith changes toedit()anddelete()to work.New in version 2.0.
- Parameters:
state (
ConnectionState) --channel (
Union[TextChannel,VoiceChannel,Thread,DMChannel,PartialMessageable,GroupChannel]) --data (
Message) --
- await edit(content=..., embeds=..., embed=..., file=..., files=..., attachments=..., view=..., allowed_mentions=None, delete_after=None)[source]#
This function is a coroutine.
Edits the message.
- Parameters:
content (Optional[
str]) -- The content to edit the message with orNoneto clear it.embeds (List[
Embed]) -- A list of embeds to edit the message with.embed (Optional[
Embed]) -- The embed to edit the message with.Nonesuppresses the embeds. This should not be mixed with theembedsparameter.file (
File) -- The file to upload. This cannot be mixed withfilesparameter.files (List[
File]) -- A list of files to send with the content. This cannot be mixed with thefileparameter.attachments (List[
Attachment]) -- A list of attachments to keep in the message. If[]is passed then all attachments are removed.allowed_mentions (
AllowedMentions) -- Controls the mentions being processed in this message. Seeabc.Messageable.send()for more information.view (Optional[
View]) -- The updated view to update this message with. IfNoneis passed then the view is removed.delete_after (Optional[
float]) -- If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored.
- Returns:
The newly edited message.
- Return type:
- Raises:
HTTPException -- Editing the message failed.
Forbidden -- Edited a message that is not yours.
TypeError -- You specified both
embedandembedsorfileandfilesValueError -- The length of
embedswas invalid.
- await delete(*, delay=None)[source]#
This function is a coroutine.
Deletes the message.
- Parameters:
delay (Optional[
float]) -- If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored.- Raises:
Forbidden -- You do not have proper permissions to delete the message.
NotFound -- The message was deleted already.
HTTPException -- Deleting the message failed.
- Return type:
None
- class discord.MessageInteraction(*, data, state)[source]#
Represents a Discord message interaction.
This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command.
New in version 2.0.
Note
Responses to message components do not include this property.
- type#
The interaction type.
- Type:
- Parameters:
data (
MessageInteraction) --state (
ConnectionState) --
- class discord.Component[source]#
Represents a Discord Bot UI Kit Component.
Currently, the only components supported by Discord are:
This class is abstract and cannot be instantiated.
New in version 2.0.
- type#
The type of component.
- Type:
- class discord.ActionRow(data)[source]#
Represents a Discord Bot UI Kit Action Row.
This is a component that holds up to 5 children components in a row.
This inherits from
Component.New in version 2.0.
- type#
The type of component.
- Type:
- Parameters:
data (
Union[ActionRow,ButtonComponent,SelectMenu,InputText]) --
- class discord.Button(data)[source]#
Represents a button from the Discord Bot UI Kit.
This inherits from
Component.Note
The user constructible and usable type to create a button is
discord.ui.Buttonnot this one.New in version 2.0.
- style#
The style of the button.
- Type:
- custom_id#
The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID.
- Type:
Optional[
str]
- emoji#
The emoji of the button, if available.
- Type:
Optional[
PartialEmoji]
- Parameters:
data (
ButtonComponent) --
- class discord.SelectMenu(data)[source]#
Represents a select menu from the Discord Bot UI Kit.
A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently.
Note
The user constructible and usable type to create a select menu is
discord.ui.Selectnot this one.New in version 2.0.
Changed in version 2.3: Added support for
ComponentType.user_select,ComponentType.role_select,ComponentType.mentionable_select, andComponentType.channel_select.- type#
The select menu's type.
- Type:
- min_values#
The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25.
- Type:
- max_values#
The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25.
- Type:
- options#
A list of options that can be selected in this menu. Will be an empty list for all component types except for
ComponentType.string_select.- Type:
List[
SelectOption]
- channel_types#
A list of channel types that can be selected. Will be an empty list for all component types except for
ComponentType.channel_select.- Type:
List[
ChannelType]
- Parameters:
data (
SelectMenu) --
Emoji#
- class discord.Emoji(*, guild, state, data)[source]#
Represents a custom emoji.
Depending on the way this object was created, some attributes can have a value of
None.- x == y
Checks if two emoji are the same.
- x != y
Checks if two emoji are not the same.
- hash(x)
Return the emoji's hash.
- iter(x)
Returns an iterator of
(field, value)pairs. This allows this class to be used as an iterable in list/dict/etc constructions.
- str(x)
Returns the emoji rendered for discord.
- require_colons#
If colons are required to use this emoji in the client (:PJSalt: vs PJSalt).
- Type:
- user#
The user that created the emoji. This can only be retrieved using
Guild.fetch_emoji()and having themanage_emojispermission.- Type:
Optional[
User]
- Parameters:
guild (
Guild) --state (
ConnectionState) --data (
Emoji) --
- property roles#
A
listof roles that is allowed to use this emoji.If roles is empty, the emoji is unrestricted.
- await delete(*, reason=None)[source]#
This function is a coroutine.
Deletes the custom emoji.
You must have
manage_emojispermission to do this.- Parameters:
reason (Optional[
str]) -- The reason for deleting this emoji. Shows up on the audit log.- Raises:
Forbidden -- You are not allowed to delete emojis.
HTTPException -- An error occurred deleting the emoji.
- Return type:
None
- await edit(*, name=..., roles=..., reason=None)[source]#
This function is a coroutine.
Edits the custom emoji.
You must have
manage_emojispermission to do this.Changed in version 2.0: The newly updated emoji is returned.
- Parameters:
- Raises:
Forbidden -- You are not allowed to edit emojis.
HTTPException -- An error occurred editing the emoji.
- Returns:
The newly updated emoji.
- Return type:
- await read()#
This function is a coroutine.
Retrieves the content of this asset as a
bytesobject.- Returns:
The content of the asset.
- Return type:
- Raises:
DiscordException -- There was no internal connection state.
HTTPException -- Downloading the asset failed.
NotFound -- The asset was deleted.
- await save(fp, *, seek_begin=True)#
This function is a coroutine.
Saves this asset into a file-like object.
- Parameters:
fp (Union[
io.BufferedIOBase,os.PathLike]) -- The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead.seek_begin (
bool) -- Whether to seek to the beginning of the file after saving is successfully done.
- Returns:
The number of bytes written.
- Return type:
- Raises:
DiscordException -- There was no internal connection state.
HTTPException -- Downloading the asset failed.
NotFound -- The asset was deleted.
- clsPartialEmoji.from_str
- defis_custom_emoji
- defis_unicode_emoji
- asyncread
- asyncsave
- class discord.PartialEmoji(*, name, animated=False, id=None)[source]#
Represents a "partial" emoji.
This model will be given in two scenarios:
"Raw" data events such as
on_raw_reaction_add()Custom emoji that the bot cannot see from e.g.
Message.reactions
- x == y
Checks if two emoji are the same.
- x != y
Checks if two emoji are not the same.
- hash(x)
Return the emoji's hash.
- str(x)
Returns the emoji rendered for discord.
- name#
The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be
Noneif the emoji got deleted (e.g. removing a reaction with a deleted emoji).- Type:
Optional[
str]
- classmethod from_str(value)[source]#
Converts a Discord string representation of an emoji to a
PartialEmoji.The formats accepted are:
a:name:id<a:name:id>name:id<:name:id>
If the format does not match then it is assumed to be a unicode emoji.
New in version 2.0.
- Parameters:
value (
str) -- The string representation of an emoji.- Returns:
The partial emoji from this string.
- Return type:
- property created_at#
Returns the emoji's creation time in UTC, or None if Unicode emoji.
New in version 1.6.
- Return type:
datetime | None
- property url#
Returns the URL of the emoji, if it is custom.
If this isn't a custom emoji then an empty string is returned
- Return type:
- await read()[source]#
This function is a coroutine.
Retrieves the content of this asset as a
bytesobject.- Returns:
The content of the asset.
- Return type:
- Raises:
DiscordException -- There was no internal connection state.
HTTPException -- Downloading the asset failed.
NotFound -- The asset was deleted.
- await save(fp, *, seek_begin=True)#
This function is a coroutine.
Saves this asset into a file-like object.
- Parameters:
fp (Union[
io.BufferedIOBase,os.PathLike]) -- The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead.seek_begin (
bool) -- Whether to seek to the beginning of the file after saving is successfully done.
- Returns:
The number of bytes written.
- Return type:
- Raises:
DiscordException -- There was no internal connection state.
HTTPException -- Downloading the asset failed.
NotFound -- The asset was deleted.
Channels#
- defarchived_threads
- defcan_send
- asyncclone
- asynccreate_invite
- asynccreate_thread
- asynccreate_webhook
- asyncdelete
- asyncdelete_messages
- asyncedit
- asyncfetch_message
- asyncfollow
- defget_partial_message
- defget_thread
- defhistory
- asyncinvites
- defis_news
- defis_nsfw
- asyncmove
- defoverwrites_for
- defpermissions_for
- asyncpins
- asyncpurge
- asyncsend
- asyncset_permissions
- asynctrigger_typing
- deftyping
- asyncwebhooks
- class discord.TextChannel(*, state, guild, data)[source]#
Represents a Discord text channel.
- x == y
Checks if two channels are equal.
- x != y
Checks if two channels are not equal.
- hash(x)
Returns the channel's hash.
- str(x)
Returns the channel's name.
- position#
The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be
Noneif the channel was received in an interaction.- Type:
Optional[
int]
- last_message_id#
The last message ID of the message sent to this channel. It may not point to an existing or valid message.
- Type:
Optional[
int]
- slowmode_delay#
The number of seconds a member must wait between sending messages in this channel. A value of 0 denotes that it is disabled. Bots and users with
manage_channelsormanage_messagesbypass slowmode.- Type:
- nsfw#
If the channel is marked as "not safe for work".
Note
To check if the channel or the guild of that channel are marked as NSFW, consider
is_nsfw()instead.- Type:
- default_auto_archive_duration#
The default auto archive duration in minutes for threads created in this channel.
New in version 2.0.
- Type:
- flags#
Extra features of the channel.
New in version 2.0.
- Type:
- default_thread_slowmode_delay#
The initial slowmode delay to set on newly created threads in this channel.
New in version 2.3.
- Type:
Optional[
int]
- Parameters:
state (ConnectionState) --
guild (Guild) --
data (TextChannelPayload) --
- async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#
Returns an
AsyncIteratorthat enables receiving the destination's message history.You must have
read_message_historypermissions to use this.- Parameters:
limit (Optional[
int]) -- The number of messages to retrieve. IfNone, retrieves every message in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.around (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages.oldest_first (Optional[
bool]) -- If set toTrue, return messages in oldest->newest order. Defaults toTrueifafteris specified, otherwiseFalse.
- Yields:
Message-- The message with the message data parsed.- Raises:
Forbidden -- You do not have permissions to get channel message history.
HTTPException -- The request to get message history failed.
Examples
Usage
counter = 0 async for message in channel.history(limit=200): if message.author == client.user: counter += 1
Flattening into a list:
messages = await channel.history(limit=123).flatten() # messages is now a list of Message...
All parameters are optional.
- Return type:
HistoryIterator
- async with typing()#
Returns a context manager that allows you to type for an indefinite period of time.
This is useful for denoting long computations in your bot.
Note
This is both a regular context manager and an async context manager. This means that both
withandasync withwork with this.Example Usage:
async with channel.typing(): # simulate something heavy await asyncio.sleep(10) await channel.send('done!')
- Return type:
Typing
- await edit(*, reason=None, **options)[source]#
This function is a coroutine.
Edits the channel.
You must have the
manage_channelspermission to use this.Changed in version 1.3: The
overwriteskeyword-only parameter was added.Changed in version 1.4: The
typekeyword-only parameter was added.Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.
- Parameters:
name (
str) -- The new channel name.topic (
str) -- The new channel's topic.position (
int) -- The new channel's position.nsfw (
bool) -- To mark the channel as NSFW or not.sync_permissions (
bool) -- Whether to sync permissions with the channel's new or pre-existing category. Defaults toFalse.category (Optional[
CategoryChannel]) -- The new category for this channel. Can beNoneto remove the category.slowmode_delay (
int) -- Specifies the slowmode rate limit for user in this channel, in seconds. A value of 0 disables slowmode. The maximum value possible is 21600.type (
ChannelType) -- Change the type of this text channel. Currently, only conversion betweenChannelType.textandChannelType.newsis supported. This is only available to guilds that containNEWSinGuild.features.reason (Optional[
str]) -- The reason for editing this channel. Shows up on the audit log.overwrites (Dict[Union[
Role,Member,Snowflake],PermissionOverwrite]) -- The overwrites to apply to channel permissions. Useful for creating secret channels.default_auto_archive_duration (
int) -- The new default auto archive duration in minutes for threads created in this channel. Must be one of60,1440,4320, or10080.default_thread_slowmode_delay (
int) --The new default slowmode delay in seconds for threads created in this channel.
New in version 2.3.
- Returns:
The newly edited text channel. If the edit was only positional then
Noneis returned instead.- Return type:
Optional[
TextChannel]- Raises:
InvalidArgument -- If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form.
Forbidden -- You do not have permissions to edit the channel.
HTTPException -- Editing the channel failed.
- await create_thread(*, name, message=None, auto_archive_duration=..., type=None, reason=None)[source]#
This function is a coroutine.
Creates a thread in this text channel.
To create a public thread, you must have
create_public_threads. For a private thread,create_private_threadsis needed instead.New in version 2.0.
- Parameters:
name (
str) -- The name of the thread.message (Optional[
abc.Snowflake]) -- A snowflake representing the message to create the thread with. IfNoneis passed then a private thread is created. Defaults toNone.auto_archive_duration (
int) -- The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used.type (Optional[
ChannelType]) -- The type of thread to create. If amessageis passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this isNone.reason (
str) -- The reason for creating a new thread. Shows up on the audit log.
- Returns:
The created thread
- Return type:
- Raises:
Forbidden -- You do not have permissions to create a thread.
HTTPException -- Starting the thread failed.
- archived_threads(*, private=False, joined=False, limit=50, before=None)#
Returns an
AsyncIteratorthat iterates over all archived threads in the guild.You must have
read_message_historyto use this. If iterating over private threads thenmanage_threadsis also required.New in version 2.0.
- Parameters:
limit (Optional[
bool]) -- The number of threads to retrieve. IfNone, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Retrieve archived channels before the given date or ID.private (
bool) -- Whether to retrieve private archived threads.joined (
bool) -- Whether to retrieve private archived threads that you've joined. You cannot setjoinedtoTrueandprivatetoFalse.
- Yields:
Thread-- The archived threads.- Raises:
Forbidden -- You do not have permissions to get archived threads.
HTTPException -- The request to get the archived threads failed.
- Return type:
ArchivedThreadIterator
- can_send(*objects)#
Returns a
boolindicating whether you have the permissions to send the object(s).
- property category#
The category this channel belongs to.
If there is no category then this is
None.- Return type:
CategoryChannel | None
- property changed_roles#
Returns a list of roles that have been overridden from their default values in the
rolesattribute.
- await clone(*, name=None, reason=None)#
This function is a coroutine.
Clones this channel. This creates a channel with the same properties as this channel.
You must have the
manage_channelspermission to do this.New in version 1.1.
- Parameters:
- Returns:
The channel that was created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
- await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_event=None, target_type=None, target_user=None, target_application_id=None)#
This function is a coroutine.
Creates an instant invite from a text or voice channel.
You must have the
create_instant_invitepermission to do this.- Parameters:
max_age (
int) -- How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to0.max_uses (
int) -- How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to0.temporary (
bool) -- Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults toFalse.unique (
bool) -- Indicates if a unique invite URL should be created. Defaults to True. If this is set toFalsethen it will return a previously created invite.reason (Optional[
str]) -- The reason for creating this invite. Shows up on the audit log.target_type (Optional[
InviteTarget]) --The type of target for the voice channel invite, if any.
New in version 2.0.
target_user (Optional[
User]) --The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.
New in version 2.0.
target_application_id (Optional[
int]) --The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.
New in version 2.0.
target_event (Optional[
ScheduledEvent]) --The scheduled event object to link to the event. Shortcut to
Invite.set_scheduled_event()See
Invite.set_scheduled_event()for more info on event invite linking.New in version 2.0.
- Returns:
The invite that was created.
- Return type:
- Raises:
HTTPException -- Invite creation failed.
NotFound -- The channel that was passed is a category or an invalid channel.
- await create_webhook(*, name, avatar=None, reason=None)#
This function is a coroutine.
Creates a webhook for this channel.
Requires
manage_webhookspermissions.Changed in version 1.1: Added the
reasonkeyword-only parameter.- Parameters:
name (
str) -- The webhook's name.avatar (Optional[
bytes]) -- A bytes-like object representing the webhook's default avatar. This operates similarly toedit().reason (Optional[
str]) -- The reason for creating this webhook. Shows up in the audit logs.
- Returns:
The created webhook.
- Return type:
- Raises:
HTTPException -- Creating the webhook failed.
Forbidden -- You do not have permissions to create a webhook.
- await delete(*, reason=None)#
This function is a coroutine.
Deletes the channel.
You must have
manage_channelspermission to use this.- Parameters:
reason (Optional[
str]) -- The reason for deleting this channel. Shows up on the audit log.- Raises:
Forbidden -- You do not have proper permissions to delete the channel.
NotFound -- The channel was not found or was already deleted.
HTTPException -- Deleting the channel failed.
- Return type:
None
- await delete_messages(messages, *, reason=None)#
This function is a coroutine.
Deletes a list of messages. This is similar to
Message.delete()except it bulk deletes multiple messages.As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used.
You cannot bulk delete more than 100 messages or messages that are older than 14 days old.
You must have the
manage_messagespermission to use this.- Parameters:
messages (Iterable[
abc.Snowflake]) -- An iterable of messages denoting which ones to bulk delete.reason (Optional[
str]) -- The reason for deleting the messages. Shows up on the audit log.
- Raises:
ClientException -- The number of messages to delete was more than 100.
Forbidden -- You do not have proper permissions to delete the messages.
NotFound -- If single delete, then the message was already deleted.
HTTPException -- Deleting the messages failed.
- Return type:
None
- await fetch_message(id, /)#
This function is a coroutine.
Retrieves a single
Messagefrom the destination.- Parameters:
id (
int) -- The message ID to look for.- Returns:
The message asked for.
- Return type:
- Raises:
NotFound -- The specified message was not found.
Forbidden -- You do not have the permissions required to get a message.
HTTPException -- Retrieving the message failed.
- await follow(*, destination, reason=None)#
Follows a channel using a webhook.
Only news channels can be followed.
Note
The webhook returned will not provide a token to do webhook actions, as Discord does not provide it.
New in version 1.3.
- Parameters:
destination (
TextChannel) -- The channel you would like to follow from.reason (Optional[
str]) --The reason for following the channel. Shows up on the destination guild's audit log.
New in version 1.4.
- Returns:
The created webhook.
- Return type:
- Raises:
HTTPException -- Following the channel failed.
Forbidden -- You do not have the permissions to create a webhook.
- get_partial_message(message_id, /)#
Creates a
PartialMessagefrom the message ID.This is useful if you want to work with a message and only have its ID without doing an unnecessary API call.
New in version 1.6.
- Parameters:
message_id (
int) -- The message ID to create a partial message for.- Returns:
The partial message.
- Return type:
- get_thread(thread_id, /)#
Returns a thread with the given ID.
New in version 2.0.
- await invites()#
This function is a coroutine.
Returns a list of all active instant invites from this channel.
You must have
manage_channelsto get this information.- Returns:
The list of invites that are currently active.
- Return type:
List[
Invite]- Raises:
Forbidden -- You do not have proper permissions to get the information.
HTTPException -- An error occurred while fetching the information.
- property jump_url#
Returns a URL that allows the client to jump to the channel.
New in version 2.0.
- Return type:
- property last_message#
Fetches the last message from this channel in cache.
The message might not be valid or point to an existing message.
Reliable Fetching
For a slightly more reliable method of fetching the last message, consider using either
history()orfetch_message()with thelast_message_idattribute.- Returns:
The last message in this channel or
Noneif not found.- Return type:
Optional[
Message]
- await move(**kwargs)#
This function is a coroutine.
A rich interface to help move a channel relative to other channels.
If exact position movement is required,
editshould be used instead.You must have the
manage_channelspermission to do this.Note
Voice channels will always be sorted below text channels. This is a Discord limitation.
New in version 1.7.
- Parameters:
beginning (
bool) -- Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive withend,before, andafter.end (
bool) -- Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive withbeginning,before, andafter.before (
Snowflake) -- The channel that should be before our current channel. This is mutually exclusive withbeginning,end, andafter.after (
Snowflake) -- The channel that should be after our current channel. This is mutually exclusive withbeginning,end, andbefore.offset (
int) -- The number of channels to offset the move by. For example, an offset of2withbeginning=Truewould move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after thebeginning,end,before, andafterparameters.category (Optional[
Snowflake]) -- The category to move this channel under. IfNoneis given then it moves it out of the category. This parameter is ignored if moving a category channel.sync_permissions (
bool) -- Whether to sync the permissions with the category (if given).reason (
str) -- The reason for the move.
- Raises:
InvalidArgument -- An invalid position was given or a bad mix of arguments was passed.
Forbidden -- You do not have permissions to move the channel.
HTTPException -- Moving the channel failed.
- Return type:
- property overwrites#
Returns all of the channel's overwrites.
This is returned as a dictionary where the key contains the target which can be either a
Roleor aMemberand the value is the overwrite as aPermissionOverwrite.- Returns:
The channel's permission overwrites.
- Return type:
Dict[Union[
Role,Member],PermissionOverwrite]
- overwrites_for(obj)#
Returns the channel-specific overwrites for a member or a role.
- permissions_for(obj, /)#
Handles permission resolution for the
MemberorRole.This function takes into consideration the following cases:
Guild owner
Guild roles
Channel overrides
Member overrides
If a
Roleis passed, then it checks the permissions someone with that role would have, which is essentially:The default role permissions
The permissions of the role used as a parameter
The default role permission overwrites
The permission overwrites of the role used as a parameter
Changed in version 2.0: The object passed in can now be a role object.
- property permissions_synced#
Whether the permissions for this channel are synced with the category it belongs to.
If there is no category then this is
False.New in version 1.3.
- Return type:
- await pins()#
This function is a coroutine.
Retrieves all messages that are currently pinned in the channel.
Note
Due to a limitation with the Discord API, the
Messageobjects returned by this method do not contain completeMessage.reactionsdata.- Returns:
The messages that are currently pinned.
- Return type:
List[
Message]- Raises:
HTTPException -- Retrieving the pinned messages failed.
- await purge(*, limit=100, check=..., before=None, after=None, around=None, oldest_first=False, bulk=True, reason=None)#
This function is a coroutine.
Purges a list of messages that meet the criteria given by the predicate
check. If acheckis not provided then all messages are deleted without discrimination.You must have the
manage_messagespermission to delete messages even if they are your own. Theread_message_historypermission is also needed to retrieve message history.- Parameters:
limit (Optional[
int]) -- The number of messages to search through. This is not the number of messages that will be deleted, though it can be.check (Callable[[
Message],bool]) -- The function used to check if a message should be deleted. It must take aMessageas its sole parameter.before (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asbeforeinhistory().after (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asafterinhistory().around (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asaroundinhistory().oldest_first (Optional[
bool]) -- Same asoldest_firstinhistory().bulk (
bool) -- IfTrue, use bulk delete. Setting this toFalseis useful for mass-deleting a bot's own messages withoutPermissions.manage_messages. WhenTrue, will fall back to single delete if messages are older than two weeks.reason (Optional[
str]) -- The reason for deleting the messages. Shows up on the audit log.
- Returns:
The list of messages that were deleted.
- Return type:
List[
Message]- Raises:
Forbidden -- You do not have proper permissions to do the actions required.
HTTPException -- Purging the messages failed.
Examples
Deleting bot's messages
def is_me(m): return m.author == client.user deleted = await channel.purge(limit=100, check=is_me) await channel.send(f'Deleted {len(deleted)} message(s)')
- await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None)#
This function is a coroutine.
Sends a message to the destination with the content given.
The content must be a type that can convert to a string through
str(content). If the content is set toNone(the default), then theembedparameter must be provided.To upload a single file, the
fileparameter should be used with a singleFileobject. To upload multiple files, thefilesparameter should be used with alistofFileobjects. Specifying both parameters will lead to an exception.To upload a single embed, the
embedparameter should be used with a singleEmbedobject. To upload multiple embeds, theembedsparameter should be used with alistofEmbedobjects. Specifying both parameters will lead to an exception.- Parameters:
content (Optional[
str]) -- The content of the message to send.tts (
bool) -- Indicates if the message should be sent using text-to-speech.embed (
Embed) -- The rich embed for the content.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.nonce (
int) -- The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value.delete_after (
float) -- If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored.allowed_mentions (
AllowedMentions) --Controls the mentions being processed in this message. If this is passed, then the object is merged with
allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.New in version 1.4.
reference (Union[
Message,MessageReference,PartialMessage]) --A reference to the
Messageto which you are replying, this can be created usingto_reference()or passed directly as aMessage. You can control whether this mentions the author of the referenced message using thereplied_userattribute ofallowed_mentionsor by settingmention_author.New in version 1.6.
mention_author (Optional[
bool]) --If set, overrides the
replied_userattribute ofallowed_mentions.New in version 1.6.
view (
discord.ui.View) -- A Discord UI View to add to the message.embeds (List[
Embed]) --A list of embeds to upload. Must be a maximum of 10.
New in version 2.0.
stickers (Sequence[Union[
GuildSticker,StickerItem]]) --A list of stickers to upload. Must be a maximum of 3.
New in version 2.0.
suppress (
bool) -- Whether to suppress embeds for the message.
- Returns:
The message that was sent.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
Forbidden -- You do not have the proper permissions to send the message.
InvalidArgument -- The
fileslist is not of the appropriate size, you specified bothfileandfiles, or you specified bothembedandembeds, or thereferenceobject is not aMessage,MessageReferenceorPartialMessage.
- await set_permissions(target, *, overwrite=..., reason=None, **permissions)#
This function is a coroutine.
Sets the channel specific permission overwrites for a target in the channel.
The
targetparameter should either be aMemberor aRolethat belongs to guild.The
overwriteparameter, if given, must either beNoneorPermissionOverwrite. For convenience, you can pass in keyword arguments denotingPermissionsattributes. If this is done, then you cannot mix the keyword arguments with theoverwriteparameter.If the
overwriteparameter isNone, then the permission overwrites are deleted.You must have the
manage_rolespermission to use this.Note
This method replaces the old overwrites with the ones given.
Examples
Setting allow and deny:
await message.channel.set_permissions(message.author, read_messages=True, send_messages=False)
Deleting overwrites
await channel.set_permissions(member, overwrite=None)
Using
PermissionOverwriteoverwrite = discord.PermissionOverwrite() overwrite.send_messages = False overwrite.read_messages = True await channel.set_permissions(member, overwrite=overwrite)
- Parameters:
target (Union[
Member,Role]) -- The member or role to overwrite permissions for.overwrite (Optional[
PermissionOverwrite]) -- The permissions to allow and deny to the target, orNoneto delete the overwrite.**permissions -- A keyword argument list of permissions to set for ease of use. Cannot be mixed with
overwrite.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.
- Raises:
Forbidden -- You do not have permissions to edit channel specific permissions.
HTTPException -- Editing channel specific permissions failed.
NotFound -- The role or member being edited is not part of the guild.
InvalidArgument -- The overwrite parameter invalid or the target type was not
RoleorMember.
- property threads#
Returns all the threads that you can see.
New in version 2.0.
- await trigger_typing()#
This function is a coroutine.
Triggers a typing indicator to the destination.
Typing indicator will go away after 10 seconds, or after a message is sent.
- Return type:
- property type#
The channel's Discord type.
- Return type:
ChannelType
- await webhooks()#
This function is a coroutine.
Gets the list of webhooks from this channel.
Requires
manage_webhookspermissions.
- available_tags
- category
- category_id
- changed_roles
- created_at
- default_auto_archive_duration
- default_sort_order
- default_thread_slowmode_delay
- flags
- guidelines
- guild
- id
- jump_url
- last_message
- last_message_id
- members
- mention
- name
- nsfw
- overwrites
- permissions_synced
- position
- requires_tag
- slowmode_delay
- threads
- topic
- type
- defarchived_threads
- asyncclone
- asynccreate_invite
- asynccreate_thread
- asynccreate_webhook
- asyncdelete
- asyncdelete_messages
- asyncedit
- asyncfollow
- defget_partial_message
- defget_tag
- defget_thread
- asyncinvites
- defis_nsfw
- asyncmove
- defoverwrites_for
- defpermissions_for
- asyncpurge
- asyncset_permissions
- asyncwebhooks
- class discord.ForumChannel(*, state, guild, data)[source]#
Represents a Discord forum channel.
- x == y
Checks if two channels are equal.
- x != y
Checks if two channels are not equal.
- hash(x)
Returns the channel's hash.
- str(x)
Returns the channel's name.
- topic#
The channel's topic.
Noneif it doesn't exist.Note
guidelinesexists as an alternative to this attribute.- Type:
Optional[
str]
- position#
The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be
Noneif the channel was received in an interaction.- Type:
Optional[
int]
- last_message_id#
The last message ID of the message sent to this channel. It may not point to an existing or valid message.
- Type:
Optional[
int]
- slowmode_delay#
The number of seconds a member must wait between sending messages in this channel. A value of 0 denotes that it is disabled. Bots and users with
manage_channelsormanage_messagesbypass slowmode.- Type:
- nsfw#
If the channel is marked as "not safe for work".
Note
To check if the channel or the guild of that channel are marked as NSFW, consider
is_nsfw()instead.- Type:
- default_auto_archive_duration#
The default auto archive duration in minutes for threads created in this channel.
New in version 2.0.
- Type:
- flags#
Extra features of the channel.
New in version 2.0.
- Type:
- available_tags#
The set of tags that can be used in a forum channel.
New in version 2.3.
- Type:
List[
ForumTag]
- default_sort_order#
The default sort order type used to order posts in this channel.
New in version 2.3.
- Type:
Optional[
SortOrder]
- default_thread_slowmode_delay#
The initial slowmode delay to set on newly created threads in this channel.
New in version 2.3.
- Type:
Optional[
int]
- Parameters:
state (ConnectionState) --
guild (Guild) --
data (ForumChannelPayload) --
- property requires_tag#
Whether a tag is required to be specified when creating a thread in this forum channel.
Tags are specified in
applied_tags.New in version 2.3.
- Return type:
- get_tag(id, /)[source]#
Returns the
ForumTagfrom this forum channel with the given ID, if any.New in version 2.3.
- Parameters:
id (int) --
- Return type:
ForumTag | None
- await edit(*, reason=None, **options)[source]#
This function is a coroutine.
Edits the channel.
You must have the
manage_channelspermission to use this.- Parameters:
name (
str) -- The new channel name.topic (
str) -- The new channel's topic.position (
int) -- The new channel's position.nsfw (
bool) -- To mark the channel as NSFW or not.sync_permissions (
bool) -- Whether to sync permissions with the channel's new or pre-existing category. Defaults toFalse.category (Optional[
CategoryChannel]) -- The new category for this channel. Can beNoneto remove the category.slowmode_delay (
int) -- Specifies the slowmode rate limit for user in this channel, in seconds. A value of 0 disables slowmode. The maximum value possible is 21600.reason (Optional[
str]) -- The reason for editing this channel. Shows up on the audit log.overwrites (Dict[Union[
Role,Member,Snowflake],PermissionOverwrite]) -- The overwrites to apply to channel permissions. Useful for creating secret channels.default_auto_archive_duration (
int) -- The new default auto archive duration in minutes for threads created in this channel. Must be one of60,1440,4320, or10080.default_thread_slowmode_delay (
int) --The new default slowmode delay in seconds for threads created in this channel.
New in version 2.3.
default_sort_order (Optional[
SortOrder]) --The default sort order type to use to order posts in this channel.
New in version 2.3.
available_tags (List[
ForumTag]) --The set of tags that can be used in this channel. Must be less than 20.
New in version 2.3.
require_tag (
bool) --Whether a tag should be required to be specified when creating a thread in this channel.
New in version 2.3.
- Returns:
The newly edited forum channel. If the edit was only positional then
Noneis returned instead.- Return type:
Optional[
ForumChannel]- Raises:
InvalidArgument -- If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form.
Forbidden -- You do not have permissions to edit the channel.
HTTPException -- Editing the channel failed.
- await create_thread(name, content=None, *, embed=None, embeds=None, file=None, files=None, stickers=None, delete_message_after=None, nonce=None, allowed_mentions=None, view=None, applied_tags=None, auto_archive_duration=..., slowmode_delay=..., reason=None)[source]#
This function is a coroutine.
Creates a thread in this forum channel.
To create a public thread, you must have
create_public_threads. For a private thread,create_private_threadsis needed instead.New in version 2.0.
- Parameters:
name (
str) -- The name of the thread.content (
str) -- The content of the message to send.embed (
Embed) -- The rich embed for the content.embeds (List[
Embed]) -- A list of embeds to upload. Must be a maximum of 10.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.stickers (Sequence[Union[
GuildSticker,StickerItem]]) -- A list of stickers to upload. Must be a maximum of 3.delete_message_after (
int) -- The time to wait before deleting the thread.nonce (
int) -- The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value.allowed_mentions (
AllowedMentions) -- Controls the mentions being processed in this message. If this is passed, then the object is merged withallowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.view (
discord.ui.View) -- A Discord UI View to add to the message.applied_tags (List[
discord.ForumTag]) -- A list of tags to apply to the new thread.auto_archive_duration (
int) -- The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used.slowmode_delay (
int) -- The number of seconds a member must wait between sending messages in the new thread. A value of 0 denotes that it is disabled. Bots and users withmanage_channelsormanage_messagesbypass slowmode. If not provided, the forum channel's default slowmode is used.reason (
str) -- The reason for creating a new thread. Shows up on the audit log.
- Returns:
The created thread
- Return type:
- Raises:
Forbidden -- You do not have permissions to create a thread.
HTTPException -- Starting the thread failed.
- archived_threads(*, private=False, joined=False, limit=50, before=None)#
Returns an
AsyncIteratorthat iterates over all archived threads in the guild.You must have
read_message_historyto use this. If iterating over private threads thenmanage_threadsis also required.New in version 2.0.
- Parameters:
limit (Optional[
bool]) -- The number of threads to retrieve. IfNone, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Retrieve archived channels before the given date or ID.private (
bool) -- Whether to retrieve private archived threads.joined (
bool) -- Whether to retrieve private archived threads that you've joined. You cannot setjoinedtoTrueandprivatetoFalse.
- Yields:
Thread-- The archived threads.- Raises:
Forbidden -- You do not have permissions to get archived threads.
HTTPException -- The request to get the archived threads failed.
- Return type:
ArchivedThreadIterator
- property category#
The category this channel belongs to.
If there is no category then this is
None.- Return type:
CategoryChannel | None
- property changed_roles#
Returns a list of roles that have been overridden from their default values in the
rolesattribute.
- await clone(*, name=None, reason=None)#
This function is a coroutine.
Clones this channel. This creates a channel with the same properties as this channel.
You must have the
manage_channelspermission to do this.New in version 1.1.
- Parameters:
- Returns:
The channel that was created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
- await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_event=None, target_type=None, target_user=None, target_application_id=None)#
This function is a coroutine.
Creates an instant invite from a text or voice channel.
You must have the
create_instant_invitepermission to do this.- Parameters:
max_age (
int) -- How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to0.max_uses (
int) -- How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to0.temporary (
bool) -- Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults toFalse.unique (
bool) -- Indicates if a unique invite URL should be created. Defaults to True. If this is set toFalsethen it will return a previously created invite.reason (Optional[
str]) -- The reason for creating this invite. Shows up on the audit log.target_type (Optional[
InviteTarget]) --The type of target for the voice channel invite, if any.
New in version 2.0.
target_user (Optional[
User]) --The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.
New in version 2.0.
target_application_id (Optional[
int]) --The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.
New in version 2.0.
target_event (Optional[
ScheduledEvent]) --The scheduled event object to link to the event. Shortcut to
Invite.set_scheduled_event()See
Invite.set_scheduled_event()for more info on event invite linking.New in version 2.0.
- Returns:
The invite that was created.
- Return type:
- Raises:
HTTPException -- Invite creation failed.
NotFound -- The channel that was passed is a category or an invalid channel.
- await create_webhook(*, name, avatar=None, reason=None)#
This function is a coroutine.
Creates a webhook for this channel.
Requires
manage_webhookspermissions.Changed in version 1.1: Added the
reasonkeyword-only parameter.- Parameters:
name (
str) -- The webhook's name.avatar (Optional[
bytes]) -- A bytes-like object representing the webhook's default avatar. This operates similarly toedit().reason (Optional[
str]) -- The reason for creating this webhook. Shows up in the audit logs.
- Returns:
The created webhook.
- Return type:
- Raises:
HTTPException -- Creating the webhook failed.
Forbidden -- You do not have permissions to create a webhook.
- await delete(*, reason=None)#
This function is a coroutine.
Deletes the channel.
You must have
manage_channelspermission to use this.- Parameters:
reason (Optional[
str]) -- The reason for deleting this channel. Shows up on the audit log.- Raises:
Forbidden -- You do not have proper permissions to delete the channel.
NotFound -- The channel was not found or was already deleted.
HTTPException -- Deleting the channel failed.
- Return type:
None
- await delete_messages(messages, *, reason=None)#
This function is a coroutine.
Deletes a list of messages. This is similar to
Message.delete()except it bulk deletes multiple messages.As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used.
You cannot bulk delete more than 100 messages or messages that are older than 14 days old.
You must have the
manage_messagespermission to use this.- Parameters:
messages (Iterable[
abc.Snowflake]) -- An iterable of messages denoting which ones to bulk delete.reason (Optional[
str]) -- The reason for deleting the messages. Shows up on the audit log.
- Raises:
ClientException -- The number of messages to delete was more than 100.
Forbidden -- You do not have proper permissions to delete the messages.
NotFound -- If single delete, then the message was already deleted.
HTTPException -- Deleting the messages failed.
- Return type:
None
- await follow(*, destination, reason=None)#
Follows a channel using a webhook.
Only news channels can be followed.
Note
The webhook returned will not provide a token to do webhook actions, as Discord does not provide it.
New in version 1.3.
- Parameters:
destination (
TextChannel) -- The channel you would like to follow from.reason (Optional[
str]) --The reason for following the channel. Shows up on the destination guild's audit log.
New in version 1.4.
- Returns:
The created webhook.
- Return type:
- Raises:
HTTPException -- Following the channel failed.
Forbidden -- You do not have the permissions to create a webhook.
- get_partial_message(message_id, /)#
Creates a
PartialMessagefrom the message ID.This is useful if you want to work with a message and only have its ID without doing an unnecessary API call.
New in version 1.6.
- Parameters:
message_id (
int) -- The message ID to create a partial message for.- Returns:
The partial message.
- Return type:
- get_thread(thread_id, /)#
Returns a thread with the given ID.
New in version 2.0.
- await invites()#
This function is a coroutine.
Returns a list of all active instant invites from this channel.
You must have
manage_channelsto get this information.- Returns:
The list of invites that are currently active.
- Return type:
List[
Invite]- Raises:
Forbidden -- You do not have proper permissions to get the information.
HTTPException -- An error occurred while fetching the information.
- property jump_url#
Returns a URL that allows the client to jump to the channel.
New in version 2.0.
- Return type:
- property last_message#
Fetches the last message from this channel in cache.
The message might not be valid or point to an existing message.
Reliable Fetching
For a slightly more reliable method of fetching the last message, consider using either
history()orfetch_message()with thelast_message_idattribute.- Returns:
The last message in this channel or
Noneif not found.- Return type:
Optional[
Message]
- await move(**kwargs)#
This function is a coroutine.
A rich interface to help move a channel relative to other channels.
If exact position movement is required,
editshould be used instead.You must have the
manage_channelspermission to do this.Note
Voice channels will always be sorted below text channels. This is a Discord limitation.
New in version 1.7.
- Parameters:
beginning (
bool) -- Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive withend,before, andafter.end (
bool) -- Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive withbeginning,before, andafter.before (
Snowflake) -- The channel that should be before our current channel. This is mutually exclusive withbeginning,end, andafter.after (
Snowflake) -- The channel that should be after our current channel. This is mutually exclusive withbeginning,end, andbefore.offset (
int) -- The number of channels to offset the move by. For example, an offset of2withbeginning=Truewould move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after thebeginning,end,before, andafterparameters.category (Optional[
Snowflake]) -- The category to move this channel under. IfNoneis given then it moves it out of the category. This parameter is ignored if moving a category channel.sync_permissions (
bool) -- Whether to sync the permissions with the category (if given).reason (
str) -- The reason for the move.
- Raises:
InvalidArgument -- An invalid position was given or a bad mix of arguments was passed.
Forbidden -- You do not have permissions to move the channel.
HTTPException -- Moving the channel failed.
- Return type:
- property overwrites#
Returns all of the channel's overwrites.
This is returned as a dictionary where the key contains the target which can be either a
Roleor aMemberand the value is the overwrite as aPermissionOverwrite.- Returns:
The channel's permission overwrites.
- Return type:
Dict[Union[
Role,Member],PermissionOverwrite]
- overwrites_for(obj)#
Returns the channel-specific overwrites for a member or a role.
- permissions_for(obj, /)#
Handles permission resolution for the
MemberorRole.This function takes into consideration the following cases:
Guild owner
Guild roles
Channel overrides
Member overrides
If a
Roleis passed, then it checks the permissions someone with that role would have, which is essentially:The default role permissions
The permissions of the role used as a parameter
The default role permission overwrites
The permission overwrites of the role used as a parameter
Changed in version 2.0: The object passed in can now be a role object.
- property permissions_synced#
Whether the permissions for this channel are synced with the category it belongs to.
If there is no category then this is
False.New in version 1.3.
- Return type:
- await purge(*, limit=100, check=..., before=None, after=None, around=None, oldest_first=False, bulk=True, reason=None)#
This function is a coroutine.
Purges a list of messages that meet the criteria given by the predicate
check. If acheckis not provided then all messages are deleted without discrimination.You must have the
manage_messagespermission to delete messages even if they are your own. Theread_message_historypermission is also needed to retrieve message history.- Parameters:
limit (Optional[
int]) -- The number of messages to search through. This is not the number of messages that will be deleted, though it can be.check (Callable[[
Message],bool]) -- The function used to check if a message should be deleted. It must take aMessageas its sole parameter.before (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asbeforeinhistory().after (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asafterinhistory().around (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asaroundinhistory().oldest_first (Optional[
bool]) -- Same asoldest_firstinhistory().bulk (
bool) -- IfTrue, use bulk delete. Setting this toFalseis useful for mass-deleting a bot's own messages withoutPermissions.manage_messages. WhenTrue, will fall back to single delete if messages are older than two weeks.reason (Optional[
str]) -- The reason for deleting the messages. Shows up on the audit log.
- Returns:
The list of messages that were deleted.
- Return type:
List[
Message]- Raises:
Forbidden -- You do not have proper permissions to do the actions required.
HTTPException -- Purging the messages failed.
Examples
Deleting bot's messages
def is_me(m): return m.author == client.user deleted = await channel.purge(limit=100, check=is_me) await channel.send(f'Deleted {len(deleted)} message(s)')
- await set_permissions(target, *, overwrite=..., reason=None, **permissions)#
This function is a coroutine.
Sets the channel specific permission overwrites for a target in the channel.
The
targetparameter should either be aMemberor aRolethat belongs to guild.The
overwriteparameter, if given, must either beNoneorPermissionOverwrite. For convenience, you can pass in keyword arguments denotingPermissionsattributes. If this is done, then you cannot mix the keyword arguments with theoverwriteparameter.If the
overwriteparameter isNone, then the permission overwrites are deleted.You must have the
manage_rolespermission to use this.Note
This method replaces the old overwrites with the ones given.
Examples
Setting allow and deny:
await message.channel.set_permissions(message.author, read_messages=True, send_messages=False)
Deleting overwrites
await channel.set_permissions(member, overwrite=None)
Using
PermissionOverwriteoverwrite = discord.PermissionOverwrite() overwrite.send_messages = False overwrite.read_messages = True await channel.set_permissions(member, overwrite=overwrite)
- Parameters:
target (Union[
Member,Role]) -- The member or role to overwrite permissions for.overwrite (Optional[
PermissionOverwrite]) -- The permissions to allow and deny to the target, orNoneto delete the overwrite.**permissions -- A keyword argument list of permissions to set for ease of use. Cannot be mixed with
overwrite.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.
- Raises:
Forbidden -- You do not have permissions to edit channel specific permissions.
HTTPException -- Editing channel specific permissions failed.
NotFound -- The role or member being edited is not part of the guild.
InvalidArgument -- The overwrite parameter invalid or the target type was not
RoleorMember.
- property threads#
Returns all the threads that you can see.
New in version 2.0.
- property type#
The channel's Discord type.
- Return type:
ChannelType
- await webhooks()#
This function is a coroutine.
Gets the list of webhooks from this channel.
Requires
manage_webhookspermissions.
- defcan_send
- asyncclone
- asyncconnect
- asynccreate_activity_invite
- asynccreate_invite
- asynccreate_webhook
- asyncdelete
- asyncdelete_messages
- asyncedit
- asyncfetch_message
- defget_partial_message
- defhistory
- asyncinvites
- defis_nsfw
- asyncmove
- defoverwrites_for
- defpermissions_for
- asyncpins
- asyncpurge
- asyncsend
- asyncset_permissions
- asynctrigger_typing
- deftyping
- asyncwebhooks
- class discord.VoiceChannel(*, state, guild, data)[source]#
Represents a Discord guild voice channel.
- x == y
Checks if two channels are equal.
- x != y
Checks if two channels are not equal.
- hash(x)
Returns the channel's hash.
- str(x)
Returns the channel's name.
- position#
The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be
Noneif the channel was received in an interaction.- Type:
Optional[
int]
- rtc_region#
The region for the voice channel's voice communication. A value of
Noneindicates automatic voice region detection.New in version 1.7.
- Type:
Optional[
VoiceRegion]
- video_quality_mode#
The camera video quality for the voice channel's participants.
New in version 2.0.
- Type:
- last_message_id#
The ID of the last message sent to this channel. It may not always point to an existing or valid message.
New in version 2.0.
- Type:
Optional[
int]
- flags#
Extra features of the channel.
New in version 2.0.
- Type:
- Parameters:
state (ConnectionState) --
guild (Guild) --
data (VoiceChannelPayload | StageChannelPayload) --
- property last_message#
Fetches the last message from this channel in cache.
The message might not be valid or point to an existing message.
Reliable Fetching
For a slightly more reliable method of fetching the last message, consider using either
history()orfetch_message()with thelast_message_idattribute.- Returns:
The last message in this channel or
Noneif not found.- Return type:
Optional[
Message]
- get_partial_message(message_id, /)[source]#
Creates a
PartialMessagefrom the message ID.This is useful if you want to work with a message and only have its ID without doing an unnecessary API call.
New in version 1.6.
- Parameters:
message_id (
int) -- The message ID to create a partial message for.- Returns:
The partial message.
- Return type:
- await delete_messages(messages, *, reason=None)[source]#
This function is a coroutine.
Deletes a list of messages. This is similar to
Message.delete()except it bulk deletes multiple messages.As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used.
You cannot bulk delete more than 100 messages or messages that are older than 14 days old.
You must have the
manage_messagespermission to use this.- Parameters:
messages (Iterable[
abc.Snowflake]) -- An iterable of messages denoting which ones to bulk delete.reason (Optional[
str]) -- The reason for deleting the messages. Shows up on the audit log.
- Raises:
ClientException -- The number of messages to delete was more than 100.
Forbidden -- You do not have proper permissions to delete the messages.
NotFound -- If single delete, then the message was already deleted.
HTTPException -- Deleting the messages failed.
- Return type:
None
- await purge(*, limit=100, check=..., before=None, after=None, around=None, oldest_first=False, bulk=True, reason=None)[source]#
This function is a coroutine.
Purges a list of messages that meet the criteria given by the predicate
check. If acheckis not provided then all messages are deleted without discrimination.You must have the
manage_messagespermission to delete messages even if they are your own. Theread_message_historypermission is also needed to retrieve message history.- Parameters:
limit (Optional[
int]) -- The number of messages to search through. This is not the number of messages that will be deleted, though it can be.check (Callable[[
Message],bool]) -- The function used to check if a message should be deleted. It must take aMessageas its sole parameter.before (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asbeforeinhistory().after (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asafterinhistory().around (Optional[Union[
abc.Snowflake,datetime.datetime]]) -- Same asaroundinhistory().oldest_first (Optional[
bool]) -- Same asoldest_firstinhistory().bulk (
bool) -- IfTrue, use bulk delete. Setting this toFalseis useful for mass-deleting a bot's own messages withoutPermissions.manage_messages. WhenTrue, will fall back to single delete if messages are older than two weeks.reason (Optional[
str]) -- The reason for deleting the messages. Shows up on the audit log.
- Returns:
The list of messages that were deleted.
- Return type:
List[
Message]- Raises:
Forbidden -- You do not have proper permissions to do the actions required.
HTTPException -- Purging the messages failed.
Examples
Deleting bot's messages
def is_me(m): return m.author == client.user deleted = await channel.purge(limit=100, check=is_me) await channel.send(f'Deleted {len(deleted)} message(s)')
- await webhooks()[source]#
This function is a coroutine.
Gets the list of webhooks from this channel.
Requires
manage_webhookspermissions.
- await create_webhook(*, name, avatar=None, reason=None)[source]#
This function is a coroutine.
Creates a webhook for this channel.
Requires
manage_webhookspermissions.Changed in version 1.1: Added the
reasonkeyword-only parameter.- Parameters:
name (
str) -- The webhook's name.avatar (Optional[
bytes]) -- A bytes-like object representing the webhook's default avatar. This operates similarly toedit().reason (Optional[
str]) -- The reason for creating this webhook. Shows up in the audit logs.
- Returns:
The created webhook.
- Return type:
- Raises:
HTTPException -- Creating the webhook failed.
Forbidden -- You do not have permissions to create a webhook.
- property type#
The channel's Discord type.
- Return type:
ChannelType
- await clone(*, name=None, reason=None)[source]#
This function is a coroutine.
Clones this channel. This creates a channel with the same properties as this channel.
You must have the
manage_channelspermission to do this.New in version 1.1.
- Parameters:
- Returns:
The channel that was created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
- await edit(*, reason=None, **options)[source]#
This function is a coroutine.
Edits the channel.
You must have the
manage_channelspermission to use this.Changed in version 1.3: The
overwriteskeyword-only parameter was added.Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.
- Parameters:
name (
str) -- The new channel's name.bitrate (
int) -- The new channel's bitrate.user_limit (
int) -- The new channel's user limit.position (
int) -- The new channel's position.sync_permissions (
bool) -- Whether to sync permissions with the channel's new or pre-existing category. Defaults toFalse.category (Optional[
CategoryChannel]) -- The new category for this channel. Can beNoneto remove the category.reason (Optional[
str]) -- The reason for editing this channel. Shows up on the audit log.overwrites (Dict[Union[
Role,Member,Snowflake],PermissionOverwrite]) -- The overwrites to apply to channel permissions. Useful for creating secret channels.rtc_region (Optional[
VoiceRegion]) --The new region for the voice channel's voice communication. A value of
Noneindicates automatic voice region detection.New in version 1.7.
video_quality_mode (
VideoQualityMode) --The camera video quality for the voice channel's participants.
New in version 2.0.
- Returns:
The newly edited voice channel. If the edit was only positional then
Noneis returned instead.- Return type:
Optional[
VoiceChannel]- Raises:
InvalidArgument -- If the permission overwrite information is not in proper form.
Forbidden -- You do not have permissions to edit the channel.
HTTPException -- Editing the channel failed.
- await create_activity_invite(activity, **kwargs)[source]#
This function is a coroutine.
A shortcut method that creates an instant activity invite.
You must have the
start_embedded_activitiespermission to do this.- Parameters:
activity (Union[
discord.EmbeddedActivity,int]) -- The activity to create an invite for which can be an application id as well.max_age (
int) -- How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to0.max_uses (
int) -- How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to0.temporary (
bool) -- Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults toFalse.unique (
bool) -- Indicates if a unique invite URL should be created. Defaults to True. If this is set toFalsethen it will return a previously created invite.reason (Optional[
str]) -- The reason for creating this invite. Shows up on the audit log.
- Returns:
The invite that was created.
- Return type:
- Raises:
TypeError -- If the activity is not a valid activity or application id.
HTTPException -- Invite creation failed.
- can_send(*objects)#
Returns a
boolindicating whether you have the permissions to send the object(s).
- property category#
The category this channel belongs to.
If there is no category then this is
None.- Return type:
CategoryChannel | None
- property changed_roles#
Returns a list of roles that have been overridden from their default values in the
rolesattribute.
- await connect(*, timeout=60.0, reconnect=True, cls=<class 'discord.voice_client.VoiceClient'>)#
This function is a coroutine.
Connects to voice and creates a
VoiceClientto establish your connection to the voice server.This requires
Intents.voice_states.- Parameters:
timeout (
float) -- The timeout in seconds to wait for the voice endpoint.reconnect (
bool) -- Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down.cls (Type[
VoiceProtocol]) -- A type that subclassesVoiceProtocolto connect with. Defaults toVoiceClient.
- Returns:
A voice client that is fully connected to the voice server.
- Return type:
- Raises:
asyncio.TimeoutError -- Could not connect to the voice channel in time.
ClientException -- You are already connected to a voice channel.
OpusNotLoaded -- The opus library has not been loaded.
- await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_event=None, target_type=None, target_user=None, target_application_id=None)#
This function is a coroutine.
Creates an instant invite from a text or voice channel.
You must have the
create_instant_invitepermission to do this.- Parameters:
max_age (
int) -- How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to0.max_uses (
int) -- How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to0.temporary (
bool) -- Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults toFalse.unique (
bool) -- Indicates if a unique invite URL should be created. Defaults to True. If this is set toFalsethen it will return a previously created invite.reason (Optional[
str]) -- The reason for creating this invite. Shows up on the audit log.target_type (Optional[
InviteTarget]) --The type of target for the voice channel invite, if any.
New in version 2.0.
target_user (Optional[
User]) --The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.
New in version 2.0.
target_application_id (Optional[
int]) --The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.
New in version 2.0.
target_event (Optional[
ScheduledEvent]) --The scheduled event object to link to the event. Shortcut to
Invite.set_scheduled_event()See
Invite.set_scheduled_event()for more info on event invite linking.New in version 2.0.
- Returns:
The invite that was created.
- Return type:
- Raises:
HTTPException -- Invite creation failed.
NotFound -- The channel that was passed is a category or an invalid channel.
- await delete(*, reason=None)#
This function is a coroutine.
Deletes the channel.
You must have
manage_channelspermission to use this.- Parameters:
reason (Optional[
str]) -- The reason for deleting this channel. Shows up on the audit log.- Raises:
Forbidden -- You do not have proper permissions to delete the channel.
NotFound -- The channel was not found or was already deleted.
HTTPException -- Deleting the channel failed.
- Return type:
None
- await fetch_message(id, /)#
This function is a coroutine.
Retrieves a single
Messagefrom the destination.- Parameters:
id (
int) -- The message ID to look for.- Returns:
The message asked for.
- Return type:
- Raises:
NotFound -- The specified message was not found.
Forbidden -- You do not have the permissions required to get a message.
HTTPException -- Retrieving the message failed.
- history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#
Returns an
AsyncIteratorthat enables receiving the destination's message history.You must have
read_message_historypermissions to use this.- Parameters:
limit (Optional[
int]) -- The number of messages to retrieve. IfNone, retrieves every message in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.around (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages.oldest_first (Optional[
bool]) -- If set toTrue, return messages in oldest->newest order. Defaults toTrueifafteris specified, otherwiseFalse.
- Yields:
Message-- The message with the message data parsed.- Raises:
Forbidden -- You do not have permissions to get channel message history.
HTTPException -- The request to get message history failed.
Examples
Usage
counter = 0 async for message in channel.history(limit=200): if message.author == client.user: counter += 1
Flattening into a list:
messages = await channel.history(limit=123).flatten() # messages is now a list of Message...
All parameters are optional.
- Return type:
HistoryIterator
- await invites()#
This function is a coroutine.
Returns a list of all active instant invites from this channel.
You must have
manage_channelsto get this information.- Returns:
The list of invites that are currently active.
- Return type:
List[
Invite]- Raises:
Forbidden -- You do not have proper permissions to get the information.
HTTPException -- An error occurred while fetching the information.
- property jump_url#
Returns a URL that allows the client to jump to the channel.
New in version 2.0.
- Return type:
- property members#
Returns all members that are currently inside this voice channel.
- await move(**kwargs)#
This function is a coroutine.
A rich interface to help move a channel relative to other channels.
If exact position movement is required,
editshould be used instead.You must have the
manage_channelspermission to do this.Note
Voice channels will always be sorted below text channels. This is a Discord limitation.
New in version 1.7.
- Parameters:
beginning (
bool) -- Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive withend,before, andafter.end (
bool) -- Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive withbeginning,before, andafter.before (
Snowflake) -- The channel that should be before our current channel. This is mutually exclusive withbeginning,end, andafter.after (
Snowflake) -- The channel that should be after our current channel. This is mutually exclusive withbeginning,end, andbefore.offset (
int) -- The number of channels to offset the move by. For example, an offset of2withbeginning=Truewould move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after thebeginning,end,before, andafterparameters.category (Optional[
Snowflake]) -- The category to move this channel under. IfNoneis given then it moves it out of the category. This parameter is ignored if moving a category channel.sync_permissions (
bool) -- Whether to sync the permissions with the category (if given).reason (
str) -- The reason for the move.
- Raises:
InvalidArgument -- An invalid position was given or a bad mix of arguments was passed.
Forbidden -- You do not have permissions to move the channel.
HTTPException -- Moving the channel failed.
- Return type:
- property overwrites#
Returns all of the channel's overwrites.
This is returned as a dictionary where the key contains the target which can be either a
Roleor aMemberand the value is the overwrite as aPermissionOverwrite.- Returns:
The channel's permission overwrites.
- Return type:
Dict[Union[
Role,Member],PermissionOverwrite]
- overwrites_for(obj)#
Returns the channel-specific overwrites for a member or a role.
- permissions_for(obj, /)#
Handles permission resolution for the
MemberorRole.This function takes into consideration the following cases:
Guild owner
Guild roles
Channel overrides
Member overrides
If a
Roleis passed, then it checks the permissions someone with that role would have, which is essentially:The default role permissions
The permissions of the role used as a parameter
The default role permission overwrites
The permission overwrites of the role used as a parameter
Changed in version 2.0: The object passed in can now be a role object.
- property permissions_synced#
Whether the permissions for this channel are synced with the category it belongs to.
If there is no category then this is
False.New in version 1.3.
- Return type:
- await pins()#
This function is a coroutine.
Retrieves all messages that are currently pinned in the channel.
Note
Due to a limitation with the Discord API, the
Messageobjects returned by this method do not contain completeMessage.reactionsdata.- Returns:
The messages that are currently pinned.
- Return type:
List[
Message]- Raises:
HTTPException -- Retrieving the pinned messages failed.
- await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None)#
This function is a coroutine.
Sends a message to the destination with the content given.
The content must be a type that can convert to a string through
str(content). If the content is set toNone(the default), then theembedparameter must be provided.To upload a single file, the
fileparameter should be used with a singleFileobject. To upload multiple files, thefilesparameter should be used with alistofFileobjects. Specifying both parameters will lead to an exception.To upload a single embed, the
embedparameter should be used with a singleEmbedobject. To upload multiple embeds, theembedsparameter should be used with alistofEmbedobjects. Specifying both parameters will lead to an exception.- Parameters:
content (Optional[
str]) -- The content of the message to send.tts (
bool) -- Indicates if the message should be sent using text-to-speech.embed (
Embed) -- The rich embed for the content.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.nonce (
int) -- The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value.delete_after (
float) -- If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored.allowed_mentions (
AllowedMentions) --Controls the mentions being processed in this message. If this is passed, then the object is merged with
allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.New in version 1.4.
reference (Union[
Message,MessageReference,PartialMessage]) --A reference to the
Messageto which you are replying, this can be created usingto_reference()or passed directly as aMessage. You can control whether this mentions the author of the referenced message using thereplied_userattribute ofallowed_mentionsor by settingmention_author.New in version 1.6.
mention_author (Optional[
bool]) --If set, overrides the
replied_userattribute ofallowed_mentions.New in version 1.6.
view (
discord.ui.View) -- A Discord UI View to add to the message.embeds (List[
Embed]) --A list of embeds to upload. Must be a maximum of 10.
New in version 2.0.
stickers (Sequence[Union[
GuildSticker,StickerItem]]) --A list of stickers to upload. Must be a maximum of 3.
New in version 2.0.
suppress (
bool) -- Whether to suppress embeds for the message.
- Returns:
The message that was sent.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
Forbidden -- You do not have the proper permissions to send the message.
InvalidArgument -- The
fileslist is not of the appropriate size, you specified bothfileandfiles, or you specified bothembedandembeds, or thereferenceobject is not aMessage,MessageReferenceorPartialMessage.
- await set_permissions(target, *, overwrite=..., reason=None, **permissions)#
This function is a coroutine.
Sets the channel specific permission overwrites for a target in the channel.
The
targetparameter should either be aMemberor aRolethat belongs to guild.The
overwriteparameter, if given, must either beNoneorPermissionOverwrite. For convenience, you can pass in keyword arguments denotingPermissionsattributes. If this is done, then you cannot mix the keyword arguments with theoverwriteparameter.If the
overwriteparameter isNone, then the permission overwrites are deleted.You must have the
manage_rolespermission to use this.Note
This method replaces the old overwrites with the ones given.
Examples
Setting allow and deny:
await message.channel.set_permissions(message.author, read_messages=True, send_messages=False)
Deleting overwrites
await channel.set_permissions(member, overwrite=None)
Using
PermissionOverwriteoverwrite = discord.PermissionOverwrite() overwrite.send_messages = False overwrite.read_messages = True await channel.set_permissions(member, overwrite=overwrite)
- Parameters:
target (Union[
Member,Role]) -- The member or role to overwrite permissions for.overwrite (Optional[
PermissionOverwrite]) -- The permissions to allow and deny to the target, orNoneto delete the overwrite.**permissions -- A keyword argument list of permissions to set for ease of use. Cannot be mixed with
overwrite.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.
- Raises:
Forbidden -- You do not have permissions to edit channel specific permissions.
HTTPException -- Editing channel specific permissions failed.
NotFound -- The role or member being edited is not part of the guild.
InvalidArgument -- The overwrite parameter invalid or the target type was not
RoleorMember.
- await trigger_typing()#
This function is a coroutine.
Triggers a typing indicator to the destination.
Typing indicator will go away after 10 seconds, or after a message is sent.
- Return type:
- typing()#
Returns a context manager that allows you to type for an indefinite period of time.
This is useful for denoting long computations in your bot.
Note
This is both a regular context manager and an async context manager. This means that both
withandasync withwork with this.Example Usage:
async with channel.typing(): # simulate something heavy await asyncio.sleep(10) await channel.send('done!')
- Return type:
Typing
- property voice_states#
Returns a mapping of member IDs who have voice states in this channel.
New in version 1.3.
Note
This function is intentionally low level to replace
memberswhen the member cache is unavailable.- Returns:
The mapping of member ID to a voice state.
- Return type:
Mapping[
int,VoiceState]
- asyncclone
- asynccreate_forum_channel
- asynccreate_invite
- asynccreate_stage_channel
- asynccreate_text_channel
- asynccreate_voice_channel
- asyncdelete
- asyncedit
- asyncinvites
- defis_nsfw
- asyncmove
- defoverwrites_for
- defpermissions_for
- asyncset_permissions
- class discord.CategoryChannel(*, state, guild, data)[source]#
Represents a Discord channel category.
These are useful to group channels to logical compartments.
- x == y
Checks if two channels are equal.
- x != y
Checks if two channels are not equal.
- hash(x)
Returns the category's hash.
- str(x)
Returns the category's name.
- position#
The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be
Noneif the channel was received in an interaction.- Type:
Optional[
int]
- nsfw#
If the channel is marked as "not safe for work".
Note
To check if the channel or the guild of that channel are marked as NSFW, consider
is_nsfw()instead.- Type:
- flags#
Extra features of the channel.
New in version 2.0.
- Type:
- Parameters:
state (ConnectionState) --
guild (Guild) --
data (CategoryChannelPayload) --
- property type#
The channel's Discord type.
- Return type:
ChannelType
- await clone(*, name=None, reason=None)[source]#
This function is a coroutine.
Clones this channel. This creates a channel with the same properties as this channel.
You must have the
manage_channelspermission to do this.New in version 1.1.
- Parameters:
- Returns:
The channel that was created.
- Return type:
- Raises:
Forbidden -- You do not have the proper permissions to create this channel.
HTTPException -- Creating the channel failed.
- await edit(*, reason=None, **options)[source]#
This function is a coroutine.
Edits the channel.
You must have the
manage_channelspermission to use this.Changed in version 1.3: The
overwriteskeyword-only parameter was added.Changed in version 2.0: Edits are no longer in-place, the newly edited channel is returned instead.
- Parameters:
name (
str) -- The new category's name.position (
int) -- The new category's position.nsfw (
bool) -- To mark the category as NSFW or not.reason (Optional[
str]) -- The reason for editing this category. Shows up on the audit log.overwrites (Dict[Union[
Role,Member,Snowflake],PermissionOverwrite]) -- The overwrites to apply to channel permissions. Useful for creating secret channels.
- Returns:
The newly edited category channel. If the edit was only positional then
Noneis returned instead.- Return type:
Optional[
CategoryChannel]- Raises:
InvalidArgument -- If position is less than 0 or greater than the number of categories.
Forbidden -- You do not have permissions to edit the category.
HTTPException -- Editing the category failed.
- await move(**kwargs)[source]#
This function is a coroutine.
A rich interface to help move a channel relative to other channels.
If exact position movement is required,
editshould be used instead.You must have the
manage_channelspermission to do this.Note
Voice channels will always be sorted below text channels. This is a Discord limitation.
New in version 1.7.
- Parameters:
beginning (
bool) -- Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive withend,before, andafter.end (
bool) -- Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive withbeginning,before, andafter.before (
Snowflake) -- The channel that should be before our current channel. This is mutually exclusive withbeginning,end, andafter.after (
Snowflake) -- The channel that should be after our current channel. This is mutually exclusive withbeginning,end, andbefore.offset (
int) -- The number of channels to offset the move by. For example, an offset of2withbeginning=Truewould move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after thebeginning,end,before, andafterparameters.category (Optional[
Snowflake]) -- The category to move this channel under. IfNoneis given then it moves it out of the category. This parameter is ignored if moving a category channel.sync_permissions (
bool) -- Whether to sync the permissions with the category (if given).reason (
str) -- The reason for the move.
- Raises:
InvalidArgument -- An invalid position was given or a bad mix of arguments was passed.
Forbidden -- You do not have permissions to move the channel.
HTTPException -- Moving the channel failed.
- property channels#
Returns the channels that are under this category.
These are sorted by the official Discord UI, which places voice channels below the text channels.
- Return type:
list[GuildChannelType]
- property text_channels#
Returns the text channels that are under this category.
- property voice_channels#
Returns the voice channels that are under this category.
- property stage_channels#
Returns the stage channels that are under this category.
New in version 1.7.
- property forum_channels#
Returns the forum channels that are under this category.
New in version 2.0.
- await create_text_channel(name, **options)[source]#
This function is a coroutine.
A shortcut method to
Guild.create_text_channel()to create aTextChannelin the category.- Returns:
The channel that was just created.
- Return type:
- Parameters:
- await create_voice_channel(name, **options)[source]#
This function is a coroutine.
A shortcut method to
Guild.create_voice_channel()to create aVoiceChannelin the category.- Returns:
The channel that was just created.
- Return type:
- Parameters:
- await create_stage_channel(name, **options)[source]#
This function is a coroutine.
A shortcut method to
Guild.create_stage_channel()to create aStageChannelin the category.New in version 1.7.
- Returns:
The channel that was just created.
- Return type:
- Parameters:
- await create_forum_channel(name, **options)[source]#
This function is a coroutine.
A shortcut method to
Guild.create_forum_channel()to create aForumChannelin the category.New in version 2.0.
- Returns:
The channel that was just created.
- Return type:
- Parameters:
- property category#
The category this channel belongs to.
If there is no category then this is
None.- Return type:
CategoryChannel | None
- property changed_roles#
Returns a list of roles that have been overridden from their default values in the
rolesattribute.
- await create_invite(*, reason=None, max_age=0, max_uses=0, temporary=False, unique=True, target_event=None, target_type=None, target_user=None, target_application_id=None)#
This function is a coroutine.
Creates an instant invite from a text or voice channel.
You must have the
create_instant_invitepermission to do this.- Parameters:
max_age (
int) -- How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to0.max_uses (
int) -- How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to0.temporary (
bool) -- Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults toFalse.unique (
bool) -- Indicates if a unique invite URL should be created. Defaults to True. If this is set toFalsethen it will return a previously created invite.reason (Optional[
str]) -- The reason for creating this invite. Shows up on the audit log.target_type (Optional[
InviteTarget]) --The type of target for the voice channel invite, if any.
New in version 2.0.
target_user (Optional[
User]) --The user whose stream to display for this invite, required if target_type is TargetType.stream. The user must be streaming in the channel.
New in version 2.0.
target_application_id (Optional[
int]) --The id of the embedded application for the invite, required if target_type is TargetType.embedded_application.
New in version 2.0.
target_event (Optional[
ScheduledEvent]) --The scheduled event object to link to the event. Shortcut to
Invite.set_scheduled_event()See
Invite.set_scheduled_event()for more info on event invite linking.New in version 2.0.
- Returns:
The invite that was created.
- Return type:
- Raises:
HTTPException -- Invite creation failed.
NotFound -- The channel that was passed is a category or an invalid channel.
- await delete(*, reason=None)#
This function is a coroutine.
Deletes the channel.
You must have
manage_channelspermission to use this.- Parameters:
reason (Optional[
str]) -- The reason for deleting this channel. Shows up on the audit log.- Raises:
Forbidden -- You do not have proper permissions to delete the channel.
NotFound -- The channel was not found or was already deleted.
HTTPException -- Deleting the channel failed.
- Return type:
None
- await invites()#
This function is a coroutine.
Returns a list of all active instant invites from this channel.
You must have
manage_channelsto get this information.- Returns:
The list of invites that are currently active.
- Return type:
List[
Invite]- Raises:
Forbidden -- You do not have proper permissions to get the information.
HTTPException -- An error occurred while fetching the information.
- property jump_url#
Returns a URL that allows the client to jump to the channel.
New in version 2.0.
- Return type:
- property overwrites#
Returns all of the channel's overwrites.
This is returned as a dictionary where the key contains the target which can be either a
Roleor aMemberand the value is the overwrite as aPermissionOverwrite.- Returns:
The channel's permission overwrites.
- Return type:
Dict[Union[
Role,Member],PermissionOverwrite]
- overwrites_for(obj)#
Returns the channel-specific overwrites for a member or a role.
- permissions_for(obj, /)#
Handles permission resolution for the
MemberorRole.This function takes into consideration the following cases:
Guild owner
Guild roles
Channel overrides
Member overrides
If a
Roleis passed, then it checks the permissions someone with that role would have, which is essentially:The default role permissions
The permissions of the role used as a parameter
The default role permission overwrites
The permission overwrites of the role used as a parameter
Changed in version 2.0: The object passed in can now be a role object.
- property permissions_synced#
Whether the permissions for this channel are synced with the category it belongs to.
If there is no category then this is
False.New in version 1.3.
- Return type:
- await set_permissions(target, *, overwrite=..., reason=None, **permissions)#
This function is a coroutine.
Sets the channel specific permission overwrites for a target in the channel.
The
targetparameter should either be aMemberor aRolethat belongs to guild.The
overwriteparameter, if given, must either beNoneorPermissionOverwrite. For convenience, you can pass in keyword arguments denotingPermissionsattributes. If this is done, then you cannot mix the keyword arguments with theoverwriteparameter.If the
overwriteparameter isNone, then the permission overwrites are deleted.You must have the
manage_rolespermission to use this.Note
This method replaces the old overwrites with the ones given.
Examples
Setting allow and deny:
await message.channel.set_permissions(message.author, read_messages=True, send_messages=False)
Deleting overwrites
await channel.set_permissions(member, overwrite=None)
Using
PermissionOverwriteoverwrite = discord.PermissionOverwrite() overwrite.send_messages = False overwrite.read_messages = True await channel.set_permissions(member, overwrite=overwrite)
- Parameters:
target (Union[
Member,Role]) -- The member or role to overwrite permissions for.overwrite (Optional[
PermissionOverwrite]) -- The permissions to allow and deny to the target, orNoneto delete the overwrite.**permissions -- A keyword argument list of permissions to set for ease of use. Cannot be mixed with
overwrite.reason (Optional[
str]) -- The reason for doing this action. Shows up on the audit log.
- Raises:
Forbidden -- You do not have permissions to edit channel specific permissions.
HTTPException -- Editing channel specific permissions failed.
NotFound -- The role or member being edited is not part of the guild.
InvalidArgument -- The overwrite parameter invalid or the target type was not
RoleorMember.
- defcan_send
- asyncfetch_message
- defget_partial_message
- defhistory
- defpermissions_for
- asyncpins
- asyncsend
- asynctrigger_typing
- deftyping
- class discord.DMChannel(*, me, state, data)[source]#
Represents a Discord direct message channel.
- x == y
Checks if two channels are equal.
- x != y
Checks if two channels are not equal.
- hash(x)
Returns the channel's hash.
- str(x)
Returns a string representation of the channel
- recipient#
The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available.
- Type:
Optional[
User]
- me#
The user presenting yourself.
- Type:
- Parameters:
me (ClientUser) --
state (ConnectionState) --
data (DMChannelPayload) --
- async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#
Returns an
AsyncIteratorthat enables receiving the destination's message history.You must have
read_message_historypermissions to use this.- Parameters:
limit (Optional[
int]) -- The number of messages to retrieve. IfNone, retrieves every message in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.around (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages.oldest_first (Optional[
bool]) -- If set toTrue, return messages in oldest->newest order. Defaults toTrueifafteris specified, otherwiseFalse.
- Yields:
Message-- The message with the message data parsed.- Raises:
Forbidden -- You do not have permissions to get channel message history.
HTTPException -- The request to get message history failed.
Examples
Usage
counter = 0 async for message in channel.history(limit=200): if message.author == client.user: counter += 1
Flattening into a list:
messages = await channel.history(limit=123).flatten() # messages is now a list of Message...
All parameters are optional.
- Return type:
HistoryIterator
- async with typing()#
Returns a context manager that allows you to type for an indefinite period of time.
This is useful for denoting long computations in your bot.
Note
This is both a regular context manager and an async context manager. This means that both
withandasync withwork with this.Example Usage:
async with channel.typing(): # simulate something heavy await asyncio.sleep(10) await channel.send('done!')
- Return type:
Typing
- property type#
The channel's Discord type.
- Return type:
ChannelType
- property jump_url#
Returns a URL that allows the client to jump to the channel.
New in version 2.0.
- Return type:
- property created_at#
Returns the direct message channel's creation time in UTC.
- Return type:
- permissions_for(obj=None, /)[source]#
Handles permission resolution for a
User.This function is there for compatibility with other channel types.
Actual direct messages do not really have the concept of permissions.
This returns all the Text related permissions set to
Trueexcept:send_tts_messages: You cannot send TTS messages in a DM.manage_messages: You cannot delete others messages in a DM.
- Parameters:
obj (
User) -- The user to check permissions for. This parameter is ignored but kept for compatibility with otherpermissions_formethods.- Returns:
The resolved permissions.
- Return type:
- get_partial_message(message_id, /)[source]#
Creates a
PartialMessagefrom the message ID.This is useful if you want to work with a message and only have its ID without doing an unnecessary API call.
New in version 1.6.
- Parameters:
message_id (
int) -- The message ID to create a partial message for.- Returns:
The partial message.
- Return type:
- can_send(*objects)#
Returns a
boolindicating whether you have the permissions to send the object(s).
- await fetch_message(id, /)#
This function is a coroutine.
Retrieves a single
Messagefrom the destination.- Parameters:
id (
int) -- The message ID to look for.- Returns:
The message asked for.
- Return type:
- Raises:
NotFound -- The specified message was not found.
Forbidden -- You do not have the permissions required to get a message.
HTTPException -- Retrieving the message failed.
- await pins()#
This function is a coroutine.
Retrieves all messages that are currently pinned in the channel.
Note
Due to a limitation with the Discord API, the
Messageobjects returned by this method do not contain completeMessage.reactionsdata.- Returns:
The messages that are currently pinned.
- Return type:
List[
Message]- Raises:
HTTPException -- Retrieving the pinned messages failed.
- await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None)#
This function is a coroutine.
Sends a message to the destination with the content given.
The content must be a type that can convert to a string through
str(content). If the content is set toNone(the default), then theembedparameter must be provided.To upload a single file, the
fileparameter should be used with a singleFileobject. To upload multiple files, thefilesparameter should be used with alistofFileobjects. Specifying both parameters will lead to an exception.To upload a single embed, the
embedparameter should be used with a singleEmbedobject. To upload multiple embeds, theembedsparameter should be used with alistofEmbedobjects. Specifying both parameters will lead to an exception.- Parameters:
content (Optional[
str]) -- The content of the message to send.tts (
bool) -- Indicates if the message should be sent using text-to-speech.embed (
Embed) -- The rich embed for the content.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.nonce (
int) -- The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value.delete_after (
float) -- If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored.allowed_mentions (
AllowedMentions) --Controls the mentions being processed in this message. If this is passed, then the object is merged with
allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.New in version 1.4.
reference (Union[
Message,MessageReference,PartialMessage]) --A reference to the
Messageto which you are replying, this can be created usingto_reference()or passed directly as aMessage. You can control whether this mentions the author of the referenced message using thereplied_userattribute ofallowed_mentionsor by settingmention_author.New in version 1.6.
mention_author (Optional[
bool]) --If set, overrides the
replied_userattribute ofallowed_mentions.New in version 1.6.
view (
discord.ui.View) -- A Discord UI View to add to the message.embeds (List[
Embed]) --A list of embeds to upload. Must be a maximum of 10.
New in version 2.0.
stickers (Sequence[Union[
GuildSticker,StickerItem]]) --A list of stickers to upload. Must be a maximum of 3.
New in version 2.0.
suppress (
bool) -- Whether to suppress embeds for the message.
- Returns:
The message that was sent.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
Forbidden -- You do not have the proper permissions to send the message.
InvalidArgument -- The
fileslist is not of the appropriate size, you specified bothfileandfiles, or you specified bothembedandembeds, or thereferenceobject is not aMessage,MessageReferenceorPartialMessage.
- defcan_send
- asyncfetch_message
- defhistory
- asyncleave
- defpermissions_for
- asyncpins
- asyncsend
- asynctrigger_typing
- deftyping
- class discord.GroupChannel(*, me, state, data)[source]#
Represents a Discord group channel.
- x == y
Checks if two channels are equal.
- x != y
Checks if two channels are not equal.
- hash(x)
Returns the channel's hash.
- str(x)
Returns a string representation of the channel
- me#
The user presenting yourself.
- Type:
- Parameters:
me (ClientUser) --
state (ConnectionState) --
data (GroupChannelPayload) --
- async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#
Returns an
AsyncIteratorthat enables receiving the destination's message history.You must have
read_message_historypermissions to use this.- Parameters:
limit (Optional[
int]) -- The number of messages to retrieve. IfNone, retrieves every message in the channel. Note, however, that this would make it a slow operation.before (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.after (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time.around (Optional[Union[
Snowflake,datetime.datetime]]) -- Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages.oldest_first (Optional[
bool]) -- If set toTrue, return messages in oldest->newest order. Defaults toTrueifafteris specified, otherwiseFalse.
- Yields:
Message-- The message with the message data parsed.- Raises:
Forbidden -- You do not have permissions to get channel message history.
HTTPException -- The request to get message history failed.
Examples
Usage
counter = 0 async for message in channel.history(limit=200): if message.author == client.user: counter += 1
Flattening into a list:
messages = await channel.history(limit=123).flatten() # messages is now a list of Message...
All parameters are optional.
- Return type:
HistoryIterator
- async with typing()#
Returns a context manager that allows you to type for an indefinite period of time.
This is useful for denoting long computations in your bot.
Note
This is both a regular context manager and an async context manager. This means that both
withandasync withwork with this.Example Usage:
async with channel.typing(): # simulate something heavy await asyncio.sleep(10) await channel.send('done!')
- Return type:
Typing
- property type#
The channel's Discord type.
- Return type:
ChannelType
- property jump_url#
Returns a URL that allows the client to jump to the channel.
New in version 2.0.
- Return type:
- permissions_for(obj, /)[source]#
Handles permission resolution for a
User.This function is there for compatibility with other channel types.
Actual direct messages do not really have the concept of permissions.
This returns all the Text related permissions set to
Trueexcept:send_tts_messages: You cannot send TTS messages in a DM.manage_messages: You cannot delete others messages in a DM.
This also checks the kick_members permission if the user is the owner.
- Parameters:
obj (
Snowflake) -- The user to check permissions for.- Returns:
The resolved permissions for the user.
- Return type:
- await leave()[source]#
This function is a coroutine.
Leave the group.
If you are the only one in the group, this deletes it as well.
- Raises:
HTTPException -- Leaving the group failed.
- Return type:
- can_send(*objects)#
Returns a
boolindicating whether you have the permissions to send the object(s).
- await fetch_message(id, /)#
This function is a coroutine.
Retrieves a single
Messagefrom the destination.- Parameters:
id (
int) -- The message ID to look for.- Returns:
The message asked for.
- Return type:
- Raises:
NotFound -- The specified message was not found.
Forbidden -- You do not have the permissions required to get a message.
HTTPException -- Retrieving the message failed.
- await pins()#
This function is a coroutine.
Retrieves all messages that are currently pinned in the channel.
Note
Due to a limitation with the Discord API, the
Messageobjects returned by this method do not contain completeMessage.reactionsdata.- Returns:
The messages that are currently pinned.
- Return type:
List[
Message]- Raises:
HTTPException -- Retrieving the pinned messages failed.
- await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None)#
This function is a coroutine.
Sends a message to the destination with the content given.
The content must be a type that can convert to a string through
str(content). If the content is set toNone(the default), then theembedparameter must be provided.To upload a single file, the
fileparameter should be used with a singleFileobject. To upload multiple files, thefilesparameter should be used with alistofFileobjects. Specifying both parameters will lead to an exception.To upload a single embed, the
embedparameter should be used with a singleEmbedobject. To upload multiple embeds, theembedsparameter should be used with alistofEmbedobjects. Specifying both parameters will lead to an exception.- Parameters:
content (Optional[
str]) -- The content of the message to send.tts (
bool) -- Indicates if the message should be sent using text-to-speech.embed (
Embed) -- The rich embed for the content.file (
File) -- The file to upload.files (List[
File]) -- A list of files to upload. Must be a maximum of 10.nonce (
int) -- The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value.delete_after (
float) -- If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored.allowed_mentions (
AllowedMentions) --Controls the mentions being processed in this message. If this is passed, then the object is merged with
allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set inallowed_mentions. If no object is passed at all then the defaults given byallowed_mentionsare used instead.New in version 1.4.
reference (Union[
Message,MessageReference,PartialMessage]) --A reference to the
Messageto which you are replying, this can be created usingto_reference()or passed directly as aMessage. You can control whether this mentions the author of the referenced message using thereplied_userattribute ofallowed_mentionsor by settingmention_author.New in version 1.6.
mention_author (Optional[
bool]) --If set, overrides the
replied_userattribute ofallowed_mentions.New in version 1.6.
view (
discord.ui.View) -- A Discord UI View to add to the message.embeds (List[
Embed]) --A list of embeds to upload. Must be a maximum of 10.
New in version 2.0.
stickers (Sequence[Union[
GuildSticker,StickerItem]]) --A list of stickers to upload. Must be a maximum of 3.
New in version 2.0.
suppress (
bool) -- Whether to suppress embeds for the message.
- Returns:
The message that was sent.
- Return type:
- Raises:
HTTPException -- Sending the message failed.
Forbidden -- You do not have the proper permissions to send the message.
InvalidArgument -- The
fileslist is not of the appropriate size, you specified bothfileandfiles, or you specified bothembedandembeds, or thereferenceobject is not aMessage,MessageReferenceorPartialMessage.
Stickers#
- class discord.Sticker(*, state, data)[source]#
Represents a sticker.
New in version 1.6.
- str(x)
Returns the name of the sticker.
- x == y
Checks if the sticker is equal to another sticker.
- x != y
Checks if the sticker is not equal to another sticker.
- format#
The format for the sticker's image.
- Type:
- Parameters:
state (
ConnectionState) --data (
Union[BaseSticker,StandardSticker,GuildSticker]) --
- class discord.StickerPack(*, state, data)[source]#
Represents a sticker pack.
New in version 2.0.
- str(x)
Returns the name of the sticker pack.
- x == y
Checks if the sticker pack is equal to another sticker pack.
- x != y
Checks if the sticker pack is not equal to another sticker pack.
- stickers#
The stickers of this sticker pack.
- Type:
List[
StandardSticker]
- cover_sticker#
The sticker used for the cover of the sticker pack.
- Type:
- Parameters:
state (
ConnectionState) --data (
StickerPack) --
- class discord.StickerItem(*, state, data)[source]#
Represents a sticker item.
New in version 2.0.
- str(x)
Returns the name of the sticker item.
- x == y
Checks if the sticker item is equal to another sticker item.
- x != y
Checks if the sticker item is not equal to another sticker item.
- format#
The format for the sticker's image.
- Type:
- Parameters:
state (
ConnectionState) --data (
StickerItem) --
- await fetch()[source]#
This function is a coroutine.
Attempts to retrieve the full sticker data of the sticker item.
- Returns:
The retrieved sticker.
- Return type:
Union[
StandardSticker,GuildSticker]- Raises:
HTTPException -- Retrieving the sticker failed.
- asyncpack
- class discord.StandardSticker(*, state, data)[source]#
Represents a sticker that is found in a standard sticker pack.
New in version 2.0.
- str(x)
Returns the name of the sticker.
- x == y
Checks if the sticker is equal to another sticker.
- x != y
Checks if the sticker is not equal to another sticker.
- format#
The format for the sticker's image.
- Type:
- Parameters:
state (
ConnectionState) --data (
Union[BaseSticker,StandardSticker,GuildSticker]) --
- await pack()[source]#
This function is a coroutine.
Retrieves the sticker pack that this sticker belongs to.
- Returns:
The retrieved sticker pack.
- Return type:
- Raises:
InvalidData -- The corresponding sticker pack was not found.
HTTPException -- Retrieving the sticker pack failed.
- class discord.GuildSticker(*, state, data)[source]#
Represents a sticker that belongs to a guild.
New in version 2.0.
- str(x)
Returns the name of the sticker.
- x == y
Checks if the sticker is equal to another sticker.
- x != y
Checks if the sticker is not equal to another sticker.
- format#
The format for the sticker's image.
- Type:
- user#
The user that created this sticker. This can only be retrieved using
Guild.fetch_sticker()and having themanage_emojis_and_stickerspermission.- Type:
Optional[
User]
- Parameters:
state (
ConnectionState) --data (
Union[BaseSticker,StandardSticker,GuildSticker]) --
- guild#
The guild that this sticker is from. Could be
Noneif the bot is not in the guild.New in version 2.0.
- await edit(*, name=..., description=..., emoji=..., reason=None)[source]#
This function is a coroutine.
Edits a
GuildStickerfor the guild.- Parameters:
name (
str) -- The sticker's new name. Must be at least 2 characters.description (Optional[
str]) -- The sticker's new description. Can beNone.emoji (
str) -- The name of a unicode emoji that represents the sticker's expression.reason (
str) -- The reason for editing this sticker. Shows up on the audit log.
- Returns:
The newly modified sticker.
- Return type:
- Raises:
Forbidden -- You are not allowed to edit stickers.
HTTPException -- An error occurred editing the sticker.
- await delete(*, reason=None)[source]#
This function is a coroutine.
Deletes the custom
Stickerfrom the guild.You must have
manage_emojis_and_stickerspermission to do this.- Parameters:
reason (Optional[
str]) -- The reason for deleting this sticker. Shows up on the audit log.- Raises:
Forbidden -- You are not allowed to delete stickers.
HTTPException -- An error occurred deleting the sticker.
- Return type:
None
Events#
- class discord.AutoModActionExecutionEvent(state, data)[source]#
Represents the payload for an
on_auto_moderation_action_execution()New in version 2.0.
- action#
The action that was executed.
- Type:
AutoModAction
- channel#
The channel in which the member's content was posted, if cached.
- Type:
Optional[Union[
TextChannel,Thread,VoiceChannel]]
- message_id#
The ID of the message that triggered the action. This is only available if the message was not blocked.
- Type:
Optional[
int]
- alert_system_message_id#
The ID of the system auto moderation message that was posted as a result of the action.
- Type:
Optional[
int]
- alert_system_message#
The system auto moderation message that was posted as a result of the action, if cached.
- Type:
Optional[
Message]
- Parameters:
state (
ConnectionState) --data (
AutoModActionExecutionEvent) --
- class discord.RawTypingEvent(data)[source]#
Represents the payload for a
on_raw_typing()event.New in version 2.0.
- when#
When the typing started as an aware datetime in UTC.
- Type:
- member#
The member who started typing. Only available if the member started typing in a guild.
- Type:
Optional[
Member]
- Parameters:
data (
TypingEvent) --
- class discord.RawMessageDeleteEvent(data)[source]#
Represents the event payload for a
on_raw_message_delete()event.- Parameters:
data (
MessageDeleteEvent) --
- class discord.RawBulkMessageDeleteEvent(data)[source]#
Represents the event payload for a
on_raw_bulk_message_delete()event.- Parameters:
data (
BulkMessageDeleteEvent) --
- class discord.RawMessageUpdateEvent(data)[source]#
Represents the payload for a
on_raw_message_edit()event.- guild_id#
The guild ID where the message got updated, if applicable.
New in version 1.7.
- Type:
Optional[
int]
- cached_message#
The cached message, if found in the internal message cache. Represents the message before it is modified by the data in
RawMessageUpdateEvent.data.- Type:
Optional[
Message]
- Parameters:
data (
MessageUpdateEvent) --
- class discord.RawReactionActionEvent(data, emoji, event_type)[source]#
Represents the payload for a
on_raw_reaction_add()oron_raw_reaction_remove()event.- emoji#
The custom or unicode emoji being used.
- Type:
- member#
The member who added the reaction. Only available if event_type is REACTION_ADD and the reaction is inside a guild.
New in version 1.3.
- Type:
Optional[
Member]
- event_type#
The event type that triggered this action. Can be
REACTION_ADDfor reaction addition orREACTION_REMOVEfor reaction removal.New in version 1.3.
- Type:
- Parameters:
data (
ReactionActionEvent) --emoji (
PartialEmoji) --event_type (
str) --
- class discord.RawReactionClearEvent(data)[source]#
Represents the payload for a
on_raw_reaction_clear()event.- Parameters:
data (
ReactionClearEvent) --
- class discord.RawReactionClearEmojiEvent(data, emoji)[source]#
Represents the payload for a
on_raw_reaction_clear_emoji()event.New in version 1.3.
- emoji#
The custom or unicode emoji being removed.
- Type:
- Parameters:
data (
ReactionClearEmojiEvent) --emoji (
PartialEmoji) --
- class discord.RawIntegrationDeleteEvent(data)[source]#
Represents the payload for a
on_raw_integration_delete()event.New in version 2.0.
- application_id#
The ID of the bot/OAuth2 application for this deleted integration.
- Type:
Optional[
int]
- Parameters:
data (
IntegrationDeleteEvent) --
- class discord.RawThreadDeleteEvent(data)[source]#
Represents the payload for
on_raw_thread_delete()event.New in version 2.0.
- thread_type#
The channel type of the deleted thread.
- Type:
- thread#
The thread that was deleted. This may be
Noneif deleted thread is not found in internal cache.- Type:
Optional[
discord.Thread]
- Parameters:
data (
ThreadDeleteEvent) --