comtypes icon indicating copy to clipboard operation
comtypes copied to clipboard

A pure Python, lightweight COM client and server framework, based on the ctypes Python FFI package.

Results 178 comtypes issues
Sort by recently updated
recently updated
newest added

After fixing a bunch of errors by looking them up, I came across this one where I could not find anywhere except for a discussion closed here in the Issues...

duplicate
npsupport

tuple[Module("comtypes.COMError"), WindowsError]" is not valid exception class Line 82 in _comoject.py Have tried reinstall the module yet to no avail.

duplicate

Hi maintainers - could I gently ask you to weigh in on this issue? Several people have noticed that the comtypes client remain broken in common use cases -- this...

bug

Clean install of Python 3.9.9 then use a virtual environment to install dependencies: ``` python -m venv env env\Scripts\activate pip3 install -U setuptools pip3 install -U wheel pip3 install comtypes==1.1.10...

bug

Copied from #189 without the zip_safe set to False when setuptools installs the library either using easy_install, setup_requires or install_requires these warnings get produced. The issue lies in the use...

bug

Not all .NET names can be used because there isn't typelib information available for all of them. Here are a few examples If you have an Nvidia video card `comtypes.typelib.DisplayServer.Config`...

I'm trying to run the tests, but I can't. Is anyone able to run the tests successfully? I'm on Windows 10 using python 3.10 64 bit. Here's some of the...

enhancement
tests

This adds most of the contents of propidl.h to comtypes. I have found that there is a lot of COM interfaces that use the IPropertyStore interface along with the PROPVARIANT...

I was trying to pass 2D VARIANT array to a COM object, but it was always passed as one dimensional array Then I tried to pass ndarray, but was getting...

npsupport

It seems like comtypes has enough information to generate [Protocols ](https://www.python.org/dev/peps/pep-0544/)and/or other type information when generating Python code for type libraries. I'm not a win32 or really much of a...