Trying to Read inner key, value from unicode JSON in python
I am trying to get key value from below unicode JSON is python
messagejson={
u'Records':
[
{
u'requestParameters': {u'sourceIPAddress': u'113.112.10.06'},
u'sql': {u'configurationId': u'note',
u'object': {u'eTag': u'ed3645fa5ee', u'sequencer': u'005', u'key': u'src-1.txt', u'size': 606},
u'mysql': {u'dn': u'url', u'name': u'invoice',
u'ownerIdentity': {u'principalId': u'A3UJ54'}
},
u'myval': u'1.0'
},
u'ee': {u'abc': u'tcCh6T', u'x': u'487DBE36E1'},
u'userIdentity': {u'principalId': u'AWS:AIDAIOJ4'},
u'eventSource': u'source'
}
]
}
Tried by using
print messagejson['Records'][0]['sql']['key']
получать ошибку
TypeError: list indices must be integers, not str
может кто-нибудь помочь
2 ответа
Решение
Вы пропускаете один уровень в вашем требовании.
запустите это, и вы увидите.
print messagejson['Records'][0]['sql']
"Ключ" находится внутри значения ключа "объект", поэтому вам нужно добавить "объект", прежде чем вы получите "ключ"
print messagejson['Records'][0]['sql']['object']['key']
Вы скучаете по object
level in your indexing:
messagejson['Records'][0]['sql']['object']['key']
# src-1.txt