@figuronyan · Post #59 · 03.05.2024 г., 09:03
#Nino_Nakano#Gotoubun_no_Hanayome#swimsuit
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
Пребарај: #swimsuit
@figuronyan · Post #59 · 03.05.2024 г., 09:03
#Nino_Nakano#Gotoubun_no_Hanayome#swimsuit
@besteanimebilder · Post #6541 · 21.08.2020 г., 14:35
エミール、夏 #azur_lane#emile_bertin#swimsuit 1000x1801
Hashtags
@besteanimebilder · Post #6259 · 23.02.2020 г., 18:30
ereshkigal ver2 #fate_grand_order#ereshkigal#swimsuit 1105x1658
@besteanimebilder · Post #6515 · 17.07.2020 г., 13:40
七月 #swimsuit#wet#ecchi 1000x1714
@white_pantyhose_anime · Post #291 · 11.08.2025 г., 15:48
Author:#可乐米mi tag:#裸足#泳装#兽耳#swimsuit#白丝#雪糕 https://www.pixiv.net/users/22334948
@besteanimebilder · Post #5969 · 27.11.2019 г., 16:55
冬コミ表紙 #fate_grand_order#fate_go#elizabeth_bathory#horns#swimsuit#loli 2900x4040
@wall_amv · Post #9546 · 31.08.2025 г., 18:19
#Anime #Orginal #Girl #Firefly #Honkai #swimsuit #Full_HD #Wallpaper #Fan_Art #Beautiful #Mobile #AnimWorld @Wall_Amv
@wall_amv · Post #9548 · 31.08.2025 г., 18:21
#Anime #Orginal #Girl #kyasutorisu #elf_ears #Honkai #swimsuit #Full_HD #Wallpaper #Fan_Art #Beautiful #Mobile #AnimWorld @Wall_Amv
@cosplayuploadtest2 · Post #102099 · 23.03.2025 г., 03:00
Title: GaZero_제로,_Photobook_‘See_Thru_Swimsuit’_Set.02 Authors: #None Tags: #None#Digital_Photobook#GaZero_제로#GaZero#제로#Photobook #‘See #Thru#Swimsuit’ #Set #02 recommendation: None TelegraphLinks:page-0-42
@cosplayuploadtest2 · Post #102067 · 23.03.2025 г., 02:58
Title: GaZero_제로,_Photobook_‘See_Thru_Swimsuit’_Set.01 Authors: #None Tags: #None#Digital_Photobook#GaZero_제로#GaZero#제로#Photobook #‘See #Thru#Swimsuit’ #Set #01 recommendation: None TelegraphLinks:page-0-43
@moepic · Post #50945 · 28.11.2023 г., 14:51
title: Noshiro author: #Ino tags: #女の子#少女#girl#能代(アズールレーン) #足指#足#アズールレーン#swimsuit#裸足 url: pixiv.net/i/113742942
@moenekononh · Post #15310 · 15.05.2026 г., 12:58
title: hennyano and nachoneko (indie virtual youtuber) artists: madana_(xesa7885) url: https://danbooru.donmai.us/posts/8333388 tags: #1girl#animal_ears#arm_up#bare_shoulders#barefoot#bed#bedroom#blush#borrowed_character#breasts#cat_ears#cat_girl#cat_tail#collar#commentary_request#covered_navel#embarrassed#green_eyes#hair_ornament#hairclip#hennyano_(nachoneko) #highres#indie_virtual_youtuber#indoors#kneeling#leash#legs_apart#long_hair#madana_(xesa7885) #nachoneko#off_shoulder#old_school_swimsuit#one-piece_swimsuit #school_swimsuit#small_breasts#solo#strap_slip#sweat#swimsuit#tail#thighs#v#virtual_youtuber#wet#wet_clothes#wet_swimsuit#white_hair#white_one-piece_swimsuit
Hashtags