您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關MinIO Python SDK的下載以及運行過程,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
MinIO Python SDK是簡單存儲服務(aka S3)客戶端,用于對任何與Amazon S3兼容的對象存儲服務執行存儲桶和對象操作。
Python 3.6或更高版本。
pip3 install minio
git clone https://github.com/minio/minio-py cd minio-py python setup.py install
此示例程序連接到兼容S3的對象存儲服務器,在該服務器上創建存儲桶,然后將文件上傳到存儲桶。
您需要以下各項才能連接到S3兼容的對象存儲服務器:
參數說明 | 描述 |
---|---|
端點 | S3服務的URL。 |
訪問密鑰 | S3服務中帳戶的訪問密鑰(也稱為用戶ID)。 |
秘鑰 | S3服務中帳戶的秘密密鑰(也稱為密碼)。 |
本示例使用MinIO 測試站點[https://play.min.io](https://play.min.io)。隨意使用此服務進行測試和開發。
# 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)
$ python file_uploader.py '/home/user/Photos/asiaphotos.zip' is successfully uploaded as object 'asiaphotos-2015.zip' to bucket 'asiatrip'. $ mc ls play/asiatrip/ [2016-06-02 18:10:29 PDT] 82KiB asiaphotos-2015.zip
關于MinIO Python SDK的下載以及運行過程就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。