Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A tool to get the katakana reading of an alphabetical string.
Python 3 or higher is required.
python3 -m pip install -U alkana
$ git clone https://github.com/cod-sushi/alkana.py
$ cd alkana.py
$ python3 -m pip install -U .
import alkana
print(alkana.get_kana("Hello"))
print(alkana.get_kana("World"))
print(alkana.get_kana("abcdefg"))
Output of above example is:
ハロー
ワールド
None
If the reading is not exist, Returns None
.
$ alkana hello
ハロー
$ alkana world
ワールド
$ alkana abcdefg
If the reading is not exist, there is no output.
Alkana can extend the dictionary.
sample.csv
hogehoge,ホゲホゲ
piyopiyo,ピヨピヨ
...
import alkana
alkana.add_external_data('./sample.csv')
print(alkana.get_kana('hogehoge')) # ホゲホゲ
Alphabetical word - katakana dictionary's data is from bep-eng.dic
.
Bilingual Emacspeak Project (c) 1999-2002 Bilingual Emacspeak Project
GPLv2
FAQs
A tool to get the katakana reading of an alphabetical string.
We found that alkana demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.