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

Резултати

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

Пребарај: #aidating

当前筛选 #aidating清除筛选
TON Crypto News

@toncoin_rap · Post #156 · 19.09.2024 г., 14:29

🎧⤴ TON Dating: AI-Powered Compatibility Checks with ChatGPT! TON Dating has become the first dating app to integrate ChatGPT, offering a new feature that analyzes compatibility between users. By clicking on the ChatGPT icon in a profile, the AI examines both users' data to determine their match potential. This move aims to enhance the dating experience within a verified, secure community that rewards user engagement with cryptocurrency. The integration sets TON Dating apart, offering a futuristic, AI-driven approach to finding meaningful connections on the platform. 😴👉https://t.me/tondating Chorus: TON Dating's blowing up, with ChatGPT inside, AI's your new matchmaker, taking love on a ride. Swipe right, swipe left, let the AI decide, Finding true connections where ambition and love collide. Verse 1: Step into the game, TON's raising the stakes, AI compatibility, no more heartbreaks. Profiles verified, no scammers in sight, Pay-to-play, yeah, but it feels just right. Girls roll free, boys paying their dues, Crypto rewards for every match you choose. Swipe with intention, love or coin’s the prize, TON Dating's got the edge, no surprise. Chorus: TON Dating's blowing up, with ChatGPT inside, AI's your new matchmaker, taking love on a ride. Swipe right, swipe left, let the AI decide, Finding true connections where ambition and love collide. Verse 2: Ambition meets beauty, the motto’s legit, Profiles vetted hard, so no catfish hit. Vlad’s got a vision, safe space to thrive, No fake accounts here, just the real ones alive. Stack your TON coin, let your profile shine, The app’s got your back with AI design. Success and smarts, it’s the ultimate find, TON Dating’s got that AI mastermind. Chorus: TON Dating's blowing up, with ChatGPT inside, AI's your new matchmaker, taking love on a ride. Swipe right, swipe left, let the AI decide, Finding true connections where ambition and love collide. Verse 3: Crypto’s the future, and dating’s the key, Bringing people closer through technology. ChatGPT whispers, "Is this love or a game?" It’s matchmaking magic, never quite the same. Filter out the fakes, meet your match on screen, High standards, high hopes in this dating scene. From Telegram to TON, the platform's tight, Find your perfect vibe, under AI light. Chorus: TON Dating's blowing up, with ChatGPT inside, AI's your new matchmaker, taking love on a ride. Swipe right, swipe left, let the AI decide, Finding true connections where ambition and love collide. Bridge: So step up to the future, the game just begun, With ChatGPT matching, you might find "the one." It’s a new world, new rules, tech by your side, TON Dating’s the place where love and crypto collide. #TONDating#AIDating#ChatGPTMatch #TONCryptoNewsRapStyle 🎧@toncoin_rap