vote up 16 vote down star
10

Hulu, Twitter, Techcrunch, etc are written in Ruby.
Yahoo, Facebook, and tons of big social networks are written in PHP.

But what are some big top-name enterprise sites written in Python?

I am going to spend my time investing in either Python (w/ Django) or Ruby (w/ Rails) to create a data-intensive web application that has a personalization/recommendation tool (similar to Amazon).

Coming from a PHP background (OOP, Zend Framework), which would be best?

flag

0% accept rate
2  
Youtube is mostly Python and I guess we can consider that BIG :) – deathy Jan 6 at 6:43
1  
TechCrunch runs off of Wordpress which is PHP as far as I know. – Ross Jan 6 at 16:48
Twitter is written in Ruby; Twitter is down frequently. Correlation doesn't equal causation, but I'd investigate Ruby v. Python scaling. – Vince Sep 1 at 1:32
Oh, and Facebook uses huge amounts of Python and Erlang (for their chat service). – Vince Sep 1 at 1:33

12 Answers

vote up 11 vote down

A huge chunk of Google's website is implemented in Python.

link|flag
python is mostly used for internal tools (driving crawlers and other batch jobs etc.) at google. I don't think they use python for their website at all. All their public facing servers are written in C++ or Java. – ididak Jan 6 at 6:40
@Gordon Wilson, ididak: mail.google.com/support/?ctx=gmail&hl=en/… that page of google (help site) is running with python, you can see the extension of the links (.py), youtube also uses it internally – Gustavo Rubio Jan 6 at 7:21
Google's help pages use Python (I'm assuming the .py extension isn't a trick). Example: mail.google.com/support/bin/… – TenebrousX Jan 6 at 7:23
vote up 5 vote down

Django is used to run a wide variety of sites. You can see all the ones that have been registered at www.djangosite.org. Since Django was born from developers working in the news industry, you'll find that a lot of news organizations have quickly embraced it.

However, as djangosites illustrates, its been used for everything from personal blogs, to photo sharing sites, to social networks (Cloud27 was specifically built to show off the Pinax social networking suite). Pownce, a social network based around music and file sharing, was written using Django, but its creators had to close their doors when they were hired elsewhere.

Its also worth noting that the Google App Engine uses Django's template language. Not specifically Python, but heavily influenced by a Python framework.

link|flag
1  
App engine is too Python language – PEZ Jan 6 at 8:45
I know, I meant the template language itself isn't python. – Soviut Aug 3 at 5:21
vote up 11 vote down

youtube and reddit both are, i believe. oh, and jaiku uses twisted, so i assume the rest of it is in python as well.

link|flag
vote up 3 vote down

As Autoplectic said, Reddit was rewritten from Lisp to Python.
Here's the tale.

Chesspark is another personal favorite.
See Chesspark Design Details Part 1, Part 2, and Part 3.

link|flag
Reddit was later rewritten in Python again, but another web framework. From web.py to pylons, AFAIK. – stesch Jan 6 at 17:05
vote up 1 vote down

Ok, this might be not an enterprise class site, but for a gaming nerd like me, http://www.curse.com is written in python.

link|flag
Curse is Django to be even more specific. I talked to the guy who created it at Djangocon and he gave a short talk about it. – Soviut Jan 6 at 21:15
oh right, wasn't actually sure if it was Django or something else, it's python for sure tho, and many gamers use it, so thought I'd mention it – kender Jan 6 at 21:53
vote up 9 vote down

What aspect of "big" are you interested in?

  • Scaling - either of Python/Django or Ruby/Rails will almost certainly handle any type of traffic you're going to throw at it.

  • Large code base - similar maintainability between RoR and Django. It comes down to personal preference (I prefer Python)

  • Support and community - both RoR and Django have large, active, helpful communities. Neither are going away, both are healthy and growing, used by both large and small entities.

I don't think you'll find the "big site" aspect to be a particularly helpful determinant of what you use. Both are easy to pick up; try them out and see what feels more natural to you. I tried both, liked both initially, but ended up strongly preferring Django.

link|flag
Ruby has traditionally been known to have issues with scaling that Python doesn't have to the same degree. Most notably are the issues of memory leaks in Ruby that are basically now considered normal. – Soviut Jan 6 at 21:16
@Soviut. Correction RAILS is known to have scaling problems. Ruby itself is fine. I can't comment on Django, but as I haven't heard complaints about it, I assume that scales well. – Macha Aug 1 at 12:11
2  
What scales well is scalable code. – Wayne Koorts Aug 1 at 12:37
1  
Ruby is "known" to have issues with scaling entirely because of Twitter. It seems that they wrote some poor backend code and blamed the tool they were using. – Chuck Aug 1 at 14:57
Yeah, in this day and age I'd venture to say the "scalability" bugs have been shook out of Rails. – MattC Sep 1 at 1:46
vote up 0 vote down

Django was used by Pownce but they were bought out by another company. I think because they wanted Pownce's talented team rather than their twitter like web application.

link|flag
vote up 2 vote down

It looks like google help files are all in python

example: http://mail.google.com/support/bin/answer.py?answer=69570&topic=13260

see the answer.py? That's a python script.

(unless of course they did something unnatural with the .py extension... But I doubt it)

Also, see http://highscalability.com/youtube-architecture for Youtube architecture and their use of python.

link|flag
vote up 1 vote down

cuil is using CherryPy, a web server written in Python.

link|flag
vote up 2 vote down

We are using Django on Noovo, currently about 50k lines of code. I would choose web.py if I had to do it again. We also do recommendations etc.

Btw, you won't make it without unit tests, so have everything covered from the start.

link|flag
could you elaborate on why you'd start over in web.py over django? – Adriano Varoli Piazza Sep 1 at 1:44
vote up 0 vote down

You could see the source codes of some big Google App Engine apps:

  • All for Good and [its code](http\://www.allforgood.org/code)
  • [Rietveld Code Review Tool](http\://codereview.appspot.com/)

(Sorry for the links, I will fix them when I get enough karma to post more links.)

link|flag
vote up 0 vote down

Tabblo which is backed by Hewlett Packard is using django. SuggestionBox and Bitbucket is also using django. Disqus is also popular and used in many blogs as their commenting system.

link|flag

Your Answer

Get an OpenID
or

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