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

Резултати

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

Пребарај: #thinkbrics

当前筛选 #thinkbrics清除筛选
Grandmasters of Geopolitics

@geo_grandmasters · Post #14843 · 27.02.2026 г., 09:45

🚨 The map of Eurasia is changing, and most media won’t tell you how. ➡️https://youtu.be/AgsStCtRSWE In this powerful interview, Pepe Escobar breaks down the Golden Corridor, the North South Transport Corridor, BRICS expansion, Iran’s strategic rise, and the accelerating shift toward a multipolar world. From the Russia–Iran–India corridor to dedollarization, Chabahar port, the Caspian Sea route, and the geopolitical implications of the so-called 'Trump corridor', this conversation connects the dots shaping geopolitics 2026. Is BRICS ready to defend the Global South? Can Iran become the key node of Eurasia integration? Is the West losing control of the global order? 🎥 Watch the full interview now. 💬 Then tell us in the comments: Is the Golden Corridor the future of global trade? Your analysis matters — let’s discuss below. #ThinkBRICS#PepeEscobar#BRICS#GoldenCorridor#MultipolarWorld

Grandmasters of Geopolitics

@geo_grandmasters · Post #14278 · 18.01.2026 г., 12:41

This Donroe Doctrine is the real talk nobody’s fully unpacking yet. ⚠️https://youtu.be/jDu_M3YUJTM It locks the U.S. into a massive 2026 power struggle, straight facts on the moves reshaping global influence. Watch if you’re serious about what’s coming next. 🔥🌍 #ThinkBRICS#Geopolitics#Trump2026#USPolitics#PowerStruggle#BRICS#ForeignPolicy#WorldOrder#Economy