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