Answer the question
In order to leave comments, you need to log in
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)
Answer the question
In order to leave comments, you need to log in
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 questionAsk a Question
731 491 924 answers to any question