# Visualize Results on the Web

In [this](https://docs.pollination.solutions/user-manual/developers/apps/download-output) section we downloaded the "visualization" output of the daylight-factor study that we ran, which downloaded a file named "daylight\_factor.vtkjs". We will now visualize that file in the Pollination web app.

Install the following libraries first

```python
pip install pollination-streamlit-viewer
```

Visualize the vtkjs file in the web app

```python
from pollination_streamlit_viewer import viewer
from pathlib import Path

vtkjs_path = Path('daylight_factor.vtkjs')
viewer(content=vtkjs_path.read_bytes(), key='df')
```

This should render the model inside the Pollination viewer in the web app;

![](https://2884583650-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MaZZSUE1L_iKrqfreV9%2Fuploads%2Fgit-blob-14a6132fa3f13c91d0882e1dadbf61f9d3cfb2ac%2Fviewer.png?alt=media\&token=14745f8b-dca7-47f6-909f-a46e593d338c)

In order to learn more about how to integrate the Pollination viewer in your app, read this [section](https://docs.pollination.solutions/user-manual/developers/apps/integrating-the-pollination-viewer).
