I am using Microsoft Azure SDK for Python in project. I want to move or copy Blob from one container to another. for exmaple
https://demostorage.blob.core.windows.net/image-container/pretty.jpg
I want to move this blob to
https://demostorage.blob.core.windows.net/demo-container/
I have found following method in python SDK but unable to understand it.
def copy_blob(self, container_name, blob_name,...):
How can I do this? Thank you