PEP 249

SQLite

데이터베이스 연결

import sqlite3

conn = sqlite3.connect('test.db')
import sqlite3

conn = sqlite3.connect(':memory:')
cur = conn.cursor()