I am currently using the win32com CPython module to use a DLL. I know that some people use IronPython to automatically get a list of the functions provided by this DLL. They do not need to register the DLL.
I would like to do the same as them, but with CPython.
1) Is it possible to use CPython and win32com to connect to reg-free dll. How to make it free?
2) How to get a list of functions provided by a DLL? I would like to create a CPython module containing the entire list of functions.
Any idea?
source
share