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

Резултати

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

Пребарај: #slang

当前筛选 #slang清除筛选
English From Zero to Hero

@Learn_English_from_Zero_to_Hero · Post #59908 · 23.07.2025 г., 06:16

#Slang 💥Be a hundred years too early •To be so immature and unprepared as to have no hope of achieving an accomplishment. ●Example: ⚡️Don't make me waste my time! You are a hundred years too early to be an opponent worthy of fighting me!

Hashtags

English From Zero to Hero

@Learn_English_from_Zero_to_Hero · Post #59733 · 11.05.2025 г., 11:34

#Slang ⚜All good in the hood <Interjection> ▪️ Everything is all right; no problem; used to reassure someone. ▪️"Sorry about nearly breaking your vase, Carl." "I don't mind, man. All good in the hood."

Hashtags

English Universe

@englishuniverseschool · Post #3 · 04.12.2025 г., 14:27

Рубрика ‘слово дня’ И первопроходцем будет слово ‘SLAY’ 😎 /sleɪ/ 1️⃣to impress someone very much or to be very good or impressive 2️⃣to be extremely good or nice Examples: The actors slay me with the quality of their acting. That top slaaaays! Перевод: крутой, впечатляющий (впечатлить) #slang

Hashtags

1 English learning materials

@englishmeta1 · Post #187 · 01.10.2022 г., 15:21

Bling 🏅 Meaning flashy jewellery worn to create the impression of wealth ❕For example 🔺Check out all the bling around that guy's neck. It must weigh a ton! 🔺Most people have gold bling or silver bling, but they don't usually mix it up. ✍Note "bling-bling" means the same thing 🌟Origin Originally used in U.S. hip-hop and rap culture, and possibly derived from the sound of heavy necklaces hitting one another. ✨Variety This slang term is typically used in American English but may be used in other varieties of English too. ━━━━━━━━━━━━━ #teamjimmy #sirjimmy #slang

1 English learning materials

@englishmeta1 · Post #26 · 08.02.2022 г., 05:00

Slang ✅ Peacocking ✨ Meaning Showing off Peacocking is when a person shows off to impress someone. It comes from the colorful feathers an actual peacock displays to attract a mate. The term is commonly used in regards to dating when a male tries to impress a female by doing something flashy to stand out from among the rest of the suitors. Peacocking may take the form of driving a really expensive car, learning some sweet dance moves, or domming in sports. 🗣 Example 🔸 "James is peacocking on the dance floor in order to get a dance with one of the bridesmaids. 🔸 Gaston peacocking with his chest muscle s ══❖•🌺🌸•❖══ #Slang #Teamjimmy #sirjimmy

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