You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building a Preswald app, I often need to debug intermediate output of Python objects or arrays. Passing an array to the text function should print it similar to how Streamlit prints objects passed to st.write.
Goal:
arr = [1, 2, 3, 4]
text(arr)
<web app prints arr in an easy to read manner>
The text was updated successfully, but these errors were encountered:
When building a Preswald app, I often need to debug intermediate output of Python objects or arrays. Passing an array to the
text
function should print it similar to how Streamlit prints objects passed tost.write
.Goal:
<web app prints
arr
in an easy to read manner>The text was updated successfully, but these errors were encountered: