Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.226.532 Times

POE::Component::Amazon::S3 0.01

  Date Added: November 04, 2010  |  Visits: 931

POE::Component::Amazon::S3

Report Broken Link
Printer Friendly Version


Product Homepage
Download (95 downloads)



POE::Component::Amazon::S3 is a Perl module to work with Amazon S3 using POE. SYNOPSIS use POE qw(Component::Amazon::S3); POE::Component::Amazon::S3->spawn( alias => s3, aws_access_key_id => your S3 id, aws_secret_access_key => your S3 key, ); ### Methods for working with buckets # List buckets, posts back to buckets_done with the result $kernel->post( s3 => buckets, buckets_done, ); # Add a bucket $kernel->post( s3 => add_bucket, add_bucket_done, { bucket => my-bucket, } ); # Delete a bucket, must be empty of all keys $kernel->post( s3 => delete_bucket, delete_bucket_done, { bucket => my-bucket, } ); # Set access control on a bucket, see below for more info about ACL $kernel->post( s3 => set_acl, set_acl_done, { bucket => my-bucket, acl_short => public-read, } ); # Get the access control list for a bucket $kernel->post( s3 => get_acl, get_acl_done, { bucket => my-bucket, } ); ### Methods for working with keys # Add a key with inline data $kernel->post( s3 => add_key, add_key_done, { bucket => my-bucket, key => my-inline-key, data => testing 123, } ); # Add a key with data from a file $kernel->post( s3 => add_key, add_key_done, { bucket => my-bucket, key => my-file-key, file => /path/to/large_file, } ); # List some keys, used for pagination $kernel->post( s3 => list_bucket, list_bucket_done, { bucket => my-bucket, max-keys => 10, }, ); # List all keys, may make multiple calls internally to list_bucket $kernel->post( s3 => list_bucket_all, list_bucket_all_done, { bucket => my-bucket, }, ); # Get a key, saving the contents in memory $kernel->post( s3 => get_key, get_key_done, { bucket => my-bucket key => my-inline-key, }, ); # Get a key, saving directly to a file $kernel->post( s3 => get_key, get_key_done, { bucket => my-bucket key => my-file-key, file => /tmp/my-file-key, }, ); # Get only the headers for a key $kernel->post( s3 => head_key, head_key_done, { bucket => my-bucket, key => my-inline-key, }, ); # Delete a key $kernel->post( s3 => delete_key, delete_key_done, { bucket => my-bucket, key => my-inline-key, }, ); # Set access control on a key, see below for more info about ACL $kernel->post( s3 => set_acl, set_acl_done, { bucket => my-bucket, key => my-inline-key, acl_short => public-read, } ); # Get the access control list for a key $kernel->post( s3 => get_acl, get_acl_done, { bucket => my-bucket, key => my-inline-key, } ); ### Return values # All methods post back to the given state with the same parameters, # return and response. Example: sub add_bucket_done { my ( $kernel, $return, $response ) = @_[ KERNEL, ARG0, ARG1 ]; # $return contains only the results of the call # $response contains the full HTTP::Response object from the call # See individual method documentation below for details on $return }.

Requirements: No special requirements
Platforms: Linux
Keyword: Access Control Acl Bucket Key Libraries List Perl Module Poe Post Programming
Users rating: 0/10

License: Freeware Size: 20.48 KB
USER REVIEWS
More Reviews or Write Review


POE::COMPONENT::AMAZON::S3 RELATED
Database Tools  -  PHP Generic Access Control List 3.3.7
PHP Generic Access Control List is a PHP class that offers Web developers a simple, yet immensely powerful "drop in" permission system for their current Web-based applications..
2.6 MB  
Modules  -  Taxonomy Access Control 1.0
This module does not provide taxonomy access control per individual user.InstallationUnpack in your modules folder (usually /sites/all/modules/) and enable under Administer > Site Building > Modules. Key features "Taxonomy Access Control": -...
 
Security Tools  -  Rule Set Based Access Control 1.3.5
Rule Set Based Access Control (RSBAC) is a Free Software security extension for current Linux kernels. Rule Set Based Access Control is based on the Generalized Framework for Access Control (GFAC) by Abrams and LaPadula and provides a flexible...
368.64 KB  
Utilities  -  Windows Azure Access Control Service Migration Tool 1.0
This tool enables customers with Windows Azure Access Control Service 1.0 namespaces to migrate them to Access Control Service 2.0. When using the ACS 1.0 Migration Tool to copy data between an ACS 1.0 namespace and an ACS 2.0 namespace, the tool...
 
Modules  -  Node Relativity Access Control 5.x-1.3 1.0
Node Relativity Access Control restricts access to nodes that are in relativity relationships. The module gives a user access to a node and all of its children. By default, each node's author is granted this access to children and grandchildren...
 
Libraries  -  Alien Perl module 0.91
Alien Perl module package contains external libraries wrapped up for your viewing pleasure! SYNOPSIS perldoc Alien; Alien is a package that exists just to hold together an idea, the idea of Alien:: packages, so there is no code here, just...
10.24 KB  
Libraries  -  OpenGeoDB Perl module 0.4
OpenGeDB Perl module is a module to access the OpenGeoDB database and calculate all ZIP codes in a certain radius..
3.07 KB  
Libraries  -  I18N::LangTags::List 0.35
I18N::LangTags::List Perl module contains tags and names for human languages. SYNOPSIS use I18N::LangTags::List; print "Parlez-vous... ", join(, , I18N::LangTags::List::name(elx) || unknown_language, I18N::LangTags::List::name(ar-Kw) ||...
30.72 KB  
Network & Internet  -  MyCMS perl module 1.0
MyCMS perl module provides the MN::CMS Perl module used by the MyCMS. MyCMS perl module contains Perl object classes to manage the data of MyCMS (such as articles, links, and images). MN::CMS is a perl module that allows you to manage an...
16.38 KB  
Libraries  -  Acme::EyeDrops 1.51
Acme::EyeDrops is a Perl module for visual programming in Perl. SYNOPSIS use Acme::EyeDrops qw(sightly); print sightly( { Shape => camel, SourceFile => eyesore.pl } ); Acme::EyeDrops converts a Perl program into an equivalent one, but...
102.4 KB  
NEW DOWNLOADS IN PROGRAMMING, LIBRARIES
Programming  -  Cedalion for Linux 0.2.6
Cedalion is a programming language that allows its users to add new abstractions and define (and use) internal DSLs. Its innovation is in the fact that it uses projectional editing to allow the new abstractions to have no syntactic limitations.
471.04 KB  
Programming  -  Math::GMPf 0.29
Math::GMPf - perl interface to the GMP library's floating point (mpf) functions.
30.72 KB  
Programming  -  Net::Wire10 1.08
Net::Wire10 is a Pure Perl connector that talks to Sphinx, MySQL and Drizzle servers. Net::Wire10 implements the low-level network protocol, alias the MySQL wire protocol version 10, necessary for talking to one of the aforementioned...
30.72 KB  
Programming  -  logilab-common 0.56.2
a bunch of modules providing low level functionnalities shared among some python projects devel Please note that some of the modules have some extra dependencies. For instance, logilab.common.db will require a db-api 2.0 compliant...
174.08 KB  
Programming  -  OpenSSL for linux 1.0.0a
The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a...
3.83 MB  
Libraries  -  wolfSSL 4.0.0
The wolfSSL embedded SSL/TLS library is a lightweight SSL library written in ANSI standard C and targeted for embedded and RTOS environments - primarily because of its small size, speed, and feature set. It is commonly used in standard operating...
3.88 MB  
Libraries  -  EuGTK 4.8.9
Makes it easy to develop good- looking, fast, cross-platform programs that run on Linux, OS X, and Windows. Euphoria is a very fast interpreted/compiled language with straight-forward syntax. EuGTK allows programming in a clean, object-oriented...
10.68 MB  
Libraries  -  Linux User Group Library Manager 1.0
The LUG Library Manager is a project to help Linux User Groups start their own library. A LUG library is helpful to the community at large because it increases access to information, and gives everyone the opportunity to become more knowledgeable.
5.35 KB  
Libraries  -  Module::MakefilePL::Parse 0.12
Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", ) ); $info = $parser->required;...
8.19 KB  
Libraries  -  sqlpp 0.06
sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also...
10.24 KB