how can I extract columns from my json dataset?

51 views Asked by At

my jsons looks like {"metadata"} ,but it always return me as [] empty , but I want to properly extract the keys

with gzip.open(gzip_file) as file:
    parser = ijson.parse(file)
    objects = ijson.items(parser, 'meta.view.columns.item')
    columns = list(objects)
0

There are 0 answers