gpt4 book ai didi

Python:如何使用共享访问 key 连接到Azure云存储?

转载 作者:行者123 更新时间:2023-12-01 04:11:53 26 4
gpt4 key购买 nike

在 .net 中,我应该能够使用 SAS 连接到 azure 存储,如下所示:

var someTable = new CloudTable("https://account-name.table.core.windows.net/table-name?sv={key}");

我怎样才能在Python中做到这一点?我在 azure.storage.table 中找不到 CloudTable 类(来自 azure sdk for python: https://github.com/Azure/azure-storage-python )

还有其他办法吗?

最佳答案

尝试如下操作:

import os
import json
from azure import *
from azure.storage import *
from azure.storage.table import TableService, Entity

table_service = TableService(account_name='[account-name]', sas_token='[sas-token]')
list = table_service.query_entities('[table-name]', top=100)

[account-name][sas-token][table-name] 替换为实际值。

另外,请勿在 [sas-token] 字段中包含 SAS token 中的 ?

来源:请参阅此处的文档 - https://github.com/Azure/azure-storage-python/blob/master/azure/storage/table/tableservice.py .

关于Python:如何使用共享访问 key 连接到Azure云存储?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34817415/

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