命令CountDown Timer

时间:2018-06-18 03:57:25

标签: python python-3.x discord discord.py

那么如何添加倒计时日期时间来回复,一旦完成它就会开始倒计时显示结束。

from datetime import date, datetime, timedelta

start = 20/06/20018 11 PM UTC Time zone
end = 21/06/20018 11 PM UTC Time zone

@bot.command(pass_context=True)
async def meeting(ctx):
    embed = discord.Embed(title="Title", description="Description.", color=0x000000)
    embed.add_field(name="Name", value="Meeting will...", inline=False)
    await bot.say(embed=embed)

最后机器人说Meeting will... (Starts in:23 hours 10 minutes)

我现在导入from datetime import date, datetime, timedelta如何减去当前时间。比如我需要添加像2018年6月20日11PM UTC时区 - 当前时间。

enter image description here

0 个答案:

没有答案