diff_classifier.aws
¶
diff_classifier.aws
¶
IO functions for downloading and uploading files from AWS S3 buckets.
The diff_classifier module was built to be used with conjunction with AWS services. With the exception of Cloudknot parallelization capabilities, most functions can be used separate from AWS. These functions faciliate interaction with files stores in S3 buckets. Users must have appropriate credentials to access desired S3 buckets.
-
diff_classifier.aws.
download_s3
(remote_fname, local_fname, bucket_name='ccurtis.data')[source]¶ Download a file from S3 to local file-system
Parameters: - remote_fname: string
Name of remote file in S3 bucket.
- local_fname: string
Desired name to be stored on local computer.
- bucket_name: string
Bucket name on S3.
-
diff_classifier.aws.
upload_s3
(local_fname, remote_fname, bucket_name='ccurtis.data')[source]¶ Upload a file from local file-system to S3.
Parameters: - local_fname: string
Name of local file stored on computer.
- remote_fname: string
Desired name to be stored in S3 bucket.
- bucket_name: string
Bucket name on S3.