I have written a python code on colab.research.google.com now need to deploy it on azure to run it 24/7 on serverless

venkateswaran P 116 Reputation points
2022-08-15T05:28:20.4+00:00

hello,
I have written a python code on colab.research.google.com and now need to deploy it on azure to run it 24/7 on serverless.

help me convert my python code to deploy it on Azure serverless.

https://colab.research.google.com/drive/1ZhXe0_chp8vvo9ylujQyxgsWMG76PT2P?usp=sharing

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,334 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Dronec 166 Reputation points
    2024-02-15T09:50:10.2266667+00:00

    Functions don't run 24/7. They're invoked by triggers (e.g. timer, http request) and finish after completion. For your scenario containers would be the best fit.

    0 comments No comments