Add1E commited on
Commit
bbdecbb
·
verified ·
1 Parent(s): 52beb40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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}• (Keywords für die Überschrift:) {row['title']}"):
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']})")