I have a folder with thousands of files to upload to my S3, for now I do it like that, without problems:
for x in images_full_path:
data = open(x,'rb')
name_file = os.path.basename(x)
s3.Bucket(bucket_name).put_object(Key=AWS_folder_name+name_file, Body = data)
How could I speed up the upload process by adding several concurrent threads?