Discord.py сохранение сообщений неизвестного канала в txt-файл

#python #discord #discord.py Вопрос: async def on_message(self, message): if message.author == self.user: return if message.content.lower() == 'hi': await message.channel.send('hello') if message.content.lower() == '': f = open("Path/To/Your/File.txt", "w") # 'r' for…

Продолжить чтениеDiscord.py сохранение сообщений неизвестного канала в txt-файл