Bloxs is a simple python package that helps you display information in an attractive way (formed in blocks). Perfect for building dashboards, reports and apps in the notebook.
It works with: Jupyter Notebook, Google Colab, Deepnote, Kaggle Notebook
B([
B(1999, "Percent change!", percent_change=10),
B("", "Works with emojis"),
B("68%", "Loading progress", progress=68),
B(1234, "Bloxs in notebook!")
])
How to use the bloxes in streamlit?
I have tried with st.pyplot
, and with streamlit HTML component
but not able to add in streamlit app.
Is there a way to add these bloxs in Streamlit?