corenlp-xml

Library for interacting with the XML output of the Stanford CoreNLP pipeline.


License
GPL-3.0+
Install
pip install corenlp-xml==1.0.4

Documentation

Data abstraction library for Stanford CoreNLP XML parses.

You can install it with pip:

me@box$ pip install corenlp_xml

Using it is as easy as:

from corenlp_xml.document import Document
d = Document(corenlp_xml_output_string)
sentences = d.sentences
word_to_pos = dict([(token.word, token.pos) for token in sentences[0].tokens])

To learn more:

Copyright Robert Elwell, distributed under the Apache License (see LICENSE.txt).