list_runs()
Python package: neptune-query
Lists the IDs of runs in a Neptune project.
The ID refers to the string stored in the sys/custom_run_id
attribute of a run.
Parameters
Returns
list[str]
– A list of run IDs in the Neptune project.
Examples
List all my runs in a specific project:
import neptune_query.runs as nq_runs
from neptune_query.filters import Filter
nq_runs.list_runs(
project="team-alpha/sandbox",
runs=Filter.eq("sys/owner", "MyUsername"),
)