list_runs()
Lists the IDs of runs in a Neptune project.
note
This function targets all runs, not just experiment heads.
Parameters
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"),
)