generate_run_id
Public callable
Generate a notebook-safe run identifier.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
str
|
Human-friendly prefix, typically a dataset name. |
"run"
|
Returns:
| Type | Description |
|---|---|
str
|
Identifier in the form |
Examples:
>>> generate_run_id("orders")
'orders_20260502T102030Z_1a2b3c4d'
Source code in src/fabricops_kit/runtime.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | |