1import sqlite3
2
3# The shared cache is only available in SQLite versions 3.3.3 or later
4# See the SQLite documentation for details.
5
6sqlite3.enable_shared_cache(True)
7