Hi,
I have a spreadsheet that I am importing as a dataframe. One column includes string hyperlinks in the form “http:…whatever”. I want to make each cell a hyperlink, so click on the text, go to the address. I
st.markdown("### Books In Print")
df = pd.read_csv("BIP4streamlit.csv")
df['title'].astype(str)
df['Contributor 1'].astype(str)
df
Is there a way to do this?