I’m using Google App Engine and I need to put a multiline string in the datastore. Unfortunately, GAE does not allow that. I need this string to be multiline, so is there any way to convert a multiline string to a single line string and store it?
Share
You don’t need no conversion:
google.appengine.ext.db.StringProperty(multiline=True)