App to launch python app for google for the first time

I am trying to download my application project for the first time, and I do not know why it does not work. my terminal error:

[me][~/Desktop]$ appcfg.py update ProjectDir/ Application: tacticalagentz; version: 1 Host: appengine.google.com Starting update of app: tacticalagentz, version: 1 Scanning files on local disk. Error 404: --- begin server output --- This application does not exist (app_id=u'tacticalagentz'). --- end server output --- 

I am using python 2.6.5 and ubuntu 10.04.

Not sure if this is relevant, but I just created a Google App Engine account today. and I also just created the application today (for example, a couple of hours ago). this is really frustrating because I just want to download what I still have (as a demo). in my app.yaml this is my first line:

 application: tacticalagentz 

In addition, I checked the admin on my console and I just see the application identifier right there, and it matches the letter for the letter with the application identifier in my app.yaml

Can someone please enlighten me and tell me what I'm doing wrong? or is it something beyond my understanding (for example, the problem of indexing with Google, that they need time to index my application id)?

Thank you very much in advance

+4
source share
6 answers

Apparently adding the parameter --no_cookies will work

 appcfg.py update --no_cookies ProjectDir/ 

how could I find my answer by downloading my application from my Mac OS X (thank god I have Linux and Mac). AppEngine on Mac OS X comes with a GUI interface and it worked for download. so I found a command that they used in the console that included "--no_cookies". maybe if you encounter similar problems in the future, this is one way to get an answer

+4
source

App Engine for Java has the same problem. The problem is registering an account.

If you are using Eclipse, use the login button.

If u uses the command line, use the -e option, for example:

 appcfg.sh -e your@email.com update yoursite/ 
+2
source

I had the same problem. When I changed the name of the application that I used in the launchpad to match the name in the application engine, it worked without any problems. As I understand it, it was a name mismatch that caused the problem. You can see the name of the registered application in the admin console of the application engine. ( https://appengine.google.com/ )

0
source

Here is what reinforced this for me: I had an instance of dev_appserver.py myProjDirectory / on another terminal.

I think the scripts are somehow related and are not thread safe

0
source

The alternative that worked for me is simply “Clear Deployment Credentials” from the Management option of the GUI. When the application was deployed after that, it opened a google page to allow GAE to access the user profile, and then the deployment was successful.

0
source

Key bit

 This application does not exist (app_id=u'tacticalagentz'). 

which tells you that appspot.com does not know about an application with this name. Admin console (https://appengine.google.com/) shows your applications. Check there. You may have made an unintentional typo when you registered the application.

-2
source