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

Резултати

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

Пребарај: #qpr1

当前筛选 #qpr1清除筛选
Xiaomi 12T Pro | K50U | Updates

@xiaomi_12tpro_updates · Post #493 · 28.12.2025 г., 05:47

#EvolutionX#UNOFFICIAL#A16#diting#qpr1 EvolutionX 11.5.1 | UNOFFICIAL | Android 16 Updated: 28/12/2025 ▪️Download: SF | Mirror ▪️Screenshots ▪️Support:Group ▪️ Recovery: here Changelogs: • Sync soruce • Update blobs and firmware from OS2.0.205.0.VLFMIXM • Xiaomi camera has been updated • Updated kernel and some fixes • Many optimizations and fixes were made. • Dolby audio by default • Update KernelSU Notes: If you want to receive regular updates, you can donate and we will add you to VIP support. Credits:Here By@Jezzay97 | Donate Follow@xiaomi_12tpro_updates Join@xiaomi12tpro_chat

Xiaomi 12T Pro | K50U | Updates

@xiaomi_12tpro_updates · Post #483 · 18.11.2025 г., 06:27

#EvolutionX#UNOFFICIAL#A16#diting#qpr1 EvolutionX 11.5 | UNOFFICIAL | Android 16 Updated: 18/11/2025 ▪️Download: SF | Mirror ▪️Screenshots ▪️Support:Group ▪️ Recovery: here Changelogs: • Initial release qpr1 • TEST BUILD • Dolby audio by default • KernelSU SusFS support Notes: If you want to receive regular updates, you can donate and we will add you to VIP support. Credits:Here By@Jezzay97 | Donate Follow@xiaomi_12tpro_updates Join@xiaomi12tpro_chat

Xiaomi 12T Pro | K50U | Updates

@xiaomi_12tpro_updates · Post #495 · 28.12.2025 г., 06:26

#PixelOS#UNOFFICIAL#A16#diting#qpr1 PixelOS 16.1 | UNOFFICIAL | Android 16 Updated: 28/12/2025 ▪️Download: SF | Mirror ▪️Support :Group ▪️Source Changelogs: here Changelogs: • Initial release Notes: If you want to receive regular updates, you can donate and we will add you to VIP support. Credits:Here By@Jezzay97 | Donate Follow@xiaomi_12tpro_updates Join@xiaomi12tpro_chat

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #715 · 18.02.2026 г., 17:58

Evolution X - Official | Android 16 | Nothing Phone (2) 📝 Details: - Version: v11.5.3 - Device: #Pong - Released: 18/02/26 ⬇️ Download: Gapps | Vanilla 🛟 Recovery: Here 📖 Changelogs: Here 🆘 Support: Discord | Telegram 🏷 Tags: #AOSP#ROM#EvoX#Official#QPR1 ✍️Notes: - Final QPR1 Build - Firmware is included! (NOS 4.0) - Dolby is included 🏆Credits: - Ghost and Chandu for DT - Fabian & Ghost & HELLBOY for Glyph 👤 Maintainer: @Superuser1958 💬 Chat: @NothingPhone2 🔔 Updates: @NothingPhone2Updates

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #712 · 03.02.2026 г., 07:24

Evolution X - Official | Android 16 | Nothing Phone (2) 📝 Details: - Version: v11.5.2 - Device: #Pong - Released: 03/02/26 ⬇️ Download: Gapps | Vanilla 🛟 Recovery: Here 📖 Changelogs: Here 🆘 Support: Discord | Telegram 🏷 Tags: #AOSP#ROM#EvoX#Official#QPR1 ✍️Notes: - Firmware is included! (NOS 4.0) - Sideloading/USB in recovery works as intended now - Gapps is included, do not flash again - Dolby is included 🏆Credits: - Ghost and Chandu for DT - Fabian & Ghost & HELLBOY for Glyph - HELLBOY for Kernel base 👤 Maintainer: @Superuser1958 💬 Chat: @NothingPhone2 🔔 Updates: @NothingPhone2Updates

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #566 · 22.02.2025 г., 08:15

Evolution X - Official | Android 15 | Nothing Phone (2) 📝 Details: - Version: v10.3 - Device: #Pong - Released: 22/02/25 ⬇️ Downloads: ROM | Recovery Image ⚙️ Flashing Instructions: Here 📖 Changelogs: Here 🆘 Support: Here 🏷 Tags: #AOSP#ROM#QPR1#EvoX#Official ✍️Notes: - Gapps is included, do not flash again! - Firmware is included - Dolby is included 🏆Credits: - Chandu for base DT - Ghost for Dolby and additional fixes - Fabian & HELLBOY for Glyph - HELLBOY for Meteoric Kernel 👤 Maintainer: @Superuser1958 🐙 Chat @NothingPhone2 🔔 Updates @NothingPhone2Updates

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #536 · 29.01.2025 г., 12:04

Evolution X - Official | Android 15 | Nothing Phone (2) 📝 Details: - Version: v10.2 - Device: #Pong - Released: 29/01/25 ⬇️ Downloads: ROM | Recovery Image ⚙️ Flashing Instructions: Here 🆘 Support: Here 🏷 Tags: #AOSP#ROM#QPR1#EvoX#Official ✨Changelogs - Add DeviceExtras - Switch to meteoric kernel - fix glyph interface failing to work randomly - enable adjusting volume steps - [ROM] Implement JSON style Play Integrity Fix ✍️Notes: - Gapps is included, do not flash again! - Firmware is included - Dolby is included - Latest PIF app (Not needed if using JSON play integrity fix) 🏆Credits: - Chandu for base DT - Ghost for Dolby - Fabian & HELLBOY for Glyph - HELLBOY for Meteoric Kernel 👤 Maintainer: @Superuser1958 🐙 Chat @NothingPhone2 🔔 Updates @NothingPhone2Updates

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #530 · 27.01.2025 г., 04:44

Evolution X - Official | Android 15 | Nothing Phone (2) 📝 Details: - Version: v10.2 - Device: #Pong - Released: 26/01/25 ⬇️ Downloads: ROM | Recovery Image ⚙️ Flashing Instructions: Here (skip flashing boot image although it's mentioned) 🆘 Support: Here 🏷 Tags: #AOSP#ROM#QPR1#EvoX#Official ✨Changelogs - Initial A15 build - Fixed google photos spoof toggle ✍️Notes: - Gapps is included, do not flash again! - Firmware is included - Dolby is included - Latest PIF app (Install normally for non-rooted env only) 👤 Maintainer: @Superuser1958 🐙 Chat @NothingPhone2 🔔 Updates @NothingPhone2Updates

Xiaomi 12T Pro | K50U | Updates

@xiaomi_12tpro_updates · Post #486 · 28.11.2025 г., 02:34

#EvolutionX#UNOFFICIAL#A16#diting#qpr1#Beta EvolutionX 11.5 | UNOFFICIAL | Android 16 Updated: 28/11/2025 ▪️Download: SF | Mirror ▪️Screenshots ▪️Support:Group ▪️ Recovery: here Changelogs: • Sync soruce • The Xiaomi camera has been updated and added by default. • The kernel has been updated and some new changes have been made. • Some minor changes were made to the tree. • Dolby audio by default • KernelSU SusFS support CLEAN FLASH RECOMMENDED Notes: If you want to receive regular updates, you can donate and we will add you to VIP support. Credits:Here By@Jezzay97 | Donate Follow@xiaomi_12tpro_updates Join@xiaomi12tpro_chat

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #571 · 02.03.2025 г., 06:10

The Clover Project - Official | Android 15 | Nothing Phone (2) 📝 Details: - Version: v2.3 - Device: #Pong - Released: 02/03/25 ⬇️ Download: Here 🎥 Screenshots : Here ⚙️ Flashing Instructions: Here 📖 Changelogs: Source | Device 🆘 Support : Here 🏷 Tags: #AOSP#ROM#QPR1#CloverProject#Official ✍️Notes: - Firmware is included - Dolby is included 🏆Credits: - Chandu for base DT - Ghost for Dolby and additional fixes - Fabian & HELLBOY for Glyph - HELLBOY for Meteoric Kernel 👤 Maintainer: @Superuser1958 🐙 Chat: @NothingPhone2 🔔 Updates: @NothingPhone2Updates

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #553 · 05.02.2025 г., 18:08

Pixelage Official | Android 15 | Nothing Phone (2) ✍️ Details: - Version: 2.5 - Codename: #Pong - Released: 5/2/25 🔽 Download: Here | Mirror 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#pixelage#V#qpr1 ✨ Changelogs - switched to a different tree - clean flash recommended ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - gapps inbuilt, don't flash gapps 🏆 Credits - @Ghosuto7 for trees - Fabian for PA Glyph Implementation 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #524 · 23.01.2025 г., 08:38

Pixelage Official | Android 15 | Nothing Phone (2) ✍️ Details: - Version: 2.4 - Codename: #Pong - Released: 23/1/24 🔽 Download: [ Here ] (Sideload/Flash via orangefox recovery) 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#pixelage#V#qpr1 ✨ Changelogs - updated to NOS V3.0-250113-1723 ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - gapps inbuilt, don't flash gapps - IF CLEAN FLASHING MAKE SURE TO REMOVE SCEEEN LOCK FROM PREVIOUS ROM 🏆 Credits - Chandu for base DT - Hellboy for Meteoric kernel - Fabian for PA Glyph Implementation - Testers: @Devasee@notnaito 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

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