updated readme to match new name

This commit is contained in:
Ari Brown 2023-07-27 14:17:11 -04:00
parent a9954f2037
commit 1bc6c06290

View file

@ -10,9 +10,9 @@ underlying structure).
# Basic Usage
```
import access as a
import minerva as m
athena = a.Athena("hay", "s3://haystac-pmo-athena/")
athena = m.Athena("hay", "s3://haystac-pmo-athena/")
query = athena.query('select * from "trajectories"."kitware" limit 10')
data = query.results()
print(data.head(10))