APSW 3.53.1.0 is now available. The project is at
https://github.com/rogerbinns/apsw which includes full documentation, source, installation information and more.
APSW is a wrapper around SQLite that provides all SQLite API functionality in Python. It is not DBAPI compliant as it provides SQLite semantics. sqlite3 provides DBAPI semantics. You can see the two approaches contrasted at
https://rogerbinns.github.io/apsw/pysqlite.html
Changelist is below and at
https://rogerbinns.github.io/apsw/changes.html
Async cursor iteration: Cursor attributes like bindings_names, sql, and is_readonly will always correctly reflect the current iterated row. Backwards incompatible change: description, get_description(), and description_full are now values - ie you can just use them directly and should not await them.
Roger