guys,
I have the task to create informative dashboards for different analysis and I was wondering what is the better option - create a web app which I will update every month or a stand-alone HTML which I will upload in the cloud every month. Requirements:
- The dashboard must be interactive: zoom, dropdowns with options, etc.
- Must be written in Python.
- It will be shared with 3 to 4 people once a month after an update.
- The dashboard does not interact with database, all the visitors need will be in the dashboard.
- There are no CRUD operations.
Till now I have observed the following options:
- web app with Dash, hosted in Heroku. Not quite familiar with what plan I need.
- stand-alone Html files with Bokeh
Thanks!