Y
Hacker News
new
|
ask
|
show
|
jobs
by
reactordev
275 days ago
Exactly this. From SQL Alchemy to pydantic model, from pydantic model to pydantic dto, from pydantic dto to json/protobuf/binary to ship over the wire…
1 comments
morkalork
275 days ago
Okay, so seeing pydantic types used in every part of an app not just the API layer is normal.
link
reactordev
275 days ago
Yes. It’s the only way to ensure typing in a dynamic typed world. You can attrs, you can validate, but pydantic does it all.
link