Build#
lit.sdk.data.build
#
This module provides classes and functions for managing build processes and their statuses within the LIT platform.
Build
#
Represents the process which builds raw data files into an asset.
path = Path(get_folder(self.team, self.runid))
instance-attribute
#
The path to folder where the build artifacts are saved.
runid = runid
instance-attribute
#
The identifier of the build.
tags = get_tags(self.team, self.runid, is_archived(self.team, self.runid)) or ''.split(',')
instance-attribute
#
A list of tags associated with this build.
team = team
instance-attribute
#
The name of the team.
__init__(team, runid)
#
Initializes a new instance of Build.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
team
|
str
|
The team which owns the Build. |
required |
runid
|
int
|
The run id of the Build. |
required |