Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
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)
|