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

Пребарај: #dlt

当前筛选 #dlt清除筛选

🚨Delta this is an ALPHA Guys. Came across this project, looking very bullish and I would ape a bag due to the utilities on offer. Market is rough, and this one stands out. Take a look at $DLT Delta #DLT, a US-based project headquartered and registered as a taxpayer in Chicago, Illinois, is a pioneer in Layer 3 development with a huge future. It's not just a push; it's a holding company project with advanced development. Progressive marketing will begin with at least 100 Kols (FROM TODAY) 🛡- Supply of only 40 🛡- 0% tax rate 🛡- The team has no tokens 🛡- Liquidity locked 🛡- Future burn of 50% of the total supply. 🛡- Twitter (X) Gold verification (Doxxed) CA. 0x780b8bfe62a2De66a0Eea806BeeE15cB86E2EA70 📉Chart: https://www.dexview.com/bsc/0x4106993E91bc2ABEaf40F56cf3B6a49b2FB194B8 📈Buy here: https://pancakeswap.finance/swap?chain=bsc&inputCurrency=0x55d398326f99059fF775485246999027B3197955&outputCurrency=0x4106993E91bc2ABEaf40F56cf3B6a49b2FB194B8&chainOut=bsc ⭐️ ⭐️ ⭐️ Website | Whitepaper | Telegram | X | Audit | Token snifer | Docs Company Register EEUU |

Hashtags

Venture Village Wall 🦄

@venturevillagewall · Post #4254 · 26.02.2025 г., 19:00

Gotbit Founder Extradited to Face Charges The founder of cryptocurrency financial services firm Gotbit has been extradited to the U.S. to face charges of market manipulation and conspiracy to commit fraud. More details available in the official announcement from the Department of Justice here. #Crypto#Gotbit#Fraud#MarketManipulation#SEC#Bitcoin#DeFi#NFT#Coinbase#Phantom#SimpleHash#MORPHO#Ethereum#Binance#WhaleAlert#Regulation#Justice#ICO#DLT#AI

Elf Crypto VIP

@elfcryptovip · Post #12659 · 11.05.2026 г., 10:34

📍 List of abbreviations commonly used in cryptocurrency trading: #ALTCOIN = Alternate cryptocurrency except bitcoin #SHITCOIN = A coin with no potential value or use #BEAR | #BEARISH = Negative price movement #BULL | #BULLISH = Positive price movement #LONG = Margin buy position #SHORT = Margin sell position #BTFD = Buy The Fucking Dip #DILDO = Long green or red candles 😆 #DYOR = Do Your Own Research #FA = Fundamental Analysis #TA = Technical Analysis #FOMO = Fear Of Missing Out #JOMO = Joy Of Missing Out #FUD = Fear Uncertainty & Doubt #HODL = Hold a position #MCAP = Market Capitalization #MOON = Continuous upward movement of price #OTC = Over The Counter #PUMP = Upward price movement #DUMP = To sell off a coin #REKT = When you have a bad loss #WHALE = Very wealthy trader/Market mover #AMA = Ask me anything #ATH = All Time High #ATL = All Time Low #DLT = Distributed ledger technology #IMO = In My Opinion #LAMBO = Lambo is symbol that becomes an elusive goal for most investors #NOOB = A person who is inexperienced #SAFU = Secure Asset Funds for Users #SHILL = Holder of altcoin who just wants to promote it for his own benefit ✅@ElfCryptoVIP