![]() |
Sign Up! | Tags | Domains | Statistics | Options | Advanced Search |
As mentioned last time, I released my first Perl module to the CPAN, called Tie::Amazon::S3. What it does is rather simple: it allows one to treat an Amazon S3 bucket as a Perl hash, like so: use Tie::Amazon::S3; tie my %bucket, 'Tie::Amazon::S3', $my_aws_id, $my_aws_passwd, $my_s3_bucket; # read a remote file to a scalar my $textfile = $bucket{textfile}; # write some text to a key … Continue Reading »