I have a dictionary that's formatted like this (it's missing the values, obv):
{'expand': ,
'issues': [{'expand': ,
'fields': {'created': ,
'issuetype': {'avatarId': ,
'description': ,
'iconUrl': ,
'id': ,
'name': ,
'self': ,
'subtask': },
'priority': {'iconUrl': ,
'id': ,
'name': ,
'self': },
'project': {'avatarUrls': {'16x16': ,
'24x24': ,
'32x32': ,
'48x48': },
'id': ,
'key': ,
'name': ,
'projectCategory': {'description': ,
'id': ,
'name': ,
'self': },
'projectTypeKey': ,
'self': },
'status': {'description': ,
'iconUrl': ,
'id': ,
'name': ,
'self': ,
'statusCategory': {'colorName': ,
'id': ,
'key': ,
'name': ,
'self': }}},
'id': ,
----> 'key': ,
'cccc': },
I need to get access to all the values that the key is "key".
jira_key = dict["issues"][0]["key"]
This grabs the key for the first one, but there's like 60+ that I need. I've tried various things I've found and nothing seems to be successful.
Note: Not a developer :)