Metadata-Version: 2.1
Name: norsecorpus
Version: 1.0.2
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
Description: # Corpus of Old Norse texts
        
        ![PyPI](https://img.shields.io/pypi/v/norsecorpus) ![PyPI - License](https://img.shields.io/pypi/l/norsecorpus) 
        
        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)
        
        ## Installation
        
        ```bash
        $ pip install --user --upgrade norsecorpus
        ```
        
        ## How to use **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.
        
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
