Deals with ExportXMLv2 format for annotated text
Project description
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
File details
Details for the file exmldoc-1.0.9.tar.gz
.
File metadata
- Download URL: exmldoc-1.0.9.tar.gz
- Upload date:
- Size: 38.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b39b7ce03db5a362d2fb5c476a26293c85c48f518b566e9653619ebd5ebc7859 |
|
MD5 | ccd8db8823ba2e782e86110f75e407ac |
|
BLAKE2b-256 | d4063aebeeb322a42e89c777e760396a8897d28ad4725d531f481e03d98b2e82 |