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

Резултати

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

Пребарај: #lummis

当前筛选 #lummis清除筛选
Venture Village Wall 🦄

@venturevillagewall · Post #3961 · 23.01.2025 г., 16:00

Senator Lummis Chairs Digital Assets Committee Senator Cynthia Lummis has been elected as chair of the Senate Banking Subcommittee on Digital Assets. Known for her strong support of #Bitcoin and blockchain technology, she aims to urgently pass laws creating a Strategic Bitcoin Reserve. This elevation marks a significant event for the crypto industry. The Senate Banking Committee is set to officially vote on this appointment tomorrow at 10 AM EST. Links: - Leviathan News - Watcher Guru - Fox Business #Lummis#DigitalAssets#Crypto#Bitcoin#Blockchain#USSenate#BitcoinReserve#VC#Regulation#Finance#Investment#Economy#Innovation

Venture Village Wall 🦄

@venturevillagewall · Post #4327 · 07.03.2025 г., 04:00

Trump Announces U.S. Bitcoin Strategic Reserve 🚨 President Trump signs an Executive Order to create a Strategic Reserve of Bitcoin. Key points: - Executive action allows acquisition of Bitcoin only through confiscated funds. - Full audit of digital assets held by the government mandated. - Coinbase CEO believes G20 nations will follow U.S. leadership in Bitcoin reserves. - Senator Lummis claims U.S. is becoming the Bitcoin capital of the world. Market impact: $225M liquidated in crypto markets shortly after the news. For more details, see the post here: Leviathan News #Bitcoin#Crypto#VC#US#Trump#Lummis#ExecutiveOrder#Reserve#Blockchain#DigitalAssets#CryptoMarket#G20#Coinbase#Regulation#XRP#ADA#ETH#SOL

Venture Village Wall 🦄

@venturevillagewall · Post #3834 · 10.01.2025 г., 01:00

Coinbase Subpoenaed in Polymarket Inquiry Coinbase confirms it has received a subpoena related to the CFTC's investigation into Polymarket. This development raises questions about regulatory scrutiny in the crypto space. *Senator Cynthia Lummis is expected to head a new Senate committee focused on digital assets, which may influence future legislation.* Read more: Velo News #Coinbase#CFTC#Polymarket#Crypto#Senate#DigitalAssets#Regulation#Blockchain#USPolitics#Lummis#Finance#Investing#Market#Law#Technology#Innovation#Compliance#Research#Velo#News

Venture Village Wall 🦄

@venturevillagewall · Post #4061 · 03.02.2025 г., 22:00

Major Bitcoin Moves & New Token Launch 🔹 Bitcoin reaches $101,898. 🔹 Leviathan’s Legal-Squid-in-Residence launches new token on flaunch.gg. 5% of the supply locked with GAIB BORG. 🔹 150,000,000 #USDT transferred to unknown wallet (worth $150,040,874). 🔹 59,000,000 #USDC minted at USDC Treasury. 🔹 Senator Lummis calls President Trump’s sovereign wealth fund order a '*₿ig deal*'. 🔹 Trump reportedly purchases 86,000 ETH for $220 million amidst market fears. Stay updated for more! #Bitcoin#USDT#USDC#Crypto#Finance#WealthFund#Lummis#Trump#ETH#TokenLaunch#GAIBBORG#Investment#WhaleAlert#MarketNews#SovereignWealth#Ethereum#Flaunch#Leviathan#TraderAlert#CryptoMarket