You can create a new model in App Engine using a dictionary:
my_model = MyModel.get_or_insert(keyname, **kwargs)
Is there a way to update a model using a dictionary instead of doing the following?
my_model.firstprop = 'first'
my_model.secondprop = 'second'