discord.py-单独的可更新标签

时间:2019-07-16 15:29:17

标签: python-3.x discord.py

我正在尝试将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

2 个答案:

答案 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