Spaces:
Runtime error
Runtime error
File size: 319 Bytes
8268752 | 1 2 3 4 5 6 7 8 9 10 | import os
class S3Sync:
def sync_folder_to_s3(self, folder, aws_bucket_url):
command = f"aws s3 sync {folder} {aws_bucket_url} "
os.system(command)
def sync_folder_from_s3(self, folder, aws_bucket_url):
command = f"aws s3 sync {aws_bucket_url} {folder} "
os.system(command) |