wiredify


Namewiredify JSON
Version 0.0.2 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_time2023-09-03 01:29:39
maintainer
docs_urlNone
authoreggplants
requires_python>=3.8,<4
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": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4",
    "maintainer_email": "",
    "keywords": "joke,cli,japanese",
    "author": "eggplants",
    "author_email": "w10776e8w@yahoo.co.jp",
    "download_url": "https://files.pythonhosted.org/packages/aa/b8/3eb80d55eb852707b0ca579c4ece20010545263f5c62ca6525c520c5a045/wiredify-0.0.2.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.0.2",
    "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": "83555cc0bcd4abd26aac4dd9bb74ed5254bbc44ec4cefcd9cef14a7055605962",
                "md5": "4e588bfffe2f5787fca72b487a3c6b39",
                "sha256": "816b84c221c046a80ee24a6a3ce230226075d40313461404f36420d8c135ee8c"
            },
            "downloads": -1,
            "filename": "wiredify-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4e588bfffe2f5787fca72b487a3c6b39",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4",
            "size": 4653,
            "upload_time": "2023-09-03T01:29:38",
            "upload_time_iso_8601": "2023-09-03T01:29:38.264737Z",
            "url": "https://files.pythonhosted.org/packages/83/55/5cc0bcd4abd26aac4dd9bb74ed5254bbc44ec4cefcd9cef14a7055605962/wiredify-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aab83eb80d55eb852707b0ca579c4ece20010545263f5c62ca6525c520c5a045",
                "md5": "8d917209129310f92283d0c477b9ceb7",
                "sha256": "c96ba2b47e41994b6b4d839a2a660269266b3f9553fb5133ff87774c4a634ea4"
            },
            "downloads": -1,
            "filename": "wiredify-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8d917209129310f92283d0c477b9ceb7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4",
            "size": 4005,
            "upload_time": "2023-09-03T01:29:39",
            "upload_time_iso_8601": "2023-09-03T01:29:39.671019Z",
            "url": "https://files.pythonhosted.org/packages/aa/b8/3eb80d55eb852707b0ca579c4ece20010545263f5c62ca6525c520c5a045/wiredify-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-03 01:29:39",
    "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.11318s