Using datastore framework of appengine, what’s the pythonic way to make persistent a {}?
Using datastore framework of appengine, what’s the pythonic way to make persistent a {}?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think there are 2 options.
Using expando. You can store anything in that as long as you omit the reserved fields:
It might be possible to use
your_model.__dict__.update(your_dict)but I’m not sure about that.Store it in a textfield using pickle: