{ "info": { "author": "Hideaki Takahashi", "author_email": "mymelo@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: Japanese", "Operating System :: Microsoft :: Windows", "Operating System :: OS Independent", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: IronPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Linguistic" ], "description": "================\n Igo for Python\n================\n\nAbout\n=====\n\nIgo_ is a Japanese morphological analyzer written in Java and Common Lisp.\nThis software is Python port of Igo(Java version).\n\n.. _Igo: http://igo.osdn.jp/\n\nNotice\n======\n\nDictionary builder is not provided. You need to use Igo Java version to build the dictionary for Igo.\nFrom igo-python 0.9.7, pre-built `IPA dictionary (2.7.0-20070801)`__ is included for ease of use.\n\n__ https://drive.google.com/uc?export=download&id=0B4y35FiV1wh7MWVlSDBCSXZMTXM\n\nHow To Use\n==========\n\nYou can use Igo Python easily::\n\n >>> from igo.Tagger import Tagger\n >>> t = Tagger() # use bundled dictionary\n >>> for m in t.parse(u'\u3059\u3082\u3082\u3082\u3082\u3082\u3082\u3082\u3082\u306e\u3046\u3061'):\n ... print m.surface, m.feature\n ...\n \u3059\u3082\u3082 \u540d\u8a5e,\u4e00\u822c,*,*,*,*,\u3059\u3082\u3082,\u30b9\u30e2\u30e2,\u30b9\u30e2\u30e2\n \u3082 \u52a9\u8a5e,\u4fc2\u52a9\u8a5e,*,*,*,*,\u3082,\u30e2,\u30e2\n \u3082\u3082 \u540d\u8a5e,\u4e00\u822c,*,*,*,*,\u3082\u3082,\u30e2\u30e2,\u30e2\u30e2\n \u3082 \u52a9\u8a5e,\u4fc2\u52a9\u8a5e,*,*,*,*,\u3082,\u30e2,\u30e2\n \u3082\u3082 \u540d\u8a5e,\u4e00\u822c,*,*,*,*,\u3082\u3082,\u30e2\u30e2,\u30e2\u30e2\n \u306e \u52a9\u8a5e,\u9023\u4f53\u5316,*,*,*,*,\u306e,\u30ce,\u30ce\n \u3046\u3061 \u540d\u8a5e,\u975e\u81ea\u7acb,\u526f\u8a5e\u53ef\u80fd,*,*,*,\u3046\u3061,\u30a6\u30c1,\u30a6\u30c1\n >>>\n\n\nUsing command line parser::\n\n $ igo # or python -m igo.parse\n \u79c1\u306e\u540d\u524d\u306f\u4e2d\u91ce\u3067\u3059\n \u79c1 \u540d\u8a5e,\u4ee3\u540d\u8a5e,\u4e00\u822c,*,*,*,\u79c1,\u30ef\u30bf\u30b7,\u30ef\u30bf\u30b7\n \u306e \u52a9\u8a5e,\u9023\u4f53\u5316,*,*,*,*,\u306e,\u30ce,\u30ce\n \u540d\u524d \u540d\u8a5e,\u4e00\u822c,*,*,*,*,\u540d\u524d,\u30ca\u30de\u30a8,\u30ca\u30de\u30a8\n \u306f \u52a9\u8a5e,\u4fc2\u52a9\u8a5e,*,*,*,*,\u306f,\u30cf,\u30ef\n \u4e2d\u91ce \u540d\u8a5e,\u56fa\u6709\u540d\u8a5e,\u5730\u57df,\u4e00\u822c,*,*,\u4e2d\u91ce,\u30ca\u30ab\u30ce,\u30ca\u30ab\u30ce\n \u3067\u3059 \u52a9\u52d5\u8a5e,*,*,*,\u7279\u6b8a\u30fb\u30c7\u30b9,\u57fa\u672c\u5f62,\u3067\u3059,\u30c7\u30b9,\u30c7\u30b9\n EOS\n\n\nChangelog for Igo-Python\n========================\n2018-09-22 -- 1.0.0\n * dropped Python 3.3 from supported Python version.\n\n2017-02-09 -- 0.9.9\n * fixed few small issues and add unit test.\n\n2016-07-08 -- 0.9.8\n * fixed a surrogate pair character handling issue\n\n2015-12-16 -- 0.9.7.1\n * Tagger can be pickled on Python2 env\n\n2015-12-14 -- 0.9.7\n * include pre-built IPA dictionary\n\n2015-07-03 -- 0.9.6\n * fixed an issue of dictionary size in mmap mode\n\n2015-04-14 -- 0.9.5\n * use mmap to load files of a dictionary if it is possible\n\n2013-07-05 -- 0.9.3\n * support characters in Supplementary Planes\n\n2012-02-27 -- 0.9.2\n * apply changes in Igo(java) 0.4.4\n\n2012-02-27 -- 0.9.1\n * synchronize with Igo(java) 0.4.5\n\n2011-09-01 -- 0.9\n * compatibility with python3.2\n * update the code base to igo-0.4.3\n * add some enhances and clean up.\n\n2011-08-29 -- 0.4\n * add some enhances and clean up.\n\n2010-11-28 -- 0.3a\n * fix bugs(if a phrase ends with '\u305f' will causes error)\n\n2010-11-27 -- 0.3\n * drop mmap related code\n * reduce memory footprint\n\n2010-11-27 -- 0.2\n * support Google App Engine(maybe)\n\n2010-11-27 -- 0.1a\n * update package info only.\n\n2010-11-25 -- 0.1\n * first release.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/hideaki-t/igo-python/", "keywords": "japanese,morphological analyzer", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "igo-python", "package_url": "https://pypi.org/project/igo-python/", "platform": "", "project_url": "https://pypi.org/project/igo-python/", "project_urls": { "Homepage": "https://github.com/hideaki-t/igo-python/" }, "release_url": "https://pypi.org/project/igo-python/1.0.0/", "requires_dist": null, "requires_python": "", "summary": "Python port of Igo Japanese morphological analyzer", "version": "1.0.0" }, "last_serial": 4306668, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "77c133016f3ff4027b4a9361f2eabc94", "sha256": "d6167bdcc63667e624d8cd93d80ddf4b507eb92ae27c17b915aea6c4e9e9bde8" }, "downloads": -1, "filename": "igo-python-0.1.tar.gz", "has_sig": false, "md5_digest": "77c133016f3ff4027b4a9361f2eabc94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7112, "upload_time": "2010-11-25T11:38:33", "url": "https://files.pythonhosted.org/packages/2a/a6/c17ca6dc9fb387763d7edd22f3cbdb8f77b9f75c2cad111328eaaf352f05/igo-python-0.1.tar.gz" } ], "0.1a": [ { "comment_text": "", "digests": { "md5": "faa12dac6b354dfee3277055cf2579ad", "sha256": "bbe70e59e295dd844e958613f0e73a85b58be2642d3d4db8ad6e104bcc6b3042" }, "downloads": -1, "filename": "igo-python-0.1a.tar.gz", "has_sig": false, "md5_digest": "faa12dac6b354dfee3277055cf2579ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8047, "upload_time": "2010-11-26T17:58:07", "url": "https://files.pythonhosted.org/packages/d0/fe/629e6d168b39e51585f1c277fbef0660c23064a521e3200a1dc165717fd9/igo-python-0.1a.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "cbd1788a2bc038c01f1080e8ac243ee4", "sha256": "7313caa920f29492434baf06aecc0a7dc2da5bcfbfa41222f8e64609862103d1" }, "downloads": -1, "filename": "igo-python-0.2.tar.gz", "has_sig": false, "md5_digest": "cbd1788a2bc038c01f1080e8ac243ee4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8119, "upload_time": "2010-11-26T18:24:09", "url": "https://files.pythonhosted.org/packages/5d/f8/a75edfe0b58cd995b18311ce46a878fa63e8634c42e290daa6297392272c/igo-python-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "474c8d85b9bb924f86371a008ea12b9c", "sha256": "99305aae9cb75265c08d92c75ca1aa2df5c2db690c965f2a1f68df9978d93ace" }, "downloads": -1, "filename": "igo-python-0.3.tar.gz", "has_sig": false, "md5_digest": "474c8d85b9bb924f86371a008ea12b9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8195, "upload_time": "2010-11-27T16:16:41", "url": "https://files.pythonhosted.org/packages/59/8d/27b9a2b77e173856942bbdcd273cd6035ced0385aab32fd68d415aade96d/igo-python-0.3.tar.gz" } ], "0.3a": [ { "comment_text": "", "digests": { "md5": "2fde38fd7b1b7e44225531196c2e9e37", "sha256": "7797ffe0635f9aae738507493a99dfe4077897e55d3c476cdf6105b3c93ed2c7" }, "downloads": -1, "filename": "igo-python-0.3a.tar.gz", "has_sig": false, "md5_digest": "2fde38fd7b1b7e44225531196c2e9e37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8284, "upload_time": "2010-11-27T17:13:21", "url": "https://files.pythonhosted.org/packages/07/10/68671c3d324e8d23e7a085258500c6504dbc80590ee5c840f712efa22cd4/igo-python-0.3a.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "e34a1a33c12531fdac778aadbef88a9f", "sha256": "ee4b0326b4ffbaca8121c4ea9fdbcf62e21976553cd6ec88548417b2ff6a8ec2" }, "downloads": -1, "filename": "igo-python-0.9.zip", "has_sig": false, "md5_digest": "e34a1a33c12531fdac778aadbef88a9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13596, "upload_time": "2011-09-01T05:37:28", "url": "https://files.pythonhosted.org/packages/99/71/c937e1f4f6713a9a491d3316a8e6438b6db2192e4cd8d19af8e90a1942f6/igo-python-0.9.zip" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "a982ac3fecca7b8215d9de44d24507e9", "sha256": "5112386f1648ec3b276aaa5b89e185ccdb5b64859f96226372189ce33d544006" }, "downloads": -1, "filename": "igo-python-0.9.1.tar.gz", "has_sig": false, "md5_digest": "a982ac3fecca7b8215d9de44d24507e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8673, "upload_time": "2012-03-02T12:52:19", "url": "https://files.pythonhosted.org/packages/0c/9e/d4f954d669bfbf2be3ea2801f69e206f120a0bc303639be396473c6436e1/igo-python-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "ae6d5fac1a7c8e638996bf5e8f92c8f5", "sha256": "aed7bd087f0823a1adb32c66fba0ab7fd4d8daef9bcdf3e367b4ed9c45ab23ea" }, "downloads": -1, "filename": "igo-python-0.9.2.tar.gz", "has_sig": false, "md5_digest": "ae6d5fac1a7c8e638996bf5e8f92c8f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8721, "upload_time": "2012-03-02T14:11:03", "url": "https://files.pythonhosted.org/packages/7f/15/445a8044cfa455ec4b9e184c5522e8d53090e14e7721b2cffb99a8d25524/igo-python-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "99cf663ed60a2c734ac882e10330085a", "sha256": "cd1d1b49e28d4339fec130b3675c3f522331ce0f257a182610e9587693e1f95c" }, "downloads": -1, "filename": "igo-python-0.9.3.tar.gz", "has_sig": false, "md5_digest": "99cf663ed60a2c734ac882e10330085a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8684, "upload_time": "2013-07-05T18:49:40", "url": "https://files.pythonhosted.org/packages/44/c9/dc6e79949df153274e0a3f52bb0f79c261490e95595a3ffbff670cff2941/igo-python-0.9.3.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "5e52a8c127dc23fae4c173a2cf8953a0", "sha256": "cdb5ed5fc3914c003a58d09248a487add6787a8cb82aacf35a4b1350ca1dcba9" }, "downloads": -1, "filename": "igo-python-0.9.5.tar.gz", "has_sig": false, "md5_digest": "5e52a8c127dc23fae4c173a2cf8953a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9727, "upload_time": "2015-05-22T12:29:56", "url": "https://files.pythonhosted.org/packages/fe/84/9b6e09a3cce5c7cebd6abb3b6f5452116c1961740f04a12df239394ec956/igo-python-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "45ef2a791700a7c9f61dda720c72af9c", "sha256": "6af6a2038bd45adfbc5f066cefcf5dabb1e9cf2e913012dfeb412da511c13279" }, "downloads": -1, "filename": "igo-python-0.9.6.tar.gz", "has_sig": false, "md5_digest": "45ef2a791700a7c9f61dda720c72af9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9728, "upload_time": "2015-07-03T12:31:08", "url": "https://files.pythonhosted.org/packages/7b/6d/88e967b4ecd544afd943be4521784a4779f71b69eedebe10544e076d98b0/igo-python-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "be375ab1f0c421fcbba0661f490e8281", "sha256": "995f294e80332f9751e29157020149fedde0e8118a4ebd8fda7cebd068accb31" }, "downloads": -1, "filename": "igo_python-0.9.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be375ab1f0c421fcbba0661f490e8281", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 8867539, "upload_time": "2015-12-14T05:51:09", "url": "https://files.pythonhosted.org/packages/1a/b4/93cdce5df0439a886c4632c4a27fad282a4f21a846a8e21e6610362dd64e/igo_python-0.9.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c8dd4b821a3fe2ad14f443699272de1", "sha256": "c35be49d1fcdfd7eda5f817e80f11b0d2a26f84b4accca4debf8aff31fb0e0c2" }, "downloads": -1, "filename": "igo-python-0.9.7.0.tar.gz", "has_sig": false, "md5_digest": "1c8dd4b821a3fe2ad14f443699272de1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8801024, "upload_time": "2015-12-14T05:49:36", "url": "https://files.pythonhosted.org/packages/39/66/5958d36ae1d5cf5b8ef2c4ea60f8ea2441d7386f84dfd0a4b965eb54186b/igo-python-0.9.7.0.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "17b5d55ec30b636c4c48a7d7739c5630", "sha256": "5782d93d15026d885f128f6cebaa3985571ff496ae8c5fdc3fd51e44782e3c43" }, "downloads": -1, "filename": "igo_python-0.9.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17b5d55ec30b636c4c48a7d7739c5630", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8867689, "upload_time": "2016-07-08T10:53:53", "url": "https://files.pythonhosted.org/packages/cf/bc/51588e6d71de7f5fe6feb043363137aa6692af874417185a582adb14e58e/igo_python-0.9.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56ec6e5535d20d7cbdf5aa3469bbc3fe", "sha256": "1e1de3a5e025bb72b6378ee2fe4984b0e4f59d27f6844c60eb674bb94b3c7bd6" }, "downloads": -1, "filename": "igo-python-0.9.8.tar.gz", "has_sig": false, "md5_digest": "56ec6e5535d20d7cbdf5aa3469bbc3fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8801182, "upload_time": "2016-07-08T10:54:47", "url": "https://files.pythonhosted.org/packages/9e/22/c20f5b56f825d46bd0bf94ba9197cc80d140eaf6019f389fabe8bc1ba9a1/igo-python-0.9.8.tar.gz" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "97bb1aacea9b15c7c1ee209730e969cc", "sha256": "278b0735086145d1dfd53db0da4dbb407d1d737f709fac8c425633047294750b" }, "downloads": -1, "filename": "igo_python-0.9.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "97bb1aacea9b15c7c1ee209730e969cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8867830, "upload_time": "2017-02-09T07:53:02", "url": "https://files.pythonhosted.org/packages/8b/55/77b530349273c7ca559739383648089bab8577e019fafcfcf3b9693c1c4d/igo_python-0.9.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f18e4b606433496f514fe8b911a307b6", "sha256": "6d19041844e29a137466d25e9531beafff6c4049ee544463e06f59c1a6c05a84" }, "downloads": -1, "filename": "igo-python-0.9.9.tar.gz", "has_sig": false, "md5_digest": "f18e4b606433496f514fe8b911a307b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8801179, "upload_time": "2017-02-09T07:53:13", "url": "https://files.pythonhosted.org/packages/49/3c/7fbd660627279a044fba18b416782acb7643fd86a98888b975fec890c269/igo-python-0.9.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "7b1a8d95c076672906d1baaa356bb9f8", "sha256": "fa0e39e4d9fedabd2121d2593d3fc2d0513c7facc92cbbc24c932243cc4d8bc4" }, "downloads": -1, "filename": "igo_python-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b1a8d95c076672906d1baaa356bb9f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8865482, "upload_time": "2018-09-24T23:56:31", "url": "https://files.pythonhosted.org/packages/5d/67/00b4083d9ef20a3063515c91d9f79838e2e78f637e062d944f2336071d6f/igo_python-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "347cbf593deefd5e4bc8063dc54bfd4d", "sha256": "8ea824ab31d8245757138fd9b9d6582bb7425f71ae4c58caf0e4497bd77a91c6" }, "downloads": -1, "filename": "igo-python-1.0.0.tar.gz", "has_sig": false, "md5_digest": "347cbf593deefd5e4bc8063dc54bfd4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8805328, "upload_time": "2018-09-24T23:56:40", "url": "https://files.pythonhosted.org/packages/ce/d0/1c514e43fa8a6fdfb3d4f59a82237d6ed2e38e7e8d0655b2932325c24635/igo-python-1.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7b1a8d95c076672906d1baaa356bb9f8", "sha256": "fa0e39e4d9fedabd2121d2593d3fc2d0513c7facc92cbbc24c932243cc4d8bc4" }, "downloads": -1, "filename": "igo_python-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b1a8d95c076672906d1baaa356bb9f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8865482, "upload_time": "2018-09-24T23:56:31", "url": "https://files.pythonhosted.org/packages/5d/67/00b4083d9ef20a3063515c91d9f79838e2e78f637e062d944f2336071d6f/igo_python-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "347cbf593deefd5e4bc8063dc54bfd4d", "sha256": "8ea824ab31d8245757138fd9b9d6582bb7425f71ae4c58caf0e4497bd77a91c6" }, "downloads": -1, "filename": "igo-python-1.0.0.tar.gz", "has_sig": false, "md5_digest": "347cbf593deefd5e4bc8063dc54bfd4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8805328, "upload_time": "2018-09-24T23:56:40", "url": "https://files.pythonhosted.org/packages/ce/d0/1c514e43fa8a6fdfb3d4f59a82237d6ed2e38e7e8d0655b2932325c24635/igo-python-1.0.0.tar.gz" } ] }