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

Резултати

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

Пребарај: #loscoin

当前筛选 #loscoin清除筛选
LOS Community

@losgamecoin · Post #83 · 14.06.2025 г., 05:20

🚀#LOScoin is excited to announce that we have successfully completed $2 million in funding! In this round of financing, Solana Foundation led the investment, and CMS Holdings, Impossible Finance, Yield Guild Games (YGG) and Monad and other well-known institutions followed the investment, helping LOScoin build a more powerful and interactive Web3 gaming social ecosystem 2.0 $LOS This round of financing also received strong support from @AI_mint__ CEO Keone Hon, further confirming our innovation and leadership in the Web3 gaming field.

Hashtags

LOS Community

@losgamecoin · Post #80 · 27.10.2024 г., 16:18

🚀#LOScoin is excited to announce that we have successfully completed $2 million in funding! In this round of financing, Solana Foundation led the investment, and CMS Holdings, Impossible Finance, Yield Guild Games (YGG) and Monad and other well-known institutions followed the investment, helping LOScoin build a more powerful and interactive Web3 gaming social ecosystem 2.0 $LOS This round of financing also received strong support from @AI_mint__ CEO Keone Hon, further confirming our innovation and leadership in the Web3 gaming field. 🚨📌🔗 🤑 🤙 🤙 🤙 🤙 🤙 🤙 🤑 🤑

Hashtags

LOS Community

@losgamecoin · Post #71 · 18.10.2024 г., 05:45

It's time to show the unity and strength of the #LOScoin community Vote for #LOScoin and accomplish great things X: https://x.com/anndylian/status/1847137465762758958

Hashtags

LOS Community

@losgamecoin · Post #69 · 13.10.2024 г., 10:49

Cut the noise. Focus on what you love. Follow #LOScoin $LOS 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 📱https://x.com/losgamecoin/status/1845412082788806783?s=46

Hashtags

LOS Community

@losgamecoin · Post #50 · 06.09.2024 г., 15:04

No bullshit, I just do what I love #LOScoin Fly to the moon 🚀🚀🚀 ❌ ❌ ❌ ❌ ❌ ❌ ❌ ❌ 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️

Hashtags

LOS Community

@losgamecoin · Post #47 · 05.09.2024 г., 10:25

📱👉🎮#LOScoin#LOScoin#LOScoin 🎮👉💵#LOScoin#LOScoin#LOScoin 💵👉⛴#LOScoin#LOScoin#LOScoin ⛴👉🏖 $LOS 🚀 $LOS 🚀 $LOS 🚀 🏖👉🪙 $LOS 🚀 $LOS 🚀 $LOS 🚀 🪙👉🚀 $LOS 🚀 $LOS 🚀 $LOS 🚀 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 ❌ ❌ ❌ ❌ ❌ ❌ ❌ ❌ ❌ ❌

Hashtags

LOS Community

@losgamecoin · Post #36 · 02.09.2024 г., 10:13

🚨 Reminder: Remember to claim your referral income and game rewards every day! 🤙 🧐 😎 If you miss it, they will be burned after 24 hours 🤑 🤑 🤑 #LOScoin 🤑 🖤https://x.com/losgamecoin/status/1830543753670713509?s=46

Hashtags

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