mai-do commited on
Commit
f583538
1 Parent(s): fa4727b
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -157,7 +157,8 @@ query = st.text_input("Enter a keyword to search for Reddit comments", value="da
157
  start_date = st.date_input("Start Date", value=pd.to_datetime("2024-01-01").date())
158
  end_date = st.date_input("End Date", value=pd.to_datetime("today").date())
159
 
160
- print('=================")
 
161
  if st.button("Analyze"):
162
  comments, timestamps, score = fetch_reddit_data(query, max_results=50, min_score=5)
163
  print(f'Fetched {len(comments)} comments.')
 
157
  start_date = st.date_input("Start Date", value=pd.to_datetime("2024-01-01").date())
158
  end_date = st.date_input("End Date", value=pd.to_datetime("today").date())
159
 
160
+ print("=================")
161
+
162
  if st.button("Analyze"):
163
  comments, timestamps, score = fetch_reddit_data(query, max_results=50, min_score=5)
164
  print(f'Fetched {len(comments)} comments.')