wiredify


Namewiredify JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/eggplants/wiredify
SummaryConvert japanese kana from ba-bi-bu-be-bo into va-vi-vu-ve-vo
upload_time2024-09-18 12:41:00
maintainerNone
docs_urlNone
authoreggplants
requires_python<4,>=3.8
licenseMIT
keywords joke cli japanese
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # wiredify

[![PyPI version](
  <https://badge.fury.io/py/wiredify.svg>
  )](
  <https://badge.fury.io/py/wiredify>
) [![Maintainability](
  <https://api.codeclimate.com/v1/badges/af70c14ac330cd2c86dc/maintainability>
  )](
  <https://codeclimate.com/github/eggplants/wiredify/maintainability>
) [![pre-commit.ci status](
  <https://results.pre-commit.ci/badge/github/eggplants/wiredify/master.svg>
  )](
  <https://results.pre-commit.ci/latest/github/eggplants/wiredify/master>
) [![Test Coverage](
  <https://api.codeclimate.com/v1/badges/af70c14ac330cd2c86dc/test_coverage>
  )](
  <https://codeclimate.com/github/eggplants/wiredify/test_coverage>
) [![Test](
  <https://github.com/eggplants/wiredify/actions/workflows/test.yml/badge.svg>
  )](
  <https://github.com/eggplants/wiredify/actions/workflows/test.yml>
)

[![ghcr latest](
  <https://ghcr-badge.deta.dev/eggplants/wiredify/latest_tag?trim=major&label=latest>
 ) ![ghcr size](
  <https://ghcr-badge.deta.dev/eggplants/wiredify/size>
)](
  <https://github.com/eggplants/wiredify/pkgs/container/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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/eggplants/wiredify",
    "name": "wiredify",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.8",
    "maintainer_email": null,
    "keywords": "joke, cli, japanese",
    "author": "eggplants",
    "author_email": "w10776e8w@yahoo.co.jp",
    "download_url": "https://files.pythonhosted.org/packages/89/ee/fde0408b0839afb7cbf75cfb6ecfe9326d6986539e2a80f310ea60668c7e/wiredify-0.1.0.tar.gz",
    "platform": null,
    "description": "# wiredify\n\n[![PyPI version](\n  <https://badge.fury.io/py/wiredify.svg>\n  )](\n  <https://badge.fury.io/py/wiredify>\n) [![Maintainability](\n  <https://api.codeclimate.com/v1/badges/af70c14ac330cd2c86dc/maintainability>\n  )](\n  <https://codeclimate.com/github/eggplants/wiredify/maintainability>\n) [![pre-commit.ci status](\n  <https://results.pre-commit.ci/badge/github/eggplants/wiredify/master.svg>\n  )](\n  <https://results.pre-commit.ci/latest/github/eggplants/wiredify/master>\n) [![Test Coverage](\n  <https://api.codeclimate.com/v1/badges/af70c14ac330cd2c86dc/test_coverage>\n  )](\n  <https://codeclimate.com/github/eggplants/wiredify/test_coverage>\n) [![Test](\n  <https://github.com/eggplants/wiredify/actions/workflows/test.yml/badge.svg>\n  )](\n  <https://github.com/eggplants/wiredify/actions/workflows/test.yml>\n)\n\n[![ghcr latest](\n  <https://ghcr-badge.deta.dev/eggplants/wiredify/latest_tag?trim=major&label=latest>\n ) ![ghcr size](\n  <https://ghcr-badge.deta.dev/eggplants/wiredify/size>\n)](\n  <https://github.com/eggplants/wiredify/pkgs/container/wiredify>\n)\n\nConvert japanese kana from ba-bi-bu-be-bo into va-vi-vu-ve-vo.\n\n## Install\n\n```bash\npip install wiredify\n```\n\n## CLI\n\n### Usage\n\n```shellsession\n$ wiredify <<< '\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30a2\u30a4'\n\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30f4\u30fb\u30a8\u30fc\u30a2\u30a4\n\n$ wiredify '\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30a2\u30a4'\n\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30f4\u30fb\u30a8\u30fc\u30a2\u30a4\n\n$ echo '\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30a2\u30a4' | wiredify\n\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30f4\u30fb\u30a8\u30fc\u30a2\u30a4\n\n$ wiredify\n>>> \u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30a2\u30a4\n\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30f4\u30fb\u30a8\u30fc\u30a2\u30a4\n>>> ...[Press ctrl+d to exit]\n$\n```\n\n### Help\n\n```shellsession\n$ wiredify -h\nusage: wiredify [-h] [--invert] [-V] [text]\n\nConvert japanese kana from ba-bi-bu-be-bo into va-vi-vu-ve-vo.\n\npositional arguments:\n  text           target text (default: None)\n\noptional arguments:\n  -h, --help     show this help message and exit\n  --invert       enable dewiredify mode (default: False)\n  -V, --version  show program's version number and exit\n\nexamples:\n  $ wiredify <<< '\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30a2\u30a4'\n  \u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30f4\u30fb\u30a8\u30fc\u30a2\u30a4\n\n  $ wiredify '\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30a2\u30a4'\n  \u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30f4\u30fb\u30a8\u30fc\u30a2\u30a4\n\n  $ echo '\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30a2\u30a4' | wiredify\n  \u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30f4\u30fb\u30a8\u30fc\u30a2\u30a4\n\n  $ wiredify\n  >>> \u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30a2\u30a4\n  \u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30f4\u30fb\u30a8\u30fc\u30a2\u30a4\n  >>> ...[Press ctrl+d to exit]\n  $\n```\n\n## Library\n\n### Overview\n\n```python\nfrom wiredify import wiredify\nwiredfied_text = wiredify(\"\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30f4\u30fb\u30a8\u30fc\u30a2\u30a4\")\n#=> \"\u30b8\u30a7\u30cd\u30ec\u30fc\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30a2\u30a4\"\n```\n\n## Other implementations\n\n- Go: [eniehask/wiredify](https://github.com/eniehack/wiredify)\n- Rust: [oageo/wiredify](https://github.com/oageo/wiredify)\n\n## License\n\nMIT\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Convert japanese kana from ba-bi-bu-be-bo into va-vi-vu-ve-vo",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/eggplants/wiredify",
        "Repository": "https://github.com/eggplants/wiredify"
    },
    "split_keywords": [
        "joke",
        " cli",
        " japanese"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc446d721ec5cf8840951727eedb611975778c2cb92410062dc3dba1077a6bb5",
                "md5": "ce6a2c661cd7bcc71fc6bdc01857b4e3",
                "sha256": "e08ea3d395f56fa3c1a913e8b1b3e78f2cdc0c0f9a43e671be23573ba9d620de"
            },
            "downloads": -1,
            "filename": "wiredify-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ce6a2c661cd7bcc71fc6bdc01857b4e3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.8",
            "size": 4639,
            "upload_time": "2024-09-18T12:40:59",
            "upload_time_iso_8601": "2024-09-18T12:40:59.160670Z",
            "url": "https://files.pythonhosted.org/packages/cc/44/6d721ec5cf8840951727eedb611975778c2cb92410062dc3dba1077a6bb5/wiredify-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89eefde0408b0839afb7cbf75cfb6ecfe9326d6986539e2a80f310ea60668c7e",
                "md5": "a53560c03abafed1d914e0afdf412065",
                "sha256": "db463359540c7b400e4fabe6640c366bbd23ff0f5a26306a56c0f3913abeedc1"
            },
            "downloads": -1,
            "filename": "wiredify-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a53560c03abafed1d914e0afdf412065",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.8",
            "size": 3991,
            "upload_time": "2024-09-18T12:41:00",
            "upload_time_iso_8601": "2024-09-18T12:41:00.096815Z",
            "url": "https://files.pythonhosted.org/packages/89/ee/fde0408b0839afb7cbf75cfb6ecfe9326d6986539e2a80f310ea60668c7e/wiredify-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-18 12:41:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "eggplants",
    "github_project": "wiredify",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "wiredify"
}
        
Elapsed time: 0.42567s