I'm curious...I've read much of Python being on the approved list of languages used by Google employees, and I know they employ Guido. That said, is their use of Python focused mainly on managing servers and applications, and not for developing the applications themselves? If so, why? It seems most I read indicates they use Java for the heavy lifting. Is this because there's an inherent limitation in using Python for things like GMail, etc?

link|improve this question

78% accept rate
what is the backend to Gmail? is it Python? – ine May 28 '09 at 21:21
Java? Java-script-, perhaps... – ajm May 28 '09 at 21:26
+1 from me - love the question. – duffymo May 28 '09 at 21:39
+1 from me. I need to know the answer too! – Haikal Nashuha Nov 2 '11 at 5:58
feedback

3 Answers

up vote 35 down vote accepted

While Google has never published any official stats on the issue, I think it's fair to say that, overall, C++ and Python dominate most "Google infrastructure" (which is fairly heavy "lifting", believe me;-), while Java and Javascript are more common at the application level (which deliver application fuctionality to the user, running on top of the Google infrastructure).

Of course, there are plenty of exceptions, such as YouTube and code.google.com, which are mostly Python (and a very little bit of C++) as opposed to Java, on one side, and Android (which is mostly-Java) on the other. As it's pretty clear that YouTube's "heavy lifting" no less than, say, Google Docs, I believe this basically indicates that the choice of languages in each area is largely historical.

link|improve this answer
1  
I'd be surprised if they used Python more than Java. – cletus May 28 '09 at 23:00
11  
Why would that surprise you? – ironfroggy May 29 '09 at 1:20
feedback

To summarize Alex with his own words about the use of Python at Google:

Python where we can, C++ where we must.

The quote is already some years old but still valid.

link|improve this answer
4  
Yep, but don't forget the context, groups.google.com/group/comp.lang.python/browse_thread/thread/… -- '''software projects that are part of our "deep infrastructure"''' (many other fields such as not-so-deep infrastructure and all sorts of internal-only utilities may fairly be described similarly); I've never worked on user-facing apps, such as, say, Google Docs (they of course rely on the infrastructure, but have their own "business logic" and [often JS+CSS+HTML] user interfaces). – Alex Martelli May 29 '09 at 1:44
Define 'can' and 'must'. Is it something like "It is a straight forward requirement so we can use Python", and it is way too slow to use Python so we must use C++"? – Rosdi Kasim Aug 1 '10 at 12:57
feedback

Yes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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