未关闭的客户端会话。有解决方案吗?

时间:2018-11-14 09:35:53

标签: python python-3.x discord python-asyncio discord.py

我正在使用Discord模块制作一个Discord机器人。我对此很不好,因为我不久前才开始编码。好吧,我在设置机器人的前缀时遇到了一些问题:它说在第8行中有一个错误。unclosed client sessionNameError: name 'command' is not defined也是如此。

这是错误:

Traceback (most recent call last):
File "SUBLIME TEXT PRUEBA.py", line 8, in <module>
client = command.Bot(command_prefix = '!')
NameError: name 'command' is not defined
Unclosed client session
client_session: <aiohttp.client.ClientSession object at 0x0000017638A4F9E8>

我还将把代码放在这里...

import discord
from discord.ext.commands import Bot
from discord.ext import commands
import asyncio


Client = discord.Client()
client = command.Bot(command_prefix = '!')


@client.event
async def on_ready():
    print('bot is redey')

@client.event
async def on_message(message):
    if message.content == 'keke':
        await client.send_message(message.channel, 'KEKEKEKEKK')

1 个答案:

答案 0 :(得分:2)

如评论中所述:

  • 您需要使用commands而不是command
  • 您的discord.Client()会话可能需要使用close()之类的方法关闭