forked from bellwether/minerva
missing file
This commit is contained in:
parent
6fd32f9bd3
commit
f6c1a15b4e
1 changed files with 14 additions and 0 deletions
14
minerva/minerva.py
Normal file
14
minerva/minerva.py
Normal 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)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue