Skip to main content
App version: 3.4.7

list_experiments()

Python package: neptune-fetcher

Returns a list of experiment names in a project.

NameTypeDefaultDescription
experimentsUnion[str, Filter], optionalNoneA filter specifying which experiments to include:
  • a regex that the experiment name must match, or
  • a Filter object.
contextContext, optionalNoneWhich project and API token to use for the fetching operation. Useful for switching projects.

Examples

List all experiments in a project:

import neptune_fetcher.alpha as npt


npt.list_experiments()

Search a different project than the current global context and list only experiments whose name match a certain regex pattern:

my_secondary_project = npt.get_context().with_project("team-beta/project-y")

npt.list_experiments(
experiments=r"^seagull_.*_02$",
context=my_secondary_project,
)
Output
['seagull-dt35a_02', 'seagull-987kj_02', 'seagull-56hcs11_02']