我正在尝试在AWS上的Lambda函数中使用Python拼写检查库Pyenchant。 Pyenchant是C libenchant库的包装器,后者依赖于来自Aspell等提供者的单词词典。
在我在Lambda上运行的python代码中,我能够在AWS linux EC2实例上成功导入已编译它的附魔库和C库(libenchant.so),并将输出复制到我的Lambda部署包。
但是,pyenchant库在Lambda上运行时无法加载任何单词词典。然后我使用以下命令在EC2实例上安装了Aspell:
yum install aspell-en enchant-aspell
然后我将以下附加.so文件复制到我的部署包&#c; / lib文件夹:
我非常确定libenchant_aspell.so是真正的字典,但它没有把它拿起来,我无法弄清楚下一步该去哪里。
下面是我的lambda_handler python代码:
from __future__ import print_function
import os
import sys
import re
import enchant
enchant.set_param("enchant.aspell.dictionary.path","/var/task/lib")
def lambda_handler(event, context):
print("# List available enchant dictionary languages")
print(enchant.list_languages())
b = enchant.Broker()
print("# List available enchant brokers")
print(b.describe())
d = enchant.Dict("en_GB")
# print(d.provider.name)
# print(d.provider.file)
return "Done"
以下是调用Lambda函数的输出:
START RequestId: 7539245b-d3d6-11e6-b7e6-edc1dc8cbdd4 Version: $LATEST
# List available enchant dictionary languages
[]
# List available enchant brokers
[]
Dictionary for language 'en_GB' could not be found: DictNotFoundError
Traceback (most recent call last):
File "/var/task/package_test.py", line 16, in lambda_handler
d = enchant.Dict("en_GB")
File "/var/task/enchant/__init__.py", line 558, in __init__
_EnchantObject.__init__(self)
File "/var/task/enchant/__init__.py", line 168, in __init__
self._init_this()
File "/var/task/enchant/__init__.py", line 565, in _init_this
this = self._broker._request_dict_data(self.tag)
File "/var/task/enchant/__init__.py", line 310, in _request_dict_data
self._raise_error(eStr % (tag,),DictNotFoundError)
File "/var/task/enchant/__init__.py", line 258, in _raise_error
raise eclass(default)
DictNotFoundError: Dictionary for language 'en_GB' could not be found
END RequestId: 7539245b-d3d6-11e6-b7e6-edc1dc8cbdd4
REPORT RequestId: 7539245b-d3d6-11e6-b7e6-edc1dc8cbdd4 Duration: 1.03 ms Billed Duration: 100 ms Memory Size: 256 MB Max Memory Used: 16 MB
正如您所看到的,import enchant
工作正常,但找不到任何字典文件。
我真的坚持这一点,花了6个小时的最佳时间试图弄清楚如何让这个工作。在此先感谢您的帮助。
答案 0 :(得分:0)
好吧,对于遇到这个问题的任何人(可能都不会......),结果证明在Lambda上无法使用这个软件包。与没有正确的基础设施来加载多个级别的共享对象资源有关。最后我在EC2上使用了一个烧瓶网络服务器,它工作正常。