This package provides Old Norse texts with code to parse them.
Although texts are in public domain, we must thank those who digitalised and normalized these texts.
$ pip install --user --upgrade norsecorpus
import norsecorpus.reader as ncr
available_texts = ncr.get_available_texts()
filename = "volsunga.xml"
volsunga = ncr.read_tei_words(available_texts[filename])
print(volsunga[0][0][0]) # first sentence of the Völsunga saga
You have now the Völsunga saga.