bug fix with s3 hierarchy

pull/1/head
Steve L. Nyemba 4 years ago
parent 4b49b0a060
commit c36b07073a

@ -8,12 +8,12 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read() return open(os.path.join(os.path.dirname(__file__), fname)).read()
args = { args = {
"name":"data-transport", "name":"data-transport",
"version":"1.2.8", "version":"1.3.0",
"author":"The Phi Technology LLC","author_email":"info@the-phi.com", "author":"The Phi Technology LLC","author_email":"info@the-phi.com",
"license":"MIT", "license":"MIT",
"packages":["transport"]} "packages":["transport"]}
args["keywords"]=['mongodb','couchdb','rabbitmq','file','read','write','s3','sqlite'] args["keywords"]=['mongodb','couchdb','rabbitmq','file','read','write','s3','sqlite']
args["install_requires"] = ['pymongo','numpy','cloudant','pika','boto','flask-session','smart_open'] args["install_requires"] = ['pymongo','numpy','cloudant','pika','boto','flask-session','smart_open','botocore']
args["url"] = "https://dev.the-phi.com/git/steve/data-transport.git" args["url"] = "https://dev.the-phi.com/git/steve/data-transport.git"
if sys.version_info[0] == 2 : if sys.version_info[0] == 2 :

@ -115,7 +115,7 @@ class s3Reader(s3,Reader) :
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): def mkdir(self,name):
""" """

Loading…
Cancel
Save