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

Резултати

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

Пребарај: #inspiring

当前筛选 #inspiring清除筛选
Inspiring Images

@InspiringImages · Post #13417 · 19.09.2025 г., 03:41

Really Good One to Watch The daughter takes a step forward with each question. The father stands there. The daughter, who starts off playfully laughing.... is shocked to see her father standing there despite her progress. When the father steps forward for the final question, she hugs him. Father - Daughter ❤️ Children can be raised without knowing hardship. But it is important to make them know that nothing they get comes so easily ❤️ #Inspiring @InspiringThoughts

Hashtags

Inspiring Thoughts

@Inspiringthoughts · Post #10978 · 19.09.2025 г., 03:38

Really Good One to Watch The daughter takes a step forward with each question. The father stands there. The daughter, who starts off playfully laughing.... is shocked to see her father standing there despite her progress. When the father steps forward for the final question, she hugs him. Father - Daughter ❤️ Children can be raised without knowing hardship. But it is important to make them know that nothing they get comes so easily ❤️ #Inspiring @InspiringThoughts

Hashtags

Inspiring Thoughts

@Inspiringthoughts · Post #10694 · 26.03.2025 г., 04:55

Who is your life partner? Listen in quiet times @InspiringThoughts Give 👍 if you like it Let us see how many understand hindi #Inspiring

Hashtags

椒盐豆豉剪报

@mtfront · Post #3744 · 07.01.2025 г., 08:34

今晚和女朋友聊天想出的鸡汤一则:焦虑型的人要担心和伤心的是 O(n),但我这种不焦虑型的发生了再兵来将挡水来土掩的焦虑量只有 O(log n),所以刷过题知道我在说什么的朋友们焦虑的时候可以拿算法试图稍微缓给不焦虑这边加加分! (甚至不知道该打什么 tag,本剪报还没有这么鸡汤过,那就强行 #inspiring 吧)

Hashtags

Most Inspiring

@MostInspiring · Post #2793 · 19.09.2025 г., 03:42

Really Good One to Watch The daughter takes a step forward with each question. The father stands there. The daughter, who starts off playfully laughing.... is shocked to see her father standing there despite her progress. When the father steps forward for the final question, she hugs him. Father - Daughter ❤️ Children can be raised without knowing hardship. But it is important to make them know that nothing they get comes so easily ❤️ #Inspiring @InspiringThoughts

Hashtags

Most Inspiring

@MostInspiring · Post #2792 · 19.09.2025 г., 03:40

Really Good One to Watch The daughter takes a step forward with each question. The father stands there. The daughter, who starts off playfully laughing.... is shocked to see her father standing there despite her progress. When the father steps forward for the final question, she hugs him. Father - Daughter ❤️ Children can be raised without knowing hardship. But it is important to make them know that nothing they get comes so easily ❤️ #Inspiring @InspiringThoughts

Hashtags

Positive News

@positivenewss · Post #526 · 19.09.2025 г., 03:41

Really Good One to Watch The daughter takes a step forward with each question. The father stands there. The daughter, who starts off playfully laughing.... is shocked to see her father standing there despite her progress. When the father steps forward for the final question, she hugs him. Father - Daughter ❤️ Children can be raised without knowing hardship. But it is important to make them know that nothing they get comes so easily ❤️ #Inspiring @InspiringThoughts

Hashtags

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