我正在尝试将python控制台划分为多个选项卡,因此例如在顶部显示每秒更新的时间,在底部显示bot日志,例如用户发送的消息。
这里有个例子
---------------------------
| Date : 16 Jul 2019 # These are the values that
| Time : 4:27pm # update every second
---------------------------
Neon#6352 : Hello # Messages sent by the users
答案 0 :(得分:2)
不幸的是,这与discord.py无关。
答案 1 :(得分:0)
好吧,您将必须创建选项卡。如果要更新时间,可以使用datetime library字符串。要获取消息,您必须执行以下操作:(以重写形式编写)
bot = commands.Bot(command_prefix="your_prefix")
@bot.listen()
async def on_message():
user = discord.utils.get(message.guild.members, id=message.author.id)
print(f"{user}: {message.content}")
希望这会有所帮助! :D