I am trying work out python boilerpipe with google app engine. I have installed boilerpipe and its working fine in my local machine.
boilerpipe installed using pip
pip install boilerpipe
sample program works fine with given url
from boilerpipe.extract import Extractor
extractor = Extractor(extractor='ArticleExtractor', url=your_url)
print(extractor.getText())
Trial 1:
but the same code when I run with google_appengine generates ImportError
Trial 2
then after some research I copied modules from dist_packages
to project directory.
Now I am getting _jpype module not found
Trial 3
This time I downloaded the packages and trying to build and install in project directory.
boilerpipe installed without error. but jpype giving error jni.h no such file or directory
How could I resolve import error? Whats the problem with google_appengine while the same code is working properly in local machine?