akhaliq HF staff commited on
Commit
91c14ed
·
verified ·
1 Parent(s): 1714fcd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -10
app.py CHANGED
@@ -13,6 +13,8 @@ from gradio_calendar import Calendar
13
  import datasets
14
  import requests
15
 
 
 
16
  # --- Data Loading and Processing ---
17
 
18
  api = HfApi()
@@ -186,12 +188,12 @@ class PaperManager:
186
  published_at_str = row.get('date', datetime.datetime.now(timezone.utc).isoformat())
187
  try:
188
  published_time = datetime.datetime.strptime(published_at_str, "%Y-%m-%d")
189
- published_time = published_time.replace(tzinfo=datetime.timezone.utc)
190
  except ValueError:
191
  # If parsing fails, use current time to minimize the impact on sorting
192
- published_time = datetime.datetime.now(datetime.timezone.utc)
193
 
194
- time_diff = datetime.datetime.now(datetime.timezone.utc) - published_time
195
  time_diff_hours = time_diff.total_seconds() / 3600 # Convert time difference to hours
196
 
197
  # Avoid division by zero and apply the hotness formula
@@ -246,10 +248,10 @@ class PaperManager:
246
  comments = row.get('💬', 0)
247
  published_time_str = row.get('date', datetime.datetime.now(timezone.utc).strftime("%Y-%m-%d"))
248
  try:
249
- published_time = datetime.datetime.strptime(published_time_str, "%Y-%m-%d").replace(tzinfo=datetime.timezone.utc)
250
  except ValueError:
251
- published_time = datetime.datetime.now(datetime.timezone.utc)
252
- time_diff = datetime.datetime.now(datetime.timezone.utc) - published_time
253
  time_ago_days = time_diff.days
254
  time_ago = f"{time_ago_days} days ago" if time_ago_days > 0 else "today"
255
 
@@ -487,7 +489,6 @@ with demo:
487
 
488
  Once your paper is submitted, it will automatically appear in this demo.
489
  """)
490
-
491
  # Header with Refresh Button
492
  with gr.Row():
493
  gr.HTML("""
@@ -504,7 +505,6 @@ with demo:
504
  </tr>
505
  </table>
506
  """)
507
-
508
  # Sort Options
509
  with gr.Row():
510
  sort_radio = gr.Radio(
@@ -513,10 +513,8 @@ with demo:
513
  label="Sort By",
514
  interactive=True
515
  )
516
-
517
  # Paper list
518
  paper_list = gr.HTML()
519
-
520
  # Navigation Buttons
521
  with gr.Row():
522
  prev_button = gr.Button("Prev")
 
13
  import datasets
14
  import requests
15
 
16
+ from datetime import timezone # Added import to fix the NameError
17
+
18
  # --- Data Loading and Processing ---
19
 
20
  api = HfApi()
 
188
  published_at_str = row.get('date', datetime.datetime.now(timezone.utc).isoformat())
189
  try:
190
  published_time = datetime.datetime.strptime(published_at_str, "%Y-%m-%d")
191
+ published_time = published_time.replace(tzinfo=timezone.utc)
192
  except ValueError:
193
  # If parsing fails, use current time to minimize the impact on sorting
194
+ published_time = datetime.datetime.now(timezone.utc)
195
 
196
+ time_diff = datetime.datetime.now(timezone.utc) - published_time
197
  time_diff_hours = time_diff.total_seconds() / 3600 # Convert time difference to hours
198
 
199
  # Avoid division by zero and apply the hotness formula
 
248
  comments = row.get('💬', 0)
249
  published_time_str = row.get('date', datetime.datetime.now(timezone.utc).strftime("%Y-%m-%d"))
250
  try:
251
+ published_time = datetime.datetime.strptime(published_time_str, "%Y-%m-%d").replace(tzinfo=timezone.utc)
252
  except ValueError:
253
+ published_time = datetime.datetime.now(timezone.utc)
254
+ time_diff = datetime.datetime.now(timezone.utc) - published_time
255
  time_ago_days = time_diff.days
256
  time_ago = f"{time_ago_days} days ago" if time_ago_days > 0 else "today"
257
 
 
489
 
490
  Once your paper is submitted, it will automatically appear in this demo.
491
  """)
 
492
  # Header with Refresh Button
493
  with gr.Row():
494
  gr.HTML("""
 
505
  </tr>
506
  </table>
507
  """)
 
508
  # Sort Options
509
  with gr.Row():
510
  sort_radio = gr.Radio(
 
513
  label="Sort By",
514
  interactive=True
515
  )
 
516
  # Paper list
517
  paper_list = gr.HTML()
 
518
  # Navigation Buttons
519
  with gr.Row():
520
  prev_button = gr.Button("Prev")