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

Пребарај: #deficit

当前筛选 #deficit清除筛选
America 🇺🇸 News & Politics

@America · Post #10610 · 06.05.2026 г., 14:12

💸🇺🇸GOP MEGABILL EXPLODES DEFICIT BY $4.1 TRILLION — CBO CONFIRMS BIGGEST DEBT BOMB EVER 🔹 House Republicans' "One Big Beautiful Bill Act" adds $4.1T to deficit over 10 years, including $718B in higher debt service costs 📊 🔹 $5T in tax cuts mostly to wealthy/corporations vs only $1-2T in spending cuts — math doesn't add up for middle class 💰 🔹 Drives up borrowing costs nationwide: higher mortgage rates, auto loans, credit cards as federal debt crowds out private lending 📈 🔹 Moody's cited this bill for recent US credit downgrade — GOP "pay for itself" claims dismissed by independent analysis 📉 America's fiscal time bomb just got $4 trillion bigger 💣🔥 #USNews#deficit @america

America 🇺🇸 News & Politics

@America · Post #10565 · 27.04.2026 г., 13:09

📊💰ECONOMISTS: TRADE DEFICITS MADE AMERICA RICHER, NOT POORER 🔹 US has run trade deficit every year since 1976 — but that created wealth, not drained it 💵📈 🔹 February 2026 deficit at $57.3B, down 54.8% from 2025 as Trump policies reshape global trade 🇺🇸⚖️ 🔹 China deficit drops 32% annually while US achieves first goods surplus with Switzerland since 2012 🇨🇭✅ 🔹 Imports bring investment inflows and boost American consumer power — not economic loss says George Mason professor 🎓💡 "Expanding imports brought greater wealth to U.S. shores" — challenging conventional wisdom 🤔📰 Trump's trade war might actually be working this time 🔄🎯 #trade#economy#deficit#imports @america

Savino Balzano

@savinobalzano · Post #688 · 29.06.2024 г., 14:25

Questa mattina a Coffee Break, La7 Ci aprono una procedura di infrazione per deficit eccessivo? Dobbiamo saper rispondere #sticazzi! E lo dobbiamo fare in scioltezza. L'#Italia deve ritrovare orgoglio e dignità: non avremmo dovuto subire l'ingorda prepotenza di qualcun altro e di certo non possiamo permetterci di continuare a farlo. Non esistono soluzioni facili: non bastano due leggine per risolvere i nostri annosi problemi. Molti di quei problemi ce siamo creati da soli, accettando per stupidità o per servilismo assurdi compromessi. Basta. #lavoro#diritti#europa#commissione#deficit#caporalato https://x.com/SavinoBalzano/status/1807056685476778486?t=E9HfjCNDdU7CogMYT7sw6g&s=19