Access your Amazon S3 buckets from the shell
Here's a group of Python scripts I wrote which can be used to copy/delete files in Amazon S3.
They use the boto library, and so they require it
to be installed. You can install boto using pip:
pip install boto
The scripts read your AWS Credentials from a ~/.creds file placed in your home directory. The
.creds file should contain this text:
[AWS Credentials]
secretKey=<secretKey>
accessKey=<accessKey>
where of course you replace the values inside the <> with your actual secret key and access key.
Will probably add more features later on.