forked from bellwether/minerva
14 lines
362 B
Python
14 lines
362 B
Python
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)
|
|
|