This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import azure.functions as func | |
from azure.storage.blob import BlobServiceClient, BlobClient | |
from io import BytesIO | |
import zipfile | |
def main(req: func.HttpRequest) -> func.HttpResponse: | |
def copy_azure_blobs(srcName): |
OlderNewer