I would like to get an instance of one of my Django models by using dictionary in an insensitive case way. For the moment I'm using:
my_model.objects.get(**dictionary)
But I don't get the instance if there is a difference of lower / upper case between what there is in my dictionary and the fields of the instance.
Do you think there is a clean way to perform this operation ?