|
|
@ -6,6 +6,8 @@ This file is a wrapper around s3 bucket provided by AWS for reading and writing
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
from datetime import datetime
|
|
|
|
from datetime import datetime
|
|
|
|
import boto
|
|
|
|
import boto
|
|
|
|
|
|
|
|
from boto.s3.connection import S3Connection, OrdinaryCallingFormat
|
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
import botocore
|
|
|
|
import botocore
|
|
|
|
from smart_open import smart_open
|
|
|
|
from smart_open import smart_open
|
|
|
|
import sys
|
|
|
|
import sys
|
|
|
@ -14,13 +16,14 @@ if sys.version_info[0] > 2 :
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
from common import Reader, Writer
|
|
|
|
from common import Reader, Writer
|
|
|
|
import json
|
|
|
|
import json
|
|
|
|
|
|
|
|
from io import StringIO
|
|
|
|
|
|
|
|
import json
|
|
|
|
|
|
|
|
|
|
|
|
class s3 :
|
|
|
|
class s3 :
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
@TODO: Implement a search function for a file given a bucket??
|
|
|
|
@TODO: Implement a search function for a file given a bucket??
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
def __init__(self,args) :
|
|
|
|
def __init__(self,**args) :
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
This function will extract a file or set of files from s3 bucket provided
|
|
|
|
This function will extract a file or set of files from s3 bucket provided
|
|
|
|
@param access_key
|
|
|
|
@param access_key
|
|
|
@ -29,18 +32,39 @@ class s3 :
|
|
|
|
@param filter filename or filtering elements
|
|
|
|
@param filter filename or filtering elements
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
self.s3 = boto.connect_s3(args['access_key'],args['secret_key'])
|
|
|
|
self.s3 = S3Connection(args['access_key'],args['secret_key'],calling_format=OrdinaryCallingFormat())
|
|
|
|
self.bucket = self.s3.get_bucket(args['bucket'].strip(),validate=False) if 'bucket' in args else None
|
|
|
|
self.bucket = self.s3.get_bucket(args['bucket'].strip(),validate=False) if 'bucket' in args else None
|
|
|
|
# self.path = args['path']
|
|
|
|
# self.path = args['path']
|
|
|
|
self.filter = args['filter'] if 'filter' in args else None
|
|
|
|
self.filter = args['filter'] if 'filter' in args else None
|
|
|
|
self.filename = args['file'] if 'file' in args else None
|
|
|
|
self.filename = args['file'] if 'file' in args else None
|
|
|
|
|
|
|
|
self.bucket_name = args['bucket'] if 'bucket' in args else None
|
|
|
|
|
|
|
|
|
|
|
|
except Exception as e :
|
|
|
|
except Exception as e :
|
|
|
|
self.s3 = None
|
|
|
|
self.s3 = None
|
|
|
|
self.bucket = None
|
|
|
|
self.bucket = None
|
|
|
|
print (e)
|
|
|
|
print (e)
|
|
|
|
|
|
|
|
def meta(self,**args):
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
:name name of the bucket
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
info = self.list(**args)
|
|
|
|
|
|
|
|
[item.open() for item in info]
|
|
|
|
|
|
|
|
return [{"name":item.name,"size":item.size} for item in info]
|
|
|
|
|
|
|
|
def list(self,**args):
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
This function will list the content of a bucket, the bucket must be provided by the name
|
|
|
|
|
|
|
|
:name name of the bucket
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
return list(self.s3.get_bucket(args['name']).list())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def buckets(self):
|
|
|
|
def buckets(self):
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
# This function will return all buckets, not sure why but it should be used cautiously
|
|
|
|
|
|
|
|
# based on why the s3 infrastructure is used
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
return [item.name for item in self.s3.get_all_buckets()]
|
|
|
|
|
|
|
|
|
|
|
|
# def buckets(self):
|
|
|
|
# def buckets(self):
|
|
|
|
pass
|
|
|
|
pass
|
|
|
|
# """
|
|
|
|
# """
|
|
|
@ -56,8 +80,8 @@ class s3Reader(s3,Reader) :
|
|
|
|
- stream content if file is Not None
|
|
|
|
- stream content if file is Not None
|
|
|
|
@TODO: support read from all buckets, think about it
|
|
|
|
@TODO: support read from all buckets, think about it
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
def __init__(self,args) :
|
|
|
|
def __init__(self,**args) :
|
|
|
|
s3.__init__(self,args)
|
|
|
|
s3.__init__(self,**args)
|
|
|
|
def files(self):
|
|
|
|
def files(self):
|
|
|
|
r = []
|
|
|
|
r = []
|
|
|
|
try:
|
|
|
|
try:
|
|
|
@ -80,14 +104,32 @@ class s3Reader(s3,Reader) :
|
|
|
|
break
|
|
|
|
break
|
|
|
|
yield line
|
|
|
|
yield line
|
|
|
|
count += 1
|
|
|
|
count += 1
|
|
|
|
def read(self,limit=-1) :
|
|
|
|
def read(self,**args) :
|
|
|
|
if self.filename is None :
|
|
|
|
if self.filename is None :
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# returning the list of files because no one file was specified.
|
|
|
|
# returning the list of files because no one file was specified.
|
|
|
|
return self.files()
|
|
|
|
return self.files()
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
return self.stream(10)
|
|
|
|
limit = args['size'] if 'size' in args else -1
|
|
|
|
|
|
|
|
return self.stream(limit)
|
|
|
|
|
|
|
|
|
|
|
|
class s3Writer(s3,Writer) :
|
|
|
|
class s3Writer(s3,Writer) :
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self,args) :
|
|
|
|
def __init__(self,args) :
|
|
|
|
s3.__init__(self,args)
|
|
|
|
s3.__init__(self,args)
|
|
|
|
|
|
|
|
def mkdir(self,name):
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
This function will create a folder in a bucket
|
|
|
|
|
|
|
|
:name name of the folder
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
self.s3.put_object(Bucket=self.bucket_name,key=(name+'/'))
|
|
|
|
|
|
|
|
def write(self,content):
|
|
|
|
|
|
|
|
file = StringIO(content.decode("utf8"))
|
|
|
|
|
|
|
|
self.s3.upload_fileobj(file,self.bucket_name,self.filename)
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__' :
|
|
|
|
|
|
|
|
p = {'access_key':'AKIAJO7KII27XH3TCPJQ','secret_key':'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'}
|
|
|
|
|
|
|
|
reader = s3Reader(**p)
|
|
|
|
|
|
|
|
buckets = reader.buckets()
|
|
|
|
|
|
|
|
print(reader.list(name = buckets[0]))
|
|
|
|