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

Пребарај: #bribery

当前筛选 #bribery清除筛选
BadVolf

@badvolfnews · Post #960 · 27.09.2023 г., 17:56

🔍 Egyptian businessman arrested at NYC airport. Accused of bribing Sen. Bob Menendez. Pleaded not guilty to corruption charges. 💰💼 Meetings arranged between Menendez, wife, Egyptian officials. 🚨 FBI found cash, gold, luxury items at Menendez's home. Menendez denies wrongdoing, refuses to resign. 🤔 Influence over military sales to Egypt during alleged bribery scheme. Accused of pressuring officials and disrupting investigations. 🏦 Co-defendants scheduled for arraignment. Menendez hires Hunter Biden's attorney. Stay tuned for updates! 📰#Corruption#Politics#Bribery#Scandal https://www.foxnews.com/politics/egyptian-businessman-accused-bribing-bob-menendez-arrested-airport-freed-5m-bond Subscribe to @BadVolfNews

International News

@intnewsagency · Post #9401 · 28.04.2026 г., 09:40

Mayor of Ufa Ratmir Mavliev Arrested for Bribery and Land Fraud Ratmir Mavliev, mayor of Ufa since 2022, was detained along with his deputies on corruption charges. In 2025, he orchestrated the illegal transfer and resale of a 1,300 sq. m. plot of the "Raduga" sanatorium for 13 million rubles, demanding bribes for protection. Coming from a wealthy family with assets worth 4 billion rubles, Mavliev faces up to 15 years in prison. #Ufa#Corruption#Mavliev#Bribery#Bashkortostan The main news of Russia and the world ishere.

Venture Village Wall 🦄

@venturevillagewall · Post #3965 · 23.01.2025 г., 22:00

Crypto News Highlights: Funding and Regulations Bitcoin hits $105,000 amidst notable developments in the crypto sector. - Senator Cynthia Lummis announces a Strategic Bitcoin Reserve to hold BTC for 20+ years with no new taxes applied. - Vitalik Buterin warns of potential bribery linked to political tokens. Full insights here. - Rep. Bryan Steil appointed chair of the House subcommittee on crypto, focusing on fraud prevention and legislation. Read more on Axios here. - Swarm Network raises $3M led by Y2Z Ventures. - Radius secures $7M for rollup sequencer development, backed by Pantera Capital. - Drift Zone receives funding from 369 Capital, amount undisclosed. - Trump declares USA the "world capital of AI and crypto" at WEF. #Bitcoin#Crypto#VC#Ethereum#PoliticalTokens#MEV#Web3#Funding#Fintech#Blockchain#Bribery#Legislation#Fraud#Stablecoin#CynthiaLummis#VitalikButerin#Trump#Y2Z#PanteraCapital