Unable to import NHunspell.dll using ctypes in Python

akshay.ksth at gmail.com akshay.ksth at gmail.com
Tue Jun 25 04:04:49 EDT 2013


On Tuesday, June 25, 2013 12:08:17 PM UTC+5:45, aksha... at gmail.com wrote:
> 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.

@Chris 
I understand that. But then I am supposed to create something that works on a Windows environment using a Windows Dll.Aaandd Im stuck. 



More information about the Python-list mailing list