About Pydantic¶
As the website of Pydantic mentions:
Quote
Data validation and settings management using Python type annotations.
How and why do we use Pydantic¶
Pydantic
is used to create models and validate data. It is wrapped by SQLModel
to create models and interact with the database.
Install Pydantic¶
Pydantic can be installed using pip:
Configuration¶
The configuration of Pydantic is done through the models and the database connection.
Resources and alternatives¶
These resources and alternatives are related to the current item (in alphabetical order).