I have JSON file which has array of 500 objects that looks like this:
{
"books":[
{
"title":"Title 1",
"year":"2012",
"authors":"Jack ; George",
},
{
"title":"Title 2",
"year":"2010",
"authors":"Leonard ; Robin",
},
...
How can i loop through this file in js or python and change "authors" of every object to look like this:
"authors":["Jack" , "George"]
Thank you.