Add1E commited on
Commit
600494f
·
verified ·
1 Parent(s): 9a00fb3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +170 -52
app.py CHANGED
@@ -7,6 +7,7 @@ from datetime import datetime
7
  import pytz
8
  import hmac
9
  import os
 
10
 
11
  feed_url1 = 'https://trends.google.de/trends/trendingsearches/daily/rss?geo=AT'
12
 
@@ -55,23 +56,156 @@ def find_details2(req_json):
55
  gewünschte_details.append(article_details)
56
  return gewünschte_details
57
 
 
 
58
 
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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']} "):
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']})")
67
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  def display_articles_for_today(count, index):
 
 
 
 
 
 
 
 
 
 
69
  with st.expander(f"{count+1}• {index['title']['query']} | Generated Traffic: {index['formattedTraffic']}"):
70
  articles = find_details2(index['articles'])
71
  for count2, url in enumerate(articles, start=1):
72
- st.markdown(f"{count2}{url['articleTitle']} [Go To →]({url['url']})")
73
- #st.markdown(f"{count}• {index} [Go To →])")
74
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
 
76
  categories = {
77
  "Alle": "all",
@@ -83,6 +217,8 @@ categories = {
83
  "Technik": "t",
84
  }
85
 
 
 
86
  def check_password():
87
  """Returns `True` if the user had the correct password."""
88
 
@@ -111,14 +247,19 @@ if not check_password():
111
  st.stop() # Do not continue if check_password is not True.
112
 
113
  pytrend = TrendReq(hl='de-AT', tz=360, timeout=(10,50))
114
- real_trending_searches = {}
115
- base_data = {}
116
-
117
 
 
 
 
118
  for category_name, category_code in categories.items():
119
- base = pytrend.realtime_trending_searches(pn='AT', cat=category_code, count=75)
120
- base_data[category_name] = base
121
- real_trending_searches[category_name] = convert_into_pd(base)
 
 
 
 
 
122
 
123
  if 'selected_option' not in st.session_state:
124
  st.session_state['selected_option'] = "default_value" # You can set a default value as needed
@@ -126,53 +267,30 @@ if 'selected_option' not in st.session_state:
126
  # Now, you can safely use st.session_state['selected_option']
127
  selected_option = st.sidebar.radio("Choose an option", ["Realzeit Anfragen", "Tagesaktuelle Anfragen", "Trends von Gestern"])
128
  st.warning("Die aufgelisteten Keywörter für erhöhte Reichweite in den Überschriften verwenden")
129
- 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
  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)
141
 
142
  display_articles_for_category(auswahl)
143
  elif selected_option == "Trends von Gestern":
144
- # trending_searches = pytrend.trending_searches(pn="austria")
145
- # st.code(trending_searches)
146
- timezone = 'Europe/Vienna'
147
- today = datetime.now(pytz.timezone(timezone)).date()
148
- feed = parse_url(feed_url1)
149
- entries = []
150
- ns = {'ht': 'https://trends.google.de/trends/trendingsearches/daily'} # Define namespace
151
- for item in feed.findall('.//item'):
152
- pubDate = datetime.strptime(item.find('pubDate').text, '%a, %d %b %Y %H:%M:%S %z').date()
153
- # Filter: Überspringe, wenn pubDate heute ist
154
- if pubDate == today:
155
- continue
156
- entry = {
157
- 'title': item.find('title').text,
158
- 'pubDate': item.find('pubDate').text,
159
- 'approx_traffic': item.find('ht:approx_traffic', ns).text if item.find('ht:approx_traffic', ns) is not None else None,
160
- 'news_items': []
161
- }
162
- for news_item in item.findall('ht:news_item', ns):
163
- news_details = {
164
- 'title': news_item.find('ht:news_item_title', ns).text,
165
- 'snippet': news_item.find('ht:news_item_snippet', ns).text,
166
- 'url': news_item.find('ht:news_item_url', ns).text,
167
- 'source': news_item.find('ht:news_item_source', ns).text
168
- }
169
- entry['news_items'].append(news_details)
170
- entries.append(entry)
171
- count = 1
172
- for entry in entries:
173
- with st.expander(f"{count}• {entry['title']} | Generated Traffic: {entry['approx_traffic']}"):
174
- #st.code(entry)
175
- st.write(f"Veröffentlichungsdatum : {entry['pubDate']}")
176
- for count2, link in enumerate(entry['news_items'], start=1):
177
- st.markdown(f"{count2}• {link['title']} [Go To →]({link['url']})")
178
- count += 1
 
7
  import pytz
8
  import hmac
9
  import os
10
+ import time
11
 
12
  feed_url1 = 'https://trends.google.de/trends/trendingsearches/daily/rss?geo=AT'
13
 
 
56
  gewünschte_details.append(article_details)
57
  return gewünschte_details
58
 
59
+ if 'reset' not in st.session_state:
60
+ st.session_state.reset = False
61
 
62
 
63
+ def display_trends_from_yesterday():
64
+ checkbox_statuses = {}
65
+ urls = []
66
+
67
+ timezone = 'Europe/Vienna'
68
+ today = datetime.now(pytz.timezone(timezone)).date()
69
+ feed = parse_url(feed_url1)
70
+ entries = []
71
+ ns = {'ht': 'https://trends.google.de/trends/trendingsearches/daily'} # Define namespace
72
+ for item in feed.findall('.//item'):
73
+ pubDate = datetime.strptime(item.find('pubDate').text, '%a, %d %b %Y %H:%M:%S %z').date()
74
+ # Filter: Überspringe, wenn pubDate heute ist
75
+ if pubDate == today:
76
+ continue
77
+ entry = {
78
+ 'title': item.find('title').text,
79
+ 'pubDate': item.find('pubDate').text,
80
+ 'approx_traffic': item.find('ht:approx_traffic', ns).text if item.find('ht:approx_traffic', ns) is not None else None,
81
+ 'news_items': []
82
+ }
83
+ for news_item in item.findall('ht:news_item', ns):
84
+ news_details = {
85
+ 'title': news_item.find('ht:news_item_title', ns).text,
86
+ 'snippet': news_item.find('ht:news_item_snippet', ns).text,
87
+ 'url': news_item.find('ht:news_item_url', ns).text,
88
+ 'source': news_item.find('ht:news_item_source', ns).text
89
+ }
90
+ entry['news_items'].append(news_details)
91
+ entries.append(entry)
92
+
93
+ count = 1
94
+ for entry in entries:
95
+ with st.expander(f"{count}• {entry['title']} | Generated Traffic: {entry['approx_traffic']}"):
96
+ st.write(f"Veröffentlichungsdatum : {entry['pubDate']}")
97
+ for count2, link in enumerate(entry['news_items'], start=1):
98
+ checkbox_label = f"yesterday_{count}_{count2}"
99
+ if st.session_state.reset:
100
+ st.session_state[checkbox_label] = False
101
+ checkbox_statuses[checkbox_label] = st.session_state.get(checkbox_label, False)
102
+ checkbox_statuses[checkbox_label] = st.checkbox(
103
+ f"{count2}• {link['title']} [Go To →]({link['url']})",
104
+ value=checkbox_statuses[checkbox_label],
105
+ key=checkbox_label
106
+ )
107
+ if checkbox_statuses[checkbox_label]:
108
+ urls.append(link['url'])
109
+
110
+ # Button am Ende des Expanders
111
+ if st.button(f"Open Selected Links", key=f"button_yesterday_{count}"):
112
+ open_links(urls)
113
+ time.sleep(2.5)
114
+ st.session_state["reset"] = True
115
+ st.rerun()
116
+
117
+ count += 1
118
+
119
  def display_articles_for_category(category):
120
+ checkbox_statuses = {}
121
+ urls = []
122
+
123
+ # Dictionary zur Verwaltung des Status jeder Checkbox
124
+ for index, row in st.session_state["real_trending_searches"][category].iterrows():
125
+ articles = find_details(st.session_state["base_data"][category], row['title'])
126
+ for count2, url in enumerate(articles, start=1):
127
+ checkbox_label = f"{category}_{index}_{count2}"
128
+ if st.session_state.reset:
129
+ st.session_state[checkbox_label] = False
130
+ checkbox_statuses[checkbox_label] = st.session_state.get(checkbox_label, False)
131
+
132
+ for index, row in st.session_state["real_trending_searches"][category].iterrows():
133
  count = index + 1
134
  with st.expander(f"{count}• {row['title']} "):
135
+ articles = find_details(st.session_state["base_data"][category], row['title'])
136
  for count2, url in enumerate(articles, start=1):
137
+ checkbox_label = f"{category}_{index}_{count2}"
138
+ disabled = not checkbox_statuses[checkbox_label] and sum(checkbox_statuses.values()) >= MAX_CHECKED
139
+ checkbox_statuses[checkbox_label] = st.checkbox(
140
+ f"{count2}• {url['articleTitle']} [Go To →]({url['url']})",
141
+ value=checkbox_statuses[checkbox_label],
142
+ key=checkbox_label,
143
+ disabled=disabled
144
+ )
145
+ if checkbox_statuses[checkbox_label]:
146
+ urls.append(url['url'])
147
+
148
+ # Button am Ende des Expanders
149
+ if st.button("Open All Links", key=f"button_{category}_{index}"):
150
+ open_links(urls)
151
+ time.sleep(2.5)
152
+ st.session_state["reset"] = True
153
+ st.rerun()
154
+
155
+
156
+ # Funktion zum Rendern von Artikeln für heute
157
  def display_articles_for_today(count, index):
158
+ checkbox_statuses = {}
159
+ urls = []
160
+ # Dictionary zur Verwaltung des Status jeder Checkbox
161
+ for count2, url in enumerate(index['articles'], start=1):
162
+ checkbox_label = f"today_{count}_{count2}"
163
+ if st.session_state.reset:
164
+ st.session_state[checkbox_label] = False
165
+ checkbox_statuses[checkbox_label] = st.session_state.get(checkbox_label, False)
166
+
167
+
168
  with st.expander(f"{count+1}• {index['title']['query']} | Generated Traffic: {index['formattedTraffic']}"):
169
  articles = find_details2(index['articles'])
170
  for count2, url in enumerate(articles, start=1):
171
+ checkbox_label = f"today_{count}_{count2}"
172
+ disabled = not checkbox_statuses[checkbox_label] and sum(checkbox_statuses.values()) >= MAX_CHECKED
173
+ checkbox_statuses[checkbox_label] = st.checkbox(
174
+ f"{count2}• {url['articleTitle']} [Go To →]({url['url']})",
175
+ value=checkbox_statuses[checkbox_label],
176
+ key=checkbox_label,
177
+ disabled=disabled
178
+ )
179
+ if checkbox_statuses[checkbox_label]:
180
+ urls.append(url['url'])
181
+
182
+ # Button am Ende des Expanders
183
+ if st.button("Open Selected Links", key=f"button_today_{count}"):
184
+ open_links(urls)
185
+ time.sleep(2.5)
186
+ st.session_state["reset"] = True
187
+ st.rerun()
188
+
189
+ # Funktion zum Öffnen der Links in einem neuen Tab
190
+ def open_links(urls):
191
+ base_url = os.getenv("url")
192
+ query_params = "&".join([f"article-links[]={url}" for url in urls])
193
+ full_url = f"{base_url}{query_params}"
194
+
195
+ js_code = f"""
196
+ <script>
197
+ if (!localStorage.getItem('reloaded')) {{
198
+ localStorage.setItem('reloaded', 'true');
199
+ window.open("{full_url}", '_blank');
200
+ window.location.reload();
201
+ }} else {{
202
+ localStorage.removeItem('reloaded');
203
+ }}
204
+ </script>
205
+ """
206
+ st.components.v1.html(js_code)
207
+
208
+
209
 
210
  categories = {
211
  "Alle": "all",
 
217
  "Technik": "t",
218
  }
219
 
220
+ MAX_CHECKED = 3
221
+
222
  def check_password():
223
  """Returns `True` if the user had the correct password."""
224
 
 
247
  st.stop() # Do not continue if check_password is not True.
248
 
249
  pytrend = TrendReq(hl='de-AT', tz=360, timeout=(10,50))
 
 
 
250
 
251
+ if 'base_load_finished' not in st.session_state:
252
+ st.session_state["real_trending_searches"] = {}
253
+ st.session_state["base_data"] = {}
254
  for category_name, category_code in categories.items():
255
+ if 'base_load_finished' not in st.session_state:
256
+ st.session_state["base"] = pytrend.realtime_trending_searches(pn='AT', cat=category_code, count=75)
257
+ st.session_state["base_data"][category_name] = st.session_state["base"]
258
+ st.session_state["real_trending_searches"][category_name] = convert_into_pd(st.session_state["base"])
259
+ elif st.session_state.reset:
260
+ st.session_state["base"] = pytrend.realtime_trending_searches(pn='AT', cat=category_code, count=75)
261
+ st.session_state["base_data"][category_name] = st.session_state["base"]
262
+ st.session_state["real_trending_searches"][category_name] = convert_into_pd(st.session_state["base"])
263
 
264
  if 'selected_option' not in st.session_state:
265
  st.session_state['selected_option'] = "default_value" # You can set a default value as needed
 
267
  # Now, you can safely use st.session_state['selected_option']
268
  selected_option = st.sidebar.radio("Choose an option", ["Realzeit Anfragen", "Tagesaktuelle Anfragen", "Trends von Gestern"])
269
  st.warning("Die aufgelisteten Keywörter für erhöhte Reichweite in den Überschriften verwenden")
270
+ if selected_option == "Tagesaktuelle Anfragen":
271
+ if 'today' not in st.session_state:
272
+ st.session_state["today"] = pytrend.today_searches(pn="AT")
273
+ elif st.session_state.reset:
274
+ st.session_state["today"] = pytrend.today_searches(pn="AT")
275
+
276
+ #today = pytrend.today_searches(pn="AT")
277
  #trending_searches = pytrend.trending_searches(pn="austria")
278
+ for count, index in enumerate(st.session_state["today"], start=0):
279
  try:
280
  display_articles_for_today(count, index)
281
  except Exception as e:
282
  st.code(e)
283
  continue
284
  elif selected_option == "Realzeit Anfragen":
285
+ choices_list = list(st.session_state["real_trending_searches"].keys())
286
+ if len(categories) == len(choices_list):
287
+ st.session_state["base_load_finished"] = True
288
+ print(choices_list)
289
  auswahl = st.selectbox("Select Ressort", choices_list)
290
 
291
  display_articles_for_category(auswahl)
292
  elif selected_option == "Trends von Gestern":
293
+ display_trends_from_yesterday()
294
+
295
+ if st.session_state.reset:
296
+ st.session_state["reset"] = False