latinisation api
1.0.0
The APU to latinise non latin strings. For now, it only supports Armenian, but it will soon expand to other langugages too.
pip install latinisationfrom latinisation import armenian
armenian.armenian_latinisation(some_input)from latinisation import armenian
# Ask the user to input a sting of Armenian letters
some_input = input("Input some Armenian letters: ")
# Convert the user inputed sting to a string of latin letters using the API
armenian.armenian_latinisation(some_input)
# Print out the latinised version of the inputed string
print(some_input)