Add1E commited on
Commit
a4b4d06
·
verified ·
1 Parent(s): ff01b82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -130,7 +130,11 @@ if selected_option == "Tagesaktuelle Anfragen":
130
  today = pytrend.today_searches(pn="AT")
131
  #trending_searches = pytrend.trending_searches(pn="austria")
132
  for count, index in enumerate(today, start=0):
133
- display_articles_for_today(count, index)
 
 
 
 
134
  elif selected_option == "Realzeit Anfragen":
135
  choices_list = list(real_trending_searches.keys())
136
  auswahl = st.selectbox("Select Ressort", choices_list)
 
130
  today = pytrend.today_searches(pn="AT")
131
  #trending_searches = pytrend.trending_searches(pn="austria")
132
  for count, index in enumerate(today, start=0):
133
+ try:
134
+ display_articles_for_today(count, index)
135
+ except Exception as e:
136
+ st.code(e)
137
+ continue
138
  elif selected_option == "Realzeit Anfragen":
139
  choices_list = list(real_trending_searches.keys())
140
  auswahl = st.selectbox("Select Ressort", choices_list)