67

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?

Elrond_EGLDer
  • 47,430
  • 25
  • 189
  • 180
in70x
  • 1,078
  • 1
  • 10
  • 16
  • 6
    It's probably best to remove the 'why' from this question. "Why' is not what you wanted answered; 'Where can I find' is ;-) – florisla Jan 04 '17 at 12:46
  • Additional info: If you want to manipulate Office applications with pywin32, be sure to check out the Object Browsers in different Office applications, so that you know the properties and methods of each object. – Nicholas Humphrey Apr 25 '19 at 22:45
  • 2
    The pywin32 project is such a tragedy. So much potential being wasted due to poor deployment. [1] is just an ugly mess. [1] http://timgolden.me.uk/pywin32-docs/index.html – WhyWhat Apr 11 '20 at 20:41

3 Answers3

62

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.

florisla
  • 8,866
  • 4
  • 31
  • 41
13

There is a documentation for pywin32 on ActiveState :

and also a modules description and the list of objects

P2bM
  • 1,014
  • 6
  • 9
1

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__
    >>>