@doniyorieltss · Post #2131 · 30.08.2024 г., 14:35
When you dream up your perfect life, you think about how you're seen, rather than what your daily tasks include 101 essays that will change the way you think #insights
Hashtags
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
Пребарај: #insights
@doniyorieltss · Post #2131 · 30.08.2024 г., 14:35
When you dream up your perfect life, you think about how you're seen, rather than what your daily tasks include 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2130 · 29.08.2024 г., 14:35
You are more in love with ideas than you are with work and processes required to make them reality 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2126 · 28.08.2024 г., 14:35
If you don't know what to do, you don't know what's wrong. If you don't know what's wrong, it is because some part of you is resisting seeing it 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2125 · 19.08.2024 г., 14:36
Clarity comes from doing, not thinking about doing 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2124 · 18.08.2024 г., 14:35
The best things will not make sense - not initially, at least 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2123 · 17.08.2024 г., 14:35
To fully accept your life - the highs, lows, good, bad - is to be grateful for all of it, and to know that the "good" teaches you well, but the "bad" teaches you better 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2122 · 16.08.2024 г., 14:34
Sometimes the way light enters us is, in fact, through the wound 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2121 · 15.08.2024 г., 14:34
What you learn and who you become is more important than how you temporarily feel 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2120 · 14.08.2024 г., 14:34
The people who were able to hurt you most were also the people whom you were able to love the most 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2118 · 13.08.2024 г., 14:36
The road to hell was paved with good intentions 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2117 · 12.08.2024 г., 14:44
Defensiveness is born of fear; assertiveness is born of confidence 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2116 · 11.08.2024 г., 14:34
Life isn't about being "certain", it's about trying anyway 101 essays that will change the way you think #insights
Hashtags