{ "info": { "author": "Damir Cavar, Oren Baldinger, Maanvitha Gongalla, Anurag Kumar, Murali Kammili", "author_email": "damir@cavar.me", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# Python JSON-NLP Module\n\n(C) 2019 by [Damir Cavar], [Oren Baldinger], [Maanvitha Gongalla], [Anurag Kumar], Murali Kammili\n\nBrought to you by the [NLP-Lab.org]!\n\n\n## Introduction\n\nThere is a growing number of Natural Language Processing (NLP) tools, modules, pipelines. There does not seem to be any standard for the output format. Here we are focusing on a standard for the output format syntax. Some future version of [JSON-NLP] might address the output semantics as well.\n\n[JSON-NLP] is a standard for the most important outputs NLP pipelines and components can generate. The relevant documentation can be found in the [JSON-NLP] GitHub repo and on its website at the [NLP-Lab].\n\n\nThe Python [JSON-NLP] module contains general mapping functions for [JSON-NLP] to [CoNLL-U], a validator for the generated output, an NLP pipeline interface (for [Flair], [spaCy], [NLTK], [Polyglot], [Xrenner], etc.), and various utility functions.\n\nThere is a [Java JSON-NLP](https://github.com/dcavar/J-JSON-NLP) Maven module as well, and there are wrappers for numerous popular NLP pipelines and tools linked from the [NLP-Lab.org] website.\n\n\n## Installation\n\nFor more details, see [JSON-NLP].\n\nThis module is a wrapper for outputs from different NLP pipelines and modules into a standardized [JSON-NLP] format.\n\nTo install this package, run the following command:\n\n pip install pyjsonnlp\n\nYou might have to use *pip3* on some systems.\n\n## Validation\n\n[JSON-NLP] is based on a schema, built by [NLP-Lab.org], to comprehensively and concisely represent linguistic annotations. \nWe provide a validator to help ensure that generated JSON validates against the schema:\n\n result = MyPipeline().proces(text=\"I am a sentence\")\n assert pyjsonnlp.validation.is_valid(result)\n\n## Conversion\n\nTo enable interoperability with other annotation formats, we support conversions between them.\nNote that conversion could be lossy, if the relative depths of annotation are not the same.\nCurrently we have a [CoNLL-U] to [JSON-NLP] converter, that covers most annotations:\n\n pyjsonnlp.conversion.parse_conllu(conllu_text)\n\nTo convert the other direction:\n\n pyjsonnlp.conversion.to_conllu(jsonnlp)\n\n## Pipeline\n\n[JSON-NLP] provides a simple `Pipeline` interface that should be implemented for embedding into a microservice:\n\n from collections import OrderedDict\n\n class MockPipeline(pyjsonnlp.pipeline.Pipeline):\n @staticmethod\n def process(text='', coreferences=False, constituents=False, dependencies=False, expressions=False,\n **kwargs) -> OrderedDict: \n return OrderedDict()\n\nThe provided keyword arguments should be used to toggle on or off processing components within the method. \n\nIf you have deployed a `Pipeline` as a microservice (see below), we provide a local endpoint for a remotely \ndeployed `Pipeline` via the `RemotePipeline` class:\n\n pipeline = pyjsonnlp.pipeline.RemotePipeline('localhost', port=9000)\n print(pipeline.process(text='I am a sentence', dependencies=True, something='else'), spacing=2)\n\n## Microservice\n\nThe next step is the [JSON-NLP] a Microservice class, with a pre-built implementation of [Flask]. \n\n from pyjsonnlp.microservices.flask_server import FlaskMicroservice\n\n app = FlaskMicroservice(__name__, MyPipeline(), base_route='/')\n\nWe recommend creating a `server.py` with the `FlaskMicroservice` class, which extends the [Flask] app. A corresponding WSGI file would contain:\n\n from mypipeline.server import app as application\n\nTo disable a pipeline component (such as phrase structure parsing), add\n\n application.constituents = False\n\nThe full list of properties available that can be disabled or enabled are\n- constituents\n- dependencies\n- coreference\n- expressions\n\nThe microservice exposes the following URIs:\n- /constituents\n- /dependencies\n- /coreference\n- /expressions\n- /token_list\n\nThese URIs are shortcuts to disable the other components of the parse. In all cases, `tokenList` will be included in the `JSON-NLP` output. An example url is:\n\n http://localhost:5000/dependencies?text=I am a sentence\n\nText is provided to the microservice with the `text` parameter, via either `GET` or `POST`. If you pass `url` as a parameter, the microservice will scrape that url and process the text of the website.\n\nOther parameters specific to your pipeline implementation can be passed as well:\n\n http://localhost:5000?lang=en&constituents=0&text=I am a sentence.\n\n\n\n[Damir Cavar]: http://damir.cavar.me/ \"Damir Cavar\"\n[Oren Baldinger]: https://oren.baldinger.me/ \"Oren Baldinger\"\n[Anurag Kumar]: https://github.com/anuragkumar95/ \"Anurag Kumar\"\n[Maanvitha Gongalla]: https://maanvithag.github.io/MaanvithaGongalla/\n[NLP-Lab.org]: http://nlp-lab.org/ \"NLP-Lab.org\"\n[JSON-NLP]: https://github.com/dcavar/JSON-NLP \"JSON-NLP\"\n[Flair]: https://github.com/zalandoresearch/flair \"Flair\"\n[spaCy]: https://spacy.io/ \"spaCy\"\n[NLTK]: http://nltk.org/ \"Natural Language Processing Toolkit\"\n[Polyglot]: https://github.com/aboSamoor/polyglot \"Polyglot\" \n[Xrenner]: https://github.com/amir-zeldes/xrenner \"Xrenner\"\n[CoNLL-U]: https://universaldependencies.org/format.html \"CoNNL-U\"\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/dcavar/Py-JSON-NLP", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "pyjsonnlp", "package_url": "https://pypi.org/project/pyjsonnlp/", "platform": "", "project_url": "https://pypi.org/project/pyjsonnlp/", "project_urls": { "Homepage": "https://github.com/dcavar/Py-JSON-NLP" }, "release_url": "https://pypi.org/project/pyjsonnlp/0.2.33/", "requires_dist": [ "conllu (>=1.2.3)", "jsonschemanlplab (>=3.0.1.1)", "flask", "iso639", "bs4", "syntok (>=1.1.1)", "aioify (>=0.3.1)" ], "requires_python": ">=3.6", "summary": "The Python JSON-NLP package", "version": "0.2.33" }, "last_serial": 5671869, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "7fa3d2ab29971c6d10f7445936636620", "sha256": "99a588d0e8fcf24a8ce76389db7919b7bb36c9f79a12f9c319cecb41bdfa1d07" }, "downloads": -1, "filename": "pyjsonnlp-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7fa3d2ab29971c6d10f7445936636620", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11383, "upload_time": "2019-03-26T20:51:54", "url": "https://files.pythonhosted.org/packages/47/0e/0ef8c67ebeb467fee8ac8cec7e19b78dcd328d8e305378bffb1568f8f380/pyjsonnlp-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d21fbe0de613bd50643faf92c76ce14a", "sha256": "01120dde9d2f21f32471079ac1ae9f6f694601c124a8a46b9a609626b090b509" }, "downloads": -1, "filename": "pyjsonnlp-0.2.0.tar.gz", "has_sig": false, "md5_digest": "d21fbe0de613bd50643faf92c76ce14a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5732, "upload_time": "2019-03-26T20:51:56", "url": "https://files.pythonhosted.org/packages/56/01/88d1bdb8d65029748b96060d8eb74ba83a4749f7698d65eef98461031f43/pyjsonnlp-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "af85cbd3d2308ea05cde7dae3dffd1eb", "sha256": "bb80f4fc4f585118a01620872173d45a0f38479b15b54c5db7c9ffe3e1abac4b" }, "downloads": -1, "filename": "pyjsonnlp-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "af85cbd3d2308ea05cde7dae3dffd1eb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11540, "upload_time": "2019-03-26T21:02:05", "url": "https://files.pythonhosted.org/packages/c4/d4/2a1e7342528155b5afb030e0d86a0172b0e75ee0700d9d4c9da2f36e36a6/pyjsonnlp-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bdbf3ec392a10960e532d57377e6d285", "sha256": "3775c86b8cb20c4df392d0c459dfde71faffad0d47ff8a9e19612657ee8e292d" }, "downloads": -1, "filename": "pyjsonnlp-0.2.1.tar.gz", "has_sig": false, "md5_digest": "bdbf3ec392a10960e532d57377e6d285", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5894, "upload_time": "2019-03-26T21:02:12", "url": "https://files.pythonhosted.org/packages/72/e3/eef3b7ca2dac42f95f00aceaf393e362bb40c3ddf2cb73b0b5a161612f3b/pyjsonnlp-0.2.1.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "b254cbefce04a06d6cac516dfe742e1e", "sha256": "ecc149794421b4538a208024481c8bf39aca9627ca1f3365b51988f8dcbabc25" }, "downloads": -1, "filename": "pyjsonnlp-0.2.12-py3-none-any.whl", "has_sig": false, "md5_digest": "b254cbefce04a06d6cac516dfe742e1e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 51977, "upload_time": "2019-04-29T18:34:58", "url": "https://files.pythonhosted.org/packages/af/e2/0c4183ce63137ffa00f211483ecf1ac48b0083e53cc7cb9489509f8dfb8f/pyjsonnlp-0.2.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b58b502266b7fc36f13f3283d6f2d1b3", "sha256": "3be59f1cc0ee5ff5e2cfec470ff9d862a45314563da6cc8b1e49b1f106a0f3cd" }, "downloads": -1, "filename": "pyjsonnlp-0.2.12.tar.gz", "has_sig": false, "md5_digest": "b58b502266b7fc36f13f3283d6f2d1b3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39284, "upload_time": "2019-04-29T18:35:03", "url": "https://files.pythonhosted.org/packages/93/bc/63d6e2672eaab22e6e13888b3a5d6ed3010c4544f0cef1608626ed6e6fa9/pyjsonnlp-0.2.12.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "a02c1af81cd980000b82291d5b793ffc", "sha256": "a4134b124d22fe6e149dd2bf23cea691a0eb2cff5e93d25fc3e5f365e519fad4" }, "downloads": -1, "filename": "pyjsonnlp-0.2.13-py3-none-any.whl", "has_sig": false, "md5_digest": "a02c1af81cd980000b82291d5b793ffc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 51977, "upload_time": "2019-05-03T02:55:03", "url": "https://files.pythonhosted.org/packages/dc/a7/60adca636272b34239bf7ba41657ab22e5e6b811f6b98448a80693f368e3/pyjsonnlp-0.2.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc840d0a394317134c42cbfa18f4b540", "sha256": "ae17089157f705853be5b26eb1141e20e1cad46a25cbe97975f2f1635b4a7217" }, "downloads": -1, "filename": "pyjsonnlp-0.2.13.tar.gz", "has_sig": false, "md5_digest": "cc840d0a394317134c42cbfa18f4b540", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39299, "upload_time": "2019-05-03T02:55:04", "url": "https://files.pythonhosted.org/packages/90/77/baba3a67a5c7ff826a06c5c997a29840237623f724f47da170a7426dd006/pyjsonnlp-0.2.13.tar.gz" } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "67e3c95c3ef3f1c0e487b83fca05425a", "sha256": "36b56c7415bce0f786efed10462afdce196103fb43b8bec2160120e2606ea4d2" }, "downloads": -1, "filename": "pyjsonnlp-0.2.14-py3-none-any.whl", "has_sig": false, "md5_digest": "67e3c95c3ef3f1c0e487b83fca05425a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 51984, "upload_time": "2019-05-24T17:51:55", "url": "https://files.pythonhosted.org/packages/b5/66/8b1557b7525cadca54ab3daa9adb2d4859dd16f2dbcaeb2cdd02dd993e9f/pyjsonnlp-0.2.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a1c484265240640148251174d10fa41", "sha256": "a76adda6856eba1a2cf19a368ab1b16000045fa79d99d3d5a9c8618d554d3602" }, "downloads": -1, "filename": "pyjsonnlp-0.2.14.tar.gz", "has_sig": false, "md5_digest": "6a1c484265240640148251174d10fa41", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39311, "upload_time": "2019-05-24T17:51:57", "url": "https://files.pythonhosted.org/packages/4c/44/c91bfcb85dbd5bbbc1f5a0d03a7b03283b5e1baa651ced5f0269c40b34f7/pyjsonnlp-0.2.14.tar.gz" } ], "0.2.15": [ { "comment_text": "", "digests": { "md5": "fe4e04eaad83325e348b61d8d95e1cc3", "sha256": "2cfff5a38d76301b45601e0a622abf5cdc4cd44a6b85f2058e033bd1d4397846" }, "downloads": -1, "filename": "pyjsonnlp-0.2.15-py3-none-any.whl", "has_sig": false, "md5_digest": "fe4e04eaad83325e348b61d8d95e1cc3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 51981, "upload_time": "2019-05-24T18:15:24", "url": "https://files.pythonhosted.org/packages/1a/03/050a0d7abf16ca2d2d0fdcf10705d14c302db85873f1bfcd29765ee67c60/pyjsonnlp-0.2.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28d519e092880610c8b46544a98b724e", "sha256": "5707ce015447b67ca94b75f0a20065c30ee5b2d9c5d5ffc79c25bdc3243966db" }, "downloads": -1, "filename": "pyjsonnlp-0.2.15.tar.gz", "has_sig": false, "md5_digest": "28d519e092880610c8b46544a98b724e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39312, "upload_time": "2019-05-24T18:15:26", "url": "https://files.pythonhosted.org/packages/1a/a9/6a312e3856975a5e33d6313baaff76a4e465365a7a0d7c038d11c44415e5/pyjsonnlp-0.2.15.tar.gz" } ], "0.2.16": [ { "comment_text": "", "digests": { "md5": "bac76b07768d24f75841af97bc30512b", "sha256": "27c2c5e1e09ca68e006459a040782e5e86419a5d973c732c7bc885fc5198dd14" }, "downloads": -1, "filename": "pyjsonnlp-0.2.16-py3-none-any.whl", "has_sig": false, "md5_digest": "bac76b07768d24f75841af97bc30512b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 51998, "upload_time": "2019-05-25T16:45:58", "url": "https://files.pythonhosted.org/packages/0b/04/5d5f5c15a935025b6cd800d04bf16c2958588731aa6c6613c2ac537bc59e/pyjsonnlp-0.2.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aaf046bb1d9de4ec8625baa5d12b0a49", "sha256": "baaafe4355a84059009998043130c99a58be148f5403f077c34f6c87557d7edf" }, "downloads": -1, "filename": "pyjsonnlp-0.2.16.tar.gz", "has_sig": false, "md5_digest": "aaf046bb1d9de4ec8625baa5d12b0a49", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39330, "upload_time": "2019-05-25T16:45:59", "url": "https://files.pythonhosted.org/packages/2a/9b/f45c5d0c008507ee80cf63b189e568770139722d21484e787531ade3918f/pyjsonnlp-0.2.16.tar.gz" } ], "0.2.18": [ { "comment_text": "", "digests": { "md5": "2e69b76d3eea20bd07bc6d19a8e4e700", "sha256": "4542220befec9ec24b140cbab4d4d84075a9cdafb7b87404ec7eef345a5a029a" }, "downloads": -1, "filename": "pyjsonnlp-0.2.18-py3-none-any.whl", "has_sig": false, "md5_digest": "2e69b76d3eea20bd07bc6d19a8e4e700", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 52037, "upload_time": "2019-05-25T17:43:06", "url": "https://files.pythonhosted.org/packages/16/45/60725c29e6d6cea64dff591d8822c4ad8e7df743b2ccbc04a231cae6c8e9/pyjsonnlp-0.2.18-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c91baa5d523972cd103e2e086ef2f3fd", "sha256": "56c14d263b28dda66ccdce08407d7f5e3d607e4212acb26763b7615cf09bba75" }, "downloads": -1, "filename": "pyjsonnlp-0.2.18.tar.gz", "has_sig": false, "md5_digest": "c91baa5d523972cd103e2e086ef2f3fd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39359, "upload_time": "2019-05-25T17:43:07", "url": "https://files.pythonhosted.org/packages/b1/8f/bae7ce3664bd7b95e4c330d4554fe24226dde0ddb60b0ab33c87bc4eea44/pyjsonnlp-0.2.18.tar.gz" } ], "0.2.20": [ { "comment_text": "", "digests": { "md5": "f1e7a3a5b333009baac990a015a223bc", "sha256": "d4bad9d800283eeddcea33722715bb64f8b1d5ad43d0953a9fa560c07e40fea1" }, "downloads": -1, "filename": "pyjsonnlp-0.2.20-py3-none-any.whl", "has_sig": false, "md5_digest": "f1e7a3a5b333009baac990a015a223bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 52053, "upload_time": "2019-06-06T16:23:55", "url": "https://files.pythonhosted.org/packages/b3/ba/aca50c2bd4fc26dc7bf174c04bc2f86a4fd9b34388e137f6060f4c2ce3c5/pyjsonnlp-0.2.20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "accb1122fe504c629c46ac806e6909c3", "sha256": "f01cd023d2cdafdc761d961c25159fa05f7a34618e80d8071c6dda24e65f2a20" }, "downloads": -1, "filename": "pyjsonnlp-0.2.20.tar.gz", "has_sig": false, "md5_digest": "accb1122fe504c629c46ac806e6909c3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39383, "upload_time": "2019-06-06T16:23:56", "url": "https://files.pythonhosted.org/packages/e8/81/c4f4e23121c85da89f21e04e04e2ef429bfe3f66d6dca0c45ae508586f93/pyjsonnlp-0.2.20.tar.gz" } ], "0.2.24": [ { "comment_text": "", "digests": { "md5": "e9388f63900b0f7ab7b3e625ae565939", "sha256": "16c108c0bae9d0db3a453ac1f332d6ecc33222781a1487cb1f3296c81752cbf6" }, "downloads": -1, "filename": "pyjsonnlp-0.2.24-py3-none-any.whl", "has_sig": false, "md5_digest": "e9388f63900b0f7ab7b3e625ae565939", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 52268, "upload_time": "2019-06-07T02:25:29", "url": "https://files.pythonhosted.org/packages/16/3d/61241ea64945777e9a3eff2407f4ac6a6d9109610322169b9e42728626a6/pyjsonnlp-0.2.24-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3e9ae2dfe66ad8010f86dbbaae0167a", "sha256": "775124b7507cf7757f17330f40adf7e91f6d4d54bc1a3e4e0130c80282c9c891" }, "downloads": -1, "filename": "pyjsonnlp-0.2.24.tar.gz", "has_sig": false, "md5_digest": "e3e9ae2dfe66ad8010f86dbbaae0167a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39581, "upload_time": "2019-06-07T02:25:31", "url": "https://files.pythonhosted.org/packages/54/e8/ee0949f668bbabdbece21ccfa51b861e02e5b7a4d00448631a76ed7f1d25/pyjsonnlp-0.2.24.tar.gz" } ], "0.2.30": [ { "comment_text": "", "digests": { "md5": "129d060e13d2787e9c2755fd2b87ca1a", "sha256": "492cfdf0deabdb6dd17368093b786c558e651d8239812b47a944008c2a8fd0c0" }, "downloads": -1, "filename": "pyjsonnlp-0.2.30-py3-none-any.whl", "has_sig": false, "md5_digest": "129d060e13d2787e9c2755fd2b87ca1a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 52048, "upload_time": "2019-06-07T17:01:18", "url": "https://files.pythonhosted.org/packages/f9/b9/68520cf659a58509e2b0323a1107e4f6419579a76bd29eaa234ff1c375f4/pyjsonnlp-0.2.30-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "641200f3f94a8f0f756359a6bd20854b", "sha256": "11fb10010f985932e560ddd9c8b5424aad086527826635b790882c0710dde10f" }, "downloads": -1, "filename": "pyjsonnlp-0.2.30.tar.gz", "has_sig": false, "md5_digest": "641200f3f94a8f0f756359a6bd20854b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39401, "upload_time": "2019-06-07T17:01:19", "url": "https://files.pythonhosted.org/packages/d8/6b/39e73effbdbe7647c61b8bcfd2b8114d625659cef8a68dc49f78931d6a42/pyjsonnlp-0.2.30.tar.gz" } ], "0.2.33": [ { "comment_text": "", "digests": { "md5": "f392c1bf2181981fc28ea81ac64f72be", "sha256": "29933d8cfdd793315b66462445936edadf42b81f4e5bff2fd9b8099e8b2ebba6" }, "downloads": -1, "filename": "pyjsonnlp-0.2.33-py3-none-any.whl", "has_sig": false, "md5_digest": "f392c1bf2181981fc28ea81ac64f72be", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 52061, "upload_time": "2019-08-13T13:25:43", "url": "https://files.pythonhosted.org/packages/04/b1/02e08ee275c257379b1c52622abde9e0c2b35b12a3489523a42dd3b69b14/pyjsonnlp-0.2.33-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03e1f0be2e9edd781928e7950359d39c", "sha256": "f9b6af4fcf39be3807e6aaa87f2df94d4bec1b2f955c84d0d0e60bbb41920fed" }, "downloads": -1, "filename": "pyjsonnlp-0.2.33.tar.gz", "has_sig": false, "md5_digest": "03e1f0be2e9edd781928e7950359d39c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39437, "upload_time": "2019-08-13T13:25:44", "url": "https://files.pythonhosted.org/packages/b1/e1/68cf474ec5c5fca34538f461324106c660ca78a630c6fbbbc8cf2097d7bd/pyjsonnlp-0.2.33.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "0b1564b2c8ee6de27ba11fbe0ea63ed5", "sha256": "6c74eb7924d90f610810580a420820786cc73402e8d973b357161be12b280b36" }, "downloads": -1, "filename": "pyjsonnlp-0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "0b1564b2c8ee6de27ba11fbe0ea63ed5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33859, "upload_time": "2019-04-09T19:33:56", "url": "https://files.pythonhosted.org/packages/db/0f/eb2995b641cb9a609b5115fb0ec3c280db012ee3ea3b975420b80df7e7bf/pyjsonnlp-0.2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d92bf7ce485ee7db8007820d0ed7d7b", "sha256": "46fdc112bee0e217d36d3193bcba6e2171806e820018882d48704c3169d79cdb" }, "downloads": -1, "filename": "pyjsonnlp-0.2.4.tar.gz", "has_sig": false, "md5_digest": "5d92bf7ce485ee7db8007820d0ed7d7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23065, "upload_time": "2019-04-09T19:33:57", "url": "https://files.pythonhosted.org/packages/75/24/c05166d2e62af75b911569329be941ba951b488b1a2ea01841acbe390950/pyjsonnlp-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "a33db78a8414d502b4f327677408272b", "sha256": "6de9de26bcc8c2becff4740d3d7a1d21ada8f50ae1aa5b3a185d1ddbe8bdaaa4" }, "downloads": -1, "filename": "pyjsonnlp-0.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "a33db78a8414d502b4f327677408272b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 35028, "upload_time": "2019-04-11T19:08:12", "url": "https://files.pythonhosted.org/packages/64/50/911aad83e8fe472935cc3fcee7efd182cfee2e740be189250ccd3e07c1b7/pyjsonnlp-0.2.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6fdd34d12a965a60a765d19429f279d2", "sha256": "070fcf50fe2a1a9f10703c63794f6754487a1d01c3a21d6bfb1c0acf28b19d97" }, "downloads": -1, "filename": "pyjsonnlp-0.2.5.tar.gz", "has_sig": false, "md5_digest": "6fdd34d12a965a60a765d19429f279d2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 25397, "upload_time": "2019-04-11T19:08:14", "url": "https://files.pythonhosted.org/packages/e6/34/815326f0b408119247344163a145d87d8b08de01bd966dfce7b5fe0dc044/pyjsonnlp-0.2.5.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "c50c7b18936e9c7ec905dff0791c37cb", "sha256": "ea0448027ff719dd35e6681289ccaa98117a069671f65821ab9463a224ef9201" }, "downloads": -1, "filename": "pyjsonnlp-0.2.9-py3-none-any.whl", "has_sig": false, "md5_digest": "c50c7b18936e9c7ec905dff0791c37cb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 45930, "upload_time": "2019-04-23T18:48:58", "url": "https://files.pythonhosted.org/packages/06/22/0c8679ee9e5dfb0cd92b6e407d4634edc356f41fca7c80d94b4a31f9d851/pyjsonnlp-0.2.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9bcfe27678638feb755afba7ae7a07a2", "sha256": "350cc7478d10ed8dc2653e5f6e2e49473c6dde9fbcc9717367d5a3c873d0091a" }, "downloads": -1, "filename": "pyjsonnlp-0.2.9.tar.gz", "has_sig": false, "md5_digest": "9bcfe27678638feb755afba7ae7a07a2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 35206, "upload_time": "2019-04-23T18:49:00", "url": "https://files.pythonhosted.org/packages/3a/95/cd348483f6a1d476be35160b077d557ba4df6819c5964af9e1756342ce32/pyjsonnlp-0.2.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f392c1bf2181981fc28ea81ac64f72be", "sha256": "29933d8cfdd793315b66462445936edadf42b81f4e5bff2fd9b8099e8b2ebba6" }, "downloads": -1, "filename": "pyjsonnlp-0.2.33-py3-none-any.whl", "has_sig": false, "md5_digest": "f392c1bf2181981fc28ea81ac64f72be", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 52061, "upload_time": "2019-08-13T13:25:43", "url": "https://files.pythonhosted.org/packages/04/b1/02e08ee275c257379b1c52622abde9e0c2b35b12a3489523a42dd3b69b14/pyjsonnlp-0.2.33-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03e1f0be2e9edd781928e7950359d39c", "sha256": "f9b6af4fcf39be3807e6aaa87f2df94d4bec1b2f955c84d0d0e60bbb41920fed" }, "downloads": -1, "filename": "pyjsonnlp-0.2.33.tar.gz", "has_sig": false, "md5_digest": "03e1f0be2e9edd781928e7950359d39c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39437, "upload_time": "2019-08-13T13:25:44", "url": "https://files.pythonhosted.org/packages/b1/e1/68cf474ec5c5fca34538f461324106c660ca78a630c6fbbbc8cf2097d7bd/pyjsonnlp-0.2.33.tar.gz" } ] }