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

Резултати

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

Пребарај: #ibit

当前筛选 #ibit清除筛选
Ramadan Crypton

@RamadanCrypton · Post #2673 · 13.01.2025 г., 10:41

Золотым ETF от BlackRock потребовалось 20 лет, чтобы достичь $33 млрд AUM а его BTC-ETF (#IBIT) потребовалось меньше года, чтобы достичь и почти в 2 раза превысить эту отметку ❗️BTC-ETF - cамые быстрорастущие ETF в истории.

Hashtags

Crypto Headlines

@market_headlines · Post #27690 · 13.03.2026 г., 08:12

💎Перелив капитала из Золота в BTC? JPMorgan: C начала войны на Ближнем Востоке – в крупнейшем спотовом ETF на Золото (#GLD) зафиксирован отток капитала в размере около 2,7%, в то время как в крупнейшем спотовом ETF на Биткоин (#IBIT) наблюдается приток в размере 1,5%. Crypto Headlines

Hashtags

PROROCK

@ProRock_Crypto · Post #1689 · 23.03.2024 г., 10:04

BlackRock выкупил все BTC, проданные Grayscale с момента запуска BTC-ETF Приток BlackRock (#IBIT) = +$13,1 млрд Отток Grayscale (#GBTC) = -$13,3 млрд Теперь BlackRock владеет более чем 1% от 21 млн BTC

Hashtags

SIGNAL

@finsignal · Post #3447 · 05.08.2024 г., 19:38

⚡️ .The American stock market lost almost 2 trillion dollars just 15 minutes after the opening of trading There is a major collapse in all global stock markets, what happened: • It all started with Japan: the Nikkei 225 stock index (a key indicator that includes shares of 225 of Japan's largest companies) collapsed by 12.4%, setting a record since 1987 — all due to the deterioration of economic data in the United States, which made investors fear a recession in the country's economy • The Istanbul Stock Exchange announced the termination of trading after the decline of the main Borsa Istanbul 100 index (BIST 100) by 6.72% • South Korea's Kospi index is down 8.1%, China's Shanghai Composite index is down 0.9%, Hong Kong's Hang Seng is losing 1.8%, and Australia's S&P/ASX 200 is down 3.5% • The Bitcoin exchange rate drops below $50,000, losing almost 20% of its value in 2 days • The Ether rate sank even more — a decrease of more than 20% per day • The American stock market loses 1,900,000,000,000 dollars after the opening of trading The trading volume of spot #BTC-#ETF#BlackRock#IBIT in the first hour amounted to $1.45 billion.

Venture Village Wall 🦄

@venturevillagewall · Post #4271 · 28.02.2025 г., 19:00

BlackRock Introduces Bitcoin ETF to Portfolios BlackRock includes Bitcoin in its $150B model portfolios, committing 1-2% to the iShares Bitcoin Trust ETF (IBIT). This strategic allocation opens new demand for financial advisors. Despite recent market fluctuations, this could signal increased institutional interest in Bitcoin. 🔗Read more here #Bitcoin#BlackRock#ETF#IBIT#Finance#Investing#MarketTrends#AI#Crypto#VC #Bitcoin#BlackRock#ETF#IBIT#Finance#Investing#MarketTrends#AI#Crypto#VC

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