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

Резултати

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

Пребарај: #goplus

当前筛选 #goplus清除筛选
TokenPocket

@tokenpocket_channel · Post #735 · 22.08.2023 г., 10:03

Quoted GoPlusEco : ⏰72 hours left!!! Get your co-brand OAT on Galxe ASAP! #TokenPocket#GoPlus 👉https://galxe.com/goplussecurity/campaign/GC6G1Uj5zK 【Details】https://twitter.com/TokenPocket_TP/status/1693926221518958870 【Powered By】Crypto Box

TokenPocket

@tokenpocket_channel · Post #1520 · 02.01.2025 г., 08:08

🌟Join GoPlus SAFU Universe Airdrop Fiesta with your TokenPocket! Log in through TokenPocket and share in the $2 million super airdrop provided by GoPlus and 10 other Web3 rising stars! 👉https://app.gopluslabs.io/safu?channelCode=tokenpocket 💙 You can use the TokenPocket mobile wallet and the Chrome Extension wallet to be a part of that! 📱https://tokenpocket.pro/en/download/app 💻https://extension.tokenpocket.pro #Airdrop#GoPlus#TokenPocket#SAFU

TokenPocket

@tokenpocket_channel · Post #1289 · 14.03.2024 г., 03:13

🟦 Join SecWareX Planet with your #TokenPocket Wallet! 👉https://secwarex.io/?channelCode=5W7GUXER Finish TokenPocket Tasks, strengthen your security firewall, and Earn up to 200 energy block rewards! SecWareX by GoPlus is an innovative, user-centric, full-scope security service platform designed to tackle over 100 security scenarios faced by Web3 users. #Web3security#GoPlus#SecWareX

TokenPocket

@tokenpocket_channel · Post #725 · 17.08.2023 г., 05:18

【TokenPocket Retweeted】 Retweeted GoPlusEco : It's just about the half time of #ForestAdventure⏰⏰⏰ During this fantastic adventure, more than 5.8K participants had full protection of their wallet and digital assets by #GoPlus, as well as the exclusive offer for #KeyPal🔥🔥🔥 Make sure you finish all the tasks on Galxe and claim the co-branded OAT right before the end time!!! TokenPocket_TP #SaferWeb3#airdrop Let's do it➡️https://galxe.com/goplussecurity/campaign/GC6G1Uj5zK 【Details】https://twitter.com/GoPlusEco/status/1692036310859698334 【Powered By】Crypto Box