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

Резултати

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

Пребарај: #xvs

当前筛选 #xvs清除筛选
Coin Sonar

@CoinSonar · Post #243713 · 17.04.2026 г., 14:33

#XVS | Volume spike (USDT PAIR) 83 times the average volume 134.86K USDT traded in 15 min └Buying vol: 79.34K USDT 🟢 Boost score: 5/10 24h Vol: 154.69K USDT (Binance) Price: 3.30 (-2.2% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243630 · 17.04.2026 г., 12:15

#XVS | Volume spike (USDT PAIR) 79 times the average volume 128.29K USDT traded in 15 min └Selling vol: 64.97K USDT 🔴 Boost score: 1/10 24h Vol: 154.69K USDT (Binance) Price: 3.11 (-2.2% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243586 · 17.04.2026 г., 10:14

#XVS | Volume spike (USDT PAIR) 80 times the average volume 129.02K USDT traded in 15 min └Buying vol: 69.97K USDT 🟢 Boost score: 4/10 24h Vol: 154.69K USDT (Binance) Price: 2.96 (-2.2% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243522 · 17.04.2026 г., 08:00

#XVS | Volume spike (USDT PAIR) 1097 times the average volume 117.85K USDT traded in 1 min └Buying vol: 74.44K USDT 🟢 Boost score: 8/10 24h Vol: 154.69K USDT (Binance) Price: 2.76 (-2.2% in 24h)

Hashtags

Pro Analysis

@proanalysistrader · Post #28469 · 13.02.2025 г., 16:42

#XVS/USDT analysis : #XVS has broken out above the 200 EMA and the previous swing high, exhibiting strong bullish momentum. The price is currently retracing and testing the support zone along with the 200 EMA. It is expected to retest this area and rebound, continuing its bullish momentum towards testing the swing high level. TF : 4H Entry : $7.60 Target : $9.33 SL : $6.84

Hashtags

Pro Analysis

@proanalysistrader · Post #28044 · 20.10.2024 г., 17:13

#XVS/USDT analysis : #XVS is in an uptrend, trading above the 200 EMA and consolidating over the support zone. The price is expected to bounce back from the support zone and test the previous highs. TF : 4H Entry : $7.42 Target : $8.05 SL : $7.00

Hashtags

Pro Analysis

@proanalysistrader · Post #27857 · 20.08.2024 г., 01:00

#XVS/USDT analysis : #XVS has recently broken out of the ascending triangle pattern on the LTF. Price is trading above the 200 EMA. It is expected to continue its bullish momentum and test previous swing highs. TF : 2H Entry : $6.98 Target : $7.59 SL : $6.64

Hashtags

Crypto Headlines

@market_headlines · Post #27722 · 16.03.2026 г., 06:49

#xvs 😭 Джастин Сан продал 621k XVS (Venus) за $1,95m с убытком ~$5,63m (-74%). В январе 2024 года основатель Tron купил эти токены за $7,58m. Ранее: атака на Venus Crypto Headlines

Hashtags

ПретходнаСтраница 1 од 3Следна