I am loading a dll in python using following code:
if os.path.exists(dll_path):
my_dll = ctypes.cdll.LoadLibrary(dll_path)
But I am continuously getting the following error
WindowsError: [Error 126] The specified module could not be found
dll is present at the specified path, but I didn't understand why I'm getting the error.