From 041f6a1293970280fc0e1c91f0f7970f541bbe3e Mon Sep 17 00:00:00 2001 From: VishnuSanal Date: Sun, 17 Dec 2023 18:35:06 +0530 Subject: [PATCH] list available maps --- libindic/payyans/core.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libindic/payyans/core.py b/libindic/payyans/core.py index 3f0a9a0..90ee24f 100755 --- a/libindic/payyans/core.py +++ b/libindic/payyans/core.py @@ -137,6 +137,10 @@ def ASCII2Unicode(self, ascii_text, font): return unicode_text # മതം മാറ്റി തിരിച്ചു കൊടുക്ക്വാ ! + def listAvailableMaps(self): + for key in maps.keys(): + print(key, end=", ") + def getVowelSign(self, vowel_letter, vowel_sign_letter): vowel = vowel_letter.encode('utf-8') vowel_sign = vowel_sign_letter.encode('utf-8')