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.

Attributes
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.

Parameters:
property url#

Returns the underlying URL of the asset.

property key#

Returns the identifying key of the asset.

is_animated()[source]#

Returns whether the asset is animated.

Return type:

bool

replace(*, size=..., format=..., static_format=...)[source]#

Returns a new asset with the passed components replaced.

Parameters:
  • size (int) – The new size of the asset.

  • format (str) – The new format to change it to. Must be either ‘webp’, ‘jpeg’, ‘jpg’, ‘png’, or ‘gif’ if it’s animated.

  • static_format (str) – The new format to change it to if the asset isn’t animated. Must be either ‘webp’, ‘jpeg’, ‘jpg’, or ‘png’.

Returns:

The newly updated asset.

Return type:

Asset

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:

Asset

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:

Asset

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:

Asset

Raises:

InvalidArgument – The asset had an invalid format.

await read()#

This function is a coroutine.

Retrieves the content of this asset as a bytes object.

Returns:

The content of the asset.

Return type:

bytes

Raises:
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:

int

Raises:
class discord.Spotify[source]#

Represents a Spotify listening activity from Discord. This is a special case of Activity that 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.

property created_at#

When the user started listening in UTC.

New in version 1.3.

property colour#

Returns the Spotify integration colour, as a Colour.

There is an alias for this named color

property color#

Returns the Spotify integration colour, as a Colour.

There is an alias for this named colour

property name#

The activity’s name. This will always return “Spotify”.

property title#

The title of the song being played.

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.

property album#

The album that the song being played belongs to.

property album_cover_url#

The album cover image URL from Spotify’s CDN.

property track_id#

The track ID used by Spotify to identify this song.

property track_url#

The track URL to listen on Spotify.

New in version 2.0.

property start#

When the user started playing this song in UTC.

property end#

When the user will stop playing this song in UTC.

property duration#

The duration of the song being played.

property party_id#

The party ID of the listening party.

class discord.VoiceState(*, data, channel=None)[source]#

Represents a Discord user’s voice state.

deaf#

Indicates if the user is currently deafened by the guild.

Type:

bool

mute#

Indicates if the user is currently muted by the guild.

Type:

bool

self_mute#

Indicates if the user is currently muted by their own accord.

Type:

bool

self_deaf#

Indicates if the user is currently deafened by their own accord.

Type:

bool

self_stream#

Indicates if the user is currently streaming via ‘Go Live’ feature.

New in version 1.3.

Type:

bool

self_video#

Indicates if the user is currently broadcasting video.

Type:

bool

suppress#

Indicates if the user is suppressed from speaking.

Only applies to stage channels.

New in version 1.7.

Type:

bool

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 None if 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]

afk#

Indicates if the user is currently in the AFK channel in the guild.

Type:

bool

channel#

The voice channel that the user is currently connected to. None if the user is not currently in a voice channel.

Type:

Optional[Union[VoiceChannel, StageChannel]]

Parameters:
  • data (VoiceStatePayload) –

  • channel (VocalGuildChannel | None) –

Attributes
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.

id#

The channel ID associated with this partial messageable.

Type:

int

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 bool indicating whether you have the permissions to send the object(s).

Returns:

Indicates whether you have the permissions to send the object(s).

Return type:

bool

Raises:

TypeError – An invalid type has been passed.

await fetch_message(id, /)#

This function is a coroutine.

Retrieves a single Message from the destination.

Parameters:

id (int) – The message ID to look for.

Returns:

The message asked for.

Return type:

Message

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 AsyncIterator that enables receiving the destination’s message history.

You must have read_message_history permissions to use this.

Parameters:
  • limit (Optional[int]) – The number of messages to retrieve. If None, 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 to True, return messages in oldest->newest order. Defaults to True if after is specified, otherwise False.

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.

Return type:

HistoryIterator

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.

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 Message objects returned by this method do not contain complete Message.reactions data.

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, enforce_nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None, silent=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 to None (the default), then the embed parameter must be provided.

To upload a single file, the file parameter should be used with a single File object. To upload multiple files, the files parameter should be used with a list of File objects. Specifying both parameters will lead to an exception.

To upload a single embed, the embed parameter should be used with a single Embed object. To upload multiple embeds, the embeds parameter should be used with a list of Embed objects. 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.

  • enforce_nonce (Optional[bool]) –

    Whether nonce is enforced to be validated.

    New in version 2.5.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using to_reference() or passed directly as a Message. You can control whether this mentions the author of the referenced message using the replied_user attribute of allowed_mentions or by setting mention_author.

    New in version 1.6.

  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_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.

  • silent (bool) –

    Whether to suppress push and desktop notifications for the message.

    New in version 2.4.

Returns:

The message that was sent.

Return type:

Message

Raises:
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:

None

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. :rtype: Typing

Note

This is both a regular context manager and an async context manager. This means that both with and async with work with this.

Example Usage:

async with channel.typing():
    # simulate something heavy
    await asyncio.sleep(10)

await channel.send('done!')
get_partial_message(message_id, /)[source]#

Creates a PartialMessage from 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:

PartialMessage

Users#

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 or global_name.

name#

The user’s username.

Type:

str

id#

The user’s unique ID.

Type:

int

discriminator#

The user’s discriminator. This is given when the username has conflicts.

Note

If the user has migrated to the new username system, this will always be 0.

Type:

str

global_name#

The user’s global name.

New in version 2.5.

Type:

str

bot#

Specifies if the user is a bot account.

Type:

bool

system#

Specifies if the user is a system user (i.e. represents Discord officially).

New in version 1.3.

Type:

bool

verified#

Specifies if the user’s email is verified.

Type:

bool

locale#

The IETF language tag used to identify the language the user is using.

Type:

Optional[str]

mfa_enabled#

Specifies if the user has MFA turned on and working.

Type:

bool

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 of fp.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 be None to denote no avatar.

Returns:

The newly edited client user.

Return type:

ClientUser

Raises:
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().

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().

property avatar#

Returns an Asset for the avatar the user has.

If the user does not have a traditional avatar, None is returned. If you want the avatar that a user has displayed, consider display_avatar.

property avatar_decoration#

Returns the user’s avatar decoration, if available.

New in version 2.5.

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().

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.

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.

property created_at#

Returns the user’s creation time in UTC.

This is when the user’s Discord account was created.

property default_avatar#

Returns the default avatar for a given user. This is calculated by the user’s ID if they’re on the new username system, otherwise their discriminator.

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.

property display_name#

Returns the user’s display name. This will be their global name if set, otherwise their username.

property is_migrated#

Checks whether the user is already migrated to global name.

property jump_url#

Returns a URL that allows the client to jump to the user.

New in version 2.0.

property mention#

Returns a string that allows you to mention the given user.

mentioned_in(message)#

Checks if the user is mentioned in the specified message.

Parameters:

message (Message) – The message to check if you’re mentioned in.

Returns:

Indicates if the user is mentioned in the message.

Return type:

bool

property public_flags#

The publicly available flags the user has.

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 or global_name.

name#

The user’s username.

Type:

str

id#

The user’s unique ID.

Type:

int

discriminator#

The user’s discriminator. This is given when the username has conflicts.

Note

If the user has migrated to the new username system, this will always be “0”.

Type:

str

global_name#

The user’s global name.

New in version 2.5.

Type:

str

bot#

Specifies if the user is a bot account.

Type:

bool

system#

Specifies if the user is a system user (i.e. represents Discord officially).

Type:

bool

Parameters:
  • state (ConnectionState) –

  • data (User) –

async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#

Returns an AsyncIterator that enables receiving the destination’s message history.

You must have read_message_history permissions to use this.

Parameters:
  • limit (Optional[int]) – The number of messages to retrieve. If None, 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 to True, return messages in oldest->newest order. Defaults to True if after is specified, otherwise False.

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.

Return type:

HistoryIterator

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.

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. :rtype: Typing

Note

This is both a regular context manager and an async context manager. This means that both with and async with work with this.

Example Usage:

async with channel.typing():
    # simulate something heavy
    await asyncio.sleep(10)

await channel.send('done!')
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 the create_dm() coroutine function.

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.

await create_dm()[source]#

This function is a coroutine.

Creates a DMChannel with this user.

This should be rarely called, as this is done transparently for most people.

Returns:

The channel that was created.

Return type:

DMChannel

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().

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().

property avatar#

Returns an Asset for the avatar the user has.

If the user does not have a traditional avatar, None is returned. If you want the avatar that a user has displayed, consider display_avatar.

property avatar_decoration#

Returns the user’s avatar decoration, if available.

New in version 2.5.

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().

can_send(*objects)#

Returns a bool indicating whether you have the permissions to send the object(s).

Returns:

Indicates whether you have the permissions to send the object(s).

Return type:

bool

Raises:

TypeError – An invalid type has been passed.

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.

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.

await create_test_entitlement(sku)[source]#

This function is a coroutine.

Creates a test entitlement for the user.

Parameters:

sku (Snowflake) – The SKU to create a test entitlement for.

Returns:

The created entitlement.

Return type:

Entitlement

property created_at#

Returns the user’s creation time in UTC.

This is when the user’s Discord account was created.

property default_avatar#

Returns the default avatar for a given user. This is calculated by the user’s ID if they’re on the new username system, otherwise their discriminator.

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.

property display_name#

Returns the user’s display name. This will be their global name if set, otherwise their username.

await fetch_message(id, /)#

This function is a coroutine.

Retrieves a single Message from the destination.

Parameters:

id (int) – The message ID to look for.

Returns:

The message asked for.

Return type:

Message

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 is_migrated#

Checks whether the user is already migrated to global name.

property jump_url#

Returns a URL that allows the client to jump to the user.

New in version 2.0.

property mention#

Returns a string that allows you to mention the given user.

mentioned_in(message)#

Checks if the user is mentioned in the specified message.

Parameters:

message (Message) – The message to check if you’re mentioned in.

Returns:

Indicates if the user is mentioned in the message.

Return type:

bool

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 Message objects returned by this method do not contain complete Message.reactions data.

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.

await send(content=None, *, tts=None, embed=None, embeds=None, file=None, files=None, stickers=None, delete_after=None, nonce=None, enforce_nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None, silent=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 to None (the default), then the embed parameter must be provided.

To upload a single file, the file parameter should be used with a single File object. To upload multiple files, the files parameter should be used with a list of File objects. Specifying both parameters will lead to an exception.

To upload a single embed, the embed parameter should be used with a single Embed object. To upload multiple embeds, the embeds parameter should be used with a list of Embed objects. 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.

  • enforce_nonce (Optional[bool]) –

    Whether nonce is enforced to be validated.

    New in version 2.5.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using to_reference() or passed directly as a Message. You can control whether this mentions the author of the referenced message using the replied_user attribute of allowed_mentions or by setting mention_author.

    New in version 1.6.

  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_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.

  • silent (bool) –

    Whether to suppress push and desktop notifications for the message.

    New in version 2.4.

Returns:

The message that was sent.

Return type:

Message

Raises:
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:

None

Messages#

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 str and is hashable.

id#

The attachment ID.

Type:

int

size#

The attachment size in bytes.

Type:

int

height#

The attachment’s height, in pixels. Only applicable to images and videos.

Type:

Optional[int]

width#

The attachment’s width, in pixels. Only applicable to images and videos.

Type:

Optional[int]

filename#

The attachment’s filename.

Type:

str

url#

The attachment URL. If the message this attachment was attached to is deleted, then this will 404.

Type:

str

proxy_url#

The proxy URL. This is a cached version of the url in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all.

Type:

str

content_type#

The attachment’s media type.

Type:

Optional[str]

ephemeral#

Whether the attachment is ephemeral or not.

New in version 1.7.

Type:

bool

description#

The attachment’s description.

New in version 2.0.

Type:

Optional[str]

duration_secs#

The duration of the audio file (currently for voice messages).

New in version 2.5.

Type:

Optional[float]

waveform#

The base64 encoded bytearray representing a sampled waveform (currently for voice messages).

New in version 2.5.

Type:

Optional[str]

flags#

Extra attributes of the attachment.

New in version 2.5.

Type:

AttachmentFlags

hm#

The unique signature of this attachment’s instance.

New in version 2.5.

Type:

str

Parameters:
  • data (Attachment) –

  • state (ConnectionState) –

property expires_at#

This attachment URL’s expiry time in UTC.

property issued_at#

The attachment URL’s issue time in UTC.

is_spoiler()[source]#

Whether this attachment contains a spoiler.

Return type:

bool

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 use proxy_url rather than url when 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:

int

Raises:
await read(*, use_cached=False)[source]#

This function is a coroutine.

Retrieves the content of this attachment as a bytes object.

New in version 1.1.

Parameters:

use_cached (bool) – Whether to use proxy_url rather than url when 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:

bytes

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 File suitable for sending via abc.Messageable.send().

New in version 1.3.

Parameters:
  • use_cached (bool) –

    Whether to use proxy_url rather than url when 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:

File

Raises:
  • HTTPException – Downloading the attachment failed.

  • Forbidden – You do not have permissions to access this attachment

  • NotFound – The attachment was deleted.

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:

bool

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:

MessageType

author#

A Member that sent the message. If channel is a private channel or the user has the left the guild, then it is a User instead.

Type:

Union[Member, abc.User]

content#

The actual contents of the message.

Type:

str

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.

Type:

Optional[Union[str, int]]

embeds#

A list of embeds the message has.

Type:

List[Embed]

channel#

The TextChannel or Thread that the message was sent from. Could be a DMChannel or GroupChannel if 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 @everyone or the @here text is in the message itself. Rather this boolean indicates if either the @everyone or the @here text is in the message and it did end up mentioning.

Type:

bool

mentions#

A list of Member that were mentioned. If the message is in a private message then the list will be of User instead. For messages that are not of type MessageType.default, this array can be used to aid in system messages. For more information, see system_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.GuildChannel that 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 Role that were mentioned. If the message is in a private message then the list is always empty.

Type:

List[Role]

id#

The message ID.

Type:

int

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]

pinned#

Specifies if the message is currently pinned.

Type:

bool

flags#

Extra features of the message.

New in version 1.3.

Type:

MessageFlags

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]

components#

A list of components in the message.

New in version 2.0.

Type:

List[Component]

guild#

The guild that the message belongs to, if applicable.

Type:

Optional[Guild]

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:
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() or utils.remove_markdown() respectively, along with this function.

property created_at#

The message’s creation time in UTC.

property edited_at#

An aware UTC datetime object containing the edited time of the message.

property jump_url#

Returns a URL that allows the client to jump to this message.

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. :rtype: bool

New in version 1.3.

system_content#

A property that returns the content that is rendered regardless of the Message.type.

In the case of MessageType.default and MessageType.reply, this just returns the regular Message.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_messages permission.

Changed in version 1.1: Added the new delay keyword-only parameter.

Parameters:
  • delay (Optional[float]) – If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored.

  • reason (Optional[str]) – The reason for deleting the message. Shows up on the audit log.

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 suppress keyword-only parameter was added.

Parameters:
  • content (Optional[str]) – The new content to replace the message with. Could be None to remove the content.

  • embed (Optional[Embed]) – The new embed to replace the original with. Could be None to 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 to True. If set to False this brings the embeds back if they were suppressed. Using this parameter requires manage_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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • view (Optional[View]) – The updated view to update this message with. If None is 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 embed and embeds, specified both file and files, or either``file`` or files were of the wrong type.

Return type:

Message

await publish()[source]#

This function is a coroutine.

Publishes this message to your announcement channel.

You must have the send_messages permission to do this.

If the message is not your own then the manage_messages permission is also needed.

Raises:
  • Forbidden – You do not have the proper permissions to publish this message.

  • HTTPException – Publishing the message failed.

Return type:

None

await pin(*, reason=None)[source]#

This function is a coroutine.

Pins the message.

You must have the manage_messages permission 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_messages permission 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_history permission to use this. If nobody else has reacted to the message using this emoji, the add_reactions permission 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:

None

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. member parameter is not you) then the manage_messages permission is needed.

The member parameter must represent a member and meet the abc.Snowflake abc.

Parameters:
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_messages permission 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_messages permission to use this.

Raises:
  • HTTPException – Removing the reactions failed.

  • Forbidden – You do not have the proper permissions to remove all the reactions.

Return type:

None

await create_thread(*, name, auto_archive_duration=..., slowmode_delay=...)[source]#

This function is a coroutine.

Creates a public thread from this message.

You must have create_public_threads in 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:
  • name (str) – The name of the thread.

  • auto_archive_duration (Optional[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 (Optional[int]) – Specifies the slowmode rate limit for user in this thread, in seconds. A value of 0 disables slowmode. The maximum value possible is 21600.

Returns:

The created thread.

Return type:

Thread

Raises:
await reply(content=None, **kwargs)[source]#

This function is a coroutine.

A shortcut method to abc.Messageable.send() to reply to the Message.

New in version 1.6.

Returns:

The message that was sent.

Return type:

Message

Raises:
  • HTTPException – Sending the message failed.

  • Forbidden – You do not have the proper permissions to send the message.

  • InvalidArgument – The files list is not of the appropriate size, or you specified both file and files.

Parameters:

content (str | None) –

to_reference(*, fail_if_not_exists=True)[source]#

Creates a MessageReference from the current message.

New in version 1.6.

Parameters:

fail_if_not_exists (bool) –

Whether replying using the message reference should raise HTTPException if 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:

MessageReference

Attributes
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) –

property id#

The message ID of the deleted referenced message.

property channel_id#

The channel ID of the deleted referenced message.

property guild_id#

The guild ID of the deleted referenced message.

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]

count#

The combined total of normal and super reactions for this emoji.

Type:

int

me#

If the user sent this as a normal reaction.

Type:

bool

me_burst#

If the user sent this as a super reaction.

Type:

bool

message#

Message this reaction is for.

Type:

Message

burst#

Whether this reaction is a burst (super) reaction.

Type:

bool

Parameters:
async for ... in users(*, limit=None, after=None, type=None)[source]#

Returns an AsyncIterator representing the users that have reacted to the message.

The after parameter must represent a member and meet the abc.Snowflake abc.

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.

  • type (Optional[ReactionType]) – The type of reaction to get users for. Defaults to normal.

Yields:

Union[User, Member] – The member (if retrievable) or the user that has reacted to this message. The case where it can be a Member is in a guild message context. Sometimes it can be a User if the member has left the guild.

Raises:

HTTPException – Getting the users for the reaction failed.

Return type:

ReactionIterator

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.')

Getting super reactors:

users = await reaction.users(type=ReactionType.burst).flatten()
property burst_colours#

Returns a list possible Colour this super reaction can be.

There is an alias for this named burst_colors.

property burst_colors#

Returns a list possible Colour this super reaction can be.

There is an alias for this named burst_colours.

property count_details#

Returns ReactionCountDetails for the individual counts of normal and super reactions made.

is_custom_emoji()[source]#

If this is a custom emoji.

Return type:

bool

await remove(user)[source]#

This function is a coroutine.

Remove the reaction by the provided User from the message.

If the reaction is not your own (i.e. user parameter is not you) then the manage_messages permission is needed.

The user parameter must represent a user or member and meet the abc.Snowflake abc.

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:

None

await clear()[source]#

This function is a coroutine.

Clears this reaction from the message.

You need the manage_messages permission to use this. :rtype: None

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.

class discord.ReactionCountDetails(data)[source]#

Represents a breakdown of the normal and burst reaction counts for the emoji.

normal#

The number of normal reactions for this emoji.

Type:

int

burst#

The number of super reactions for this emoji.

Type:

bool

Parameters:

data (ReactionCountDetails) –

Monetization#

class discord.SKU(*, data)[source]#

Represents a Discord SKU (stock-keeping unit).

New in version 2.5.

id#

The SKU’s ID.

Type:

int

type#

The type of SKU.

Type:

SKUType

application_id#

The ID of the application this SKU belongs to.

Type:

int

name#

The name of the SKU.

Type:

str

slug#

The SKU’s slug.

Type:

str

flags#

The SKU’s flags.

Type:

SKUFlags

Parameters:

data (SKU) –

class discord.Entitlement(*, data, state)[source]#

Represents a Discord entitlement.

New in version 2.5.

id#

The entitlement’s ID.

Type:

int

sku_id#

The ID of the SKU this entitlement is for.

Type:

int

application_id#

The ID of the application this entitlement belongs to.

Type:

int

user_id#

The ID of the user that owns this entitlement.

Type:

Union[int, MISSING]

type#

The type of entitlement.

Type:

EntitlementType

deleted#

Whether the entitlement has been deleted.

Type:

bool

starts_at#

When the entitlement starts.

Type:

Union[datetime.datetime, MISSING]

ends_at#

When the entitlement expires.

Type:

Union[datetime.datetime, MISSING]

guild_id#

The ID of the guild that owns this entitlement.

Type:

Union[int, MISSING]

Parameters:
  • data (Entitlement) –

  • state (ConnectionState) –

await delete()[source]#

This function is a coroutine.

Deletes a test entitlement.

A test entitlement is an entitlement that was created using Guild.create_test_entitlement() or User.create_test_entitlement().

Raises:

HTTPException – Deleting the entitlement failed.

Return type:

None

Guild#

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.

name#

The guild name.

Type:

str

emojis#

All emojis that the guild owns.

Type:

Tuple[Emoji, …]

stickers#

All stickers that the guild owns.

New in version 2.0.

Type:

Tuple[GuildSticker, …]

afk_timeout#

The timeout to get sent to the AFK channel.

Type:

int

afk_channel#

The channel that denotes the AFK channel. None if it doesn’t exist.

Type:

Optional[VoiceChannel]

id#

The guild’s ID.

Type:

int

invites_disabled#

Indicates if the guild invites are disabled.

Type:

bool

owner_id#

The guild owner’s ID. Use Guild.owner instead.

Type:

int

unavailable#

Indicates if the guild is unavailable. If this is True then the reliability of other attributes outside of Guild.id is slim and they might all be None. It is best to not do anything with the guild if it is unavailable.

Check the on_guild_unavailable() and on_guild_available() events.

Type:

bool

max_presences#

The maximum amount of presences for the guild.

Type:

Optional[int]

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]

description#

The guild’s description.

Type:

Optional[str]

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:

int

verification_level#

The guild’s verification level.

Type:

VerificationLevel

explicit_content_filter#

The guild’s explicit content filter.

Type:

ContentFilter

default_notifications#

The guild’s notification settings.

Type:

NotificationLevel

features#

A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features here.

Type:

List[str]

premium_tier#

The premium tier for this guild. Corresponds to “Nitro Server” in the official UI. The number goes from 0 to 3 inclusive.

Type:

int

premium_subscription_count#

The number of “boosts” this guild currently has.

Type:

int

premium_progress_bar_enabled#

Indicates if the guild has premium progress bar enabled.

New in version 2.0.

Type:

bool

preferred_locale#

The preferred locale for the guild. Used when filtering Server Discovery results to a specific language.

Type:

Optional[str]

nsfw_level#

The guild’s NSFW level.

New in version 2.0.

Type:

NSFWLevel

approximate_member_count#

The approximate number of members in the guild. This is None unless the guild is obtained using Client.fetch_guild() with with_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 None unless the guild is obtained using Client.fetch_guild() with with_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 AsyncIterator that 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 members instead.

New in version 1.3.

All parameters are optional.

Parameters:
  • limit (Optional[int]) – The number of members to retrieve. Defaults to 1000. Pass None to 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:
Return type:

MemberIterator

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...
async for ... in audit_logs(*, limit=100, before=None, after=None, oldest_first=None, user=None, action=None)[source]#

Returns an AsyncIterator that enables receiving the guild’s audit logs.

You must have the view_audit_log permission to use this.

Parameters:
  • limit (Optional[int]) – The number of entries to retrieve. If None retrieve 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 to True, return entries in oldest->newest order. Defaults to True if after is specified, otherwise False.

  • 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.

Return type:

AuditLogIterator

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.')
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.

property large#

Indicates if the guild is a ‘large’ guild.

A large guild is defined as having more than large_threshold count members, which for this library is set to the maximum of 250.

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.user except an instance of Member. This is essentially used to get the member version of yourself.

property voice_client#

Returns the VoiceProtocol associated with this guild, if any.

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 CategoryChannel and 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 None if 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 None if not found.

Return type:

Optional[abc.GuildChannel]

get_thread(thread_id, /)[source]#

Returns a thread with the given ID.

New in version 2.0.

Parameters:

thread_id (int) – The ID to search for.

Returns:

The returned thread or None if not found.

Return type:

Optional[Thread]

property system_channel#

Returns the guild’s channel used for system messages.

If no channel is set, then this returns None.

property system_channel_flags#

Returns the guild’s system channel settings.

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.

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.

property emoji_limit#

The maximum number of emoji slots this guild has.

property sticker_limit#

The maximum number of sticker slots this guild has.

New in version 2.0.

property bitrate_limit#

The maximum bitrate for voice channels this guild can have.

property filesize_limit#

The maximum number of bytes files can have when uploaded to this guild.

property members#

A list of members that belong to this guild.

get_member(user_id, /)[source]#

Returns a member with the given ID.

Parameters:

user_id (int) – The ID to search for.

Returns:

The member or None if not found.

Return type:

Optional[Member]

property premium_subscribers#

A list of members who have “boosted” this guild.

property roles#

Returns a list of the guild’s roles in hierarchy order.

The first element of this list will be the lowest role in the hierarchy.

get_role(role_id, /)[source]#

Returns a role with the given ID.

Parameters:

role_id (int) – The ID to search for.

Returns:

The role or None if not found.

Return type:

Optional[Role]

property default_role#

Gets the @everyone role that all members have by default.

property premium_subscriber_role#

Gets the premium subscriber role, AKA “boost” role, in this guild.

New in version 1.6.

property self_role#

Gets the role associated with this client’s user, if any.

New in version 1.6.

property stage_instances#

Returns a list of 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 None if not found.

Return type:

Optional[StageInstance]

property owner#

The member that owns the guild.

property icon#

Returns the guild’s icon asset, if available.

property banner#

Returns the guild’s banner asset, if available.

property splash#

Returns the guild’s invite splash asset, if available.

property discovery_splash#

Returns the guild’s discovery splash asset, if available.

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.members to be specified.

property chunked#

Returns a boolean indicating if the guild is “chunked”.

A chunked guild means that member_count is equal to the number of members stored in the internal members cache.

If this value returns False, then you should request for offline members.

property shard_id#

Returns the shard ID for this guild if applicable.

property created_at#

Returns the guild’s creation time in UTC.

property invites_disabled#

Returns a boolean indicating if the guild invites are disabled.

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, None is returned.

Parameters:

name (str) – The name of the member to lookup with an optional discriminator.

Returns:

The member in this guild with the associated name. If not found then None is returned.

Return type:

Optional[Member]

await create_text_channel(name, *, reason=None, category=None, position=..., topic=..., slowmode_delay=..., nsfw=..., overwrites=...)[source]#

This function is a coroutine.

Creates a TextChannel for the guild.

Note that you need the manage_channels permission to create the channel.

The overwrites parameter can be used to create a ‘secret’ channel upon creation. This parameter expects a dict of overwrites with the target (either a Member or a Role) as the key and a PermissionOverwrite as 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:

TextChannel

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 a VoiceChannel instead.

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 None indicates 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:

VoiceChannel

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 a StageChannel instead.

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:

StageChannel

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=..., default_reaction_emoji=...)[source]#

This function is a coroutine.

Creates a ForumChannel for the guild.

Note that you need the manage_channels permission to create the channel.

The overwrites parameter can be used to create a ‘secret’ channel upon creation. This parameter expects a dict of overwrites with the target (either a Member or a Role) as the key and a PermissionOverwrite as 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.

  • default_reaction_emoji (Optional[Emoji | int | str]) –

    The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: Emoji, snowflake ID, string representation (eg. ‘<a:emoji_name:emoji_id>’).

    New in version v2.5.

Returns:

The channel that was just created.

Return type:

ForumChannel

Raises:

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 a CategoryChannel instead.

Note

The category parameter is not supported in this function since categories cannot have categories.

Returns:

The channel that was just created.

Return type:

CategoryChannel

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 a CategoryChannel instead.

Note

The category parameter is not supported in this function since categories cannot have categories.

Returns:

The channel that was just created.

Return type:

CategoryChannel

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. :rtype: None

Note

You cannot leave the guild that you own, you must delete it instead via delete().

Raises:

HTTPException – Leaving the guild failed.

await delete()[source]#

This function is a coroutine.

Deletes the guild. You must be the guild owner to delete the guild.

Raises:
Return type:

None

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:
  • required (bool) – Whether MFA should be required to perform moderation actions.

  • reason (str) – The reason to show up in the audit log.

Raises:
Return type:

None

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_guild permission 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 be None for no description. This is only available to guilds that contain PUBLIC in Guild.features.

  • icon (bytes) – A bytes-like object representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ANIMATED_ICON in Guild.features. Could be None to denote removal of the icon.

  • banner (bytes) – A bytes-like object representing the banner. Could be None to denote removal of the banner. This is only available to guilds that contain BANNER in Guild.features.

  • splash (bytes) – A bytes-like object representing the invite splash. Only PNG/JPEG supported. Could be None to denote removing the splash. This is only available to guilds that contain INVITE_SPLASH in Guild.features.

  • discovery_splash (bytes) – A bytes-like object representing the discovery splash. Only PNG/JPEG supported. Could be None to denote removing the splash. This is only available to guilds that contain DISCOVERABLE in Guild.features.

  • community (bool) – Whether the guild should be a Community guild. If set to True, both rules_channel and public_updates_channel parameters are required.

  • afk_channel (Optional[VoiceChannel]) – The new channel that is the AFK channel. Could be None for 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 be None for 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-US or ja or zh-CN.

  • rules_channel (Optional[TextChannel]) – The new channel that is used for rules. This is only available to guilds that contain PUBLIC in Guild.features. Could be None for 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 contain PUBLIC in Guild.features. Could be None for 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 icon is 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:

Guild

await fetch_channels()[source]#

This function is a coroutine.

Retrieves all abc.GuildChannel that the guild has.

Note

This method is an API call. For general usage, consider channels instead.

New in version 1.2.

Returns:

All channels in the guild.

Return type:

Sequence[abc.GuildChannel]

Raises:
await active_threads()[source]#

This function is a coroutine.

Returns a list of active Thread that 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 Member from a guild ID, and a member ID.

Note

This method is an API call. If you have Intents.members and member cache enabled, consider get_member() instead.

Parameters:

member_id (int) – The member’s ID to fetch from.

Returns:

The member from the member ID.

Return type:

Member

Raises:
await fetch_ban(user)[source]#

This function is a coroutine.

Retrieves the BanEntry for a user.

You must have the ban_members permission to get this information.

Parameters:

user (abc.Snowflake) – The user to get ban information from.

Returns:

The BanEntry object for the specified user.

Return type:

BanEntry

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.GuildChannel or Thread with 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 AsyncIterator that enables receiving the guild’s bans. In order to use this, you must have the ban_members permission. Users will always be returned in ascending order sorted by user ID. If both the before and after parameters are provided, only before is respected.

Changed in version 2.5: The before. and after parameters were changed. They are now of the type abc.Snowflake instead of SnowflakeTime to comply with the discord api.

Changed in version 2.0: The limit, before. and after parameters were added. Now returns a BanIterator instead of a list of BanEntry objects.

All parameters are optional.

Parameters:
  • limit (Optional[int]) – The number of bans to retrieve. Defaults to 1000.

  • before (Optional[abc.Snowflake]) – Retrieve bans before the given user.

  • after (Optional[abc.Snowflake]) – Retrieve bans after the given user.

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.

Return type:

BanIterator

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...
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 days number of days and have no roles.

You must have the kick_members permission 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 roles parameter.

Changed in version 1.4: The roles keyword-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 to True which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to False. If this is set to False, then this function will always return None.

  • roles (List[abc.Snowflake]) – A list of abc.Snowflake that represent roles to include in the pruning process. If a member has a role that is not specified, they’ll be excluded.

Raises:
Returns:

The number of members pruned. If compute_prune_count is False then this returns None.

Return type:

Optional[int]

await templates()[source]#

This function is a coroutine.

Gets the list of templates from this guild.

Requires manage_guild permissions.

New in version 1.7.

Returns:

The templates for this guild.

Return type:

List[Template]

Raises:

Forbidden – You don’t have permissions to get the templates.

await webhooks()[source]#

This function is a coroutine.

Gets the list of webhooks from this guild.

Requires manage_webhooks permissions.

Returns:

The webhooks for this guild.

Return type:

List[Webhook]

Raises:

Forbidden – You don’t have permissions to get the webhooks.

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.Snowflake that 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:

int

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_guild permission 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_guild permission to do this.

New in version 1.7.

Parameters:
  • name (str) – The name of the template.

  • description (str) – The description of the template.

Return type:

Template

await create_integration(*, type, id)[source]#

This function is a coroutine.

Attaches an integration to the guild.

You must have the manage_guild permission to do this.

New in version 1.4.

Parameters:
  • type (str) – The integration type (e.g. Twitch).

  • id (int) – The integration ID.

Raises:
  • Forbidden – You do not have permission to create the integration.

  • HTTPException – The account could not be found.

Return type:

None

await integrations()[source]#

This function is a coroutine.

Returns a list of all integrations attached to the guild.

You must have the manage_guild permission 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 stickers instead.

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 Sticker from the guild.

New in version 2.0.

Note

This method is an API call. For general usage, consider iterating over stickers instead.

Parameters:

sticker_id (int) – The sticker’s ID.

Returns:

The retrieved sticker.

Return type:

GuildSticker

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 Sticker for the guild.

You must have manage_emojis_and_stickers permission 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:

GuildSticker

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 Sticker from the guild.

You must have manage_emojis_and_stickers permission 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 emojis instead.

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 Emoji from the guild.

Note

This method is an API call. For general usage, consider iterating over emojis instead.

Parameters:

emoji_id (int) – The emoji’s ID.

Returns:

The retrieved emoji.

Return type:

Emoji

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 Emoji for the guild.

There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the MORE_EMOJI feature which extends the limit to 200.

You must have the manage_emojis permission 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]) – A list of Roles 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:
Returns:

The created emoji.

Return type:

Emoji

await delete_emoji(emoji, *, reason=None)[source]#

This function is a coroutine.

Deletes the custom Emoji from the guild.

You must have manage_emojis permission 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:
Return type:

None

await fetch_roles()[source]#

This function is a coroutine.

Retrieves all Role that the guild has.

Note

This method is an API call. For general usage, consider roles instead.

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, icon=..., unicode_emoji=...)[source]#

This function is a coroutine.

Creates a Role for the guild.

All fields are optional.

You must have the manage_roles permission to do this.

Changed in version 1.6: Can now pass int to colour keyword-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 to Colour.default(). This is aliased to color as well.

  • hoist (bool) – Indicates if the role should be shown separately in the member list. Defaults to False.

  • mentionable (bool) – Indicates if the role should be mentionable by others. Defaults to False.

  • reason (Optional[str]) – The reason for creating 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_emoji is set to None. Only available to guilds that contain ROLE_ICONS in Guild.features.

  • unicode_emoji (Optional[str]) – The role’s unicode emoji. If this argument is passed, icon is set to None. Only available to guilds that contain ROLE_ICONS in Guild.features.

  • color (Colour | int) –

Returns:

The newly created role.

Return type:

Role

Raises:
await edit_role_positions(positions, *, reason=None)[source]#

This function is a coroutine.

Bulk edits a list of Role in the guild.

You must have the manage_roles permission 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:
  • positions (Dict[Role, int]) – A dict of Role to int to change the positions of each given role.

  • reason (Optional[str]) – The reason for editing the role positions. Shows up on the audit log.

Returns:

A list of all the roles in the guild.

Return type:

List[Role]

Raises:
await kick(user, *, reason=None)[source]#

This function is a coroutine.

Kicks a user from the guild.

The user must meet the abc.Snowflake abc.

You must have the kick_members permission to do this.

Parameters:
  • user (abc.Snowflake) – The user to kick from their guild.

  • reason (Optional[str]) – The reason the user got kicked.

Raises:
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.Snowflake abc.

You must have the ban_members permission 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 as delete_message_seconds but is used for days instead.

  • reason (Optional[str]) – The reason the user got banned.

Raises:
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.Snowflake abc.

You must have the ban_members permission 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:
Return type:

None

await vanity_invite()[source]#

This function is a coroutine.

Returns the guild’s special vanity invite.

The guild must have VANITY_URL in features.

You must have the manage_guild permission to use this as well.

Returns:

The special vanity invite. If None then 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:

Widget

Raises:
await edit_widget(*, enabled=..., channel=...)[source]#

This function is a coroutine.

Edits the widget of the guild.

You must have the manage_guild permission to use this

New in version 2.0.

Parameters:
  • enabled (bool) – Whether to enable the widget for the guild.

  • channel (Optional[Snowflake]) – The new widget channel. None removes the widget channel.

Raises:
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:

None

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 as get_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:
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. Use None to 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 WelcomeScreen of the guild.

The guild must have COMMUNITY in features.

You must have the manage_guild permission in order to get this.

New in version 2.0.

Returns:

The welcome screen of guild.

Return type:

WelcomeScreen

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.edit without fetching the welcome screen.

You must have the manage_guild permission in the guild to do this.

The guild must have COMMUNITY in Guild.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:

WelcomeScreen

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 ScheduledEvent in the guild.

Note

This method is an API call. For general usage, consider scheduled_events instead.

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 to True.

Returns:

The fetched scheduled events.

Return type:

List[ScheduledEvent]

Raises:
await fetch_scheduled_event(event_id, /, *, with_user_count=True)[source]#

This function is a coroutine.

Retrieves a ScheduledEvent from event ID.

Note

This method is an API call. If you have Intents.scheduled_events, consider get_scheduled_event() instead.

Parameters:
  • event_id (int) – The event’s ID to fetch with.

  • with_user_count (Optional[bool]) – If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to True.

Returns:

The scheduled event from the event ID.

Return type:

Optional[ScheduledEvent]

Raises:
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 None if 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, image=...)[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 is ScheduledEventPrivacyLevel.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.

  • image (Optional[bytes]) – The cover image of the scheduled event

Returns:

The created scheduled event.

Return type:

Optional[ScheduledEvent]

Raises:
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 AutoModRule from rule ID.

Returns:

The requested auto moderation rule.

Return type:

AutoModRule

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:

AutoModRule

Raises:
  • HTTPException – Creating the auto moderation rule failed.

  • Forbidden – You do not have the Manage Guild permission.

await onboarding()[source]#

This function is a coroutine.

Returns the Onboarding flow for the guild.

New in version 2.5.

Returns:

The onboarding flow for the guild.

Return type:

Onboarding

Raises:

HTTPException – Retrieving the onboarding flow failed somehow.

await edit_onboarding(*, prompts=..., default_channels=..., enabled=..., mode=..., reason=...)[source]#

This function is a coroutine.

A shorthand for Onboarding.edit without fetching the onboarding flow.

You must have the manage_guild and manage_roles permissions in the guild to do this.

Parameters:
  • prompts (Optional[List[OnboardingPrompt]]) – The new list of prompts for this flow.

  • default_channels (Optional[List[Snowflake]]) – The new default channels that users are opted into.

  • enabled (Optional[bool]) – Whether onboarding should be enabled. Setting this to True requires the guild to have COMMUNITY in features and at least 7 default_channels.

  • mode (Optional[OnboardingMode]) – The new onboarding mode.

  • reason (Optional[str]) – The reason that shows up on Audit log.

Returns:

The updated onboarding flow.

Return type:

Onboarding

Raises:
  • HTTPException – Editing the onboarding flow failed somehow.

  • Forbidden – You don’t have permissions to edit the onboarding flow.

await delete_auto_moderation_rule(id, *, reason=None)[source]#

Deletes an auto moderation rule.

Parameters:
  • id (int) – The ID of the auto moderation rule.

  • reason (Optional[str]) – The reason for deleting the rule. Shows up in the audit log.

Raises:
  • HTTPException – Deleting the auto moderation rule failed.

  • Forbidden – You do not have the Manage Guild permission.

Return type:

None

await create_test_entitlement(sku)[source]#

This function is a coroutine.

Creates a test entitlement for the guild.

Parameters:

sku (Snowflake) – The SKU to create a test entitlement for.

Returns:

The created entitlement.

Return type:

Entitlement

class discord.BanEntry#

A namedtuple which represents a ban returned from bans().

reason#

The reason this user was banned.

Type:

Optional[str]

user#

The User that was banned.

Type:

User

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 User instances too.

x != y

Checks if two members are not equal. Note that this works with User instances too.

hash(x)

Returns the member’s hash.

str(x)

Returns the member’s name with the discriminator or global_name.

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]]

guild#

The guild that the member belongs to.

Type:

Guild

nick#

The guild specific nickname of the user.

Type:

Optional[str]

pending#

Whether the member is pending member verification.

New in version 1.6.

Type:

bool

premium_since#

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 AsyncIterator that enables receiving the destination’s message history.

You must have read_message_history permissions to use this.

Parameters:
  • limit (Optional[int]) – The number of messages to retrieve. If None, 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 to True, return messages in oldest->newest order. Defaults to True if after is specified, otherwise False.

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.

Return type:

HistoryIterator

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.

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. :rtype: Typing

Note

This is both a regular context manager and an async context manager. This means that both with and async with work with this.

Example Usage:

async with channel.typing():
    # simulate something heavy
    await asyncio.sleep(10)

await channel.send('done!')
property name#

Equivalent to User.name

property id#

Equivalent to User.id

property discriminator#

Equivalent to User.discriminator

property bot#

Equivalent to User.bot

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 DMChannel with this user.

This should be rarely called, as this is done transparently for most people.

Returns:

The channel that was created.

Return type:

DMChannel

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.

property status#

The member’s overall status. If the value is unknown, then it will be a str instead.

property mobile_status#

The member’s status on a mobile device, if applicable.

property desktop_status#

The member’s status on the desktop client, if applicable.

property web_status#

The member’s status on the web client, if applicable.

property global_name#

The member’s global name, if applicable.

is_on_mobile()[source]#

A helper function that determines if a member is active on a mobile device.

Return type:

bool

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.

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.

property roles#

A list of Role that 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 mention#

Returns a string that allows you to mention the member.

property display_name#

Returns the user’s display name. This will either be their guild specific nickname, global name or username.

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.

property guild_avatar#

Returns an Asset for the guild avatar the member has. If unavailable, None is returned.

New in version 2.0.

property activity#

Returns the primary activity the user is currently doing. Could be None if no activity is being done.

Note

Due to a Discord API limitation, this may be None if 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.

mentioned_in(message)[source]#

Checks if the member is mentioned in the specified message.

Parameters:

message (Message) – The message to check if you’re mentioned in.

Returns:

Indicates if the member is mentioned in the message.

Return type:

bool

property top_role#

Returns the member’s highest role.

This is useful for figuring where a member stands in the role hierarchy chain.

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.

property voice#

Returns the member’s current voice state.

property timed_out#

Returns whether the member is timed out.

New in version 2.0.

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().

Parameters:
  • delete_message_seconds (int | None) –

  • delete_message_days (Literal[(0, 1, 2, 3, 4, 5, 6, 7)] | None) –

  • reason (str | None) –

Return type:

None

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:

All parameters are optional.

Changed in version 1.1: Can now pass None to voice_channel to 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. Use None to 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. Pass None to 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_members permission to timeout a member.

Parameters:
  • until (datetime.datetime) – The date and time to timeout the member for. If this is None then 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 to timeout(until=datetime.utcnow() + duration, reason=reason).

You must have the moderate_members permission 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_members permission to remove the timeout.

This is equivalent to calling timeout() and passing None to the until parameter.

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. :rtype: None

Note

Requesting members that are not the client is equivalent to edit providing suppress as False.

New in version 1.7.

Raises:
  • Forbidden – You do not have the proper permissions to the action requested.

  • HTTPException – The operation failed.

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_members permission to use this.

This raises the same exceptions as edit().

Changed in version 1.1: Can now pass None to kick a member from voice.

Parameters:
  • channel (Optional[VoiceChannel]) – The new voice channel to move the member to. Pass None to 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_roles permission to use this, and the added Roles must appear lower in the list of roles than the highest role of the member.

Parameters:
  • *roles (abc.Snowflake) – An argument list of abc.Snowflake representing a Role to 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:
Return type:

None

property avatar_decoration#

Equivalent to User.avatar_decoration

can_send(*objects)#

Returns a bool indicating whether you have the permissions to send the object(s).

Returns:

Indicates whether you have the permissions to send the object(s).

Return type:

bool

Raises:

TypeError – An invalid type has been passed.

await create_test_entitlement(sku)#

This function is a coroutine.

Creates a test entitlement for the user.

Parameters:

sku (Snowflake) – The SKU to create a test entitlement for.

Returns:

The created entitlement.

Return type:

Entitlement

await fetch_message(id, /)#

This function is a coroutine.

Retrieves a single Message from the destination.

Parameters:

id (int) – The message ID to look for.

Returns:

The message asked for.

Return type:

Message

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 is_migrated#

Equivalent to User.is_migrated

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 Message objects returned by this method do not contain complete Message.reactions data.

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_roles permission to use this, and the removed Roles must appear lower in the list of roles than the highest role of the member.

Parameters:
  • *roles (abc.Snowflake) – An argument list of abc.Snowflake representing a Role to 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, enforce_nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None, silent=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 to None (the default), then the embed parameter must be provided.

To upload a single file, the file parameter should be used with a single File object. To upload multiple files, the files parameter should be used with a list of File objects. Specifying both parameters will lead to an exception.

To upload a single embed, the embed parameter should be used with a single Embed object. To upload multiple embeds, the embeds parameter should be used with a list of Embed objects. 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.

  • enforce_nonce (Optional[bool]) –

    Whether nonce is enforced to be validated.

    New in version 2.5.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using to_reference() or passed directly as a Message. You can control whether this mentions the author of the referenced message using the replied_user attribute of allowed_mentions or by setting mention_author.

    New in version 1.6.

  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_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.

  • silent (bool) –

    Whether to suppress push and desktop notifications for the message.

    New in version 2.4.

Returns:

The message that was sent.

Return type:

Message

Raises:
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:

None

get_role(role_id, /)[source]#

Returns a role with the given ID from roles which the member has.

New in version 2.0.

Parameters:

role_id (int) – The ID to search for.

Returns:

The role or None if not found in the member’s roles.

Return type:

Optional[Role]

class discord.Template(*, state, data)[source]#

Represents a Discord template.

New in version 1.4.

code#

The template code.

Type:

str

uses#

How many times the template has been used.

Type:

int

name#

The name of the template.

Type:

str

description#

The description of the template.

Type:

str

creator#

The creator of the template.

Type:

User

created_at#

An aware datetime in UTC representing when the template was created.

Type:

datetime.datetime

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:

datetime.datetime

source_guild#

The source guild.

Type:

Guild

is_dirty#

Whether the template has unsynced changes.

New in version 2.0.

Type:

Optional[bool]

Parameters:
  • state (ConnectionState) –

  • data (Template) –

await create_guild(name, icon=None)[source]#

This function is a coroutine.

Creates a Guild using the template.

Bot accounts in more than 10 guilds are not allowed to create guilds.

Parameters:
Returns:

The guild created. This is not the same guild that is added to cache.

Return type:

Guild

Raises:
await sync()[source]#

This function is a coroutine.

Sync the template to the guild’s current state.

You must have the manage_guild permission 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:

Template

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_guild permission 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:
  • name (str) – The template’s new name.

  • description (Optional[str]) – The template’s new description.

Returns:

The newly edited template.

Return type:

Template

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_guild permission in the source guild to do this. :rtype: None

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.

property url#

The template url.

New in version 2.0.

AutoMod#

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.

id#

The rule’s ID.

Type:

int

name#

The rule’s name.

Type:

str

creator_id#

The ID of the user who created this rule.

Type:

int

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]

enabled#

Whether this rule is enabled.

Type:

bool

exempt_role_ids#

The IDs of the roles that are exempt from this rule.

Type:

List[int]

exempt_channel_ids#

The IDs of the channels that are exempt from this rule.

Type:

List[int]

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:
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[abc.Snowflake]) – The roles that will be exempt from this rule.

  • exempt_channels (List[abc.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:
Attributes
class discord.AutoModAction(action_type, metadata)[source]#

Represents an action for a guild’s auto moderation rule.

New in version 2.0.

type#

The action’s type.

Type:

AutoModActionType

metadata#

The action’s metadata.

Type:

AutoModActionMetadata

Parameters:
class discord.AutoModActionMetadata(channel_id=..., timeout_duration=..., custom_message=...)[source]#

Represents an action’s metadata.

Depending on the action’s type, different attributes will be used.

New in version 2.0.

channel_id#

The ID of the channel to send the message to. Only for actions of type AutoModActionType.send_alert_message.

Type:

int

timeout_duration#

How long the member that triggered the action should be timed out for. Only for actions of type AutoModActionType.timeout.

Type:

datetime.timedelta

custom_message#

An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type AutoModActionType.block_message.

Type:

str

Parameters:
  • channel_id (int) –

  • timeout_duration (timedelta) –

  • custom_message (str) –

class discord.AutoModTriggerMetadata(keyword_filter=..., regex_patterns=..., presets=..., allow_list=..., mention_total_limit=...)[source]#

Represents a rule’s trigger metadata, defining additional data used to determine when a rule triggers.

Depending on the trigger type, different metadata attributes will be used:

Each attribute has limits that may change based on the trigger type. See here for information on attribute limits.

New in version 2.0.

keyword_filter#

A list of substrings to filter.

Type:

List[str]

regex_patterns#

A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin re module.

New in version 2.4.

Type:

List[str]

presets#

A list of preset keyword sets to filter.

Type:

List[AutoModKeywordPresetType]

allow_list#

A list of substrings to allow, overriding keyword and regex matches.

New in version 2.4.

Type:

List[str]

mention_total_limit#

The total number of unique role and user mentions allowed.

New in version 2.4.

Type:

int

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 Invite resolves 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.

name#

The partial guild’s name.

Type:

str

id#

The partial guild’s ID.

Type:

int

verification_level#

The partial guild’s verification level.

Type:

VerificationLevel

features#

A list of features the guild has. See Guild.features for more information.

Type:

List[str]

description#

The partial guild’s description.

Type:

Optional[str]

Parameters:
  • state (ConnectionState) –

  • data (InviteGuild) –

  • id (int) –

property created_at#

Returns the guild’s creation time in UTC.

property icon#

Returns the guild’s icon asset, if available.

property banner#

Returns the guild’s banner asset, if available.

property splash#

Returns the guild’s invite splash asset, if available.

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 Invite resolves 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.

name#

The partial channel’s name.

Type:

str

id#

The partial channel’s ID.

Type:

int

type#

The partial channel’s type.

Type:

ChannelType

Parameters:

data (PartialChannel) –

property mention#

The string that allows you to mention the channel.

property created_at#

Returns the channel’s creation time in UTC.

class discord.Invite(*, state, data, guild=None, channel=None)[source]#

Represents a Discord Guild or abc.GuildChannel invite.

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:

If 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 0 indicates that it doesn’t expire.

Type:

int

code#

The URL fragment used for the invite.

Type:

str

guild#

The guild the invite is for. Can be None if it’s from a group direct message.

Type:

Optional[Union[Guild, Object, PartialInviteGuild]]

revoked#

Indicates if the invite has been revoked.

Type:

bool

created_at#

An aware UTC datetime object denoting the time the invite was created.

Type:

datetime.datetime

temporary#

Indicates that the invite grants temporary membership. If True, members who joined via this invite will be kicked upon disconnect.

Type:

bool

uses#

How many times the invite has been used.

Type:

int

max_uses#

How many times the invite can be used. A value of 0 indicates that it has unlimited uses.

Type:

int

inviter#

The user who created the invite.

Type:

Optional[User]

approximate_member_count#

The approximate number of members in the guild.

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.

Type:

Optional[int]

expires_at#

The expiration date of the invite. If the value is None when 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:

InviteTarget

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:
property id#

Returns the proper code portion of the invite.

property url#

A property that retrieves the invite URL.

await delete(*, reason=None)[source]#

This function is a coroutine.

Revokes the instant invite.

You must have the manage_channels permission 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:

None

Role#

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.

id#

The ID for the role.

Type:

int

name#

The name of the role.

Type:

str

guild#

The guild the role belongs to.

Type:

Guild

hoist#

Indicates if the role will be displayed separately from other members.

Type:

bool

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:

int

managed#

Indicates if the role is managed by the guild through some form of integrations such as Twitch.

Type:

bool

mentionable#

Indicates if the role can be mentioned by users.

Type:

bool

tags#

The role tags associated with this role.

Type:

Optional[RoleTags]

unicode_emoji#

The role’s unicode emoji. Only available to guilds that contain ROLE_ICONS in Guild.features.

New in version 2.0.

Type:

Optional[str]

Parameters:
  • guild (Guild) –

  • state (ConnectionState) –

  • data (Role) –

is_default()[source]#

Checks if the role is the default role.

Return type:

bool

is_bot_managed()[source]#

Whether the role is associated with a bot. :rtype: bool

New in version 1.6.

is_premium_subscriber()[source]#

Whether the role is the premium subscriber, AKA “boost”, role for the guild. :rtype: bool

New in version 1.6.

is_integration()[source]#

Whether the role is managed by an integration. :rtype: bool

New in version 1.6.

is_assignable()[source]#

Whether the role is able to be assigned or removed by the bot. :rtype: bool

New in version 2.0.

property permissions#

Returns the role’s permissions.

property colour#

Returns the role colour. An alias exists under color.

property color#

Returns the role color. An alias exists under colour.

property created_at#

Returns the role’s creation time in UTC.

property mention#

Returns a string that allows you to mention a role.

property members#

Returns all the members with this role.

property icon#

Returns the role’s icon asset, if available.

New in version 2.0.

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_roles permission to use this.

All fields are optional.

Changed in version 1.4: Can now pass int to colour keyword-only parameter.

Changed in version 2.0: Edits are no longer in-place, the newly edited role is returned instead. Added icon and unicode_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_emoji is set to None. Only available to guilds that contain ROLE_ICONS in Guild.features. Could be None to denote removal of the icon.

  • unicode_emoji (Optional[str]) – The role’s unicode emoji. If this argument is passed, icon is set to None. Only available to guilds that contain ROLE_ICONS in Guild.features.

  • color (Colour | int) –

Returns:

The newly edited role.

Return type:

Role

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_roles permission to use this.

Parameters:

reason (Optional[str]) – The reason for deleting this role. Shows up on the audit log.

Raises:
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 Role and Guild classes as well.

New in version 1.6.

bot_id#

The bot’s user ID that manages this role.

Type:

Optional[int]

integration_id#

The integration ID that manages the role.

Type:

Optional[int]

Parameters:

data (RoleTags) –

is_bot_managed()[source]#

Whether the role is associated with a bot.

Return type:

bool

is_premium_subscriber()[source]#

Whether the role is the premium subscriber, AKA “boost”, role for the guild.

Return type:

bool

is_integration()[source]#

Whether the role is managed by an integration.

Return type:

bool

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.

guild#

The guild where the scheduled event is happening.

Type:

Guild

name#

The name of the scheduled event.

Type:

str

description#

The description of the scheduled event.

Type:

Optional[str]

start_time#

The time when the event will start

Type:

datetime.datetime

end_time#

The time when the event is supposed to end.

Type:

Optional[datetime.datetime]

status#

The status of the scheduled event.

Type:

ScheduledEventStatus

location#

The location of the event. See ScheduledEventLocation for more information.

Type:

ScheduledEventLocation

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 None because events created before October 25th, 2021 haven’t had their creators tracked.

Type:

Optional[int]

creator#

The resolved user object of who created the event.

Type:

Optional[User]

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.

Type:

ScheduledEventPrivacyLevel

Parameters:
  • state (ConnectionState) –

  • guild (Guild) –

  • creator (Member | None) –

  • data (ScheduledEventPayload) –

property created_at#

Returns the scheduled event’s creation time in UTC.

property interested#

An alias to subscriber_count

property url#

The url to reference the scheduled event.

property cover#

Returns the scheduled event cover image asset, if available.

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.type is ScheduledEventLocationType.external, then end_time is required.

Will return a new ScheduledEvent object if applicable.

Parameters:
Returns:

The newly updated scheduled event object. This is only returned when certain fields are updated.

Return type:

Optional[ScheduledEvent]

Raises:
await delete()[source]#

This function is a coroutine.

Deletes the scheduled event.

Raises:
Return type:

None

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 status is ScheduledEventStatus.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:
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 status is ScheduledEventStatus.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:
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 status is ScheduledEventStatus.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:
subscribers(*, limit=100, as_member=False, before=None, after=None)[source]#

Returns an AsyncIterator representing the users or members subscribed to the event.

The after and before parameters must represent member or user objects and meet the abc.Snowflake abc.

Note

Even is as_member is set to True, if the user is outside the guild, it will be a User object.

Parameters:
  • limit (Optional[int]) – The maximum number of results to return.

  • as_member (Optional[bool]) – Whether to fetch Member objects instead of user objects. There may still be User objects 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 subscribed Member. If as_member is set to False or the user is outside the guild, it will be a User object.

Raises:

HTTPException – Fetching the subscribed users failed.

Return type:

AsyncIterator

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)
class discord.ScheduledEventLocation(*, state, value)[source]#

Represents a scheduled event’s location.

Setting the value to its corresponding type will set the location type automatically:

New in version 2.0.

value#

The actual location of the scheduled event.

Type:

Union[str, StageChannel, VoiceChannel, Object]

type#

The type of location.

Type:

ScheduledEventLocationType

Parameters:

Welcome Screen#

Methods
class discord.WelcomeScreen(data, guild)[source]#

Represents the welcome screen of a guild.

New in version 2.0.

description#

The description text displayed on the welcome screen.

Type:

str

welcome_channels#

A list of channels displayed on welcome screen.

Type:

List[WelcomeScreenChannel]

Parameters:
  • data (WelcomeScreen) –

  • guild (Guild) –

property enabled#

Indicates whether the welcome screen is enabled or not.

property guild#

The guild this welcome screen belongs to.

await edit(**options)[source]#

This function is a coroutine.

Edits the welcome screen.

You must have the manage_guild permission 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_tier is level 2 or above.

class discord.WelcomeScreenChannel(channel, description, emoji)[source]#

Represents a welcome channel displayed on WelcomeScreen

New in version 2.0.

channel#

The channel that is being referenced.

Type:

abc.Snowflake

description#

The description of the channel that is shown on the welcome screen.

Type:

str

emoji#

The emoji of the channel that is shown on welcome screen.

Type:

Union[Emoji, PartialEmoji, str]

Parameters:

Onboarding#

class discord.Onboarding(data, guild)[source]#

Represents the onboarding flow for a guild.

New in version 2.5.

prompts#

A list of prompts displayed in the onboarding flow.

Type:

List[OnboardingPrompt]

enabled#

Whether onboarding is enabled in the guild.

Type:

bool

mode#

The current onboarding mode.

Type:

OnboardingMode

Parameters:
  • data (Onboarding) –

  • guild (Guild) –

default_channels#

The channels that members are opted into by default.

If a channel is not found in the guild’s cache, then it will be returned as an Object.

await edit(*, prompts=..., default_channels=..., enabled=..., mode=..., reason=...)[source]#

This function is a coroutine.

Edits this onboarding flow.

You must have the manage_guild and manage_roles permissions in the guild to do this.

Parameters:
  • prompts (Optional[List[OnboardingPrompt]]) – The new list of prompts for this flow.

  • default_channels (Optional[List[Snowflake]]) – The new default channels that users are opted into.

  • enabled (Optional[bool]) – Whether onboarding should be enabled. Setting this to True requires the guild to have COMMUNITY in features and at least 7 default_channels.

  • mode (Optional[OnboardingMode]) – The new onboarding mode.

  • reason (Optional[str]) – The reason for editing this onboarding flow. Shows up on the audit log.

Returns:

The updated onboarding flow.

Return type:

Onboarding

Raises:
  • HTTPException – Editing the onboarding flow failed somehow.

  • Forbidden – You don’t have permissions to edit the onboarding flow.

await add_prompt(type, title, options, single_select, required, in_onboarding, *, reason=None)[source]#

This function is a coroutine.

Adds a new onboarding prompt.

You must have the manage_guild and manage_roles permissions in the guild to do this.

Parameters:
  • type (PromptType) – The type of onboarding prompt.

  • title (str) – The prompt’s title.

  • options (List[PromptOption]) – The list of options available in the prompt.

  • single_select (bool) – Whether the user is limited to selecting one option on this prompt.

  • required (bool) – Whether the user is required to answer this prompt.

  • in_onboarding (bool) – Whether this prompt is displayed in the initial onboarding flow.

  • reason (Optional[str]) – The reason for adding this prompt. Shows up on the audit log.

Returns:

The updated onboarding flow.

Return type:

Onboarding

Raises:
  • HTTPException – Editing the onboarding flow failed somehow.

  • Forbidden – You don’t have permissions to edit the onboarding flow.

await append_prompt(prompt, *, reason=None)[source]#

This function is a coroutine.

Append an onboarding prompt onto this flow.

You must have the manage_guild and manage_roles permissions in the guild to do this.

Parameters:
  • prompt (OnboardingPrompt) – The onboarding prompt to append.

  • reason (Optional[str]) – The reason for appending this prompt. Shows up on the audit log.

Returns:

The updated onboarding flow.

Return type:

Onboarding

Raises:
  • HTTPException – Editing the onboarding flow failed somehow.

  • Forbidden – You don’t have permissions to edit the onboarding flow.

get_prompt(id)[source]#

This function is a coroutine.

Get an onboarding prompt with the given ID.

Parameters:

id (int) – The ID of the prompt to get.

Returns:

The matching prompt, or None if it didn’t exist.

Return type:

OnboardingPrompt

await delete_prompt(id, *, reason=...)[source]#

This function is a coroutine.

Delete an onboarding prompt with the given ID.

You must have the manage_guild and manage_roles permissions in the guild to do this.

Parameters:
  • id (int) – The ID of the prompt to delete.

  • reason (Optional[str]) – The reason for deleting this prompt. Shows up on the audit log.

Returns:

The updated onboarding flow.

Return type:

Onboarding

Raises:
  • ValueError – No prompt with this ID exists.

  • HTTPException – Editing the onboarding flow failed somehow.

  • Forbidden – You don’t have permissions to edit the onboarding flow.

class discord.OnboardingPrompt(type, title, options, single_select, required, in_onboarding, id=None)[source]#

Represents an onboarding prompt displayed in Onboarding.

New in version 2.5.

id#

The id of the prompt.

Type:

int

type#

The type of onboarding prompt.

Type:

PromptType

title#

The prompt’s title.

Type:

str

options#

The list of options available in the prompt.

Type:

List[PromptOption]

single_select#

Whether the user is limited to selecting one option on this prompt.

Type:

bool

required#

Whether the user is required to answer this prompt.

Type:

bool

in_onboarding#

Whether this prompt is displayed in the initial onboarding flow.

Type:

bool

class discord.PromptOption(title, channels=None, roles=None, description=None, emoji=None, id=None)[source]#

Represents an onboarding prompt option displayed in OnboardingPrompt.

New in version 2.5.

id#

The id of the prompt option.

Type:

int

channels#

The channels assigned to the user when they select this option.

Type:

List[Snowflake]

roles#

The roles assigned to the user when they select this option.

Type:

List[Snowflake]

emoji#

The emoji displayed with the option.

Type:

Union[Emoji, PartialEmoji]

title#

The option’s title.

Type:

str

description#

The option’s description.

Type:

Optional[str]

Integration#

class discord.Integration(*, data, guild)[source]#

Represents a guild integration.

New in version 1.4.

id#

The integration ID.

Type:

int

name#

The integration name.

Type:

str

guild#

The guild of the integration.

Type:

Guild

type#

The integration type (i.e. Twitch).

Type:

str

enabled#

Whether the integration is currently enabled.

Type:

bool

account#

The account linked to this integration.

Type:

IntegrationAccount

user#

The user that added this integration.

Type:

User

Parameters:
  • data (Union[BaseIntegration, StreamIntegration, BotIntegration]) –

  • guild (Guild) –

await delete(*, reason=None)[source]#

This function is a coroutine.

Deletes the integration.

You must have the manage_guild permission 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.

id#

The account ID.

Type:

str

name#

The account name.

Type:

str

Parameters:

data (IntegrationAccount) –

class discord.BotIntegration(*, data, guild)[source]#

Represents a bot integration on discord.

New in version 2.0.

id#

The integration ID.

Type:

int

name#

The integration name.

Type:

str

guild#

The guild of the integration.

Type:

Guild

type#

The integration type (i.e. Twitch).

Type:

str

enabled#

Whether the integration is currently enabled.

Type:

bool

user#

The user that added this integration.

Type:

User

account#

The integration account information.

Type:

IntegrationAccount

application#

The application tied to this integration.

Type:

IntegrationApplication

Parameters:
  • data (Union[BaseIntegration, StreamIntegration, BotIntegration]) –

  • guild (Guild) –

class discord.IntegrationApplication(*, data, state)[source]#

Represents an application for a bot integration.

New in version 2.0.

id#

The ID for this application.

Type:

int

name#

The application’s name.

Type:

str

icon#

The application’s icon hash.

Type:

Optional[str]

description#

The application’s description. Can be an empty string.

Type:

str

summary#

The summary of the application. Can be an empty string.

Type:

str

user#

The bot user on this application.

Type:

Optional[User]

Parameters:

data (IntegrationApplication) –

class discord.StreamIntegration(*, data, guild)[source]#

Represents a stream integration for Twitch or YouTube.

New in version 2.0.

id#

The integration ID.

Type:

int

name#

The integration name.

Type:

str

guild#

The guild of the integration.

Type:

Guild

type#

The integration type (i.e. Twitch).

Type:

str

enabled#

Whether the integration is currently enabled.

Type:

bool

syncing#

Where the integration is currently syncing.

Type:

bool

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_behavior as well.

Type:

ExpireBehaviour

expire_grace_period#

The grace period (in days) for expiring subscribers.

Type:

int

user#

The user for the integration.

Type:

User

account#

The integration account information.

Type:

IntegrationAccount

synced_at#

An aware UTC datetime representing when the integration was last synced.

Type:

datetime.datetime

Parameters:
  • data (Union[BaseIntegration, StreamIntegration, BotIntegration]) –

  • guild (Guild) –

property expire_behavior#

An alias for expire_behaviour.

property role#

The role which the integration uses for subscribers.

await edit(*, expire_behaviour=..., expire_grace_period=..., enable_emoticons=...)[source]#

This function is a coroutine.

Edits the integration.

You must have the manage_guild permission to do this.

Parameters:
  • expire_behaviour (ExpireBehaviour) – The behaviour when an integration subscription lapses. Aliased to expire_behavior as 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:
Return type:

None

await sync()[source]#

This function is a coroutine.

Syncs the integration.

You must have the manage_guild permission to do this.

Raises:
  • Forbidden – You do not have permission to sync the integration.

  • HTTPException – Syncing the integration failed.

Return type:

None

Widget#

class discord.Widget(*, state, data)[source]#

Represents a Guild widget.

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.

id#

The guild’s ID.

Type:

int

name#

The guild’s name.

Type:

str

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) –

property created_at#

Returns the member’s creation time in UTC.

property json_url#

The JSON URL of the widget.

property invite_url#

The invite URL for the guild, if available.

await fetch_invite(*, with_counts=True)[source]#

This function is a coroutine.

Retrieves an Invite from the widget’s invite URL. This is the same as Client.fetch_invite(); the invite code is abstracted away.

Parameters:

with_counts (bool) – Whether to include count information in the invite. This fills the Invite.approximate_member_count and Invite.approximate_presence_count fields.

Returns:

The invite from the widget’s invite URL.

Return type:

Invite

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.

id#

The channel’s ID.

Type:

int

name#

The channel’s name.

Type:

str

position#

The channel’s position

Type:

int

Parameters:
  • id (int) –

  • name (str) –

  • position (int) –

property mention#

The string that allows you to mention the channel.

property created_at#

Returns the channel’s creation time in UTC.

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.

id#

The member’s ID.

Type:

int

name#

The member’s username.

Type:

str

discriminator#

The member’s discriminator.

Type:

str

bot#

Whether the member is a bot.

Type:

bool

status#

The member’s status.

Type:

Status

nick#

The member’s nickname.

Type:

Optional[str]

avatar#

The member’s avatar hash.

Type:

Optional[str]

activity#

The member’s activity.

Type:

Optional[Union[BaseActivity, Spotify]]

deafened#

Whether the member is currently deafened.

Type:

Optional[bool]

muted#

Whether the member is currently muted.

Type:

Optional[bool]

suppress#

Whether the member is currently being suppressed.

Type:

Optional[bool]

connected_channel#

Which channel the member is connected to.

Type:

Optional[WidgetChannel]

Parameters:
  • state (ConnectionState) –

  • data (WidgetMemberPayload) –

  • connected_channel (WidgetChannel | None) –

property display_name#

Returns the member’s display name.

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().

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().

property avatar_decoration#

Returns the user’s avatar decoration, if available.

New in version 2.5.

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().

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.

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.

property created_at#

Returns the user’s creation time in UTC.

This is when the user’s Discord account was created.

property default_avatar#

Returns the default avatar for a given user. This is calculated by the user’s ID if they’re on the new username system, otherwise their discriminator.

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.

property is_migrated#

Checks whether the user is already migrated to global name.

property jump_url#

Returns a URL that allows the client to jump to the user.

New in version 2.0.

property mention#

Returns a string that allows you to mention the given user.

mentioned_in(message)#

Checks if the user is mentioned in the specified message.

Parameters:

message (Message) – The message to check if you’re mentioned in.

Returns:

Indicates if the user is mentioned in the message.

Return type:

bool

property public_flags#

The publicly available flags the user has.

Threads#

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.

name#

The thread name.

Type:

str

guild#

The guild the thread belongs to.

Type:

Guild

id#

The thread ID.

Note

This ID is the same as the thread starting message ID.

Type:

int

parent_id#

The parent TextChannel ID this thread belongs to.

Type:

int

owner_id#

The user’s ID that created this thread.

Type:

int

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_channels or manage_messages bypass slowmode.

Type:

int

message_count#

An approximate number of messages in this thread. This caps at 50.

Type:

int

member_count#

An approximate number of members in this thread. This caps at 50.

Type:

int

me#

A thread member representing yourself, if you’ve joined the thread. This could not be available.

Type:

Optional[ThreadMember]

archived#

Whether the thread is archived.

Type:

bool

locked#

Whether the thread is locked.

Type:

bool

invitable#

Whether non-moderators can add other non-moderators to this thread. This is always True for public threads.

Type:

bool

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:

int

archive_timestamp#

An aware timestamp of when the thread’s archived status was last updated in UTC.

Type:

datetime.datetime

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:

ChannelFlags

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:

int

Parameters:
  • guild (Guild) –

  • state (ConnectionState) –

  • data (Thread) –

async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#

Returns an AsyncIterator that enables receiving the destination’s message history.

You must have read_message_history permissions to use this.

Parameters:
  • limit (Optional[int]) – The number of messages to retrieve. If None, 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 to True, return messages in oldest->newest order. Defaults to True if after is specified, otherwise False.

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.

Return type:

HistoryIterator

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.

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. :rtype: Typing

Note

This is both a regular context manager and an async context manager. This means that both with and async with work with this.

Example Usage:

async with channel.typing():
    # simulate something heavy
    await asyncio.sleep(10)

await channel.send('done!')
property type#

The channel’s Discord type.

property parent#

The parent channel this thread belongs to.

property owner#

The member this thread belongs to.

property mention#

The string that allows you to mention the thread.

property jump_url#

Returns a URL that allows the client to jump to the thread.

New in version 2.0.

property members#

A list of thread members in this thread, including the bot if it is a member of this thread.

This requires Intents.members to be properly filled. Most of the time however, this data is not provided by the gateway and a call to fetch_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() or fetch_message() with the last_message_id attribute.

Returns:

The last message in this channel or None if 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 None if 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. :rtype: bool

New in version 2.3.

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:

bool

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() is True.

Return type:

bool

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() is True.

Return type:

bool

permissions_for(obj, /)[source]#

Handles permission resolution for the Member or Role.

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:

Permissions

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_messages permission 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 a check is not provided then all messages are deleted without discrimination.

You must have the manage_messages permission to delete messages even if they are your own (unless you are a user account). The read_message_history permission 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 a Message as its sole parameter.

  • before (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as before in history().

  • after (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as after in history().

  • around (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as around in history().

  • oldest_first (Optional[bool]) – Same as oldest_first in history().

  • bulk (bool) – If True, use bulk delete. Setting this to False is useful for mass-deleting a bot’s own messages without Permissions.manage_messages. When True, 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 edit name, archived or auto_archive_duration. Note that if the thread is locked then only those with Permissions.manage_threads can send messages in it or 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 of 60, 1440, 4320, or 10080.

  • slowmode_delay (int) – Specifies the slowmode rate limit for user in this thread, in seconds. A value of 0 disables slowmode. The maximum value possible is 21600.

  • 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:

Thread

Raises:
await archive(locked=...)[source]#

This function is a coroutine.

Archives the thread. This is a shorthand of edit().

Parameters:

locked (bool) – Whether to lock the thread on archive, Defaults to False.

Returns:

The updated thread.

Return type:

Thread

await unarchive()[source]#

This function is a coroutine.

Unarchives the thread. This is a shorthand of edit().

Returns:

The updated thread.

Return type:

Thread

await join()[source]#

This function is a coroutine.

Joins this thread.

You must have send_messages_in_threads to join a thread. If the thread is private, manage_threads is also needed.

Raises:
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_threads to add a user to a public thread. If the thread is private and invitable is False, then manage_threads is 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_threads or 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 ThreadMember that are in this thread.

This requires Intents.members to 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_threads to 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 PartialMessage from 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:

PartialMessage

can_send(*objects)#

Returns a bool indicating whether you have the permissions to send the object(s).

Returns:

Indicates whether you have the permissions to send the object(s).

Return type:

bool

Raises:

TypeError – An invalid type has been passed.

await fetch_message(id, /)#

This function is a coroutine.

Retrieves a single Message from the destination.

Parameters:

id (int) – The message ID to look for.

Returns:

The message asked for.

Return type:

Message

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 Message objects returned by this method do not contain complete Message.reactions data.

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, enforce_nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None, silent=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 to None (the default), then the embed parameter must be provided.

To upload a single file, the file parameter should be used with a single File object. To upload multiple files, the files parameter should be used with a list of File objects. Specifying both parameters will lead to an exception.

To upload a single embed, the embed parameter should be used with a single Embed object. To upload multiple embeds, the embeds parameter should be used with a list of Embed objects. 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.

  • enforce_nonce (Optional[bool]) –

    Whether nonce is enforced to be validated.

    New in version 2.5.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using to_reference() or passed directly as a Message. You can control whether this mentions the author of the referenced message using the replied_user attribute of allowed_mentions or by setting mention_author.

    New in version 1.6.

  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_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.

  • silent (bool) –

    Whether to suppress push and desktop notifications for the message.

    New in version 2.4.

Returns:

The message that was sent.

Return type:

Message

Raises:
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:

None

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.

id#

The thread member’s ID.

Type:

int

thread_id#

The thread’s ID.

Type:

int

joined_at#

The time the member joined the thread in UTC.

Type:

datetime.datetime

Parameters:
  • parent (Thread) –

  • data (ThreadMember) –

property thread#

The thread this member belongs to.

Stages#

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.

name#

The channel name.

Type:

str

guild#

The guild the channel belongs to.

Type:

Guild

id#

The channel ID.

Type:

int

topic#

The channel’s topic. None if it isn’t set.

Type:

Optional[str]

category_id#

The category channel ID this channel belongs to, if applicable.

Type:

Optional[int]

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 None if the channel was received in an interaction.

Type:

Optional[int]

bitrate#

The channel’s preferred audio bitrate in bits per second.

Type:

int

user_limit#

The channel’s limit for number of members that can be in a stage channel.

Type:

int

rtc_region#

The region for the stage channel’s voice communication. A value of None indicates 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:

VideoQualityMode

flags#

Extra features of the channel.

New in version 2.0.

Type:

ChannelFlags

last_message_id#

The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5

Type:

Optional[int]

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.

is_nsfw()[source]#

Checks if the channel is NSFW.

Return type:

bool

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() or fetch_message() with the last_message_id attribute.

Returns:

The last message in this channel or None if not found.

Return type:

Optional[Message]

get_partial_message(message_id, /)[source]#

Creates a PartialMessage from 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:

PartialMessage

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_messages permission 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 a check is not provided then all messages are deleted without discrimination.

You must have the manage_messages permission to delete messages even if they are your own. The read_message_history permission 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 a Message as its sole parameter.

  • before (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as before in history().

  • after (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as after in history().

  • around (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as around in history().

  • oldest_first (Optional[bool]) – Same as oldest_first in history().

  • bulk (bool) – If True, use bulk delete. Setting this to False is useful for mass-deleting a bot’s own messages without Permissions.manage_messages. When True, 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_webhooks permissions.

Returns:

The webhooks for this channel.

Return type:

List[Webhook]

Raises:

Forbidden – You don’t have permissions to get the webhooks.

await create_webhook(*, name, avatar=None, reason=None)[source]#

This function is a coroutine.

Creates a webhook for this channel.

Requires manage_webhooks permissions.

Changed in version 1.1: Added the reason keyword-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 to edit().

  • reason (Optional[str]) – The reason for creating this webhook. Shows up in the audit logs.

Returns:

The created webhook.

Return type:

Webhook

Raises:
  • HTTPException – Creating the webhook failed.

  • Forbidden – You do not have permissions to create a webhook.

property moderators#

A list of members who are moderating the stage channel.

New in version 2.0.

property type#

The channel’s Discord type.

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_channels permission to do this.

New in version 1.1.

Parameters:
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this channel name.

  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

Returns:

The channel that was created.

Return type:

abc.GuildChannel

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.

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_channels permission 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 to StagePrivacyLevel.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 to False. Requires the mention_everyone permission.

Returns:

The newly created stage instance.

Return type:

StageInstance

Raises:
  • InvalidArgument – If the privacy_level parameter 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:

StageInstance

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_channels permission to use this.

Changed in version 2.0: The topic parameter must now be set via create_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 to False.

  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to 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 of None indicates 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 None is 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.

can_send(*objects)#

Returns a bool indicating whether you have the permissions to send the object(s).

Returns:

Indicates whether you have the permissions to send the object(s).

Return type:

bool

Raises:

TypeError – An invalid type has been passed.

property category#

The category this channel belongs to.

If there is no category then this is None.

property changed_roles#

Returns a list of roles that have been overridden from their default values in the roles attribute.

await connect(*, timeout=60.0, reconnect=True, cls=<class 'discord.voice_client.VoiceClient'>)#

This function is a coroutine.

Connects to voice and creates a VoiceClient to 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 subclasses VoiceProtocol to connect with. Defaults to VoiceClient.

Returns:

A voice client that is fully connected to the voice server.

Return type:

VoiceProtocol

Raises:
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_invite permission 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 to 0.

  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there are unlimited uses. Defaults to 0.

  • temporary (bool) – Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to False.

  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. If this is set to False then 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:

Invite

Raises:
  • HTTPException – Invite creation failed.

  • NotFound – The channel that was passed is a category or an invalid channel.

property created_at#

Returns the channel’s creation time in UTC.

await delete(*, reason=None)#

This function is a coroutine.

Deletes the channel.

You must have manage_channels permission 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 Message from the destination.

Parameters:

id (int) – The message ID to look for.

Returns:

The message asked for.

Return type:

Message

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 AsyncIterator that enables receiving the destination’s message history.

You must have read_message_history permissions to use this.

Parameters:
  • limit (Optional[int]) – The number of messages to retrieve. If None, 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 to True, return messages in oldest->newest order. Defaults to True if after is specified, otherwise False.

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.

Return type:

HistoryIterator

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.

await invites()#

This function is a coroutine.

Returns a list of all active instant invites from this channel.

You must have manage_channels 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.

property jump_url#

Returns a URL that allows the client to jump to the channel.

New in version 2.0.

property members#

Returns all members that are currently inside this voice channel.

property mention#

The string that allows you to mention the 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, edit should be used instead.

You must have the manage_channels permission 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 with end, before, and after.

  • end (bool) – Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with beginning, before, and after.

  • before (Snowflake) – The channel that should be before our current channel. This is mutually exclusive with beginning, end, and after.

  • after (Snowflake) – The channel that should be after our current channel. This is mutually exclusive with beginning, end, and before.

  • offset (int) – The number of channels to offset the move by. For example, an offset of 2 with beginning=True would 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 the beginning, end, before, and after parameters.

  • category (Optional[Snowflake]) – The category to move this channel under. If None is 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:

None

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 Role or a Member and the value is the overwrite as a PermissionOverwrite.

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.

Parameters:

obj (Union[Role, User]) – The role or user denoting whose overwrite to get.

Returns:

The permission overwrites for this object.

Return type:

PermissionOverwrite

permissions_for(obj, /)#

Handles permission resolution for the Member or Role.

This function takes into consideration the following cases:

  • Guild owner

  • Guild roles

  • Channel overrides

  • Member overrides

If a Role is 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.

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:

Permissions

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.

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 Message objects returned by this method do not contain complete Message.reactions data.

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, enforce_nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None, silent=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 to None (the default), then the embed parameter must be provided.

To upload a single file, the file parameter should be used with a single File object. To upload multiple files, the files parameter should be used with a list of File objects. Specifying both parameters will lead to an exception.

To upload a single embed, the embed parameter should be used with a single Embed object. To upload multiple embeds, the embeds parameter should be used with a list of Embed objects. 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.

  • enforce_nonce (Optional[bool]) –

    Whether nonce is enforced to be validated.

    New in version 2.5.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using to_reference() or passed directly as a Message. You can control whether this mentions the author of the referenced message using the replied_user attribute of allowed_mentions or by setting mention_author.

    New in version 1.6.

  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_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.

  • silent (bool) –

    Whether to suppress push and desktop notifications for the message.

    New in version 2.4.

Returns:

The message that was sent.

Return type:

Message

Raises:
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 target parameter should either be a Member or a Role that belongs to guild.

The overwrite parameter, if given, must either be None or PermissionOverwrite. For convenience, you can pass in keyword arguments denoting Permissions attributes. If this is done, then you cannot mix the keyword arguments with the overwrite parameter.

If the overwrite parameter is None, then the permission overwrites are deleted.

You must have the manage_roles permission 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 PermissionOverwrite

overwrite = 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, or None to 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 Role or Member.

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:

None

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. :rtype: Typing

Note

This is both a regular context manager and an async context manager. This means that both with and async with work with this.

Example Usage:

async with channel.typing():
    # simulate something heavy
    await asyncio.sleep(10)

await channel.send('done!')
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 members when 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.

id#

The stage instance’s ID.

Type:

int

guild#

The guild that the stage instance is running in.

Type:

Guild

channel_id#

The ID of the channel that the stage instance is running in.

Type:

int

topic#

The topic of the stage instance.

Type:

str

privacy_level#

The privacy level of the stage instance.

Type:

StagePrivacyLevel

discoverable_disabled#

Whether discoverability for the stage instance is disabled.

Type:

bool

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_channels permission 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_level parameter 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_channels permission 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#

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.

id#

The interaction’s ID.

Type:

int

type#

The interaction type.

Type:

InteractionType

guild_id#

The guild ID the interaction was sent from.

Type:

Optional[int]

channel#

The channel the interaction was sent from.

Type:

Optional[Union[abc.GuildChannel, abc.PrivateChannel, Thread]]

channel_id#

The ID of the channel the interaction was sent from.

Type:

Optional[int]

application_id#

The application ID that the interaction was for.

Type:

int

user#

The user or member that sent the interaction. Will be None in PING interactions.

Type:

Optional[Union[User, Member]]

message#

The message that sent this interaction.

Type:

Optional[Message]

token#

The token to continue the interaction. These are valid for 15 minutes.

Type:

str

data#

The raw interaction data.

Type:

dict

locale#

The user’s locale.

Type:

str

guild_locale#

The guilds preferred locale, if invoked in a guild.

Type:

str

custom_id#

The custom ID for the interaction.

Type:

Optional[str]

Parameters:
  • data (Interaction) –

  • state (ConnectionState) –

property client#

Returns the client that sent the interaction.

property guild#

The guild the interaction was sent from.

is_command()[source]#

Indicates whether the interaction is an application command.

Return type:

bool

is_component()[source]#

Indicates whether the interaction is a message component.

Return type:

bool

cached_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 PartialMessageable instead.

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.

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 followup instead.

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:

InteractionMessage

Raises:
await original_message()[source]#

An alias for original_response().

Returns:

The original interaction response message.

Return type:

InteractionMessage

Raises:
await edit_original_response(*, content=..., embeds=..., embed=..., file=..., files=..., attachments=..., view=..., allowed_mentions=None, delete_after=None, suppress=False)[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 or None to clear it.

  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. This should not be mixed with the embeds parameter.

  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the file parameter.

  • 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. See abc.Messageable.send() for more information.

  • view (Optional[View]) – The updated view to update this message with. If None is 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.

  • suppress (bool) – Whether to suppress embeds for the message.

Returns:

The newly edited message.

Return type:

InteractionMessage

Raises:
  • HTTPException – Editing the message failed.

  • Forbidden – Edited a message that is not yours.

  • TypeError – You specified both embed and embeds or file and files

  • ValueError – The length of embeds was invalid.

await edit_original_message(**kwargs)[source]#

An alias for edit_original_response().

Returns:

The newly edited message.

Return type:

InteractionMessage

Raises:
  • HTTPException – Editing the message failed.

  • Forbidden – Edited a message that is not yours.

  • TypeError – You specified both embed and embeds or file and files

  • ValueError – The length of embeds was 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:
Return type:

None

await delete_original_message(**kwargs)[source]#

An alias for delete_original_response().

Raises:
await respond(*args, **kwargs)[source]#

This function is a coroutine.

Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not.

Returns:

The response, its type depending on whether it’s an interaction response or a followup.

Return type:

Union[discord.Interaction, discord.WebhookMessage]

await edit(*args, **kwargs)[source]#

This function is a coroutine.

Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not.

Returns:

The response, its type depending on whether it’s an interaction response or a followup.

Return type:

Union[discord.InteractionMessage, discord.WebhookMessage]

to_dict()[source]#

Converts this interaction object into a dict.

Returns:

A dictionary of str interaction keys bound to the respective value.

Return type:

Dict[str, Any]

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:

bool

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:

Note

The follow-up response will also be non-ephemeral if the ephemeral argument is False, and ephemeral if True.

Parameters:
Raises:
Return type:

None

await pong()[source]#

This function is a coroutine.

Pongs the ping interaction.

This should rarely be used.

Raises:
Return type:

None

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 the embed parameter.

  • embed (Embed) – The rich embed for the content to send. This cannot be mixed with embeds parameter.

  • 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. See abc.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:

Interaction

Raises:
await edit_message(*, content=..., embed=..., embeds=..., file=..., files=..., attachments=..., view=..., delete_after=None, suppress=..., allowed_mentions=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. None removes the content.

  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. This should not be mixed with the embeds parameter.

  • file (File) – A new file to add to the message. This cannot be mixed with files parameter.

  • files (List[File]) – A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the file parameter.

  • 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. If None is 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.

  • suppress (Optional[bool]) – Whether to suppress embeds for the message.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

Raises:
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:
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:
Return type:

Interaction

await premium_required()[source]#

This function is a coroutine. Responds to this interaction by sending a premium required message.

Raises:
Return type:

Interaction

Methods
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.Message with changes to edit() and delete() to work.

New in version 2.0.

Parameters:
await edit(content=..., embeds=..., embed=..., file=..., files=..., attachments=..., view=..., allowed_mentions=None, delete_after=None, suppress=...)[source]#

This function is a coroutine.

Edits the message.

Parameters:
  • content (Optional[str]) – The content to edit the message with or None to clear it.

  • embeds (List[Embed]) – A list of embeds to edit the message with.

  • embed (Optional[Embed]) – The embed to edit the message with. None suppresses the embeds. This should not be mixed with the embeds parameter.

  • file (File) – The file to upload. This cannot be mixed with files parameter.

  • files (List[File]) – A list of files to send with the content. This cannot be mixed with the file parameter.

  • 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. See abc.Messageable.send() for more information.

  • view (Optional[View]) – The updated view to update this message with. If None is 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.

  • suppress (Optional[bool]) – Whether to suppress embeds for the message.

Returns:

The newly edited message.

Return type:

InteractionMessage

Raises:
  • HTTPException – Editing the message failed.

  • Forbidden – Edited a message that is not yours.

  • TypeError – You specified both embed and embeds or file and files

  • ValueError – The length of embeds was 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

Attributes
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.

id#

The interaction’s ID.

Type:

int

type#

The interaction type.

Type:

InteractionType

name#

The name of the invoked application command.

Type:

str

user#

The user that sent the interaction.

Type:

User

data#

The raw interaction data.

Type:

dict

Parameters:
  • data (MessageInteraction) –

  • state (ConnectionState) –

Attributes
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:

ComponentType

Attributes
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:

ComponentType

children#

The children components that this holds, if any.

Type:

List[Component]

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.Button not this one.

New in version 2.0.

style#

The style of the button.

Type:

ButtonStyle

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]

url#

The URL this button sends you to.

Type:

Optional[str]

disabled#

Whether the button is disabled or not.

Type:

bool

label#

The label of the button, if any.

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.Select not this one.

New in version 2.0.

type#

The select menu’s type.

Type:

ComponentType

custom_id#

The ID of the select menu that gets received during an interaction.

Type:

Optional[str]

placeholder#

The placeholder text that is shown if nothing is selected, if any.

Type:

Optional[str]

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:

int

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:

int

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]

disabled#

Whether the select is disabled or not.

Type:

bool

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.

name#

The name of the emoji.

Type:

str

id#

The emoji’s ID.

Type:

int

require_colons#

If colons are required to use this emoji in the client (:PJSalt: vs PJSalt).

Type:

bool

animated#

Whether an emoji is animated or not.

Type:

bool

managed#

If this emoji is managed by a Twitch integration.

Type:

bool

guild_id#

The guild ID the emoji belongs to.

Type:

int

available#

Whether the emoji is available for use.

Type:

bool

user#

The user that created the emoji. This can only be retrieved using Guild.fetch_emoji() and having the manage_emojis permission.

Type:

Optional[User]

Parameters:
  • guild (Guild) –

  • state (ConnectionState) –

  • data (Emoji) –

property created_at#

Returns the emoji’s creation time in UTC.

property url#

Returns the URL of the emoji.

property roles#

A list of roles that is allowed to use this emoji.

If roles is empty, the emoji is unrestricted.

property guild#

The guild this emoji belongs to.

is_usable()[source]#

Whether the bot can use this emoji. :rtype: bool

New in version 1.3.

await delete(*, reason=None)[source]#

This function is a coroutine.

Deletes the custom emoji.

You must have manage_emojis permission to do this.

Parameters:

reason (Optional[str]) – The reason for deleting this emoji. Shows up on the audit log.

Raises:
Return type:

None

await edit(*, name=..., roles=..., reason=None)[source]#

This function is a coroutine.

Edits the custom emoji.

You must have manage_emojis permission to do this.

Changed in version 2.0: The newly updated emoji is returned.

Parameters:
  • name (str) – The new emoji name.

  • roles (Optional[List[Snowflake]]) – A list of roles that can use this emoji. An empty list can be passed to make it available to everyone.

  • reason (Optional[str]) – The reason for editing this emoji. Shows up on the audit log.

Raises:
Returns:

The newly updated emoji.

Return type:

Emoji

await read()#

This function is a coroutine.

Retrieves the content of this asset as a bytes object.

Returns:

The content of the asset.

Return type:

bytes

Raises:
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:

int

Raises:
class discord.PartialEmoji(*, name, animated=False, id=None)[source]#

Represents a “partial” emoji.

This model will be given in two scenarios:

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 None if the emoji got deleted (e.g. removing a reaction with a deleted emoji).

Type:

Optional[str]

animated#

Whether the emoji is animated or not.

Type:

bool

id#

The ID of the custom emoji, if applicable.

Type:

Optional[int]

Parameters:
  • name (str) –

  • animated (bool) –

  • id (int | None) –

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:

PartialEmoji

is_custom_emoji()[source]#

Checks if this is a custom non-Unicode emoji.

Return type:

bool

is_unicode_emoji()[source]#

Checks if this is a Unicode emoji.

Return type:

bool

property created_at#

Returns the emoji’s creation time in UTC, or None if Unicode emoji.

New in version 1.6.

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

await read()[source]#

This function is a coroutine.

Retrieves the content of this asset as a bytes object.

Returns:

The content of the asset.

Return type:

bytes

Raises:
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:

int

Raises:

Channels#

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.

name#

The channel name.

Type:

str

guild#

The guild the channel belongs to.

Type:

Guild

id#

The channel ID.

Type:

int

category_id#

The category channel ID this channel belongs to, if applicable.

Type:

Optional[int]

topic#

The channel’s topic. None if it doesn’t exist.

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 None if 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_channels or manage_messages bypass slowmode.

Type:

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:

bool

default_auto_archive_duration#

The default auto archive duration in minutes for threads created in this channel.

New in version 2.0.

Type:

int

flags#

Extra features of the channel.

New in version 2.0.

Type:

ChannelFlags

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 AsyncIterator that enables receiving the destination’s message history.

You must have read_message_history permissions to use this.

Parameters:
  • limit (Optional[int]) – The number of messages to retrieve. If None, 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 to True, return messages in oldest->newest order. Defaults to True if after is specified, otherwise False.

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.

Return type:

HistoryIterator

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.

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. :rtype: Typing

Note

This is both a regular context manager and an async context manager. This means that both with and async with work with this.

Example Usage:

async with channel.typing():
    # simulate something heavy
    await asyncio.sleep(10)

await channel.send('done!')
is_news()[source]#

Checks if the channel is a news/announcements channel.

Return type:

bool

property news#

Equivalent to is_news().

await edit(*, reason=None, **options)[source]#

This function is a coroutine.

Edits the channel.

You must have the manage_channels permission to use this.

Changed in version 1.3: The overwrites keyword-only parameter was added.

Changed in version 1.4: The type keyword-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 to False.

  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to 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 between ChannelType.text and ChannelType.news is supported. This is only available to guilds that contain NEWS in Guild.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 of 60, 1440, 4320, or 10080.

  • 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 None is 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, slowmode_delay=None, invitable=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_threads is 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. If None is passed then a private thread is created. Defaults to None.

  • 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 a message is 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 is None.

  • slowmode_delay (Optional[int]) – Specifies the slowmode rate limit for users in this thread, in seconds. A value of 0 disables slowmode. The maximum value possible is 21600.

  • invitable (Optional[bool]) – Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True.

  • reason (str) – The reason for creating a new thread. Shows up on the audit log.

Returns:

The created thread

Return type:

Thread

Raises:
archived_threads(*, private=False, joined=False, limit=50, before=None)#

Returns an AsyncIterator that iterates over all archived threads in the guild.

You must have read_message_history to use this. If iterating over private threads then manage_threads is also required.

New in version 2.0.

Parameters:
  • limit (Optional[bool]) – The number of threads to retrieve. If None, 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 set joined to True and private to False.

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 bool indicating whether you have the permissions to send the object(s).

Returns:

Indicates whether you have the permissions to send the object(s).

Return type:

bool

Raises:

TypeError – An invalid type has been passed.

property category#

The category this channel belongs to.

If there is no category then this is None.

property changed_roles#

Returns a list of roles that have been overridden from their default values in the roles attribute.

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_channels permission to do this.

New in version 1.1.

Parameters:
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this channel name.

  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

Returns:

The channel that was created.

Return type:

abc.GuildChannel

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_invite permission 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 to 0.

  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there are unlimited uses. Defaults to 0.

  • temporary (bool) – Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to False.

  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. If this is set to False then 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:

Invite

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_webhooks permissions.

Changed in version 1.1: Added the reason keyword-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 to edit().

  • reason (Optional[str]) – The reason for creating this webhook. Shows up in the audit logs.

Returns:

The created webhook.

Return type:

Webhook

Raises:
  • HTTPException – Creating the webhook failed.

  • Forbidden – You do not have permissions to create a webhook.

property created_at#

Returns the channel’s creation time in UTC.

await delete(*, reason=None)#

This function is a coroutine.

Deletes the channel.

You must have manage_channels permission 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_messages permission 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 Message from the destination.

Parameters:

id (int) – The message ID to look for.

Returns:

The message asked for.

Return type:

Message

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:

Webhook

Raises:
  • HTTPException – Following the channel failed.

  • Forbidden – You do not have the permissions to create a webhook.

get_partial_message(message_id, /)#

Creates a PartialMessage from 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:

PartialMessage

get_thread(thread_id, /)#

Returns a thread with the given ID.

New in version 2.0.

Parameters:

thread_id (int) – The ID to search for.

Returns:

The returned thread or None if not found.

Return type:

Optional[Thread]

await invites()#

This function is a coroutine.

Returns a list of all active instant invites from this channel.

You must have manage_channels 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.

is_nsfw()#

Checks if the channel is NSFW.

Return type:

bool

property jump_url#

Returns a URL that allows the client to jump to the channel.

New in version 2.0.

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() or fetch_message() with the last_message_id attribute.

Returns:

The last message in this channel or None if not found.

Return type:

Optional[Message]

property members#

Returns all members that can see this channel.

property mention#

The string that allows you to mention the 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, edit should be used instead.

You must have the manage_channels permission 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 with end, before, and after.

  • end (bool) – Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with beginning, before, and after.

  • before (Snowflake) – The channel that should be before our current channel. This is mutually exclusive with beginning, end, and after.

  • after (Snowflake) – The channel that should be after our current channel. This is mutually exclusive with beginning, end, and before.

  • offset (int) – The number of channels to offset the move by. For example, an offset of 2 with beginning=True would 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 the beginning, end, before, and after parameters.

  • category (Optional[Snowflake]) – The category to move this channel under. If None is 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:

None

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 Role or a Member and the value is the overwrite as a PermissionOverwrite.

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.

Parameters:

obj (Union[Role, User]) – The role or user denoting whose overwrite to get.

Returns:

The permission overwrites for this object.

Return type:

PermissionOverwrite

permissions_for(obj, /)#

Handles permission resolution for the Member or Role.

This function takes into consideration the following cases:

  • Guild owner

  • Guild roles

  • Channel overrides

  • Member overrides

If a Role is 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.

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:

Permissions

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.

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 Message objects returned by this method do not contain complete Message.reactions data.

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 a check is not provided then all messages are deleted without discrimination.

You must have the manage_messages permission to delete messages even if they are your own. The read_message_history permission 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 a Message as its sole parameter.

  • before (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as before in history().

  • after (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as after in history().

  • around (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as around in history().

  • oldest_first (Optional[bool]) – Same as oldest_first in history().

  • bulk (bool) – If True, use bulk delete. Setting this to False is useful for mass-deleting a bot’s own messages without Permissions.manage_messages. When True, 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, enforce_nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None, silent=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 to None (the default), then the embed parameter must be provided.

To upload a single file, the file parameter should be used with a single File object. To upload multiple files, the files parameter should be used with a list of File objects. Specifying both parameters will lead to an exception.

To upload a single embed, the embed parameter should be used with a single Embed object. To upload multiple embeds, the embeds parameter should be used with a list of Embed objects. 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.

  • enforce_nonce (Optional[bool]) –

    Whether nonce is enforced to be validated.

    New in version 2.5.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using to_reference() or passed directly as a Message. You can control whether this mentions the author of the referenced message using the replied_user attribute of allowed_mentions or by setting mention_author.

    New in version 1.6.

  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_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.

  • silent (bool) –

    Whether to suppress push and desktop notifications for the message.

    New in version 2.4.

Returns:

The message that was sent.

Return type:

Message

Raises:
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 target parameter should either be a Member or a Role that belongs to guild.

The overwrite parameter, if given, must either be None or PermissionOverwrite. For convenience, you can pass in keyword arguments denoting Permissions attributes. If this is done, then you cannot mix the keyword arguments with the overwrite parameter.

If the overwrite parameter is None, then the permission overwrites are deleted.

You must have the manage_roles permission 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 PermissionOverwrite

overwrite = 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, or None to 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 Role or Member.

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:

None

property type#

The channel’s Discord type.

await webhooks()#

This function is a coroutine.

Gets the list of webhooks from this channel.

Requires manage_webhooks permissions.

Returns:

The webhooks for this channel.

Return type:

List[Webhook]

Raises:

Forbidden – You don’t have permissions to get the webhooks.

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.

name#

The channel name.

Type:

str

guild#

The guild the channel belongs to.

Type:

Guild

id#

The channel ID.

Type:

int

category_id#

The category channel ID this channel belongs to, if applicable.

Type:

Optional[int]

topic#

The channel’s topic. None if it doesn’t exist.

Note

guidelines exists 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 None if 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_channels or manage_messages bypass slowmode.

Type:

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:

bool

default_auto_archive_duration#

The default auto archive duration in minutes for threads created in this channel.

New in version 2.0.

Type:

int

flags#

Extra features of the channel.

New in version 2.0.

Type:

ChannelFlags

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]

default_reaction_emoji#

The default forum reaction emoji.

New in version 2.5.

Type:

Optional[str | discord.Emoji]

Parameters:
  • state (ConnectionState) –

  • guild (Guild) –

  • data (ForumChannelPayload) –

property guidelines#

The channel’s guidelines. An alias of topic.

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.

get_tag(id, /)[source]#

Returns the ForumTag from 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_channels permission 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 to False.

  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to 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 of 60, 1440, 4320, or 10080.

  • 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.

  • default_reaction_emoji (Optional[discord.Emoji | int | str]) –

    The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: Emoji, snowflake ID, string representation (eg. ‘<a:emoji_name:emoji_id>’).

    New in version 2.5.

  • 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 None is 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_threads is 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 with allowed_mentions. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are 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 with manage_channels or manage_messages bypass 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:

Thread

Raises:
archived_threads(*, private=False, joined=False, limit=50, before=None)#

Returns an AsyncIterator that iterates over all archived threads in the guild.

You must have read_message_history to use this. If iterating over private threads then manage_threads is also required.

New in version 2.0.

Parameters:
  • limit (Optional[bool]) – The number of threads to retrieve. If None, 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 set joined to True and private to False.

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.

property changed_roles#

Returns a list of roles that have been overridden from their default values in the roles attribute.

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_channels permission to do this.

New in version 1.1.

Parameters:
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this channel name.

  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

Returns:

The channel that was created.

Return type:

abc.GuildChannel

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_invite permission 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 to 0.

  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there are unlimited uses. Defaults to 0.

  • temporary (bool) – Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to False.

  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. If this is set to False then 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:

Invite

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_webhooks permissions.

Changed in version 1.1: Added the reason keyword-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 to edit().

  • reason (Optional[str]) – The reason for creating this webhook. Shows up in the audit logs.

Returns:

The created webhook.

Return type:

Webhook

Raises:
  • HTTPException – Creating the webhook failed.

  • Forbidden – You do not have permissions to create a webhook.

property created_at#

Returns the channel’s creation time in UTC.

await delete(*, reason=None)#

This function is a coroutine.

Deletes the channel.

You must have manage_channels permission 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_messages permission 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:

Webhook

Raises:
  • HTTPException – Following the channel failed.

  • Forbidden – You do not have the permissions to create a webhook.

get_partial_message(message_id, /)#

Creates a PartialMessage from 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:

PartialMessage

get_thread(thread_id, /)#

Returns a thread with the given ID.

New in version 2.0.

Parameters:

thread_id (int) – The ID to search for.

Returns:

The returned thread or None if not found.

Return type:

Optional[Thread]

await invites()#

This function is a coroutine.

Returns a list of all active instant invites from this channel.

You must have manage_channels 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.

is_nsfw()#

Checks if the channel is NSFW.

Return type:

bool

property jump_url#

Returns a URL that allows the client to jump to the channel.

New in version 2.0.

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() or fetch_message() with the last_message_id attribute.

Returns:

The last message in this channel or None if not found.

Return type:

Optional[Message]

property members#

Returns all members that can see this channel.

property mention#

The string that allows you to mention the 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, edit should be used instead.

You must have the manage_channels permission 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 with end, before, and after.

  • end (bool) – Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with beginning, before, and after.

  • before (Snowflake) – The channel that should be before our current channel. This is mutually exclusive with beginning, end, and after.

  • after (Snowflake) – The channel that should be after our current channel. This is mutually exclusive with beginning, end, and before.

  • offset (int) – The number of channels to offset the move by. For example, an offset of 2 with beginning=True would 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 the beginning, end, before, and after parameters.

  • category (Optional[Snowflake]) – The category to move this channel under. If None is 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:

None

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 Role or a Member and the value is the overwrite as a PermissionOverwrite.

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.

Parameters:

obj (Union[Role, User]) – The role or user denoting whose overwrite to get.

Returns:

The permission overwrites for this object.

Return type:

PermissionOverwrite

permissions_for(obj, /)#

Handles permission resolution for the Member or Role.

This function takes into consideration the following cases:

  • Guild owner

  • Guild roles

  • Channel overrides

  • Member overrides

If a Role is 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.

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:

Permissions

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.

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 a check is not provided then all messages are deleted without discrimination.

You must have the manage_messages permission to delete messages even if they are your own. The read_message_history permission 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 a Message as its sole parameter.

  • before (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as before in history().

  • after (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as after in history().

  • around (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as around in history().

  • oldest_first (Optional[bool]) – Same as oldest_first in history().

  • bulk (bool) – If True, use bulk delete. Setting this to False is useful for mass-deleting a bot’s own messages without Permissions.manage_messages. When True, 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 target parameter should either be a Member or a Role that belongs to guild.

The overwrite parameter, if given, must either be None or PermissionOverwrite. For convenience, you can pass in keyword arguments denoting Permissions attributes. If this is done, then you cannot mix the keyword arguments with the overwrite parameter.

If the overwrite parameter is None, then the permission overwrites are deleted.

You must have the manage_roles permission 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 PermissionOverwrite

overwrite = 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, or None to 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 Role or Member.

property threads#

Returns all the threads that you can see.

New in version 2.0.

property type#

The channel’s Discord type.

await webhooks()#

This function is a coroutine.

Gets the list of webhooks from this channel.

Requires manage_webhooks permissions.

Returns:

The webhooks for this channel.

Return type:

List[Webhook]

Raises:

Forbidden – You don’t have permissions to get the webhooks.

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.

name#

The channel name.

Type:

str

guild#

The guild the channel belongs to.

Type:

Guild

id#

The channel ID.

Type:

int

category_id#

The category channel ID this channel belongs to, if applicable.

Type:

Optional[int]

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 None if the channel was received in an interaction.

Type:

Optional[int]

bitrate#

The channel’s preferred audio bitrate in bits per second.

Type:

int

user_limit#

The channel’s limit for number of members that can be in a voice channel.

Type:

int

rtc_region#

The region for the voice channel’s voice communication. A value of None indicates 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:

VideoQualityMode

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]

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_channels or manage_messages bypass slowmode.

New in version 2.5.

Type:

int

status#

The channel’s status, if set.

New in version 2.5.

Type:

Optional[str]

flags#

Extra features of the channel.

New in version 2.0.

Type:

ChannelFlags

Parameters:
  • state (ConnectionState) –

  • guild (Guild) –

  • data (VoiceChannelPayload) –

is_nsfw()[source]#

Checks if the channel is NSFW.

Return type:

bool

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() or fetch_message() with the last_message_id attribute.

Returns:

The last message in this channel or None if not found.

Return type:

Optional[Message]

get_partial_message(message_id, /)[source]#

Creates a PartialMessage from 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:

PartialMessage

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_messages permission 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 a check is not provided then all messages are deleted without discrimination.

You must have the manage_messages permission to delete messages even if they are your own. The read_message_history permission 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 a Message as its sole parameter.

  • before (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as before in history().

  • after (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as after in history().

  • around (Optional[Union[abc.Snowflake, datetime.datetime]]) – Same as around in history().

  • oldest_first (Optional[bool]) – Same as oldest_first in history().

  • bulk (bool) – If True, use bulk delete. Setting this to False is useful for mass-deleting a bot’s own messages without Permissions.manage_messages. When True, 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_webhooks permissions.

Returns:

The webhooks for this channel.

Return type:

List[Webhook]

Raises:

Forbidden – You don’t have permissions to get the webhooks.

await create_webhook(*, name, avatar=None, reason=None)[source]#

This function is a coroutine.

Creates a webhook for this channel.

Requires manage_webhooks permissions.

Changed in version 1.1: Added the reason keyword-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 to edit().

  • reason (Optional[str]) – The reason for creating this webhook. Shows up in the audit logs.

Returns:

The created webhook.

Return type:

Webhook

Raises:
  • HTTPException – Creating the webhook failed.

  • Forbidden – You do not have permissions to create a webhook.

property type#

The channel’s Discord type.

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_channels permission to do this.

New in version 1.1.

Parameters:
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this channel name.

  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

Returns:

The channel that was created.

Return type:

abc.GuildChannel

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_channels permission to use this.

Changed in version 1.3: The overwrites keyword-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 to False.

  • category (Optional[CategoryChannel]) – The new category for this channel. Can be None to 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 None indicates 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 None is 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_activities permission 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 to 0.

  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there are unlimited uses. Defaults to 0.

  • temporary (bool) – Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to False.

  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. If this is set to False then 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:

Invite

Raises:
  • TypeError – If the activity is not a valid activity or application id.

  • HTTPException – Invite creation failed.

await set_status(status, *, reason=None)[source]#

This function is a coroutine.

Sets the status of the voice channel.

You must have the set_voice_channel_status permission to use this.

Parameters:
  • status (Union[str, None]) – The new status.

  • reason (Optional[str]) – The reason for setting the status. Shows up on the audit log.

Raises:
  • Forbidden – You do not have proper permissions to set the status.

  • HTTPException – Setting the status failed.

Return type:

None

can_send(*objects)#

Returns a bool indicating whether you have the permissions to send the object(s).

Returns:

Indicates whether you have the permissions to send the object(s).

Return type:

bool

Raises:

TypeError – An invalid type has been passed.

property category#

The category this channel belongs to.

If there is no category then this is None.

property changed_roles#

Returns a list of roles that have been overridden from their default values in the roles attribute.

await connect(*, timeout=60.0, reconnect=True, cls=<class 'discord.voice_client.VoiceClient'>)#

This function is a coroutine.

Connects to voice and creates a VoiceClient to 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 subclasses VoiceProtocol to connect with. Defaults to VoiceClient.

Returns:

A voice client that is fully connected to the voice server.

Return type:

VoiceProtocol

Raises:
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_invite permission 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 to 0.

  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there are unlimited uses. Defaults to 0.

  • temporary (bool) – Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to False.

  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. If this is set to False then 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:

Invite

Raises:
  • HTTPException – Invite creation failed.

  • NotFound – The channel that was passed is a category or an invalid channel.

property created_at#

Returns the channel’s creation time in UTC.

await delete(*, reason=None)#

This function is a coroutine.

Deletes the channel.

You must have manage_channels permission 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 Message from the destination.

Parameters:

id (int) – The message ID to look for.

Returns:

The message asked for.

Return type:

Message

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 AsyncIterator that enables receiving the destination’s message history.

You must have read_message_history permissions to use this.

Parameters:
  • limit (Optional[int]) – The number of messages to retrieve. If None, 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 to True, return messages in oldest->newest order. Defaults to True if after is specified, otherwise False.

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.

Return type:

HistoryIterator

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.

await invites()#

This function is a coroutine.

Returns a list of all active instant invites from this channel.

You must have manage_channels 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.

property jump_url#

Returns a URL that allows the client to jump to the channel.

New in version 2.0.

property members#

Returns all members that are currently inside this voice channel.

property mention#

The string that allows you to mention the 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, edit should be used instead.

You must have the manage_channels permission 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 with end, before, and after.

  • end (bool) – Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with beginning, before, and after.

  • before (Snowflake) – The channel that should be before our current channel. This is mutually exclusive with beginning, end, and after.

  • after (Snowflake) – The channel that should be after our current channel. This is mutually exclusive with beginning, end, and before.

  • offset (int) – The number of channels to offset the move by. For example, an offset of 2 with beginning=True would 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 the beginning, end, before, and after parameters.

  • category (Optional[Snowflake]) – The category to move this channel under. If None is 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:

None

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 Role or a Member and the value is the overwrite as a PermissionOverwrite.

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.

Parameters:

obj (Union[Role, User]) – The role or user denoting whose overwrite to get.

Returns:

The permission overwrites for this object.

Return type:

PermissionOverwrite

permissions_for(obj, /)#

Handles permission resolution for the Member or Role.

This function takes into consideration the following cases:

  • Guild owner

  • Guild roles

  • Channel overrides

  • Member overrides

If a Role is 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.

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:

Permissions

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.

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 Message objects returned by this method do not contain complete Message.reactions data.

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, enforce_nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None, silent=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 to None (the default), then the embed parameter must be provided.

To upload a single file, the file parameter should be used with a single File object. To upload multiple files, the files parameter should be used with a list of File objects. Specifying both parameters will lead to an exception.

To upload a single embed, the embed parameter should be used with a single Embed object. To upload multiple embeds, the embeds parameter should be used with a list of Embed objects. 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.

  • enforce_nonce (Optional[bool]) –

    Whether nonce is enforced to be validated.

    New in version 2.5.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using to_reference() or passed directly as a Message. You can control whether this mentions the author of the referenced message using the replied_user attribute of allowed_mentions or by setting mention_author.

    New in version 1.6.

  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_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.

  • silent (bool) –

    Whether to suppress push and desktop notifications for the message.

    New in version 2.4.

Returns:

The message that was sent.

Return type:

Message

Raises:
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 target parameter should either be a Member or a Role that belongs to guild.

The overwrite parameter, if given, must either be None or PermissionOverwrite. For convenience, you can pass in keyword arguments denoting Permissions attributes. If this is done, then you cannot mix the keyword arguments with the overwrite parameter.

If the overwrite parameter is None, then the permission overwrites are deleted.

You must have the manage_roles permission 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 PermissionOverwrite

overwrite = 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, or None to 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 Role or Member.

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:

None

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. :rtype: Typing

Note

This is both a regular context manager and an async context manager. This means that both with and async with work with this.

Example Usage:

async with channel.typing():
    # simulate something heavy
    await asyncio.sleep(10)

await channel.send('done!')
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 members when the member cache is unavailable.

Returns:

The mapping of member ID to a voice state.

Return type:

Mapping[int, VoiceState]

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.

name#

The category name.

Type:

str

guild#

The guild the category belongs to.

Type:

Guild

id#

The category channel ID.

Type:

int

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 None if 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:

bool

flags#

Extra features of the channel.

New in version 2.0.

Type:

ChannelFlags

Parameters:
  • state (ConnectionState) –

  • guild (Guild) –

  • data (CategoryChannelPayload) –

property type#

The channel’s Discord type.

is_nsfw()[source]#

Checks if the category is NSFW.

Return type:

bool

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_channels permission to do this.

New in version 1.1.

Parameters:
  • name (Optional[str]) – The name of the new channel. If not provided, defaults to this channel name.

  • reason (Optional[str]) – The reason for cloning this channel. Shows up on the audit log.

Returns:

The channel that was created.

Return type:

abc.GuildChannel

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_channels permission to use this.

Changed in version 1.3: The overwrites keyword-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 None is 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, edit should be used instead.

You must have the manage_channels permission 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 with end, before, and after.

  • end (bool) – Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with beginning, before, and after.

  • before (Snowflake) – The channel that should be before our current channel. This is mutually exclusive with beginning, end, and after.

  • after (Snowflake) – The channel that should be after our current channel. This is mutually exclusive with beginning, end, and before.

  • offset (int) – The number of channels to offset the move by. For example, an offset of 2 with beginning=True would 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 the beginning, end, before, and after parameters.

  • category (Optional[Snowflake]) – The category to move this channel under. If None is 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.

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 a TextChannel in the category.

Returns:

The channel that was just created.

Return type:

TextChannel

Parameters:
  • name (str) –

  • options (Any) –

await create_voice_channel(name, **options)[source]#

This function is a coroutine.

A shortcut method to Guild.create_voice_channel() to create a VoiceChannel in the category.

Returns:

The channel that was just created.

Return type:

VoiceChannel

Parameters:
  • name (str) –

  • options (Any) –

await create_stage_channel(name, **options)[source]#

This function is a coroutine.

A shortcut method to Guild.create_stage_channel() to create a StageChannel in the category.

New in version 1.7.

Returns:

The channel that was just created.

Return type:

StageChannel

Parameters:
  • name (str) –

  • options (Any) –

await create_forum_channel(name, **options)[source]#

This function is a coroutine.

A shortcut method to Guild.create_forum_channel() to create a ForumChannel in the category.

New in version 2.0.

Returns:

The channel that was just created.

Return type:

ForumChannel

Parameters:
  • name (str) –

  • options (Any) –

property category#

The category this channel belongs to.

If there is no category then this is None.

property changed_roles#

Returns a list of roles that have been overridden from their default values in the roles attribute.

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_invite permission 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 to 0.

  • max_uses (int) – How many uses the invite could be used for. If it’s 0 then there are unlimited uses. Defaults to 0.

  • temporary (bool) – Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to False.

  • unique (bool) – Indicates if a unique invite URL should be created. Defaults to True. If this is set to False then 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:

Invite

Raises:
  • HTTPException – Invite creation failed.

  • NotFound – The channel that was passed is a category or an invalid channel.

property created_at#

Returns the channel’s creation time in UTC.

await delete(*, reason=None)#

This function is a coroutine.

Deletes the channel.

You must have manage_channels permission 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_channels 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.

property jump_url#

Returns a URL that allows the client to jump to the channel.

New in version 2.0.

property mention#

The string that allows you to mention the channel.

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 Role or a Member and the value is the overwrite as a PermissionOverwrite.

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.

Parameters:

obj (Union[Role, User]) – The role or user denoting whose overwrite to get.

Returns:

The permission overwrites for this object.

Return type:

PermissionOverwrite

permissions_for(obj, /)#

Handles permission resolution for the Member or Role.

This function takes into consideration the following cases:

  • Guild owner

  • Guild roles

  • Channel overrides

  • Member overrides

If a Role is 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.

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:

Permissions

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.

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 target parameter should either be a Member or a Role that belongs to guild.

The overwrite parameter, if given, must either be None or PermissionOverwrite. For convenience, you can pass in keyword arguments denoting Permissions attributes. If this is done, then you cannot mix the keyword arguments with the overwrite parameter.

If the overwrite parameter is None, then the permission overwrites are deleted.

You must have the manage_roles permission 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 PermissionOverwrite

overwrite = 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, or None to 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 Role or Member.

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:

ClientUser

id#

The direct message channel ID.

Type:

int

Parameters:
  • me (ClientUser) –

  • state (ConnectionState) –

  • data (DMChannelPayload) –

async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#

Returns an AsyncIterator that enables receiving the destination’s message history.

You must have read_message_history permissions to use this.

Parameters:
  • limit (Optional[int]) – The number of messages to retrieve. If None, 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 to True, return messages in oldest->newest order. Defaults to True if after is specified, otherwise False.

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.

Return type:

HistoryIterator

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.

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. :rtype: Typing

Note

This is both a regular context manager and an async context manager. This means that both with and async with work with this.

Example Usage:

async with channel.typing():
    # simulate something heavy
    await asyncio.sleep(10)

await channel.send('done!')
property type#

The channel’s Discord type.

property jump_url#

Returns a URL that allows the client to jump to the channel.

New in version 2.0.

property created_at#

Returns the direct message channel’s creation time in UTC.

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 True except:

Parameters:

obj (User) – The user to check permissions for. This parameter is ignored but kept for compatibility with other permissions_for methods.

Returns:

The resolved permissions.

Return type:

Permissions

get_partial_message(message_id, /)[source]#

Creates a PartialMessage from 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:

PartialMessage

can_send(*objects)#

Returns a bool indicating whether you have the permissions to send the object(s).

Returns:

Indicates whether you have the permissions to send the object(s).

Return type:

bool

Raises:

TypeError – An invalid type has been passed.

await fetch_message(id, /)#

This function is a coroutine.

Retrieves a single Message from the destination.

Parameters:

id (int) – The message ID to look for.

Returns:

The message asked for.

Return type:

Message

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 Message objects returned by this method do not contain complete Message.reactions data.

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, enforce_nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None, silent=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 to None (the default), then the embed parameter must be provided.

To upload a single file, the file parameter should be used with a single File object. To upload multiple files, the files parameter should be used with a list of File objects. Specifying both parameters will lead to an exception.

To upload a single embed, the embed parameter should be used with a single Embed object. To upload multiple embeds, the embeds parameter should be used with a list of Embed objects. 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.

  • enforce_nonce (Optional[bool]) –

    Whether nonce is enforced to be validated.

    New in version 2.5.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using to_reference() or passed directly as a Message. You can control whether this mentions the author of the referenced message using the replied_user attribute of allowed_mentions or by setting mention_author.

    New in version 1.6.

  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_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.

  • silent (bool) –

    Whether to suppress push and desktop notifications for the message.

    New in version 2.4.

Returns:

The message that was sent.

Return type:

Message

Raises:
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:

None

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

recipients#

The users you are participating with in the group channel.

Type:

List[User]

me#

The user presenting yourself.

Type:

ClientUser

id#

The group channel ID.

Type:

int

owner#

The user that owns the group channel.

Type:

Optional[User]

owner_id#

The owner ID that owns the group channel.

New in version 2.0.

Type:

int

name#

The group channel’s name if provided.

Type:

Optional[str]

Parameters:
  • me (ClientUser) –

  • state (ConnectionState) –

  • data (GroupChannelPayload) –

async for ... in history(*, limit=100, before=None, after=None, around=None, oldest_first=None)#

Returns an AsyncIterator that enables receiving the destination’s message history.

You must have read_message_history permissions to use this.

Parameters:
  • limit (Optional[int]) – The number of messages to retrieve. If None, 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 to True, return messages in oldest->newest order. Defaults to True if after is specified, otherwise False.

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.

Return type:

HistoryIterator

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.

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. :rtype: Typing

Note

This is both a regular context manager and an async context manager. This means that both with and async with work with this.

Example Usage:

async with channel.typing():
    # simulate something heavy
    await asyncio.sleep(10)

await channel.send('done!')
property type#

The channel’s Discord type.

property icon#

Returns the channel’s icon asset if available.

property created_at#

Returns the channel’s creation time in UTC.

property jump_url#

Returns a URL that allows the client to jump to the channel.

New in version 2.0.

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 True except:

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:

Permissions

can_send(*objects)#

Returns a bool indicating whether you have the permissions to send the object(s).

Returns:

Indicates whether you have the permissions to send the object(s).

Return type:

bool

Raises:

TypeError – An invalid type has been passed.

await fetch_message(id, /)#

This function is a coroutine.

Retrieves a single Message from the destination.

Parameters:

id (int) – The message ID to look for.

Returns:

The message asked for.

Return type:

Message

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 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:

None

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 Message objects returned by this method do not contain complete Message.reactions data.

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, enforce_nonce=None, allowed_mentions=None, reference=None, mention_author=None, view=None, suppress=None, silent=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 to None (the default), then the embed parameter must be provided.

To upload a single file, the file parameter should be used with a single File object. To upload multiple files, the files parameter should be used with a list of File objects. Specifying both parameters will lead to an exception.

To upload a single embed, the embed parameter should be used with a single Embed object. To upload multiple embeds, the embeds parameter should be used with a list of Embed objects. 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.

  • enforce_nonce (Optional[bool]) –

    Whether nonce is enforced to be validated.

    New in version 2.5.

  • 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 in allowed_mentions. If no object is passed at all then the defaults given by allowed_mentions are used instead.

    New in version 1.4.

  • reference (Union[Message, MessageReference, PartialMessage]) –

    A reference to the Message to which you are replying, this can be created using to_reference() or passed directly as a Message. You can control whether this mentions the author of the referenced message using the replied_user attribute of allowed_mentions or by setting mention_author.

    New in version 1.6.

  • mention_author (Optional[bool]) –

    If set, overrides the replied_user attribute of allowed_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.

  • silent (bool) –

    Whether to suppress push and desktop notifications for the message.

    New in version 2.4.

Returns:

The message that was sent.

Return type:

Message

Raises:
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:

None

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.

name#

The sticker’s name.

Type:

str

id#

The id of the sticker.

Type:

int

description#

The description of the sticker.

Type:

str

pack_id#

The id of the sticker’s pack.

Type:

int

format#

The format for the sticker’s image.

Type:

StickerFormatType

url#

The URL for the sticker’s image.

Type:

str

Parameters:
  • state (ConnectionState) –

  • data (Union[BaseSticker, StandardSticker, GuildSticker]) –

property created_at#

Returns the sticker’s creation time in UTC.

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.

name#

The name of the sticker pack.

Type:

str

description#

The description of the sticker pack.

Type:

str

id#

The id of the sticker pack.

Type:

int

stickers#

The stickers of this sticker pack.

Type:

List[StandardSticker]

sku_id#

The SKU ID of the sticker pack.

Type:

int

cover_sticker_id#

The ID of the sticker used for the cover of the sticker pack.

Type:

int

cover_sticker#

The sticker used for the cover of the sticker pack.

Type:

StandardSticker

Parameters:
  • state (ConnectionState) –

  • data (StickerPack) –

property banner#

The banner asset of the sticker pack.

Attributes
Methods
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.

name#

The sticker’s name.

Type:

str

id#

The id of the sticker.

Type:

int

format#

The format for the sticker’s image.

Type:

StickerFormatType

url#

The URL for the sticker’s image.

Type:

str

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.

Methods
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.

name#

The sticker’s name.

Type:

str

id#

The id of the sticker.

Type:

int

description#

The description of the sticker.

Type:

str

pack_id#

The id of the sticker’s pack.

Type:

int

format#

The format for the sticker’s image.

Type:

StickerFormatType

tags#

A list of tags for the sticker.

Type:

List[str]

sort_value#

The sticker’s sort order within its pack.

Type:

int

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:

StickerPack

Raises:
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.

name#

The sticker’s name.

Type:

str

id#

The id of the sticker.

Type:

int

description#

The description of the sticker.

Type:

str

format#

The format for the sticker’s image.

Type:

StickerFormatType

available#

Whether this sticker is available for use.

Type:

bool

guild_id#

The ID of the guild that this sticker is from.

Type:

int

user#

The user that created this sticker. This can only be retrieved using Guild.fetch_sticker() and having the manage_emojis_and_stickers permission.

Type:

Optional[User]

emoji#

The name of a unicode emoji that represents this sticker.

Type:

str

Parameters:
  • state (ConnectionState) –

  • data (Union[BaseSticker, StandardSticker, GuildSticker]) –

guild#

The guild that this sticker is from. Could be None if 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 GuildSticker for 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 be None.

  • 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:

GuildSticker

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 Sticker from the guild.

You must have manage_emojis_and_stickers permission 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

rule_id#

The ID of the rule that the action belongs to.

Type:

int

rule_trigger_type#

The category of trigger the rule belongs to.

New in version 2.4.

Type:

AutoModTriggerType

guild_id#

The ID of the guild that the action was executed in.

Type:

int

guild#

The guild that the action was executed in, if cached.

Type:

Optional[Guild]

user_id#

The ID of the user that triggered the action.

Type:

int

member#

The member that triggered the action, if cached.

Type:

Optional[Member]

channel_id#

The ID of the channel in which the member’s content was posted.

Type:

Optional[int]

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]

message#

The message that triggered the action, if cached.

Type:

Optional[Message]

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]

content#

The content of the message that triggered the action.

Type:

str

matched_keyword#

The word or phrase configured that was matched in the content.

Type:

str

matched_content#

The substring in the content that was matched.

Type:

str

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:
  • state (ConnectionState) –

  • data (AutoModActionExecutionEvent) –

class discord.RawTypingEvent(data)[source]#

Represents the payload for a on_raw_typing() event.

New in version 2.0.

channel_id#

The channel ID where the typing originated from.

Type:

int

user_id#

The ID of the user that started typing.

Type:

int

when#

When the typing started as an aware datetime in UTC.

Type:

datetime.datetime

guild_id#

The guild ID where the typing originated from, if applicable.

Type:

Optional[int]

member#

The member who started typing. Only available if the member started typing in a guild.

Type:

Optional[Member]

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:

data (TypingEvent) –

class discord.RawMessageDeleteEvent(data)[source]#

Represents the event payload for a on_raw_message_delete() event.

channel_id#

The channel ID where the deletion took place.

Type:

int

guild_id#

The guild ID where the deletion took place, if applicable.

Type:

Optional[int]

message_id#

The message ID that got deleted.

Type:

int

cached_message#

The cached message, if found in the internal message cache.

Type:

Optional[Message]

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:

data (MessageDeleteEvent) –

class discord.RawBulkMessageDeleteEvent(data)[source]#

Represents the event payload for a on_raw_bulk_message_delete() event.

message_ids#

A set of the message IDs that were deleted.

Type:

Set[int]

channel_id#

The channel ID where the message got deleted.

Type:

int

guild_id#

The guild ID where the message got deleted, if applicable.

Type:

Optional[int]

cached_messages#

The cached messages, if found in the internal message cache.

Type:

List[Message]

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:

data (BulkMessageDeleteEvent) –

class discord.RawMessageUpdateEvent(data)[source]#

Represents the payload for a on_raw_message_edit() event.

message_id#

The message ID that got updated.

Type:

int

channel_id#

The channel ID where the update took place.

New in version 1.3.

Type:

int

guild_id#

The guild ID where the message got updated, if applicable.

New in version 1.7.

Type:

Optional[int]

data#

The raw data sent by the gateway

Type:

dict

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() or on_raw_reaction_remove() event.

message_id#

The message ID that got or lost a reaction.

Type:

int

user_id#

The user ID who added the reaction or whose reaction was removed.

Type:

int

channel_id#

The channel ID where the reaction got added or removed.

Type:

int

guild_id#

The guild ID where the reaction got added or removed, if applicable.

Type:

Optional[int]

emoji#

The custom or unicode emoji being used.

Type:

PartialEmoji

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_ADD for reaction addition or REACTION_REMOVE for reaction removal.

New in version 1.3.

Type:

str

burst#

Whether this reaction is a burst (super) reaction.

Type:

bool

burst_colours#

A list of hex codes this reaction can be. Only available if event_type is REACTION_ADD and this emoji has super reactions available.

Type:

Optional[list]

burst_colors#

Alias for burst_colours.

Type:

Optional[list]

type#

The type of reaction added.

Type:

ReactionType

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:
  • data (ReactionActionEvent) –

  • emoji (PartialEmoji) –

  • event_type (str) –

class discord.RawReactionClearEvent(data)[source]#

Represents the payload for a on_raw_reaction_clear() event.

message_id#

The message ID that got its reactions cleared.

Type:

int

channel_id#

The channel ID where the reactions got cleared.

Type:

int

guild_id#

The guild ID where the reactions got cleared.

Type:

Optional[int]

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

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.

message_id#

The message ID that got its reactions cleared.

Type:

int

channel_id#

The channel ID where the reactions got cleared.

Type:

int

guild_id#

The guild ID where the reactions got cleared.

Type:

Optional[int]

emoji#

The custom or unicode emoji being removed.

Type:

PartialEmoji

burst#

Whether this reaction was a burst (super) reaction.

Type:

bool

burst_colours#

The available HEX codes of the removed super reaction.

Type:

list

burst_colors#

Alias for burst_colours.

Type:

Optional[list]

type#

The type of reaction removed.

Type:

ReactionType

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

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.

integration_id#

The ID of the integration that got deleted.

Type:

int

application_id#

The ID of the bot/OAuth2 application for this deleted integration.

Type:

Optional[int]

guild_id#

The guild ID where the integration got deleted.

Type:

int

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:

data (IntegrationDeleteEvent) –

class discord.RawThreadDeleteEvent(data)[source]#

Represents the payload for on_raw_thread_delete() event.

New in version 2.0.

thread_id#

The ID of the thread that was deleted.

Type:

int

thread_type#

The channel type of the deleted thread.

Type:

discord.ChannelType

guild_id#

The ID of the guild the deleted thread belonged to.

Type:

int

parent_id#

The ID of the channel the thread belonged to.

Type:

int

thread#

The thread that was deleted. This may be None if deleted thread is not found in internal cache.

Type:

Optional[discord.Thread]

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:

data (ThreadDeleteEvent) –

class discord.RawScheduledEventSubscription(data, event_type)[source]#

Represents the payload for a raw_scheduled_event_user_add() or raw_scheduled_event_user_remove() event.

New in version 2.0.

event_id#

The event ID where the typing originated from.

Type:

int

user_id#

The ID of the user that subscribed/unsubscribed.

Type:

int

guild#

The guild where the subscription/unsubscription happened.

Type:

Optional[Guild]

event_type#

Can be either USER_ADD or USER_REMOVE depending on the event called.

Type:

str

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:
  • data (ScheduledEventSubscription) –

  • event_type (str) –

Attributes
class discord.RawMemberRemoveEvent(data, user)[source]#

Represents the payload for an on_raw_member_remove() event.

New in version 2.4.

user#

The user that left the guild.

Type:

discord.User

guild_id#

The ID of the guild the user left.

Type:

int

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:
  • data (MemberRemoveEvent) –

  • user (User) –

class discord.RawThreadUpdateEvent(data)[source]#

Represents the payload for an on_raw_thread_update() event.

New in version 2.4.

thread_id#

The ID of the updated thread.

Type:

int

thread_type#

The channel type of the updated thread.

Type:

discord.ChannelType

guild_id#

The ID of the guild the thread belongs to.

Type:

int

parent_id#

The ID of the channel the thread belongs to.

Type:

int

data#

The raw data sent by the gateway.

Type:

dict

thread#

The thread, if it could be found in the internal cache.

Type:

discord.Thread | None

Parameters:

data (Thread) –

class discord.RawThreadMembersUpdateEvent(data)[source]#

Represents the payload for an on_raw_thread_member_remove() event.

New in version 2.4.

thread_id#

The ID of the thread that was updated.

Type:

int

guild_id#

The ID of the guild the thread is in.

Type:

int

member_count#

The approximate number of members in the thread. Maximum of 50.

Type:

int

data#

The raw data sent by the gateway.

New in version 2.5.

Type:

dict

Parameters:

data (ThreadMembersUpdateEvent) –

class discord.RawAuditLogEntryEvent(data)[source]#

Represents the payload for an on_raw_audit_log_entry() event.

New in version 2.5.

action_type#

The action that was done.

Type:

AuditLogAction

id#

The entry ID.

Type:

int

guild_id#

The ID of the guild this action came from.

Type:

int

user_id#

The ID of the user who initiated this action.

Type:

Optional[int]

target_id#

The ID of the target that got changed.

Type:

Optional[int]

reason#

The reason this action was done.

Type:

Optional[str]

changes#

The changes that were made to the target.

Type:

Optional[list]

extra#

Extra information that this entry has that might be useful. For most actions, this is None. However, in some cases it contains extra information. See AuditLogAction for which actions have this field filled out.

Type:

Any

data#

The raw data sent by the gateway.

Type:

dict

Parameters:

data (AuditLogEntryEvent) –

Attributes
class discord.RawVoiceChannelStatusUpdateEvent(data)[source]#

Represents the payload for an on_raw_voice_channel_status_update() event.

New in version 2.5.

id#

The channel ID where the voice channel status update originated from.

Type:

int

guild_id#

The guild ID where the voice channel status update originated from.

Type:

int

status#

The new new voice channel status.

Type:

Optional[str]

data#

The raw data sent by the gateway.

Type:

dict

Parameters:

data (VoiceChannelStatusUpdateEvent) –

Webhooks#

Attributes
class discord.PartialWebhookGuild[source]#

Represents a partial guild for webhooks.

These are typically given for channel follower webhooks.

New in version 2.0.

id#

The partial guild’s ID.

Type:

int

name#

The partial guild’s name.

Type:

str

property icon#

Returns the guild’s icon asset, if available.

Attributes
class discord.PartialWebhookChannel[source]#

Represents a partial channel for webhooks.

These are typically given for channel follower webhooks.

New in version 2.0.

id#

The partial channel’s ID.

Type:

int

name#

The partial channel’s name.

Type:

str