@Chelsea_fc_worldwide · Post #177247 · 14.05.2026 г., 09:35
Liam Delap is always on the winning team! 🧐 #CFC
Hashtags
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
Пребарај: #cfc
@Chelsea_fc_worldwide · Post #177247 · 14.05.2026 г., 09:35
Liam Delap is always on the winning team! 🧐 #CFC
Hashtags
@Chelsea_fc_worldwide · Post #177192 · 11.05.2026 г., 10:37
11/05/14 📆 Ashley Cole's final #CFC appearance. 💙
Hashtags
@Chelsea_fc_worldwide · Post #177022 · 29.04.2026 г., 14:36
🚨 Chelsea are now looking at a list of around 7 or 8 names to take over permanently. One of those under consideration is Iraola. After hiring and firing 4 permanent coaches in as many years, the club do not want to rush this decision. (Simon Johnson Sport) #CFC
Hashtags
@Chelsea_fc_worldwide · Post #177017 · 29.04.2026 г., 09:34
🚨 BREAKING: Chelsea captain Millie Bright has retired from football with immediate effect after 12 years, 314 appearances and 20 trophies. Bright will be staying on at the club as a trustee of the #CFC Foundation and starting a new role as a Chelsea ambassador. 🗣️ Bright: “Representing Chelsea over the last 12 years has been everything to me, but I'm now ready to say goodbye to playing football. I’ve given all I can, and I never wanted to fight for any other badge. “It’s now time, and I'm ready to go into a new era. I’m always going to be Chelsea, but just in a different way.” Chelsea will mark Bright’s retirement on May 16 at their final WSL game of the season against ManchesterUnited. 🔗 Ben Jacobs
Hashtags
@Chelsea_fc_worldwide · Post #177016 · 29.04.2026 г., 09:33
🚨🇸🇳 Juventus are monitoring Nicolas Jackson, and can imagine a loan move for him. AC Milan are also monitoring. (Plettigoal) #CFC
Hashtags
@Chelsea_fc_worldwide · Post #176983 · 27.04.2026 г., 07:31
🚨 Joe Cole tells Frank Lampard to stay away from Chelsea job: "Frank should stay away from it. The temptation for Frank, because he loves the club, would be to come back and give it another whirl." "If I was him, I wouldn’t go to Chelsea. In any job, you’re being judged on your results but [at Chelsea] you don’t have full control over what you can do. That’s insane." #CFC
Hashtags
@Chelsea_fc_worldwide · Post #176957 · 26.04.2026 г., 10:43
🚨🇪🇸 Andoni Iraola would be more than happy to continue in the PL. He would be KEEN on becoming the next Chelsea manager! Nothing decided by Chelsea as in the early stages and nothing advanced. (Fabrizio Romano) #CFC
Hashtags
@Chelsea_fc_worldwide · Post #176753 · 16.04.2026 г., 14:57
🚨BREAKING: Moises Caicedo to sign new Chelsea contract. [Via telegraph] 🚨🔵 BREAKING: Chelsea are closing in on new deal for Moisés Caicedo! The agreement will be valid until June 2033 with final details being sorted, as @CLMerlo reports. Caicedo has given green light to #CFC stay for long term. [Via Fabrizio Romano]
Hashtags
@Chelsea_fc_worldwide · Post #176641 · 09.04.2026 г., 21:14
🚨 Breaking: Morgan Rogers likely to leave this summer even if Aston Villa get UCL. Chelsea, Arsenal, Liverpool, Utd are interested. £80m is the starting point figure for negotiations. #CFC looking for an attacker who can play off the left or central. [Via Ben Jacobs]
Hashtags
@Chelsea_fc_worldwide · Post #176298 · 20.03.2026 г., 17:44
🔵 UFC fighter Merab "The Machine" Dvalishvili visits Stamford Bridge. 👊 #CFC
Hashtags
@Chelsea_fc_worldwide · Post #176257 · 18.03.2026 г., 19:48
🚨 Fabrizio Romano: "There is something happening behind the scenes. My understanding is that there has been a conversation for some months between Enzo Fernandez and Chelsea to try to find a solution over contract terms to try to adjust the contract. At the moment, still no agreement." "If they can't find a solution, which I'm sure they will try to, Enzo could be open to exploring options in the summer." #CFC
Hashtags
@Chelsea_fc_worldwide · Post #176238 · 17.03.2026 г., 22:10
❗️What message do you have for Clearlake/BlueCo? 👇 #CFC
Hashtags