Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the best Python projects to study if one wants to look at the codebase and see how well-designed Python projects are structured and coded?

Open source is preferred for obvious reasons, but they could be closed-source too. It could be interesting to see how the interface or API is designed.

Small projects would be as interesting as big projects (the bigger the more complex, but that does not have to be a disadvantage).

share|improve this question

4 Answers

up vote 2 down vote accepted

Since you didn't specify a specific domain, you can look at http://www.python.org/about/apps/, there you'll find a lot of projects, from simple CGI Programming to Game and 3D Graphics, passing by Networking Programming, Scientific and Numeric computing and much more.

share|improve this answer

I would sugggest checking out Django - an open source web development framework or Exaile - an open source music player for GTK+.

share|improve this answer

Try exploring top Python projects on Github or Google Code http://github.com/languages/Python

share|improve this answer

Django is the first that comes up my mind.

WxPython if you want to learn how to wrap a C/C++ library.

Mercurial is also a well written piece of python software.

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.