An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# wiredify

[![PyPI version](

)](

) [![Maintainability](

)](

) [![pre-commit.ci status](

)](

) [![Test Coverage](

)](

) [![Code Coverage](

)](

)

[![ghcr latest](

) ![ghcr size](

)](

)

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