Skip to main content

License: MIT Python 3.10 Release PyPI Build

Greynir

GreynirEngine

A fast, efficient natural language processing engine for Icelandic

Overview

Greynir is a Python 3 (>=3.10) package, published by Miðeind ehf., for working with Icelandic natural language text. Greynir can parse text into sentence trees, find lemmas, inflect noun phrases, assign part-of-speech tags and much more.

Greynir's sentence trees can inter alia be used to extract information from text, for instance about people, titles, entities, facts, actions and opinions.

Full documentation for Greynir is available here.

Greynir is the engine of Greynir.is, a natural-language front end for a database of over 10 million sentences parsed from Icelandic news articles, and Embla, a voice-driven virtual assistant app for smart devices such as iOS and Android phones.

Greynir includes a hand-written context-free grammar for the Icelandic language, consisting of over 7,000 lines of grammatical productions in extended Backus-Naur format. Its fast C++ parser core is able to cope with long and ambiguous sentences, using an Earley-type parser as enhanced by Scott and Johnstone.

Greynir employs the Tokenizer package, by the same authors, to tokenize text, and uses BinPackage as its database of Icelandic vocabulary and morphology.

Examples

Use Greynir to easily inflect noun phrases

from reynir import NounPhrase as Nl

# Create a NounPhrase ('nafnliður') object
karfa = Nl("þrír lúxus-miðar á Star Wars og tveir brimsaltir pokar af poppi")

# Print the NounPhrase in the correct case for each context
# (þf=þolfall/accusative, þgf=þágufall/dative). Note that
# the NounPhrase class implements __format__(), allowing you
# to use the case as a format specification, for instance in f-strings.

print(f"Þú keyptir {karfa:þf}.")
print(f"Hér er kvittunin þín fyrir {karfa:þgf}.")

The program outputs the following text, correctly inflected:

Þú keyptir þrjá lúxus-miða á Star Wars og tvo brimsalta poka af poppi.
Hér er kvittunin þín fyrir þremur lúxus-miðum á Star Wars og tveimur brimsöltum pokum af poppi.

Use Greynir to parse a sentence

>>> from reynir import Greynir
>>> g = Greynir()
>>> sent = g.parse_single("Ása sá sól.")
>>> print(sent.tree.view)
P                               # Root
+-S-MAIN                        # Main sentence
    +-IP                          # Inflected phrase
    +-NP-SUBJ                   # Noun phrase, subject
        +-no_et_nf_kvk: 'Ása'     # Noun, singular, nominative, feminine
    +-VP                        # Verb phrase containing arguments
        +-VP                      # Verb phrase containing verb
        +-so_1_þf_et_p3: 'sá'   # Verb, 1 accusative arg, singular, 3rd p
        +-NP-OBJ                  # Noun phrase, object
        +-no_et_þf_kvk: 'sól'   # Noun, singular, accusative, feminine
+-'.'                           # Punctuation
>>> sent.tree.nouns
['Ása', 'sól']
>>> sent.tree.verbs
['sjá']
>>> sent.tree.flat
'P S-MAIN IP NP-SUBJ no_et_nf_kvk /NP-SUBJ VP so_1_þf_et_p3
    NP-OBJ no_et_þf_kvk /NP-OBJ /VP /IP /S-MAIN p /P'
>>> # The subject noun phrase (S.IP.NP also works)
>>> sent.tree.S.IP.NP_SUBJ.lemmas
['Ása']
>>> # The verb phrase
>>> sent.tree.S.IP.VP.lemmas
['sjá', 'sól']
>>> # The object within the verb phrase (S.IP.VP.NP also works)
>>> sent.tree.S.IP.VP.NP_OBJ.lemmas
['sól']

Extracting lemmas and POS tags for web display

Greynir preserves the original text of each token, including surrounding whitespace. This allows you to reconstruct the exact original input while annotating it with linguistic information such as lemmas and part-of-speech (POS) tags.

from reynir import Greynir

g = Greynir()
sent = g.parse_single("Ása   sá   sól.")

# Build a map from token index to terminal node
terminal_map = {node.index: node for node in sent.terminal_nodes}

html_parts = []
for i, tok in enumerate(sent.tokens):
    # tok.original preserves the original text with spacing
    original = tok.original or ""
    if i in terminal_map:
        node = terminal_map[i]
        # Wrap with linguistic info (lemma and POS tag)
        html_parts.append(
            f'<span data-lemma="{node.lemma}" data-pos="{node.tcat}">'
            f'{original}</span>'
        )
    else:
        html_parts.append(original)

html = "".join(html_parts)
print(html)

The program outputs the following HTML, with the original spacing preserved and each token annotated with its lemma and POS tag (no=noun, so=verb):

<span data-lemma="Ása" data-pos="no">Ása</span><span data-lemma="sjá" data-pos="so"></span><span data-lemma="sól" data-pos="no">   sól</span><span data-lemma="." data-pos="">.</span>

Prerequisites

This package runs on CPython 3.10 or newer, and on PyPy 3.11 or newer.

To find out which version of Python you have, enter:

python --version

If a binary wheel package isn't available on PyPI for your system, you may need to have the python3-dev package (or its Windows equivalent) installed on your system to set up Greynir successfully. This is because a source distribution install requires a C++ compiler and linker:

# Debian or Ubuntu
sudo apt-get install python3-dev

Depending on your system, you may also need to install libffi-dev:

# Debian or Ubuntu
sudo apt-get install libffi-dev

Installation

To install this package, assuming Python 3 is your default Python:

pip install reynir

If you have git installed and want to be able to edit the source, do like so:

git clone https://github.com/mideind/GreynirEngine
cd GreynirEngine
# [ Activate your virtualenv here if you have one ]
pip install -e .

The package source code is in GreynirEngine/src/reynir.

Tests

To run the built-in tests, cd to your GreynirEngine subdirectory and, using uv, run:

uv sync
uv run pytest

Alternatively, install pytest into your virtualenv and run python -m pytest.

Evaluation

A parsing test pipeline for different parsing schemas, including the Greynir schema, has been developed. It is available here.

Documentation

Please consult Greynir's documentation for detailed installation instructions, a quickstart guide, and reference information, as well as important information about copyright and licensing.

Troubleshooting

GreynirEngine uses a lock file, located alongside the binary grammar file within the package directory (reynir/Greynir.grammar.bin.lock), to serialize the (re)generation of the binary grammar between processes. If a process gets stuck holding the lock, parser initialization fails after a timeout with an error message identifying the lock file. Terminate the process holding the lock, or - if no such process exists - delete the lock file named in the error message, and try again.

Copyright and licensing

Greynir is Copyright © 2016-2025 by Miðeind ehf.. The original author of this software is Vilhjálmur Þorsteinsson.

Miðeind ehf.

This software is licensed under the MIT License:

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

If you would like to use this software in ways that are incompatible with the standard MIT license, contact Miðeind ehf. to negotiate custom arrangements.


GreynirEngine indirectly embeds the Database of Icelandic Morphology, (Beygingarlýsing íslensks nútímamáls), abbreviated BÍN. GreynirEngine does not claim any endorsement by the BÍN authors or copyright holders.

The BÍN source data are publicly available under the CC BY-SA 4.0 license, as further detailed here in English and here in Icelandic.

In accordance with the BÍN license terms, credit is hereby given as follows:

Beygingarlýsing íslensks nútímamáls. Stofnun Árna Magnússonar í íslenskum fræðum. Höfundur og ritstjóri Kristín Bjarnadóttir.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

reynir-3.7.0.tar.gz (439.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

reynir-3.7.0-pp311-pypy311_pp73-win_amd64.whl (464.6 kB view details)

Uploaded PyPyWindows x86-64

reynir-3.7.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (441.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

reynir-3.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (437.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

reynir-3.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (437.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

reynir-3.7.0-cp310-cp310-win_amd64.whl (439.9 kB view details)

Uploaded CPython 3.10Windows x86-64

reynir-3.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (512.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

reynir-3.7.0-cp310-cp310-macosx_11_0_arm64.whl (443.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reynir-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl (443.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file reynir-3.7.0.tar.gz.

File metadata

  • Download URL: reynir-3.7.0.tar.gz
  • Upload date:
  • Size: 439.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for reynir-3.7.0.tar.gz
Algorithm Hash digest
SHA256 30db9d1478237e62b03a4ee2960278d92b98c164bc436aa55c185e0a02d4a541
MD5 b74f89ac788334c9ce5fe82a0e706ee8
BLAKE2b-256 d4302de3a47691d49575f1f77d6a973b4d09968af2797b79ba20c55f3df62089

See more details on using hashes here.

Provenance

The following attestation bundles were made for reynir-3.7.0.tar.gz:

Publisher: wheels.yml on mideind/GreynirEngine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reynir-3.7.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for reynir-3.7.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c64cb78ba68105a3b0428b5a8354ea6aabf0a7fedab56a0ce62f6807c90aa2a6
MD5 149161e0a120608c479e8a753a230399
BLAKE2b-256 4355b474baddf78218833503356bd77ad3621f17716989cda9d56312201030aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for reynir-3.7.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yml on mideind/GreynirEngine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reynir-3.7.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for reynir-3.7.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fd70bc5897c835418c8d327e13fecc7fd137981d6378ef725ac7b794d7818f9
MD5 e75008e0a594d1ac7cea7d51f2a2c3d4
BLAKE2b-256 e45b613b2169aba49914dbaddfc635d873cc2474833c19b8cd0a0bfbcbbc04b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for reynir-3.7.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on mideind/GreynirEngine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reynir-3.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reynir-3.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c097e88b16d079098fac6ed822b08690a8e1ba35ff3c1c6ec5c75d4f0094b8f
MD5 f16d68110c13ee52a7adf81cbfc0d1d4
BLAKE2b-256 0a93d7177b1374ea849132ae9c5f58a59702870491930124c32965d941bdf2f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for reynir-3.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on mideind/GreynirEngine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reynir-3.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for reynir-3.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 94f0b94419a49bbf58fbaabddbb2d7acbe22bbf3ad4dbba2dee6652ecfa33f88
MD5 b51a7388611efbf13f2fe1e951440b92
BLAKE2b-256 3457129c6178b2a0bbcd88215ca09eca8055809c98c36137e726734369c07651

See more details on using hashes here.

Provenance

The following attestation bundles were made for reynir-3.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on mideind/GreynirEngine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reynir-3.7.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: reynir-3.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 439.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for reynir-3.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ed38d1e44c91553ac2b2b81b418dfa9f9e104e0434c9ffee0f01c1366d03d23b
MD5 8442aea30596233f58d96e8cb99f9b70
BLAKE2b-256 c61d3ce4d3b03ec8a275682f8ce475be63c2bce2fe0b016c4661fc22734f8232

See more details on using hashes here.

Provenance

The following attestation bundles were made for reynir-3.7.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on mideind/GreynirEngine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reynir-3.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for reynir-3.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65cdee6d2a94dea86799b655eed8562d3f4eee84193c6f34f10d42c574b53635
MD5 f2865dcf13d2977afe8640f55f730455
BLAKE2b-256 a6374994a866d9a91447656179d7d6c46648753d985b2759a172fd4ed84ff24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for reynir-3.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on mideind/GreynirEngine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reynir-3.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for reynir-3.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d348602c5cff2a267b0e3e9d1ac3711cb08d156b6484146e456d0a41a8588fad
MD5 8e2cc24e0dbc9efc9ff650f26f0cc557
BLAKE2b-256 6fbe348e11031dc7b7b6e7cb203b09469c1fe43bce24f7790354c0287a3bfea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for reynir-3.7.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on mideind/GreynirEngine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reynir-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for reynir-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89f23f4705e69a91891deab8b210c41e52adee2e36a3b758c92478eeed6e451c
MD5 e8f3a0db29af790628ed37f82c6fe496
BLAKE2b-256 b4a71775d7e239aa9bab00fb71219471e7737e01979810a1d78d8914a5a69e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for reynir-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on mideind/GreynirEngine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page