Python source code collection

Does anyone know somewhere a wide collection of Python source code on the net with decent documentation? If so, can anyone post it here?

+3
python
Jan 01 '09 at 19:51
source share
8 answers

Perhaps the Python Standard Library ? Or are you looking for something more specific?

+11
Jan 01 '09 at 19:55
source share

I'm not sure what you mean by "source code"? Python library source code or code examples and recipes?

Well, the Python STL link is great (@zenazn).

In addition to this, if you are looking for specific problems and their solutions and recipes, I suggest:

Although you will not find a lot of documentation in these sources, but this is complemented by excellent answers, comments and discussions.

+7
Jan 01 '09 at 20:10
source share

You can find a huge number of python libraries in the store.

+5
Jan 01 '09 at 19:56
source share

Great place spanning several libraries with very clear examples:

http://nullege.com/codes/

+4
Jun 11 2018-12-12T00:
source share
+3
Jan 01 '09 at 20:54
source share

The cpython source code (python source project) is at http://hg.python.org/cpython/file/default/

+2
Nov 13 '12 at 19:46
source share

Not Python itself, but the source codes of third-party packages that you can even search in source codes:

http://pydoc.net/

0
Feb 27 '13 at 17:34
source share

I think the best examples for python are:

first: http://code.activestate.com/recipes/langs/python/?query_start=1

second: http://planetpython.org/

have good coding :)

-2
Aug 26 '15 at 20:06
source share



All Articles