From ad762c96b75e7ab2a6773e94f305c928e13e87e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Wed, 11 Dec 2013 19:56:09 +0000 Subject: Allow sorting the dumped data; sort by date by default. This changes the dump output for otultra2 devices as they would dump data in record format, last reading first. --- glucometerutils/common.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'glucometerutils') diff --git a/glucometerutils/common.py b/glucometerutils/common.py index 797fc6e..825dea1 100644 --- a/glucometerutils/common.py +++ b/glucometerutils/common.py @@ -6,6 +6,8 @@ __email__ = 'flameeyes@flameeyes.eu' __copyright__ = 'Copyright © 2013, Diego Elio Pettenò' __license__ = 'MIT' +import collections + # Constants for units UNIT_MGDL = 'mg/dL' UNIT_MMOLL = 'mmol/L' @@ -48,8 +50,10 @@ def convert_glucose_unit(value, from_unit, to_unit=None): else: return round(value * 18.0, 0) +_ReadingBase = collections.namedtuple( + '_ReadingBase', ['timestamp', 'value', 'meal', 'comment']) -class Reading(object): +class Reading(_ReadingBase): def __init__(self, timestamp, value, meal='', comment=''): """Constructor for the reading object. @@ -63,10 +67,8 @@ class Reading(object): because at least most of the LifeScan devices report the raw data in this format. """ - self.timestamp = timestamp - self.value = value - self.meal = meal - self.comment = comment + super(Reading, self).__init__( + timestamp=timestamp, value=value, meal=meal, comment=comment) def get_value_as(self, to_unit): """Returns the reading value as the given unit. -- cgit v1.2.3