Chase R Lewis
Chase R Lewis

Reputation: 2307

How to download app deployed to Google App Engine

My understanding is appcfg.py will do this. However, when I try to run it I get the following error.

from oauth2client import devshell
ImportError: cannot import name devshell

I'm on Windows.

Upvotes: 0

Views: 212

Answers (1)

Paul Bendevis
Paul Bendevis

Reputation: 2621

I had the same issue. It turned out I was running the wrong appcfg.py file. Note that the SDK comes with

./google-cloud-sdk/platform/google_appengine/google/appengine/tools/appcfg.py

./google-cloud-sdk/platform/google_appengine/appcfg.py

When I ran the first of these files I got your error which disappeared when running with the second appcfg.py file. Check which one you are running by running

which appcfg.py

Upvotes: 2

Related Questions