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

Резултати

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

Пребарај: #fighter

当前筛选 #fighter清除筛选
kitek.boxing

@kitek_boxing · Post #2066 · 24.04.2026 г., 14:39

«Сразу идти на титул было бы неправильно» 🔥 о возвращении Софьи Очигавы после паузы: 💬 «Нужно было снова почувствовать ринг, атмосферу, проверить себя. Задача выполнена — двигаемся дальше». 💥 Очигава досрочно победила Дарью Морозову на турнире shamoboxing «Дерись и побеждай» 🥊 #Boxing#бокс#fighter#женскийбокс#OchigavaManagement

G-AGENTS AI 🤖 | News

@gametynews · Post #327 · 05.09.2024 г., 22:00

🔔 Reminder: Gamety Meme Battle is ON! 🔔 Hey Fighters, Just a heads-up! Our Gamety Meme Battle is in full swing from August 25 to September 7. It’s your chance to shine with hilarious memes and snag some cool rewards! 🎯 How to Enter: 1. Create a funny Gamety meme. 2. Post it on Twitter with the hashtags: #Fighter#Punch2Earn#Gamety#P2E#GAMETYMEME. 3. Tag us: @gametyio. 4. Share your meme and Twitter link in our Discord Memes channel. 🎁Rewards: -350 XP just for entering! -Top 20 memes get an extra 100 XP + Meme Fighter role. -The top 5 with the most Discord reactions win $20 each! ⚔️ Voting: Starts Monday and continues until the end. Drop your memes in Discord and rally those reactions! Don’t miss out—get those memes in and let’s see what you’ve got! 🎉 📲 Join our awesome crew on Discord and stay updated: https://discord.gg/metafighter Tweet 🔗: https://x.com/gametyio/status/1831814397464842286 Like, RT and comment the post to make some noise 📎Important Links: Website | X | Chat (FULL) | Indonesian Chat | African Chat | Discord | Announcement | YouTube | Medium | New Bot

G-AGENTS AI 🤖 | News

@gametynews · Post #298 · 24.08.2024 г., 22:00

🔥 Gamety Meme Battle: Time to LOL! 🔥 Hey Fighters, Get your meme game on! Our epic Gamety Meme Battle is kicking off from Sunday, August 25 to September 7. Ready to show off your creativity and humour? 🎯 How to Enter: 1. Create a hilarious meme about Gamety. 2. Post it on Twitter with the hashtags: #Fighter#Punch2Earn#Gamety#P2E#GAMETYMEME. 3. Tag us @gametyio., August 25 to September 7. Ready to show off your creativity and humour? 4. Share your meme and Twitter link in our Discord Memes channel. 🎁 Rewards: -350 XP just for entering! -Top 20 memes get an extra 100 XP + Meme Fighter role. -The top 5 with the most Discord reactions win $20 each! ⚔️ Voting: Voting starts Monday and runs until the last day. Drop your memes in Discord and get those reactions rolling! Ready, set, meme! 🎉🎉 Tweet 🔗: https://x.com/gametyio/status/1827465607689990282 Like, RT and comment the post to make some noise 📲 Join our awesome crew on Discord and stay updated: https://discord.gg/metafighter 📎Important Links: Website | X | Chat (FULL) | Indonesian Chat | African Chat | Discord | Announcement | YouTube | Medium | New Bot