H
H
Hello World2019-06-09 13:14:35
Python
Hello World, 2019-06-09 13:14:35

Is this code asynchronous?

async def send_message(update):
    api.messages.send(user_id= ......) # Делает запрос 
url = ...
while 1:
    updates = requests.get(url).json() #LongPoll
    for update in updates:
    if r['type'] == 'new_message':
         task = event_loop.create_task(send_message(update))
         event_loop.run_until_complete(task)

I also realized that if you often send messages, then an error pops up that there are a lot of requests per second. To add a delay?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey Gornostaev, 2019-06-09
@sergey-gornostaev

No, it's not. Absolutely all its parts are executed synchronously, trying to use a coroutine is meaningless.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question