本文整理汇总了Python中azure.storage.blob.BlobService方法的典型用法代码示例。如果您正苦于以下问题:Python blob.BlobService方法的具体用法?Python blob.BlobService怎么用?Python blob.BlobService使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类azure.storage.blob
的用法示例。
在下文中一共展示了blob.BlobService方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from azure.storage import blob [as 别名]
# 或者: from azure.storage.blob import BlobService [as 别名]
def __init__(self, account_name, account_key, container_name, maybe_create=False):
self._account_name = account_name
self._container_name = container_name
if account_name not in Container.services:
Container.services[account_name] = BlobService(account_name, account_key)
self._service = Container.services[account_name]
if maybe_create:
self._service.create_container(self._container_name, fail_on_exist=False)