--- title: Utilities and user info slug: /develop/api-reference/utilities --- # Utilities and user info There are a handful of methods that allow you to create placeholders in your app, provide help using doc strings, get and modify configuration options and query parameters.

User info

`st.experimental_user` returns information about the logged-in user of private apps on Streamlit Community Cloud. ```python if st.experimental_user.email == "foo@corp.com": st.write("Welcome back, ", st.experimental_user.email) else: st.write("You are not authorized to view this page.") ```

Get help

Display object’s doc string, nicely formatted. ```python st.help(st.write) st.help(pd.DataFrame) ```

Render HTML

Renders HTML strings to your app. ```python css = """ """ st.html(css) ```