Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -172,7 +172,8 @@ def index():
|
|
172 |
else:
|
173 |
last_update_utc = datetime.strptime(redis_client.get('NEWSFETCHTIME'), '%Y-%m-%d %H:%M:%S.%f')
|
174 |
last_update_mins = str(int(np.ceil((datetime.now() - last_update_utc).seconds / 60)))
|
175 |
-
|
|
|
176 |
|
177 |
result_str += '''
|
178 |
<div class="input-container">
|
|
|
172 |
else:
|
173 |
last_update_utc = datetime.strptime(redis_client.get('NEWSFETCHTIME'), '%Y-%m-%d %H:%M:%S.%f')
|
174 |
last_update_mins = str(int(np.ceil((datetime.now() - last_update_utc).seconds / 60)))
|
175 |
+
last_update_str = f'Updated {last_update_mins} {"minutes" if last_update_mins > 1 else "minute"} ago'
|
176 |
+
result_str += f'<p class="srctxt">News aggregated from <b>{src_str}</b>.<br><br>{last_update_str}</p>'
|
177 |
|
178 |
result_str += '''
|
179 |
<div class="input-container">
|