Skip to content

Latest commit

 

History

History
49 lines (46 loc) · 1.15 KB

README.md

File metadata and controls

49 lines (46 loc) · 1.15 KB

check update.md for info

jps

A simple Python Program that translate EN spelling into JP the project comes with three different types of running it

  1. as a pkg aka module 2. Source code 3. The already built file which is jps .exe

1. as a pkg aka module (default)

  • you can download in the main branch

examples

import jpspkg
print(jpspkg.hiragana("ko n ni chi wa"))

if you wanna use both

or

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

2. using the reverse method to translate from jp 2 en

examples

import reversepkg
print(reversepkg.hiragana("こんにちは"))

if you wanna use both

or

from reversepkg import hiragana
print(hiragana("こんにちは"))

if you want to use hiragana only

from reversepkg import katakana
print(katakana("コンニチワ"))

if you like this repo Dont forget to give it a star Star