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

Резултати

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

Пребарај: #checkin

当前筛选 #checkin清除筛选
Airdropp.io

@airdropp_io · Post #464 · 29.01.2024 г., 21:16

🔥 Playbux Airdrop 🔹10 Million PBUX Token and 100,000 USDT Pool 🔹Playbux is in the Binance investment program 👉https://www.playbux.co/pre-listing-quest/?ref=Bso20iOZz00 1️⃣ Click on the link and log in directly with Gmail and connect the wallet. 2️⃣ Enter the tasks and do twitter follow, retweet tasks. Make a claim after the tasks are over. 3️⃣ You can also get points for daily check-in. #playbux#airdrop#binance#pbux#checkin

Go! Announcements

@gorwachain_announcements · Post #518 · 31.08.2024 г., 12:40

🚀 Time to Check In, Go! SmartChain AI Community! Check in now if you're yet to👇 🔗https://t.me/thegoprojectbot?start=twitter Here's an another opportunity to increase your daily dose of engagement and rewards! 🎮💰 And once you're in 1. Click "Open App" to get started 2. Tap the Go! token to collect rewards 3. Complete your daily tasks and quests to earn GoXP Most importantly, Stay active and climb your way to the top. Your participation paves the way for you 💪 #CheckIn#EarnRewards#GoSmartChain#GoTonapp ----------------- Join: 🐣X✉️Chat✉️News🤖Discord Play: 🕹️TON App💻Web App Info: 🖥Newsletter🌐Website🌐Blog

Airdropp.io

@airdropp_io · Post #465 · 29.01.2024 г., 21:17

🔥Redbrick Airdrop I found a fun airdrop. We will play a very short game and collect daily points and airdrops. 💎https://redbrickland.page.link/6ehG 🔸20M$ investment 🔸Partners with Fusionist team 🔸We collect points by logging in daily 🔸Points will turn into $BRICK tokens. 1️⃣ First, we enter the site and connect wallet in polygon network. 👉https://redbrickland.page.link/6ehG Ref code : 6ehG 2️⃣ Then we select the avatar and go to the immigraiton page. 👉https://redbrick.land/web3-portal/immigration 3️⃣ On this page we do twitter etc. tasks and play the ghost killing game for 30 seconds. 4️⃣ Then we come to the daily page and play our daily game. 👉https://redbrick.land/web3-portal/daily #redbrick#airdrop#checkin#BRICK#fusionist#gamefi