Im getting following error while trying the sample code provided in pyCharm CE. Plz advise how to resolve this.
Process finished with exit code -1073741819 (0xC0000005)
during debug i found that execution stucks at init.py at line 13
InputSource = jpype.JClass('org.xml.sax.InputSource')
Im using the following sample code:
from boilerpipe.extract import Extractor
extractor = Extractor(extractor='ArticleExtractor', url='http://edition.cnn.com/2017/05/31/asia/kabul-explosion-hits-diplomatic-area/index.html')
extractor = Extractor(extractor='KeepEverythingWithMinKWordsExtractor', url=your_url, kMin=20)
extracted_text = extractor.getText()
extracted_html = extractor.getHTML()
Thanks.