Skip to main content

Python support for Salesforce Functions

Reason this release was yanked:

This project has been sunset, since Salesforce Functions is being retired: https://devcenter.heroku.com/articles/salesforce-functions-retirement

Project description

sf-functions-python

PyPI CI

Python support for Salesforce Functions.

Note: This feature is in beta and has been released early so we can collect feedback. It may contain significant problems, undergo major changes, or be discontinued. The use of this feature is governed by the Salesforce.com Program Agreement.


Getting Started with Python for Functions

Prerequisites

Any install commands that follow assume an Apple macOS system with Homebrew available. If you’re on another OS you’ll have to click through the links to get alternative install instructions.

Install Python 3

brew install python3

The installed Python version should be at least 3.10 or higher.

You can check this with python3 --version

On some machines it’s necessary to run Python and Pip commands using python3 or pip3 which point to the Homebrew-managed Python interpreter versus running python or pip which tends to point at the system installed Python interpreter.

Install Git

brew install git

The installed Git version should be at least 2.36.0 or higher

You can check this with git --version

Install / Update the Salesforce CLI

If you haven’t already installed the Salesforce CLI, follow these steps.

If you already have the Salesforce CLI installed, make sure it is updated to the latest release, which contains Python functions support:

sfdx update

This will update both the sfdx and sf commands. The installed version of sf should be 1.59.0 or higher.

You can check this with sf --version

Create a SFDX Project

Functions must be located within a SFDX project, so let’s create one.

sf generate project --name PythonFunctionsAlpha

Some of the following commands need to be run from within the SFDX project directory so change into that directory now with

cd PythonFunctionsAlpha

You should also edit the config/project-scratch-def.json file to include the Functions feature. After modification, your file should look similar to the following:

{
  "orgName": "SomeOrgName",
  "edition": "Developer",
  "features": ["EnableSetPasswordInApi", "Functions"],
  "settings": {
    "lightningExperienceSettings": {
      "enableS1DesktopEnabled": true
    },
    "mobileSettings": {
      "enableS1EncryptedStoragePref2": false
    }
  }
}

The above is needed for connecting and deploying Functions in scratch orgs which is the recommended workflow when working with Functions.

And, to deploy any Salesforce Function, your SFDX project needs to be a git repo. This is because the deployment process uses git tracked changes to figure out what to deploy. Run the following commands to setup git:

git init

It is not a requirement to push your code to GitHub or any other code hosting site. Committing locally will work fine for deploying.

Connect Your Org

You’ll need to configure your Salesforce org to develop and invoke Salesforce Functions. Develop your functions in scratch orgs with Dev Hub or in sandbox orgs. Follow the steps on this page to ensure everything is setup correctly first.

Once your Org is configured you can login and set it as the default Dev Hub with the following command:

sf login org --alias PythonOrg --set-default-dev-hub --set-default

This will make PythonOrg the default Dev Hub for subsequent commands.

Then create a scratch org:

sfdx force:org:create \
  --definitionfile config/project-scratch-def.json \
  --setalias PythonScratch \
  --setdefaultusername

This will make it so that when you run a Function, it will connect to and use the PythonScratch org.

Connect Your Compute Environment

Login to Salesforce Functions with the same credentials you used to connect your Dev Hub org.

sf login functions

Then you will be able to create the compute environment and associate it with the PythonScratch org we created while connecting your org.

sf env create compute \
  --connected-org PythonScratch \
  --alias PythonCompute

This will make it so that when you deploy a Function, it will be deployed to the PythonCompute environment linked to your scratch org.

Assign Permissions

The default Python project you'll generate requires read access to the Account object in your scratch org. Create a file named force-app/main/default/permissionsets/Functions.permissionset-meta.xml in your SFDX project and add the following content:

<?xml version="1.0" encoding="UTF-8"?>
<PermissionSet xmlns="http://soap.sforce.com/2006/04/metadata">
    <description>Permissions for Salesforce Functions to access Salesforce org data</description>
    <hasActivationRequired>true</hasActivationRequired>
    <label>Functions</label>
    <objectPermissions>
        <allowCreate>false</allowCreate>
        <allowDelete>false</allowDelete>
        <allowEdit>false</allowEdit>
        <allowRead>true</allowRead>
        <modifyAllRecords>false</modifyAllRecords>
        <object>Account</object>
        <viewAllRecords>false</viewAllRecords>
    </objectPermissions>
</PermissionSet>

Upload this permission set to your org:

sf deploy metadata --ignore-conflicts

Then assign the permissions to the Functions profile with

sfdx force:user:permset:assign -n Functions

Create and Run a Python Function Locally

Generate the Python Function

From the SFDX project root, run:

sf generate function \
  --language python \
  --function-name hellopython

The remaining commands will be executed within the newly generated project folder. Change to that folder by running:

cd functions/hellopython

You should also create a .gitignore file in the function directory with the following contents:

venv
__pycache__

The following command will do this for you:

echo -e "venv\n__pycache__" > .gitignore

Create the Python Virtual Environment & Install Dependencies

To install the dependencies required by the Python Function locally, we first need to create a "Virtual Environment" (venv) which we can install packages into without affecting your system Python installation. This can be done by running:

python3 -m venv venv

Next, the virtual environment needs to be activated.

On a macOS / Linux system you can activate the virtual environment with

source venv/bin/activate

On a Microsoft Windows system you can activate the virtual environment with

.\venv\Scripts\activate

For help with setting up a virtual environment, see the Python documentation.

Finally, the dependencies can be installed into the newly created environment:

pip3 install -r requirements.txt

This will ensure your function has all dependencies it requires installed before you run it. If you forgot to do this before starting the Function locally you’ll receive an error reminding you to perform this step.

Run the Python Function Locally

sf run function start

This will start the function running locally on http://localhost:8080. Messages logged by the running function will appear here.

Invoke the Running Python Function

After starting the function:

  • open a new command line terminal
  • navigate to the hellopython directory
  • invoke the function by sending it a payload
sf run function --function-url http://localhost:8080 --payload '{}'

Deploy the Python Function

The remaining commands need to be executed from the root of your SFDX project, so change into that directory now:

cd ../../

Commit your changes to Git

All code changes made to a function will need to be staged and committed before you can deploy:

git add .
git commit -m "Trying out python functions"

Once everything is committed to git, run:

sf deploy functions --connected-org PythonScratch

This deployment process may take several minutes.

If you receive a Request failed with status code 404 error message, check the earlier sf env create compute step was performed.

Invoke the Function from Apex

The easiest way to invoke the function deployed to our scratch org is with some Apex code. Generate an Apex class with:

sfdx force:apex:class:create \
  --classname ApexTrigger \
  --outputdir force-app/main/default/classes

Open force-app/main/default/classes/ApexTrigger.cls and replace it with the following code:

public with sharing class ApexTrigger {
    public static void runFunction() {
        System.debug('Running hellopython');
        functions.Function fn = functions.Function.get('PythonFunctionsAlpha.hellopython');
        functions.FunctionInvocation invocation = fn.invoke('{}');
        System.debug('Response: ' + invocation.getResponse());
    }
}

This code will:

  • Lookup the reference to our function using the functions.Function.get method
  • Invoke the function with an empty json payload
  • Print the response

Upload this Apex class to your scratch org with

sfdx force:source:push --targetusername PythonScratch

Open a developer console:

sfdx force:org:open -p /_ui/common/apex/debug/ApexCSIPage

Then execute the function.

On a macOS / Linux system you can execute the function with:

echo "ApexTrigger.runFunction();" | sfdx force:apex:execute -f /dev/stdin

On a Microsoft Windows system you can execute the function with:

echo "FunctionApex.test();" | sfdx force:apex:execute

The developer console will show a log entry in the bottom panel after the function executes, which you can double-click to open. Toggle the Debug Only filter to reduce the log messages to just the ones from the ApexTrigger function.

You should see a view like the one below:

Developer Console


NOTE: You may encounter the following error

System.CalloutException: Error during Salesforce Functions Sync Invocation. Ensure that 
function 'PythonFunctionsAlpha.hellopython' is deployed and its status is 
available ('OK', 'up'). If issue persists, contact Salesforce Support.

If you see this then there may not be a problem, the function just might not be available yet in the compute environment. Wait several minutes and then try the command above again.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

salesforce_functions-0.2.0.tar.gz (19.2 kB view hashes)

Uploaded Source

Built Distribution

salesforce_functions-0.2.0-py3-none-any.whl (25.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page