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

PyPI version fury.io
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.

Parameters
----------
top : int
Number of topics to display. Default is 5.
criteria : str
Search criteria. Either 'broad' or 'narrow'. Default is 'broad'.
sortby : str
Sort criteria. Either 'relevance',

 

 

 

To finish reading, please visit source site