views:

764

answers:

3

I need to download the application files that are deployed using command prompt into google appengine server. if anybody know about this plz tell me!

thanks in advance!

A: 

You can use appcfg.py with *download_data* option, http://code.google.com/appengine/docs/python/tools/uploadingdata.html#Downloading_Data_from_App_Engine

ZelluX
Not what the user is asking for.
Nick Johnson
+4  A: 

It's not possible to download your code from App Engine, unless you included code to support it when you uploaded your app. You can download static files by simply fetching them, of course.

To achieve this, you need to use a source control system, such as SVN or Git, and store/retrieve your code from there - App Engine isn't intended to act as source control.

Nick Johnson
FWIW, the makefile I use to update to appengine first makes a zip of the source, which can be downloaded from the app (static file). The name of the archive includes the svn revision number, and the makefile refuses to upload if the current revision is mixed (on grounds that it would not necessarily be reproducible from the repository). This avoids needing any Python code to support the download.
Steve Jessop
+2  A: 

I got the link

thanks to everyone

Srikanth