https://github.com/eggplants/wiredify
Convert japanese kana from ba-bi-bu-be-bo into va-vi-vu-ve-vo
https://github.com/eggplants/wiredify
Last synced: about 1 year ago
JSON representation
Convert japanese kana from ba-bi-bu-be-bo into va-vi-vu-ve-vo
- Host: GitHub
- URL: https://github.com/eggplants/wiredify
- Owner: eggplants
- License: mit
- Created: 2023-09-02T23:41:05.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2025-05-06T08:25:13.000Z (over 1 year ago)
- Last Synced: 2025-05-06T09:37:56.667Z (over 1 year ago)
- Language: Python
- Homepage: http://egpl.dev/wiredify/
- Size: 238 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# wiredify
[](
) [](
) [](
) [](
) [](
)
[ ](
)
Convert japanese kana from ba-bi-bu-be-bo into va-vi-vu-ve-vo.
## Install
```bash
pip install wiredify
```
## CLI
### Usage
```shellsession
$ wiredify <<< 'ジェネレーティブ・エーアイ'
ジェネレーティヴ・エーアイ
$ wiredify 'ジェネレーティブ・エーアイ'
ジェネレーティヴ・エーアイ
$ echo 'ジェネレーティブ・エーアイ' | wiredify
ジェネレーティヴ・エーアイ
$ wiredify
>>> ジェネレーティブ・エーアイ
ジェネレーティヴ・エーアイ
>>> ...[Press ctrl+d to exit]
$
```
### Help
```shellsession
$ wiredify -h
usage: wiredify [-h] [--invert] [-V] [text]
Convert japanese kana from ba-bi-bu-be-bo into va-vi-vu-ve-vo.
positional arguments:
text target text (default: None)
optional arguments:
-h, --help show this help message and exit
--invert enable dewiredify mode (default: False)
-V, --version show program's version number and exit
examples:
$ wiredify <<< 'ジェネレーティブ・エーアイ'
ジェネレーティヴ・エーアイ
$ wiredify 'ジェネレーティブ・エーアイ'
ジェネレーティヴ・エーアイ
$ echo 'ジェネレーティブ・エーアイ' | wiredify
ジェネレーティヴ・エーアイ
$ wiredify
>>> ジェネレーティブ・エーアイ
ジェネレーティヴ・エーアイ
>>> ...[Press ctrl+d to exit]
$
```
## Library
### Overview
```python
from wiredify import wiredify
wiredfied_text = wiredify("ジェネレーティヴ・エーアイ")
#=> "ジェネレーティブ・エーアイ"
```
## Other implementations
- Go: [eniehask/wiredify](https://github.com/eniehack/wiredify)
- Rust: [oageo/wiredify](https://github.com/oageo/wiredify)
## License
MIT