Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to download google appengine (uploaded)application files

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!

like image 840
Shiva Srikanth Thummidi Avatar asked Jul 28 '09 05:07

Shiva Srikanth Thummidi


People also ask

How do I download Google App Engine code?

Hello, You can view and copy the source code in Console -> App Engine -> Versions -> press 'tools' under specific version and choose 'source'.

How do I download Google App Engine on Windows?

Download and InstallDownload the Windows installer and double-click on the GoogleApplicationEngine installer; the setup wizard will launch, as shown in Figure A-2. Click through the installation wizard, which should install App Engine. If you do not have Python 2.5, it will install Python 2.5 as well.


1 Answers

SDK 1.4.0 has this sort of feature (Python only):

  • The developer who uploaded an app version can download that version's code using the appcfg.py download_app command. This feature can be disabled on a per application basis in the admin console, under the 'Permissions' tab. Once disabled, code download for the application CANNOT be re-enabled.

Note that although the 'download_app' command is only available in the Python SDK, it can be used to download Java applications from App Engine. If you have a Java app that you want to download, just do:

  1. Install Python (version 2.x only), if necessary.
  2. Install App Engine 1.4.0 (or higher), Python version.
  3. Run the python download_app command as described in the documentation, like appcfg.py download_app -A <your app name> -V <version to download> <path to download to>.
  4. Your Java app will download. Hooray!
like image 134
systempuntoout Avatar answered Sep 20 '22 20:09

systempuntoout