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

Резултати

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

Пребарај: #zkevm

当前筛选 #zkevm清除筛选
Algebra DEX Engine

@cryptoalgebra · Post #2098 · 14.11.2024 г., 15:25

Algebra is powering some of the top DEXes by TVL across various EVM chains! Here’s the latest: ⚔️ Camelot DEX: #2 on Arbitrum & #1 across Orbit chains 💨 QuickSwap: #1 on Polygon #zkEVM, #2 on Polygon & XLayer ⚖️ THENA: #2 on BNB chain 🌿 Hercules DEX: #1 on Metis L2 🔪 Bladeswap: #3 on Blast 👾 Glyph Exchange: #2 on Core DAO 🖤 Lynex: #2 on Linea 🍣 Kim Protocol: #1 on Mode Network Algebra continues to conquer DeFi! Check it out: defillama.com/chains

Hashtags

Nomis | Onchain Reputation Protocol

@nomis_protocol · Post #481 · 17.10.2024 г., 17:59

Hey fam!💜Have you checked out Pentagon Testnet Score in the rewards hub? Well, you should! Mint your Score and grab a slice of $PEN -->nomis.cc/pentagon-testnet🪂 Pentagon Games is #zkEVM that powers the next generation interactive game & social experiences. We're teaming up to drop rewards for top scorers during the Pentagon Games Testnet 👾🎮 👑 Higher Score = bigger shot at the Royal Badge + even more $PEN🪂 New here? No sweat, plenty of time to grind it out and level up! 💠Nomis tApp | X | Discord | YouTube | Check Scores⚖️

Hashtags

Crypto M - Crypto News

@CryptoM · Post #65448 · 13.04.2026 г., 09:14

🚀 Symbiosis to Cease Support for Polygon zkEVM Network Cross-chain protocol Symbiosis will discontinue support for cross-chain swaps on the Polygon zkEVM network starting May 16. According to Foresight News, users holding liquidity on this network are advised to withdraw their funds before the network is fully shut down. The liquidity withdrawal feature will remain available until the network is completely disabled. #Symbiosis#Polygon#zkEVM#CrossChain#Liquidity#ForesightNews#NetworkShutdown