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

Пребарај: #josephaoun

当前筛选 #josephaoun清除筛选
Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3848 · 09.01.2025 г., 13:30

Army Chief #JosephAoun has officially been elected as #Lebanon’s new president, marking a significant moment in the country’s political landscape. Despite being a political newcomer, Aoun’s position as head of one of Lebanon’s most respected institutions has bolstered his appeal. Widely regarded as the favored candidate of both the United States, a staunch supporter of the Lebanese army, and regional power Saudi Arabia, Aoun is seen as the best-equipped to navigate Lebanon through its fragile ceasefire and crippling financial collapse. Turning 61 on Friday, Aoun, known for his "personal integrity," is now tasked with stepping into the void left by Michel Aoun—no relation—whose presidency ended in October 2022

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #4188 · 25.03.2025 г., 04:13

Lebanese daily @alakhbarnews reported that #SaudiArabia remains firm in its stance, maintaining economic pressure on #Lebanon. According to visitors to #Riyadh, the kingdom has conveyed that it will not contribute "a single penny" to Lebanon’s reconstruction efforts. Well-informed sources indicate that President #JosephAoun indirectly received this message during his meeting with Saudi Crown Prince #MohammedbinSalman earlier this month. Additionally, he was reportedly met with a firm Saudi refusal to lift the travel ban on its citizens visiting Beirut. During their discussions, bin Salman reportedly questioned Aoun on whether he could guarantee the safety of Saudi nationals traveling along Beirut’s airport road, which is lined with images of #Hezbollah and Iranian leaders. He remarked, “At the very least, remove the pictures.” Upon his return, Aoun relayed this request to Speaker of Parliament #NabihBerri, inquiring about the possibility of reducing the number of such images along the route. Why do you think Saudi Arabia cares about images displayed in another country? Share your thoughts with Hoopoe.

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3850 · 10.01.2025 г., 10:10

Following a two-year vacancy, the Lebanese Parliament has elected #JosephAoun as the new President of the Republic. Here's what you need to know about him. #LebanonPresident#LebanonPolitics#PresidentialElection#Lebanon#LebaneseParliament#MiddleEastPolitics