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

Резултати

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

Пребарај: #pain

当前筛选 #pain清除筛选
电竞交流群 Esports

@hbdj168 · Post #147 · 15.06.2025 г., 17:06

LOL-LTA南部联赛-第二阶段季后赛 #Pain 对战 FURIA (BO5) 2025-06-16 00:00 第二局获胜:Pain 第二局击杀让分:Pain -6.5 第二局击杀大小:大于28.5 第二局比赛时间大小:大于32 第一滴血:FURIA

Hashtags

📱 𝗗𝗡𝗭 𝗧𝗛𝗘𝗠𝗘𝗦 𝗙𝗢𝗥 𝗧𝗘𝗟𝗘𝗚𝗥𝗔𝗠 📱 📢 𝗖𝗵𝗮𝗻𝗻𝗲𝗹: @DNZ_Temas🇧🇷 #Pain#naruto#anime 𝗖𝗼𝗺𝗽𝗮𝘁í𝘃𝗲𝗹 𝗰𝗼𝗺 𝗠𝗗𝗚𝗿𝗮𝗺 𝗖𝗼𝗺𝗽𝗮𝘁𝗶𝗯𝗹𝗲 𝘄𝗶𝘁𝗵 𝗠𝗗𝗚𝗿𝗮𝗺 ================================== ⬇️ ⬇️ ⬇️ ⬇️ ⬇️ ⬇️ FOR ANDROID ONLY ➡️𝐀𝐏𝐏𝐋𝐘 𝐓𝐇𝐄𝐌𝐄 📱 ( Telegram ) ➡️𝗕‌𝐀𝐂𝐊𝐆𝐑𝐎𝐔𝐍𝐃 🖼𝐖𝐀𝐋𝐋𝐏𝐀𝐏𝐄𝐑 ╚════ ღ 𝔻ℕℤ 𝕋𝔼𝕄𝔸𝕊 ღ ══╝ ⬇️ TELEGRAM X ⬇️

Interesting Planet 🌍

@interesting_planet_facts · Post #404 · 24.07.2025 г., 13:22

🌎 Tarantula hawk wasps have one of the most painful stings in the insect world! Their vivid orange wings warn predators, while their sting paralyzes spiders for their larvae to eat. ✨ #insects⚡#pain⚡#adaptation 👉subscribe Interesting Planet

Pensive|

@PensivePost · Post #5776 · 28.05.2022 г., 16:45

A LETTER FOR YOU A letter which describe how much u r to me A letter saying that I miss u in every conversation I have someone. Thinking about how would have react, say. How we have laugh A letter saying that how I plan to go on every vacations with u A letter saying that whenever we fight.. How I check whether u r online or not every now and then A letter confessing you that I imagine u in every love story I see I read.. N u r shaping in my romantic fanasty A letter confessing u that u r not much to me.. U r whole of me.... U r the one whom I want everyday A letter from my heart saying ....u r my everything and nothing together #review#pain#PSP

Pensive|

@PensivePost · Post #5223 · 24.05.2021 г., 14:33

A LETTER FOR YOU A letter which describe how much u r to me A letter saying that I miss u in every conversation I have someone. Thinking about how would have react, say. How we have laugh A letter saying that how I plan to go on every vacations with u A letter saying that whenever we fight.. How I check whether u r online or not every now and then A letter confessing you that I imagine u in every love story I see I read.. N u r shaping in my romantic fanasty A letter confessing u that u r not much to me.. U r whole of me.... U r the one whom I want everyday A letter from my heart saying ....u r my everything and nothing together #review#pain#PSP

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