{
"info": {
"author": "Thomas Roten",
"author_email": "thomas@roten.us",
"bugtrack_url": null,
"classifiers": [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: Chinese (Traditional)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Education",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic"
],
"description": "=======\nPyNLPIR\n=======\n\n|Build Status| |PyPI|\n\nPyNLPIR is a Python wrapper around the\n`NLPIR/ICTCLAS Chinese segmentation software `_.\n\n* Documentation: http://pynlpir.rtfd.org\n* GitHub: https://github.com/tsroten/pynlpir\n* Support: https://github.com/tsroten/pynlpir/issues\n* Free software: `MIT license `_\n\nAbout\n-----\n\nEasily segment text using NLPIR, one of the most widely-regarded Chinese text\nanalyzers:\n\n.. code:: python\n\n import pynlpir\n pynlpir.open()\n\n s = '\u6b22\u8fce\u79d1\u7814\u4eba\u5458\u3001\u6280\u672f\u5de5\u7a0b\u5e08\u3001\u4f01\u4e8b\u4e1a\u5355\u4f4d\u4e0e\u4e2a\u4eba\u53c2\u4e0eNLPIR\u5e73\u53f0\u7684\u5efa\u8bbe\u5de5\u4f5c\u3002'\n pynlpir.segment(s)\n\n [('\u6b22\u8fce', 'verb'), ('\u79d1\u7814', 'noun'), ('\u4eba\u5458', 'noun'), ('\u3001', 'punctuation mark'), ('\u6280\u672f', 'noun'), ('\u5de5\u7a0b\u5e08', 'noun'), ('\u3001', 'punctuation mark'), ('\u4f01\u4e8b\u4e1a', 'noun'), ('\u5355\u4f4d', 'noun'), ('\u4e0e', 'conjunction'), ('\u4e2a\u4eba', 'noun'), ('\u53c2\u4e0e', 'verb'), ('NLPIR', 'noun'), ('\u5e73\u53f0', 'noun'), ('\u7684', 'particle'), ('\u5efa\u8bbe', 'verb'), ('\u5de5\u4f5c', 'verb'), ('\u3002', 'punctuation mark')]\n\nFeatures\n--------\n\n* Helper functions for common use cases\n* English/Chinese part of speech mapping\n* Support for UTF-8, GBK, and BIG5 encoded strings (and unicode of course!)\n* Access to NLPIR's C functions via ``ctypes``\n* Includes a copy of NLPIR\n* Runs on Python 2.7 and 3\n* Supports macOS, Linux, and Windows\n\nGetting Started\n---------------\n\n* `Install PyNLPIR `_\n\n * ``pip install pynlpir`` to install PyNLPIR\n * ``pynlpir update`` to download the latest license\n\n* Read `PyNLPIR's tutorial `_\n* Learn from the `API documentation `_\n* `Contribute `_ documentation, code, or feedback\n\n.. |Build Status| image:: https://travis-ci.org/tsroten/pynlpir.png?branch=master\n :target: https://travis-ci.org/tsroten/pynlpir\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/pynlpir.svg\n :target: https://pypi.python.org/pypi/pynlpir/\n :alt: Latest Version\n\n\n\n\nChange Log\n----------\n\n0.6 (2019-08-20)\n++++++++++++++++\n\n* Adds ``'raw'`` option to pos_names for pynlpir.segment().\n* Adds missing pos tags: \"mg\", \"g\", and \"j\".\n* Fixes broken NLPIR project links in documentation.\n\n0.5.2 (2017-03-24)\n++++++++++++++++++\n\n* Fixes error opening PyNLPIR on Windows/Python 3. Fixes #63.\n\n0.5.1 (2017-03-18)\n++++++++++++++++++\n\n* Fixes error opening PyNLPIR on Windows/Python 2. Fixes #63.\n\n0.5 (2017-03-11)\n++++++++++++++++\n\n* Adds license auto-updater.\n* Removes included license file.\n* Moves tests to separate directory.\n\n0.4.6 (2016-08-12)\n++++++++++++++++++\n\n* Updates NLPIR license.\n\n0.4.5 (2016-07-18)\n++++++++++++++++++\n\n* Updates NLPIR license.\n\n0.4.4 (2016-04-09)\n++++++++++++++++++\n\n* Updates NLPIR license.\n\n0.4.3 (2016-03-13)\n++++++++++++++++++\n\n* Updates NLPIR license.\n\n0.4.2 (2016-02-16)\n++++++++++++++++++\n\n* Updates NLPIR license.\n\n0.4.1 (2016-01-22)\n++++++++++++++++++\n\n* Updates NLPIR license.\n\n0.4 (2015-12-21)\n++++++++++++++++\n\n* Updates NLPIR.\n* Adds OS X support.\n\n0.3.3 (2015-10-21)\n++++++++++++++++++\n\n* Fixes NLPIR freezing with certain inputs. Fixes #33.\n* Adds flake8 tests to tox and travis-ci.\n* Adds tests for Python 3.5 support.\n* Uses io.open() in setup.py. Fixes #34.\n\n\n0.3.2 (2015-08-05)\n++++++++++++++++++\n\n* Adds 2015-08-05 license file. Fixes #31.\n\n0.3.1 (2015-07-12)\n++++++++++++++++++\n\n* Fixes RST rendering error.\n\n0.3 (2015-07-12)\n++++++++++++++++\n\n* Includes NLPIR version 20150702. Fixes #25.\n* Adds encoding error handling scheme options.\n* Adds new word identification functions and documentation. Fixes #26.\n* Makes ``~pynlpir.get_key_words`` work with multiple NLPIR return value\n structures. Fixes #23.\n* Returns ``None`` when pos code not recognized. Fixes #20.\n* Updates outdated link in tutorial. Fixes #21.\n\n0.2.2 (2015-01-02)\n++++++++++++++++++\n\n* Fixes release problem with v0.2.1.\n\n0.2.1 (2015-01-02)\n++++++++++++++++++\n\n* Packages NLPIR version 20141230. Fixes #18.\n\n0.2 (2014-12-18)\n++++++++++++++++\n\n* Packages NLPIR version 20140926. Restores ``pynlpir.get_key_words`` functionality. Fixes #11, #14, and #15.\n* Updates part of speech map for new NLPIR version. Fixes #17.\n* Fixes a typo in ``api.rst``. Fixes #16.\n* Fixes a bug involving uppercase part of speech codes. Fixes #10.\n* Adds Python 3.4 test to tox and travis.\n* Notes Python 3.4 support in ``setup.py`` and ``CONTRIBUTING.rst``.\n* Fixes the doubleslash unit test so that it works with the new NLPIR version.\n* Adds a missing comma. Fixes #8.\n* Fixes indentation in ``pynlpir.get_key_words``.\n* Adds condition for empty key word result. Fixes #9.\n\n0.1.3 (2014-06-12)\n++++++++++++++++++\n\n* Fixes typo in docs. Fixes #4.\n* Adds *license_code* argument to ``pynlpir.open``. Fixes #6.\n* Packages NLPIR version 20131219 and removes version 20140324. Fixes a NLPIR expired license issue. Fixes #5.\n* Fixes bug with double slashes in input. Fixes #7.\n\n0.1.2 (2014-05-01)\n++++++++++++++++++\n\n* Adds version information to ``__init__.py``.\n* Adds Travis CI configuration information.\n* Reformats ``README.rst``.\n* Adds documentation about contributing.\n* Fixes #2. Fixes segmenting text with whitespace.\n* Fixes #3. Fixes ``_encode()``/``_decode`` default encoding error.\n\n0.1.1 (2014-04-07)\n++++++++++++++++++\n\n* Fixes installation problem with package data.\n\n0.1.0 (2014-04-07)\n++++++++++++++++++\n\n* Initial 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/tsroten/pynlpir",
"keywords": "pynlpir,nlpir,ictclas,chinese,segmentation,nlp",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "PyNLPIR",
"package_url": "https://pypi.org/project/PyNLPIR/",
"platform": "win32",
"project_url": "https://pypi.org/project/PyNLPIR/",
"project_urls": {
"Homepage": "https://github.com/tsroten/pynlpir"
},
"release_url": "https://pypi.org/project/PyNLPIR/0.6.0/",
"requires_dist": [
"click"
],
"requires_python": "",
"summary": "A Python wrapper around the NLPIR/ICTCLAS Chinese segmentation software.",
"version": "0.6.0"
},
"last_serial": 5706545,
"releases": {
"0.1": [
{
"comment_text": "",
"digests": {
"md5": "7c68808af40951b9566fe7aea164cd08",
"sha256": "1a1fc1951be2dd8cddb28d179b1672c0ee0b92ca33c384dbc7e79671a34c3d1e"
},
"downloads": -1,
"filename": "PyNLPIR-0.1.tar.gz",
"has_sig": true,
"md5_digest": "7c68808af40951b9566fe7aea164cd08",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12511150,
"upload_time": "2014-04-07T13:49:26",
"url": "https://files.pythonhosted.org/packages/2e/28/8030896f38650cf6c880355dc794fdb3563528de01d706bb0232ba5c0c84/PyNLPIR-0.1.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "167950a13867c19a68fb6c6071c87499",
"sha256": "9c9c8cb47dafc43c98cbf4ea1d42e73e180b4dd7586725fa9389c1bfe49a85e6"
},
"downloads": -1,
"filename": "PyNLPIR-0.1.1.tar.gz",
"has_sig": true,
"md5_digest": "167950a13867c19a68fb6c6071c87499",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12511363,
"upload_time": "2014-04-07T14:28:12",
"url": "https://files.pythonhosted.org/packages/5c/4a/37fb64eef5ade7865270cfe5bbcc1586ba94790ea6244d3c70cfb443ffac/PyNLPIR-0.1.1.tar.gz"
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "9f60ab3a371f8dab2299a5ffb563123d",
"sha256": "c43d95596a4056359f4a7c62958047904d3cd2bc8d8424bb1101ec8139a2613c"
},
"downloads": -1,
"filename": "PyNLPIR-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "9f60ab3a371f8dab2299a5ffb563123d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12519200,
"upload_time": "2014-04-30T23:33:33",
"url": "https://files.pythonhosted.org/packages/13/23/29c6fa071a41ed428ebce8f2d58e5577ddfb11eadbafa8bdda8319cf549d/PyNLPIR-0.1.2.tar.gz"
}
],
"0.1.3": [
{
"comment_text": "",
"digests": {
"md5": "ef671df768e68d413dbd1e336a06e14d",
"sha256": "5e1fbdcf3d0ae791c7e8fbdb3ffaf45a6bbdbe932141ded7c8bdda90bb8517c5"
},
"downloads": -1,
"filename": "PyNLPIR-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "ef671df768e68d413dbd1e336a06e14d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12719673,
"upload_time": "2014-06-12T13:50:46",
"url": "https://files.pythonhosted.org/packages/36/7c/33b86f233d4d85c763e8ebc2865a07949a78d2af5659538f752bc930583a/PyNLPIR-0.1.3.tar.gz"
}
],
"0.2": [
{
"comment_text": "",
"digests": {
"md5": "46ec560ec1051d61a9037f6798e2a214",
"sha256": "d20abfa3b4ff5d2db8217979de5f35b4f96fbb8e9709abbc5ce66d008a25ba82"
},
"downloads": -1,
"filename": "PyNLPIR-0.2.tar.gz",
"has_sig": false,
"md5_digest": "46ec560ec1051d61a9037f6798e2a214",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12460633,
"upload_time": "2014-12-18T13:41:24",
"url": "https://files.pythonhosted.org/packages/2d/6f/0e399ece8bd23bde3bdf15dec2352c54fe16f9708b851a1c9b05a93efa7d/PyNLPIR-0.2.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "0f36976901b4e3c6b7c23f4315c9c304",
"sha256": "09390d5cd145d5644bf58e22b063ce8f2b4b742e9a563636b8f548655e324c00"
},
"downloads": -1,
"filename": "PyNLPIR-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "0f36976901b4e3c6b7c23f4315c9c304",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26935,
"upload_time": "2015-01-02T23:43:16",
"url": "https://files.pythonhosted.org/packages/bb/ad/8ae96959cbebb0ae3c93fa305fc196cfae0fb012dd1f6085d95de8daa942/PyNLPIR-0.2.1.tar.gz"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "a9626c81d1f807f594ec570b44d26785",
"sha256": "10bc8ae48a5e63f5b1a8783c789913e7095074a36afb8c2e35dedc77dc6430e2"
},
"downloads": -1,
"filename": "PyNLPIR-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "a9626c81d1f807f594ec570b44d26785",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12490428,
"upload_time": "2015-01-03T00:08:58",
"url": "https://files.pythonhosted.org/packages/2a/7c/0a6aad56aa4343068aa5498c7ed2928455ab5f7ecc5d118b651bc8e5f171/PyNLPIR-0.2.2.tar.gz"
}
],
"0.3": [
{
"comment_text": "",
"digests": {
"md5": "11235d6c280df8e9a3dbf92684f28520",
"sha256": "32858946a01b1254118b1773ca0a4f4ab235ca40fefd50c08fb362f8eaf82f37"
},
"downloads": -1,
"filename": "PyNLPIR-0.3.tar.gz",
"has_sig": false,
"md5_digest": "11235d6c280df8e9a3dbf92684f28520",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12494220,
"upload_time": "2015-07-13T00:47:24",
"url": "https://files.pythonhosted.org/packages/72/df/d755572f3e360a151c7d83586600991c85e452ae55dd8923fa385020b155/PyNLPIR-0.3.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "a3efbd1f08cd2b8e27ca453e3e31df87",
"sha256": "806c72ad5cba8127afcfb3e5286f487c2533233357231d10c845935997193f7f"
},
"downloads": -1,
"filename": "PyNLPIR-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "a3efbd1f08cd2b8e27ca453e3e31df87",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12494606,
"upload_time": "2015-07-13T00:59:32",
"url": "https://files.pythonhosted.org/packages/8a/08/dcb15e477814a7d5feacf55a14a54bbff12c2bf4a6dab0157ef6ec85b816/PyNLPIR-0.3.1.tar.gz"
}
],
"0.3.2": [
{
"comment_text": "",
"digests": {
"md5": "2a807ee3c67267cfc01edb568fd2961a",
"sha256": "855b10c1de05a370592cfb8d6791602cdb2ce144ed304d28261efbf24a70847d"
},
"downloads": -1,
"filename": "PyNLPIR-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "2a807ee3c67267cfc01edb568fd2961a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12495301,
"upload_time": "2015-08-05T14:59:29",
"url": "https://files.pythonhosted.org/packages/e0/e6/976ba89b081ca78f4f879b38e1d91653e414b2d3b7c67b3aabb4a4334e18/PyNLPIR-0.3.2.tar.gz"
}
],
"0.3.3": [
{
"comment_text": "",
"digests": {
"md5": "76aa1c2fc0a20a86da1545e511afb477",
"sha256": "a208a6b9fe35ad6c0947acdff27fedb05ba4e37859b194ca91ccb808de81176b"
},
"downloads": -1,
"filename": "PyNLPIR-0.3.3.tar.gz",
"has_sig": false,
"md5_digest": "76aa1c2fc0a20a86da1545e511afb477",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28435,
"upload_time": "2015-10-22T01:27:19",
"url": "https://files.pythonhosted.org/packages/1c/cc/299b0db448ff2559f47aee205718c513bddb929a0e8b063eb365b6b67f34/PyNLPIR-0.3.3.tar.gz"
}
],
"0.4": [
{
"comment_text": "",
"digests": {
"md5": "4e686ce03f82b84f888370c1ff4b17ac",
"sha256": "dcf9e8ce540e129ac474c25eee450a0645090ee7519f2c7dae77556f7889590f"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.tar.gz",
"has_sig": false,
"md5_digest": "4e686ce03f82b84f888370c1ff4b17ac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13053688,
"upload_time": "2015-12-22T02:54:28",
"url": "https://files.pythonhosted.org/packages/26/90/e8410d581dc0e39ce12d3f1ba1faa9916bb04c666c484dd25266f4b97443/PyNLPIR-0.4.tar.gz"
}
],
"0.4.1": [
{
"comment_text": "",
"digests": {
"md5": "2884e6d782c1ed61e3615b7bafb1f53e",
"sha256": "7d75c02e0992acc8834861468d889e4d682752a1d4eeff5a15eca11cebc8e72f"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2884e6d782c1ed61e3615b7bafb1f53e",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 13100811,
"upload_time": "2016-01-23T02:56:23",
"url": "https://files.pythonhosted.org/packages/b5/f2/e871c5148039d81bc7a27443c59b8ca5f26f97d1910818ff1d6d11439ec0/PyNLPIR-0.4.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1d4ea60023d9fa8c8601c045f2e72b88",
"sha256": "d52d9ea6e777a5a6217d1d2aae39447d46b06f4d25dc9ab172a6fd066970295d"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.1.tar.gz",
"has_sig": false,
"md5_digest": "1d4ea60023d9fa8c8601c045f2e72b88",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13053657,
"upload_time": "2016-01-23T02:56:06",
"url": "https://files.pythonhosted.org/packages/5c/61/2598ed0e460e9e680a6d3bc81df9b8a48b8cf631d5474b0169d960dc68b7/PyNLPIR-0.4.1.tar.gz"
}
],
"0.4.2": [
{
"comment_text": "",
"digests": {
"md5": "d90714a129dc29203b33f5aa6cca6324",
"sha256": "864cd71f8e4bfb1b305df2c49b102ee43618749b0e8a5a64cff46d6437b057d2"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d90714a129dc29203b33f5aa6cca6324",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 13101650,
"upload_time": "2016-02-17T03:14:56",
"url": "https://files.pythonhosted.org/packages/cf/04/6da3c022db565a97e9caab9dfac479908e7990927c57ae0de23fe54b45b6/PyNLPIR-0.4.2-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "bbb7707a129aadb2daaa97714d3f3f6e",
"sha256": "4d9f9356ddeb8a825f556f184e8bdf70207a012ab40ec19c055469e503d21cbd"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.2.tar.gz",
"has_sig": false,
"md5_digest": "bbb7707a129aadb2daaa97714d3f3f6e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13054051,
"upload_time": "2016-02-17T03:14:14",
"url": "https://files.pythonhosted.org/packages/83/9d/239af7763653e01803baac5b01e7e037e3ae4dd4fef13a5bb257cf39e8a8/PyNLPIR-0.4.2.tar.gz"
}
],
"0.4.3": [
{
"comment_text": "",
"digests": {
"md5": "f984d39d3f5dae8e192396fe3fc2f1ce",
"sha256": "11999b49ce05fc93bde703ca9c4abf09086a9c7a6d40d713cef5e10bc7c1b0a0"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f984d39d3f5dae8e192396fe3fc2f1ce",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 13104008,
"upload_time": "2016-03-12T12:40:34",
"url": "https://files.pythonhosted.org/packages/8e/20/4245535151b9c6d58e80a6b46018677044b8a21104277db57e1fe7fc8659/PyNLPIR-0.4.3-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ee18f39dd3662f14a30987cc39515ab2",
"sha256": "a8b6852a56677c04ecfa323d1e8268076c6248edd3fd86040612e11315f0d196"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.3.tar.gz",
"has_sig": false,
"md5_digest": "ee18f39dd3662f14a30987cc39515ab2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13055498,
"upload_time": "2016-03-12T12:40:10",
"url": "https://files.pythonhosted.org/packages/7b/10/774ce6929afc6a85049b6e2b6bb81a095c924a92421b8cb154952c6b1e29/PyNLPIR-0.4.3.tar.gz"
}
],
"0.4.4": [
{
"comment_text": "",
"digests": {
"md5": "ba29ca1dcd1b8833b8651555fe34cfb8",
"sha256": "19a1ff9b45e9f202416131d48196917a2ccb58a21f593c6a262a69f46fdd8f20"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ba29ca1dcd1b8833b8651555fe34cfb8",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 13102107,
"upload_time": "2016-04-09T13:02:21",
"url": "https://files.pythonhosted.org/packages/4a/1b/15917d6e40b7fd670ca83a667ec94e3a63d9ab0296c73ee7defc77a7be8d/PyNLPIR-0.4.4-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a2cadec658f607c1d37020daff22fc7d",
"sha256": "47b09726fc4192b148c1549b3a76ed173202f71b916158b84a2cc45a6f362d64"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.4.tar.gz",
"has_sig": false,
"md5_digest": "a2cadec658f607c1d37020daff22fc7d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13054631,
"upload_time": "2016-04-09T13:01:23",
"url": "https://files.pythonhosted.org/packages/2d/43/a598ce49184651bfcb447efe5f99c8e0ef594591e1b63689c17aec3bb3fa/PyNLPIR-0.4.4.tar.gz"
}
],
"0.4.5": [
{
"comment_text": "",
"digests": {
"md5": "ee6add50caad217ef8e760ba14d322a3",
"sha256": "c8433b30645cda69a21369bbb9a1a2dbb5ceb094f1c4abccfbcb11470303aef7"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ee6add50caad217ef8e760ba14d322a3",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 13102427,
"upload_time": "2016-07-18T14:34:21",
"url": "https://files.pythonhosted.org/packages/d1/ec/55aca71c987c89494196b8df31ddbe5229656097a8c4dc8942a6a229bd35/PyNLPIR-0.4.5-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "95860efcd24ea6870472a1dd0fe41419",
"sha256": "ff87f21072fd0c39919aa72f39e1cc506b23637d6bf09321f5252a7935d6f4bb"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.5.tar.gz",
"has_sig": false,
"md5_digest": "95860efcd24ea6870472a1dd0fe41419",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13054339,
"upload_time": "2016-07-18T14:34:07",
"url": "https://files.pythonhosted.org/packages/2c/23/7a03a9bc5e5380db43a8eb81bfbeae01ebc5b18dcac6495b71c62de02563/PyNLPIR-0.4.5.tar.gz"
}
],
"0.4.6": [
{
"comment_text": "",
"digests": {
"md5": "a5d3f2532c14c3b41ef71fdbaac67d6d",
"sha256": "32172c3ae42a7e356b159b55145a6f76f1b3fee9e0e636ca8a760588631cc5db"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.6-py2-none-any.whl",
"has_sig": false,
"md5_digest": "a5d3f2532c14c3b41ef71fdbaac67d6d",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 13102806,
"upload_time": "2016-08-12T20:18:15",
"url": "https://files.pythonhosted.org/packages/13/b9/954e848317b567b24ed9688883af7166116a4c252b331252091eab19984b/PyNLPIR-0.4.6-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1599435f7e04b2d75b29a19b30330198",
"sha256": "75694204ee563a713de8eb709c381a75079abd314959e3c707bdee9c7a9a0b0b"
},
"downloads": -1,
"filename": "PyNLPIR-0.4.6.tar.gz",
"has_sig": false,
"md5_digest": "1599435f7e04b2d75b29a19b30330198",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13054774,
"upload_time": "2016-08-12T20:18:05",
"url": "https://files.pythonhosted.org/packages/ce/e9/4526b782461d3129d91bea5ef497bb2de51f4223f8dda246a5acf473b9ce/PyNLPIR-0.4.6.tar.gz"
}
],
"0.5": [
{
"comment_text": "",
"digests": {
"md5": "307d2a7e5f7d8f92379b2e675f107953",
"sha256": "bc8f727caf5bba27d6c9094bce4376e8f202c7d415a4cb8e250c7928875a322a"
},
"downloads": -1,
"filename": "PyNLPIR-0.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "307d2a7e5f7d8f92379b2e675f107953",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 13102895,
"upload_time": "2017-03-11T18:52:49",
"url": "https://files.pythonhosted.org/packages/5f/39/e5de25a229b2506aee66ac089e69b86681ce5976add0852dbadb0f56d0fc/PyNLPIR-0.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "849f9890917bac702f08f2ba9c1c41dc",
"sha256": "4e9809d91b85660f0a9182193ac76d378d4dfe52fabac551b89dd31584bd0afa"
},
"downloads": -1,
"filename": "PyNLPIR-0.5.tar.gz",
"has_sig": false,
"md5_digest": "849f9890917bac702f08f2ba9c1c41dc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13060535,
"upload_time": "2017-03-11T18:52:39",
"url": "https://files.pythonhosted.org/packages/8e/2a/da6368f020e01d7a14a65a06eec708ab740cb5bd43c508715605afb3651a/PyNLPIR-0.5.tar.gz"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "43e7ada6c5c5bc15242f14feb35419c5",
"sha256": "23d6ff51b5ad464cfff478ea8ab9814679b89a74793698826984e40cd2ea98e7"
},
"downloads": -1,
"filename": "PyNLPIR-0.5.1-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "43e7ada6c5c5bc15242f14feb35419c5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13103497,
"upload_time": "2017-03-18T15:19:38",
"url": "https://files.pythonhosted.org/packages/56/1c/421de7d21b08cef16c76b8f39631e99dd0f8fe12dfe97bc25b961e122afa/PyNLPIR-0.5.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1464cc4a59f2e253c1ca28cbe0e518fc",
"sha256": "3a5493e4b27b18e0b82ca7b37bfbbd50d7c90b1e81e49f4c32b341b26d159a4b"
},
"downloads": -1,
"filename": "PyNLPIR-0.5.1.tar.gz",
"has_sig": true,
"md5_digest": "1464cc4a59f2e253c1ca28cbe0e518fc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13061015,
"upload_time": "2017-03-18T15:19:53",
"url": "https://files.pythonhosted.org/packages/89/f6/624c6bef9c293cf08fc452490a46b9d2cfdae055df80d45a31a03d8064c8/PyNLPIR-0.5.1.tar.gz"
}
],
"0.5.2": [
{
"comment_text": "",
"digests": {
"md5": "335e7ca13dbf64ff936cf2db0d6bd2df",
"sha256": "2a953410c3376cccfb7093e3cc8c89f4515d7f9f5fe13ce9008d3f6ec2cb54a6"
},
"downloads": -1,
"filename": "PyNLPIR-0.5.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "335e7ca13dbf64ff936cf2db0d6bd2df",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13103662,
"upload_time": "2017-03-25T04:43:05",
"url": "https://files.pythonhosted.org/packages/0c/65/dd60a8ea3c1b61c85b338b057454694a9176717b0b7691458c653d5e9c84/PyNLPIR-0.5.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c8799d066192c9e5dbde11f0eb4ba75a",
"sha256": "712f1526028312501f4f1abe08f5d5c50fa78b407d7ac539ec89eb0edf4fdb50"
},
"downloads": -1,
"filename": "PyNLPIR-0.5.2.tar.gz",
"has_sig": true,
"md5_digest": "c8799d066192c9e5dbde11f0eb4ba75a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13061085,
"upload_time": "2017-03-25T04:43:29",
"url": "https://files.pythonhosted.org/packages/04/57/358465f8ebea2d2cf3e537dcd97d9036f3b02b5920754ee2396550ec9ccd/PyNLPIR-0.5.2.tar.gz"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "ce1816640ac41d6a9ab3098b28d7b707",
"sha256": "832bb9c22383fbd7508bccf5889aff58b7ab04fd77067a0a36d7102a7502b60b"
},
"downloads": -1,
"filename": "PyNLPIR-0.6.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ce1816640ac41d6a9ab3098b28d7b707",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13101912,
"upload_time": "2019-08-21T01:32:00",
"url": "https://files.pythonhosted.org/packages/7c/66/79d353119143f92fdf80aea0e8b5b8289baf60708a3202fc7a4d3a530d0e/PyNLPIR-0.6.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0eb3b27534cd9466f231a120df911d9a",
"sha256": "f4e8271658e1aefc47128d3fdf64b78bcfce359ce30f9bc7c188542532e23cb0"
},
"downloads": -1,
"filename": "PyNLPIR-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "0eb3b27534cd9466f231a120df911d9a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13056244,
"upload_time": "2019-08-21T01:32:07",
"url": "https://files.pythonhosted.org/packages/2a/d7/474be875809ea2a75c1e142f03d42f907aae84f24bc72bb752337be63053/PyNLPIR-0.6.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "ce1816640ac41d6a9ab3098b28d7b707",
"sha256": "832bb9c22383fbd7508bccf5889aff58b7ab04fd77067a0a36d7102a7502b60b"
},
"downloads": -1,
"filename": "PyNLPIR-0.6.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ce1816640ac41d6a9ab3098b28d7b707",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13101912,
"upload_time": "2019-08-21T01:32:00",
"url": "https://files.pythonhosted.org/packages/7c/66/79d353119143f92fdf80aea0e8b5b8289baf60708a3202fc7a4d3a530d0e/PyNLPIR-0.6.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0eb3b27534cd9466f231a120df911d9a",
"sha256": "f4e8271658e1aefc47128d3fdf64b78bcfce359ce30f9bc7c188542532e23cb0"
},
"downloads": -1,
"filename": "PyNLPIR-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "0eb3b27534cd9466f231a120df911d9a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13056244,
"upload_time": "2019-08-21T01:32:07",
"url": "https://files.pythonhosted.org/packages/2a/d7/474be875809ea2a75c1e142f03d42f907aae84f24bc72bb752337be63053/PyNLPIR-0.6.0.tar.gz"
}
]
}