示例#1
0
def delete_from_s3(key):
    conn = Connection()
    return conn.delete_object_from_s3(key)
示例#2
0
def get_from_s3(key):
    conn = Connection()
    return conn.get_object_from_s3(key)
示例#3
0
def get_from_s3_to_filename(key, filename):
    conn = Connection()
    return conn.get_object_from_s3_to_filename(key, filename)
示例#4
0
def send_to_s3(key, filename):
    conn = Connection()
    filepath = os.path.join(settings.MEDIA_ROOT, filename)
    return conn.upload_object_to_s3(key, filepath)
示例#5
0
def delete_from_s3(key):
    conn = Connection()
    return conn.delete_object_from_s3(key)
示例#6
0
def get_from_s3_to_filename(key, filename):
    conn = Connection()
    return conn.get_object_from_s3_to_filename(key, filename)
示例#7
0
def get_from_s3(key):
    conn = Connection()
    return conn.get_object_from_s3(key)
示例#8
0
def send_to_s3(key, filename):
    conn = Connection()
    filepath = os.path.join(settings.MEDIA_ROOT, filename)
    return conn.upload_object_to_s3(key, filepath)