Bibliotecas do Armazenamento do Azure para PythonAzure Storage libraries for Python
- Ler e gravar objetos e arquivos do Armazenamento de Blobs do AzureRead and write objects and files from Azure Blob storage
- Enviar e receber mensagens entre aplicativos conectados à nuvem com o Armazenamento de Filas do AzureSend and receive messages between cloud-connected applications with Azure Queue storage
- Ler e gravar dados estruturados grandes com Armazenamento de Tabelas do AzureRead and write large structured data with Azure Table storage
- Compartilhar o armazenamento entre aplicativos com Armazenamento de Arquivos do AzureShare storage between apps with Azure File storage
Criar, atualizar e gerenciar contas de Armazenamento do Azure e consultar e regenerar chaves de acesso do seu código Python com as bibliotecas de gerenciamento.Create, update, and manage Azure Storage accounts and query and regenerate access keys from your Python code with the management libraries.
As Bibliotecas de Cliente do Armazenamento do Azure consistem em quatro pacotes: Blobs, Filas, Arquivos e Tabelas.Azure Storage Client Libraries consist of 4 packages: Blob, File, Queue and Table. Para instalar o pacote de blobs, exeucte:To install the blob package, run:
pip install azure-storage-blob
pip install azure-mgmt-storage
from azure.storage.blob import BlockBlobService
blob_service = BlockBlobService(account_name, account_key)
blob_service.create_container(
'mycontainername',
public_access=PublicAccess.Blob
)
blob_service.create_blob_from_bytes(
'mycontainername',
'myblobname',
b'<center><h1>Hello World!</h1></center>',
content_settings=ContentSettings('text/html')
)
print(blob_service.make_blob_url('mycontainername', 'myblobname'))
Introdução ao Armazenamento de Blobs do Azure no PythonGet started with Azure Blob Storage in Python | Criar, ler, atualizar, restringir o acesso e excluir arquivos e objetos no Armazenamento do Azure.Create, read, update, restrict access, and delete files and objects in Azure Storage. |
Introdução ao Armazenamento de Filas do Azure no PythonGet started with Azure Queue Storage in Python | Inserir, inspecionar, recuperar e excluir mensagens das filas do Armazenamento do Azure.Insert, peek, retrieve and delete messages from Azure Storage queues. |
Gerenciar contas de Armazenamento do AzureManage Azure Storage accounts | Criar, atualizar e excluir contas de armazenamento.Create, update , and delete storage accounts. Recuperar e regenerar chaves de acesso da conta de armazenamento.Retrieve and regenerate storage account access keys. |
Explore mais exemplos de código de Python que você pode usar em seus aplicativos.Explore more sample Python code you can use in your apps.