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',
                  access_key='Q3AM3UQ867SPQQA43P2F',
                  secret_key='zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG',
                  secure=True)

NOTE on concurrent usage: The Minio object is thread safe when using the Python threading library. Specifically, it is NOT safe to share it between multiple processes, for example when using multiprocessing.Pool. The solution is simply to create a new Minio object in each process, and not share it between processes.

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 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',
                    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

# 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 : Default bucket encryption configuration 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: Default bucket encryption configuration 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-5.0.9.tar.gz (112.3 kB view details)

Uploaded Source

Built Distributions

minio-5.0.9-py3.6.egg (142.7 kB view details)

Uploaded Egg

minio-5.0.9-py2.py3-none-any.whl (72.7 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: minio-5.0.9.tar.gz
  • Upload date:
  • Size: 112.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.9

File hashes

Hashes for minio-5.0.9.tar.gz
Algorithm Hash digest
SHA256 ba78e619088a87fd464a553086ff1eb1974e62ae3cbaa57a492eb3b62fb314b5
MD5 f930a89dda23f69da27067c66f032687
BLAKE2b-256 e5b079234c9610980e5d6d67268734a298dbcd8aa02b3bbaeba5e03d7e22aec7

See more details on using hashes here.

File details

Details for the file minio-5.0.9-py3.6.egg.

File metadata

  • Download URL: minio-5.0.9-py3.6.egg
  • Upload date:
  • Size: 142.7 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.9

File hashes

Hashes for minio-5.0.9-py3.6.egg
Algorithm Hash digest
SHA256 6de4a8d2c0616b757540782001e04f861823413a003007031348ea16afb49fe9
MD5 8be8d4c6edc2b3536c9cec6f30afc4f1
BLAKE2b-256 5b1349dbcde5c47187e7dadb5d0cccccda82127ba854acfc144796eede7e51d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: minio-5.0.9-py2.py3-none-any.whl
  • Upload date:
  • Size: 72.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.9

File hashes

Hashes for minio-5.0.9-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e9fff37cb2934f68a87abe343061cc789c5093b888fc4ed2328b991911b95ebc
MD5 a93838323eebe0534901d8aa33124591
BLAKE2b-256 4f43393b5901fee97afc8e40f8083b9d88d49c0f4557c2037f9b853d59da2d18

See more details on using hashes here.

Supported by

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