Example #1
0
def delete_from_s3(key):
    conn = Connection()
    return conn.delete_object_from_s3(key)
Example #2
0
def get_from_s3(key):
    conn = Connection()
    return conn.get_object_from_s3(key)
Example #3
0
def get_from_s3_to_filename(key, filename):
    conn = Connection()
    return conn.get_object_from_s3_to_filename(key, filename)
Example #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)
Example #5
0
def delete_from_s3(key):
    conn = Connection()
    return conn.delete_object_from_s3(key)
Example #6
0
def get_from_s3_to_filename(key, filename):
    conn = Connection()
    return conn.get_object_from_s3_to_filename(key, filename)
Example #7
0
def get_from_s3(key):
    conn = Connection()
    return conn.get_object_from_s3(key)
Example #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)