I have written a piece of code to copy a file from one container to another within the same storage account.
block_blob_service = BlockBlobService(
account_name='', account_key='')
blob_name = file_name
copy_from_container = source
copy_to_container = destination
blob_url = block_blob_service.make_blob_url(copy_from_container, blob_name)
# blob_url:https://demostorage.blob.core.windows.net/image-container/pretty.jpg
block_blob_service.copy_blob(copy_to_container, blob_name, blob_url)
But now I want to copy files across different storage accounts. How can I do that?