Case Insensitive Dict

class q2_sdk.models.extended_dict.CaseInsensitiveDict[source]

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'
get(key, default=None)[source]

Return the value for key if key is in the dictionary, else default.