Pysqlite is a db-api 2.0-compliant database interface for sqlite.
sqlite is a relational database management system contained in a relatively small c library. it is a public domain project created by d. richard hipp. unlike the usual client-server paradigm, the sqlite engine is not a standalone process with which the program communicates, but is linked in and thus becomes an integral part of the program. the library implements most of sql-92 standard, including transactions, triggers and most of complex queries.
this package only contains the documentation.