Is there a python3 version of win32com?

13,140

If you're looking for the Win32 bindings you can find them in either of these two projects.

http://docs.activestate.com/activepython/3.4/whatsincluded.html

http://sourceforge.net/projects/pywin32/files/pywin32/Build%20220

Just make sure to download the corresponding x86 or x86-64 version for the corresponding version of Python

Share:
13,140
WhatsThePoint
Author by

WhatsThePoint

Above average Programmer with knowledge of C# and Python with limited HTML, JS and JQuery. Procrastination is just a universal state of being for humans. We will always have more things to do than we can possibly do, so we will always be imposing some sort of unwarranted delay on some tasks. The question is not whether we are procrastinating, it is whether we are procrastinating well.

Updated on June 30, 2022

Comments

  • WhatsThePoint
    WhatsThePoint almost 2 years

    Is there a python3 version of the win32com module?

    I am running python 3.4.4 and I tried installing the win32com module, but it is written in python2 syntax.
    So I thought I would sort the syntax out myself, but it proved to be a task I couldn't quite handle.

    line 2403, in convert_optional_data_files
        RuntimeError, details
    NameError: name 'details' is not defined
    

    Long story short: is there a python3 win32com?