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?
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.
|
|
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 |
|||
|
|