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

Пребарај: #nbaseason

当前筛选 #nbaseason清除筛选
Crypto M - Crypto News

@CryptoM · Post #65337 · 13.04.2026 г., 00:45

🚀 Lakers vs. Jazz NBA Game Draws Significant Bet on Polymarket A significant bet has been placed on the Los Angeles Lakers defeating the Utah Jazz in the NBA regular season game, according to Odaily. An account with a winning probability exceeding 66% invested $200,000 on the Lakers' victory, with an average opening price of 91¢. The game between the Lakers and the Jazz commenced today at 8:30 AM UTC+8. This marks the final day of the NBA regular season. The Lakers currently hold a record of 52 wins and 29 losses, placing them third in the Western Conference, while the Jazz have a record of 22 wins and 59 losses, ranking them 15th in the same conference. #Lakers#Jazz#NBA#Polymarket#Betting#NBASeason#WesternConference#LakersVsJazz#Basketball

Crypto M - Crypto News

@CryptoM · Post #64482 · 09.04.2026 г., 02:25

🚀 Significant Bet Placed on Thunder in NBA Regular Season Matchup Against Clippers A notable prediction event on Polymarket involves a user with a win rate exceeding 58% who has invested $270,000 on the Oklahoma City Thunder defeating the Los Angeles Clippers. According to Odaily, the average opening price for this bet was 76.2¢. The NBA regular season game between the Thunder and the Clippers commenced today at 10 a.m. UTC+8. As the game progresses into the first quarter, the Thunder hold a record of 63 wins and 16 losses, placing them first in the Western Conference. Meanwhile, the Clippers are ranked eighth with a record of 41 wins and 38 losses. #NBA#Thunder#Clippers#Polymarket#Betting#OklahomaCityThunder#LosAngelesClippers#WesternConference#Basketball#NBASeason

Crypto M - Crypto News

@CryptoM · Post #64783 · 09.04.2026 г., 23:05

🚀 High-Stakes Bet on Bulls vs. Wizards NBA Game A significant wager has been placed on the Polymarket prediction platform regarding the NBA regular season game between the Chicago Bulls and the Washington Wizards. According to Odaily, an account with a history of over $4.3 million in losses has invested $150,000 on the Bulls to win against the Wizards with a 5.5-point spread, at an average opening price of 56 cents. Additionally, the same account has placed a $40,000 bet on the Bulls to win with a 6.5-point spread, at an average opening price of 50.9 cents. The NBA regular season game between the Bulls and the Wizards commenced today at 7 a.m. UTC+8. As the season nears its conclusion, the Bulls hold a record of 30 wins and 49 losses, placing them 12th in the Eastern Conference. Meanwhile, the Wizards have a record of 17 wins and 62 losses, ranking 15th in the Eastern Conference. #HighStakesBet#BullsVsWizards#NBA#Polymarket#ChicagoBulls#WashingtonWizards#NBASeason#Betting#SportsBetting#PointSpread#BasketballBetting#EasternConference