Standard Library
The following Starlark libraries are available in Kurtosis by default:
- The Starlark time module (a collection of time-related functions). The
time.now()
function is disabled as it introduces non-determinism and users are encouraged to useplan.run_python
in the meantime while we work on a suitable replacement. - The Starlark json module (allows
encode
,decode
andindent
JSON) - The Starlark struct builtin (allows you to create
structs
like the one used inadd_service
)