Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
207 views
in Technique[技术] by (71.8m points)

discord.py - Display a countdown for the python sleep function in discord embed in python

hi all I am doing one discord bot

I need to send one countdown it's like a cooldown embed after every request

I did this code but I don't know how to add this in my embed

 for i in range(60,0,-1):
     print(f"{i}", end="
", flush=True)
     time.sleep(1)

this is my embed :

embed_processing = discord.Embed(
                title = ('please wait 1min we are processing your request time '),
                description=('Jaffa_the_warrior server'),
                colour = discord.Color.orange()
            )
            processingmessage = await ctx.channel.send(embed = embed_processing)

please help me i want to add a timer in the title

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
import asyncio

@bot.command()
async def count(ctx, duration:int):
  msg = await ctx.send("Started")
  for i in range(duration, -1, -1):
    m, s = divmod(i, 60)
    await msg.edit(content="{0:02}:{1:02}".format(m, s))
    await asyncio.sleep(1)

This is the timer command but not working good if called more then 1.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...