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

TGINSIGHT SIMILAR POSTS

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

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

Три способа выполнить множество задач с asyncio Функция для примера: async def do_it(n): await asyncio.sleep(random.uniform(0.5, 1)) return n 1. Последовательный вызов async def main(): for i in range(100): result = await do_it(i) Такой вызов имеет смысл только тогда, когда результат одной задачи требуется для вызова следующей. Если они независимы, то это антипаттерн, так как аналогичен простому синхронному вызову по очереди. 2. Упорядоченный результат async def main(): tasks = [do_it(i) for i in range(100)] results = await asyncio.gather(*tasks) Выполняет корутины конкурентно и возвращает результат в виде списка. Полезен когда требуется получить результаты в том же порядке в котором задачи отправлены. 3. Результат по мере готовности tasks = [asyncio.create_task(do_it(i)) for i in range(100)] for cor in asyncio.as_completed(tasks): result = await cor Так же выполняет корутины конкурентно, но не гарантирует порядок. Результат возвращается по мере готовности, каждый отдельно. Полезен когда нужно обработать любой ответ как можно скорее. #async

Hashtags

Резултати

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

Пребарај: #ulbricht

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

@venturevillagewall · Post #3945 · 22.01.2025 г., 01:00

Trump Pardons Ulbricht and AI Project Launch 🚨 BREAKING: President Trump has officially pardoned Silk Road founder Ross Ulbricht. Meanwhile, he announced a groundbreaking $500 billion AI initiative, collaborating with OpenAI, Oracle, and SoftBank. The first phase will allocate $100 billion for AI infrastructure development in Texas, aiming for a nationwide impact. This project, named 'StarGate', marks a significant shift in AI investment and development strategy following a series of controversies surrounding these tech giants. For detailed insights: Watcher Guru, Watcher Guru #AI#Crypto#VC#Trump#Ulbricht#OpenAI#SoftBank#Oracle#NVIDIA#Texas#AGI#Ethereum#DeFi#investment#SilkRoad#innovation#finance#technology

Venture Village Wall 🦄

@venturevillagewall · Post #3935 · 21.01.2025 г., 04:00

Trump May Commute Ulbricht's Sentence Soon Rumors suggest President Trump might commute Ross Ulbricht's sentence tonight or tomorrow. Meanwhile, the Trump family's crypto project, World Liberty Financial, holds significant crypto assets including $184 million in ETH. In related news, a whale address incurred a $10.6 million floating loss after purchasing MELANIA tokens. More on WLFI's holdings: World Liberty Financial Details on MELANIA's trading losses: GMGN #Trump#Ulbricht#Bitcoin#ETH#Crypto#WLFI#MELANIA#Whale#Trading#Losses#Blockchain#Finance#Investing#Markets#News#USA#Rumor#Updates#Assets#WorldLiberty#CryptoAssets