AppEngine dev_appserver.py not showing any outputs

Posted by shin on Stack Overflow See other posts from Stack Overflow or by shin
Published on 2010-05-25T09:07:11Z Indexed on 2010/05/25 9:11 UTC
Read the original article Hit count: 258

Filed under:
|

I installed Python2.6 and Google App Engine (GAE).

I realized that GAE does not run on 2.6, so I installed 2.5 as well.

Now I have a very basic code as follows and it does not show on the localhost:8080

I typed the following in cmd.exe under my dir testapps.

c:\Users\myname\testapps>"\Program Files\Google\google_appengine\dev_appserver.py" helloworld

I am hoping someone lead me to the right direction.

helloworld/helloworld.py

print 'Content-Type: text/plain'
print ''
print 'Hello, world!'

helloworld/app.yaml

application: helloworld
version: 1
runtime: python
api_version: 1

handlers:
- url: /.*
  script: helloworld.py

© Stack Overflow or respective owner

Related posts about python

Related posts about google-app-engine