up vote 0 down vote favorite
1
share [g+] share [fb]

Possible Duplicates:
A good open source Python project to read code?
How to learn Python: Good Example Code?

I've been reading through Coders at Work and there is a repeated theme: hackers tend to read a lot of other's code and learn from it. I program in Python, there are plenty of open source code in it.

Which codebase you read and consider excellent? SQLAlchemy comes to mind. What else?

link|improve this question
3  
Duplicate: Read the python library. stackoverflow.com/questions/918/… – S.Lott Oct 21 '09 at 19:56
1  
I'd beg to disagree. I am not learning the language, I'm using it for many years. I just want to master my skills. – user194081 Oct 21 '09 at 20:05
1  
The answer is the same. – Lennart Regebro Oct 21 '09 at 20:08
1  
I don't care how much Python you do -- or don't -- know. The question is a duplicate. The accepted answer remains: read the Python libraries themselves. They're excellent code. Period. – S.Lott Oct 21 '09 at 20:09
feedback

closed as exact duplicate by S.Lott, Lennart Regebro, SilentGhost, ChristopheD, Shog9 Oct 22 '09 at 2:23

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

4 Answers

The python library itself Python 3.1.1

link|improve this answer
feedback

this one for sure: http://pythonsource.com/

link|improve this answer
feedback

The standard library is good. Also when I created the compatibility tests in the Python-incompatibility code, I learnt a lot, so read that too.

link|improve this answer
feedback

The python standard library, as others have mentioned, is mostly good, but not really consistent. People should really be giving a module-by-module recommendation. Having read a few modules, I can tell you that many don't conform to what is considered good Python style (though they may perform well).

Probably the best code I have seen, just in terms of style, is Google App Engine's Python Library, which is browsable here.

link|improve this answer
feedback

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