vote up 7 vote down star
4

I am looking for a well-engineered, well-built python application that could serve as a guideline to demonstrate best practices relating to software development in general, and more specifically in python. (Note that software in other languages would also be welcome provided they are of good quality and could serve as models of good architecture).

flag
Duplicate: stackoverflow.com/questions/234276/… – S.Lott Apr 10 at 1:25

12 Answers

vote up 10 vote down check

Not completely sure about the latter two, but Twisted and Django are both very well written/organised/documented

link|flag
Twisted? Really? I personally think it has an apt name. :-) – Jason Baker Apr 10 at 3:04
Twisted documentation is horrid. Django documentation is much much better. – Unknown Apr 14 at 7:23
vote up 0 vote down

Bazaar

link|flag
vote up 0 vote down

I recently took a look over buildbot's code and it looked nice. See here

link|flag
vote up 1 vote down

SCons, the only Python application I've come to like and use.

link|flag
+1 good one that I'd forgotten about. Won a design competition and has a good user manual as well as API and source documentation. – Van Gale Apr 10 at 11:49
vote up 0 vote down

Sphinx

link|flag
vote up 0 vote down

And actually, several project from Edgwall are in this case.

link|flag
vote up 0 vote down

I'll add docutils, and particularly its statemachine module. It's reasonably well designed and sticks to the basics (i.e. little or no metaclasses and the source isn't overrun with underscore methods like __getattr__).

The project "eats its own dogfood" with all source code documentation for modules, classes, functions in reStructuredText format. Design and user documentation also written in reStructuredText.

link|flag
vote up 5 vote down

Reddit. I've learned quite a bit about using Python for web development by browsing their source code.

link|flag
vote up 2 vote down

SQLAlchemy

link|flag
vote up 1 vote down

Jinja 2. Not only its code but also the fantastic documentation that makes me wish every project had something like it.

link|flag
You think so? I've mostly found jinja2's docs to be just barely enough. At least I haven't found it to be woefully underdocumented, but there are many times I'd like it to go into a bit more detail. – TokenMacGuy Apr 10 at 1:47
vote up 0 vote down

BitTorrent?

link|flag
vote up 6 vote down

Django

link|flag

Your Answer

Get an OpenID
or

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