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 157 comtypes issues
Sort by recently updated
recently updated
newest added

#371 I was trying to implement the #400 functionality. However, I realized that it is misleading to have a function annotation that allows named arguments to be accepted, since a...

I learned that this project is funded on [Tidelift](https://tidelift.com), meaning it's popular enough that it's getting sponsorship money from enterprise customers. This means that the maintainers of the package have...

Hello `comtypes`ers, As `comtypes` is currently experiencing a new lease of life (thanks particularly to the efforts of @junkmd), I wanted to gauge the level of interest from contributors in...

tests
shared_info
help wanted

The standard treatment of argument directions is as follows: - An `'in'` argument must be provided and is not returned. - An `'out'` argument is returned by the function and...

enhancement
help wanted

We have been promoting measures to increase the number of contributors. Contributors will be PR reviewees. As the number of contributors increases, so does the reviewer's workload. We need to...

When I try to import comtypes.util, I get the following message: ``` File "", line 1, in File "...\lib\site-packages\comtypes\util.py", line 59, in _byref_pointer_offset = _calc_offset() File "...\lib\site-packages\comtypes\util.py", line 48, in...

help wanted

When I try to import comtypes.viewobject, I get the following error: ``` File "", line 1, in File "C:\Users\manow\miniconda3\envs\py37_ml_TfGpuMain\lib\site-packages\comtypes\viewobject.py", line 26, in assert sizeof(tagLOGPALETTE) == 8, sizeof(tagLOGPALETTE) AssertionError: 12 ```...

help wanted

Both ./test/TestComServer.py and ./TestDispServer.py scripts are broken in 0.6.0 (tested on Windows XP, both .zip and .exe distribution). I was able to debug for the actual cause, the reason is...

bug
tests

when I try to run this code: ``` python from comtypes.client import GetActiveObject,CreateObject td = GetActiveObject('TD_Appl.Application') ``` I got the following error: ``` python Traceback (most recent call last): File...

bug
3rd-party issue