Added import of SQLite3

This commit is contained in:
2015-07-06 11:28:32 -04:00
parent 749bf6d87f
commit 6f6b32fc04

View File

@ -14,6 +14,7 @@ Take a look here at Python's sqlite driver [documentation](https://docs.python.o
You need to establish a database and a cursor object.
```py
import sqlite3
conn = sqlite3.connect('mydb.db')
c = conn.cursor()
```