From 5fbabd60e92bba57477e7fba13dff4fb6e8678a8 Mon Sep 17 00:00:00 2001 From: David Date: Tue, 3 Jan 2023 13:00:10 +0100 Subject: [PATCH] config test --- statistiques/parseStats.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/statistiques/parseStats.py b/statistiques/parseStats.py index cc44b65..6accca7 100755 --- a/statistiques/parseStats.py +++ b/statistiques/parseStats.py @@ -82,7 +82,6 @@ class Stats: return octets,unit def parse(self): - print(f"""SELECT * FROM {dbName} WHERE timestamp > {self.startDate} AND timestamp < {self.endDate} ORDER by id""") res = self.db.dbQuery(f"""SELECT * FROM {dbName} WHERE timestamp > {self.startDate} AND timestamp < {self.endDate} ORDER by id""") consolided = {} moy_conf_by_day = 0 @@ -195,7 +194,6 @@ def runMain(): stats = Stats(year,mois) res = stats.parse() - print(dir(res)) for (k,v) in res.items(): i = STATS_TOT_FIELDS.index(k) fr = STATS_FR_TOT_FIELDS[i]