def read_jsons()

in playground-internal/statefun-playground-producer/main.py [0:0]


def read_jsons(path: str):
    with open(path) as f:
        for line in f.read().splitlines():
            yield json.loads(line)