Discord.py正常运行时间

2022-02-23 00:00:00 python discord.py uptime

问题描述

使用discord.py,我正在尝试制作uptime脚本,我不确定它是f string(如等待ctx.send(f"client.uptime")或其他内容,

我是discord.py的新手,刚刚开始学习,有人能帮忙吗?


解决方案

您的示例是ctx.send(f"{client.uptime}")f字符串中的花括号是变量所在的位置。但是,我认为discord.py没有.uptime特性。您需要保存机器人启动的时间,然后计算命令运行时的时间差。您可以使用类似this的内容。

相关文章