Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So a part of the app.yaml file looks like the following (on the GAE tutorial at least):

handlers:
- url: /.*
  script: main.app

However, I've also seen it look like this:

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

Is the second one wrong? Why is the "." necessary and what does it notate? And why does the script end in ".app" when it is clearly a ".py" file?

share|improve this question

2 Answers

up vote 1 down vote accepted

.* is a regexp that matches everything. Do a google search on regular expressions. main.app is the notation for the wsgi apps for python 2.7.

main.py is probably for a python 2.5 app.

share|improve this answer
Yes, for the .app suffix check the Python 2.7 App Engine docs. – Guido van Rossum Jul 29 '12 at 23:32

.app is not the file extension! main.app means the app object from main.py; the app object must be a WSGIApplication object

main.py:

import webapp

def HwHandler(webapp.RequestHandler):
   def get(self):
       self.response.out.write('Hello world')

appvar = webapp.WSGIApplication([('/', HwHandler)],debug = True)

app.yaml:

handlers:
- url: .*
  script: main.appvar
share|improve this answer
Oh wow, I've been interpreting this wrong for a while then. Thanks for clearing that up, it makes sense now. – jellyksong Mar 27 at 15:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.