Metadata-Version: 1.0
Name: pyawsbuckets
Version: 1.0.2
Summary: Handle Amazon S3 PUT/DELETE/sign interactions
Home-page: http://packages.python.org/pyawsbuckets
Author: Mark Henwood
Author-email: mark@mcbh.co.uk
License: MIT
Description: Handle Amazon S3 interactions
        =============================
        
        Objects / files can be put in S3 and deleted from S3.  Also signed URLs
        can be generated to allow limited-time access to a particular object in an
        S3 bucket.
        
        Requires Python 2.6 or above.
        
        Available as Python package at http://pypi.python.org/pypi/pyawsbuckets
        
        Usage
        -----
        
        Initiate the access object with your credentials::
        
        from pyawsbuckets import AwsInterface
        aws_interface = AwsInterface(amazon_access_key, amazon_secret_key)
        
        Put an object into S3::
        
        aws_interface.put('https', 'bucket999', 'somefile.pdf', content)
        
        Delete an object from S3::
        
        aws_interface.delete('bucket999', 'somefile.pdf')
        
        Get a signed URL which gives access to a private object, but only for (e.g.) 15
        minutes::
        
        expiring_url = sign_object_request('https', 'bucket999', 'somefile.pdf', 15)
        
Keywords: amazon aws s3 buckets
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Utilities
