From def8d90e3b7ca51e2a14f0f631b84e4842f04c49 Mon Sep 17 00:00:00 2001 From: Lukas Metzger Date: Thu, 2 Jul 2020 12:30:15 +0200 Subject: Added prettytime function and use it --- dash/pages/locations.py | 3 ++- dash/pages/satellites.py | 6 +++--- dash/pages/total.py | 9 +++++---- 3 files changed, 10 insertions(+), 8 deletions(-) (limited to 'dash/pages') diff --git a/dash/pages/locations.py b/dash/pages/locations.py index 9125ba0..13aa752 100644 --- a/dash/pages/locations.py +++ b/dash/pages/locations.py @@ -10,6 +10,7 @@ import plotly.graph_objects as go import datetime as dt from natsort import natsorted +from prettytime import prettytime import db from app import app @@ -89,7 +90,7 @@ def make_content_all(days, date): figure.add_trace(go.Pie( labels=[item['locationname'][0:9] for item in data if item['ip'] == sat], values=[item['totalSessionTime'] for item in data if item['ip'] == sat], - text=[str(int(item['totalSessionTime'] / 3600)) + ' h' for item in data if item['ip'] == sat], + text=[prettytime(item['totalSessionTime']) for item in data if item['ip'] == sat], hole=0.3, textinfo='none', hoverinfo='label+text+percent', diff --git a/dash/pages/satellites.py b/dash/pages/satellites.py index ba607ba..37a1f61 100644 --- a/dash/pages/satellites.py +++ b/dash/pages/satellites.py @@ -6,8 +6,8 @@ import dash_table as dtbl import dash_bootstrap_components as dbc from dash.dependencies import Input, Output -import humanize import datetime as dt +from prettytime import prettytime import db from app import app @@ -78,8 +78,8 @@ def load_table(sort): data = cursor.fetchall() for record in data: - record['uptime'] = humanize.naturaldelta(dt.timedelta(seconds=record['uptime'])) - record['date'] = humanize.naturaldelta(dt.date.today() - record['date']) + record['uptime'] = prettytime(record['uptime']) + record['date'] = prettytime((dt.date.today() - record['date']).total_seconds()) db.closeConnection(dbcon) return data diff --git a/dash/pages/total.py b/dash/pages/total.py index 9655c51..e21c4b7 100644 --- a/dash/pages/total.py +++ b/dash/pages/total.py @@ -8,6 +8,7 @@ from dash.dependencies import Input, Output import plotly.graph_objects as go import datetime as dt +from prettytime import prettytime import db from app import app @@ -280,10 +281,10 @@ def make_sums(rangeStart, rangeEnd, satellites): db.closeConnection(dbcon) try: - strTimes = 'Total Time: {}h Total Session Time: {}h Total Off Time: {}h'.format( - int(data['totalTime'] / 3600), - int(data['totalSessionTime'] / 3600), - int(data['totalOffTime'] / 3600) + strTimes = 'Total Time: {} Total Session Time: {} Total Off Time: {}'.format( + prettytime(data['totalTime']), + prettytime(data['totalSessionTime']), + prettytime(data['totalOffTime']) ) except: strTimes = "No Data available!" -- cgit v1.2.3-55-g7522