0 purchases
pyromanify 1.0.0
Installation
You can install py-romanify with pip:
$ pip install py-romanify
Or from git:
$ git clone https://github.com/peter-lisak/py-romanify.git
$ python setup.py install
Usage
Converting numbers from roman to arabic:
>>> import romanify
>>> romanify.roman2arabic("MMXV")
2015
From arabic to roman:
>>> import romanify
>>> romanify.arabic2roman(2015)
"MMXV"
Changelog
0.1.4 (2015-04-12)
Beta release
pylint (pep8)
doc strings
0.1.3 (2015-03-31)
unittest (extended)
python3+ support extended
bugfix - python3+: TypeError: can’t multiply sequence by non-int of type ‘float’
0.1.2 (2015-03-22)
unittest
bugfix - python3.4: AttributeError: ‘str_iterator’ object has no attribute ‘next’
lower case roman numerals
0.1.1 (2015-03-22)
renamed functions: arabic2romans -> arabit2roman, romans2arabic -> roman2arabic
doc
0.1.0 (2015-03-22)
Pre-release
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.