Continuing the discussion from How to display a clickable link pandas dataframe:
Summary
I am using st.column_config.LinkColumn(“Link column”) to make my links inside my dataframe clickable, streamlit is but doing the following and adding this bit to my links:
Normal Link:
After applying st.column_config.LinkColumn(“Link column”) the label of the link remains the same, but the link itself changes to this an the page don’t open:
https://username-appname-appname-xxxxxx.streamlit.app/~/+/www.xx-xxxxxx.de/xxxxxx.html
Code snippet:
st.dataframe(df,
column_config={
"Number": st.column_config.NumberColumn(format="%d"),
"Link": st.column_config.LinkColumn("Link")
}
)