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.

How does google manage to have actual .py scripts on its webpage (https://support.google.com/mail/bin/answer.py?hl=en&answer=10313)? It seems that the parameters 'en' and '10313' are passed to the answer.py script. I have seen a website that does the following: answer.php?hl=en&answer=10313, but how would you use a python script in such a way?

share|improve this question
1  
You can run Python scripts from webservers: docs.python.org/howto/webservers.html – birryree Aug 23 '12 at 19:20

1 Answer

up vote 7 down vote accepted

By using an application server or a webserver configured to run Python scripts? There are many options to run Python serving web requests.

Note that extensions don't mean anything anymore these days; the .py extension could even be an internal joke on us all where the pages are really served by Haskell..

share|improve this answer

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.