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 слични објави

Пребарај: #buidler

当前筛选 #buidler清除筛选
Arweave Announcements

@arweaveannouncements · Post #124 · 26.09.2019 г., 14:55

Our latest community spotlight is here! 🛠️🚀 This week we meet Almaz: Chemical engineering student, all-round creative thinker, and #buidler of WeaveWatcher and Arweave.Design 📢😎http://bit.ly/MeetAlmaz

Hashtags

Buidlpad

@native_fi · Post #136 · 16.12.2025 г., 06:29

Introducing the Buidl Contributor role 🤍 This role is for community members who actively help Buidlpad grow through community participation, support, boosts and engagement. Contribute consistently to unlock future role-based rewards! Join the Buidlpad Discord Community → http://discord.gg/buidlpad ▫️What is the Buidl Contributor Role? Buidl Contributor is the next role in our series of Community Role Launches This role recognizes users who actively support the Buidlpad community by contributing time, effort & presence. It focuses on community participation & engagement, not capital. ▫️How to Get the Buidl Contributor Role? 🔹 Join the Buidlpad Discord: http://discord.gg/buidlpad 🔹 Verify yourself in #buidler-role (skip if you've already done this) 🔹 Choose the contributor role in #role-verify 🔹 Engage the Server Booster Role by Boosting the Server 🔹 Start contributing! The alpha is to stay active in community channels and participate consistently in community activities Roles are reviewed and rewards are calculated on consistent contributions.

Buidlpad

@native_fi · Post #135 · 12.12.2025 г., 11:34

How to verify and receive your roles 🔹 Log in at http://buidlpad.com 🔹 Link your Discord under your Profile 🔹 Join the Buidlpad Discord: http://discord.gg/buidlpad 🔹 Verify yourself in #buidler-verify 🔹 Select your region in #select-region That’s it. Your verification is complete 💙 Or follow this tutorial ⬇️ Or DM : @gBuidl