Using SQLite to store, query and modify JSON data with full flexibility. Uson JSON
columns works best, if you need to support a flexible datamodel and during prototyping.
Read More
The sqlite3 module provides sqlite.Row for optimized mapping access by column
name, but you can achieve equivalent, lightweight behavior using collections.namedtuple.
Read More