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

Резултати

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

Пребарај: #taiwancanhelp

当前筛选 #taiwancanhelp清除筛选

https://twitter.com/MOHW_Taiwan/status/1659920096427642880 RT @Taipei_GVA: Welcome to Geneva, Taiwan's Health Minister Dr. Hsueh Jui-yuan and colleagues for the World Health Assembly @WHO. We are excited to engage with friends around the world to discuss how we can work together towards global health goals. #TaiwanCanHelp#HealthForAll#WHA76https://t.co/IxcCI77U2d

https://twitter.com/MOHW_Taiwan/status/1659167647349735424 Taiwan #WorldHealthActionTeam is about to set off!Let’s make the world healthier, and fairer together. Taiwan should not be left behind.Follow us on the Facebook or twitter, and join the hashtag campaign to support Taiwan's participation in the WHA!#TaiwanCanHelp#LetTaiwanInhttps://t.co/n4Q8Z3oFBZ

https://twitter.com/MOHW_Taiwan/status/1643771793629663233 RT @TAIWANmoda: Watch @audreyt's stirring #SummitForDemocracy address. Learn how #TaiwanCanHelp galvanize global action on addressing common challenges, boosting digital resilience & collaborating across ideological divides. Read the #Taiwan🇹🇼-endorsed #S4D Declaration. ▶️https://t.co/2GHlmVOjTXhttps://t.co/227h643EuR

https://twitter.com/MOHW_Taiwan/status/1640152480263831552 RT @TW_Eswatini: Miles of smiles at #Taiwan Medical Mission's outreach clinic in #Lamgabhi. A record number of residents enjoyed 1st-class treatment & leading-edge public health education at the daylong event. #TaiwanCanHelp🇹🇼 true friend & partner in prosperity #Eswatini🇸🇿 achieve #HealthForAll! https://t.co/uzKmnXh9SG

https://twitter.com/MOHW_Taiwan/status/1644232360467247105 Minister Hsueh of MOHW calls out "Health for all in Taiwan" to celebrate #WorldHealthDay. Taiwan’s National Health Insurance program is a great model for #UHC, providing quality health care to all residents at affordable costs. #HealthForAll#TaiwanCanHelp#WHD2023https://t.co/Hwx2XFg4lE