Python SQLite: database is locked
I’m presuming you are actually using sqlite3 even though your code says otherwise. Here are some things to check: That you don’t have a hung process sitting on the file (unix: $ fuser cache.db should say nothing) There isn’t a cache.db-journal file in the directory with cache.db; this would indicate a crashed session that hasn’t … Read more