vote up 3 vote down star
2

Where can I find real-world examples of applications written in Python?

flag

50% accept rate

17 Answers

vote up 6 vote down

Python's CPAN-like repository is called PyPi, and is chock full of examples! You can browse packages by topic, which is helpful if you know what sort of program you're looking to write.

link|flag
vote up 5 vote down

SourceForge.net Software Map

Filter > Require + Programming Language + Python > Apply

link|flag
vote up 5 vote down

Django webframework

link|flag
vote up 4 vote down

The most comprehensive list of Python wins is at the Python web site, under Python Success Stories.

Google, Yahoo, Washington Post web site, Plone content management system, Zope portal framework/application, etc.

Google and Yahoo originally rolled out much of their functionality written in Python. Where performance was an issue (obviously, the search engine party) they reprogrammed it in C or C++.

However, much of the non-performance critical modules today remain written in Python. When you are on these sites checking online help or doing some social/portal thing, take a look in the URL of the page you are looking at and see if there is a ".py" in there somewhere.

Google's new Application Engine is 100% Python. It is not just old functionality but also new functionality that is being coded in Python.

Google has made their development practices/philosophy pretty transparent to the outside world. They are very knowledgeable people, generally - and their programmers are encouraged to use a language that is a good fit for the software they are creating.

Many software projects managed/organized/monitored by Trac. Trac is written in Python.

Someone blogged a list of popular Python applications in How Python wins the web.

As an aside, Python won readers choice award in 2008 for Favorite Scripting Language. The survey was put out by Linux Journal magazine.

link|flag
vote up 2 vote down

Any field in particular? Python is used for a variety of tasks. You could look through the wiki page on applications written in Python.

link|flag
vote up 1 vote down

Many simple "recipes" can be found at Python Cookbook served by ActiveState:

http://code.activestate.com/recipes/langs/python/

link|flag
vote up 1 vote down

Zope and Plone CMS.

link|flag
vote up 1 vote down

Reddit is written in Python.

link|flag
vote up 1 vote down

EVE Online uses a variant of Python called Stackless Python, which has proven to be able to take >45000 concurrent users on a single cluster (or shard), which I would consider pretty good for an MMO.

Python is used both in the client and on the server.

link|flag
vote up 0 vote down

Biggest thing that comes to mind is Chandler

link|flag
I think only parts of chandler are good examples for python programming. A lot of code is written with java in mind and the whole chandler project isn't exactly a success story. The book "Dreaming in Code" gives a good insight. – Peter Hoffmann Oct 29 '08 at 11:36
vote up 0 vote down

Panda3D Free open source game and simulation engine developed by Disney and maintained by Carnegie Mellon University's Entertainment Technology Center.

link|flag
vote up 0 vote down

This looks like an invitation to plug in my own product here :).

Testuff is a software test management tool consisting of a desktop front end built with wxPython, and a REST-based back end built with CherryPy and SQLAlchemy among other things.

It's about as real as you can get.

link|flag
vote up 0 vote down

Google is an example of a world example written in Python!

link|flag
vote up 0 vote down

http://www.youtube.com

http://www.reddit.com

link|flag
vote up 0 vote down

browsershots.org was completely written in python ;)

link|flag
vote up 0 vote down

Give Google code search a try.

Search for something like "lang:python twisted"

link|flag
added lang:python to the url – J.F. Sebastian Jan 19 at 20:51
vote up 0 vote down

I was pleasantly surprised to see that Juice (a podcast receiver) is written in Python. It looks like a real Windows app and nothing in the GUI tipped me off to this. I just noticed when looking around in its program directory.

link|flag

Your Answer

Get an OpenID
or

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