vote up 0 vote down star

I have added a python file at google app engine. how to send a request to this file. Is this file needed to b executed explicitly?

flag

0% accept rate
1  
what is this file doing . Not sure what you mean by added a file – Surya Jul 23 at 15:52

1 Answer

vote up 2 vote down

Your app.yaml file decides which python script to run, depending on the request URL.

See examples at the Google Docs. You can even use regexp.

link|flag
use app.yaml to manage url requests. The app.yaml file will execute whatever you'd like based on the url (usually a .py file), then that .py file can be used to once again filter down the request and execute a class that executes either a get or post request that can be used to render an html page or whatever. – Jonathan Mayhak Jul 24 at 19:29

Your Answer

Get an OpenID
or

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