Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -173,7 +173,7 @@ def index():
|
|
173 |
# last_update_utc = datetime.strptime(os.getenv("NEWSFETCHTIME"), '%Y-%m-%d %H:%M:%S.%f')
|
174 |
last_update_utc = datetime.strptime(redis_client.get('NEWSFETCHTIME'), '%Y-%m-%d %H:%M:%S.%f')
|
175 |
# last_update_utc = last_update_utc.strftime("%Y-%m-%d %H:%M:%S")
|
176 |
-
last_update_mins = str(int(np.round((
|
177 |
result_str += f'<p class="srctxt">News aggregated from <b>{src_str}</b>.<br><br>Updated {last_update_mins} mins ago</p>'
|
178 |
|
179 |
result_str += '''
|
|
|
173 |
# last_update_utc = datetime.strptime(os.getenv("NEWSFETCHTIME"), '%Y-%m-%d %H:%M:%S.%f')
|
174 |
last_update_utc = datetime.strptime(redis_client.get('NEWSFETCHTIME'), '%Y-%m-%d %H:%M:%S.%f')
|
175 |
# last_update_utc = last_update_utc.strftime("%Y-%m-%d %H:%M:%S")
|
176 |
+
last_update_mins = str(int(np.round((datetime.now() - last_update_utc).minutes, 0)))
|
177 |
result_str += f'<p class="srctxt">News aggregated from <b>{src_str}</b>.<br><br>Updated {last_update_mins} mins ago</p>'
|
178 |
|
179 |
result_str += '''
|