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!
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!
You can use appcfg.py with *download_data* option, http://code.google.com/appengine/docs/python/tools/uploadingdata.html#Downloading_Data_from_App_Engine
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.