views:

158

answers:

4

Hello again. Am looking for a full and official Python standard lib reference. I can't seem to find proper documentation for Python's built-in library anywhere, similar to javadocs. Perhaps I'm not looking hard enough.

Thanks

+13  A: 

Googling for "python standard library" .. first result.

Bartek
+6  A: 

help(x) in the interpreter will give you full documentation of anything within the standard library.

Elliot Hughes
+1  A: 

There is a good set of official documents here: python.org

+1  A: 

If you use firefox, you should give a try to the Edgewall Python Sidebar.

juj