Streamlit component to display topics from Streamlit’s community forum related to any exception
Streamlit component to display topics from Streamlit’s community forum related to any exception. Installation pip install streamlit-forum Usage import streamlit as st from streamlit_forum import forum with forum(): import streamlit as st # Your code that may raise an exception here. E.g. 0/0 Docs To view the docstring, import Streamlit and the component and call st.help(forum). streamlit_forum.forum(top=5, criteria=’broad’, sortby=’relevance’, status=’any’) Use in a `with` block to execute some code and display topics from Streamlit’s community forum related to any exception. […]
Read more