lindera-py


Namelindera-py JSON
Version 0.45.0 PyPI version JSON
download
home_pagehttps://github.com/lindera-morphology/lindera-py
SummaryPython binding for Lindera.
upload_time2025-08-02 14:18:51
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseMIT
keywords morphological analysis library python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # lindera-py

Python binding for [Lindera](https://github.com/lindera/lindera), a Japanese morphological analysis engine.

## Install project dependencies

- pyenv : <https://github.com/pyenv/pyenv?tab=readme-ov-file#installation>
- Poetry : <https://python-poetry.org/docs/#installation>
- Rust : <https://www.rust-lang.org/tools/install>

## Install Python

```shell
# Install Python
% pyenv install 3.13.5
```

## Setup repository and activate virtual environment

```shell
# Clone lindera-py project repository
% git clone git@github.com:lindera/lindera-py.git
% cd lindera-py

# Set Python version for this project
% pyenv local 3.12.3

# Make Python virtual environment
% python -m venv .venv

# Activate Python virtual environment
% source .venv/bin/activate

# Initialize lindera-py project
(.venv) % make init
```

## Install lindera-py as a library in the virtual environment

This command takes a long time because it builds a library that includes all the dictionaries.

```shell
(.venv) % make maturin-develop
```

## Example code

```python
from lindera_py import Segmenter, Tokenizer, load_dictionary


def main():
    # load the dictionary
    dictionary = load_dictionary("ipadic")

    # create a segmenter
    segmenter = Segmenter("normal", dictionary)

    # create a tokenizer
    tokenizer = Tokenizer(segmenter)

    text = "関西国際空港限定トートバッグを東京スカイツリーの最寄り駅であるとうきょうスカイツリー駅で買う"
    print(f"text: {text}\n")

    # tokenize the text
    tokens = tokenizer.tokenize(text)

    for token in tokens:
        print(token.text)


if __name__ == "__main__":
    main()
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lindera-morphology/lindera-py",
    "name": "lindera-py",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "morphological, analysis, library, python",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/50/dc/2a01e68fa03dd6354e2de177c42901f2f3e1d031797c0ffc12e138307b66/lindera_py-0.45.0.tar.gz",
    "platform": null,
    "description": "# lindera-py\n\nPython binding for [Lindera](https://github.com/lindera/lindera), a Japanese morphological analysis engine.\n\n## Install project dependencies\n\n- pyenv : <https://github.com/pyenv/pyenv?tab=readme-ov-file#installation>\n- Poetry : <https://python-poetry.org/docs/#installation>\n- Rust : <https://www.rust-lang.org/tools/install>\n\n## Install Python\n\n```shell\n# Install Python\n% pyenv install 3.13.5\n```\n\n## Setup repository and activate virtual environment\n\n```shell\n# Clone lindera-py project repository\n% git clone git@github.com:lindera/lindera-py.git\n% cd lindera-py\n\n# Set Python version for this project\n% pyenv local 3.12.3\n\n# Make Python virtual environment\n% python -m venv .venv\n\n# Activate Python virtual environment\n% source .venv/bin/activate\n\n# Initialize lindera-py project\n(.venv) % make init\n```\n\n## Install lindera-py as a library in the virtual environment\n\nThis command takes a long time because it builds a library that includes all the dictionaries.\n\n```shell\n(.venv) % make maturin-develop\n```\n\n## Example code\n\n```python\nfrom lindera_py import Segmenter, Tokenizer, load_dictionary\n\n\ndef main():\n    # load the dictionary\n    dictionary = load_dictionary(\"ipadic\")\n\n    # create a segmenter\n    segmenter = Segmenter(\"normal\", dictionary)\n\n    # create a tokenizer\n    tokenizer = Tokenizer(segmenter)\n\n    text = \"\u95a2\u897f\u56fd\u969b\u7a7a\u6e2f\u9650\u5b9a\u30c8\u30fc\u30c8\u30d0\u30c3\u30b0\u3092\u6771\u4eac\u30b9\u30ab\u30a4\u30c4\u30ea\u30fc\u306e\u6700\u5bc4\u308a\u99c5\u3067\u3042\u308b\u3068\u3046\u304d\u3087\u3046\u30b9\u30ab\u30a4\u30c4\u30ea\u30fc\u99c5\u3067\u8cb7\u3046\"\n    print(f\"text: {text}\\n\")\n\n    # tokenize the text\n    tokens = tokenizer.tokenize(text)\n\n    for token in tokens:\n        print(token.text)\n\n\nif __name__ == \"__main__\":\n    main()\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python binding for Lindera.",
    "version": "0.45.0",
    "project_urls": {
        "Homepage": "https://github.com/lindera-morphology/lindera-py",
        "Source Code": "https://github.com/lindera-morphology/lindera-py"
    },
    "split_keywords": [
        "morphological",
        " analysis",
        " library",
        " python"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30068497e918ced8a6faea97d0b510b126e8cd00084dc526bface87be70e45c0",
                "md5": "d76c0489ff86ef25be94eb0154c8874d",
                "sha256": "2d6a5a550cf54d0e10fbc11b816a605e316c3806a5931d666c8e8968041d5a35"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d76c0489ff86ef25be94eb0154c8874d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 41832440,
            "upload_time": "2025-08-02T14:17:21",
            "upload_time_iso_8601": "2025-08-02T14:17:21.547963Z",
            "url": "https://files.pythonhosted.org/packages/30/06/8497e918ced8a6faea97d0b510b126e8cd00084dc526bface87be70e45c0/lindera_py-0.45.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ecae043ff6fcb9fcc9b2e0c893a06a970f43b4b2d6f7e95458d96e1227419b6e",
                "md5": "481b03112d9a25c216c2d3696608bdb4",
                "sha256": "afa645ea8b568ea4d8363d4739269009fd17757b265d938cb7201f5da6b252cd"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "481b03112d9a25c216c2d3696608bdb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 41907788,
            "upload_time": "2025-08-02T14:17:55",
            "upload_time_iso_8601": "2025-08-02T14:17:55.207045Z",
            "url": "https://files.pythonhosted.org/packages/ec/ae/043ff6fcb9fcc9b2e0c893a06a970f43b4b2d6f7e95458d96e1227419b6e/lindera_py-0.45.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65ab282abae8d1e3762905d11eecd7ebb3f18c1d144ddaca85ecb9ab7bb0e5df",
                "md5": "e8f9b3ea0e69ebc7a065ab6e58699c3d",
                "sha256": "d0065f1ea49521f766f23df536675cca08bc76880372eca59fba049b0e98151f"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e8f9b3ea0e69ebc7a065ab6e58699c3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 41522287,
            "upload_time": "2025-08-02T14:18:37",
            "upload_time_iso_8601": "2025-08-02T14:18:37.257729Z",
            "url": "https://files.pythonhosted.org/packages/65/ab/282abae8d1e3762905d11eecd7ebb3f18c1d144ddaca85ecb9ab7bb0e5df/lindera_py-0.45.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df87364e32958e324d08b122c0acc28de592b197ac49f375767c3491efc2ef4d",
                "md5": "50c9632396504f84d0d5c40178c42cda",
                "sha256": "858aa7eff011cee9a642308be0c8f9bc6945b040d54cd49d532aa2676b4e32b4"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50c9632396504f84d0d5c40178c42cda",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 41740953,
            "upload_time": "2025-08-02T14:18:29",
            "upload_time_iso_8601": "2025-08-02T14:18:29.071963Z",
            "url": "https://files.pythonhosted.org/packages/df/87/364e32958e324d08b122c0acc28de592b197ac49f375767c3491efc2ef4d/lindera_py-0.45.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7975d49ab52c7e05a690aea12a034c86459bfd31ff3e1fb822a896fdc4522f4d",
                "md5": "14bcadd6aeac3e68beb09322766605d2",
                "sha256": "ca861a06f2128949605c40fa489f6950a9b4913671b9ca39f128834a1dda7479"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "14bcadd6aeac3e68beb09322766605d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 41984711,
            "upload_time": "2025-08-02T14:18:20",
            "upload_time_iso_8601": "2025-08-02T14:18:20.649020Z",
            "url": "https://files.pythonhosted.org/packages/79/75/d49ab52c7e05a690aea12a034c86459bfd31ff3e1fb822a896fdc4522f4d/lindera_py-0.45.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5de6464b60d15c4c360f4f5611adb9280a752a6a8576871c83de45bee9bcfa2f",
                "md5": "dc10eb94736776156775c4d3e67d9b6f",
                "sha256": "892e3e0dd24d00c2658e1a776d47b7c82d64fc9dde5ae535156bf4ea67d6d970"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dc10eb94736776156775c4d3e67d9b6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 41835098,
            "upload_time": "2025-08-02T14:17:25",
            "upload_time_iso_8601": "2025-08-02T14:17:25.027154Z",
            "url": "https://files.pythonhosted.org/packages/5d/e6/464b60d15c4c360f4f5611adb9280a752a6a8576871c83de45bee9bcfa2f/lindera_py-0.45.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2586231fd5d600565d2f4f8348edf887855858a6da0ebc219f65fa17933f165",
                "md5": "0ccb14b0ccb68cce2b484fe83cd133f5",
                "sha256": "b01099b90c4a18bced3486c38cf2122107f7ae40ca8520b4272ee490f9dc6fde"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ccb14b0ccb68cce2b484fe83cd133f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 41908104,
            "upload_time": "2025-08-02T14:17:57",
            "upload_time_iso_8601": "2025-08-02T14:17:57.731987Z",
            "url": "https://files.pythonhosted.org/packages/b2/58/6231fd5d600565d2f4f8348edf887855858a6da0ebc219f65fa17933f165/lindera_py-0.45.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad0b810a4c125107a546c7ff0cedd5df72b5f1750e1fb3347109f560788373af",
                "md5": "d366cad9a6f5d6af4331420214c76018",
                "sha256": "32b78dd1fe5303c0db4f0fc52831a0fdc22a0d9fc5b5acf9540a16a59bb6a6c1"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d366cad9a6f5d6af4331420214c76018",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 41522217,
            "upload_time": "2025-08-02T14:18:40",
            "upload_time_iso_8601": "2025-08-02T14:18:40.788944Z",
            "url": "https://files.pythonhosted.org/packages/ad/0b/810a4c125107a546c7ff0cedd5df72b5f1750e1fb3347109f560788373af/lindera_py-0.45.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68371ee66cdb2f7d311a7778c59faa5329bb5fa355ec944d4cc1107e0bd20ff3",
                "md5": "b3b1a17d921a41d7ad572a7bbdcf3414",
                "sha256": "d16b629ef59a2be73637a0e0db1c2637adf466aa79dc052a2df5da444ccf8e1b"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3b1a17d921a41d7ad572a7bbdcf3414",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 41736097,
            "upload_time": "2025-08-02T14:18:31",
            "upload_time_iso_8601": "2025-08-02T14:18:31.988665Z",
            "url": "https://files.pythonhosted.org/packages/68/37/1ee66cdb2f7d311a7778c59faa5329bb5fa355ec944d4cc1107e0bd20ff3/lindera_py-0.45.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf6677af3157087dba1554449954356cfbbb3d7fae22ea84651beee890cfa418",
                "md5": "6499960f544d7278487877993fa1dba5",
                "sha256": "9d7113c335ca7402915cf024e189f3c1beb7a96f1ca7ffa628ebe2a4da252346"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6499960f544d7278487877993fa1dba5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 41980066,
            "upload_time": "2025-08-02T14:18:23",
            "upload_time_iso_8601": "2025-08-02T14:18:23.694443Z",
            "url": "https://files.pythonhosted.org/packages/bf/66/77af3157087dba1554449954356cfbbb3d7fae22ea84651beee890cfa418/lindera_py-0.45.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c988f6c8b3e616341a2fb2624950fb69296a60031d871ae1f0357bc6db35b9f",
                "md5": "904c7f29a17e86c18526d443beadfa53",
                "sha256": "e3cc54b90c1942296832fd04c2147bb290b01fa2d354a82704e0af8d96c3d431"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "904c7f29a17e86c18526d443beadfa53",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 41832993,
            "upload_time": "2025-08-02T14:17:28",
            "upload_time_iso_8601": "2025-08-02T14:17:28.008667Z",
            "url": "https://files.pythonhosted.org/packages/2c/98/8f6c8b3e616341a2fb2624950fb69296a60031d871ae1f0357bc6db35b9f/lindera_py-0.45.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58b72b18bbd99fe6bb50484c9dac705cae10c42cc78ff0cafddee5922900f102",
                "md5": "7b3ccc7297f593dd9d3cc42f8f5d697f",
                "sha256": "650794bc38b13c9cbb01efd398d23e45658ef1488c896fc1bccb0dcae6e1fe8c"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b3ccc7297f593dd9d3cc42f8f5d697f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 41907642,
            "upload_time": "2025-08-02T14:18:00",
            "upload_time_iso_8601": "2025-08-02T14:18:00.542934Z",
            "url": "https://files.pythonhosted.org/packages/58/b7/2b18bbd99fe6bb50484c9dac705cae10c42cc78ff0cafddee5922900f102/lindera_py-0.45.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffa54ca029122f77d50f063534c887280d2d9183b6fe6301aeec0c22d4dd3893",
                "md5": "b437b80ff9493af11a55d6b3d61918b7",
                "sha256": "cf49cd69305b4d4f47876cfd6f3900032e1d6702b9ed75abab187559cb53076e"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b437b80ff9493af11a55d6b3d61918b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 41522332,
            "upload_time": "2025-08-02T14:18:43",
            "upload_time_iso_8601": "2025-08-02T14:18:43.408715Z",
            "url": "https://files.pythonhosted.org/packages/ff/a5/4ca029122f77d50f063534c887280d2d9183b6fe6301aeec0c22d4dd3893/lindera_py-0.45.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ba90cc895b0bd7ca3feea9d8dc48293f2f4737886d191240a7366f895b0ff36",
                "md5": "556db674179e85307fdc00f90e77d890",
                "sha256": "0f1b907b7eaeb585efe63a8166840fda274a1e77e752ce18c82e51b3f483e704"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "556db674179e85307fdc00f90e77d890",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 41736053,
            "upload_time": "2025-08-02T14:18:34",
            "upload_time_iso_8601": "2025-08-02T14:18:34.815706Z",
            "url": "https://files.pythonhosted.org/packages/1b/a9/0cc895b0bd7ca3feea9d8dc48293f2f4737886d191240a7366f895b0ff36/lindera_py-0.45.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47900491d0082cab45c4ea81983e5ed4636a05f3486e20ba4985fa39d6799083",
                "md5": "ee5838e8fdfcfa639271e4eb0565ce47",
                "sha256": "ec4067ec92b17acd883742fb590947bf43c16b855240b6153fa00c6fe68a5cea"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ee5838e8fdfcfa639271e4eb0565ce47",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 41979207,
            "upload_time": "2025-08-02T14:18:26",
            "upload_time_iso_8601": "2025-08-02T14:18:26.354171Z",
            "url": "https://files.pythonhosted.org/packages/47/90/0491d0082cab45c4ea81983e5ed4636a05f3486e20ba4985fa39d6799083/lindera_py-0.45.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44bd6371f79d352a9f744d1ea34d0b13686c58b5f37399d0febc45af3798d904",
                "md5": "5cf8ad534a2b71a2fdbf19a3593e7116",
                "sha256": "b23e0e03c60089c6bd8ff597b1379e89bf52c98da5cecac903cc2c7155179517"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5cf8ad534a2b71a2fdbf19a3593e7116",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 41832055,
            "upload_time": "2025-08-02T14:17:30",
            "upload_time_iso_8601": "2025-08-02T14:17:30.605686Z",
            "url": "https://files.pythonhosted.org/packages/44/bd/6371f79d352a9f744d1ea34d0b13686c58b5f37399d0febc45af3798d904/lindera_py-0.45.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c69e231c654817952c8b527a78074ff3444cbdf0ff2216136e4769837201947",
                "md5": "ab37e39854d58954c793134f3686fb82",
                "sha256": "1a2e492a9822b0ace6c667cef7d535afed6e1f576d4e712a44626cfcfef60558"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab37e39854d58954c793134f3686fb82",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 41907234,
            "upload_time": "2025-08-02T14:18:03",
            "upload_time_iso_8601": "2025-08-02T14:18:03.086848Z",
            "url": "https://files.pythonhosted.org/packages/6c/69/e231c654817952c8b527a78074ff3444cbdf0ff2216136e4769837201947/lindera_py-0.45.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5600421f844043a6cba288b42d6f8b535cb2a6b99e7554cbe34e0c0a87d2d4c9",
                "md5": "294c16d910bbe30e5ac6132e88a17412",
                "sha256": "892a035ae6a2016744a9600e65c443dcab2a414649c1c1d89c18985109cedea0"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "294c16d910bbe30e5ac6132e88a17412",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 41833132,
            "upload_time": "2025-08-02T14:17:34",
            "upload_time_iso_8601": "2025-08-02T14:17:34.021861Z",
            "url": "https://files.pythonhosted.org/packages/56/00/421f844043a6cba288b42d6f8b535cb2a6b99e7554cbe34e0c0a87d2d4c9/lindera_py-0.45.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a312f9f29a5877ebb7c6066897569836b6b70faa99a4331410e7a7ffda6c1c0a",
                "md5": "1261f9bb7866b7a99d48800034d9db34",
                "sha256": "daf4ab9bff6b42c1f37671fdbeea80905cb770cd5a083337cf9481396606f35b"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1261f9bb7866b7a99d48800034d9db34",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 41521879,
            "upload_time": "2025-08-02T14:18:45",
            "upload_time_iso_8601": "2025-08-02T14:18:45.955198Z",
            "url": "https://files.pythonhosted.org/packages/a3/12/f9f29a5877ebb7c6066897569836b6b70faa99a4331410e7a7ffda6c1c0a/lindera_py-0.45.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fccf154953017d0daa7e6c7d0a2098ef926e39f509f213dce74cf208b1b40ff4",
                "md5": "cdc64e4f92c13b03e90f2f6d2c2d18d9",
                "sha256": "d854cb3e78471ead75213c905cb5628cc1fb5a8c923305337e24c1cdd8714050"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cdc64e4f92c13b03e90f2f6d2c2d18d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 41907868,
            "upload_time": "2025-08-02T14:18:06",
            "upload_time_iso_8601": "2025-08-02T14:18:06.327342Z",
            "url": "https://files.pythonhosted.org/packages/fc/cf/154953017d0daa7e6c7d0a2098ef926e39f509f213dce74cf208b1b40ff4/lindera_py-0.45.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d65f2209349bb9e584c8634a7423c8f77dda4c328cfec0baf2b1d99e808d63a4",
                "md5": "389cb59637e910495f2e88213df5b686",
                "sha256": "bd1fe1c1810bc73c29861144922fae92ef58d44edb206e1a1816b02b64e11bb4"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "389cb59637e910495f2e88213df5b686",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 41833387,
            "upload_time": "2025-08-02T14:17:36",
            "upload_time_iso_8601": "2025-08-02T14:17:36.899957Z",
            "url": "https://files.pythonhosted.org/packages/d6/5f/2209349bb9e584c8634a7423c8f77dda4c328cfec0baf2b1d99e808d63a4/lindera_py-0.45.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "609d30d61336d52da40f39338d3f8b691759b25d2c452995a466dffbb40ad269",
                "md5": "e9b1623179d2b31593abd58602175d58",
                "sha256": "b117772d7d354f836bf78655c8f30c015d5b42834f924ac20fd3691c5c05fc37"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e9b1623179d2b31593abd58602175d58",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 41833713,
            "upload_time": "2025-08-02T14:17:39",
            "upload_time_iso_8601": "2025-08-02T14:17:39.963814Z",
            "url": "https://files.pythonhosted.org/packages/60/9d/30d61336d52da40f39338d3f8b691759b25d2c452995a466dffbb40ad269/lindera_py-0.45.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca935788042f457ccf836d8bfa5a73c5610a9f8ac83ed8fb783faf034cdb276b",
                "md5": "8d5cbd37626c5b7b3b8ab6ff7d22ccb1",
                "sha256": "ae87b1e8fe6177a96864f2b4eb69670a0a0ad7e9159c3599a1db54ad7e0cb3a5"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d5cbd37626c5b7b3b8ab6ff7d22ccb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 41908878,
            "upload_time": "2025-08-02T14:18:09",
            "upload_time_iso_8601": "2025-08-02T14:18:09.191540Z",
            "url": "https://files.pythonhosted.org/packages/ca/93/5788042f457ccf836d8bfa5a73c5610a9f8ac83ed8fb783faf034cdb276b/lindera_py-0.45.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c942eb547c86267207fffb3aac160dc2d99e7e893fd29ec3d0ad79010bbb4f1c",
                "md5": "e8bc3505b2611b386f052266336705f7",
                "sha256": "5cd595c300e33cab256b729b1d9d2a254130c9261e65ec5eb58a18a764fedac9"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e8bc3505b2611b386f052266336705f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 41833874,
            "upload_time": "2025-08-02T14:17:42",
            "upload_time_iso_8601": "2025-08-02T14:17:42.806393Z",
            "url": "https://files.pythonhosted.org/packages/c9/42/eb547c86267207fffb3aac160dc2d99e7e893fd29ec3d0ad79010bbb4f1c/lindera_py-0.45.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4faacc63ef6661b4e84e62ac049eb131001c2f4e74f18cdfa73bb4421ecaccd7",
                "md5": "6a2f2d1f951571c234297a2db7262fe1",
                "sha256": "9324523dc4baa60b7ec2cd03c25b35dbf5d074e55aabc8e4221ef0cb7d3430c0"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a2f2d1f951571c234297a2db7262fe1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 41908695,
            "upload_time": "2025-08-02T14:18:12",
            "upload_time_iso_8601": "2025-08-02T14:18:12.264501Z",
            "url": "https://files.pythonhosted.org/packages/4f/aa/cc63ef6661b4e84e62ac049eb131001c2f4e74f18cdfa73bb4421ecaccd7/lindera_py-0.45.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "badeb2b3be2bf51554195d1b9b0e1223320af0e9b7dd59b16d669a8f18cff4b0",
                "md5": "32245afabb0b060b86dae79af8078b83",
                "sha256": "57346e86369a77895e497c5bb91439567c747130b9edc849f786701aaea97eb7"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "32245afabb0b060b86dae79af8078b83",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 41522697,
            "upload_time": "2025-08-02T14:18:49",
            "upload_time_iso_8601": "2025-08-02T14:18:49.050369Z",
            "url": "https://files.pythonhosted.org/packages/ba/de/b2b3be2bf51554195d1b9b0e1223320af0e9b7dd59b16d669a8f18cff4b0/lindera_py-0.45.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82dfb797ba8a00c39a340d7297a5a8f6b76e045685594456b5a0a7136fa0aecf",
                "md5": "2ed72a60693809846219fcc8edaf0ecf",
                "sha256": "79445f67ac5710591773742a81b4cc50e9d37651143b5c2d346986d4f93ae2fc"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2ed72a60693809846219fcc8edaf0ecf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 41835481,
            "upload_time": "2025-08-02T14:17:45",
            "upload_time_iso_8601": "2025-08-02T14:17:45.737592Z",
            "url": "https://files.pythonhosted.org/packages/82/df/b797ba8a00c39a340d7297a5a8f6b76e045685594456b5a0a7136fa0aecf/lindera_py-0.45.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a1d1d588512ec54c6feca120c60947d5e70e12a70911ca1279ec9b987c665d4",
                "md5": "a52df794bd01e37970b9d2bbd63a862c",
                "sha256": "8730607efaab63efd7d354151108b50d614f8feb426676f63c0ee673bffa6cb9"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a52df794bd01e37970b9d2bbd63a862c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 41909866,
            "upload_time": "2025-08-02T14:18:15",
            "upload_time_iso_8601": "2025-08-02T14:18:15.206281Z",
            "url": "https://files.pythonhosted.org/packages/0a/1d/1d588512ec54c6feca120c60947d5e70e12a70911ca1279ec9b987c665d4/lindera_py-0.45.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f52372eded314138d4b543fdb74c8c82e685b9287b9aa6d981c92d4d4f67d263",
                "md5": "e46f584a190c6dd403b25eb4c1ec7c4a",
                "sha256": "de8b3834441c300dc7eef1866b120e66880bd096a2f60d2cdd42bcc76a1df899"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e46f584a190c6dd403b25eb4c1ec7c4a",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": null,
            "size": 41835143,
            "upload_time": "2025-08-02T14:17:48",
            "upload_time_iso_8601": "2025-08-02T14:17:48.745142Z",
            "url": "https://files.pythonhosted.org/packages/f5/23/72eded314138d4b543fdb74c8c82e685b9287b9aa6d981c92d4d4f67d263/lindera_py-0.45.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66f6021b5df3d252386fb2f49f7f3bbe6b9d54862d7b287df54c368740d4fcb2",
                "md5": "c76df13306838d8f3c47c562e293ddef",
                "sha256": "dd3e77b76c24af68dc745a22900d8eb4c20198a5c12d55a57dfb7dd954f8c40a"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c76df13306838d8f3c47c562e293ddef",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": null,
            "size": 41909451,
            "upload_time": "2025-08-02T14:18:17",
            "upload_time_iso_8601": "2025-08-02T14:18:17.949959Z",
            "url": "https://files.pythonhosted.org/packages/66/f6/021b5df3d252386fb2f49f7f3bbe6b9d54862d7b287df54c368740d4fcb2/lindera_py-0.45.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2b815b818836f58d64deda61fe79fe28664e59ff4617dc9037f5f50b31f9dea",
                "md5": "d68852f63a3be62a2a797b5e3f3cfc53",
                "sha256": "f003627590ab9500453b1f25f703a2f427e681ea4633bf72178f6594a1775c64"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d68852f63a3be62a2a797b5e3f3cfc53",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 41835526,
            "upload_time": "2025-08-02T14:17:51",
            "upload_time_iso_8601": "2025-08-02T14:17:51.707400Z",
            "url": "https://files.pythonhosted.org/packages/d2/b8/15b818836f58d64deda61fe79fe28664e59ff4617dc9037f5f50b31f9dea/lindera_py-0.45.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50dc2a01e68fa03dd6354e2de177c42901f2f3e1d031797c0ffc12e138307b66",
                "md5": "1a931c56d6215c421f3b9ba60a3bd28f",
                "sha256": "9bc0be02c5ae4cc49ec9e7da55644e02244cb791b5bd8f72e608883316dfedb1"
            },
            "downloads": -1,
            "filename": "lindera_py-0.45.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1a931c56d6215c421f3b9ba60a3bd28f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 148590,
            "upload_time": "2025-08-02T14:18:51",
            "upload_time_iso_8601": "2025-08-02T14:18:51.302843Z",
            "url": "https://files.pythonhosted.org/packages/50/dc/2a01e68fa03dd6354e2de177c42901f2f3e1d031797c0ffc12e138307b66/lindera_py-0.45.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-02 14:18:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lindera-morphology",
    "github_project": "lindera-py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "lindera-py"
}
        
Elapsed time: 1.80155s