Asynchronous MinIO Client SDK for Python
Project description
miniopy-async
Asynchronous MinIO Client SDK for Python
Catalogue
Declaration
- This project is based on Huseyn Mashadiyev's minio-async 1.0.0.
- This project has fixed some bugs of minio-async and added some new features.
- Miniopy-async 1.2 has been pulled requests to minio-async.
Minimum Requirements
- Python>3.6
Build from source
git clone https://github.com/hlf20010508/miniopy-async.git
cd miniopy-async
python setup.py install
Installation
Install with pip
PyPI
pip install miniopy-async
Github Repository
pip install git+https://github.com/hlf20010508/miniopy-async.git
Install with pipenv
PyPI
pipenv install miniopy-async
Github Repository
pipenv install "miniopy-async@ git+https://github.com/hlf20010508/miniopy-async.git"
Quick Start
from miniopy_async import Minio
import asyncio
client = Minio(
"play.min.io",
access_key="Q3AM3UQ867SPQQA43P2F",
secret_key="zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG",
secure=True # http for False, https for True
)
async def main():
url = await client.presigned_get_object("my-bucket", "my-object")
print('url:', url)
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()
from sanic import Sanic, response
from miniopy_async import Minio
from urllib import parse
app = Sanic(__name__)
client = Minio(
"play.min.io",
access_key="Q3AM3UQ867SPQQA43P2F",
secret_key="zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG",
secure=True # http for False, https for True
)
# http://127.0.0.1:8000/download?bucket=my-bucket&fileName=testfile
@app.route('/download', methods=['GET'])
async def download(request):
print('downloading ...')
bucket=request.args.get('bucket')
fileName=request.args.get('fileName')
# decodeURI, for those which has other language in fileName, such as Chinese, Japanese, Korean
fileName = parse.unquote(fileName)
url = await client.presigned_get_object(bucket_name=bucket, object_name=fileName)
return response.redirect(url)
More References
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
miniopy_async-1.20.1.tar.gz
(64.7 kB
view details)
Built Distribution
File details
Details for the file miniopy_async-1.20.1.tar.gz
.
File metadata
- Download URL: miniopy_async-1.20.1.tar.gz
- Upload date:
- Size: 64.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04a4671efacb989dfc3b89cc88c73da9e248aa309b75567a81643c5d636b6766 |
|
MD5 | 08a6055c8323f476d69f094b13e06b0e |
|
BLAKE2b-256 | 3cdc9f246e034b2456affb3833215bfaa1e56cdb5ff4e74d4ce0f135757cd706 |
File details
Details for the file miniopy_async-1.20.1-py3-none-any.whl
.
File metadata
- Download URL: miniopy_async-1.20.1-py3-none-any.whl
- Upload date:
- Size: 84.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d2c98224be577a387f1f715f8329793d7c335c5e5815e2d09166feb5bd7190d |
|
MD5 | dd1b1228f5602a65fd07b447ee68eb60 |
|
BLAKE2b-256 | e78b31e5a486feb8387cb5c5ee5344c6aff8c077101bbd4027b484451e3b2402 |