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

Резултати

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

Пребарај: #africacupofnations

当前筛选 #africacupofnations清除筛选
AI match predictions

@ai_match_prediction · Post #11211 · 29.03.2026 г., 05:05

Africa Cup of Nations - Qualification🌍 2026-03-29 13:00 UTC South Sudan vs. Djibouti Predicted outcome: South Sudan❌ Predicted score: 4:0 Actual: Djibouti 0:1 #SouthSudan#Djibouti 2026-03-29 15:00 UTC Lesotho vs. Seychelles Predicted outcome: Draw❌ Predicted score: 0:0 Actual: Lesotho 2:1 #Lesotho#Seychelles #Football#AfricaCupofNations

AI match predictions

@ai_match_prediction · Post #11186 · 26.03.2026 г., 09:05

Africa Cup of Nations - Qualification🌍 2026-03-26 13:00 UTC Djibouti vs. South Sudan Predicted outcome: South Sudan✅ Predicted score: 1:3 Actual: South Sudan 0:4 #Djibouti#SouthSudan 2026-03-26 14:00 UTC Seychelles vs. Lesotho Predicted outcome: Lesotho❌ Predicted score: 0:2 Actual: Draw 0:0 #Seychelles#Lesotho #Football#AfricaCupofNations

AI match predictions

@ai_match_prediction · Post #11195 · 27.03.2026 г., 05:05

Africa Cup of Nations - Qualification🌍 2026-03-27 13:00 UTC Somalia vs. Mauritius Predicted outcome: Mauritius❌ Predicted score: 0:1 Actual: Draw 0:0 #Somalia#Mauritius 2026-03-27 13:00 UTC Chad vs. Burundi Predicted outcome: Draw❌ Predicted score: 1:1 Actual: Burundi 0:4 #Chad#Burundi 2026-03-27 16:00 UTC Sao Tome and Principe vs. Ethiopia Predicted outcome: Ethiopia✅ Predicted score: 1:2 Actual: Ethiopia 0:3 #SaoTomeandPrincipe#Ethiopia #Football#AfricaCupofNations

AI match predictions

@ai_match_prediction · Post #11226 · 31.03.2026 г., 05:05

Africa Cup of Nations - Qualification🌍 2026-03-31 13:00 UTC Ethiopia vs. Sao Tome and Principe Predicted outcome: Ethiopia✅ Predicted score: 3:1 Actual: Ethiopia 1:0 #Ethiopia#SaoTomeandPrincipe 2026-03-31 13:00 UTC Burundi vs. Chad Predicted outcome: Draw❌ Predicted score: 1:1 Actual: Burundi 4:0 #Burundi#Chad 2026-03-31 14:00 UTC Eswatini vs. Eritrea Predicted outcome: Eswatini❌ Predicted score: 2:1 Actual: Eritrea 1:2 #Eswatini#Eritrea 2026-03-31 15:00 UTC Mauritius vs. Somalia Predicted outcome: Somalia❌ Predicted score: 0:1 Actual: Draw 0:0 #Mauritius#Somalia #Football#AfricaCupofNations