This template repository is for a Speckle Automate function written in Python using the specklepy SDK to interact with Speckle data.
This template contains the full scaffolding required to publish a function to the Automate environment. It also has some sane defaults for development environment setups.
- Use this template repository to create a new repository in your own / organization's profile.
Register the function
To add new Python package dependencies to the project, use the following:
$ poetry add pandas
Describe how the launch.json should be edited.
Create a new repo from this template, and use the create new code.
- Create a new Speckle Automation.
- Select your Speckle Project and Speckle Model.
- Select the deployed Speckle Function.
- Enter a phrase to use in the comment.
- Click
Create Automation
.
- Register your Function with Speckle Automate and select the Python template.
- A new repository will be created in your GitHub account.
- Make changes to your Function in
main.py
. See below for the Developer Requirements and instructions on how to test. - To create a new version of your Function, create a new GitHub release in your repository.
- Install the following:
- Run
poetry shell && poetry install
to install the required Python packages.
The code can be tested locally by running poetry run pytest
.
Running and testing your code on your machine is a great way to develop your Function; the following instructions are a bit more in-depth and only required if you are having issues with your Function in GitHub Actions or on Speckle Automate.
The GitHub Action packages your code into the format required by Speckle Automate. This is done by building a Docker Image, which Speckle Automate runs. You can attempt to build the Docker Image locally to test the building process.
To build the Docker Container Image, you must have Docker installed.
Once you have Docker running on your local machine:
-
Open a terminal
-
Navigate to the directory in which you cloned this repository
-
Run the following command:
docker build -f ./Dockerfile -t speckle_automate_python_example .
Once the GitHub Action has built the image, it is sent to Speckle Automate. When Speckle Automate runs your Function as part of an Automation, it will run the Docker Container Image. You can test that your Docker Container Image runs correctly locally.
-
To then run the Docker Container Image, run the following command:
docker run --rm speckle_automate_python_example \ python -u main.py run \ '{"projectId": "1234", "modelId": "1234", "branchName": "myBranch", "versionId": "1234", "speckleServerUrl": "https://speckle.xyz", "automationId": "1234", "automationRevisionId": "1234", "automationRunId": "1234", "functionId": "1234", "functionName": "my function", "functionLogo": "base64EncodedPng"}' \ '{}' \ yourSpeckleServerAuthenticationToken
Let's explain this in more detail:
docker run—-rm speckle_automate_python_example
tells Docker to run the Docker Container Image we built earlier. speckle_automate_python_example
is the name of the Docker Container Image. The --rm
flag tells Docker to remove the container after it has finished running, freeing up space on your machine.
The line python -u main.py run
is the command run inside the Docker Container Image. The rest of the command is the arguments passed to the command. The arguments are:
'{"projectId": "1234", "modelId": "1234", "branchName": "myBranch", "versionId": "1234", "speckleServerUrl": "https://speckle.xyz", "automationId": "1234", "automationRevisionId": "1234", "automationRunId": "1234", "functionId": "1234", "functionName": "my function", "functionLogo": "base64EncodedPng"}'
- the metadata that describes the automation and the function.{}
- the input parameters for the function the Automation creator can set. Here, they are blank, but you can add your parameters to test your function.yourSpeckleServerAuthenticationToken
—the authentication token for the Speckle Server that the Automation can connect to. This is required to interact with the Speckle Server, for example, to get data from the Model.
- Learn more about SpecklePy and interacting with Speckle from Python.