discord python - 计算一周内的消息并保存
discord python - counting messages from a week and save them
我有一个问题,但找不到答案。我想计算消息数,但只计算周一至周日的消息数,并在德国时间凌晨 12 点将计数器重置为零。
我知道这对计算消息有效:
channel = bot.get_channel(721833279711477941)
count = 0
async for _ in channel.history(limit=None):
count += 1
await channel.send(f"{count} messages in this channel")
我知道如何统计频道消息,但我不知道如何统计所有消息,从一周开始,保存统计的消息,让机器人舒服,所以他不需要有多少时间可以算一下。
很明显,机器人不应该花一些时间来计算消息数。我不想要那个。所以我有了将所有计数的消息保存在数据库中的想法,并且只对每条消息进行向前计数。但是机器人仍然应该计算特定频道中一周内的每条消息(也许他只这样做一次,以便将其存储在数据库中)。
我需要此功能来了解它在 python 中的工作原理,并且想为 Discord 频道使用 {count} 占位符。
我希望我解释得很好并且对你来说是可以理解的。
您可以使用 datetime 库创建一些简单的函数来计算上一个 星期一 和下一个 星期日的时间,因为你想计算那段时间内的消息数量,一些可行的代码如下:
def last_monday():
today = datetime.datetime.today()
monday = today - datetime.timedelta(days=today.weekday())
return monday
def next_sunday():
today = datetime.datetime.today()
sunday = today + datetime.timedelta((6-today.weekday()) % 7)
return sunday
这些函数以今天为参考计算前一个星期一或下一个星期日,并加上或减去必要的天数。返回值采用可接受的日期时间格式。
然后在您的 discord.py 代码中您可以简单地使用 before 和 after 在调用 channel.history
中告诉 Discord 查找这些消息的时间范围。使用我在上面发布的函数,您的 discord 函数应该具有以下内容:
channel = bot.get_channel(721833279711477941)
messages = channel.history(limit=None, before=next_sunday(), after=last_monday()).flatten()
count = len(messages)
await channel.send(f"{count} messages in this channel")
我有一个问题,但找不到答案。我想计算消息数,但只计算周一至周日的消息数,并在德国时间凌晨 12 点将计数器重置为零。
我知道这对计算消息有效:
channel = bot.get_channel(721833279711477941)
count = 0
async for _ in channel.history(limit=None):
count += 1
await channel.send(f"{count} messages in this channel")
我知道如何统计频道消息,但我不知道如何统计所有消息,从一周开始,保存统计的消息,让机器人舒服,所以他不需要有多少时间可以算一下。
很明显,机器人不应该花一些时间来计算消息数。我不想要那个。所以我有了将所有计数的消息保存在数据库中的想法,并且只对每条消息进行向前计数。但是机器人仍然应该计算特定频道中一周内的每条消息(也许他只这样做一次,以便将其存储在数据库中)。
我需要此功能来了解它在 python 中的工作原理,并且想为 Discord 频道使用 {count} 占位符。 我希望我解释得很好并且对你来说是可以理解的。
您可以使用 datetime 库创建一些简单的函数来计算上一个 星期一 和下一个 星期日的时间,因为你想计算那段时间内的消息数量,一些可行的代码如下:
def last_monday():
today = datetime.datetime.today()
monday = today - datetime.timedelta(days=today.weekday())
return monday
def next_sunday():
today = datetime.datetime.today()
sunday = today + datetime.timedelta((6-today.weekday()) % 7)
return sunday
这些函数以今天为参考计算前一个星期一或下一个星期日,并加上或减去必要的天数。返回值采用可接受的日期时间格式。
然后在您的 discord.py 代码中您可以简单地使用 before 和 after 在调用 channel.history
中告诉 Discord 查找这些消息的时间范围。使用我在上面发布的函数,您的 discord 函数应该具有以下内容:
channel = bot.get_channel(721833279711477941)
messages = channel.history(limit=None, before=next_sunday(), after=last_monday()).flatten()
count = len(messages)
await channel.send(f"{count} messages in this channel")