On 3 Dic, 11:26, Samuel <[EMAIL PROTECTED]> wrote: > Does anyone know an easy way to extract the API documentation that is > embedded into a Python file as a text file? > > -Samuel
Something like this? print >> open('file.txt', 'w'), dir.__doc__ -- http://mail.python.org/mailman/listinfo/python-list