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

Резултати

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

Пребарај: #btcusdc

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

@CryptoM · Post #64528 · 09.04.2026 г., 06:18

🚀 Binance to Adjust Minimum Notional Value for BTC Perpetual Futures According to the announcement from Binance, the exchange plans to adjust the minimum notional value for orders of BTCUSDT and BTCUSDC USDⓈ-M Perpetual Futures Contracts on 2026-04-14 at 06:30 (UTC). This adjustment aims to enhance market liquidity and improve the trading experience for users. The process is expected to be completed within approximately four hours and will not impact USDⓈ-M Futures trading operations. The specific changes involve reducing the minimum notional value for BTCUSDT and BTCUSDC contracts from 100 USDT and 100 USDC to 50 USDT and 50 USDC, respectively. Existing orders will remain unaffected by this adjustment. API users can access the latest minimum notional value for orders of USDⓈ-M Perpetual Futures Contracts through the GET /fapi/v1/exchangeInfo endpoint. For further details and updates, users are encouraged to refer to the full API Changelog. Binance advises traders to review the updated trading parameters and adjust their strategies accordingly to avoid any unnecessary impact on their trading activities. This notice is released under Binance Exchange Rule 17, and users are reminded to consult the original English version of the announcement for the most accurate information, as there may be discrepancies in translated versions. #Binance#BTCFutures#PerpetualFutures#TradingUpdate#CryptoTrading#BTCUSDT#BTCUSDC#MarketLiquidity#CryptoNews