{ "info": { "author": "Works Applications", "author_email": "takaoka_k@worksap.co.jp", "bugtrack_url": null, "classifiers": [], "description": "# SudachiPy\n[![PyPi version](https://img.shields.io/pypi/v/sudachipy.svg)](https://pypi.python.org/pypi/sudachipy/)\n[![](https://img.shields.io/badge/python-3.5+-blue.svg)](https://www.python.org/downloads/release/python-350/)\n[![Build Status](https://travis-ci.com/WorksApplications/SudachiPy.svg?branch=develop)](https://travis-ci.com/WorksApplications/SudachiPy)\n[![](https://img.shields.io/github/license/WorksApplications/SudachiPy.svg)](https://github.com/WorksApplications/SudachiPy/blob/develop/LICENSE)\n\nSudachiPy is a Python version of [Sudachi](https://github.com/WorksApplications/Sudachi), a Japanese morphological analyzer.\n\nSudachi & SudachiPy are developed in [WAP Tokushima Laboratory of AI and NLP](http://nlp.worksap.co.jp/), an institute under [Works Applications](http://www.worksap.com/) that focuses on Natural Language Processing (NLP).\n\n**Warning: some functions are still incompatible with Java Sudachi.**\n\n## Easy Setup\n\n### Step 1: Install SudachiPy\n\nSudachiPy is distributed from PyPI. You can install SudachiPy by executing `pip install SudachiPy` from the command line.\n\n```bash\n$ pip install SudachiPy\n```\n\nSudachiPy(>=v0.3.0) refers to system.dic of SudachiDict_core (not included in SudachiPy) package by default.\nPlease proceed to Step 2 to install the dict package.\n\n### Step 2: Install SudachiDict_core\n\nThe default dict package `SudachiDict_core` is distributed from our download site.\nRun `pip install` like below:\n\n```bash\n$ pip install https://object-storage.tyo2.conoha.io/v1/nc_2520839e1f9641b08211a5c85243124a/sudachi/SudachiDict_core-20190718.tar.gz\n```\n\n## Usage\n\n### As a command\n\nAfter installing SudachiPy, you may also use it in the terminal via command `sudachipy`.\n\nYou can excute `sudachipy` with standard input by this way:\n```bash\n$ sudachipy\n```\n\n`sudachipy` has 4 subcommands (default: `tokenize`)\n\n```bash\n$ sudachipy tokenize -h\nusage: sudachipy tokenize [-h] [-r file] [-m {A,B,C}] [-o file] [-a] [-d] [-v]\n [file [file ...]]\n\nTokenize Text\n\npositional arguments:\n file text written in utf-8\n\noptional arguments:\n -h, --help show this help message and exit\n -r file the setting file in JSON format\n -m {A,B,C} the mode of splitting\n -o file the output file\n -a print all of the fields\n -d print the debug information\n -v, --version print sudachipy version\n```\n```bash\n$ sudachipy link -h\nusage: sudachipy link [-h] [-t {small,core,full}] [-u]\n\nLink Default Dict Package\n\noptional arguments:\n -h, --help show this help message and exit\n -t {small,core,full} dict dict\n -u unlink sudachidict\n```\n```bash\n$ sudachipy build -h\nusage: sudachipy build [-h] [-o file] [-d string] -m file file [file ...]\n\nBuild Sudachi Dictionary\n\npositional arguments:\n file source files with CSV format (one of more)\n\noptional arguments:\n -h, --help show this help message and exit\n -o file output file (default: system.dic)\n -d string description comment to be embedded on dictionary\n\nrequired named arguments:\n -m file connection matrix file with MeCab's matrix.def format\n```\n**WARNING: v0.3.\\* ubuild contains bug.**\n```bash\n$ sudachipy ubuild -h\nusage: sudachipy ubuild [-h] [-d string] [-o file] [-s file] file [file ...]\n\nBuild User Dictionary\n\npositional arguments:\n file source files with CSV format (one or more)\n\noptional arguments:\n -h, --help show this help message and exit\n -d string description comment to be embedded on dictionary\n -o file output file (default: user.dic)\n -s file system dictionary (default: linked system_dic, see link -h)\n```\n\n### As a Python package\n\nHere is an example usage;\n\n```python\nfrom sudachipy import tokenizer\nfrom sudachipy import dictionary\n\n\ntokenizer_obj = dictionary.Dictionary().create()\n\n\n# Multi-granular tokenization\n# using `system_core.dic` or `system_full.dic` version 20190781\n# you may not be able to replicate this particular example due to dictionary you use\n\nmode = tokenizer.Tokenizer.SplitMode.C\n[m.surface() for m in tokenizer_obj.tokenize(\"\u56fd\u5bb6\u516c\u52d9\u54e1\", mode)]\n# => ['\u56fd\u5bb6\u516c\u52d9\u54e1']\n\nmode = tokenizer.Tokenizer.SplitMode.B\n[m.surface() for m in tokenizer_obj.tokenize(\"\u56fd\u5bb6\u516c\u52d9\u54e1\", mode)]\n# => ['\u56fd\u5bb6', '\u516c\u52d9\u54e1']\n\nmode = tokenizer.Tokenizer.SplitMode.A\n[m.surface() for m in tokenizer_obj.tokenize(\"\u56fd\u5bb6\u516c\u52d9\u54e1\", mode)]\n# => ['\u56fd\u5bb6', '\u516c\u52d9', '\u54e1']\n\n\n# Morpheme information\n\nm = tokenizer_obj.tokenize(\"\u98df\u3079\", mode)[0]\n\nm.surface() # => '\u98df\u3079'\nm.dictionary_form() # => '\u98df\u3079\u308b'\nm.reading_form() # => '\u30bf\u30d9'\nm.part_of_speech() # => ['\u52d5\u8a5e', '\u4e00\u822c', '*', '*', '\u4e0b\u4e00\u6bb5-\u30d0\u884c', '\u9023\u7528\u5f62-\u4e00\u822c']\n\n\n# Normalization\n\ntokenizer_obj.tokenize(\"\u9644\u5c5e\", mode)[0].normalized_form()\n# => '\u4ed8\u5c5e'\ntokenizer_obj.tokenize(\"SUMMER\", mode)[0].normalized_form()\n# => '\u30b5\u30de\u30fc'\ntokenizer_obj.tokenize(\"\u30b7\u30e5\u30df\u30ec\u30fc\u30b7\u30e7\u30f3\", mode)[0].normalized_form()\n# => '\u30b7\u30df\u30e5\u30ec\u30fc\u30b7\u30e7\u30f3'\n```\n\n## Install dict packages\n\nYou can download and install the built dictionaries from [Python packages \u00b7 WorksApplications/SudachiDict](https://github.com/WorksApplications/SudachiDict#python-packages).\n\n```bash\n$ pip install SudachiDict_full-20190718.tar.gz\n```\n\nYou can change the default dict package by executing link command.\n\n```bash\n$ sudachipy link -t full\n```\n\nYou can remove default dict setting.\n\n```bash\n$ sudachipy link -u\n```\n\n## Customized dictionary\n\nIf you need to apply customized `system.dic`, \nplace [sudachi.json](https://github.com/WorksApplications/Sudachi/blob/develop/src/main/resources/sudachi.json) to anywhere you like,\nand overwrite `systemDict` value with the relative path from `sudachi.json` to your `system.dic`.\n\n```\n{\n \"systemDict\" : \"relative/path/to/system.dic\",\n ...\n}\n```\n\nThen you can specify `sudachi.json` with `-r` option.\n```bash\n$ sudachipy -r path/to/sudachi.json\n``` \n\nIn the end, we would like to make a flow to get these resources via the code, like [NLTK](https://www.nltk.org/data.html) (e.g., `import nltk; nltk.download()`) or [spaCy](https://spacy.io/usage/models) (e.g., `$python -m spacy download en`).\n\n## User defined Dictionary\n\nIf you need to apply customized user dictionary, `user.dic`, \nplace [sudachi.json](https://github.com/WorksApplications/Sudachi/blob/develop/src/main/resources/sudachi.json) to anywhere you like,\nand add `userDict` value with the relative path from `sudachi.json` to your `user.dic`.\n\n```\n{\n \"userDict\" : [\"relative/path/to/user.dic\"],\n ...\n}\n```\n\nAlso, you can build user dictionary with sub-command `ubuild`. \n\nAbout file format, see [here](https://github.com/WorksApplications/Sudachi/blob/develop/docs/user_dict.md) \n(written in Japanese, English document is unavailable now)\n\n## For developer\n\n### Code format\n\nYou can use `./scripts/format.sh` and check if your code is in rule. `flake8` `flake8-import-order` `flake8-buitins` is required. See `requirements.txt`\n\n### Test\n\nYou can use `./script/test.sh` and check if not your change cause regression.\n\n## Contact\n\nWe have a Slack workspace for developers and users to ask questions and discuss a variety of topics.\n- https://sudachi-dev.slack.com/ (Please take invitation from [here](https://join.slack.com/t/sudachi-dev/shared_invite/enQtMzg2NTI2NjYxNTUyLTg4YTkxMzAyNjE3MWY2YTRkMzZjODNmNjEwNzBmZWRhNGNlNDA3NDVjZjljN2M2Y2YyMjBmYjMwOGQ2OWYxNTI))\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/WorksApplications/SudachiPy", "keywords": "", "license": "Apache-2.0", "maintainer": "", "maintainer_email": "", "name": "SudachiPy", "package_url": "https://pypi.org/project/SudachiPy/", "platform": "", "project_url": "https://pypi.org/project/SudachiPy/", "project_urls": { "Homepage": "https://github.com/WorksApplications/SudachiPy" }, "release_url": "https://pypi.org/project/SudachiPy/0.4.0/", "requires_dist": [ "sortedcontainers (~=2.1.0)", "dartsclone (~=0.6.0)" ], "requires_python": "", "summary": "Python version of Sudachi, the Japanese Morphological Analyzer", "version": "0.4.0" }, "last_serial": 5795177, "releases": { "0.2.0.1": [ { "comment_text": "", "digests": { "md5": "b33f3c52b676002117810d4dddde6c86", "sha256": "bfce22b2d1340823d4e8b0efb2b80577b63058d72e33b6fab42c215e64344013" }, "downloads": -1, "filename": "SudachiPy-0.2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b33f3c52b676002117810d4dddde6c86", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 52340, "upload_time": "2019-07-05T08:27:31", "url": "https://files.pythonhosted.org/packages/90/dd/0a10932e4d9230ac3284ef0a1999d6b847e1d96eea5e4be1f149785d9ea0/SudachiPy-0.2.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1470a7ca32160db861c1fc9bc1a4b404", "sha256": "a2cdebdb5c864939a6b89d40892c47b1d07d0e027a3ffdad4c9366b7ee106ae8" }, "downloads": -1, "filename": "SudachiPy-0.2.0.1.tar.gz", "has_sig": false, "md5_digest": "1470a7ca32160db861c1fc9bc1a4b404", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42262, "upload_time": "2019-07-05T08:27:33", "url": "https://files.pythonhosted.org/packages/06/a7/d5c0a13585492d07bfc07d4e2e6233edcb754e38275111604d67b96cda30/SudachiPy-0.2.0.1.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "d8bbfdcc6c95582f0ceee26b6c2f8690", "sha256": "5db7af20cfbfecfb93074257bcf42ce37088f18264f140ec79165c3d08e7f6c7" }, "downloads": -1, "filename": "SudachiPy-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d8bbfdcc6c95582f0ceee26b6c2f8690", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 52314, "upload_time": "2019-07-05T08:43:46", "url": "https://files.pythonhosted.org/packages/b0/51/c50d3c7eb6823eeb7cbbf307b3dfbb24cda5eabe57a32781187b63045cb4/SudachiPy-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b873a752d61fc985d2e383fb61a02584", "sha256": "b881fc754d1f28462660b6c6395727451c140f6ab0e5397c057393b4d3dc7f64" }, "downloads": -1, "filename": "SudachiPy-0.2.1.tar.gz", "has_sig": false, "md5_digest": "b873a752d61fc985d2e383fb61a02584", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42252, "upload_time": "2019-07-05T08:43:47", "url": "https://files.pythonhosted.org/packages/a4/6e/b5641c906ebe58a56b671f037955e6b3345b9073d2718ec33440be061ec5/SudachiPy-0.2.1.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "5bb353599d2901dadfedfc71c97329b4", "sha256": "608cfcb87c163852c4576970d199de63d6cf92108e710ba3cef9ead72b198928" }, "downloads": -1, "filename": "SudachiPy-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5bb353599d2901dadfedfc71c97329b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59253, "upload_time": "2019-07-07T07:52:00", "url": "https://files.pythonhosted.org/packages/d3/05/dcf7d90ed7c7eeb016361fecbb21ce6d88bfd1a0e36eb01cb3431f3410de/SudachiPy-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d28932d0fafa43e13b4dcc4485cbe911", "sha256": "7bfc7f18ed1d67541ec303a115499d887417c4e73e9aed5f6e64a8f8599f09bd" }, "downloads": -1, "filename": "SudachiPy-0.3.1.tar.gz", "has_sig": false, "md5_digest": "d28932d0fafa43e13b4dcc4485cbe911", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44478, "upload_time": "2019-07-07T07:52:02", "url": "https://files.pythonhosted.org/packages/10/2b/7988b57e5c8d1640af832868a05ec0f15f5a0c1085dd156e43cf41b60968/SudachiPy-0.3.1.tar.gz" } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "4f1b6359adbb9b11e63b978e7cbf5f42", "sha256": "f61ce56481fdbdce392cbc2660519734df6f9a2d5e17a4223c113281ff1d840f" }, "downloads": -1, "filename": "SudachiPy-0.3.10-py3-none-any.whl", "has_sig": false, "md5_digest": "4f1b6359adbb9b11e63b978e7cbf5f42", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 82084, "upload_time": "2019-08-07T12:57:08", "url": "https://files.pythonhosted.org/packages/af/f4/1c9fb98c7a1b2a0c95903ef08095497d24c95bc7920eda82a053c670fce7/SudachiPy-0.3.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "122859f7343195affff4d18df02ba4c8", "sha256": "daa455af9a37b36544ab4618d06f6dd0cdd6ff5ce6538479e45261a68c85cbe6" }, "downloads": -1, "filename": "SudachiPy-0.3.10.tar.gz", "has_sig": false, "md5_digest": "122859f7343195affff4d18df02ba4c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68302, "upload_time": "2019-08-07T12:57:09", "url": "https://files.pythonhosted.org/packages/b7/ad/be995c5360015d8a25c49876545efcea3afa5061589c118a71b507663e87/SudachiPy-0.3.10.tar.gz" } ], "0.3.11": [ { "comment_text": "", "digests": { "md5": "46012daad3219b74a82852459bf0ca31", "sha256": "df5172fe40802e6575cc0d62527b957720f391bca95a821758979f742e06f570" }, "downloads": -1, "filename": "SudachiPy-0.3.11-py3-none-any.whl", "has_sig": false, "md5_digest": "46012daad3219b74a82852459bf0ca31", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 82626, "upload_time": "2019-08-08T14:17:31", "url": "https://files.pythonhosted.org/packages/58/ec/e4f91a0a0ffc2db65c2ab5710641cb0a2c3858752ece4dc8ab899649f151/SudachiPy-0.3.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d7230e390d30f4758e6704a6179c5d7", "sha256": "d0df64db5b223f3d0d621e8d2840dfb72d5c4981fef7929b7d14d4d289a81028" }, "downloads": -1, "filename": "SudachiPy-0.3.11.tar.gz", "has_sig": false, "md5_digest": "6d7230e390d30f4758e6704a6179c5d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69059, "upload_time": "2019-08-08T14:17:33", "url": "https://files.pythonhosted.org/packages/96/fb/d5cca288750ae83e37f3636b43e65fec7aabe2b6319076e18d61328c2f18/SudachiPy-0.3.11.tar.gz" } ], "0.3.12": [ { "comment_text": "", "digests": { "md5": "ee0bfc1dd908bb695858c72146e34b31", "sha256": "2f5bc50413ac30587c8043927c4e578bc4a36910e314c2469c094af9cfdb4401" }, "downloads": -1, "filename": "SudachiPy-0.3.12-py3-none-any.whl", "has_sig": false, "md5_digest": "ee0bfc1dd908bb695858c72146e34b31", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 83130, "upload_time": "2019-08-27T14:37:10", "url": "https://files.pythonhosted.org/packages/97/df/3a1c11359a6eec8f6e63bf73fe2743cad489a3afc1b9335c537f211b2aec/SudachiPy-0.3.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e110d1e72a2c44afc6101dfc04466b3", "sha256": "b652c46c722ccd4c2e99a59bffb8cd29783454a662e155e059139abbc46402e9" }, "downloads": -1, "filename": "SudachiPy-0.3.12.tar.gz", "has_sig": false, "md5_digest": "4e110d1e72a2c44afc6101dfc04466b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66110, "upload_time": "2019-08-27T14:37:11", "url": "https://files.pythonhosted.org/packages/c8/e7/7c6476161203267ecc99ea15721ac1379ac4739591632f0b448b151522b4/SudachiPy-0.3.12.tar.gz" } ], "0.3.13": [ { "comment_text": "", "digests": { "md5": "58e43fb502202fe160bbed24b2b7182f", "sha256": "ab1b7dd23244245190bf5b26f422c9660735bda6563c3510d57276772f96956f" }, "downloads": -1, "filename": "SudachiPy-0.3.13-py3-none-any.whl", "has_sig": false, "md5_digest": "58e43fb502202fe160bbed24b2b7182f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 83877, "upload_time": "2019-08-31T13:29:54", "url": "https://files.pythonhosted.org/packages/99/8f/2d4eaf4a976d3715ce4dc415954cadcb81c43cabd5f9aa995891f09d87f5/SudachiPy-0.3.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88928b40b999d6b3600301ace9e3e869", "sha256": "863fd38436df7b451869852fa7f0bf1894bbc6096649a30f7e517278f7dded88" }, "downloads": -1, "filename": "SudachiPy-0.3.13.tar.gz", "has_sig": false, "md5_digest": "88928b40b999d6b3600301ace9e3e869", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66864, "upload_time": "2019-08-31T13:29:55", "url": "https://files.pythonhosted.org/packages/73/6d/b3e0d0912fca93dbd2358759944e1b479d13601c2e5f2731f655411f5de8/SudachiPy-0.3.13.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "655f2081d41469cb8b89c5d82bf66d11", "sha256": "f2be57828cc4576780b83bfe780833646d957f723d24d918dcf62ab6ab4fa24b" }, "downloads": -1, "filename": "SudachiPy-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "655f2081d41469cb8b89c5d82bf66d11", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59257, "upload_time": "2019-07-07T11:33:14", "url": "https://files.pythonhosted.org/packages/7e/99/f9c6c01be340740258e0233325c73529634452a5a4d90830acffb6d9bfee/SudachiPy-0.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "799d3772d5b384a3ea078f77d056a672", "sha256": "93de830d0a9e120086d39784bf8f9def0020cbb2bc1c50bc5b715bf848291700" }, "downloads": -1, "filename": "SudachiPy-0.3.2.tar.gz", "has_sig": false, "md5_digest": "799d3772d5b384a3ea078f77d056a672", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41118, "upload_time": "2019-07-07T11:33:15", "url": "https://files.pythonhosted.org/packages/eb/b9/d551c1a2930ba6b2b3c2981f437b719fd427119a0397593fe95d6d20c2ee/SudachiPy-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "107e1758543f198a558f4fec57bf285c", "sha256": "4df08a48c18b3eb9479bb4172796ee8417553a81dd5dd881257573029fd2879e" }, "downloads": -1, "filename": "SudachiPy-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "107e1758543f198a558f4fec57bf285c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59285, "upload_time": "2019-07-09T13:53:50", "url": "https://files.pythonhosted.org/packages/1c/55/afcffe32a5f03f5cf2babcc72155ae3a3377a788c7c272beb9479c504dfb/SudachiPy-0.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "39d9ae268363cb2c2940002cfd72dcde", "sha256": "109e784486e0f49b67c13f4a8e90554661b4ff19593e67af98a31d228caa3435" }, "downloads": -1, "filename": "SudachiPy-0.3.3.tar.gz", "has_sig": false, "md5_digest": "39d9ae268363cb2c2940002cfd72dcde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44512, "upload_time": "2019-07-09T13:53:52", "url": "https://files.pythonhosted.org/packages/62/9f/1e00cce7fce651d84520089cb29eeaebe01de3a531fd2b09eb77292d470f/SudachiPy-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "c3963293ead29d413379b1a4eb382dc3", "sha256": "31c3023c1bad04649b57d12bdb8c377fbc4110b7e1ee72b587fce34526665242" }, "downloads": -1, "filename": "SudachiPy-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "c3963293ead29d413379b1a4eb382dc3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59308, "upload_time": "2019-07-17T05:45:43", "url": "https://files.pythonhosted.org/packages/aa/e1/7767146e535d57dd17ce1ad82f049b6b6bb0c1cb639cbd984302b99526cb/SudachiPy-0.3.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce0d3409fd1bce26d9fe9aeef2b9930b", "sha256": "55e7d0a2e1792c80bbbbf338caf80111d93728e110848061cda11bdde29dc59e" }, "downloads": -1, "filename": "SudachiPy-0.3.4.tar.gz", "has_sig": false, "md5_digest": "ce0d3409fd1bce26d9fe9aeef2b9930b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41147, "upload_time": "2019-07-17T05:45:45", "url": "https://files.pythonhosted.org/packages/8c/17/3617937b83fc3e397fcb54783290b18da0ff1fa79e0a7148026efce1863b/SudachiPy-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "1be98d22b4a030f7a89ae8aacc8725f8", "sha256": "b1a1a4b1e66215a94a2fe90f34324f8184ea35077486397d0be9c7a77aca490b" }, "downloads": -1, "filename": "SudachiPy-0.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "1be98d22b4a030f7a89ae8aacc8725f8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 61713, "upload_time": "2019-07-18T16:17:37", "url": "https://files.pythonhosted.org/packages/95/4e/c006562ccc952a3e0e29b8287c3c1a3b606d39b2f3c356f73c8ae314a520/SudachiPy-0.3.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93cfd48f0316adc63b96bf5880a6d32c", "sha256": "388fc51f7a28517342a989f66ea9c2bb14dd415e5fed36d6141ce630de815178" }, "downloads": -1, "filename": "SudachiPy-0.3.5.tar.gz", "has_sig": false, "md5_digest": "93cfd48f0316adc63b96bf5880a6d32c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46580, "upload_time": "2019-07-18T16:17:39", "url": "https://files.pythonhosted.org/packages/f4/59/d5b42f414c104c88765f9510837411e58d309597194e6a79cd837b510f93/SudachiPy-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "368ce3e4efee6a5a90f0bee83ca66d86", "sha256": "115416ad8ce14c302d764c2e1777eec1cb14c2b3776ad2ec1c430ab2fa9ef114" }, "downloads": -1, "filename": "SudachiPy-0.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "368ce3e4efee6a5a90f0bee83ca66d86", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 62451, "upload_time": "2019-07-20T07:11:31", "url": "https://files.pythonhosted.org/packages/f9/a6/8eb0fdc3ebee66b9add4de41914793132d9cab455ebc5e43645e099d0c11/SudachiPy-0.3.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e0a44aee08abf4781b39319d5961d48b", "sha256": "5220f85607b46fbea23f1df14d058d33160eba71ce11045b0cbbe818d026f9e7" }, "downloads": -1, "filename": "SudachiPy-0.3.6.tar.gz", "has_sig": false, "md5_digest": "e0a44aee08abf4781b39319d5961d48b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46949, "upload_time": "2019-07-20T07:11:33", "url": "https://files.pythonhosted.org/packages/1a/c8/aa3be6de5d4d6ba4329cde1c629c54a477697bae8deb660d6e475cae908a/SudachiPy-0.3.6.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "c87e4ae476777def07ebcd687198c7b6", "sha256": "8d5e48e6c7a1689397bad5a1932227415191be6a334718158f82dfce041be028" }, "downloads": -1, "filename": "SudachiPy-0.3.8-py3-none-any.whl", "has_sig": false, "md5_digest": "c87e4ae476777def07ebcd687198c7b6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 82054, "upload_time": "2019-08-01T15:48:02", "url": "https://files.pythonhosted.org/packages/25/3a/592ed469326ae059e6ac30a836f782bdd60f885d8b87da1fa091f1c976b0/SudachiPy-0.3.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "353ae091f4fc2bcb952440a04a4c8054", "sha256": "ec5e4d7711a172736eec96f49c02adbf09bc4c3c09ba798922ea7111f5d08f1c" }, "downloads": -1, "filename": "SudachiPy-0.3.8.tar.gz", "has_sig": false, "md5_digest": "353ae091f4fc2bcb952440a04a4c8054", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64895, "upload_time": "2019-08-01T15:48:03", "url": "https://files.pythonhosted.org/packages/97/5a/294d462ea4ada1ef6f532853833af26b95ad4c8e4cd0b212696f186eff87/SudachiPy-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "8858222de2aaa312072358c1fe78cf4e", "sha256": "5de6b714e1e8f66db7fba6101850f49615e3cb355dd71f7b530aaa4ae0659b83" }, "downloads": -1, "filename": "SudachiPy-0.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "8858222de2aaa312072358c1fe78cf4e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 82006, "upload_time": "2019-08-01T16:27:29", "url": "https://files.pythonhosted.org/packages/f5/76/dfbc821a56ca59da337e6cb748755d738ea9f1bc9521e22f981194aa598b/SudachiPy-0.3.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8de7c37009e5e0e8c27c949daaab34d2", "sha256": "982515a1e0dfa62dddadae8533a64ab30d67f8eaa03cea710fd559262696004a" }, "downloads": -1, "filename": "SudachiPy-0.3.9.tar.gz", "has_sig": false, "md5_digest": "8de7c37009e5e0e8c27c949daaab34d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68229, "upload_time": "2019-08-01T16:27:31", "url": "https://files.pythonhosted.org/packages/9e/de/c0d19d3d1f23040fdce2f47139789a514fdc748916441ba6b7a043e0a020/SudachiPy-0.3.9.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "678e203d44108f4b3512d5718b3266b0", "sha256": "39f6d9b8330bc4d6624b7d96c3ea666a4197aedf5629f1d3ef4b4fe456b0ead9" }, "downloads": -1, "filename": "SudachiPy-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "678e203d44108f4b3512d5718b3266b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73635, "upload_time": "2019-09-07T05:49:54", "url": "https://files.pythonhosted.org/packages/b6/09/7c55ab89d7bcdd8075929add8b096c4b5347d661d78e7d4884214f672513/SudachiPy-0.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0755491f7c8ad9c5c8e6457738b565e0", "sha256": "f402c5e898732d9c36f46dd4c0d8c0b1b693869189ba6f445793880390e51a2b" }, "downloads": -1, "filename": "SudachiPy-0.4.0.tar.gz", "has_sig": false, "md5_digest": "0755491f7c8ad9c5c8e6457738b565e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64639, "upload_time": "2019-09-07T05:49:56", "url": "https://files.pythonhosted.org/packages/da/b4/17f14096b85f792868ed7b2c1e9e7e6f1d4951e6994746b41a68f4c91dc6/SudachiPy-0.4.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "678e203d44108f4b3512d5718b3266b0", "sha256": "39f6d9b8330bc4d6624b7d96c3ea666a4197aedf5629f1d3ef4b4fe456b0ead9" }, "downloads": -1, "filename": "SudachiPy-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "678e203d44108f4b3512d5718b3266b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73635, "upload_time": "2019-09-07T05:49:54", "url": "https://files.pythonhosted.org/packages/b6/09/7c55ab89d7bcdd8075929add8b096c4b5347d661d78e7d4884214f672513/SudachiPy-0.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0755491f7c8ad9c5c8e6457738b565e0", "sha256": "f402c5e898732d9c36f46dd4c0d8c0b1b693869189ba6f445793880390e51a2b" }, "downloads": -1, "filename": "SudachiPy-0.4.0.tar.gz", "has_sig": false, "md5_digest": "0755491f7c8ad9c5c8e6457738b565e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64639, "upload_time": "2019-09-07T05:49:56", "url": "https://files.pythonhosted.org/packages/da/b4/17f14096b85f792868ed7b2c1e9e7e6f1d4951e6994746b41a68f4c91dc6/SudachiPy-0.4.0.tar.gz" } ] }