Appearance
AzureBlobStorage
Download files from Azure Blob Storage containers using a connection string.
Credentials
| Credential | Where to get it |
|---|---|
connection_string | Azure Portal → Storage account → Access keys → Connection string |
Docs: Manage storage account access keys
Usage
python
from elsai_cloud.azureblobstorage import AzureBlobStorage
azure_blob_client = AzureBlobStorage(
connection_string="your_connection_string",
)
azure_blob_client.download_file(
container_name="your_container_name",
blob_name="your_blob_name",
target_folder_path="path/to/download/folder",
)Constructor parameters:
| Parameter | Required | Description |
|---|---|---|
connection_string | Yes | Azure Storage account connection string |