Parsing Json File Python
whole file is here:https://1drv.ms/u/s!AizscpxS0QM4hJpFPnbeAexYPwYu9Q I want from this part: 'subtasks': [ { 'fields': {
Solution 1:
Ah, subtasks is the key, but the item is a list!
So it will be issue['fields']['subtasks'][0]['summary']
what you are looking for.
Post a Comment for "Parsing Json File Python"