function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Boddh Prakash 5Boddh Prakash 5 

How to call "Python" Script from Salesforce

Hi All,

I am trying to call "Python" Script from salesforce. Can you please guide me for this.  
How to call "Python" Script from Salesforce
mohdAnasmohdAnas

since python needs an interpreter to run which is not present with in salesforce environment so you can run python script form apex. It can be achived by running it somewhere else like Heroku. Then when the button is clicked you'll need to send the data to the Python app via something like a Webhook or Apex callout.