Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ def find_details2(req_json):
|
|
60 |
def display_articles_for_category(category):
|
61 |
for index, row in real_trending_searches[category].iterrows():
|
62 |
count = index + 1
|
63 |
-
with st.expander(f"{count}•
|
64 |
articles = find_details(base_data[category], row['title'])
|
65 |
for count2, url in enumerate(articles, start=1):
|
66 |
st.markdown(f"{count2}• {url['articleTitle']} [Go To →]({url['url']})")
|
|
|
60 |
def display_articles_for_category(category):
|
61 |
for index, row in real_trending_searches[category].iterrows():
|
62 |
count = index + 1
|
63 |
+
with st.expander(f"{count}• {row['title']} (Keywords für die Überschrift)"):
|
64 |
articles = find_details(base_data[category], row['title'])
|
65 |
for count2, url in enumerate(articles, start=1):
|
66 |
st.markdown(f"{count2}• {url['articleTitle']} [Go To →]({url['url']})")
|