isopsephism

Find the numerical value of words.


License
Apache-2.0
Install
pip install isopsephism==0.1

Documentation

isopsephism

PyPI Tests Changelog License

Find the numerical value of words.

Installation

Install this library using pip:

pip install isopsephism

Usage

from isopsephism.isopsephism import isopsephy
print(isopsephy.convert_word_to_num("ΚΟΥΡΑΙ"))
#prints 601

Development

To contribute to this library, first checkout the code. Then create a new virtual environment:

cd isopsephism
python -m venv venv
source venv/bin/activate

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest