About SQLModel¶
As the website of SQLModel mentions:
Quote
SQLModel
, SQL databases in Python, designed for simplicity, compatibility, and robustness.
How and why do we use SQLModel¶
SQLModel
is used to create a simple and robust ORM for SQL databases. It is used to create models and interact with the database. It is a framework based on Pydantic
and SQLAlchemy
.
Install SQLModel¶
SQLModel can be installed using pip:
Configuration¶
The configuration of SQLModel 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).