0

我需要导入'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。

4

1 回答 1

0

谢谢@eryksun。但它仍然没有工作。我改为使用名为Pyhunspell的 Hunspell 的 Python 包装器。PyPi 中的实际链接不适用于 Python 2.7,但已在此处进行了改进和升级。

于 2013-06-25T14:48:01.737 回答