caution
You're viewing docs for the deprecated Fetcher API.
We recommend upgrading to the new Query API.
fetch_series()
Python package: neptune-fetcher
Fetches raw StringSeries
values from selected experiments.
Parameters
Fetch from runs
To fetch string series attributes from runs instead of experiments:
- Import the
fetch_series()
function from theruns
module - Replace the
experiments
parameter withruns
- Pass run IDs instead of experiment names
from neptune_fetcher.alpha import runs
runs.fetch_series(
runs=r"^speedy-seagull.*_02", # run ID
attributes=r"messages/.*",
)