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

Резултати

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

Пребарај: #waxp

当前筛选 #waxp清除筛选
Pro Analysis

@proanalysistrader · Post #28454 · 06.02.2025 г., 13:01

#WAXP/USDT analysis : #WAXP is in a downtrend, trading below the 200 EMA. It has broken below a key support level, indicating continued bearish momentum and the potential to test lower price levels. TF : 30min Entry : $0.03120 Target : $0.02780 SL : $0.03245

Hashtags

Pro Analysis

@proanalysistrader · Post #28084 · 28.10.2024 г., 16:49

#WAXP/USDT analysis : #WAXP is currently in a downtrend, trading below the 200 EMA. The price is forming lower lows (LLs) and lower highs (LHs) while encountering resistance from the trendline. It is likely that the price will continue this structure and test lower levels. TF : 1h Entry : $0.03112 Target : $0.02897 SL : $0.03252

Hashtags

American Crypto©

@americancryptotrading · Post #27607 · 02.05.2026 г., 09:58

🇺🇸#WAXP/USDT is trading near the lowerborder of the descendingchannel pattern on the weekly timeframe🧐 Looking for a leg upward🚀 American Crypto©

Hashtags

American Crypto©

@americancryptotrading · Post #27153 · 13.02.2025 г., 13:03

🇺🇸#WAXP/USDT is facing the lowerborder of the fallingwedge on the weekly chart👀 Bullish priority if we bounce🐃 American Crypto©

Hashtags

American Crypto©

@americancryptotrading · Post #27084 · 15.12.2024 г., 14:48

🇺🇸#WAXP/USDT retested a descendingresistance on the weekly timeframe👀 Looking for a move up on a bounce📈 American Crypto©

Hashtags

American Crypto©

@americancryptotrading · Post #27078 · 09.12.2024 г., 16:44

🇺🇸#WAXP/USDT is testing the upper border of a falling wedge on the 1W timeframe👨‍💻 Bullish priority if we break out🐃 American Crypto©

Hashtags

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