# python-roman **Repository Path**: openkylin/python-roman ## Basic Information - **Project Name**: python-roman - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: openkylin/yangtze - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-10-08 - **Last Updated**: 2026-06-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README .. image:: https://travis-ci.org/zopefoundation/roman.svg?branch=master :target: https://travis-ci.org/zopefoundation/roman .. 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 conver Roman numerals ~$ roman -r CMLXXII 972 # case insensitive ~$ roman -r cMlxxii 972