dasmith / stanford-corenlp-python

Python wrapper for Stanford CoreNLP tools v3.4.1
GNU General Public License v2.0
610 stars 229 forks source link

Fixing the attribute error on tree #42

Open chabhishek123 opened 7 years ago

chabhishek123 commented 7 years ago

Existing behaviour : Traceback (most recent call last): File "client.py", line 18, in tree = Tree.parse(result['sentences'][0]['parsetree']) AttributeError: type object 'Tree' has no attribute 'parse'

Fixing the parsing of tree . Output after the fix:

Tree('ROOT', [Tree('S', [Tree('NP', [Tree('PRP', ['It'])]), Tree('VP', [Tree('VBZ', ['is']), Tree('ADJP', [Tree('RB', ['so']), Tree('JJ', ['beautiful'])])]), Tree('.', ['.'])])])