Azure timer trigger function using Python

2019-04-12 00:37发布

问题:

I am writing an Azure timer trigger using Python 3.x. I've got one such function running. I think I know to do it, create one from JS and then delete the 'index.js' and create a run.py. But this time, when I run my python function, I always got an error saying "No such file: index.js". I didn't see any bonds between the function and the 'index.js' file.

Any thoughts?

回答1:

I followed tutorial in comment and reproduce your issue on my side though I refresh the portal.

However, after waiting for some time, it works. I suspect it's due to cache.

I suggest you creating python azure function on kudu directly. Just create run.py and function.json in new folder instead of changing the JS template.

Hope it helps you.



回答2:

We could add the python function from the Azure portal directly. If you want to create Timetrigger function,then we could change the trigger type

The following is my detail steps to create Python timetrigger function.

1.Create an Azure function App

2.Add a python function

3.Change the httptrigger to timetrigger

a. delete the httptrigger and http output

b. add the time trigger

4.Add the test code and test it from Azure portal.

The default version is 2.7.8. If you want to use python 3.x, you could follow this tutorial to update the python version.

5.Update the python version.

a. Install extension for Azure function App

b. Add Handler Mappings entry so as to use Python3.X via FastCGI

6.Test it from Azure portal