Python-Multithread-S3-Bucket-Copy
Python-Multithread-S3-Bucket-Copy copied to clipboard
A simple Python function to copy an entire AWS S3 bucket using multiple threads to increase speed.
Results
1
Python-Multithread-S3-Bucket-Copy issues
Sort by
recently updated
recently updated
newest added
Based on your comment on [L31](https://github.com/kfarr/Python-Multithread-S3-Bucket-Copy/blob/master/bucket_copy.py#L31), you note that you created `thread_conn` for safety. However, [L33-34](https://github.com/kfarr/Python-Multithread-S3-Bucket-Copy/blob/master/bucket_copy.py#L33-L34) continue to use your original connection. Is this merely an error? Or do you...