Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 642 Bytes

File metadata and controls

23 lines (15 loc) · 642 Bytes

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.