Пример #1
0
def g_json_by_today():
    today = util.date_today()
    tomorrow = util.date_tomorrow()
    cfg.logger.debug("today: %s tomorrow: %s", today, tomorrow)
    start_timestamp = util.date_to_timestamp(today)
    end_timestamp = util.date_to_timestamp(tomorrow)
    return _process_result(g_json_handler(start_timestamp, end_timestamp))
Пример #2
0
def g_json_by_today():
    today = util.date_today()
    tomorrow = util.date_tomorrow()
    cfg.logger.debug("today: %s tomorrow: %s", today, tomorrow)
    start_timestamp = util.date_to_timestamp(today)
    end_timestamp = util.date_to_timestamp(tomorrow)
    return _process_result(g_json_handler(start_timestamp, end_timestamp))
Пример #3
0
def g_json_by_timestamp(start_timestamp, end_timestamp):
    return _process_result(g_json_handler(start_timestamp, end_timestamp))
Пример #4
0
def g_json_by_date():
    params = dict(request.params)
    start_timestamp = util.date_to_timestamp(params['begin_at'])
    end_timestamp = util.date_to_timestamp(params['end_at'])
    return _process_result(g_json_handler(start_timestamp, end_timestamp))
Пример #5
0
def g_json():
    _log_entry()
    return _process_result(g_json_handler())
Пример #6
0
def g_json():
    return _process_result(g_json_handler())
Пример #7
0
def g_json_by_timestamp(start_timestamp, end_timestamp):
    return _process_result(g_json_handler(start_timestamp, end_timestamp))
Пример #8
0
def g_json_by_date():
    params = dict(request.params)
    start_timestamp = util.date_to_timestamp(params['begin_at'])
    end_timestamp = util.date_to_timestamp(params['end_at'])
    return _process_result(g_json_handler(start_timestamp, end_timestamp))