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

Резултати

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

Пребарај: #reel

当前筛选 #reel清除筛选
Desi Memes Funny Jokes

@desi_memes_funny_jokes · Post #4691 · 02.06.2024 г., 10:34

❦★𝘔𝘈𝘕𝘡𝘪𝘭 𝘚𝘌 𝘑𝘈𝘠𝘋𝘈 𝘚𝘈𝘍𝘈𝘙 𝘗𝘌𝘙 𝘉𝘏𝘈𝘙𝘖𝘚𝘈 𝘙𝘈𝘒𝘏𝘛𝘈 𝘏𝘜★❦ _____ _____ #reel#tranding#comdey

BiA Cerámica Fría

@biaceramicafria · Post #4214 · 20.10.2023 г., 20:14

🙌 Ya disponible en nuestro Canal de YouTube. ✨ NUEVO TUTORIAL de cómo hacer 3 diseños de #aretes con trama a rayas. 🔗 Link https://youtu.be/1TVUINjs920?si=Qc95m_VWetH1odus🙃 Suscríbete y activa la campanita 🔔 para que tengas acceso a todos los tips que comparto en esa plataforma ☺️ 🎵 Música creada especialmente para mi canal por @jcslimcuba #bia_tips#diy#reel#blue#pendientes

Video Editing Materials

@capcut_editing_material · Post #3220 · 23.03.2026 г., 07:31

Anime Reel Bundle for Free – Download 1000+ Viral Anime Reels - RTM CREATOR Anime reel bundle for free download. Get viral anime reels templates for Instagram Reels & Shorts. 100% FREE anime reels bundle for creators. #Anime#Reel#Bundle#Free#Download 📢 Other related channels: @all_channels_rtm

Video Editing Materials

@capcut_editing_material · Post #3165 · 28.02.2026 г., 13:28

Horror Reel Bundle Download – Free Scary Reels for Instagram & Facebook - RTM CREATOR Short videos are growing very fast on Instagram and Facebook. Every day, millions of people watch reels. If you want to grow your page quickly, you need content that grabs attention in the first few seconds. One type of content that always works is horror. In this blog, we will talk about the Horror Reel #Horror#Reel#Bundle#Download#Free 📢 Other related channels: @all_channels_rtm

Video Editing Materials

@capcut_editing_material · Post #3117 · 16.02.2026 г., 04:04

Hulk AI Reel Bundle | Free Viral Reels Download Download the Hulk AI Reel Bundle for free! Get viral-ready reels for Instagram & Facebook to skyrocket your growth. Pro AI tools for content creators. #Hulk#Reel#Bundle#Free#Viral 📢 Other related channels: @all_channels_rtm

Desi Memes Funny Jokes

@desi_memes_funny_jokes · Post #5288 · 19.09.2024 г., 04:21

Same samsya same tablet 😂☻️ #kapilsharma#kapilsharmashow#kapilsharmajokes #kapilsharmacomedy#kapilcomedy#comedywithkapil#comedyshow#familyshow#comedyclub#comedy #fun#funny#reel

Desi Memes Funny Jokes

@DESI_MEMES_Funny_Jokes · Post #5646 · 31.10.2024 г., 15:55

Main bi kuch de diya 😀#reel#reelsinstagram#reelitfeelit#funny#funnymemes#funnyreel#funnyvideo#memes#memesfunny#memesreel#memesvideo#comedy#comedy#comedyreel#comedyvideo#trending#viral

12
ПретходнаСтраница 1 од 2Следна