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

Пребарај: #prisons

当前筛选 #prisons清除筛选
Venezuelanalysis

@venanalysis · Post #2362 · 11.05.2026 г., 19:12

📰 NEWS | Venezuelan Attorney General to Investigate Unreported Death in State Custody Venezuelan Attorney General Larry Devoe has opened an investigation into the death of Victor Hugo Quero Navas, who died in custody in July 2025 at Rodeo I prison near Caracas. Authorities said he died from acute respiratory failure after being hospitalized with gastrointestinal bleeding. The case drew attention after a Caracas court reportedly denied Quero amnesty under Venezuela’s February Amnesty Law, despite authorities later confirming he had died months earlier. Quero’s mother says she repeatedly sought information from prison and judicial authorities without being informed of his death. NGOs have called for an independent investigation into possible due process and human rights violations. Read the full report here 👉https://shorturl.at/fpZKY #JusticeSystem#Prisons

Venezuelanalysis

@venanalysis · Post #1808 · 15.11.2024 г., 22:57

Venezuelan Attorney General Tarek William Saab met with the families of detainees and pledged to review 225 cases based on new evidence. This follows violent protests after the July 28 elections, where authorities arrested over 2,000 people. The review aims to fast-track the release of those deemed innocent. Read the full report here 👉🏼https://shorturl.at/pOfAS #justicesystem#opposition#prisons

Venezuelanalysis

@venanalysis · Post #1603 · 15.06.2024 г., 19:23

Venezuelan President Nicolás Maduro tasked his new minister for penitentiary affairs with taking measures against corrupt practices in the legal system. Inmates in dozens of prisons suspended a hunger strike against judicial delays and poor incarceration conditions following the government's response. Read the full report here: https://shorturl.at/t1g2l #Venezuela#Justice#Prisons#legalsystem