Skip to main content

MinIO Python Library for Amazon S3 Compatible Cloud Storage for Python

Project description

MinIO Python Library for Amazon S3 Compatible Cloud Storage Slack

The MinIO Python Client SDK provides simple APIs to access any Amazon S3 compatible object storage server.

This quickstart guide will show you how to install the client SDK and execute an example python program. For a complete list of APIs and examples, please take a look at the Python Client API Reference documentation.

This document assumes that you have a working Python setup in place.

Minimum Requirements

  • Python 2.7 or higher

Download from pip

pip install minio

Download from pip3

pip3 install minio

Download from source

git clone https://github.com/minio/minio-py
cd minio-py
python setup.py install

Initialize MinIO Client

You need four items in order to connect to MinIO object storage server.

Params Description
endpoint URL to object storage service.
access_key Access key is like user ID that uniquely identifies your account.
secret_key Secret key is the password to your account.
secure Set this value to 'True' to enable secure (HTTPS) access.
from minio import Minio
from minio.error import ResponseError

minioClient = Minio('play.min.io:9000',
                  access_key='Q3AM3UQ867SPQQA43P2F',
                  secret_key='zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG',
                  secure=True)

Quick Start Example - File Uploader

This example program connects to a MinIO object storage server, makes a bucket on the server and then uploads a file to the bucket.

We will use the MinIO server running at https://play.min.io:9000 in this example. Feel free to use this service for testing and development. Access credentials shown in this example are open to the public.

file-uploader.py

# Import MinIO library.
from minio import Minio
from minio.error import (ResponseError, BucketAlreadyOwnedByYou,
                         BucketAlreadyExists)

# Initialize minioClient with an endpoint and access/secret keys.
minioClient = Minio('play.min.io:9000',
                    access_key='Q3AM3UQ867SPQQA43P2F',
                    secret_key='zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG',
                    secure=True)

# Make a bucket with the make_bucket API call.
try:
       minioClient.make_bucket("maylogs", location="us-east-1")
except BucketAlreadyOwnedByYou as err:
       pass
except BucketAlreadyExists as err:
       pass
except ResponseError as err:
       raise
else:
        # Put an object 'pumaserver_debug.log' with contents from 'pumaserver_debug.log'.
        try:
               minioClient.fput_object('maylogs', 'pumaserver_debug.log', '/tmp/pumaserver_debug.log')
        except ResponseError as err:
               print(err)

Run file-uploader

python file_uploader.py

mc ls play/maylogs/
[2016-05-27 16:41:37 PDT]  12MiB pumaserver_debug.log

API Reference

The full API Reference is available here.

API Reference : Bucket Operations

API Reference : Bucket policy Operations

API Reference : Bucket notification Operations

API Reference : File Object Operations

API Reference : Object Operations

API Reference : Presigned Operations

Full Examples

Full Examples : Bucket Operations

Full Examples : Bucket policy Operations

Full Examples: Bucket notification Operations

Full Examples : File Object Operations

Full Examples : Object Operations

Full Examples : Presigned Operations

Explore Further

Contribute

Contributors Guide

PYPI Build Status Build status

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

minio-4.0.17.tar.gz (95.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

minio-4.0.17-py3.5.egg (109.1 kB view details)

Uploaded Egg

minio-4.0.17-py2.py3-none-any.whl (54.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file minio-4.0.17.tar.gz.

File metadata

  • Download URL: minio-4.0.17.tar.gz
  • Upload date:
  • Size: 95.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.2

File hashes

Hashes for minio-4.0.17.tar.gz
Algorithm Hash digest
SHA256 0fb1faab701008a1ff05b9b2497b6ba52d1aff963323356ed86f2771b186db6b
MD5 3a2fb6739d81e536000c2a3f1a61cf45
BLAKE2b-256 cff16f64a1d1ebb7f8856eba6172aa2f4e5f9b09e058b18abaf3460acfcf43de

See more details on using hashes here.

File details

Details for the file minio-4.0.17-py3.5.egg.

File metadata

  • Download URL: minio-4.0.17-py3.5.egg
  • Upload date:
  • Size: 109.1 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.2

File hashes

Hashes for minio-4.0.17-py3.5.egg
Algorithm Hash digest
SHA256 f2264e56b73f120d9bb13cde4483a8e6a2b4209530500edbd395fa1929d09120
MD5 ef37110cab91e9d2c59ece37facb0073
BLAKE2b-256 d9b30b9d1baa07293b9440e9b977744b7b1f45600b7288c156549f66b48fdac6

See more details on using hashes here.

File details

Details for the file minio-4.0.17-py2.py3-none-any.whl.

File metadata

  • Download URL: minio-4.0.17-py2.py3-none-any.whl
  • Upload date:
  • Size: 54.8 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.2

File hashes

Hashes for minio-4.0.17-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9c3292d9d6fa2a9abca6e8deb81f3873b0d8076eb18c2d80423c45147e744f70
MD5 839dd65e13f2d6bb12d831d2d04647d6
BLAKE2b-256 c8bd9fe50024059e871e65ad05385d1f0a6037308d7ccd8a302adf4699d58305

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page