def setUpClass(cls):
logging.getLogger("discord").setLevel(logging.ERROR)
logging.getLogger("websockets").setLevel(logging.ERROR)
bot = discord.Client(fetch_offline_members=False)
await bot.login(os.environ['DISCORD_TOKEN'])
cls.bot = bot
cls.task = asyncio.ensure_future(bot.connect())
await cls.bot.wait_until_ready()
cls.channel = bot.get_channel(182580524743655424)
评论列表
文章目录