in darabonba/utils/stream.py [0:0]
def __read_part(f, size=1024): while True: part = f.read(size) if part: yield part else: return