Metadata-Version: 1.1
Name: openS3
Version: 0.1.2
Summary: A pythonic way to upload and download from AWS S3.
Home-page: http://github.com/logston/openS3
Author: Paul Logston
Author-email: code@logston.me
License: Copyright (c) 2014, Paul
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


Description: openS3
        ======
        
        Python 3 & AWS S3
        
        Status
        ------
        
        |docs|
        
        Installation
        ============
        
        ::
        
           $ pip install openS3
        
        Usage
        =====
        
        ::
        
            >>> from openS3 import OpenS3
            >>>
            >>> openS3 = OpenS3('my_bucket', '<access_key>', '<secret_key>')
            ... with openS3('/my/object/key.txt', mode='w') as fd:
            ...     fd.write('Yeah! Files going up to S3!')
            >>>
            >>> # Let's create a new OpenS3 object so we know we are not
            >>> # just printing saved state attached to the previous OpenS3 object.
            >>> openS3 = OpenS3('my_bucket', '<access_key>', '<secret_key>')
            ... with openS3('/my/object/key.txt') as fd:
            ...     print(fd.read())
            b'Yeah! Files going up to S3!'
        
        
        Further Documentation
        =====================
        
        Further documentation can be found on `Read the Docs`_.
        
        .. _Read the Docs: http://opens3.readthedocs.org/en/latest/
        
        .. |docs| image:: https://readthedocs.org/projects/opens3/badge/
            :alt: Documentation Status
            :scale: 100%
            :target: http://opens3.readthedocs.org/en/latest/
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Utilities
