pyparlaclarin

Read, create, and modify Parla-Clarin XML files


Keywords
lxml, parla-clarin, tei-xml, xml
License
MIT
Install
pip install pyparlaclarin==0.9.1

Documentation

Pyparlaclarin

This module includes functionality for reading, creating, and modifying Parla-Clarin XML files.

For instance, you can loop over all paragraphs in a Parla-Clarin file with a simple function:

from pyparlaclarin.read import paragraph_iterator

for paragraph in paragraph_iterator(root):
	print(paragraph)

or get all speeches by a speaker

from pyparlaclarin.read import speeches_with_name

for speech in speeches_with_name(root, name="barack_obama_1961"):
	print(speech)

Further documentation is available on GitHub pages.