Source code for azure.storage.blob.aio

# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------

import os

from .._models import BlobType
from .._shared.policies_async import ExponentialRetry, LinearRetry
from ._blob_client_async import BlobClient
from ._container_client_async import ContainerClient
from ._blob_service_client_async import BlobServiceClient
from ._lease_async import BlobLeaseClient


[docs]async def upload_blob_to_url( blob_url, # type: str data, # type: Union[Iterable[AnyStr], IO[AnyStr]] credential=None, # type: Any **kwargs): # type: (...) -> dict[str, Any] """Upload data to a given URL The data will be uploaded as a block blob. :param str blob_url: The full URI to the blob. This can also include a SAS token. :param data: The data to upload. This can be bytes, text, an iterable or a file-like object. :type data: bytes or str or Iterable :param credential: The credentials with which to authenticate. This is optional if the blob URL already has a SAS token. The value can be a SAS token string, an account shared access key, or an instance of a TokenCredentials class from azure.identity. If the URL already has a SAS token, specifying an explicit credential will take priority. :keyword bool overwrite: Whether the blob to be uploaded should overwrite the current data. If True, upload_blob_to_url will overwrite any existing data. If set to False, the operation will fail with a ResourceExistsError. :keyword int max_concurrency: The number of parallel connections with which to download. :keyword int length: Number of bytes to read from the stream. This is optional, but should be supplied for optimal performance. :keyword dict(str,str) metadata: Name-value pairs associated with the blob as metadata. :keyword bool validate_content: If true, calculates an MD5 hash for each chunk of the blob. The storage service checks the hash of the content that has arrived with the hash that was sent. This is primarily valuable for detecting bitflips on the wire if using http instead of https as https (the default) will already validate. Note that this MD5 hash is not stored with the blob. Also note that if enabled, the memory-efficient upload algorithm will not be used, because computing the MD5 hash requires buffering entire blocks, and doing so defeats the purpose of the memory-efficient algorithm. :keyword str encoding: Encoding to use if text is supplied as input. Defaults to UTF-8. :returns: Blob-updated property dict (Etag and last modified) :rtype: dict(str, Any) """ async with BlobClient.from_blob_url(blob_url, credential=credential) as client: return await client.upload_blob(data=data, blob_type=BlobType.BlockBlob, **kwargs)
async def _download_to_stream(client, handle, **kwargs): """Download data to specified open file-handle.""" stream = await client.download_blob(**kwargs) await stream.readinto(handle)
[docs]async def download_blob_from_url( blob_url, # type: str output, # type: str credential=None, # type: Any **kwargs): # type: (...) -> None """Download the contents of a blob to a local file or stream. :param str blob_url: The full URI to the blob. This can also include a SAS token. :param output: Where the data should be downloaded to. This could be either a file path to write to, or an open IO handle to write to. :type output: str or writable stream :param credential: The credentials with which to authenticate. This is optional if the blob URL already has a SAS token or the blob is public. The value can be a SAS token string, an account shared access key, or an instance of a TokenCredentials class from azure.identity. If the URL already has a SAS token, specifying an explicit credential will take priority. :keyword bool overwrite: Whether the local file should be overwritten if it already exists. The default value is `False` - in which case a ValueError will be raised if the file already exists. If set to `True`, an attempt will be made to write to the existing file. If a stream handle is passed in, this value is ignored. :keyword int max_concurrency: The number of parallel connections with which to download. :keyword int offset: Start of byte range to use for downloading a section of the blob. Must be set if length is provided. :keyword int length: Number of bytes to read from the stream. This is optional, but should be supplied for optimal performance. :keyword bool validate_content: If true, calculates an MD5 hash for each chunk of the blob. The storage service checks the hash of the content that has arrived with the hash that was sent. This is primarily valuable for detecting bitflips on the wire if using http instead of https as https (the default) will already validate. Note that this MD5 hash is not stored with the blob. Also note that if enabled, the memory-efficient upload algorithm will not be used, because computing the MD5 hash requires buffering entire blocks, and doing so defeats the purpose of the memory-efficient algorithm. :rtype: None """ overwrite = kwargs.pop('overwrite', False) async with BlobClient.from_blob_url(blob_url, credential=credential) as client: if hasattr(output, 'write'): await _download_to_stream(client, output, **kwargs) else: if not overwrite and os.path.isfile(output): raise ValueError("The file '{}' already exists.".format(output)) with open(output, 'wb') as file_handle: await _download_to_stream(client, file_handle, **kwargs)
__all__ = [ 'upload_blob_to_url', 'download_blob_from_url', 'BlobServiceClient', 'ContainerClient', 'BlobClient', 'BlobLeaseClient', 'ExponentialRetry', 'LinearRetry' ]