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 слични објави

Пребарај: #dvm

当前筛选 #dvm清除筛选
Vet_opportunities

@vet_opportunities · Post #475 · 04.05.2026 г., 13:01

Oromia Agriculture Bureau Positions: (TRANSFER) #DVM: 1 #VLT: 1 Requirements: DVM: 8 years of experience VLT: 2 years of experience Deadline: 28/08/2018 Application: Submit your application to the Oromia Agriculture Bureau Human Resources Office in Addis Ababa or Borana. Don’t forget to share 🙌 👇👇 @vet_opportunities @vet_opportunities @vet_opportunities @vet_opportunities

Hashtags

VET's HUB ®

@vets_hub · Post #30111 · 02.11.2025 г., 03:45

BOOK 𝗦𝗺𝗮𝗹𝗹 𝗔𝗻𝗶𝗺𝗮𝗹 𝗜𝗻𝘁𝗲𝗿𝗻𝗮𝗹 𝗠𝗲𝗱𝗶𝗰𝗶𝗻𝗲 🩺🐈🐕 ✒️ 🔸Richard W. Nelson 🔸C. Guillermo Couto With hundreds of images, step-by-step procedures, and a practical clinical emphasis, Small Animal Internal Medicine, 6th Edition offers the foundation and tools you need to properly recognize, diagnose, and treat small animals with common internal conditions. 📚Elsevier 📖 1608 Pages - 𝗣𝗗𝗙 #internalmedicine#smallanimals#pets#dogs#cats#veterinarymedicine#dvm https://t.me/vets_hub

VET's HUB ®

@vets_hub · Post #30255 · 07.12.2025 г., 03:32

NEWS 🔻𝗪𝗲𝗶𝗴𝗵𝘁 𝗹𝗼𝘀𝘀 𝗱𝗿𝘂𝗴𝘀 𝗳𝗼𝗿 𝗰𝗮𝘁𝘀? 𝗖𝗼𝗺𝗽𝗮𝗻𝘆 𝗹𝗮𝘂𝗻𝗰𝗵𝗲𝘀 𝗰𝗹𝗶𝗻𝗶𝗰𝗮𝗹 𝘁𝗿𝗶𝗮𝗹 𝗼𝗳 𝗚𝗟𝗣-𝟭 𝗶𝗺𝗽𝗹𝗮𝗻𝘁𝘀 𝗶𝗻 𝗰𝗮𝘁𝘀 #Okava_Pharmaceuticals, a San Francisco based company, plans to introduce on Tuesday a new #GLP_1 clinical weight loss study for cats. #MEOW_1, as the study is called, will look to use #OKV_119, a miniature implant, in cats which will deliver the GLP-1, continuously for up to six months. According to #Okava, MEOW-1 is the first-ever weight loss trial using this approach on household pets. Klotsman said the goal would be to file for #FDA approval for the product between 2027 and 2028, and the target is for the product to cost owners an out-of-pocket payment of around $100 per month. Read the full story 👇 https://abcnews.go.com/GMA/Wellness/weight-loss-drugs-cats-company-launches-clinical-trial/story?id=128054236 #feline#cats#pets#petobesity#petcare#okavapharmaceuticals#sanfrancisco#vets#petowners#veterinarians#dvm