Server-less database engine that stores each database into separate file.
Opens a connection to the database file. Creates a new file if path doesn't exist.
import sqlite3
+#SQLite
Server-less database engine that stores each database into a separate file.
Connect
Opens a connection to the database file. Creates a new file if path doesn't exist.
import sqlite3
db = sqlite3.connect('<path>') # Also ':memory:'.
...
db.close()