views:

958

answers:

3

Hi all, I would like to ask if there is any tools for Google App Engine to edit datastore in localhost? In the Application Console, I can edit data on appspot, but for localhost, which tools are available? Please advice!

+10  A: 

There's a console on the development server too:

http://localhost:8080/_ah/admin

http://code.google.com/appengine/docs/python/tools/devserver.html#The_Development_Console

Steve Jessop
ohh, thank you very much, I see it!!!
sfa
As long as you don't need to edit any TextProperty values.
fiXedd
+5  A: 

You can use the development console to view and edit your datastore, memcache, task queue and cron jobs at /_ah/admin/ in your local development server.

Guillermo Esteves
As long as you don't need to edit any TextProperty values.
fiXedd
+2  A: 

If you are on Java side, you should definitely try AppWrench. It provides full support for all App Engine data types as well as provides much more pretty viewing, sorting and filtering. It runs locally for free so I am enjoying using it now.

Vieweing Entities:

Viewing Entities

Edit dialog:

alt text

looks interesting
antony.trupe