Right now the app is fine but once a lot of people start using it I start getting http 429 errors since I scrape results from google as part of my search method. How do I ensure that this does not happen again ??
I asked chatgpt and it said:
from streamlit.script_runner import StopException, Throttler is it supported in the newest streamlit version, if not what are the alternatives. I would like to use it as my web app involves http resquests to google and I would like to rate limit in my Streamlit app to ensure that only a limited number of requests are sent at a time. Because I get 429 http responses when hosting and lots of people are using my web app and locally I never face this error.? How would I avoid 429 in streamlit deploying when doing http requests