Status: | Alpha |
---|
The aio-s3 is a small library for accessing Amazon S3 Service that leverages python's standard asyncio library.
Only read operations are supported so far, contributions are welcome.
Basically all methods supported so far are shown in this example:
import asyncio
from aios3.bucket import Bucket
@asyncio.coroutine
def main():
bucket = Bucket('some-bucket-name',
aws_region='eu-west-1',
aws_endpoint='s3-eu-west-1.amazonaws.com',
aws_key='AKIAIOSFODNN7EXAMPLE',
aws_secret='wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY')
# List keys based on prefix
lst = yield from bu.list('some-prefix')
# Get contents file as a string
response = yield from bu.get(lst[0])
print(len(response))
# Get file contents by chunks
response = yield from bu.download(lst[0])
while 1:
chunk = yield from response.read(65536)
print("Got chunk of ", len(chunk), "bytes")
if not chunk:
break
asyncio.get_event_loop().run_until_complete(main())
Bucket(name, *, aws_key, aws_secret, aws_region, aws_endpoint, connector)
:- Creates a wrapper object for accessing S3 bucket. Note unlike in many
other bindings you need to specify aws_region (and probably aws_endpoint)
correctly (see a table). The
connector
is an aiohttp connector, which might be used to setup proxy or other useful things. Bucket.list(prefix='', max_keys=1000)
:Lists items which start with prefix. Each returned item is a
Key
object. This method is coroutine.Note
This method raises assertion error if there are more keys than max_keys. We do not have a method to return keys iteratively yet.
Bucket.get(key)
:- Fetches object names
key
. Thekey
might be a string orKey
object. Returns bytes. This method is coroutine. Bucket.download(key)
:- Allows iteratively download the
key
. The object returned by the coroutine is an object having method.read(bufsize)
which is a coroutine too. Key
Represents an S3 key returned by
Bucket.list
. Key has at least the following attributes:key
-- the full name of the key stored in a bucketlast_modified
--datetime.datetime
objectetag
-- The ETag, usually md5 of the content with additional quotessize
-- Size of the object in bytesstorage_class
-- Storage class of the object