Make db schemas more radiable and apply SQLite improvements (e.g., the use of sqlite3.Row for a better mapping). Right now it’s a bit confusing to access fields by their list/tuple index.
Example, change:
name = package[1]
to:
name = package['name'] or name = package.name
Solved here https://pagure.io/centos-sig-hyperscale/package-updates/pull-request/29
Metadata Update from @oidoming: - Issue status updated to: Closed (was: Open)