2

I want to automate my python script to run on everyday basis. Is it possible to automate them using Power Automate but without Azure?

I tried with Azure but i wanted to know if there is any way that i can use it without Azure.

Being_shawn
  • 122
  • 9

1 Answers1

3

Unfortunately, we don't have any connector to run python script.

Generally, If you are using azure then you can make use of Azure function app with HTTP trigger (to run the python script) and can be integrated in your workflow as well.

As you have mentioned that you don't want to use azure you need to build a custom solution for example, If you have a website which allows custom API, then you can built your python program on the website and can use the custom connector to connect to the website and pass information.

You can pass the input parameters from flow and the processing will be done on the website and it will share back the information will which in turn be processed by flow and displayed to the end user.

VenkateshDodda
  • 4,723
  • 1
  • 3
  • 12
  • I am also trying to do this. I have a few questions. 1: Are there python package limitations on Azure functions (i.e. is selenium supported). 2: Does an intranet site or SharePoint site fall under the category of a website?. 3. How do I know if my website supports a custom API?. I wish there was a tutorial online on this. – HamidBee Nov 03 '22 at 08:37
  • Thank you so much will try it and update soon. – Being_shawn Nov 03 '22 at 09:15