Skip to main content

Deals with ExportXMLv2 format for annotated text

Project description

https://travis-ci.org/yv/exmldoc.svg?branch=master

exmldoc is a library for loading .exml.xml files either produced by PyTree or by the ExportXMLv2 Java library and assorted tools. The EXML file format is one of the file formats used for the TüBa-D/Z treebank of German and offers the possibility to store multilayer linguistic annotations in a (mostly) human-readable format.

As long as you are working with small documents, usage is relatively simple: load a document with

::

import exmldoc from exmldoc.tree import Tree

doc = exmldoc.load(‘file.exml.xml’)

you can then (for example) enumerate all sentences with:

::
for sent in doc.get_objects_by_class(Tree):

print doc.words[sent.span[0]:sent.span[1]]

or access the token objects with

::
for sent in doc.get_objects_by_class(Tree):
for token in doc.w_objs[sent.span[0]:sent.span[1]]

print token.word, token.cat, token.lemma

You can change a document and then save it with

::

doc.save(‘file_processed.exml.xml’)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

exmldoc-1.0.4.tar.gz (38.0 kB view hashes)

Uploaded Source

Built Distribution

exmldoc-1.0.4-py2-none-any.whl (75.0 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page