Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App Engine NDB alternative for db.StringListProperty

I have a need to store an ordered list of strings and am trying to start using ndb. Previously I used a db.StringListProperty. That's not available in ndb though, so what's the recommended alternative? Looking at the ndb types, I'm thinking I need to use the PickleProperty. Is there something more appropriate?

like image 969
user605331 Avatar asked Dec 07 '22 15:12

user605331


1 Answers

ndb.StringProperty(repeated=True)
like image 195
aschmid00 Avatar answered Dec 09 '22 15:12

aschmid00