Terri Cain

Results 256 comments of Terri Cain

download_file and download_fileobj pretty much reads 4096 bytes, writes to file then reads another 4096 bytes. Am pretty sure S3 doesn't support multipart downloads, correct me if I'm wrong. Does...

Ok, have a go with download_file/fileobj and see if it does what you need.

Having done some reading, and some work done by @thehesiod it looks like in its current state, get_object does indeed download the entire file as it attempts to verify md5...

> Also because aws API calls are signed, I believe the only way to upload in parts would be using multipart upload. Yup, thats what I came to as well....

@thehesiod I'll add that in when I come to redoing this part

Sorry been away for quite a while, no eta on multipart downloads as of yet.

Yeah that definitely is a bug, I'd also put the unprocessed items at the start of the items buffer. I'm in two minds about this. I'd prefer not to diverge...

9.0.0 is out, can you try with that

There is a connection pool, but none of that is handled by aioboto3 and is all down to aiobotocore. Calling \_\_aenter\_\_ is essentially what the [AsyncExitStack](https://docs.python.org/3/library/contextlib.html#contextlib.AsyncExitStack) does, I've pretty much...