def get_blob_client()

in backend-printing/helper/azure_client.py [0:0]


    def get_blob_client(self, blob_name):
        """Get the blob client

        Args:
            blob_name (string): blob name

        Returns:
            BlobClient: blob client
        """
        return BlobClient.from_connection_string(
            conn_str=os.environ["STORAGE_ACCESS_KEY"],
            container_name=os.environ["STORAGE_CONTAINER_NAME"],
            blob_name=blob_name,
            credential=self._credential,
        )