To code along to this simple SQLite db interactions with Python, be sure to have a recent version of Python installed.
Also, create and activate a dedicated venv for your project:
$ python3 -m venv v1
$ source v1/bin/activateInstall Faker (for synthetic data generation):
$ pip3 install FakerThis folder contains code snippets to:
- Connect to an SQLite Db and create tables
- CRUD operations
- Perform simple filtering using WHERE clause