gpt4 book ai didi

python - 属性错误: 'BlockBlobService' object has no attribute 'create_block_blob_from_path'

转载 作者:太空宇宙 更新时间:2023-11-04 05:35:45 25 4
gpt4 key购买 nike

根据this手册我应该使用这段代码:

from azure.storage.blob import ContentSettings
block_blob_service.create_block_blob_from_path(
'mycontainer',
'myblockblob',
'sunset.png',
content_settings=ContentSettings(content_type='image/png')
)

但出现此错误:

AttributeError: 'BlockBlobService' object has no attribute 'create_block_blob_from_path'

git 以及 pip 尝试过

pip install azure-storage

最佳答案

与最新的 Python SDK 相比,我认为该教程已经过时了。我认为不再有 create_block_blob_from_path - 我查看了 sdk 代码( here )。 block blob 和页 blob 分别导入,方法为 create_blob_from_path

简单修正一下:

from azure.storage.blob import BlockBlobService
from azure.storage.file import ContentSettings
blob_service = BlockBlobService(account_name="<storagename>",account_key="<storagekey>")

content_settings = ContentSettings(content_type = "image/png")
blob_service.create_blob_from_path("mycontainer","myblockblob","sunset.png",content_settings)

关于python - 属性错误: 'BlockBlobService' object has no attribute 'create_block_blob_from_path' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35653457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com