In Python, a nested dictionary is a dictionary inside a dictionary. It's a collection of dictionaries into one single dictionary. More reading here.
Sometimes you need to build nested dicts. This can be frustrating to get right. Here's an example.
...
if r.status_code == 200:
result = r.json()
c = 0
data = {'repos': {}}