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 слични објави

Пребарај: #bse

当前筛选 #bse清除筛选
PRICE ACTION EXPERT

@priceactionexpert · Post #7739 · 10.09.2024 г., 09:46

https://x.com/priceactiongann/status/1833441709151096889 #NIFTY#GIFTNIFTY 🔍 Gift Nifty at 24,780 - This level is critical! 📷 Why This Matters: The current upward trend aligns with the significant cycle of Sensex at 81,170. (both met exact same Time and Price) 📷Potential Scenarios: Nifty might test Bounce 24,676 or could see a breakout. Alternatively, it might ignore this level and head towards a downside trend. It's in between the zones can range and then follow later! #sensex#nifty#stocks#BSE#StockMarket https://x.com/priceactiongann/status/1833441709151096889

PRICE ACTION EXPERT

@priceactionexpert · Post #7729 · 06.09.2024 г., 08:12

https://x.com/priceactiongann/status/1831968467601527029 #nifty#sensex Sensex 82576 to 81198 done! This is the First Time posting Sensex All Time High Almost near price, Reaches downside and decide here! Nifty50 Top Price so far from 25300 it dropped "1440" Price Low to High "Exact Points"! Bank Nifty Reaches near 51860 Encoded and Dropped from there! All Cycle is Interconnected, Cycles Rhymes can be seen Obviously once price cycle is reached! will post calculations later once 144 likes reaches in this post! #stocks#stockmarket#nifty50#MarketCrash#banknifty#BSE#NSE https://x.com/priceactiongann/status/1831968467601527029

PRICE ACTION EXPERT

@priceactionexpert · Post #7751 · 14.09.2024 г., 10:38

https://www.youtube.com/watch?v=qjsgh64_1To https://x.com/priceactiongann/status/1834904231515459918 #nifty#nifty50 New Video! 🔹Trading Insights for NIFTY 50, Sensex, and Bank Nifty 🔹In this video, Explained the NIFTY 50 Jackpot Trade giving you a comprehensive view of where the market might be heading. 📷 Don't forget to LIKE, SHARE, and SUBSCRIBE for more market insights! #stocks#stockmarket#trading#priceaction#sensex#banknifty#jackpot#nse#bse https://x.com/priceactiongann/status/1834904231515459918