Функция asyncio.wait() это еще один способ вызвать множество асинхронных задач.
Она работает в нескольких режимах.
1. Самый простой - ждем завершения всех задач
async def main():
tasks = [asyncio.create_task(do_it(i)) for i in range(10)]
done, pending = await asyncio.wait(
tasks,
return_when=asyncio.ALL_COMPLETED
)
for task in done:
try:
print(task.result())
except Exception as e:
print(e)
Очень похоже на gather, но работает не так.
▫️возвращает не результаты, а два сета с объектами Task у которых можно забрать результат через task.result() если они в списке done
▫️не гарантирует порядок результатов так как оба объекта это set
▫️не выбрасывает исключение когда оно появляется, а сохраняет его в Task. Исключение появится когда попробуете забрать резултьтат.
2. Ждем завершения первой задачи, даже если там ошибка.
async def main():
tasks = [asyncio.create_task(do_it(i)) for i in range(3)]
done, pending = await asyncio.wait(
tasks,
return_when=asyncio.FIRST_COMPLETED
)
# в done может быть несколько задач!
for task in done:
try:
print(task.result())
except Exception as e:
print(f"Fail: {e}")
# Оставшиеся задачи в pending, как правило, нужно отменить, иначе они будут продолжать работать
for task in pending:
task.cancel()
В сете done будут таски которые успели завершится, причем как успешно так и нет.
3. До первой ошибки.
Тоже самое, но с аргументом FIRST_EXCEPTION
done, pending = await asyncio.wait(
tasks,
return_when=asyncio.FIRST_EXCEPTION
)
Функция завершается как только первая задача упадет с ошибкой.
Учтите, что в любом случае done вы можете обранужить несколько задач, как с ошибками так и успешные.
↗️ Полный листинг примеров здесь
#async
Почерк — это отражение нашей личности на бумаге.
Handwriting is a reflection of our personality on paper.
✍️Николай Гоголь
Nikolai Gogol
✍️Эрнест Хемингуэй
Ernest Hemingway
✍️Александр Дюма (отец)
Alexandre Dumas père
✍️Владимир Набоков
Vladimir Nabokov
✍️Джейн Остин
Jane Austen
✍️Александр Пушкин
Alexander Pushkin
✍️Вирджиния Вулф
Virginia Woolf
✍️Иоганн Гёте
Johann Wolfgang von Goethe
✍️Франц Кафка
Franz Kafka
✍️Лев Толстой
Leo Tolstoy
❓️How is your handwriting when you write in Russian?😉
▶️Russian cursive letters (+practice)
#cursive
#brief_and_interesting
😎RCR | Support | Boost
School in the Russian Empire, late 19th century
❓️Can you read the 3 words written on the board?
🗝
In the Russian Empire 'i' stood for modern 'и':
1. Жукъ = жук (beetle)
2. Ученiя = учения (studies)
3. Сiянiе = сияние (shining)
▶️Reforms in 1918
#retrophotos
#cursive
😎RCR | Support | Boost
In Russia doctors may be required to print prescriptions: many pharmacists and patients struggle to read their handwriting.
🔻This leads to the refusal of medication sales, treatment delays, or the dispensing of the wrong drug, believes MP Anton Tkachev. He emphasized that it's especially difficult for the elderly, who cannot decipher the prescriptions themselves.
📎 And you say you can't read what Russians write. Russians themselves struggle to decipher what other Russians write! :)
Source: rt_russian
#cursive
#learnRussian
#news
😎RCR | Support | Boost
That merciless Russian cursive handwriting!
• Шиш
[shysh]
🔻This interjection (or sometimes exclamatory noun) is used to denote a strong, emphatic refusal, denial, or the idea of nothing or you won't get anything.
⚠️It's generally rude or dismissive!
🔻Шиш is a very close synonym of фиг. Both words are used in similar contexts to express negation, refusal, or to refer to the fig sign gesture.
🔻While фиг might be slightly more common and versatile in some everyday expressions, шиш carries a similar dismissive and negative connotation.
#spoken_Russian
#cursive
#foul_language
😎RCR | Support | Boost
Writing Ч ч in cursive can be challenging, but not for you!
🔻Let's watch the video, print out the practice sheet and, shedding tears of despair, practice and move on.
❓Which other letters of the Russian alphabet make you overwhelmingly want to chuck the study of Russian overboard?
📎The pdf file is in the comments
▶️Hard sign tutorial
▶️Сursive letters
#practice
#cursive
😎RCR | Support | Boost
Writing the hard sign (ъ) in cursive can be challenging, but not for us, right?
🔻Let's watch the video, print out the practice sheet and, shedding tears of despair, practise and move on.
❓Which other letters of the Russian alphabet make you overwhelmingly want to chuck the study of Russian overboard?
📎 file is in the comments
▶️Сursive letters
#practice
#cursive
😎 Stay with @learnRCRussian
Напиток называется "Grappa", а не то что вы прочитали.
The drink is called Grappa, not what you read.
🤔What did you read?
🗝
🔞⚠️
• Сучара (femin.)
[su-cha-ra]
⚠️ Vulgar slang! A highly offensive, intensified version of сука(bitch). Means something like a total bitch. Expresses extreme hatred, betrayal, or disgust.
❗️Do not use this word! Understand it only to recognize aggression in speech or media!
#cursive
#linguistic_joke
#Russian_riddle
#foul_language
😎RCR | Support | Boost