简体   繁体   中英

Azure Web Jobs & run a python 3.9 console app

I have a python console application that is written using python 3.9.4. I was wondering if I could deploy and run this application using a Azure Web Job?

I have a python console application that is written using python 3.9.4. I was wondering if I could deploy and run this application using an Azure Web Job?

As you didn't mention the App Service is of Windows or Linux OS type because Azure Web Job is the part of an Azure App Service as mentioned in the MS Q&A Forum - 808421 .

  1. Python App Service is not supported on Windows OS Type.

在此处输入图像描述

  1. Web Jobs is not supported in Linux Web Apps / App Services.

So, it is recommended to use the Azure Functions Service for running your Python Web Jobs (Scheduled) Scripts with the help of Timer Trigger Function.

Refer to this MS Doc for more information on Timer Trigger Python Function for running the scheduled scripts.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM