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).