I have to move files between one bucket to another with Python Boto API. (I need it to \"Cut\" the file from the first Bucket and \"Paste\" it in the second one). What is th
Bucket name must be string not bucket object. Below change worked for me
for k in src.list(): dst.copy_key(k.key, src.name, k.key)