lamindb.finish¶
- lamindb.finish(ignore_non_consecutive=None)¶
Finish a tracked run.
writes a timestamp:
run.finished_at
saves the source code:
transform.source_code
When called in the last cell of a notebook:
prompts for user input if not consecutively executed
requires to save the notebook in your editor right before
saves a run report:
run.report
- Parameters:
ignore_non_consecutive (
bool
|None
, default:None
) – Whether to ignore if a notebook was non-consecutively executed.- Return type:
None
Examples
>>> import lamindb as ln >>> ln.track() >>> # do things while tracking data lineage >>> ln.finish()
See also
lamin save script.py
orlamin save notebook.ipynb
→ docs