Feb 1, 2023 | Azure Cloud, Python
Buy Me a Coffee? Your support is much appreciated! demo.py import os from azure.storage.blob import BlobServiceClient # pip install azure-storage-blob azure-identity def delete_blob_folder(blob_directory: str) -> None: try: blobs =...
Jan 30, 2023 | Azure Cloud, Python
Buy Me a Coffee? Your support is much appreciated! demo.py import os from azure.storage.blob import BlobServiceClient # pip install azure-storage-blob from azure.core.exceptions import ResourceExistsError storage_connection_string = ‘<connection...
Feb 21, 2022 | Azure Cloud, Python
Source code to the Microsoft Azure Text Analytics AI API In Python series. 1. Setting Up Buy Me a Coffee? Your support is much appreciated! credential.py 2. Sentiment Analysis sentiment_analysis.py opinion_mining.py 3. Language Detection detect_language.py...
Nov 10, 2021 | Azure Cloud, Python
Part 1. Setting Up Part 2. Azure Face API Examples Buy Me a Coffee? Your support is much appreciated! Source Code: Example 1. Example 2 Example 3. Example 4. Example 5. ...
Sep 29, 2021 | Azure Cloud, Python
Part 2: Form Table Extraction Buy Me a Coffee? Your support is much appreciated! Source Code: import json from azure.core.exceptions import ResourceNotFoundError from azure.core.credentials import AzureKeyCredential from azure.ai.formrecognizer import...
Sep 14, 2021 | Azure Cloud, Python
Buy Me a Coffee? Your support is much appreciated! Source Code: import json import azure.cognitiveservices.speech as speech API_KEY = ‘<API_KEY>’ ENDPOINT = ‘<ENDPOINT>’ media_file_path = ‘<audio file...