Tarini Dash
Tarini Dash
I have been working with this library to extract chem information from HTML pages. I followed http://chemdataextractor.org/demo and saved https://pubs.rsc.org/en/content/articlelanding/2015/TC/C5TC02626A as an html(input3.html) file. Below is my code. with open('input/input3.html',...
my configuration: ============ pom.xml -> pl.allegro.tech embedded-elasticsearch 2.1.0 testCompile TestClass -> private EmbeddedElastic embeddedElastic; @Before public void setUp() throws Exception { embeddedElastic = EmbeddedElastic.builder() .withElasticVersion("5.1.1") .withSetting(PopularProperties.TRANSPORT_TCP_PORT, 9930) .withSetting(PopularProperties.CLUSTER_NAME, "local") .withEsJavaOpts("-Xms128m...