A simple Python Program that translate EN spelling into JP the project comes with three different types of running it
- as a pkg aka module
2. Source code3. The already built file which is jps .exe
- you can download in the main branch
import jpspkg
print(jpspkg.hiragana("ko n ni chi wa"))
if you wanna use both
from jpspkg import hiragana
print(hiragana("ko n ni chi wa"))
if you want to use hiragana only
from jpspkg import katakana
print(katakana("ko n ni chi wa"))
if you want to use katakana only
import reversepkg
print(reversepkg.hiragana("こんにちは"))
if you wanna use both
from reversepkg import hiragana
print(hiragana("こんにちは"))
if you want to use hiragana only
from reversepkg import katakana
print(katakana("コンニチワ"))