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

Резултати

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

Пребарај: #mytier

当前筛选 #mytier清除筛选
Crypto Fight || News 🚀

@cryptofightnews · Post #3042 · 30.10.2025 г., 03:20

⚪️ ⚪️🔤 🔤 🔤 🔤 Mytier 2nd AMA on Binance Live 🚀 We’re going live on Binance Live again! 📅 October 31, 2025 (Fri) | ⏰ Time 12:00 PM UTC Join Mytier’s second official AMA as we share why we’re prioritizing listing agreements and how this connects to our long term ecosystem vision. 🔥 🥰 Guest Speaker: Michael Theodore, Project Director of Mytier ✔️This session will focus on Mytier’s overall direction, key progress, and the vision shaping our next steps. It’s an opportunity to share where Mytier is heading and how our long-term goals are taking shape in real time. 🌟 ✔️ What’s Next on Mytier / October Updates 1️⃣ Event Tab Classification (App & Web) Events will now be categorized as “Ongoing” or “Ended” for easier navigation. 2️⃣ Badge System (App & Web) New verification, tier, level, and ambassador badges will visually represent engagement and contribution. 3️⃣ Unified Mytier Page (App & Web Integration) You’ll now be able to access event pages directly through auto-login from the app, with no separate login required. ✅ These updates are scheduled to roll out in late October. 🔵 Stay tuned through our Official Telegram Channel: https://t.me/mytier_project 😀 Ask your best question during the AMA — selected participants will win $100 USDT! 🔘 Join us live: https://www.binance.com/live/video?roomId=2282166 😀 This AMA isn’t about future plans, it’s about the strategic direction that’s already in motion. #Mytier#AMA#BinanceLive#AI#Web3#Crypto#Listing#Ecosystem#Updates#Tokenomics#Roadmap#Telegram