--- a/misc.py Sat Jun 10 22:30:55 2017 +0300 +++ b/misc.py Sun Jun 11 01:28:25 2017 +0300 @@ -8,19 +8,6 @@ return datetime.now() #return datetime.combine(tänään(), datetime.now().time()) -def time_representation(aika, suhteellinen = True): - erotus = aika - nyt() - if suhteellinen and erotus < timedelta(minutes = 1): - return 'nyt' - elif suhteellinen and erotus < timedelta(minutes = 10): - return '%dm' % round(erotus.seconds / 60) - elif aika.date() == tänään(): - return '%d:%02d' % (aika.hour, aika.minute) - elif erotus < timedelta(7): - return aika.strftime('%-a %H:%M') - else: - return aika.strftime('%-d.%-m. %H:%M') - def lue_csv(tiedosto, muunnokset = None): import csv lukija = csv.reader(tiedosto)