Metadata-Version: 2.1
Name: norsecorpus
Version: 1.0.1
Summary: Corpus of Old Norse texts with code to read them
Home-page: https://github.com/clemsciences/old_norse_corpus
Author: Clément Besnier
Author-email: clemsciences@aol.com
License: License :: OSI Approved :: MIT License
Keywords: old-norse,corpus
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Markup :: XML
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: nltk
Requires-Dist: lxml

# Corpus of Old Norse texts

This package provides Old Norse texts with code to parse them.

## Sources
Although texts are in public domain, we must thank those who digitalised and normalized these texts.

- [Heimskringla.no](https://heimskringla.no/wiki/Main_Page)

## How to **norsecorpus**

```python
import norsecorpus.reader as ncr
available_texts = ncr.get_available_texts()
filename = "volsunga.xml"
volsunga = ncr.read_tei_words(available_texts["volsunga.xml"])
```

You have now the Völsunga saga.


