Search Results

9
votes
4answers
2k views

How can I use a DLL from Python

What is the easiest way to use a DLL from within Python? Specifically, how can this be done without writing any additional wrapper C++ code to expose the functionality to Python? Na …
1
vote
1answer
632 views

How can I unload a DLL using ctypes in Python?

I'm using ctypes to load a DLL in Python. This works great. Now we'd like to be able to reload that DLL at runtime. The straightforward approach would seem to be: 1. Unload DLL 2 …