#python #discord #discum
#python #Discord #discum
Вопрос:
Я использую модуль Discum python, все работает, но консоль получает спам-сообщения модуля, есть ли способ отключить это? вот простой фрагмент кода
import discum
bot=discum.Client(token="atokenwhichisunneccesaryforthisquestion")
@bot.gateway.command
def pingpong(resp):
if resp.event.message:
m = resp.parsed.auto()
if m['content'] == 'a cool message':
print("whoop whoop anyone wrote a cool message!")
bot.gateway.run()
Ответ №1:
да, просто измените строку инициализации клиента на:
bot=discum.Client(token="atokenwhichisunneccesaryforthisquestion", log=False)
обратите внимание, что эта информация доступна в документации discum:
https://github.com/Merubokkusu/Discord-S.C.U.M/blob/master/docs/using/Get_Started.md#initializing-your-client