What's the best way to run a python script in Azure every hour - deployed with Azure Devops

molda hutal 6 Reputation points
2022-02-15T11:38:48.56+00:00

I need to run a python script every hour in Azure.
I have tested the Webjob option but I've not find the way to schedule it every hour deployment it with Azure Devops.

I don't know if Logic App could be the right answer... It don`t look like a very easy way.

Thanks in advance.

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,542 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,932 questions
0 comments No comments
{count} vote

1 answer

Sort by: Most helpful
  1. Alan Kinane 16,951 Reputation points MVP Volunteer Moderator
    2022-02-15T11:50:05.98+00:00

    I would have thought Azure Functions would be the best choice here as this supports Python. You can deploy a function app and use a CRON schedule for this and then use your Azure Pipeline to manage the CI/CD.

    I know this link isn't exactly what you are looking for but it might be a useful starting point. There seem to be a lot of useful community blog posts out there also.
    https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-azure-devops?tabs=dotnet-core%2Cyaml%2Ccsharp

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.