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

Резултати

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

Пребарај: #modern

当前筛选 #modern清除筛选
Pensive|

@PensivePost · Post #5398 · 16.09.2021 г., 18:41

Withering soul Little by little she dies everyday Demons everywhere she's losing her sight Pain has reached her bones Breathing freely is a luxury now she resists but she knows she is a withering soul she is screaming but can anyone hear her? The world's gone deaf All eyes are shut, no one sees what's right in front of them She is not the only one She won't be the last one Time is a flat circle, Nietzsche said Once upon a time humans came into this world, cursed to repeat their doings time and time and time again Fading souls don't await the eternal rest There is no rest, there is no end to their agony Trapped they are, born prisoners Freedom was never a dream only an illusion #review #modern#poetry

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6611 · 19.03.2020 г., 03:01

🌈Modern Mansion 😍 listed at $7,995,000 #Luxury#Modern#Mansion 📷 Ig @hiltonhyland 💁Via @TheLuxuryClub ✔️🔜@R_Group_Official ━━━━━━━━━━━━━━━━━

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6549 · 06.02.2020 г., 03:27

🌈Bayfront Estate Listed at $16,900,000 #Luxury#Modern#Mansion 📷IG@MatthewDugow 💁Via @TheLuxuryClub ✔️🔜@R_Group_Official ━━━━━━━━━━━━━━━━━

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6516 · 29.01.2020 г., 03:21

🌈Modern Mansion 😍 Goals #Luxury#Modern#Mansion 📷IG@coldwellbanker_beverlyhills 💁Via @TheLuxuryClub ✔️🔜@R_Group_Official ━━━━━━━━━━━━━━━━━

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6448 · 25.11.2019 г., 03:20

🌈Modern 😍 Mansion #Luxury#Modern#Mansion 📷udesignmarbella/ 💁Via @TheLuxuryClub ✔️🔜@R_Group_Official ━━━━━━━━━━━━━━━━━

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6444 · 21.11.2019 г., 08:33

🌈SOLD❤️ for $10,000,000. (CAN) - Located in West Vancouver Canada. #Luxury#Modern#Mansion 📷Listed By malcolmhasman 💁Via @TheLuxuryClub ✔️🔜@R_Group_Official ━━━━━━━━━━━━━━━━━

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6442 · 19.11.2019 г., 02:42

🌈Contemporary style Modern Mansion #Luxury#Modern#Mansion 📷udesignmarbella/ 💁Via @TheLuxuryClub ✔️🔜@R_Group_Official ━━━━━━━━━━━━━━━━━

Luxury Lifestyle

@luxury_lifestyle_billionaire_hub · Post #6431 · 15.11.2019 г., 02:35

🌈Love this new 😍 modern mansion design at Cala Vinyas, Mallorca. #Luxury#Modern#Mansion 💁Via @TheLuxuryClub ✔️🔜@R_Group_Official ━━━━━━━━━━━━━━━━━

ПретходнаСтраница 1 од 3Следна