Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I built a telegram bot using telepot that sand big amount of photos. (between 100 - 200 pics)

and I got a problem that if multiple users ask the bot for photos at the same time the bot will start sending the first request and then go to the second request and it goes on like this.

Is there a way to change the way the bot handles the request to answer multiple users at the same time?

def handle(msg):
   if message == '/send_pics':
      for photo in photos 
          # loop that send photos to the user

MessageLoop(bot, handle).run_as_thread()

while True:
    time.sleep(10)

That a simplify description of the bot i made. If you got any idea for a way to handle muliple messages at the same time i would love to hear it

question from:https://stackoverflow.com/questions/65943861/how-to-handle-multiple-messages-at-once-telegram

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

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...