TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #401 · 15 дек.

Функция 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

Hashtags

Резултати

Пронајдени 3 слични објави

Пребарај: #nbaseason

当前筛选 #nbaseason清除筛选
Crypto M - Crypto News

@CryptoM · Post #65337 · 13.04.2026 г., 00:45

🚀 Lakers vs. Jazz NBA Game Draws Significant Bet on Polymarket A significant bet has been placed on the Los Angeles Lakers defeating the Utah Jazz in the NBA regular season game, according to Odaily. An account with a winning probability exceeding 66% invested $200,000 on the Lakers' victory, with an average opening price of 91¢. The game between the Lakers and the Jazz commenced today at 8:30 AM UTC+8. This marks the final day of the NBA regular season. The Lakers currently hold a record of 52 wins and 29 losses, placing them third in the Western Conference, while the Jazz have a record of 22 wins and 59 losses, ranking them 15th in the same conference. #Lakers#Jazz#NBA#Polymarket#Betting#NBASeason#WesternConference#LakersVsJazz#Basketball

Crypto M - Crypto News

@CryptoM · Post #64482 · 09.04.2026 г., 02:25

🚀 Significant Bet Placed on Thunder in NBA Regular Season Matchup Against Clippers A notable prediction event on Polymarket involves a user with a win rate exceeding 58% who has invested $270,000 on the Oklahoma City Thunder defeating the Los Angeles Clippers. According to Odaily, the average opening price for this bet was 76.2¢. The NBA regular season game between the Thunder and the Clippers commenced today at 10 a.m. UTC+8. As the game progresses into the first quarter, the Thunder hold a record of 63 wins and 16 losses, placing them first in the Western Conference. Meanwhile, the Clippers are ranked eighth with a record of 41 wins and 38 losses. #NBA#Thunder#Clippers#Polymarket#Betting#OklahomaCityThunder#LosAngelesClippers#WesternConference#Basketball#NBASeason

Crypto M - Crypto News

@CryptoM · Post #64783 · 09.04.2026 г., 23:05

🚀 High-Stakes Bet on Bulls vs. Wizards NBA Game A significant wager has been placed on the Polymarket prediction platform regarding the NBA regular season game between the Chicago Bulls and the Washington Wizards. According to Odaily, an account with a history of over $4.3 million in losses has invested $150,000 on the Bulls to win against the Wizards with a 5.5-point spread, at an average opening price of 56 cents. Additionally, the same account has placed a $40,000 bet on the Bulls to win with a 6.5-point spread, at an average opening price of 50.9 cents. The NBA regular season game between the Bulls and the Wizards commenced today at 7 a.m. UTC+8. As the season nears its conclusion, the Bulls hold a record of 30 wins and 49 losses, placing them 12th in the Eastern Conference. Meanwhile, the Wizards have a record of 17 wins and 62 losses, ranking 15th in the Eastern Conference. #HighStakesBet#BullsVsWizards#NBA#Polymarket#ChicagoBulls#WashingtonWizards#NBASeason#Betting#SportsBetting#PointSpread#BasketballBetting#EasternConference