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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #397 · 12 ное.

Использование Pydantic сегодня стало нормой, и это правильно. Но иногда на ревью вижу, что используют его не всегда корректно. Например, метод BaseModel.model_dump() по умолчанию не преобразует стандартные типы, такие как datetime, UUID или Decimal, в простой сериализуемый для JSON вид. Тогда пишут кастмоный сериализатор для этих типов чтобы функция json.dump() не падала с ошибкой. import uuid from datetime import datetime from decimal import Decimal from uuid import UUID from pydantic import BaseModel class MyModel(BaseModel): id: UUID date: datetime value: Decimal obj = MyModel( id=uuid.uuid4(), date=datetime.now(), value='1.23' ) print(obj.model_dump()) # не подходит для json.dump # { # 'id': UUID('4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1'), # 'date': datetime.datetime(2025, 12, 12, 12, 12, 12, 111111), # 'value': Decimal('1.23') # } # добавляем свой кастомный сериализатор json.dumps(obj.model_dump(), cls=MySerializer) # { # 'id': '4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1', # 'date': '2025-12-12T12:12:12.111111', # 'value': '1.23' # } В данном случае класс MySerializer обрабатывает datetime, UUID и Decimal. Например так: class MySerializer(json.JSONEncoder): def default(self, o): if isinstance(o, Decimal): return str(o) elif isinstance(o, datetime): return o.isoformat() elif isinstance(o, UUID): return str(o) return super().default(o) Специально для тех, кто всё еще так делает - в этом нет необходимости! Pydantic может это сделать сам, просто нужно добавить параметр mode="json". json.dumps(obj.model_dump(mode="json")) # { # 'id': '4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1', # 'date': '2012-12-12T12:12:12.111111', # 'value': '1.23' # } #pydantic#libs

Резултати

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

Пребарај: #stablecoin

当前筛选 #stablecoin清除筛选
CryptoBull_360™

@cryptobull_360 · Post #49130 · 08.04.2026 г., 14:34

💼 Ethereum Foundation to Convert 5,000 ETH Into Stablecoins The Ethereum Foundation announced via X that it will convert 5,000 ETH into stablecoins using CoW DAO’s TWAP feature to fund R&D, grants, and donations. #stablecoinlink

Hashtags

PaxosGlobal

@PaxosGlobal · Post #8 · 04.04.2019 г., 19:47

Paxos Trust is committed to bringing trust and transparency to the digital asset industry. See all of our monthly attestation reports on $PAX by top auditing firm @Withum. As of March 29, total funds of $118,048,457.66 USD and $PAX #stablecoin match exactly https://www.paxos.com/attestation/

Hashtags

Tether

@tether · Post #46 · 04.08.2021 г., 09:18

Stablecoin yields, mainly generated via lending and borrowing activities, have become a topic of interest among traders, and you should join the conversation! Learn more about #tether tokens and other #stablecoin yields⬇️ https://tether.to/where-do-stablecoin-yields-come-from/

TokenPocket

@tokenpocket_channel · Post #1662 · 06.08.2025 г., 07:42

📝 TokenPocket Monthly Report — July 2025 → https://medium.com/@tokenpocket-gm/tokenpocket-monthly-report-july-2025-90a2476b9237 In July, TokenPocket focused on technological innovation and community activities, launching a series of measures centered around multi-chain functionality upgrades and enhanced security protection. 🎯#StablecoinWallet TokenPocket provides the Gas Station service for the TRON network and the zero-fee USDT/USD1 transfer service on BNBCHAIN. This significantly reduces your #stablecoin transaction fee costs and enhances your trading experience. 🎯 LetsBONK on TokenPocket Track all the trending LetsBonk tokens effortlessly, all in one place. 🎯 Supported XRP, HashKey Chain, and ink networks, making TokenPocket your first choice for a multi-chain wallet. 📍 All In One, All in TokenPocket 🔗https://tp.xyz

QIN2DIM's Tech Channel

@qin2dim · Post #1229 · 16.07.2025 г., 12:27

#blog#stablecoin ┃ 透视稳定币:从 BIS 报告看未来货币的铁律 稳定币的浪潮已非预言,而是现实。拨开市场的喧嚣与迷雾,我们看到的不只是风险,更是一场关乎未来货币秩序的全球性大混战。 原文链接:Blog 频道:@QIN2DIM's Tech Channel

Crypto Media

@crypto_medias · Post #1864 · 19.07.2025 г., 18:58

🔥🤩🤞 🗣#USDC Circle CEO says stablecoins now let people transact like messaging on WhatsApp, and major institutions agree stablecoins are the future of global money movement. #stablecoin

TONlines – News

@tonlines · Post #6805 · 17.04.2025 г., 08:31

⚡️The Daily TON: Ethena Brings Innovative Stablecoin to the Ecosystem #Ethena#stablecoin#TON The Ethena project plans to enter the TON ecosystem, introducing its unique stablecoin USDe. Unlike traditional stablecoins, USDe uses a hedging strategy to manage volatility, offering users potential yields on their holdings. The project aims to integrate with blockchain ecosystems, including a Telegram mini-app for broader accessibility. Source: link @tonlines

123•••89
ПретходнаСтраница 1 од 9Следна