Hacker News new | ask | show | jobs
by thenipper 1254 days ago
- Pydantic: basically it might as well be part of the standard library for me - I'm excited by polars as a potential pandas replacement - Speaking of pandas i really like pandera and how it integrates with both pandas and pydantic
1 comments

Why use Pydantic instead of dataclasses?
Pydantic can do validation. There’s also the related Typer, which builds command line interfaces from the type annotations on your entry point
You might also want to look at https://www.attrs.org, which is basically what dataclasses were supposed to be.