Ler em inglês Editar

Compartilhar via


Bibliotecas do Armazenamento do Azure para PythonAzure Storage libraries for Python

Visão geralOverview

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.

Instalar as bibliotecasInstall the libraries

ClienteClient

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

GerenciamentoManagement

pip install azure-mgmt-storage

ExemploExample

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'))

ExemplosSamples

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.