Henkster72 / covid

Comparison of Dash and Streamlit using a simple Covid-19 app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

covid

Comparison of Dash and Streamlit using a simple Covid-19 app.

The Python libraries Dash by Plotly and Streamlit are compared using the example of a simple Covid-19 app. This example shows how Streamlit can produce powerful data exploration tools with extremely little code. The used data is directly fetched from Our World in Data.

Using Dash the resulting app looks like this:

In comparison the app using Streamlit looks like this:

Both apps feature the same functionality, however Streamlit seems to be significantly slower than Dash. On the other hand the Streamlit only requires roughly half the lines of code of the Dash app. To make the appearance of the Dash app similar, a style sheet is placed in the assets folder.

After installing all required packages you can run the Dash app using python covid_dash.py and the Streamlit app using streamlit run covid_streamlit.

About

Comparison of Dash and Streamlit using a simple Covid-19 app

License:GNU General Public License v3.0


Languages

Language:Python 97.6%Language:CSS 2.4%