As far as I know, DataStore is the only storage available in App Engine. However, this is not a lot of code, even if you are lazy.;)
Make sure you import the db module:
from google.appengine.ext import db
Then just save the key / value pair (you can use this model to store any other additional lines you could add):
class MyData(db.Model): myKey = db.StringProperty(required=True) myValue = db.StringProperty(required=True) data = MyData(myKey="Title", myStringValue="My App Engine Application") data.put()
You can get it again with
db.Query(Entry).filter("myKey=", "Title").get().myStringValue
source share