From 1bc6c06290a93bc299922c97dc2aef95be4f5d90 Mon Sep 17 00:00:00 2001 From: Ari Brown Date: Thu, 27 Jul 2023 14:17:11 -0400 Subject: [PATCH] updated readme to match new name --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bd5ea02..d0f11d1 100644 --- a/README.md +++ b/README.md @@ -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))