-
Notifications
You must be signed in to change notification settings - Fork 3
Quick Start
Vinod M P edited this page Mar 11, 2022
·
2 revisions
Once installed, kavyanarthaki can be imported with import command.
import kavyanarthaki
You can also consider naming the import for easy referring.
import kavyanarthaki as kn
If you want to extract syllables (letters) from Malayalam text, you can use following command:
import kavyanarthaki as kn
s = kn.syllables(‘മധുരം മലയാളം’)
print(s)
If you want to identify guru and laghu in Malayalam text, you can use following command:
import kavyanarthaki as kn
gl = kn.gl(‘മധുരം മലയാളം’)
print(gl)