Skip to content

Vizro

vizro.Vizro

Vizro(**kwargs)

Vizro app.

Usage documentation

How to run or deploy a dashboard

Other Parameters:

  • **kwargs (Any) –

    Arbitrary keyword arguments passed through to Dash, for example assets_folder, url_base_pathname. See Dash documentation for all possible arguments.

build

build(dashboard)

Builds the dashboard.

Usage documentation

How to create a dashboard

Parameters:

  • dashboard (Dashboard) –

    configured dashboard model.

Returns:

  • Self

    Built Vizro app.

run

run(**kwargs)

Runs the dashboard locally using the Flask development server.

Other Parameters:

  • **kwargs (Any) –

    Arbitrary positional arguments passed through to Dash.run, for example debug, port. See Dash documentation for all possible arguments

Usage documentation

How to develop in Python script