python-roman-numerals
Port variant v14
Summary Manipulate well-formed Roman numerals (3.14)
Package version 3.1.0
Homepage https://pypi.org/project/roman-numerals/
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v13
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 01 DEC 2025, 00:44:02 UTC
Port created 01 DEC 2025, 00:44:02 UTC
Subpackage Descriptions
single =============== roman-numerals =============== A library for manipulating well-formed Roman numerals. Integers between 1 and 3,999 (inclusive) are supported. Numbers beyond this range will return an OutOfRangeError. The classical system of roman numerals requires that the same character may not appear more than thrice consecutively, meaning that 'MMMCMXCIX' (3,999) is the largest well-formed Roman numeral. The smallest is 'I' (1), as there is no symbol for zero in Roman numerals. Both upper- and lower-case formatting of roman numerals are supported, and likewise for parsing strings, although the entire string must be of the same case. Numerals that do not adhere to the classical form are rejected with an InvalidRomanNumeralError. Example usage ============= Creating a roman numeral ------------------------ .. code-block:: python from roman_numerals import RomanNumeral num = RomanNumeral(16) assert str(num) == 'XVI' num = RomanNumeral.from_string("XVI") assert int(num) == 16 Convert a roman numeral to a string ----------------------------------- .. code-block:: python from roman_numerals import RomanNumeral num = RomanNumeral(16) assert str(num) == 'XVI' assert num.to_uppercase() == 'XVI' assert num.to_lowercase() == 'xvi' assert repr(num) == 'RomanNumeral(16)' Extract the decimal value of a roman numeral -------------------------------------------- .. code-block:: python from roman_numerals import RomanNumeral num = RomanNumeral(42) assert int(num) == 42 Invalid input ------------- .. code-block:: python from roman_numerals import RomanNumeral, InvalidRomanNumeralError num = RomanNumeral.from_string("Spam!") # raises InvalidRomanNumeralError num = RomanNumeral.from_string("CLL") # raises InvalidRomanNumeralError num = RomanNumeral(0) # raises OutOfRangeError num = RomanNumeral(4_000) # raises OutOfRangeError Licence ======= This project is licenced under the terms of either the Zero-Clause BSD licence or the CC0 1.0 Universal licence. See `LICENCE.rst`__ for the full text of both licences. __ ./LICENCE.rst
Configuration Switches (platform-specific settings discarded)
PY313 OFF Build using Python 3.13 PY314 ON Build using Python 3.14
Package Dependencies by Type
Build (only) python314:dev:std
python-pip:single:v14
autoselect-python:single:std
Build and Runtime python314:primary:std
Download groups
main mirror://PYPIWHL/82/1d/7356f115a0e5faf8dc59894a3e9fc8b1821ab949163458b0072db0a12a68
Distribution File Information
842ae5fd12912d62720c9aad8cab706e8c692556d01a38443e051ee6cc158d90 7709 python-src/roman_numerals-3.1.0-py3-none-any.whl
Ports that require python-roman-numerals:v14
python-Sphinx:v14 Python documentation generator (3.14)