Possible to run streamlit in iPython or similar?

Hello, one of the fastest ways to learn how to use a Python package is being able to print some of the output during runtime, e.g. getting attributes and types of streamlit objects, etc. Is there anyway I can do this or will be able to do this?

Hi @yenson-lau,

We currently don’t support running Streamlit in a shell, however there is a st.help command that might be useful to you.

import streamlit as st

def my_func(some_param, another_param=123):
    """This is the doc"""
    pass

st.help(st.dataframe)
st.help(my_func)
st.help(123)