This is not possible in the Datastore Viewer in the admin console.
This can be done in an interactive console with some code:
from google.appengine.ext import db
my_object = db.get('my_object_key')
my_object.my_text_property = 'The text I want to set'
db.put(my_object)
You can also write a handler that does the same.
source
share