Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 608 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 608 Bytes

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