pywordsegment


Namepywordsegment JSON
Version 0.4.3 PyPI version JSON
download
home_pagehttps://github.com/intsights/pywordsegment
SummaryConcatenated-word segmentation Python library written in Rust
upload_time2024-02-14 11:42:37
maintainerNone
docs_urlNone
authorGal Ben David <gal@intsights.com>
requires_python
licenseMIT
keywords word segment rust pyo3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <a href="https://github.com/intsights/pywordsegment">
        <img src="https://raw.githubusercontent.com/intsights/pywordsegment/master/images/logo.png" alt="Logo">
    </a>
    <h3 align="center">
        Concatenated-word segmentation Python library written in Rust
    </h3>
</p>


![license](https://img.shields.io/badge/MIT-License-blue)
![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)
![OS](https://img.shields.io/badge/OS-Mac%20%7C%20Linux%20%7C%20Windows-blue)
![Build](https://github.com/intsights/pywordsegment/workflows/Build/badge.svg)
[![PyPi](https://img.shields.io/pypi/v/pywordsegment.svg)](https://pypi.org/project/pywordsegment/)

## Table of Contents

- [Table of Contents](#table-of-contents)
- [About The Project](#about-the-project)
  - [Built With](#built-with)
  - [Installation](#installation)
- [Usage](#usage)
- [License](#license)
- [Contact](#contact)


## About The Project

A fast concatenated-word segmentation library written in Rust, inspired by [wordninja](https://github.com/keredson/wordninja) and [wordsegment](https://github.com/grantjenks/python-wordsegment). The binding uses [pyo3](https://github.com/PyO3/pyo3) to interact with the rust package.


### Built With

* [pyo3](https://github.com/PyO3/pyo3)


### Installation

```sh
pip3 install pywordsegment
```


## Usage

```python
import pywordsegment

# The internal UNIGRAMS & BIGRAMS corpuses are lazy initialized
# once per the whole module. Multiple WordSegmenter instances would
# not create new dictionaries.

# Segments a word to its parts
pywordsegment.WordSegmenter.segment(
    text="theusashops",
)
# ["the", "usa", "shops"]


# This function checks whether the substring exists as a whole segment
# inside text.
pywordsegment.WordSegmenter.exist_as_segment(
    substring="inter",
    text="internationalairport",
)
# False

pywordsegment.WordSegmenter.exist_as_segment(
    substring="inter",
    text="intermilan",
)
# True
```


## License

Distributed under the MIT License. See `LICENSE` for more information.


## Contact

Gal Ben David - gal@intsights.com

Project Link: [https://github.com/intsights/pywordsegment](https://github.com/intsights/pywordsegment)


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/intsights/pywordsegment",
    "name": "pywordsegment",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": null,
    "keywords": "word,segment,rust,pyo3",
    "author": "Gal Ben David <gal@intsights.com>",
    "author_email": "Gal Ben David <gal@intsights.com>",
    "download_url": null,
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/intsights/pywordsegment\">\n        <img src=\"https://raw.githubusercontent.com/intsights/pywordsegment/master/images/logo.png\" alt=\"Logo\">\n    </a>\n    <h3 align=\"center\">\n        Concatenated-word segmentation Python library written in Rust\n    </h3>\n</p>\n\n\n![license](https://img.shields.io/badge/MIT-License-blue)\n![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)\n![OS](https://img.shields.io/badge/OS-Mac%20%7C%20Linux%20%7C%20Windows-blue)\n![Build](https://github.com/intsights/pywordsegment/workflows/Build/badge.svg)\n[![PyPi](https://img.shields.io/pypi/v/pywordsegment.svg)](https://pypi.org/project/pywordsegment/)\n\n## Table of Contents\n\n- [Table of Contents](#table-of-contents)\n- [About The Project](#about-the-project)\n  - [Built With](#built-with)\n  - [Installation](#installation)\n- [Usage](#usage)\n- [License](#license)\n- [Contact](#contact)\n\n\n## About The Project\n\nA fast concatenated-word segmentation library written in Rust, inspired by [wordninja](https://github.com/keredson/wordninja) and [wordsegment](https://github.com/grantjenks/python-wordsegment). The binding uses [pyo3](https://github.com/PyO3/pyo3) to interact with the rust package.\n\n\n### Built With\n\n* [pyo3](https://github.com/PyO3/pyo3)\n\n\n### Installation\n\n```sh\npip3 install pywordsegment\n```\n\n\n## Usage\n\n```python\nimport pywordsegment\n\n# The internal UNIGRAMS & BIGRAMS corpuses are lazy initialized\n# once per the whole module. Multiple WordSegmenter instances would\n# not create new dictionaries.\n\n# Segments a word to its parts\npywordsegment.WordSegmenter.segment(\n    text=\"theusashops\",\n)\n# [\"the\", \"usa\", \"shops\"]\n\n\n# This function checks whether the substring exists as a whole segment\n# inside text.\npywordsegment.WordSegmenter.exist_as_segment(\n    substring=\"inter\",\n    text=\"internationalairport\",\n)\n# False\n\npywordsegment.WordSegmenter.exist_as_segment(\n    substring=\"inter\",\n    text=\"intermilan\",\n)\n# True\n```\n\n\n## License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n\n## Contact\n\nGal Ben David - gal@intsights.com\n\nProject Link: [https://github.com/intsights/pywordsegment](https://github.com/intsights/pywordsegment)\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Concatenated-word segmentation Python library written in Rust",
    "version": "0.4.3",
    "project_urls": {
        "Homepage": "https://github.com/intsights/pywordsegment",
        "Source Code": "https://github.com/intsights/pywordsegment"
    },
    "split_keywords": [
        "word",
        "segment",
        "rust",
        "pyo3"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba40969e9d7d424ede6986a85ecbee72820039596656f189ec00da8bfa86f18a",
                "md5": "8f9e8e6304712989545d38e986c6e2a4",
                "sha256": "82cb6bdd41379cd557bbd72115424c3bfd8d42e90b644de47ac6156e730f0cb5"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f9e8e6304712989545d38e986c6e2a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 9653609,
            "upload_time": "2024-02-14T11:42:37",
            "upload_time_iso_8601": "2024-02-14T11:42:37.988333Z",
            "url": "https://files.pythonhosted.org/packages/ba/40/969e9d7d424ede6986a85ecbee72820039596656f189ec00da8bfa86f18a/pywordsegment-0.4.3-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c3534c5308b6849651ea5c1e79f5ff506fe420bdd0f48e3a3ce7013ff2ffbe6",
                "md5": "5b6d2ccd91ee45ef5051d861e6900006",
                "sha256": "64b334a66b915bc386c93f50f1be9d39406d59aa9736128f30cec958fe4ac736"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5b6d2ccd91ee45ef5051d861e6900006",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 9641851,
            "upload_time": "2024-02-14T11:43:17",
            "upload_time_iso_8601": "2024-02-14T11:43:17.661331Z",
            "url": "https://files.pythonhosted.org/packages/7c/35/34c5308b6849651ea5c1e79f5ff506fe420bdd0f48e3a3ce7013ff2ffbe6/pywordsegment-0.4.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e14a9f0db6cafb559e95745d46388975660265a31a471dbb8e89c48b1d7130f",
                "md5": "57ca8cd623cfcad2a41e86fea5a13e77",
                "sha256": "4a013b1b1056f8f9124481ef18c608b12045115fe512e8eab736f075476d7fa5"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57ca8cd623cfcad2a41e86fea5a13e77",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 9674849,
            "upload_time": "2024-02-14T11:42:30",
            "upload_time_iso_8601": "2024-02-14T11:42:30.767574Z",
            "url": "https://files.pythonhosted.org/packages/5e/14/a9f0db6cafb559e95745d46388975660265a31a471dbb8e89c48b1d7130f/pywordsegment-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76642205fb5307ecaf0f42b0b10e4fe6e0ccfed1bc3183eb2c24b1f8390f06cf",
                "md5": "6b4d94f0e224324beb41d70c4495fb0e",
                "sha256": "62dadee684ab40090bbdf96dd548c6e1b8e17254360d23494bd7e68b56c37eac"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6b4d94f0e224324beb41d70c4495fb0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 9580343,
            "upload_time": "2024-02-14T11:42:26",
            "upload_time_iso_8601": "2024-02-14T11:42:26.006804Z",
            "url": "https://files.pythonhosted.org/packages/76/64/2205fb5307ecaf0f42b0b10e4fe6e0ccfed1bc3183eb2c24b1f8390f06cf/pywordsegment-0.4.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f62db0daaa48ad73fd28c7b7c69b0251000b717f1984ec29b44d506981e95e52",
                "md5": "c993ae922fa66b17aa9b048bd1fbcee8",
                "sha256": "a12be14c5fe9cf60b0cb37187a2b4ab93164c6096cbe522bc25be83fce59d6f2"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c993ae922fa66b17aa9b048bd1fbcee8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 9653607,
            "upload_time": "2024-02-14T11:43:01",
            "upload_time_iso_8601": "2024-02-14T11:43:01.865981Z",
            "url": "https://files.pythonhosted.org/packages/f6/2d/b0daaa48ad73fd28c7b7c69b0251000b717f1984ec29b44d506981e95e52/pywordsegment-0.4.3-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0005c0287f48ca6f484ffe8f718efe804858041aac2eeb5a03e6b267f4521703",
                "md5": "7f31cd94a48de128b30cdf88105f6374",
                "sha256": "52e85ce00c09a5bbc7eb4a375ac8a54d99e30abd7e6f1b110277ce1a4de52952"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7f31cd94a48de128b30cdf88105f6374",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 9641852,
            "upload_time": "2024-02-14T11:43:24",
            "upload_time_iso_8601": "2024-02-14T11:43:24.743115Z",
            "url": "https://files.pythonhosted.org/packages/00/05/c0287f48ca6f484ffe8f718efe804858041aac2eeb5a03e6b267f4521703/pywordsegment-0.4.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55a8ca3c4b614defc62d65808e7c604f8516f321a1a0805b3b712abc80d7bcd6",
                "md5": "fa9924c9b48d32587491d31ad8b13970",
                "sha256": "1505fa8db755cac4e7bc103cc9d13cc48a7e9585a65d54447067bd3c3e23d240"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa9924c9b48d32587491d31ad8b13970",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 9674848,
            "upload_time": "2024-02-14T11:42:28",
            "upload_time_iso_8601": "2024-02-14T11:42:28.402638Z",
            "url": "https://files.pythonhosted.org/packages/55/a8/ca3c4b614defc62d65808e7c604f8516f321a1a0805b3b712abc80d7bcd6/pywordsegment-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e129f3f6f282f272a3261df6f73e7d1a52a5025b383ed288b9cbef3f37ac7ee",
                "md5": "0547613c35e38e4da6c38694de4dfdab",
                "sha256": "95136eb3101f484faeb762d353036531f6124c8f8bec17d8109f02b1d3516594"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0547613c35e38e4da6c38694de4dfdab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 9580350,
            "upload_time": "2024-02-14T11:42:58",
            "upload_time_iso_8601": "2024-02-14T11:42:58.143028Z",
            "url": "https://files.pythonhosted.org/packages/1e/12/9f3f6f282f272a3261df6f73e7d1a52a5025b383ed288b9cbef3f37ac7ee/pywordsegment-0.4.3-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "203c7173e57883fc7587ba9e35875fbedf68df0c2320d5eb0aef95f3b5e24a8c",
                "md5": "bcc552c08a3858babf0df463dff4b0cc",
                "sha256": "99f53e061aed13282c2db07b460230987070c01d3da743221c32355748a47f39"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp37-cp37m-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bcc552c08a3858babf0df463dff4b0cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 9652834,
            "upload_time": "2024-02-14T11:42:17",
            "upload_time_iso_8601": "2024-02-14T11:42:17.133808Z",
            "url": "https://files.pythonhosted.org/packages/20/3c/7173e57883fc7587ba9e35875fbedf68df0c2320d5eb0aef95f3b5e24a8c/pywordsegment-0.4.3-cp37-cp37m-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e6fc84123f7a8c17cbd770d0e9754624e1f86cec4bed1182d637a80b6ece571",
                "md5": "788a784b6acd7289c05ad9aae0072241",
                "sha256": "4765d31d4c7c4ea294fc51ca918995204fbb175e05864bda884ead247d338d0f"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "788a784b6acd7289c05ad9aae0072241",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 9641105,
            "upload_time": "2024-02-14T11:42:35",
            "upload_time_iso_8601": "2024-02-14T11:42:35.312246Z",
            "url": "https://files.pythonhosted.org/packages/7e/6f/c84123f7a8c17cbd770d0e9754624e1f86cec4bed1182d637a80b6ece571/pywordsegment-0.4.3-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "134cf5abefefa0f810300c736b95122776029bd85d77648f22b2fa99fd0be13e",
                "md5": "84a0a4a4d4a4e724688c11b2f4739446",
                "sha256": "e5d07c0845d71faa602872c3e84deb27b625b2811aa409ed8a1fa6fcfe0339b8"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84a0a4a4d4a4e724688c11b2f4739446",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 9673842,
            "upload_time": "2024-02-14T11:42:31",
            "upload_time_iso_8601": "2024-02-14T11:42:31.682631Z",
            "url": "https://files.pythonhosted.org/packages/13/4c/f5abefefa0f810300c736b95122776029bd85d77648f22b2fa99fd0be13e/pywordsegment-0.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca2bd34c3f8e67e4b8641a1f6da87b78e6ffa5f97561ae9003763c5849505855",
                "md5": "f7e20c7842cdc29f3d6b3c177922f81a",
                "sha256": "cfa950833fdee4b9be9afdda2e542f3cba727eab80c101e14cc6101df8213da7"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f7e20c7842cdc29f3d6b3c177922f81a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 9579675,
            "upload_time": "2024-02-14T11:42:20",
            "upload_time_iso_8601": "2024-02-14T11:42:20.731760Z",
            "url": "https://files.pythonhosted.org/packages/ca/2b/d34c3f8e67e4b8641a1f6da87b78e6ffa5f97561ae9003763c5849505855/pywordsegment-0.4.3-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1dc7c4fffe87c3d3adbfbf9d9dbc97a8c41437307643dc6eb2e6fee72053222",
                "md5": "bcbb76db979bb6279515801c62f62b58",
                "sha256": "423b4b19c512432c3f6dd469fa56720ab5e612f04289eb0b172f40ed71127f5b"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp38-cp38-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bcbb76db979bb6279515801c62f62b58",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 9652829,
            "upload_time": "2024-02-14T11:42:23",
            "upload_time_iso_8601": "2024-02-14T11:42:23.984837Z",
            "url": "https://files.pythonhosted.org/packages/d1/dc/7c4fffe87c3d3adbfbf9d9dbc97a8c41437307643dc6eb2e6fee72053222/pywordsegment-0.4.3-cp38-cp38-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b8296bd1d6006a7b2f10ce558175d424e87d3504f265f17679408bf36c5ae20",
                "md5": "3714277544dba80207ae4a51a4454848",
                "sha256": "e80447c683501eee5e612990c8ad26329e2997adf65f85a6a07acb0a3c8c940d"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3714277544dba80207ae4a51a4454848",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 9641093,
            "upload_time": "2024-02-14T11:42:43",
            "upload_time_iso_8601": "2024-02-14T11:42:43.870568Z",
            "url": "https://files.pythonhosted.org/packages/0b/82/96bd1d6006a7b2f10ce558175d424e87d3504f265f17679408bf36c5ae20/pywordsegment-0.4.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6accb3317463991756ba2d38e7fdff56d527ff826559fc9c3997ae3431975ffa",
                "md5": "d0b3301eb37d5274a00a18ffff6c9cf1",
                "sha256": "777ecc405a68b97ef4c33e14f37a03c405491a65cc927d81f55dbeef21adc83d"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d0b3301eb37d5274a00a18ffff6c9cf1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 9673836,
            "upload_time": "2024-02-14T11:42:34",
            "upload_time_iso_8601": "2024-02-14T11:42:34.085471Z",
            "url": "https://files.pythonhosted.org/packages/6a/cc/b3317463991756ba2d38e7fdff56d527ff826559fc9c3997ae3431975ffa/pywordsegment-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d54ab63e12e2c2e03acb93c9261b152209e0f2f4641f123404aa0266dcc3e7f",
                "md5": "60901da75d62ef7e84afe5ce1048c00c",
                "sha256": "8b686e43fa390cd9ff7ccabd1bd100217bf713c59f73f40e9f896e4826f227d9"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "60901da75d62ef7e84afe5ce1048c00c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 9579721,
            "upload_time": "2024-02-14T11:42:50",
            "upload_time_iso_8601": "2024-02-14T11:42:50.600019Z",
            "url": "https://files.pythonhosted.org/packages/8d/54/ab63e12e2c2e03acb93c9261b152209e0f2f4641f123404aa0266dcc3e7f/pywordsegment-0.4.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7bd3c73e876971bb5310560cd1725333045109149736f6a87f42dec3813b5c9",
                "md5": "464d54fbd9443e924ad0908489f5d2ca",
                "sha256": "b044a381aa0826798a204dab0477347c813feeb56a3a496d9d7242d5094839a2"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp39-cp39-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "464d54fbd9443e924ad0908489f5d2ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 9653632,
            "upload_time": "2024-02-14T11:42:37",
            "upload_time_iso_8601": "2024-02-14T11:42:37.611915Z",
            "url": "https://files.pythonhosted.org/packages/c7/bd/3c73e876971bb5310560cd1725333045109149736f6a87f42dec3813b5c9/pywordsegment-0.4.3-cp39-cp39-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38d0797a68001ce6ccff44d94da891792280c5a81fa46177a28b7f1a566b1191",
                "md5": "4b7a77d609ad510e1cc301b957f21022",
                "sha256": "b3d13c22732d952a90e0d1c5200aca7bf81aa1036a9abe2bb0cf20435c26b170"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4b7a77d609ad510e1cc301b957f21022",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 9641778,
            "upload_time": "2024-02-14T11:43:04",
            "upload_time_iso_8601": "2024-02-14T11:43:04.472216Z",
            "url": "https://files.pythonhosted.org/packages/38/d0/797a68001ce6ccff44d94da891792280c5a81fa46177a28b7f1a566b1191/pywordsegment-0.4.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa5674610afff5ab01cda688ee4f2abb7e8c9a3ec0ddec5e478fe3d4f26cfcc5",
                "md5": "5be38faa151c65811c179a8028a2af08",
                "sha256": "e2b3698bb72b6882044c5e23aedb2b6cbf28294a26a4670afb543c2e6516f629"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5be38faa151c65811c179a8028a2af08",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 9674860,
            "upload_time": "2024-02-14T11:42:32",
            "upload_time_iso_8601": "2024-02-14T11:42:32.437461Z",
            "url": "https://files.pythonhosted.org/packages/aa/56/74610afff5ab01cda688ee4f2abb7e8c9a3ec0ddec5e478fe3d4f26cfcc5/pywordsegment-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81cbf0426a59feff1e654321ea5276531212ecad73d47562dfbf098554a52f43",
                "md5": "3f89c082ed1f0dfb91347c55f91aa688",
                "sha256": "b4c4fedbda9e15e456ac0d1553fc28dad5573de44a7b32847a2d362a1253c9cd"
            },
            "downloads": -1,
            "filename": "pywordsegment-0.4.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3f89c082ed1f0dfb91347c55f91aa688",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 9580314,
            "upload_time": "2024-02-14T11:42:44",
            "upload_time_iso_8601": "2024-02-14T11:42:44.786959Z",
            "url": "https://files.pythonhosted.org/packages/81/cb/f0426a59feff1e654321ea5276531212ecad73d47562dfbf098554a52f43/pywordsegment-0.4.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-14 11:42:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "intsights",
    "github_project": "pywordsegment",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pywordsegment"
}
        
Elapsed time: 0.19035s