Writing Scripts with the Seal Module
Last updated
Last updated
The Seal Platform allows you to write and execute your own custom Python code within the platform, enabling powerful custom solutions and automations.
If this is your first time using Python, then there are great reference materials online such as: https://docs.python.org/3.10/tutorial/
The Seal module is a Python package for interacting programatically with the Seal platform.
It is automatically available in every Script's Python environment - you don't need to import it manually.
The Seal module consists of a collection of methods on the seal
object:
Returns the entire json blob of data for that entity. The entity id can be copied from the entity's URL in Seal - it's the final section of the url, after the entity title.
Just passing an entity_id
returns the latest version or draft of the entity.
The entity id can be copied from the entity's URL in Seal - it's the final section of the url, after the entity title.
To get a specific version of an entity, include the version as a second argument. You can also pass an entity ref object instead.
Since it returns the whole json blob for the entity, you can get the entity's fields via entity["fields"]
, or a specific field via entity["fields"]["fieldName"]
.
Gets the entity the script card is embedded in.
Gets (non-archived) entities by their title (string). Note that exact titles are matched by default. Since multiple entities can share the same title, this returns an array. You can also search for titles containing the search string with exact=False
.
Update a field value in the entity the script is embedded in.
Update a field value in any entity.
Add a new field to the embedded-in entity.
For specific field types, refer to this specific section in the Scripts docs.
Add a new field to any entity.
Remove a field from the embedded-in entity. Note that the field's data will also be removed.
Delete field in any entity.
The file is downloaded to the local filesystem of the virtual machine instance. The value returned is the local file path as a string.
Returns the id of the new File Entity in Seal.
Extract data from a file entity. See Parameters below:
file_entity_id
: ID of the file entity to extract data from
version
: (Optional) Specific version of the file entity
prompt
: (Optional, keyword-only) Custom prompt to guide the data extraction
Returns: json
Example:
Submit instances to a submission field in the surrounding entity.
Submit one or more instances to an instance submission field, with optional initial field values in a dataframe. If a column is called 'title' or 'Title', it will set the instances' titles of setting the values of a field called 'title' or 'Title').
You can optionally specify a number of empty instances to create.
You can also submit data to a submission table in any entity:
Create an instance from a template. By default, instances are created from the latest published version of the template.
To create an instance from a specific version of a template, include the version as a second argument. You can also pass an entity ref object instead.
Parameters:
template_id
: ID of the template to create an instance from
version
: (Optional, keyword-only) Specific version of the template
field_values
: (Optional, keyword-only) Initial field values for the instance. The specified fields must exist on the template.
Similarly, you can also create test instances from a template:
Generate a chart from an Altair chart. See parameters below:\
chart
: The Altair chart instance
title
:The name for the chart
type_title
: The name of the type to create a chart from. The content type must be Chart.
Run an entity that has content type Script code
. By default, the latest version of the entity is run.
To run a specific version of a script entity, include the version as a second argument. You can also pass an entity ref object instead.
Parameters:
script_id
: ID of the script to run
script_version
: (Optional, keyword-only) Specific version of the script
Seal comes with many common Python packages pre-installed. If there are other python packages you regularly require, please contact Seal support.
These packages are automatically imported in every Script, so don't need to be manually imported:
altair
(also aliased as alt
)
Chart
(alias of altair.Chart
)
pandas
(also aliased as pd
)
To temporarily install a package when running the script: