Metadata-Version: 1.1
Name: minio
Version: 0.2.1
Summary: Minimal Object Storage Library for Python
Home-page: https://github.com/minio/minio-py
Author: Minio, Inc.
Author-email: dev@minio.io
License: Apache License 2.0
Download-URL: https://github.com/minio/minio-py
Description: # Minimal object storage library for Python
        
        ## Install
        
        The recommended technique for installing this package is through pip.
        
        ```sh
        $ pip install minio
        ```
        
        ## Example
        
        ```python
        #!/usr/bin/env python
        
        from minio.minio import Minio
        
        # Instantiate a client
        client = Minio('https://s3.amazonaws.com',
                        access_key='access_key',
                        secret_key='secret_key')
        
        # List buckets
        buckets = client.list_buckets()
        for bucket in buckets:
            print 'bucket:', bucket.name, bucket.creation_date
        
        ```
        
        ## Join The Community
        * Community hangout on Gitter   https://gitter.im/minio/minio
        * Ask questions on Quora  https://www.quora.com/Minio
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
