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

Пребарај: #russiancourses

当前筛选 #russiancourses清除筛选
Russian Consulate in Cape Town

@rusconct · Post #2836 · 16.07.2025 г., 12:28

Free Russian Language Courses in Cape Town! We are pleased to invite everyone to take part in free Russian language courses supported by the Ministry of Education of the Russian Federation and St. Petersburg State University. 👩‍🏫 The lessons will be conducted by Dasha and Taisiya — experienced teachers of Russian as a foreign language with nearly 20 years of teaching experience. 📚 The courses are open to everyone. No prior knowledge of Russian is required. Why learn Russian? 🗣 It is a language spoken across 15 countries and serves as a bridge among more than 160 ethnic groups. 🌍 Studying Russian offers access to a rich cultural, literary, and scientific heritage — from Tolstoy and Dostoevsky to Gagarin and Tchaikovsky. 📖 Course highlights: – Basics of grammar and practical conversation – Introduction to Russian culture and traditions 🔗 Register here: https://forms.gle/p4fo6ttm8esXqtLa6 Let’s explore the Russian language together! #RussiaSouthAfrica#RussianCourses#LearnRussian

Russian House Brussels-Europe

@rushousebrussels · Post #2471 · 23.06.2025 г., 07:33

📚Enrollment is open for the 2025–26 academic year! ⏰24 June | 18:00 Join our Presentation of Russian Language Courses for Adults — meet the teachers and find the perfect program for you: ✨Fundamental Course — from A1 to C1, steady pace (October–June) ⚡️Intensive Course — fast-track A1 to A2, with speaking from day one 🌍Online — learn from anywhere in the world 🏫Offline — full language immersion 👥Group classes — motivation, support & shared experience 👤Individual lessons — flexible schedule, personalized approach 🎉 Plus, learn about our linguistic and cultural events for students! 📅Free participation — sign up via the linkhere #russianlanguage#learnrussian#russiancourses#languagelearning#onlinelearning

Russian House Brussels-Europe

@rushousebrussels · Post #2626 · 24.10.2025 г., 05:41

🏔🇷🇺✨ When your Russian truly reaches new heights! Our student took his Russian — all the way to the Himalayas! 🏔 Russian at 5300 m! Language is more than words. It’s a journey, an inspiration, and the strength that lifts you higher. Our student is traveling in the Himalayas and… he used Russian at the top of a mountain! 😄 “I told them I study Russian at the Russian Language School in Brussels. And that I have very good teachers!” Even at the highest heights, you can talk about poetry, music and your favorite language. 😉 Did you know? Russian is one of the six official international languages and is spoken by an estimated up to 285 million people worldwide. 📍Where have you used your Russian abroad? Share your story in the comments — the most inspiring ones will be featured! Join us to learn Russian! We offer in-person classes, online courses, and individual lessons. #RussianHouseBrussels#LearnRussian#RussianLanguage#CulturalDiplomacy#RussianAbroad#DiscoverRussia#RussianCourses