I wrote a Python script which initializes an empty database if it doesn\'t exist.
import os if not os.path.exists(\'Database\'): os.makedirs(\'Database\')
I think you can do it like this:
import sqlite3 conn = sqlite3.connect('Database/testDB.db')
This should connect to your database and create it in case that it doesn't exist. I'm not sure this is the most pythonic way, but it does use the sqlite3 module instead of the sqlite3 command.
sqlite3