Frequently Asked Questions (2024)

menu settings

Table of Contents

  • Frequently Asked Questions
    • Coroutines
      • What is a coroutine?
      • Where can I use await?
      • What does “blocking” mean?
    • General
      • Where can I find usage examples?
      • How do I set the “Playing” status?
      • How do I send a message to a specific channel?
      • How do I send a DM?
      • How do I get the ID of a sent message?
      • How do I upload an image?
      • How can I add a reaction to a message?
      • How do I pass a coroutine to the player’s “after” function?
      • How do I run something in the background?
      • How do I get a specific model?
      • How do I make a web request?
      • How do I use a local image file for an embed image?
      • Is there an event for audit log entries being created?
    • Commands Extension
      • Why does on_message make my commands stop working?
      • Why do my arguments require quotes?
      • How do I get the original message?
      • How do I make a subcommand?
    • Views and Modals
      • How can I disable all items on timeout?
    • Application Commands
      • My bot’s commands are not showing up!

This is a list of Frequently Asked Questions regarding using discord.py and its extension modules. Feel free to suggest anew question or submit one via pull requests.

Questions

  • Coroutines

    • What is a coroutine?

    • Where can I use await?

    • What does “blocking” mean?

  • General

    • Where can I find usage examples?

    • How do I set the “Playing” status?

    • How do I send a message to a specific channel?

    • How do I send a DM?

    • How do I get the ID of a sent message?

    • How do I upload an image?

    • How can I add a reaction to a message?

    • How do I pass a coroutine to the player’s “after” function?

    • How do I run something in the background?

    • How do I get a specific model?

    • How do I make a web request?

    • How do I use a local image file for an embed image?

    • Is there an event for audit log entries being created?

  • Commands Extension

    • Why does on_message make my commands stop working?

    • Why do my arguments require quotes?

    • How do I get the original message?

    • How do I make a subcommand?

  • Views and Modals

    • How can I disable all items on timeout?

  • Application Commands

    • My bot’s commands are not showing up!

Coroutines

Questions regarding coroutines and asyncio belong here.

What is a coroutine?

A coroutine is a function that must be invoked with await or yield from. When Python encounters an await it stopsthe function’s execution at that point and works on other things until it comes back to that point and finishes off its work.This allows for your program to be doing multiple things at the same time without using threads or complicatedmultiprocessing.

If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.

Where can I use await?

You can only use await inside async def functions and nowhere else.

What does “blocking” mean?

In asynchronous programming a blocking call is essentially all the parts of the function that are not await. Do notdespair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to makesure that you don’t excessively block functions. Remember, if you block for too long then your bot will freeze since it hasnot stopped the function’s execution at that point to do other things.

If logging is enabled, this library will attempt to warn you that blocking is occurring with the message:Heartbeat blocked for more than N seconds.See Setting Up Logging for details on enabling logging.

A common source of blocking for too long is something like time.sleep(). Don’t do that. Use asyncio.sleep()instead. Similar to this example:

# badtime.sleep(10)# goodawait asyncio.sleep(10)

Another common source of blocking for too long is using HTTP requests with the famous module Requests: HTTP for Humans™.While Requests: HTTP for Humans™ is an amazing module for non-asynchronous programming, it is not a good choice forasyncio because certain requests can block the event loop too long. Instead, use the aiohttp library whichis installed on the side with this library.

Consider the following example:

# badr = requests.get('http://aws.random.cat/meow')if r.status_code == 200: js = r.json() await channel.send(js['file'])# goodasync with aiohttp.ClientSession() as session: async with session.get('http://aws.random.cat/meow') as r: if r.status == 200: js = await r.json() await channel.send(js['file'])

General

General questions regarding library usage belong here.

Where can I find usage examples?

Example code can be found in the examples folderin the repository.

How do I set the “Playing” status?

The activity keyword argument may be passed in the Client constructor or Client.change_presence(), given an Activity object.

The constructor may be used for static activities, while Client.change_presence() may be used to update the activity at runtime.

Warning

It is highly discouraged to use Client.change_presence() or API calls in on_ready() as this event may be called many times while running, not just once.

There is a high chance of disconnecting if presences are changed right after connecting.

The status type (playing, listening, streaming, watching) can be set using the ActivityType enum.For memory optimisation purposes, some activities are offered in slimmed-down versions:

  • Game

  • Streaming

Putting both of these pieces of info together, you get the following:

client = discord.Client(activity=discord.Game(name='my game'))# or, for watching:activity = discord.Activity(name='my activity', type=discord.ActivityType.watching)client = discord.Client(activity=activity)

How do I send a message to a specific channel?

You must fetch the channel directly and then call the appropriate method. Example:

channel = client.get_channel(12324234183172)await channel.send('hello')

How do I send a DM?

Get the User or Member object and call abc.Messageable.send(). For example:

user = client.get_user(381870129706958858)await user.send('👀')

If you are responding to an event, such as on_message(), you already have the User object via Message.author:

await message.author.send('👋')

How do I get the ID of a sent message?

abc.Messageable.send() returns the Message that was sent.The ID of a message can be accessed via Message.id:

message = await channel.send('hmm…')message_id = message.id

How do I upload an image?

To upload something to Discord you have to use the File object.

A File accepts two parameters, the file-like object (or file path) and the filenameto pass to Discord when uploading.

If you want to upload an image it’s as simple as:

await channel.send(file=discord.File('my_file.png'))

If you have a file-like object you can do as follows:

with open('my_file.png', 'rb') as fp: await channel.send(file=discord.File(fp, 'new_filename.png'))

To upload multiple files, you can use the files keyword argument instead of file:

my_files = [ discord.File('result.zip'), discord.File('teaser_graph.png'),]await channel.send(files=my_files)

If you want to upload something from a URL, you will have to use an HTTP request using aiohttpand then pass an io.BytesIO instance to File like so:

import ioimport aiohttpasync with aiohttp.ClientSession() as session: async with session.get(my_url) as resp: if resp.status != 200: return await channel.send('Could not download file...') data = io.BytesIO(await resp.read()) await channel.send(file=discord.File(data, 'cool_image.png'))

How can I add a reaction to a message?

You use the Message.add_reaction() method.

If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:

  • '👍'

  • '\U0001F44D'

  • '\N{THUMBS UP SIGN}'

Quick example:

emoji = '\N{THUMBS UP SIGN}'# or '\U0001f44d' or '👍'await message.add_reaction(emoji)

In case you want to use emoji that come from a message, you already get their code points in the content without needingto do anything special. You cannot send ':thumbsup:' style shorthands.

For custom emoji, you should pass an instance of Emoji. You can also pass a '<:name:id>' string, but if youcan use said emoji, you should be able to use Client.get_emoji() to get an emoji via ID or use utils.find()/utils.get() on Client.emojis or Guild.emojis collections.

The name and ID of a custom emoji can be found with the client by prefixing :custom_emoji: with a backslash.For example, sending the message \:python3: with the client will result in <:python3:232720527448342530>.

Quick example:

# if you have the ID alreadyemoji = client.get_emoji(310177266011340803)await message.add_reaction(emoji)# no ID, do a lookupemoji = discord.utils.get(guild.emojis, name='LUL')if emoji: await message.add_reaction(emoji)# if you have the name and ID of a custom emoji:emoji = '<:python3:232720527448342530>'await message.add_reaction(emoji)

How do I pass a coroutine to the player’s “after” function?

The library’s music player launches on a separate thread, ergo it does not execute inside a coroutine.This does not mean that it is not possible to call a coroutine in the after parameter. To do so you must pass a callablethat wraps up a couple of aspects.

The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we aretechnically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily forus, asyncio comes with a asyncio.run_coroutine_threadsafe() function that allows us to calla coroutine from another thread.

However, this function returns a Future and to actually call it we have to fetch its result. Putting all ofthis together we can do the following:

def my_after(error): coro = some_channel.send('Song is done!') fut = asyncio.run_coroutine_threadsafe(coro, client.loop) try: fut.result() except: # an error happened sending the message passvoice.play(discord.FFmpegPCMAudio(url), after=my_after)

How do I run something in the background?

Check the background_task.py example.

How do I get a specific model?

There are multiple ways of doing this. If you have a specific model’s ID then you can useone of the following functions:

  • Client.get_channel()

  • Client.get_guild()

  • Client.get_user()

  • Client.get_emoji()

  • Guild.get_member()

  • Guild.get_channel()

  • Guild.get_role()

The following use an HTTP request:

  • abc.Messageable.fetch_message()

  • Client.fetch_user()

  • Client.fetch_guilds()

  • Client.fetch_guild()

  • Guild.fetch_emoji()

  • Guild.fetch_emojis()

  • Guild.fetch_member()

If the functions above do not help you, then use of utils.find() or utils.get() would serve some use in findingspecific models.

Quick example:

# find a guild by nameguild = discord.utils.get(client.guilds, name='My Server')# make sure to check if it's foundif guild is not None: # find a channel by name channel = discord.utils.get(guild.text_channels, name='cool-channel')

How do I make a web request?

To make a request, you should use a non-blocking library.This library already uses and requires a 3rd party library for making requests, aiohttp.

Quick example:

async with aiohttp.ClientSession() as session: async with session.get('http://aws.random.cat/meow') as r: if r.status == 200: js = await r.json()

See aiohttp’s full documentation for more information.

How do I use a local image file for an embed image?

Discord special-cases uploading an image attachment and using it within an embed so that it will notdisplay separately, but instead in the embed’s thumbnail, image, footer or author icon.

To do so, upload the image normally with abc.Messageable.send(),and set the embed’s image URL to attachment://image.png,where image.png is the filename of the image you will send.

Quick example:

file = discord.File("path/to/my/image.png", filename="image.png")embed = discord.Embed()embed.set_image(url="attachment://image.png")await channel.send(file=file, embed=embed)

Is there an event for audit log entries being created?

This event is now available in the library and Discord as of version 2.2. It can be found under on_audit_log_entry_create().

Commands Extension

Questions regarding discord.ext.commands belong here.

Why does on_message make my commands stop working?

Overriding the default provided on_message forbids any extra commands from running. To fix this, add abot.process_commands(message) line at the end of your on_message. For example:

@bot.eventasync def on_message(message): # do some extra stuff here await bot.process_commands(message)

Alternatively, you can place your on_message logic into a listener. In this setup, you should notmanually call bot.process_commands(). This also allows you to do multiple things asynchronously in responseto a message. Example:

@bot.listen('on_message')async def whatever_you_want_to_call_it(message): # do stuff here # do not process commands here

Why do my arguments require quotes?

In a simple command defined as:

@bot.command()async def echo(ctx, message: str): await ctx.send(message)

Calling it via ?echo a b c will only fetch the first argument and disregard the rest. To fix this you should either callit via ?echo "a b c" or change the signature to have “consume rest” behaviour. Example:

@bot.command()async def echo(ctx, *, message: str): await ctx.send(message)

This will allow you to use ?echo a b c without needing the quotes.

How do I get the original message?

The Context contains an attribute, message to get the originalmessage.

Example:

@bot.command()async def length(ctx): await ctx.send(f'Your message is {len(ctx.message.content)} characters long.')

How do I make a subcommand?

Use the group() decorator. This will transform the callback into a Group which will allow you to add commands intothe group operating as “subcommands”. These groups can be arbitrarily nested as well.

Example:

@bot.group()async def git(ctx): if ctx.invoked_subcommand is None: await ctx.send('Invalid git command passed...')@git.command()async def push(ctx, remote: str, branch: str): await ctx.send(f'Pushing to {remote} {branch}')

This could then be used as ?git push origin master.

Views and Modals

Questions regarding discord.ui.View, discord.ui.Modal, and their components such as buttons, select menus, etc.

How can I disable all items on timeout?

This requires three steps.

  1. Attach a message to the View using either the return type of send() or retrieving it via Interaction.original_response().

  2. Inside on_timeout(), loop over all items inside the view and mark them disabled.

  3. Edit the message we retrieved in step 1 with the newly modified view.

Putting it all together, we can do this in a text command:

class MyView(discord.ui.View): async def on_timeout(self) -> None: # Step 2 for item in self.children: item.disabled = True # Step 3 await self.message.edit(view=self) @discord.ui.button(label='Example') async def example_button(self, interaction: discord.Interaction, button: discord.ui.Button): await interaction.response.send_message('Hello!', ephemeral=True)@bot.command()async def timeout_example(ctx): """An example to showcase disabling buttons on timing out""" view = MyView() # Step 1 view.message = await ctx.send('Press me!', view=view)

Application commands do not return a message when you respond with InteractionResponse.send_message(), therefore in order to reliably do this we should retrieve the message using Interaction.original_response().

Putting it all together, using the previous view definition:

@tree.command()async def more_timeout_example(interaction): """Another example to showcase disabling buttons on timing out""" view = MyView() await interaction.response.send_message('Press me!', view=view) # Step 1 view.message = await interaction.original_response()

Application Commands

Questions regarding Discord’s new application commands, commonly known as “slash commands” or “context menu commands”.

My bot’s commands are not showing up!

  1. Did you sync() your command? Commands need to be synced before they will appear.

  2. Did you invite your bot with the correct permissions? Bots need to be invited with the applications.commandsscope in addition to the bot scope. For example, invite the bot with the following URL:https://discord.com/oauth2/authorize?client_id=<client id>&scope=applications.commands+bot.Alternatively, if you use utils.oauth_url(), you can call the function as such:oauth_url(<other options>, scopes=("bot", "applications.commands")).

© Copyright 2015-present, Rapptz. Created using Sphinx 4.4.0.
Frequently Asked Questions (2024)
Top Articles
Latest Posts
Article information

Author: Tyson Zemlak

Last Updated:

Views: 5921

Rating: 4.2 / 5 (43 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Tyson Zemlak

Birthday: 1992-03-17

Address: Apt. 662 96191 Quigley Dam, Kubview, MA 42013

Phone: +441678032891

Job: Community-Services Orchestrator

Hobby: Coffee roasting, Calligraphy, Metalworking, Fashion, Vehicle restoration, Shopping, Photography

Introduction: My name is Tyson Zemlak, I am a excited, light, sparkling, super, open, fair, magnificent person who loves writing and wants to share my knowledge and understanding with you.