I need to make a list property that will contain lists, something like:
db.ListProperty(list(str))
I know list(str) is not a supported value type so as I imagined I received a “ValueError” exception.
Thought maybe there is a creative idea out there of how to overcome this 🙂
Thanks!
You could use pickle to serialize your list and store it in a BlobProperty field.