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

Резултати

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

Пребарај: #aviation

当前筛选 #aviation清除筛选
Indian Development News 🇮🇳

@developmentnewsindia · Post #44442 · 05.05.2026 г., 09:39

Breaking: A Boeing 737 plane that plummeted into a Chinese hillside in 2022, killing all 132 people on board, had its fuel supply cut mid-flight, according to newly released data by the US National Transportation Safety Board (NTSB). Findings by the NTSB say that the fuel switches on both engines of the China Eastern flight were moved to the "cut-off" position while it was at a cruising altitude of 8,839m (29,000ft) — exactly like the AI171 Air India crash in Gujarat last year. China has yet to release a final report on the incident, citing national security concerns. #Aviation BBC Article

Hashtags

Indian Development News 🇮🇳

@developmentnewsindia · Post #44321 · 02.05.2026 г., 08:30

GPS Renewables started construction on India's first Ethanol-to-Jet (ETJ) Sustainable Aviation Fuel (SAF) plant in Pudimadaka, Andhra Pradesh, under an NTPC Green Energy EPC contract. Using Lummus Technology and Xytel India's engineering, the facility at NTPC's Green Hydrogen Hub will produce 1,800 tonnes per annum of SAF and renewable diesel. The process converts CO2-derived ethanol via ethylene conversion, oligomerisation, and hydroprocessing. This project advances India's sustainable aviation fuel scaling and transport sector decarbonization goals. Source #Aviation

Hashtags

Indian Development News 🇮🇳

@developmentnewsindia · Post #44289 · 01.05.2026 г., 10:50

India is redefining the rules of the game with its upcoming airport privatisation plans, aiming to curb monopolistic tendencies in the aviation sector. The govt is laying down new ground rules to promote a healthy competitive environment. Source #Aviation

Hashtags

Indian Development News 🇮🇳

@developmentnewsindia · Post #44221 · 30.04.2026 г., 06:28

IndiGo resumes direct India–China flights with Delhi–Guangzhou service; first landing on Apr 28 restores connectivity after ~4–5 year gap. Airline operates daily routes using A320 aircraft, expanding to Shanghai and Kolkata routes with ~21 weekly departures. #Aviation https://t.co/3nGRpvMboR

Hashtags

Indian Development News 🇮🇳

@developmentnewsindia · Post #44119 · 27.04.2026 г., 08:25

🛠️ AIESL plans to expand the Nagpur aviation maintenance facility into a major MRO hub. 📍 The company is seeking EASA certification to service Airbus aircraft for global airlines. ✈️ The site has already completed 240+ maintenance checks on Boeing and Airbus fleets. #Aviation https://t.co/GosIlxNf56

Hashtags

Indian Development News 🇮🇳

@developmentnewsindia · Post #43974 · 23.04.2026 г., 11:30

Embassy of France in India "With effect from 10 April 2026, Indian nationals possessing an ordinary passport are no longer required to hold an airport transit visa when passing through the international zone of airports located on French territory. This measure applies to passengers remaining in the international zone during a layover at a French airport en route to a third country." #Aviation

Hashtags

Indian Development News 🇮🇳

@developmentnewsindia · Post #43593 · 14.04.2026 г., 14:15

✈️ India's newest regional airline Star Air will launch 38 weekly flights to Mundra from 25 April. 🌐 Direct links to Mumbai, Hindon, Goa (Mopa) & Surat plus one-stop routes. 🪑 Adds 4,100+ weekly seats, boosting regional connectivity. #Aviation https://t.co/0Ys3hXULvs

Hashtags

Лёгкое небо

@legkoenebo · Post #3985 · 01.06.2025 г., 20:59

Кто знает, что это такое и для чего используется? ⏺И вопрос для профи, считайте показания этой «штуки» Лёгкое небо | Донат #aviation

Hashtags

123•••5•••10•••15•••20•••25•••30•••35•••40•••45•••50•••55•••5758
ПретходнаСтраница 1 од 58Следна