> ... Python dot not have anything in the standard library that supports database interaction, this has always been a problem for the community to solve.
Python also has the DBAPI specification, which defines what interface a library must support to be considered a database driver. The author claiming Go’s sql package encourages writing SQL directly while Python doesn’t really seems a bit awkward.
Python has built-in support for SQLite in the standard library: https://docs.python.org/3/library/sqlite3.html