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.
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.
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.