I have a JSON File which contains some data as below:
{
  'count': 2,
  'next': '?page=2',
  'previous': None,
  'results': [
    {
      'category': 'Triggers',
      'id': '783_23058',
      'name': 'Covid-19'
    }, 
    {
      'category': 'Sources',
      'id': '426_917746',
      'name': 'Covid19Conversations'
    }
  ]
}
I am able to extract the first 'id' and 'name' values as below
Doc_details = dict() 
for item in companies:
  doc_id = companies['results'][0]['id']
  doc_name = companies['results'][0]['name']
  Doc_details[doc_name] = doc_id
for key, value in Doc_details.items():
  print(key,value)
Output:
Covid-19 783_23058
I am new to python. Can someone help me with:
- Loop through it and extract all the key,value pairs
 - Save the results to an excel file.