How to run Python scripts on Azure

Tom 16 Reputation points
2020-08-26T10:15:10.637+00:00

How do I run Python scripts on Azure ? My client need to run Python scripts and he cnn't install Python (or any app) on his computer due to organization restricted policy. However he has Azure. So I am testing to run a Python script on Azure. How do I do that ?

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,813 questions
{count} votes

3 answers

Sort by: Most helpful
  1. Sam Cogan 10,082 Reputation points MVP
    2020-08-26T19:52:52.923+00:00

    Both Azure Automation and Azure Functions support running Python scripts and do not require the creation of any VM's or similar.

    Azure Functions for Python - https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-python
    Azure Automation for Python - https://learn.microsoft.com/en-us/azure/automation/learn/automation-tutorial-runbook-textual-python2

    3 people found this answer helpful.

  2. Vaibhav Chaudhari 38,561 Reputation points
    2020-08-26T11:38:12.533+00:00

    Web jobs can be created to run python code in Azure. See similar question here

    https://stackoverflow.com/questions/45716757/options-for-running-python-scripts-in-azure

    Also for reference - Azure for Python Developers

    ----------

    Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav

    1 person found this answer helpful.