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

Categories

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

python - how to handle multiple messages at once - telegram

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

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...