Integer to Roman numerals converter
Project description
roman
Small helper library to convert arabic to roman numerals.
There are two ways to use this library.
Importing it into your application
import roman
# to roman
number = int(input('> ')) # 10
print(roman.toRoman(number))
# from roman
number = input('> ') # X
print(roman.fromRoman(number))
roman CLI command
~$ roman 972
CMLXXII
# use the -r/--reverse to convert Roman numerals
~$ roman -r CMLXXII
972
# case insensitive
~$ roman -r cMlxxii
972
Change log
5.2 (2025-11-11)
Add support for Python 3.14.
Drop support for Python 3.9.
5.1 (2025-07-18)
Hide undocumented special behavior for N behind method parameter. (#30)
5.0 (2025-01-15)
Drop support for Python 3.7, 3.8.
Add support for lower case roman numerals. (#22)
4.2 (2024-04-25)
Remove overlooked mentions of the Python 2.1.1 license (#17)
Add support for Python 3.12 and 3.13.
4.1 (2023-05-26)
Change license to the Zope Public License (ZPL) version 2.1 (#15)
4.0 (2023-02-28)
Add support for Python 3.10, 3.11.
Drop support for Python 2.7, 3.5, 3.6.
3.3 (2020-07-12)
added support for Python 3.9
added CLI command roman with -r/--reverse to convert back from Roman
added simple usage instructions
3.2 (2019-04-14)
expanded test coverage
Added support for 0 -> N (see https://en.wikipedia.org/wiki/Roman_numerals#Zero)
Added support for Python 3.8
3.1 (2018-10-24)
Added support for Python 3.7.
3.0 (2018-05-28)
Added support for Python 3.5, 3.6 and PyPy3.
Dropped support for Python 2.6 and 3.3.
2.0.0 (2013-02-25)
Added Python 3.3 and PyPy support.
Added tests.
1.4.0 (2009-07-23)
Initial PyPI release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file roman-5.2.tar.gz.
File metadata
- Download URL: roman-5.2.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
275fe9f46290f7d0ffaea1c33251b92b8e463ace23660508ceef522e7587cb6f
|
|
| MD5 |
116d2e9af4c35d9921c883b234563f05
|
|
| BLAKE2b-256 |
9c7c3901b35ed856329bf98e84da8e5e0b4d899ea0027eee222f1be42a24ff3f
|
File details
Details for the file roman-5.2-py3-none-any.whl.
File metadata
- Download URL: roman-5.2-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89d3b47400388806d06ff77ea77c79ab080bc127820dea6bf34e1f1c1b8e676e
|
|
| MD5 |
c73213675ef092d7ec9695f8d92965a4
|
|
| BLAKE2b-256 |
1014ea3cdd7276fcd731a9003fe4abeb6b395a38110ddff6a6a509f4ee00f741
|