Skip to main content

A Python package to convert numbers to letters (in French).

Project description

nombres_vers_lettres

A Python package to write numbers in French, with a simple script. The reason I made this package is the complexity of this simple task that often lead the implementation of such a tool to produce erroneous results (see this issue).

Installation

You can easily install this package using pip.

python -m pip install nombres_vers_lettres

Or for the development version:

python -m pip install git+https://github.com/Vincent-Stragier/nombres_vers_lettres.git

Example

It is better to have your number in strings, this avoids conversion error between int or float and strings (see floating point precision for more details).

import nombres_vers_lettres as nvl
from nombres_vers_lettres import constants

# List available languages
print(f"{constants.AVAILABLE_LANGUAGES = }")

# List available currencies
print(f"{constants.CURRENCY_FORMS_FR_CODES = }")

# Print the number 42 in French (cardinal mode, new orthographe)
# Default language is fr_BE
cardinal_42 = nvl.make_letters(
    42, language="fr_FR", post_1990_orthographe=True
)

print(f"{cardinal_42 = }")

# Print 42e in French (cardinal mode, new orthographe)
ordinal_nominal_42 = nvl.make_letters(
    42, language="fr_FR", mode="ordinal_nominal", post_1990_orthographe=True
)

print(f"{ordinal_nominal_42 = }")

# Print €420,69 in French (new orthographe)
currency_420_69 = nvl.make_letters(
    "420,69",
    language="fr_FR",
    mode="EUR",
    post_1990_orthographe=True,
    # By default, non-breaking spaces are used
    use_non_breaking_spaces=False,
)

print(f"{currency_420_69 = }")

# Write 1st feminine plural
ordinal_nominal_1st_f_p = nvl.make_letters(
    "1",
    language="fr_FR",
    mode="ordinal_nominal",
    gender="feminine",
    plural=True,
    post_1990_orthographe=True,
)
print(f"{ordinal_nominal_1st_f_p = }")

Script usage

After installing this package, Python gives you access to two entry points: nombres_vers_lettres or nvl.

$ nvl -h
usage: nvl [-h] [--mode MODE | --cardinal | --ordinal | --ordinal_nominal] [--gender GENDER | --masculine | --feminine] [--plural]
           [--post_1990_orthographe] [--language LANGUAGE]
           number

positional arguments:
  number                The number as a string to convert to letters (in French)

options:
  -h, --help            show this help message and exit
  --mode MODE           The mode to use for the conversion (nominal, cardinal or ordinal)
  --cardinal, -c        Convert the number to cardinal numbers in letters (e.g., 'un chat', 'deux ânes', 'quatre-vingts chats', 'deux-cents
                        billes', etc.)
  --ordinal, -o         Convert the number to ordinal numbers in letters (e.g., 'la page un', 'la page quatre-vingt', 'la page deux-cent', etc.)
  --ordinal_nominal, -on
                        Convert the number to ordinal nominal numbers in letters (e.g., 'la quatre-vingtième page', 'la deux-centième page',
                        etc.)
  --gender GENDER, -g GENDER
                        The gender to use for the conversion (feminine, féminin, feminin, f or masculine, masculin, m), default is masculine
                        (only has an effect on cardinal and ordinal_nominal modes)
  --masculine, -m       Convert the number to masculine letters (e.g., 'un' -> 'un')
  --feminine, -f        Convert the number to feminine letters (e.g., 'un' -> 'une')
  --plural, -p          Convert the number to plural letters (e.g., 'un' -> 'uns'), only has an effect on cardinal and ordinal_nominal modes
  --post_1990_orthographe, -t
                        Use the tiret character everywhere (e.g., 'vingt-et-un')
  --language LANGUAGE, -l LANGUAGE
                        The language code to use for the conversion (e.g., fr_BE, fr_CD, fr_FR, fr_CA, fr_CH, fr_IT)

How to contribute

If you spotted an error, you can open an issue in this repository. Moreover, you can help to fix num2words.

And you can also open Pull Request for this repository.

After locally cloning your fork of this repository, you can install all the tools needed to check the code:

python -m pip install -r requirements-dev.txt

# Ideally, also install the pre-commit hooks,
# which will be executed before each commit
precommit install

Pre-commit

If you cannot manage to commit your code due to the pre-commit hooks, simply uninstall them (precommit uninstall).

You can still manually run them using precommit run -a -v to see where the issues are.

Coverage

Some tests have been implemented to check if you broke the current code. Ideally, you should add new test before changing the codebase to check if it indeed solves the issue, etc. Those tests are run by the pre-commit hooks.

Run the tests

coverage run -m pytest

Get some simple coverage information

coverage report

Generate an HTML report of the test coverage

coverage html

Some references

Important references are in italic.

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

nombres_vers_lettres-1.0.4.tar.gz (17.3 kB view details)

Uploaded Source

Built Distribution

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

nombres_vers_lettres-1.0.4-py3-none-any.whl (15.2 kB view details)

Uploaded Python 3

File details

Details for the file nombres_vers_lettres-1.0.4.tar.gz.

File metadata

  • Download URL: nombres_vers_lettres-1.0.4.tar.gz
  • Upload date:
  • Size: 17.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nombres_vers_lettres-1.0.4.tar.gz
Algorithm Hash digest
SHA256 fea6f8e93c3abcdf8b10a73276d126d4c2d71375397092ac3496b97d68e54963
MD5 9af9fbbe8ccc0e033542f980a7b5063a
BLAKE2b-256 8a37b8d4303c3c0ecba9bf5579b2a4c9fea7ff4fbbef8a515873d66c15d582dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for nombres_vers_lettres-1.0.4.tar.gz:

Publisher: publish-to-pypi.yml on Vincent-Stragier/nombres_vers_lettres

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

File details

Details for the file nombres_vers_lettres-1.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for nombres_vers_lettres-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 42c37a253530741f3b67d61bab1892e37020e824ab2735efe22989931940ada4
MD5 6066ce7fe003b8bb5723a1a1dc2cf838
BLAKE2b-256 4b956dc996ef940dccff77c24b2e6b50fc86f7afa38d32083d61c91107effa24

See more details on using hashes here.

Provenance

The following attestation bundles were made for nombres_vers_lettres-1.0.4-py3-none-any.whl:

Publisher: publish-to-pypi.yml on Vincent-Stragier/nombres_vers_lettres

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