Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
capjamesg authored Oct 16, 2024
1 parent 9170c84 commit c950ab2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pip install git+https://github.com/capjamesg/jamesql

Here is a quickstart with a string-based query:

```
```python
from jamesql import JameSQL

index = JameSQL.load()
Expand All @@ -58,6 +58,16 @@ To create a database, use the following code:
```python
from jamesql import JameSQL

index = JameSQL()
```

### Load a database

To load the database you initialized in your last session, use the following code:

```python
from jamesql import JameSQL

index = JameSQL.load()
```

Expand Down

0 comments on commit c950ab2

Please sign in to comment.