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

Резултати

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

Пребарај: #ukresponsibility

当前筛选 #ukresponsibility清除筛选
Freedom Flotilla Coalition

@FFC_official_channel · Post #452 · 06.06.2025 г., 22:46

🚨 ACTION ALERT: The UK MUST protect ‘Madleen’ 🚨 The ‘Madleen’ is a UK-flagged civilian ship sailing to Gaza with life-saving aid as part of the #FreedomFlotilla. The UK has a legal duty to protect its vessel and the civilians aboard from Israeli interference. 🇬🇧 Under international law, the UK must: • Prevent genocide • Reject Israel’s illegal blockade of Gaza • Defend its flagged ship from unlawful attacks Support us by taking action! Contact the Foreign Office and your MP. Demand protection for the ‘Madleen’ and accountability for any aggression. Email: [email protected] X: @FCDOGovUK IG: @ForeignAndDevelopmentOffice Tel: 020 7008 5000 #SafePassage#UKResponsibility#BreakTheSiege#BreakIsraelsSiege#EndComplicity#Madleen#GazaGenocide#FreedomFlotilla

📜 Open Letter to PM Keir Starmer: Urgent Action Needed for Hong Kong’s 45 Pro-Democracy Figures Today, we, 22 UK-Hong Kong civil society organisations, express our deep frustration at the lack of action from the UK government regarding the unjust and heavy sentences of Hong Kong’s 45 pro-democracy activists. Prime Minister Starmer, as a human rights advocate, must lead by example: Demand the release of political prisoners. Impose visa restrictions on Hong Kong officials responsible for implementing the National Security Law. Apply targeted sanctions to human rights violators. The UK has a legal and moral obligation to stand firm against oppression and defend human rights and democracy. 📖 Read the full open letter here: https://shorturl.at/x4nnz #HongKong45#Democracy#HumanRights#StandWithHongKong#ukresponsibility 📜 致英國首相施紀賢的公開信:緊急關注香港45名民主人士被不義判囚 英國政府未強力譴責香港國安法庭不公重判45名民主人士,亦沒有足夠作為,我們22個在英港人組織對此深表失望。 施紀賢首相,作為人權倡導者,必須以身作則: 要求釋放所有政治犯。 對執行《國安法》的香港官員實施簽證限制。 對人權侵犯者實施針對性制裁。 英國有法律與道義責任堅守《中英聯合聲明》,抵抗壓迫,捍衛人權與民主。 📖 閱讀完整公開信:https://shorturl.at/x4nnz #香港45#民主#人權#撐香港#英國責任