Alexander Mohr

Results 302 comments of Alexander Mohr

I see this is being tracked in https://github.com/boto/botocore/issues/458

perhaps we can have a class by class goal of rolling into botocore to make it bite-sized chunks of work. But I think before that we need a high-level strategy...

another option is switching to the c++ library: https://github.com/aws/aws-sdk-cpp this would greatly increase performance as well, mainly due to signing.

this is now dependent on https://github.com/boto/botocore/issues/1255

update: just need to write a unittest for this as it should be supported in 0.5.1

what in particular pytest packages would you like aioboto to provide? Seems like this is more of a aiomoto kind of thing.

btw as a tip for others, to help figure out why releases fail you can look here: https://travis-ci.com/aio-libs/aiobotocore/requests

the session is aentered: https://github.com/aio-libs/aiobotocore/blob/master/aiobotocore/endpoint.py#L98 you need to make your code like the following to call aexit: ```python response = await client.method(...) async with response['Body'] as stream: pass ``` I've...

ok added: https://gist.github.com/thehesiod/05298c1c89c7b5a38da0abc4ccbed7b7

on the other hand, this looks like https://github.com/aio-libs/aiohttp/issues/4258