def eod(): """ RETURN END-OF-TODAY (WHICH IS SAME AS BEGINNING OF TOMORROW) """ return _unix2Date((math.floor(unix_now() / 86400) + 1) * 86400)
def today(): return _unix2Date(math.floor(unix_now() / 86400) * 86400)
def now(): return _unix2Date(unix_now())