Why You Should Use Pydantic in 2024 | Tutorial

  Рет қаралды 74,775

ArjanCodes

ArjanCodes

Күн бұрын

Пікірлер: 90
@ArjanCodes
@ArjanCodes 7 ай бұрын
💡 Get my FREE 7-step guide to help you consistently design great software: arjancodes.com/designguide.
@Kaassap
@Kaassap 7 ай бұрын
Im currently making a datavalidation script using pydantic. Combining custom constrained annotations with the dynamic model creation per variable works like a charm!
@nogamenolife9182
@nogamenolife9182 7 ай бұрын
Pydantic is a lifesaver when dealing with messy/nested JSON data. I love it.
@coladock
@coladock 7 ай бұрын
Does dataclass provide same functionality with json?
@superuser8636
@superuser8636 7 ай бұрын
@@coladockuse sqlmodel. Thank me later
@ArjanCodes
@ArjanCodes 7 ай бұрын
Totally agree!!
@Michael201078
@Michael201078 7 ай бұрын
Every time I see your video, I get new ideas about the code structure. Thanks a lot for your great job.
@ArjanCodes
@ArjanCodes 7 ай бұрын
Thank you for the kind comment, Michael :)
@wesleydevries7415
@wesleydevries7415 7 ай бұрын
Arjan, as a Dutchy but also as a human being: thank you for all of these videos, including this one. However, I am still looking for a video where you properly explain how to use the debug tools in an IDE properly rather than just printing everything and using "if self.debug=true: print(f"Beautiful variable in this method"{variable}"). Do you perhaps have something in the pipeline for this?
@mytelevisionisdead
@mytelevisionisdead 7 ай бұрын
@wesleydevries7415 check out mCoding's recent video on debugging python in IDE's. I would specifically recommend using Pycharm for advanced debugging, it's unparalleled imho. Groeten!
@AndreaDalseno
@AndreaDalseno 7 ай бұрын
😊
@verwindle-aka-Celeron
@verwindle-aka-Celeron 7 ай бұрын
If talking about python, why not to use built-in IDE debugger. For instance, in vs code you'll find debugger shipped with python microsoft extension. I believe it's there. Which is triggered via F5 key. If there's no option to run debugger or you prefer to use prints, logging can be the solution. The minimal logging level to print during runtime (debug, info, warning) can be set by its config. IMO the loguru lib is the easiest solution to use for logging
@mytelevisionisdead
@mytelevisionisdead 7 ай бұрын
Wow 😲 my comment referring to a video from another youtuber (mCoding) that has an excellent introduction to IDE python debugging got removed (by you(r team), @ArjanCodes? That doesn't sound like you at all somehow...) Anyway, make sure to check that out! And use Pycharm, it's awesome 😎
@juanjosefarina
@juanjosefarina 7 ай бұрын
Using breakpoints and the debug console of VS Code ? That gives you pretty much full control over runtime code and what is going on
@ticket-vision
@ticket-vision Ай бұрын
By utilizing `BeforeValidator`, `AfterValidator`, and `WrapValidator`, you can construct an Extract, Transform, and Load (ETL) pipeline directly within an 'Annotated' type hint. Additionally, you can achieve aggregated entity resolution by mapping known keys to a JSON field using `AliasChoices`, and serialize the parsed response within a single model from as many data sources as you need. Create trigger conditions using discriminated unions and fully automate processing procedures like OpenAI Vector Stores. 🐍🐍
@ButchCassidyAndSundanceKid
@ButchCassidyAndSundanceKid 7 ай бұрын
I eagerly await the release of a new upload from Arjan every week. Never disappoints me.
@nickeldan
@nickeldan 7 ай бұрын
pydantic is one of the best Python packages I've ever used.
@stints
@stints 7 ай бұрын
I know I sound like a broken record in these comments but I really wish msgspec would gain the same traction. Does everything pydantic does but better.
@devanshkanda9618
@devanshkanda9618 7 ай бұрын
Thanks arjan! Again a great video. I didn't knew about pydantic before and after watching this video, i will surely use this in my projects and make this an addon to my dev toolkit. Again thanks for this awesome knowledge! 😀
@ArjanCodes
@ArjanCodes 7 ай бұрын
I'm really glad to hear the video had a positive impact on your journey, Devan! Best wishes :)
@timothytanner29
@timothytanner29 7 ай бұрын
Love pydantic, makes life much easier
@stopznak86
@stopznak86 7 ай бұрын
Very informative. Can you/did you use pydantic for validation of sql queries?
@brunosompreee
@brunosompreee 7 ай бұрын
Awesome explanation as always Arjan! Thank you!!!
@ArjanCodes
@ArjanCodes 7 ай бұрын
Thank you for the kind comment, Bruno! Glad you liked it :)
@vlntsolo
@vlntsolo 7 ай бұрын
Just saw for the first time that it's possible to use python primitive types in the dictionary as keys... Learning never ends. That's neat, thanks!
@ArjanCodes
@ArjanCodes 7 ай бұрын
Glad you found it helpful!
@ammadkhan4687
@ammadkhan4687 Ай бұрын
Hi Arjan I have a question regarding python processes. I am diving in to learn elixir. But I am wonderung if the similar functionality we can achieve from python? Especially all processes are like having individual dashboard to monitor the performance and self healing concept. Thanks in advance.
@CoentraDZ
@CoentraDZ 7 ай бұрын
Pydantic 2 is much easier and cleaner than version 1, and thanks for clarifying this
@astronemir
@astronemir 5 ай бұрын
Miss your more long form, typing the code included videos 😊. The click clack is unbeatable. But it feels like those videos stick way more!
@ArjanCodes
@ArjanCodes 5 ай бұрын
I actually also miss doing those myself. We’re making a few changes at the moment to (partly) return to the style of the older videos. So stay tuned 😊.
@JusticeNDOU
@JusticeNDOU 2 ай бұрын
Thanks was having a problem upgrading from pydantic 1.9 to 2.8 seeminly some of the modules i wanted to use needed 2.8 - the headache was i could not understand why optional no longer worked - now i get it i had to specifically set the Field Value of all Optional Fields to None
@DrGreenGiant
@DrGreenGiant 7 ай бұрын
Can you create your own types, like the EmailStr, so that they can be used in multiple classes? I feel like this would help reduce the massive class bloat for the final data container and help reusability. (Particularly my use case which would be laden with numpy fields!) Also, is pydantic still really slow when compared like for like against dataclasses and attrs?
@juanjosefarina
@juanjosefarina 7 ай бұрын
That's what the BaseModel stands for, doesn't it ? You can create your own custom string type, or int type, or anything else you wish, and change every behaviour of the type (and also its validation, thanks to pydantic)
@DrGreenGiant
@DrGreenGiant 7 ай бұрын
@@juanjosefarina ah so you'd basically nest types and it's solved recursively?? Ty! Definitely going to take a look and see how it runs on my embedded stuff. I'm using dataclasses at the moment which are nice and quick, even though I'm locked on 3.8 so no slots.
@delayedd
@delayedd 7 ай бұрын
Do you have an example of after creation there is a change in the value? To Validate or change the information. Example: set a new password in example2
@SundarR-g4g
@SundarR-g4g 6 ай бұрын
What about the Marshmallow library In python, can you please post a video about that!!..
@juanantonionavarrojimenez2966
@juanantonionavarrojimenez2966 6 ай бұрын
Fantastic video. Thank you.
@ArjanCodes
@ArjanCodes 6 ай бұрын
Glad you liked it, Juan!
@GBOAC
@GBOAC 5 ай бұрын
6:43 line 58 why use a list comprehension when you can just provide a generator expression to join()?
@rhbvkleef
@rhbvkleef 7 ай бұрын
Ninja is also interesting to know about, in my opinion. It really is a life-saver for those of us who live in the Django world.
@matis9783
@matis9783 7 ай бұрын
Is django a right tool for making web APIs?
@fiimii77
@fiimii77 7 ай бұрын
@@matis9783 I recommend you use FastAPI instead of Django for APIs
@rhbvkleef
@rhbvkleef 7 ай бұрын
@@matis9783 if you ask me: with Ninja it is.
@hodiks
@hodiks 7 ай бұрын
Hello, @ArjanCodes, can I ask you use, classmethod decorator in validator methods even if you don't need need class instance in code ("cls")?? Wouldn't it be better to use staticmethod?
@frd85
@frd85 7 ай бұрын
nice video as always👍🏻
@ArjanCodes
@ArjanCodes 7 ай бұрын
Thank you so much!
@davidl3383
@davidl3383 7 ай бұрын
Thank you Arjan ! I love pydantic with FatsApi, my only fault was putting too much business logic into it and not knowing where the data transformation was taking place :)
@ArjanCodes
@ArjanCodes 7 ай бұрын
I'm glad to hear that the video was useful, David!
@AndreNitschke
@AndreNitschke 7 ай бұрын
How you handle uniques validations in combination with database in fastapi?
@MikeDeltgen
@MikeDeltgen 7 ай бұрын
used it recently to get environment variables.
@priteshsingh4055
@priteshsingh4055 7 ай бұрын
i use attrs !
@StinkyCatFarts
@StinkyCatFarts 6 ай бұрын
For some reason making compositions and accessing attributes from nested models just doesn’t seem to work the way it’s supposed to. I know my models work because I can query them in any other validation library.
@magno5157
@magno5157 3 ай бұрын
Can a field be a descriptor?
@ESPViper100
@ESPViper100 7 ай бұрын
Pydantic would be better, if it would have 1) proper serialising and deserialising and b) If it would have a proper way to convert to and from snake_case and CamelCase for python/JSON stuff.
@santoshmagadum7086
@santoshmagadum7086 7 ай бұрын
You can use the field method alias parameter to assign the different field name types
@ESPViper100
@ESPViper100 7 ай бұрын
@@santoshmagadum7086 I know, but that's a workaround, not a good design.
@hubstrangers3450
@hubstrangers3450 7 ай бұрын
Thank you....
@markokraljevic1590
@markokraljevic1590 6 ай бұрын
you should had made analogy with zod
@erfanlab3728
@erfanlab3728 7 ай бұрын
I think you should make a video about django-ninja It is django with pydantic and it's mind-blowing
@UNgineering
@UNgineering 7 ай бұрын
The new pydantic version is deprecating example field, now you need to use json_schema_extra={"example": "123"}
@ArjanCodes
@ArjanCodes 7 ай бұрын
Good to know!
@ИванИваныч-н3у
@ИванИваныч-н3у 7 ай бұрын
7:02 my teamlead will "kill" me for code like on lines 53-55, it's unreadable. Why do not you use a match statement?
@agaxardev
@agaxardev 7 ай бұрын
I would like to know your opinion about SQLmodel for fastapi
@ArjanCodes
@ArjanCodes 7 ай бұрын
I like the idea of the library, but I’m waiting to do a video about it until it catches up to the latest version of SQLAlchemy and Pydantic.
@TNeulaender
@TNeulaender 7 ай бұрын
With lots of models and some even nested ones pedantic is extremely slowing down our cold start time in the lambdas. Also with 3.12 + pydantic2 + fastapi and debug mode it sometimes takes up to a minute to start the application:/
@TNeulaender
@TNeulaender 7 ай бұрын
12:11 Oh and ellipses are no longer necessary for required fields. I think they're even discouraged
@youtubeenjoyer1743
@youtubeenjoyer1743 2 ай бұрын
i suggest compiled fastjsonschema for deeply nested messy data
@mraviteja22
@mraviteja22 7 ай бұрын
What about schematics for python
@JusticeNDOU
@JusticeNDOU 2 ай бұрын
your discord is not loading
@smwaqarulhaq
@smwaqarulhaq 7 ай бұрын
how you gonna write the test cases for them ?
@juanjosefarina
@juanjosefarina 7 ай бұрын
What do you mean how ? One way was pretty much everything he showed in the video, but you should be using pytest or other testing library.
@kunalmundada8754
@kunalmundada8754 7 ай бұрын
Pydantic is epic, if it was fighting elections. He would win single handedly, cause there's no opposition.
@youtubeenjoyer1743
@youtubeenjoyer1743 2 ай бұрын
why use pydantic when you can... just check the types with the isinstance() function?
@00xero
@00xero 7 ай бұрын
Good video! The North face is racist
@gardnmi
@gardnmi 7 ай бұрын
But you shouldn't be using poetry.
@randomprocastinator7890
@randomprocastinator7890 7 ай бұрын
Why?
@tembelg.gr.4486
@tembelg.gr.4486 7 ай бұрын
If you use data from mongodb is there better way to create instances of pydatic classes then getting binary json as dictionary and dictionary unpack into pydantic instance? I looked into creating pandas dataframes with PyMongoArrow but I'm not sure I need that clunk.
@urknidoj422
@urknidoj422 7 ай бұрын
you can try beanie-odm☺
Visual Studio Code Extensions for Backend Development in 2024
11:20
Do We Still Need Dataclasses? // PYDANTIC Tutorial
16:33
ArjanCodes
Рет қаралды 201 М.
Сюрприз для Златы на день рождения
00:10
Victoria Portfolio
Рет қаралды 2,1 МЛН
Стойкость Фёдора поразила всех!
00:58
МИНУС БАЛЛ
Рет қаралды 7 МЛН
"كان عليّ أكل بقايا الطعام قبل هذا اليوم 🥹"
00:40
Holly Wolly Bow Arabic
Рет қаралды 7 МЛН
Kluster Duo #настольныеигры #boardgames #игры #games #настолки #настольные_игры
00:47
15 POWERFUL Python Libraries You Should Be Using
22:31
ArjanCodes
Рет қаралды 19 М.
5 Signs of an Inexperienced Self-Taught Developer (and how to fix)
8:40
Should You Use Dependency Injection Frameworks?
14:43
ArjanCodes
Рет қаралды 44 М.
How much faster has Mojo's dictionary gotten?
7:40
EKB PhD
Рет қаралды 4,7 М.
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 279 М.
Python 3.12 Generic Types Explained
18:27
ArjanCodes
Рет қаралды 62 М.
The New Python 3.13 Is FINALLY Here!
20:39
ArjanCodes
Рет қаралды 61 М.
Just Use Pydantic
8:11
John Watson Rooney
Рет қаралды 25 М.
Сюрприз для Златы на день рождения
00:10
Victoria Portfolio
Рет қаралды 2,1 МЛН