在我的 discord.py 机器人中,我正在尝试创建一个函数来运行机器人加入语音频道、播放音频文件然后离开所需的代码。我正在这样做,所以我不必为我要发出的每个语音命令复制和粘贴相同的代码。但是,我无法运行该函数。
我尝试为我的函数使用异步 def 和 await 函数,但它似乎不起作用。我毫无头绪,因为当我运行代码时,我没有收到任何错误。
async def voiceCommand(ctx, message, file, time, cmd):
channel = ctx.message.author.voice.voice_channel
if channel == None: # If the user who sent the voice command isn't in a voice channel.
await client.say('You are not in a voice channel, therefore I cannot run this command.')
return
else: # If the user is in a voice channel
print(executed(cmd, message.author))
voice = await client.join_voice_channel(channel)
server = ctx.message.server
voice_client = client.voice_client_in(server)
player = voice.create_ffmpeg_player(file) # Uses ffmpeg to create a player, however it makes a pop up when it runs.
player.start()
time.sleep(float(time))
await voice_client.disconnect() # Disconnects WingBot from the voice channel.
和
@client.command(pass_context = True)
async def bigbruh(ctx):
voiceCommand(ctx, message, 'bigbruh.mp3', '0.5', 'bigbruh')
这些是我尝试用来运行函数的代码片段。
完整的源代码在这里: https://pastebin.com/bv86jSvk
你可以用这几个方法在python中运行异步函数
async def print_id():
print(bot.user.id)
@bot.event
async def on_ready():
bot.loop.create_task(print_id()) #this will run the print_id function
print(bot.user.name)
async def not_me(msg):
await bot.send_message(msg.message.channel,"You are not me")
async def greet():
print("Hi")
@bot.command(pass_context=True)
async def me(msg):
if msg.message.author.id == '123123':
await bot.say("Hello there") #await is used to run async function inside another async function
else:
await not_me(msg)
#To run the async function without it being inside another async function you have to use this method or something similar to it
import asyncio
# asyncio.get_event_loop().run_until_complete(the_function_name())
#in this case it's `greet`
asyncio.get_event_loop().run_until_complete(greet())