Skip to main content
App version: 3.4.7

set_context()

Python package: neptune-fetcher

By default, the context is set from the NEPTUNE_API_TOKEN and NEPTUNE_PROJECT environment variables on import of the module. Use this function to override the default context.

If the argument is None, the global context is reset from environment variables.

Returns the set context.

Parameters

NameTypeDefaultDescription
contextContext, optionalNoneNeptune context, as defined by the project path and API token.

Example

import neptune_fetcher.alpha as npt


my_secondary_project = Context(project="team-beta/project-y", api_token="SomeOtherNeptuneApiToken")
different_context = npt.set_context(my_secondary_project)

npt.list_experiments(experiments=r"^flying_.*", context=different_context)