有没有办法使用discord.py从python的IDE发送消息?

时间:2021-03-17 21:49:08

标签: python discord ide command python-asyncio

^^

是的,这个问题非常非常奇怪。 我知道也不建议/禁止以这种方式使用 IDE,但我之所以这么问是因为我非常好奇:3

这是我的代码:

from discord.ext import commands

import asyncio
from async_timeout import timeout

bot = commands.Bot(command_prefix = "::", description = "Hey you")

@bot.event
async def on_ready():
    await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.playing, name="Hey!"))
    print("Have fun!")

async def salondethe():
    channel = bot.get_channel(123456789101112131)
    await guild.channel.send('test')    

bot.run("token")

而且我想在IDE中发送salondethe()在通道123456789101112131中发送消息 你知道方法吗? ^^ 谢谢你的好奇我^^

0 个答案:

没有答案