Unable to import NHunspell.dll using ctypes in Python

akshay.ksth at gmail.com akshay.ksth at gmail.com
Tue Jun 25 02:23:17 EDT 2013



Im required to import ha certain dll called 'NHunspell.dll' which is used for Spell Checking purposes. I am using Python for the software. Although I checked out several websites to properly use ctypes, I have been unable to load the dll properly.

When I use this code.

  from ctypes import *
  hunspell = cdll.LoadLibrary['Hunspellx64.dll']

I get an error

  hunspell = cdll.LoadLibrary['Hunspellx64.dll']
  TypeError: 'instancemethod' object has no attribute '__getitem__'

I guess it might a problem with the structure of the dll. But I have no idea how to import the dll properly.



More information about the Python-list mailing list