Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Python OrderedDict which I want to store in the Google Datastore of Google App engine. The OrderedDict has the structure: {'link': {'title': title, 'weight': weight} }. What is a good way to do that?

share|improve this question
1  
Do you want to be able to query it? Is there a reason you can't simply construct a model that matches it, especially given your fields seem to be fixed? – Nick Johnson May 18 '12 at 0:04

1 Answer

up vote 2 down vote accepted

One solution is to use NDB's PickleProperty, which can store any python object that can be pickled.

If that doesn't work, you could use an NDB JsonProperty with repeated=True and store key/value tuples. This would require special code to [de]serialize, but it would allow you to retain order information.

share|improve this answer
Done using Pickle. Thanks :) – Abhishek May 18 '12 at 6:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.