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