Behaves identical to python’s built-in dict, but allows access to keys case insensitively
spam = CaseInsensitiveDict({'FOO': 'bar'}) spam['FOO'] == 'bar' spam['foo'] == 'bar' spam.get('foo') == 'bar'
Return the value for key if key is in the dictionary, else default.