SkillAgentSearch skills...

Roman

Integer to Roman numerals converter

Install / Use

/learn @zopefoundation/Roman
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

.. image:: https://github.com/zopefoundation/roman/actions/workflows/tests.yml/badge.svg :target: https://github.com/zopefoundation/roman/actions/workflows/tests.yml

.. image:: https://coveralls.io/repos/github/zopefoundation/roman/badge.svg?branch=master :target: https://coveralls.io/github/zopefoundation/roman?branch=master

.. image:: https://img.shields.io/pypi/v/roman.svg :target: https://pypi.org/project/roman/ :alt: Current version on PyPI

.. image:: https://img.shields.io/pypi/pyversions/roman.svg :target: https://pypi.org/project/roman/ :alt: Supported Python versions

roman

Small helper library to convert arabic to roman numerals.

There are two ways to use this library.

  1. Importing it into your application

.. code-block:: python

import roman

# to roman
number = int(input('> ')) # 10
print(roman.toRoman(number))

# from roman
number = input('> ') # X
print(roman.fromRoman(number))

2. roman CLI command

.. code-block:: bash

~$ roman 972
CMLXXII
# use the -r/--reverse to convert Roman numerals
~$ roman -r CMLXXII
972
# case insensitive
~$ roman -r cMlxxii
972

Related Skills

View on GitHub
GitHub Stars52
CategoryDevelopment
Updated21d ago
Forks13

Languages

Python

Security Score

80/100

Audited on Mar 10, 2026

No findings