Data Starter Packs Link _best_: Sqlite

import sqlite3, datetime db = sqlite3.connect('notes.db') db.execute("PRAGMA foreign_keys = ON") cur = db.cursor() cur.execute("INSERT INTO notes (title, body) VALUES (?, ?)", ("My note", "Body")) db.commit() cur.execute("SELECT id, title, created_at FROM notes ORDER BY created_at DESC") for row in cur.fetchall(): print(row) db.close()

: Records of M3.0+ earthquakes in the contiguous U.S. from 1995 to 2015. sqlite data starter packs link

sqlite3 chinook.db

Daily updated (but you can grab a static starter version). Contains cases, deaths, vaccinations by country and date. import sqlite3, datetime db = sqlite3

Instead of starting with empty tables, you start with: body) VALUES (?