Spaces:
Runtime error
Runtime error
tensorwitz
commited on
Commit
·
6725cb4
1
Parent(s):
4965f3c
increase realtime trend amount
Browse files
app.py
CHANGED
@@ -447,7 +447,7 @@ def fetch_trends_realtime():
|
|
447 |
pytrend = TrendReq(hl='de-AT', tz=360, timeout=(10,50))
|
448 |
|
449 |
for ressort_name, ressort_code in RESSORTS.items():
|
450 |
-
trends_realtime = pytrend.realtime_trending_searches(pn='AT', cat=ressort_code, count=
|
451 |
|
452 |
st.session_state["trends_realtime_" + ressort_code] = trends_realtime
|
453 |
|
|
|
447 |
pytrend = TrendReq(hl='de-AT', tz=360, timeout=(10,50))
|
448 |
|
449 |
for ressort_name, ressort_code in RESSORTS.items():
|
450 |
+
trends_realtime = pytrend.realtime_trending_searches(pn='AT', cat=ressort_code, count=15)
|
451 |
|
452 |
st.session_state["trends_realtime_" + ressort_code] = trends_realtime
|
453 |
|