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

Резултати

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

Пребарај: #temasek

当前筛选 #temasek清除筛选
Venture Village Wall 🦄

@venturevillagewall · Post #3952 · 22.01.2025 г., 16:00

Fraud Claims Hit Indonesian Unicorn EFishery, an Indonesian fish feeding startup, faces serious allegations of financial misconduct after raising $200 million backed by major investors like Temasek and Softbank. An internal investigation revealed inflated profits ($16M claimed vs. $35.4M actual loss) and exaggerated revenue ($752M claimed vs. $157M actual). Both founders have been removed from their positions following these revelations. For more details, read the article on Bloomberg. #Crypto#Startups#Investing#EFishery#Fraud#Finance#Bloomberg#Investors#Indonesia#Temasek#Softbank#MarketWatch

Venture Village Wall 🦄

@venturevillagewall · Post #4252 · 26.02.2025 г., 16:00

Indonesian Unicorn eFishery Faces Crisis eFishery, Indonesia's smart fish feeder unicorn, faces severe troubles after a board investigation revealed massive misrepresentation of business metrics. Initially claiming to have sold 400,000 units, true sales were only 6,300 with severe financial losses from 2018 to 2024. Recent data indicates $50 million left in accounts and substantial layoffs, shrinking from 2,600 to 200 employees. Investors like Temasek and Softbank now face losses, expecting only a fraction returned per dollar invested. Concerns arise regarding due diligence practices during funding rounds when financial issues were likely evident. Read more from Bloomberg here. #eFishery#Indonesia#Startup#Unicorn#Softbank#Temasek#Fintech#Investment#Business#Crisis#Economy#Funding#HealthTech#AgriTech#TechNews#FinancialFraud#DueDiligence#InvestorLoss#MarketTrends#Surveillance#TechIndustry