Why You Should Use Pydantic in 2024 | Tutorial

  Рет қаралды 79,031

ArjanCodes

ArjanCodes

Күн бұрын

Пікірлер: 96
@ArjanCodes
@ArjanCodes 8 ай бұрын
💡 Get my FREE 7-step guide to help you consistently design great software: arjancodes.com/designguide.
@zadstofun4554
@zadstofun4554 12 күн бұрын
@ArjanCodes there is an issue with pydantic that I only realized the fact that validators are classmethods does not mean one should use @classmethod if one does the @validator would not be executed this should be a big NO NO.
@Kaassap
@Kaassap 8 ай бұрын
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 8 ай бұрын
Pydantic is a lifesaver when dealing with messy/nested JSON data. I love it.
@coladock
@coladock 8 ай бұрын
Does dataclass provide same functionality with json?
@superuser8636
@superuser8636 8 ай бұрын
@@coladockuse sqlmodel. Thank me later
@ArjanCodes
@ArjanCodes 8 ай бұрын
Totally agree!!
@ticket-vision
@ticket-vision 3 ай бұрын
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. 🐍🐍
@Michael201078
@Michael201078 8 ай бұрын
Every time I see your video, I get new ideas about the code structure. Thanks a lot for your great job.
@ArjanCodes
@ArjanCodes 8 ай бұрын
Thank you for the kind comment, Michael :)
@ButchCassidyAndSundanceKid
@ButchCassidyAndSundanceKid 8 ай бұрын
I eagerly await the release of a new upload from Arjan every week. Never disappoints me.
@wesleydevries7415
@wesleydevries7415 8 ай бұрын
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 8 ай бұрын
@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 8 ай бұрын
😊
@verwindle-aka-Celeron
@verwindle-aka-Celeron 8 ай бұрын
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 8 ай бұрын
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 8 ай бұрын
Using breakpoints and the debug console of VS Code ? That gives you pretty much full control over runtime code and what is going on
@nickeldan
@nickeldan 8 ай бұрын
pydantic is one of the best Python packages I've ever used.
@stints
@stints 8 ай бұрын
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.
@timothytanner29
@timothytanner29 8 ай бұрын
Love pydantic, makes life much easier
@devanshkanda9618
@devanshkanda9618 8 ай бұрын
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 8 ай бұрын
I'm really glad to hear the video had a positive impact on your journey, Devan! Best wishes :)
@bayesian7404
@bayesian7404 25 күн бұрын
Arian great tutorial on Pydantic.
@stopznak86
@stopznak86 8 ай бұрын
Very informative. Can you/did you use pydantic for validation of sql queries?
@JusticeNDOU
@JusticeNDOU 3 ай бұрын
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
@vlntsolo
@vlntsolo 8 ай бұрын
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 8 ай бұрын
Glad you found it helpful!
@CoentraDZ
@CoentraDZ 8 ай бұрын
Pydantic 2 is much easier and cleaner than version 1, and thanks for clarifying this
@hodiks
@hodiks 8 ай бұрын
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?
@DrGreenGiant
@DrGreenGiant 8 ай бұрын
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 8 ай бұрын
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 8 ай бұрын
@@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.
@brunosompreee
@brunosompreee 8 ай бұрын
Awesome explanation as always Arjan! Thank you!!!
@ArjanCodes
@ArjanCodes 8 ай бұрын
Thank you for the kind comment, Bruno! Glad you liked it :)
@delayedd
@delayedd 8 ай бұрын
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
@ammadkhan4687
@ammadkhan4687 2 ай бұрын
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.
@GBOAC
@GBOAC 6 ай бұрын
6:43 line 58 why use a list comprehension when you can just provide a generator expression to join()?
@astronemir
@astronemir 6 ай бұрын
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 6 ай бұрын
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 😊.
@rhbvkleef
@rhbvkleef 8 ай бұрын
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 8 ай бұрын
Is django a right tool for making web APIs?
@fiimii77
@fiimii77 8 ай бұрын
@@matis9783 I recommend you use FastAPI instead of Django for APIs
@rhbvkleef
@rhbvkleef 8 ай бұрын
@@matis9783 if you ask me: with Ninja it is.
@AndreNitschke
@AndreNitschke 8 ай бұрын
How you handle uniques validations in combination with database in fastapi?
@SundarR-g4g
@SundarR-g4g 7 ай бұрын
What about the Marshmallow library In python, can you please post a video about that!!..
@MikeDeltgen
@MikeDeltgen 8 ай бұрын
used it recently to get environment variables.
@StinkyCatFarts
@StinkyCatFarts 7 ай бұрын
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.
@juanantonionavarrojimenez2966
@juanantonionavarrojimenez2966 8 ай бұрын
Fantastic video. Thank you.
@ArjanCodes
@ArjanCodes 8 ай бұрын
Glad you liked it, Juan!
@ESPViper100
@ESPViper100 8 ай бұрын
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 8 ай бұрын
You can use the field method alias parameter to assign the different field name types
@ESPViper100
@ESPViper100 8 ай бұрын
@@santoshmagadum7086 I know, but that's a workaround, not a good design.
@magno5157
@magno5157 4 ай бұрын
Can a field be a descriptor?
@ИванИваныч-н3у
@ИванИваныч-н3у 8 ай бұрын
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?
@frd85
@frd85 8 ай бұрын
nice video as always👍🏻
@ArjanCodes
@ArjanCodes 8 ай бұрын
Thank you so much!
@UNgineering
@UNgineering 8 ай бұрын
The new pydantic version is deprecating example field, now you need to use json_schema_extra={"example": "123"}
@ArjanCodes
@ArjanCodes 8 ай бұрын
Good to know!
@davidl3383
@davidl3383 8 ай бұрын
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 8 ай бұрын
I'm glad to hear that the video was useful, David!
@JusticeNDOU
@JusticeNDOU 3 ай бұрын
your discord is not loading
@agaxardev
@agaxardev 8 ай бұрын
I would like to know your opinion about SQLmodel for fastapi
@ArjanCodes
@ArjanCodes 8 ай бұрын
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.
@mraviteja22
@mraviteja22 8 ай бұрын
What about schematics for python
@erfanlab3728
@erfanlab3728 8 ай бұрын
I think you should make a video about django-ninja It is django with pydantic and it's mind-blowing
@TNeulaender
@TNeulaender 8 ай бұрын
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 8 ай бұрын
12:11 Oh and ellipses are no longer necessary for required fields. I think they're even discouraged
@youtubeenjoyer1743
@youtubeenjoyer1743 3 ай бұрын
i suggest compiled fastjsonschema for deeply nested messy data
@priteshsingh4055
@priteshsingh4055 8 ай бұрын
i use attrs !
@markokraljevic1590
@markokraljevic1590 7 ай бұрын
you should had made analogy with zod
@smwaqarulhaq
@smwaqarulhaq 8 ай бұрын
how you gonna write the test cases for them ?
@juanjosefarina
@juanjosefarina 8 ай бұрын
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.
@hubstrangers3450
@hubstrangers3450 8 ай бұрын
Thank you....
@DmitryPitik
@DmitryPitik 12 күн бұрын
thx
@kunalmundada8754
@kunalmundada8754 8 ай бұрын
Pydantic is epic, if it was fighting elections. He would win single handedly, cause there's no opposition.
@youtubeenjoyer1743
@youtubeenjoyer1743 3 ай бұрын
why use pydantic when you can... just check the types with the isinstance() function?
@BealleMoriniE
@BealleMoriniE 3 ай бұрын
Miller Kenneth Jackson Brenda Brown Timothy
@00xero
@00xero 8 ай бұрын
Good video! The North face is racist
@gardnmi
@gardnmi 8 ай бұрын
But you shouldn't be using poetry.
@randomprocastinator7890
@randomprocastinator7890 8 ай бұрын
Why?
@Michallote
@Michallote 15 күн бұрын
It's very flawed, uv is a much better solution. Also poetry did some very questionable things with versioning. Like randomly raise an error (literally pick a random number and throw an exception instead of deprecation warning)
@Michallote
@Michallote 15 күн бұрын
It's very flawed, uv is a much better solution. Also poetry did some very questionable things with versioning. Like randomly raise an error (literally pick a random number and throw an exception instead of deprecation warning)
@tembelg.gr.4486
@tembelg.gr.4486 8 ай бұрын
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 8 ай бұрын
you can try beanie-odm☺
Visual Studio Code Extensions for Backend Development in 2024
11:20
7 Python Code Smells to AVOID at All Costs
22:10
ArjanCodes
Рет қаралды 375 М.
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 115 МЛН
Чистка воды совком от денег
00:32
FD Vasya
Рет қаралды 1,9 МЛН
Как Я Брата ОБМАНУЛ (смешное видео, прикол, юмор, поржать)
00:59
Натурал Альбертович
Рет қаралды 4,9 МЛН
How Many Balloons To Make A Store Fly?
00:22
MrBeast
Рет қаралды 142 МЛН
Avoid These BAD Practices in Python OOP
24:42
ArjanCodes
Рет қаралды 74 М.
Requests vs HTTPX vs Aiohttp
15:11
ArjanCodes
Рет қаралды 39 М.
Do We Still Need Dataclasses? // PYDANTIC Tutorial
16:33
ArjanCodes
Рет қаралды 202 М.
SQLModel + FastAPI: Say Goodbye to Repetitive Database Code
19:50
Pydantic (V2) - In-depth Starter Guide
1:13:20
MathByte Academy
Рет қаралды 15 М.
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 287 М.
15 POWERFUL Python Libraries You Should Be Using
22:31
ArjanCodes
Рет қаралды 58 М.
Protocols vs ABCs in Python - When to Use Which One?
15:31
ArjanCodes
Рет қаралды 42 М.
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 115 МЛН