dkpro / dkpro-cassis

UIMA CAS processing library written in Python
https://pypi.org/project/dkpro-cassis/
Apache License 2.0
85 stars 22 forks source link

Add nice selector syntax for deeply nested feature structure #129

Closed jcklie closed 4 years ago

jcklie commented 4 years ago

Is your feature request related to a problem? Please describe. Sometimes you want to get an attribute of a member fs, but it might be None:

a.b.c <=bmight beNone`

Describe the solution you'd like

a.get("b.c") returns c if b is set else None

jcklie commented 4 years ago

Solved with #130