Releases: hlf20010508/miniopy-async
Releases · hlf20010508/miniopy-async
1.21.1
1.21.0
1.20.1
- Fix
pop from empty list
error when listing an empty bucket. (by @hlf20010508 in #28)
1.20
- Fix
list_objects
return 1000 objects limit. (by @hlf20010508, @ponyisi in #27)
1.19
- Support
cert_check
to disable ssl verification forMinio
. (by @hlf20010508 in #24)
1.18
- Support
upload_snowball_objects
. (by @hlf20010508 in #22) - Wrap
return
inwith
statement in_execute
if parametersession
isNone
. (by @hlf20010508)
1.17
- Add parameter
request_headers
forstat_object
. (by @hlf20010508 in #21)
1.16
- Fix ignored session argument in api._execute. (by @erny in #18)
- Remove
aiostream
fortests.select_object_content
. (by @hlf20010508 in #19)
1.15
- Fix timeout error caused by
_get_region
. (by @johannesloibl in #17)
1.14
- Change param
session
inget_object
to a positional parameter. (by @hlf20010508 in #15, thanks to @Mkohl2508)
Usage:
async with aiohttp.ClientSession() as session:
response = await client.get_object(bucket_name, object_name, session)
response.text()
If get_object
needs to work alone.