I want to create a multi dimensional dictionary in python so that I can access them using the following notation:
test['SYSTEM']['home']['GET']
test['SYSTEM']['home']['POST']
What would be the easiest way to set these values, in other languages I can do this:
test['SYSTEM']['home']['GET'] = True
test['SYSTEM']['home']['POST'] = False