Use sqlite3 to build a embedded database in Python
Introduction
SQLite is a embedded database that is different from a general server-client structure database. SQLite is integrated into the application. If the data is relatively fixed and the amount is small, then SQLite can be said to be more appropriate.
Read More »Use sqlite3 to build a embedded database in Python