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

Пребарај: #globaltensions

当前筛选 #globaltensions清除筛选
Crypto M - Crypto News

@CryptoM · Post #64725 · 09.04.2026 г., 16:12

🚀 Mortgage Rates Decline Amid Global Tensions Mortgage rates have decreased for the first time since the onset of the conflict in Iran. Bloomberg posted on X, highlighting the impact of geopolitical tensions on financial markets. The decline in rates comes as investors seek safer assets amid uncertainty. This shift in mortgage rates could influence housing market dynamics, offering potential relief to prospective homebuyers. Analysts suggest that continued geopolitical instability may further affect economic conditions globally. #MortgageRates#GlobalTensions#Geopolitics#FinancialMarkets#HousingMarket#EconomicImpact#Investors#Homebuyers#MarketUncertainty

Crypto M - Crypto News

@CryptoM · Post #64506 · 09.04.2026 г., 04:16

🚀 U.S. Vice President Advocates Peaceful Nationalism in Hungary Amid Global Tensions U.S. Vice President Donald Trump has expressed support for Hungarian Prime Minister Viktor Orban by promoting a vision of peaceful nationalism during his visit to Hungary. Bloomberg posted on X, highlighting the vice president's message, which contrasts sharply with the ongoing conflict in Iran. The advocacy for nationalism comes at a time when global tensions are heightened, raising questions about the feasibility of such an approach in the current geopolitical climate. Critics argue that the situation in Iran undermines the viability of peaceful nationalism, as international conflicts continue to pose significant challenges. The vice president's remarks aim to strengthen diplomatic ties with Hungary, emphasizing shared values and mutual interests. However, the backdrop of the Iran war presents a complex scenario for implementing nationalist policies focused on peace. #US#Hungary#Nationalism#PeacefulNationalism#ViktorOrban#DonaldTrump#Geopolitics#IranConflict#Diplomacy#GlobalTensions