Skip to content

Vizro

vizro.Vizro

Vizro(**kwargs: Any)

Vizro app.

Usage documentation

How to run or deploy a dashboard

PARAMETER DESCRIPTION
**kwargs

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

TYPE: Any

build

build(dashboard: Dashboard) -> Self

Builds the dashboard.

Usage documentation

How to create a dashboard

PARAMETER DESCRIPTION
dashboard

configured dashboard model.

TYPE: Dashboard

RETURNS DESCRIPTION
Self

Built Vizro app.

run

run(**kwargs: Any)

Runs the dashboard locally using the Flask development server.

PARAMETER DESCRIPTION
**kwargs

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

TYPE: Any

Usage documentation

How to develop in Python script