What is the easiest way to use a DLL file from within Python?
DLL
Python
Specifically, how can this be done without writing any additional wr
Maybe with Dispatch:
Dispatch
from win32com.client import Dispatch zk = Dispatch("zkemkeeper.ZKEM")
Where zkemkeeper is a registered DLL file on the system... After that, you can access functions just by calling them:
zk.Connect_Net(IP_address, port)