Metadata-Version: 2.0
Name: minio
Version: 0.2.4
Summary: Minio Python Library for Amazon S3 compatible cloud storage 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
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
Requires-Dist: urllib3
Requires-Dist: pytz
Requires-Dist: certifi

# Minio Python Library for Amazon S3 compatible cloud storage

## 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


