I have a third party pyd file called "scm.pyd". I have added this file and DLL file into PYTHONPATH.
import scm -> works
scm.Open() -> prints " module 'scm' has no attribute 'Open' " error.
I'm sure there's a function called Open(). When I use DLL version of scm with ctypes the Open() function works.
I want to use pyd file since function prototypes are ready to use and they have python syntax.
How to solve this?