我需要导入'NHunspell.dll'
用于拼写检查目的的特定 dll。我正在使用Python作为软件。尽管我检查了几个网站以正确使用ctypes
,但我一直无法正确加载 dll。
当我使用此代码时。
from ctypes import *
hunspell = cdll.LoadLibrary['NHunspell.dll']
我收到一个错误
hunspell = cdll.LoadLibrary['NHunspell.dll']
TypeError: 'instancemethod' object has no attribute '__getitem__'
我想这可能是dll结构的问题。但我不知道如何正确导入 dll。