Azure Function Published with Azure DevOps is missing .python_packages

I was publishing an Azure Function with Azure DevOps vs. deploying with VS Code and was finding the function was failing because the .python_packages folder was missing. Reviewing the build code the standard python package was populated with “pip install -r requirements.txt”, which was working on my local client to ensure the published environment included the necessary packages. […]

Read more "Azure Function Published with Azure DevOps is missing .python_packages"

Deploying a Python Azure Function in Azure DevOps Error: Directory ‘D:\a\1\a’ is empty. Nothing will be added to build artifact ‘drop’.

I was having challenge with deploying an Azure Function through Azure DevOps where the default channel was failing to capture the output of the build and deploy it to the target. I wanted to post a template for this, as there were a lot of people trying to solve the same problem, but no clear […]

Read more "Deploying a Python Azure Function in Azure DevOps Error: Directory ‘D:\a\1\a’ is empty. Nothing will be added to build artifact ‘drop’."

Create an Azure Function with Python to Retrieve GPS Coordinates from an Image EXIF in Azure Storage

This post is part of a series. If you want to work on creating your own Wildlife ID environment, start here! We started with provisioning an Azure storage environment that this uses to retrieve images. In this post we’ll provision the Azure Function, deploy the code via VS Code and configure an App Insights availability […]

Read more "Create an Azure Function with Python to Retrieve GPS Coordinates from an Image EXIF in Azure Storage"

Creating a Logic App to Identify Wildlife with AI, Azure Functions, Cosmos DB, and Azure Storage

This post is part of a series. If you want to work on creating your own Wildlife ID environment, start here! In this segment we’re creating a Logic App that brings several other components together. The end goal is to examine a picture with EXIF data, identify a wildlife in the image, copy it to […]

Read more "Creating a Logic App to Identify Wildlife with AI, Azure Functions, Cosmos DB, and Azure Storage"