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

Резултати

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

Пребарај: #w

当前筛选 #w清除筛选
Coin Sonar

@CoinSonar · Post #244142 · 18.04.2026 г., 11:17

#W | Volume spike (USDT PAIR) 135 times the average volume 102.42K USDT traded in 1 min └Buying vol: 80.22K USDT 🟢 Boost score: 5/10 24h Vol: 1.09M USDT (Binance) Price: 0.0126 (-2.4% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243661 · 17.04.2026 г., 13:15

#W | Volume spike (USDT PAIR) 156 times the average volume 118.47K USDT traded in 1 min └Buying vol: 72.03K USDT 🟢 Boost score: 5/10 24h Vol: 1.09M USDT (Binance) Price: 0.0132 (-2.4% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243523 · 17.04.2026 г., 08:00

#W | Volume spike (USDT PAIR) 147 times the average volume 111.58K USDT traded in 1 min └Selling vol: 80.26K USDT 🔴 Boost score: 1/10 24h Vol: 1.09M USDT (Binance) Price: 0.0131 (-2.4% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243406 · 17.04.2026 г., 01:41

#W | Volume spike (USDT PAIR) 11 times the average volume 131.88K USDT traded in 15 min └Selling vol: 84.17K USDT 🔴 Boost score: 1/10 24h Vol: 1.09M USDT (Binance) Price: 0.0130 (-2.4% in 24h)

Hashtags

American Crypto©

@americancryptotrading · Post #27493 · 06.01.2026 г., 10:41

🇺🇸#W/USDT is testing the lowerboundary of the descendingchannel pattern on the 3D chart💁‍♂️ Expecting a bounce soon✈️ American Crypto©

Hashtags

American Crypto©

@americancryptotrading · Post #27393 · 01.10.2025 г., 09:02

🇺🇸#W/USDT is retesting the descendingresistance pattern on the 3D chart🔍 Looking for a move up🐃 American Crypto©

Hashtags

American Crypto©

@americancryptotrading · Post #27330 · 02.08.2025 г., 09:45

🇺🇸#W/USDT is currently trading above the descendingresistance line on the daily chart🧐 A pump is expected✈️ American Crypto©

Hashtags

Crypto Angels

@cryptoangelsusa · Post #21584 · 18.09.2025 г., 21:28

Binance Futures, Bitget Futures, ByBit USDT, KuCoin Futures, OKX Futures #W/USDT All take-profit targets achieved 😎 Profit: 79.1316% 📈 Period: 9 Hours 45 Minutes ⏰

Hashtags

Crypto Angels

@cryptoangelsusa · Post #21583 · 18.09.2025 г., 12:50

Binance Futures, Bitget Futures, ByBit USDT, KuCoin Futures, OKX Futures #W/USDT Take-Profit target 1 ✅ Profit: 29.4244% 📈 Period: 1 Hours 2 Minutes ⏰

Hashtags

123•••89
ПретходнаСтраница 1 од 9Следна