vote up 4 vote down star
2

I'm especially interested in solutions with source code available (django independency is a plus, but I'm willing to hack my way through)

flag

74% accept rate

2 Answers

vote up 4 vote down check

You can, of course, write your own handler. Other than that, your options currently are limited to:

  • gae-rest, which provides a RESTful interface to the datastore.
  • approcket, a tool for replicating between MySQL and App Engine.
  • The amusingly named GAEBAR - Google App Engine Backup and Restore.
link|flag
vote up 0 vote down

I use to_xml() method of the Model class to export the datastore.

class XmlExport(webapp.RequestHandler):
    def get(self):
        objects=MyModel.all().fetch(1000)
        xml='<?xml version="1.0" encoding="UTF-8"?>\n<site>\n'
        for o in objects:
            xml = xml + o.to_xml()
        xml = xml + '</site>'
        self.response.headers['Content-Type']='text/xml; charset=utf-8'
        self.response.out.write(xml)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.