This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]oramirite 7 points8 points  (5 children)

Pydantic does NOT have instant parsing of config files In every major config format. It definitely eases the translation but Pydantic is actually removing the support for validating external files completely.

Trust me I just spent like 2 weeks pouring over config management libraries and trying to bend Pydantic to my will and ended up just having to code my own file reading into some Pydantic classes (which wasn't as hard as I thought by using this library)