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

Пребарај: #extrememagnetism

当前筛选 #extrememagnetism清除筛选
Universe Mysteries 🪐

@cosmomyst · Post #763 · 13.05.2026 г., 22:21

🪐 The magnetar Swift J1818.0−1607, discovered in 2020, has one of the fastest spins ever seen—rotating once every 1.36 seconds—and its magnetic field is up to a thousand trillion times stronger than a regular fridge magnet. Magnetars like Swift J1818.0−1607 are rare neutron stars with magnetic forces so intense they can reshape atoms and trigger sudden bursts of high-energy X-rays and gamma rays, making them some of the most extreme objects in the Milky Way. ✨ #magnetars⚡#neutronstars⚡#extrememagnetism⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels ​

Universe Mysteries 🪐

@cosmomyst · Post #377 · 05.10.2025 г., 15:21

🪐 The magnetar SGR 1900+14, located about 20,000 light-years away in the constellation Aquila, holds one of the strongest magnetic fields ever measured—over 100 trillion times stronger than Earth's. When its magnetic field twists and snaps, SGR 1900+14 unleashes enormous flares of X-rays and gamma rays that can briefly outshine every other X-ray source in our galaxy. ✨ #magnetars⚡#neutronstars⚡#extrememagnetism⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels ​

Universe Mysteries 🪐

@cosmomyst · Post #460 · 27.10.2025 г., 12:21

🪐 Deep in the constellation Vulpecula, the magnetar 1E 2259+586 unleashes magnetic fields so powerful—over 100 trillion times stronger than Earth's—that they can physically warp the star's crust. When these intense magnetic forces crack the surface, they release bursts of high-energy X-rays and gamma rays, briefly making the magnetar outshine every other X-ray source in its region of space. ✨ #magnetar⚡#neutronstar⚡#extrememagnetism⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels ​