Прежде всего, данные, которые вы разместили в неправильном виде, должны быть примерно такими, как указано ниже, и для доступа к элементам, которые вы упомянули, вы можете попробовать следующее
{
"test":[
{
"_id" : "...",
"idSession" : "...",
"createdAt" : "1526894989268",
"status" : "COMPLETE",
"raw" : "Bobsguide,Marketing Assistant,Sales / Marketing79642,Baitshepi,,etc",
"updatedAt" : "...",
"graphResults" : [
[
"lastName",
"stock"
],
[
"country",
"Botswana"
],
[
"location",
"Botswana "
],
[
"city",
"-"
],
[
"state",
"-"
],
[
"school",
"Heriot-Watt University"
],
[
"skills",
"Budgeting,Business Process Improvement,Business Planning"
]
],
"eid" : {
"###" : "12020653-1889-35be-8009-b1c9d43768ac"
}
},
{
"_id" : "...",
"idSession" : "...",
"createdAt" : "1526894989268",
"status" : "COMPLETE",
"raw" : "Bobsguide,79619,Steven,example,steven.jones@example.com,Marketing Assistant,Sales,,etc",
"updatedAt" : "...",
"graphResults" : [
[
"country",
"United Kingdom"
],
[
"location",
"United Kingdom London London"
],
[
"city",
"London"
],
[
"state",
"London"
],
[
"skills",
"Solvency II,Liquidity Risk,Screening,etc"
]
],
"eid" : {
"###" : "..."
}
}
]
}
// Ответ
import json
data_file = open('data.json', 'r')
information = json.load(data_file) // this will give you a json obj
print(information['test'][1]['raw']) // would pick element 1 from array then
выбрать и распечатать значение в необработанном ключе
print(information['test'][1]['graphResults']) // would pick element 1 from array then pick and print value in raw key