in70x
in70x

Reputation: 1170

Why can't I find any pywin32 documentation/resources

I cannot find pywin32 documentation or even a little synopsis of what the module is (I am aware its for win32 API stuff).

Is there any pywin32 documentation or resources? Maybe some examples?

Upvotes: 77

Views: 49454

Answers (2)

florisla
florisla

Reputation: 13568

The PyWin32 installation includes a .chm help file at [Pythonpath]\Lib\site-packages\PyWin32.chm.

The same info is online at http://timgolden.me.uk/pywin32-docs/index.html

ActiveState used to keep this documentation online as well, including listings of modules and objects, but that seems to be taken offline.

Upvotes: 68

RAY SCHUMACHER
RAY SCHUMACHER

Reputation: 11

Sadly, DDE is not actually documented, anywhere http://docs.activestate.com/activepython/2.6/pywin32/dde.html

The doc strings are all empty:

    >>> dde.CreateServer.__doc__
    >>>

Upvotes: 1

Related Questions