Skip to main content

Generates Dutch plural and singular nouns in a very imperfect way using Hunspell dictionaries. Why imperfect? Because the Dutch language is full of exceptions.

Project description

Dutch Noun Pluralizer in Python

Generates plural and singular nouns in a very imperfect way using Hunspell and OpenTaal dictionaries (v2.20.23, 2023-03-10) and word lists. Why imperfect? Because the Dutch language is full of exceptions.

The algorithm is based on the document "Basismorfologie. Het meervoud in het Nederlands" (Dutch) of the Université catholique de Louvain.

Note: I'm a .NET developer that does Python in my free time. I'm not a linguist, I just work for a Dutch company. Hence: this must be a very imperfect way of doing this. If you have good ideas, I welcome them — just open an issue on GitHub.

Installation

Python version: This package requires Python >=3.8. The devcontainer uses Python 3.14.

Install from PIP:

pip install dutch-pluralizer

System dependencies

The package requires libhunspell (the C library, not the CLI):

  • Debian/Ubuntu: apt-get install libhunspell-dev
  • macOS: brew install hunspell
  • Windows: Install a pre-built libhunspell binary or use WSL.

CLI usage

The project can be used as a CLI tool:

$ python -m dutch_pluralizer -p kaas
kazen

See docs/CLI.md for the full CLI reference with all options and output examples.

API

The API can be used like this:

from dutch_pluralizer import pluralize, singularize

# pluralize will return the result or None
assert pluralize("kaas") == "kazen"
assert pluralize("kazen") == None

# singularize will return the result or None
assert singularize("kazen") == "kaas"
assert singularize("kaas") == None

Advanced pluralization will give you more options:

from dutch_pluralizer import pluralize, pluralize_advanced, singularize

adv = pluralize_advanced("album")

# the plural
assert adv.plural == 'albums'

# what the algorithm (without Hunspell) created
# is probably not correct, that's why Hunspell is
# used on it. It is like a preprocessing:
assert adv.algorithmic_plural == 'alba'

# indicates that end result was found in Hunspell
assert adv.hunspell_spelled == True

# the plural was found by replacement of 
# 'a' to 'ums'
assert adv.switched_ending_from == 'a'
assert adv.switched_ending_to == 'ums'

# suggestions given by Hunspell when the algorithmic
# result was processed:
assert adv.suggestions == ( 'Alba',
                            'aba',        
                            'balba',
                            'albe',
                            'alia',
                            'alla',
                            'alma',
                            'alfa',
                            'Elba')

Add custom words to the dictionary:

from dutch_pluralizer import pluralize, singularize
from dutch_pluralizer.speller import ensure_hunspell_nl

def test_readme_example_3():

    # default dictionary does not understand these words,
    # as they are not Dutch
    assert pluralize("fibulatie") == None
    assert singularize("fibulaties") == None

    # add the words to the dictionary
    h = ensure_hunspell_nl()
    h.add("fibulatie")
    h.add("fibulaties")

    # check again
    assert pluralize("fibulatie", speller=h) == "fibulaties"
    assert singularize("fibulaties", speller=h) == "fibulatie"

Help!? The result is not correct

I told you it was imperfect! There is stuff this package can and cannot do:

  • We cannot discover words that are not recognized by Hunspell
  • We can only process nouns (Dutch: zelfstandige naamwoorden)
  • We can only return a single result, but we know that the singular of graven can be either graaf or graf. We currently have no support for these use cases.
  • We can add words, just open up a ticket on GitHub. Please make sure you provide some evidence on why the word should be added (like a VanDale.nl result).

Development

A devcontainer configuration is provided for a consistent development environment. Open the project in Visual Studio Code with the Dev Containers extension and it will automatically build and set up the container.

Alternatively, see DEV.md for manual setup instructions.

Project details


Download files

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

Source Distribution

dutch_pluralizer-0.0.42.tar.gz (1.7 MB view details)

Uploaded Source

Built Distribution

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

dutch_pluralizer-0.0.42-py3-none-any.whl (1.7 MB view details)

Uploaded Python 3

File details

Details for the file dutch_pluralizer-0.0.42.tar.gz.

File metadata

  • Download URL: dutch_pluralizer-0.0.42.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for dutch_pluralizer-0.0.42.tar.gz
Algorithm Hash digest
SHA256 f834b252833d817368fb94445dd2a70a85e471f1fa3932bb3dcc37ee599ac424
MD5 f8169f49060b84ad71deb31d969d4329
BLAKE2b-256 b9e8d1f1803e228bca75285d9f9c9cc01dc17d0b82c54971c8b917fc60e4d3fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for dutch_pluralizer-0.0.42.tar.gz:

Publisher: publish.yml on KeesCBakker/dutch-pluralizer-py

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

File details

Details for the file dutch_pluralizer-0.0.42-py3-none-any.whl.

File metadata

File hashes

Hashes for dutch_pluralizer-0.0.42-py3-none-any.whl
Algorithm Hash digest
SHA256 6de155ce8637e9b89f683e00d20b273e126befdddbe388a0485ed8927e45300d
MD5 ec9479c219ac63ab50d65dd98627cb34
BLAKE2b-256 2cef38445b981df70acb97cf517e492f1f503f5621fbc8bfa8b2f7f370b678d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dutch_pluralizer-0.0.42-py3-none-any.whl:

Publisher: publish.yml on KeesCBakker/dutch-pluralizer-py

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 Pingdom Monitoring Sentry Error logging StatusPage Status page