Skip to content

Commit

Permalink
add short description of import and connect
Browse files Browse the repository at this point in the history
  • Loading branch information
rich-murphey committed Aug 23, 2019
1 parent 01e54bb commit fec67ca
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,19 @@ See [Appropriate Uses For SQLite](https://www.sqlite.org/whentouse.html) for mor

## Using the Library

Instead of 'import sqlite3', use:

from supersqlite import sqlite3

This retains compatibility with the sqlite3 package, while adding the various
enhancements.

### Connecting

Given the above import, connect to a sqlite database file using:

conn = sqlite3.connect('foo.db')

### Querying

### Remote Streaming over HTTP
Expand Down

0 comments on commit fec67ca

Please sign in to comment.