I’m trying to execute a Python script from Power Automate Cloud, but it doesn’t run the code directly. What are the recommended approaches - Azure Functions, API endpoints, virtual machines, or third-party connectors - to run Python workflows?
3 Likes
Power Automate Cloud doesn’t run Python natively. The common solution is deploying your script as an Azure Function or Web API, then triggering it through an HTTP action. This keeps the workflow cloud-based and fully automated.
2 Likes
You can run Python by hosting it on an Azure VM, AWS Lambda, or a container service. Expose it through an endpoint and call it using Power Automate’s HTTP connector. This lets you maintain Python logic while using Power Automate for orchestration.
1 Like