python boilerpipe与谷歌appengine获取导入错误?

时间:2014-02-12 05:12:11

标签: java python google-app-engine python-import boilerpipe

我正在尝试用谷歌应用程序引擎解决python boilerpipe。我已经安装了套管,并且在我的本地机器上工作正常。

使用pip

安装的samppipe
pip install boilerpipe

github link

示例程序适用于给定的URL

from boilerpipe.extract import Extractor
extractor = Extractor(extractor='ArticleExtractor', url=your_url)
print(extractor.getText())

试用1:

但是当我使用google_appengine运行时,相同的代码会生成ImportError

试用2

然后经过一些研究后,我将模块从dist_packages复制到了项目目录。 现在我得到了_jpype module not found

试用3

这次我下载了软件包并尝试在项目目录中构建和安装。 samppipe安装没有错误。但是jpype给出错误jni.h no such file or directory

如何解决导入错误? 什么是google_appengine的问题,而相同的代码在本地机器上正常工作?

1 个答案:

答案 0 :(得分:0)

您不能使用对“c”代码具有任意依赖性的库或创建子进程的库。

请参阅python appengine沙箱上的文档以了解其局限性。 https://developers.google.com/appengine/docs/python/#Python_The_sandbox