SQLite

  * sudo apt install sqlite3
  * sudo apt install sqlitebrowser
import sqlite3
 
db = sqlite3.connect("/home/hispa/sqlite/test01.db3")
cur = db.cursor()
res = cur.execute("select * from familia")
for row in res:
    print (row)