in src/rosbridge/timeseq.py [0:0]
def get_chunks(begin_ts, end_ts): ret = [] ts = chunk_of(begin_ts) while ts < end_ts: ret.append(ts) ts += TIMESEQ_CHUNK return ret