updated readme for another test

This commit is contained in:
Ari Brown 2023-10-12 14:58:18 -04:00
parent 2a2ff94495
commit c2a702fb9d

View file

@ -3,12 +3,36 @@ Minerva is the Roman equivalent of Athena, and Athena is AWS's database that
stores results in S3. However, Minerva goes beyond that, and now eases all AWS stores results in S3. However, Minerva goes beyond that, and now eases all AWS
access, and even offers its own cluster management with Dask. access, and even offers its own cluster management with Dask.
## Athena
In order to ease programmatic access to Athena and offer blocking access (so In order to ease programmatic access to Athena and offer blocking access (so
that your code waits for the result), I wrote `minerva` to make it seamless. that your code waits for the result), I wrote `minerva` to make it seamless.
The results are returned as pyarrow datasets (with parquet files as the The results are returned as pyarrow datasets (with parquet files as the
underlying structure). underlying structure).
## Redshift
## S3
## EC2
## Cluster
## Dask
## Helpers
I wrote a `Timing` module to help with timing various functions:
```
with Timing("my cool test"):
long_function()
# Prints the following
#
# my cool test:
# => 32.45
```
# Basic Usage # Basic Usage
``` ```
import minerva as m import minerva as m