SQLite is actually a database, though it just uses something like direct-write-to-file, which restricts SQLite for being used in Multithreaded Environments (each write operation on the sqlite db locks the whole db as opposed to row/table locking in other dbs, as its a filesystem lock).
Didnt know about that module, gotta have a look at that too