▲ | JackSlateur 5 days ago | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
My pydantic models represent a "Thing" (a concept or whatever), not an input You can translate many things into a Thing, model_validate will help you with that (with contextinfo etc) You can translate your Thing into multiple output format, with model_serialize In your model, you shall put every checks required to ensure that some input are, indeed, a Thing And from there, you can use this object everywhere, certain that this is, indeed, a Thing, and that it has all the properties that makes a thing a Thing | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | BiteCode_dev 4 days ago | parent [-] | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
You can certainly do it, but since serialization and validation are the main benefit from using Pydantic, I/O are why it exists. Outside of I/O, the whole machinery has little use. And since pydantic models are used by introspection to build APIs, automatic deserializer and arg parsing, making it fit the I/O is where the money is. Also, remember that despite all the improved perf of pydantic recently, they are still more expensive than dataclass, themselves more than classes. They are 8 times more expensive to instanciate than regular classes, but above all, attribute access is 50% slower. Now I get that in Python this is not a primary concern, but still, pydantic is not a free lunch. I'd say it's also important to state what it conveys. When I see a Pydantic objects, I expect some I/O somewhere. Breaking this expectation would take me by surprise and lower my trust of the rest of the code. Unless you are deep in defensive programming, there is no reason to validate input far from the boundaries of the program. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|