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

Резултати

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

Пребарај: #handhygiene

当前筛选 #handhygiene清除筛选

🧼 Keep Your Hands Clean, Stay Healthy! 👐🏽 Washing your hands at the right moments helps prevent the spread of germs and diseases. Don’t forget to wash your hands: ✅ After coughing/sneezing ✅ After touching high-contact surfaces ✅ Before touching a mask ✅ When entering/leaving public spaces ✅ Upon returning home ✅ While caring for the ill Clean hands save lives! 🙌🏽#HandHygiene#StaySafe#NCDCNigeria

Every day, our hands come in contact with germs from surfaces, people, and objects around us. Without proper hygiene, these germs easily enter the body and cause illness. Washing your hands with soap under clean running water for at least 20 seconds especially before eating, after using the toilet, and after touching shared surfaces is one of the most effective ways to prevent infections. ✅Make handwashing a habit, protect yourself and those around you. Clean hands today, healthier tomorrow. #HealthTipMonday#HandHygiene#NCDCNigeria

#HandHygiene with clean, running water is very vital to the prevention of #cholera. Important #handwashing moments⬇️ ✅While caring for the ill ✅After using the toilet ✅Before food preparation ✅Before and after eating ✅After touching high contact surfaces #TakeResponsibility

#HandHygiene with soap under clean, running water is very vital to the prevention of #cholera. Important #handwashing moments⬇️ ✅While caring for the ill ✅After using the toilet ✅Before food preparation ✅Before and after eating ✅After touching high contact surfaces #TakeResponsibility

#HandHygiene with clean, running water is very vital to the prevention of #cholera. Important #handwashing moments⬇️ ✅While caring for the ill ✅After using the toilet ✅Before food preparation ✅Before and after eating ✅After touching high contact surfaces #TakeResponsibility

#FactFriday Clean hands is one of the simplest and most effective ways to stay healthy and protect those around you from diseases👌 Washing your hands with soap under clean running water for just 20 seconds can reduce your risk of infection by up to 50%? 🙌🏽 Make handwashing a daily habit ✅️ #FactFriday#HandHygiene#HealthyLiving#NCDCNigeria

Viral Haemorrhagic Fevers such as #LassaFever spread mainly from person to person through direct & indirect contact. When properly done, #HandHygiene is very important to reduce the risk of healthcare workers' infection. Our #IPC guidelines for #VHFs⬇️ https://ncdc.gov.ng/themes/common/docs/protocols/111_1579986179.pdf