missing file

This commit is contained in:
Ari Brown 2023-08-03 13:46:02 -04:00
parent 6fd32f9bd3
commit f6c1a15b4e

14
minerva/minerva.py Normal file
View file

@ -0,0 +1,14 @@
import boto3
import minerva as m
class Minerva:
def __init__(self, profile):
self.session = boto3.session.Session(profile_name=profile)
self.s3 = m.S3(self)
def athena(self, *args, **kwargs):
return m.Athena(self, *args, **kwargs)
def redshift(self, *args, **kwargs):
return m.Redshift(self, *args, **kwargs)