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.
Here are some useful JavaScript methods that unfortunately aren’t included in the standard library.
The trim function I got from a JavaScript lecture given by Douglas Crockford, the other two I wrote myself.