kytea


Namekytea JSON
Version 0.1.9 PyPI version JSON
download
home_pagehttps://github.com/chezou/Mykytea-python
SummaryA text analysis toolkit KyTea binding
upload_time2024-01-15 02:03:49
maintainer
docs_urlNone
authorAki Ariga
requires_python
licenseMIT license
keywords kytea nlp japanese morphological analyzer
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # KyTea wrapper for python

[![Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://www.patreon.com/chezou)

Mykytea-python is a python wrapper module for KyTea, a general text analysis toolkit.
KyTea is developed by KyTea Development Team.

Detailed information of KyTea can be found at
http://www.phontron.com/kytea

## Install Dependencies

You need to install KyTea before build.

## To install Mykytea-python, run

```sn
pip install kytea
```

## To build Mykytea-python, run (if you don't want to use `pip`)

```sh
make
```

If you want to install, run

```sh
sudo make install
```

If you fail to make, please try to install SWIG and run

```sh
swig -c++ -python -I/usr/local/include mykytea.i
```

Or if you still fail on Max OS X, run with some variables

```sh
$ ARCHFLAGS="-arch x86_64" CC=gcc CXX=g++ make
```

If you compiled kytea with clang, you need ARCHFLAGS only.

Or, you can use brew to install kytea.

```sh
brew install kytea
KYTEA_DIR=$(brew --prefix) make all
```

## How to use it?

Here is the example code to use Mykytea-python.

```python
import Mykytea

def showTags(t):
    for word in t:
        out = word.surface + "\t"
        for t1 in word.tag:
            for t2 in t1:
                for t3 in t2:
                    out = out + "/" + str(t3)
                out += "\t"
            out += "\t"
        print(out)

def list_tags(t):
    def convert(t2):
        return (t2[0], type(t2[1]))
    return [(word.surface, [[convert(t2) for t2 in t1] for t1 in word.tag]) for word in t]

# Pass arguments for KyTea as the following:
opt = "-model /usr/local/share/kytea/model.bin"
mk = Mykytea.Mykytea(opt)

s = "今日はいい天気です。"

# Fetch segmented words
for word in mk.getWS(s):
    print(word)

# Show analysis results
print(mk.getTagsToString(s))

# Fetch first best tag
t = mk.getTags(s)
showTags(t)

# Show all tags
tt = mk.getAllTags(s)
showTags(tt)
```

## License

MIT License

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/chezou/Mykytea-python",
    "name": "kytea",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "KyTea,NLP,Japanese morphological analyzer",
    "author": "Aki Ariga",
    "author_email": "chezou@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/bd/92/3a987ebc15180fdc8f69bf774ea9007e8f063949b229a432524e5aeed019/kytea-0.1.9.tar.gz",
    "platform": null,
    "description": "# KyTea wrapper for python\n\n[![Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://www.patreon.com/chezou)\n\nMykytea-python is a python wrapper module for KyTea, a general text analysis toolkit.\nKyTea is developed by KyTea Development Team.\n\nDetailed information of KyTea can be found at\nhttp://www.phontron.com/kytea\n\n## Install Dependencies\n\nYou need to install KyTea before build.\n\n## To install Mykytea-python, run\n\n```sn\npip install kytea\n```\n\n## To build Mykytea-python, run (if you don't want to use `pip`)\n\n```sh\nmake\n```\n\nIf you want to install, run\n\n```sh\nsudo make install\n```\n\nIf you fail to make, please try to install SWIG and run\n\n```sh\nswig -c++ -python -I/usr/local/include mykytea.i\n```\n\nOr if you still fail on Max OS X, run with some variables\n\n```sh\n$ ARCHFLAGS=\"-arch x86_64\" CC=gcc CXX=g++ make\n```\n\nIf you compiled kytea with clang, you need ARCHFLAGS only.\n\nOr, you can use brew to install kytea.\n\n```sh\nbrew install kytea\nKYTEA_DIR=$(brew --prefix) make all\n```\n\n## How to use it?\n\nHere is the example code to use Mykytea-python.\n\n```python\nimport Mykytea\n\ndef showTags(t):\n    for word in t:\n        out = word.surface + \"\\t\"\n        for t1 in word.tag:\n            for t2 in t1:\n                for t3 in t2:\n                    out = out + \"/\" + str(t3)\n                out += \"\\t\"\n            out += \"\\t\"\n        print(out)\n\ndef list_tags(t):\n    def convert(t2):\n        return (t2[0], type(t2[1]))\n    return [(word.surface, [[convert(t2) for t2 in t1] for t1 in word.tag]) for word in t]\n\n# Pass arguments for KyTea as the following:\nopt = \"-model /usr/local/share/kytea/model.bin\"\nmk = Mykytea.Mykytea(opt)\n\ns = \"\u4eca\u65e5\u306f\u3044\u3044\u5929\u6c17\u3067\u3059\u3002\"\n\n# Fetch segmented words\nfor word in mk.getWS(s):\n    print(word)\n\n# Show analysis results\nprint(mk.getTagsToString(s))\n\n# Fetch first best tag\nt = mk.getTags(s)\nshowTags(t)\n\n# Show all tags\ntt = mk.getAllTags(s)\nshowTags(tt)\n```\n\n## License\n\nMIT License\n",
    "bugtrack_url": null,
    "license": "MIT license",
    "summary": "A text analysis toolkit KyTea binding",
    "version": "0.1.9",
    "project_urls": {
        "Homepage": "https://github.com/chezou/Mykytea-python",
        "Source": "https://github.com/chezou/Mykytea-python",
        "Tracker": "https://github.com/chezou/Mykytea-python/issues"
    },
    "split_keywords": [
        "kytea",
        "nlp",
        "japanese morphological analyzer"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "316b64118f7eefa1d94ba7599d7521e7a2a05856b5857b36a6f978c9ec9f9222",
                "md5": "5d76b2f7c84ad2124c1d31d786018884",
                "sha256": "122e0665aad9f064c12df0da1f7d7be15f700d97c32be9fd7916d7bbcf454ec0"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d76b2f7c84ad2124c1d31d786018884",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 734609,
            "upload_time": "2024-01-15T02:03:17",
            "upload_time_iso_8601": "2024-01-15T02:03:17.830150Z",
            "url": "https://files.pythonhosted.org/packages/31/6b/64118f7eefa1d94ba7599d7521e7a2a05856b5857b36a6f978c9ec9f9222/kytea-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36161a299f969d3e85ea1c0bd96f5c47f798184dfb95a42711780e71fe5b72c9",
                "md5": "82dd8457d955af344650effb466f9211",
                "sha256": "8ab77065bbb75e8eece79c4cc342dcf1364ea493540e46fd89c0e8123b9ea559"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "82dd8457d955af344650effb466f9211",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 718902,
            "upload_time": "2024-01-15T02:03:19",
            "upload_time_iso_8601": "2024-01-15T02:03:19.866780Z",
            "url": "https://files.pythonhosted.org/packages/36/16/1a299f969d3e85ea1c0bd96f5c47f798184dfb95a42711780e71fe5b72c9/kytea-0.1.9-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82db9ddf6be5e616c6c34a0d24cdbdec719a6c8129f71141f32dc935636e3e54",
                "md5": "f2fbfbd0d27e79876548540079be4a4d",
                "sha256": "6becfbdd939cf500c7322540e3eb7c219a5a1400b9326cdfd2d1c2fc54b2425c"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f2fbfbd0d27e79876548540079be4a4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5574857,
            "upload_time": "2024-01-15T02:03:21",
            "upload_time_iso_8601": "2024-01-15T02:03:21.180031Z",
            "url": "https://files.pythonhosted.org/packages/82/db/9ddf6be5e616c6c34a0d24cdbdec719a6c8129f71141f32dc935636e3e54/kytea-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4efb3bcbf7f2c197e7bba828a680c8846bd4f350933f9d3922ec983a836b7c89",
                "md5": "5f58995ba29a97ea3311d144b7da12d5",
                "sha256": "64d4f3043ec234a779d07c177e3a6b836129cc9251eababa3e320e657f01c472"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5f58995ba29a97ea3311d144b7da12d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 318395,
            "upload_time": "2024-01-15T02:03:22",
            "upload_time_iso_8601": "2024-01-15T02:03:22.594816Z",
            "url": "https://files.pythonhosted.org/packages/4e/fb/3bcbf7f2c197e7bba828a680c8846bd4f350933f9d3922ec983a836b7c89/kytea-0.1.9-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "232d764b507bef505aebb9ea00a3c79a10cee1b6e633e227b01816d7394318a6",
                "md5": "6b32ca2239dcfd679836afffb9da6859",
                "sha256": "fa207edd3902ce28256cfbbd91ede2ae710190c785dd8ccd2a6884f5b59b123b"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b32ca2239dcfd679836afffb9da6859",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 734626,
            "upload_time": "2024-01-15T02:03:23",
            "upload_time_iso_8601": "2024-01-15T02:03:23.815663Z",
            "url": "https://files.pythonhosted.org/packages/23/2d/764b507bef505aebb9ea00a3c79a10cee1b6e633e227b01816d7394318a6/kytea-0.1.9-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eac35b70cd3b742ac2e8aefd17746d967e58a512cc091fc888196f242c2d8b01",
                "md5": "cbe66f02283f6cd04ed6e42ba3fff1e8",
                "sha256": "49eda67543990e32b9122e32c5ea81cc21236ae4282b4c5da9993468f6f88341"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cbe66f02283f6cd04ed6e42ba3fff1e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 718845,
            "upload_time": "2024-01-15T02:03:25",
            "upload_time_iso_8601": "2024-01-15T02:03:25.882716Z",
            "url": "https://files.pythonhosted.org/packages/ea/c3/5b70cd3b742ac2e8aefd17746d967e58a512cc091fc888196f242c2d8b01/kytea-0.1.9-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec98744859e55f69255259eb7875d5262942030697688844743c06a08f458cd5",
                "md5": "a1361f8de863313dba24c65ea9d297d0",
                "sha256": "db8cb83ef686a1a0eee449181b89ef4ed135e83570f8e29b5a1b42d712a74f6a"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1361f8de863313dba24c65ea9d297d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5582623,
            "upload_time": "2024-01-15T02:03:27",
            "upload_time_iso_8601": "2024-01-15T02:03:27.801191Z",
            "url": "https://files.pythonhosted.org/packages/ec/98/744859e55f69255259eb7875d5262942030697688844743c06a08f458cd5/kytea-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc2c87027a748f59a182bf79a04a4aa59d1500e99c9f9a2c76bfb3abcebf1a91",
                "md5": "643647751b0da16d03141e5193dca562",
                "sha256": "23d4689686e7aaca0bd22ebb19b7fc446c78b57ee6e3d0d63dd7c6c8f67f42ba"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "643647751b0da16d03141e5193dca562",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 318387,
            "upload_time": "2024-01-15T02:03:30",
            "upload_time_iso_8601": "2024-01-15T02:03:30.041274Z",
            "url": "https://files.pythonhosted.org/packages/fc/2c/87027a748f59a182bf79a04a4aa59d1500e99c9f9a2c76bfb3abcebf1a91/kytea-0.1.9-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e13af5cf0578ba422d245fae1837d858d80d216a05bcf2373c75a764f95b374",
                "md5": "29f0f54985d36a848d57bedb4c9bb0f9",
                "sha256": "378ed3d7d3e2f0d2f5e77ae78d443dec46f56bf593ac27ff3265f130a380fdd7"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29f0f54985d36a848d57bedb4c9bb0f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 735871,
            "upload_time": "2024-01-15T02:03:31",
            "upload_time_iso_8601": "2024-01-15T02:03:31.238625Z",
            "url": "https://files.pythonhosted.org/packages/0e/13/af5cf0578ba422d245fae1837d858d80d216a05bcf2373c75a764f95b374/kytea-0.1.9-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffb93aebf98bf0e59fe5a154e4562563be613f9ac776ca241c01e3622afe6eeb",
                "md5": "92b80fab74044a56f8da138c9a9b1f62",
                "sha256": "014cf34abac9e770a15fbd920f85bd15c32c63c1f2f0a40b76cfe8657ed55f39"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "92b80fab74044a56f8da138c9a9b1f62",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 719605,
            "upload_time": "2024-01-15T02:03:33",
            "upload_time_iso_8601": "2024-01-15T02:03:33.150040Z",
            "url": "https://files.pythonhosted.org/packages/ff/b9/3aebf98bf0e59fe5a154e4562563be613f9ac776ca241c01e3622afe6eeb/kytea-0.1.9-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "033a7a5dca364fd7e0e5988b4264b1708292050ed7c0916336032f306d2928e7",
                "md5": "eed00d29dec296bf76c80926681a8691",
                "sha256": "74306286b07a8edbf2dd241b432c5ccd5dd3b53d8bf3562e4c79f78cb1d65451"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eed00d29dec296bf76c80926681a8691",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5595052,
            "upload_time": "2024-01-15T02:03:34",
            "upload_time_iso_8601": "2024-01-15T02:03:34.472727Z",
            "url": "https://files.pythonhosted.org/packages/03/3a/7a5dca364fd7e0e5988b4264b1708292050ed7c0916336032f306d2928e7/kytea-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a25f8d1f0d4b82f5b84ce30d9ff94c37f9f19c4d0508661d178c4d8571ea447",
                "md5": "cab693c3326786d3a7e2b61556896e77",
                "sha256": "d70f0842e18fb4843d8fed4ac205b8ab0a68fe2e956022e793f052c0de71da88"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cab693c3326786d3a7e2b61556896e77",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 319040,
            "upload_time": "2024-01-15T02:03:36",
            "upload_time_iso_8601": "2024-01-15T02:03:36.503917Z",
            "url": "https://files.pythonhosted.org/packages/3a/25/f8d1f0d4b82f5b84ce30d9ff94c37f9f19c4d0508661d178c4d8571ea447/kytea-0.1.9-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a304603de5e0275c023cdbb5451aba1682eb8d1f563875a1004d49d573ad0b3",
                "md5": "c1012c5e22236c21504d0a8ee2ba8f45",
                "sha256": "0e3d46088ff184c16b573a222f45250fb5dfdfa352de8312d1537ef99c890cbd"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1012c5e22236c21504d0a8ee2ba8f45",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 735007,
            "upload_time": "2024-01-15T02:03:38",
            "upload_time_iso_8601": "2024-01-15T02:03:38.506443Z",
            "url": "https://files.pythonhosted.org/packages/5a/30/4603de5e0275c023cdbb5451aba1682eb8d1f563875a1004d49d573ad0b3/kytea-0.1.9-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "551af5f345ae607085b9d71d017c37bbb21455952ba1fce8e50ec1355464873b",
                "md5": "c358dc5df1e5bccd489f0bf1fab44da7",
                "sha256": "b399c866302e5fd117db7526bd1da2f29cf1fc7cc6808a07c8b10b349fc6a878"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c358dc5df1e5bccd489f0bf1fab44da7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5570965,
            "upload_time": "2024-01-15T02:03:39",
            "upload_time_iso_8601": "2024-01-15T02:03:39.868616Z",
            "url": "https://files.pythonhosted.org/packages/55/1a/f5f345ae607085b9d71d017c37bbb21455952ba1fce8e50ec1355464873b/kytea-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dbe84380ad08f60b5f67984e44ab8217009e8fa48c0a0cc77af058cde628292",
                "md5": "870b082ea1253f5e025c26fffb399f55",
                "sha256": "1f073948ddaf0f54831a039ef177acf5b07ca1f682fd12258a47a36a4dbb1a97"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "870b082ea1253f5e025c26fffb399f55",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 318362,
            "upload_time": "2024-01-15T02:03:41",
            "upload_time_iso_8601": "2024-01-15T02:03:41.518815Z",
            "url": "https://files.pythonhosted.org/packages/1d/be/84380ad08f60b5f67984e44ab8217009e8fa48c0a0cc77af058cde628292/kytea-0.1.9-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2a87fd30850a70ba0c702dc8460eb2080d256d8533774eb6a3a4afd3f45086c",
                "md5": "e2b94b2286097fdbf5af8cc3115c2f0b",
                "sha256": "fc9bbd8fe9c224398496ac4327961715d2d9d9aaf57a19fbd8eba20943cdc5a5"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2b94b2286097fdbf5af8cc3115c2f0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 734590,
            "upload_time": "2024-01-15T02:03:43",
            "upload_time_iso_8601": "2024-01-15T02:03:43.268566Z",
            "url": "https://files.pythonhosted.org/packages/c2/a8/7fd30850a70ba0c702dc8460eb2080d256d8533774eb6a3a4afd3f45086c/kytea-0.1.9-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e08e06806286fa0eba34947594844ed5c56eaadaf54e162a67ee50a513467ef9",
                "md5": "4a54d3c37babfd0cd87813d91a1ff5a4",
                "sha256": "9ead57d7b1eeed812d8b966a2d36cef3fae5bd3c656720339db85b420093588c"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a54d3c37babfd0cd87813d91a1ff5a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 718820,
            "upload_time": "2024-01-15T02:03:44",
            "upload_time_iso_8601": "2024-01-15T02:03:44.499126Z",
            "url": "https://files.pythonhosted.org/packages/e0/8e/06806286fa0eba34947594844ed5c56eaadaf54e162a67ee50a513467ef9/kytea-0.1.9-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95caf3687403db9d44acfc46ba968518d73570cb7d7215e09d5b2f4501d8cf44",
                "md5": "dd0609a0e337b9849d8ef9dbb1ad2ee8",
                "sha256": "342b7a1fc24f3b5ecbfe1d5fa7b77936dabd15ddf2ff806f88ecd2de379c8be4"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd0609a0e337b9849d8ef9dbb1ad2ee8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5574397,
            "upload_time": "2024-01-15T02:03:45",
            "upload_time_iso_8601": "2024-01-15T02:03:45.848115Z",
            "url": "https://files.pythonhosted.org/packages/95/ca/f3687403db9d44acfc46ba968518d73570cb7d7215e09d5b2f4501d8cf44/kytea-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "564befcc276897347c7b1ca408a4a5f7cc1e575e82f3373ad818148e15d9bf45",
                "md5": "95b8f7b1479f40e407101a97d19990aa",
                "sha256": "991f934a917e64673822cc35a43e3175626cc37e1bf3a3668691dceb1808557d"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "95b8f7b1479f40e407101a97d19990aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 318430,
            "upload_time": "2024-01-15T02:03:48",
            "upload_time_iso_8601": "2024-01-15T02:03:48.103323Z",
            "url": "https://files.pythonhosted.org/packages/56/4b/efcc276897347c7b1ca408a4a5f7cc1e575e82f3373ad818148e15d9bf45/kytea-0.1.9-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd923a987ebc15180fdc8f69bf774ea9007e8f063949b229a432524e5aeed019",
                "md5": "6600184b62c34182a8005c74e1f63cc4",
                "sha256": "5fa4adcbfef89d2001209eb8bdda9da2e97fa41932371fa959b1df5a51cdeffb"
            },
            "downloads": -1,
            "filename": "kytea-0.1.9.tar.gz",
            "has_sig": false,
            "md5_digest": "6600184b62c34182a8005c74e1f63cc4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 73782,
            "upload_time": "2024-01-15T02:03:49",
            "upload_time_iso_8601": "2024-01-15T02:03:49.284337Z",
            "url": "https://files.pythonhosted.org/packages/bd/92/3a987ebc15180fdc8f69bf774ea9007e8f063949b229a432524e5aeed019/kytea-0.1.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-15 02:03:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "chezou",
    "github_project": "Mykytea-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "kytea"
}
        
Elapsed time: 0.17119s