I have a very simple web app in streamlit. It is connected with google sheets. But these two lines make my app very slow!
s=Spread(spreadsheetname,client=client)
sh=client.open(spreadsheetname)
In every interaction, the streamlit run the whole code again, that’s why these two lines create problems. How can I solve the issue?