About SQLite¶
As the website of SQLite mentions:
Quote
SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine.
How and why do we use SQLite¶
We use databases to store data in a structured way. Our models are automatically created in the database using the SQLModel library. We use SQLite for development.
Install SQLite¶
SQLite is already installed in Python by default.
Configuration¶
None.
Resources and alternatives¶
These resources and alternatives are related to the current item (in alphabetical order).