{ "info": { "author": "Ruinan(Victor) Zhang, Jun Yin", "author_email": "zhangruinan@smoothnlp.com, yinjun@smoothnlp.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# [SmoothNLP](http://www.smoothnlp.com)\n[![GitHub release](https://img.shields.io/badge/Version-0.2-green.svg)](https://github.com/zhangruinan/SmoothNLP/releases)\n****\t\n\n| Author | Email | \n| ----- | ------ | \n| Victor | zhangruinan@smoothnlp.com |\n| Yinjun | yinjun@smoothnlp.com |\n| \u6d77\u8707 | yuzhe_wang@smoothnlp.com | \n\n****\n\n\n### Install \u5b89\u88c5\n```shell\npip install smoothnlp>=0.2.16\n```\n\n\n#### 1.Tokenize\u5206\u8bcd\n```python\n>> import smoothnlp \n>> smoothnlp.segment('\u6b22\u8fce\u5728Python\u4e2d\u4f7f\u7528SmoothNLP')\n['\u6b22\u8fce', '\u5728', 'Python', '\u4e2d', '\u4f7f\u7528', 'SmoothNLP']\n```\n\n\n#### 2.Postag\u8bcd\u6027\u6807\u6ce8\n```python\n>> smoothnlp.postag('\u6b22\u8fce\u4f7f\u7528smoothnlp\u7684Python\u63a5\u53e3')\n[{'token': '\u6b22\u8fce', 'postag': 'VV'},\n {'token': '\u5728', 'postag': 'P'},\n {'token': 'Python', 'postag': 'NN'},\n {'token': '\u4e2d', 'postag': 'LC'},\n {'token': '\u4f7f\u7528', 'postag': 'VV'},\n {'token': 'SmoothNLP', 'postag': 'NN'}]\n```\n\n\n#### 3.NER \u5b9e\u4f53\u8bc6\u522b\n```python\n>> smoothnlp.ner(\"\u4e2d\u56fd\u5e73\u5b892019\u5e74\u5ea6\u957f\u671f\u670d\u52a1\u8ba1\u5212\u4e8e2019\u5e745\u67087\u65e5\u81f35\u670814\u65e5\u901a\u8fc7\u4e8c\u7ea7\u5e02\u573a\u5b8c\u6210\u8d2d\u80a1\" )\n[{'charStart': 0, 'charEnd': 4, 'text': '\u4e2d\u56fd\u5e73\u5b89', 'nerTag': 'COMPANY_NAME', 'sTokenList': {'1': {'token': '\u4e2d\u56fd\u5e73\u5b89', 'postag': None}}, 'normalizedEntityValue': '\u4e2d\u56fd\u5e73\u5b89'},\n{'charStart': 4, 'charEnd': 9, 'text': '2019\u5e74', 'nerTag': 'NUMBER', 'sTokenList': {'2': {'token': '2019\u5e74', 'postag': 'CD'}}, 'normalizedEntityValue': '2019\u5e74'},\n{'charStart': 17, 'charEnd': 26, 'text': '2019\u5e745\u67087\u65e5', 'nerTag': 'DATETIME', 'sTokenList': {'8': {'token': '2019\u5e745\u6708', 'postag': None}, '9': {'token': '7\u65e5', 'postag': None}}, 'normalizedEntityValue': '2019\u5e745\u67087\u65e5'},\n{'charStart': 27, 'charEnd': 32, 'text': '5\u670814\u65e5', 'nerTag': 'DATETIME', 'sTokenList': {'11': {'token': '5\u6708', 'postag': None}, '12': {'token': '14\u65e5', 'postag': None}}, 'normalizedEntityValue': '5\u670814\u65e5'}]\n```\n\n\n#### 4. \u91d1\u878d\u5b9e\u4f53\u8bc6\u522b\n```python\n>> smoothnlp.company_recognize(\"\u65f7\u89c6\u79d1\u6280\u9884\u8ba1\u5c06\u5728\u4eca\u5e749\u6708\u5728\u6e2fIPO\")\n[{'charStart': 0,\n 'charEnd': 4,\n 'text': '\u65f7\u89c6\u79d1\u6280',\n 'nerTag': 'COMPANY_NAME',\n 'sTokenList': {'1': {'token': '\u65f7\u89c6\u79d1\u6280', 'postag': None}},\n 'normalizedEntityValue': '\u65f7\u89c6\u79d1\u6280'}]\n```\n\n\n#### 5.\u6570\u5b57\u5b9e\u4f53\u8bc6\u522b\n```python\n>> smoothnlp.number_recognize(\"\u767e\u5ea6\u79fb\u52a8\u5e94\u7528\u7684\u6708\u6d3b\u8dc3\u8bbe\u5907\u8fbe11\u4ebf\u53f0\")\n[{'charStart': 13,\n 'charEnd': 16,\n 'text': '11\u4ebf',\n 'nerTag': 'NUMBER',\n 'sTokenList': {'9': {'token': '11\u4ebf', 'postag': 'm'}},\n 'normalizedEntityValue': '1100000000'}]\n```\n\n#### 6. \u91d1\u989d\u8bc6\u522b\u4e0e\u7ed3\u6784\u5316\n```python\n>> smoothnlp.money_recognize(\"\u767e\u5ea6\u5e02\u503c\u8dcc\u7834400\u4ebf\u7f8e\u5143\")\n[{'charStart': 6,\n 'charEnd': 12,\n 'text': '400\u4ebf\u7f8e\u5143',\n 'nerTag': 'MONEY',\n 'sTokenList': {'4': {'token': '400\u4ebf', 'postag': 'm'},\n '5': {'token': '\u7f8e\u5143', 'postag': 'M'}},\n 'normalizedEntityValue': '$40000000000'}]\n```\n\n#### 7. \u65e5\u671f\u63cf\u8ff0\u7ed3\u6784\u5316\n```python\n>> smoothnlp.parse_date(\"2018\u5e74\u4e00\u5b63\u5ea6\")\n{'startDate': '2018-01-01', 'endDate': '2018-03-31'}\n```\n\n----------\n\n## Java\n**SmoothNLP**\u9879\u76ee\u7684\u4e3b\u8981\u529f\u80fd\u90fd\u5728Java\u4e2d\u6709\u5b9e\u73b0, \u6253\u5305\u597d\u7684Jar\u6587\u4ef6\u4f1a\u5728[Release\u9875\u9762]\u5b9a\u671f\u66f4\u65b0, \u6216\u8005\u5728\u63d0\u4f9b\u7684[maven](https://github.com/smoothnlp/SmoothNLP/tree/master/smoothnlp_maven)\u9879\u76ee\u4ee3\u7801\u4e2d, \u76f4\u63a5\u7f16\u8bd1\u5373\u53ef\n```\ngit clone https://github.com/smoothnlp/SmoothNLP.git\ncd smoothnlp_maven\nmvn clean package\n```\n\u7f16\u8bd1\u597d\u7684Jar\u6587\u4ef6\u4f1a\u5728 `smoothnlp_maven/target/smoothnlp-*.jar`\n\n\n### \u5e38\u89c1\u95ee\u9898\n* \u5982\u679c\u60a8\u4f7f\u7528\u7684Mac,\u4e14\u7528anaconda\u7ba1\u7406python, \u53ef\u80fd\u4f1a\u78b0\u5230\u62a5\u9519, \u8bf7\u5c1d\u8bd5: \n```\nexport MACOSX_DEPLOYMENT_TARGET=10.10 CFLAGS='-stdlib=libc++' \npip install jpype1 \npip install smoothnlp\n```\n\n\n\n\n\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/smoothnlp/SmoothNLP", "keywords": "Chinese,NLP,Python,SmoothNLP", "license": "", "maintainer": "", "maintainer_email": "", "name": "SmoothNLP", "package_url": "https://pypi.org/project/SmoothNLP/", "platform": "", "project_url": "https://pypi.org/project/SmoothNLP/", "project_urls": { "Homepage": "https://github.com/smoothnlp/SmoothNLP" }, "release_url": "https://pypi.org/project/SmoothNLP/0.2.16/", "requires_dist": [ "numpy", "jpype1 (>=0.6.2)", "requests", "sqlalchemy", "pygtrie" ], "requires_python": "", "summary": "Python Package for SmoothNLP", "version": "0.2.16" }, "last_serial": 5780747, "releases": { "0.2": [ { "comment_text": "", "digests": { "md5": "470c6931c6c4724f074d55b2d8032b59", "sha256": "bbf85a3e8aff811e32e84383289ba18aba2a5fb382b34264678d1980a270e337" }, "downloads": -1, "filename": "SmoothNLP-0.2-py3.6.egg", "has_sig": false, "md5_digest": "470c6931c6c4724f074d55b2d8032b59", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 7159, "upload_time": "2019-05-13T05:59:33", "url": "https://files.pythonhosted.org/packages/82/bb/e63d2711967f00c82b182874821f0e5efa81a7d0c3f3b942444f51fd8ecc/SmoothNLP-0.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "d6a18b21db0a43285207bfe5fa6bcc7e", "sha256": "4d047a7148cdbddecef11d0e2c94ce8196cec85a29be2655e85201717652bb04" }, "downloads": -1, "filename": "SmoothNLP-0.2.tar.gz", "has_sig": false, "md5_digest": "d6a18b21db0a43285207bfe5fa6bcc7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3256, "upload_time": "2019-05-13T05:59:35", "url": "https://files.pythonhosted.org/packages/e2/50/b686e07d59ef89db82471dee1156c9a5c4a400564651dda90339a46a7844/SmoothNLP-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "2cbf6e1a17d1d6c9706a842cda0a4806", "sha256": "220b0cd647ee903b5033e90aa7d3197762d92980cec092f7188854608f487c7a" }, "downloads": -1, "filename": "SmoothNLP-0.2.1.tar.gz", "has_sig": false, "md5_digest": "2cbf6e1a17d1d6c9706a842cda0a4806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3263, "upload_time": "2019-05-13T06:12:10", "url": "https://files.pythonhosted.org/packages/60/00/36607c32ed41cda3243b9db11e9a180c1cab1a84fe849cb75fca51454752/SmoothNLP-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "20dba5e2d489c8b53a7fd9ecacd03fec", "sha256": "e637764534c347ed3fc597c5550b884f5d33be986b8552e5840b3a42c3fa422e" }, "downloads": -1, "filename": "SmoothNLP-0.2.10.tar.gz", "has_sig": false, "md5_digest": "20dba5e2d489c8b53a7fd9ecacd03fec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7265, "upload_time": "2019-06-03T05:18:22", "url": "https://files.pythonhosted.org/packages/1f/46/8865f11649a4281f7a4ea43d6465bec66da3795ed922d8ed0380a6922ab6/SmoothNLP-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "fd26a4ea5fd0d88d23f82d945aa6508a", "sha256": "1f1d5fcbb996e59b43a7e367217700de607d19443039ae3285e01ac5e3477ec1" }, "downloads": -1, "filename": "SmoothNLP-0.2.11.tar.gz", "has_sig": false, "md5_digest": "fd26a4ea5fd0d88d23f82d945aa6508a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7374, "upload_time": "2019-06-09T03:38:29", "url": "https://files.pythonhosted.org/packages/41/09/641bf47706621a834b7d741436e52481bd0d89fed9074edb604a5bfe839a/SmoothNLP-0.2.11.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "0d428d0cf16b4fc55c878bcda1731f12", "sha256": "13cf84ee3c8523d8571130a72e4ed497f9c4943f4174c2177719e17eae78a237" }, "downloads": -1, "filename": "SmoothNLP-0.2.12.tar.gz", "has_sig": false, "md5_digest": "0d428d0cf16b4fc55c878bcda1731f12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7376, "upload_time": "2019-06-26T03:46:44", "url": "https://files.pythonhosted.org/packages/72/ea/e1f2c6dfc3e87618e88e41b0f7297a774571dc4abf53cb644ff195de553a/SmoothNLP-0.2.12.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "0fe97bcb4f53a63e2edc38e49d7a584d", "sha256": "6024ee59abccccff73f24580fc3e6abfd591450b591b857f69d24be7a6c489d4" }, "downloads": -1, "filename": "SmoothNLP-0.2.13.tar.gz", "has_sig": false, "md5_digest": "0fe97bcb4f53a63e2edc38e49d7a584d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7758, "upload_time": "2019-07-09T02:54:36", "url": "https://files.pythonhosted.org/packages/9e/60/86aed9ffea314faa4a7712ba683fca5db1469c8ba2e7c4055b0d99ea7d42/SmoothNLP-0.2.13.tar.gz" } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "5226ab14b44d8d8c9fe796d540cde8cb", "sha256": "5bae16cec30c55154cda9a3638211afb73e297c842a3346e4c5fb4c09aa6f957" }, "downloads": -1, "filename": "SmoothNLP-0.2.14.tar.gz", "has_sig": false, "md5_digest": "5226ab14b44d8d8c9fe796d540cde8cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7746, "upload_time": "2019-07-09T03:00:26", "url": "https://files.pythonhosted.org/packages/eb/eb/3fef0aceb0e11351aa01bdc50d6d872df2daaa736839c5b51074b90e9225/SmoothNLP-0.2.14.tar.gz" } ], "0.2.15": [ { "comment_text": "", "digests": { "md5": "60c5aef4620a7fc85853e830464eb254", "sha256": "69d0d3b9a787675de7ed036a074990f42e7e7638952772fbf24306fe956f6ae0" }, "downloads": -1, "filename": "SmoothNLP-0.2.15-py3.7.egg", "has_sig": false, "md5_digest": "60c5aef4620a7fc85853e830464eb254", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 33835, "upload_time": "2019-09-04T11:39:38", "url": "https://files.pythonhosted.org/packages/62/0d/9e8e8a4937b5a531b095b8d8164b777976951b86c94ee68a9eb27ba33508/SmoothNLP-0.2.15-py3.7.egg" }, { "comment_text": "", "digests": { "md5": "a45f24c36dad0767fe5556cb33e1c093", "sha256": "9aa744c838ba8ed47494aea84e35100b8e24f142773dbc69b770761c03baed34" }, "downloads": -1, "filename": "SmoothNLP-0.2.15-py3-none-any.whl", "has_sig": false, "md5_digest": "a45f24c36dad0767fe5556cb33e1c093", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24063, "upload_time": "2019-08-31T14:42:17", "url": "https://files.pythonhosted.org/packages/eb/ae/019eb2ba36d8202658bc430c1945a1c82669a63135855791bb90c338f231/SmoothNLP-0.2.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c960ac1f5fc8ac09c120d5099a170b8", "sha256": "86d4226b3a3a90cf30bcaec9792bc9440685f6dd8c07564c4874ea8b23ef9364" }, "downloads": -1, "filename": "SmoothNLP-0.2.15.tar.gz", "has_sig": false, "md5_digest": "2c960ac1f5fc8ac09c120d5099a170b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11150, "upload_time": "2019-08-31T14:42:19", "url": "https://files.pythonhosted.org/packages/a5/46/e45a507b4ad3ed64fe432d961a997e92f1bb29e878e47e3e9713548a1be5/SmoothNLP-0.2.15.tar.gz" } ], "0.2.16": [ { "comment_text": "", "digests": { "md5": "6897eb02ba38129a0d6ace889cdcccc0", "sha256": "2780b7a9de6bb23f3a04895bcf9a050aa70047d173409e1a225ebee6de4077d8" }, "downloads": -1, "filename": "SmoothNLP-0.2.16-py3.7.egg", "has_sig": false, "md5_digest": "6897eb02ba38129a0d6ace889cdcccc0", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 31132, "upload_time": "2019-09-04T11:39:42", "url": "https://files.pythonhosted.org/packages/7b/10/4df280f5f458f584c35e8180e7b2c03c3e4f721536d599dfa9e124d14a82/SmoothNLP-0.2.16-py3.7.egg" }, { "comment_text": "", "digests": { "md5": "6b13a9e93bff5ac05687d751173710d8", "sha256": "a5f47fc62ce53df13aed3c0cd3d74449e481b2e56b7b614ea7294893348cdfc9" }, "downloads": -1, "filename": "SmoothNLP-0.2.16-py3-none-any.whl", "has_sig": false, "md5_digest": "6b13a9e93bff5ac05687d751173710d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26459, "upload_time": "2019-09-04T11:39:35", "url": "https://files.pythonhosted.org/packages/ac/17/bf0462915403f4120dde9ab3e9579a61baaa379d082ee5e570cce2cb9e62/SmoothNLP-0.2.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d75229b1300a1cb33984a8e0f91ef864", "sha256": "13c3359677e27d31745a601eed13715819eedeed019ddcefcd91533691cca475" }, "downloads": -1, "filename": "SmoothNLP-0.2.16.tar.gz", "has_sig": false, "md5_digest": "d75229b1300a1cb33984a8e0f91ef864", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11604, "upload_time": "2019-09-04T11:39:44", "url": "https://files.pythonhosted.org/packages/a1/46/5c8f5f6ee84ba97f16ce97ee2e10b59d8aa6420dcec4c57c4a4dde9fa7f1/SmoothNLP-0.2.16.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "848e1012f2f7536859e5dbeb8bb3705f", "sha256": "7deb880ae1ed732985cad16ee0f42c6a670a5afde4fc29c804274be347aee68c" }, "downloads": -1, "filename": "SmoothNLP-0.2.2-py3.6.egg", "has_sig": false, "md5_digest": "848e1012f2f7536859e5dbeb8bb3705f", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 18101, "upload_time": "2019-05-16T10:44:10", "url": "https://files.pythonhosted.org/packages/1d/b5/cb214bd36f77e16f949063ac9d29a63511e8ac94e4210dc7b556031b6b20/SmoothNLP-0.2.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "7eeb4b7e11c5993ae3904c2612c0183f", "sha256": "11800e8efd260671a15f24abe257ce83bcc2484931d045c0d19345f87b609bcb" }, "downloads": -1, "filename": "SmoothNLP-0.2.2.tar.gz", "has_sig": false, "md5_digest": "7eeb4b7e11c5993ae3904c2612c0183f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3280, "upload_time": "2019-05-13T07:58:38", "url": "https://files.pythonhosted.org/packages/b6/b6/7ddf25d94cd115d64c4bd6a3257485f0f27faf16b144feaefcc466bbdd1e/SmoothNLP-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "fa20e45281e01d6cae3240fbef641632", "sha256": "76ba6a35bdcf68f8261f76a88380887a3604a6672ab7593a6a3fcafab5ddcb42" }, "downloads": -1, "filename": "SmoothNLP-0.2.3.tar.gz", "has_sig": false, "md5_digest": "fa20e45281e01d6cae3240fbef641632", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6450, "upload_time": "2019-05-16T10:49:05", "url": "https://files.pythonhosted.org/packages/f5/c2/a2054ebd1e6f6d516911ba9b191c6af7e3dc077dc3f6b7941aaef115828e/SmoothNLP-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "e393e4d57b50aef8eca941e89e40ab8f", "sha256": "b74c2b209c321b0339863a60f8975abcda59e93fca7cb20444bf93bc94f26650" }, "downloads": -1, "filename": "SmoothNLP-0.2.4.tar.gz", "has_sig": false, "md5_digest": "e393e4d57b50aef8eca941e89e40ab8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6444, "upload_time": "2019-05-16T10:58:06", "url": "https://files.pythonhosted.org/packages/6a/8b/275acdb115a40f6d23fa92fc61603dc6f0c55c432c7ef367c17a49a959b1/SmoothNLP-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "027ce800d6aa7e3b9054d495c462b09c", "sha256": "17ceaa6e8d64f4a66acc16b5a9c35b3608a7a756c6c94d9f213694b97f15df22" }, "downloads": -1, "filename": "SmoothNLP-0.2.5.tar.gz", "has_sig": false, "md5_digest": "027ce800d6aa7e3b9054d495c462b09c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7259, "upload_time": "2019-05-22T10:32:49", "url": "https://files.pythonhosted.org/packages/d2/d5/1cd4d91e6fa3ce049e594cde8c611b46546aa1ef8604452f1837bbba5a82/SmoothNLP-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "cf76111dac999958d2dedc311b37aa45", "sha256": "8e253e3caca09e5c0b75fa9a46a6a6bb230bace2ce5a9b9796c807c07019ae72" }, "downloads": -1, "filename": "SmoothNLP-0.2.6.tar.gz", "has_sig": false, "md5_digest": "cf76111dac999958d2dedc311b37aa45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7293, "upload_time": "2019-05-22T10:45:02", "url": "https://files.pythonhosted.org/packages/05/a6/9ad2e8dbaa85c6fb3773cefc2dfe7b1f77938328b206833ea080ec8092cf/SmoothNLP-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "e0abb7baed3d0a83146ff0b8d519137d", "sha256": "8d6440138efd509ce7394f14a5204b65ac902fc6d7b0a065dab5577b07337cc3" }, "downloads": -1, "filename": "SmoothNLP-0.2.7.tar.gz", "has_sig": false, "md5_digest": "e0abb7baed3d0a83146ff0b8d519137d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7263, "upload_time": "2019-05-22T10:46:15", "url": "https://files.pythonhosted.org/packages/06/c3/3ee006fbc512ff16a4c084e83c3ec46706060e6114c7625c32d37dbdd8d4/SmoothNLP-0.2.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6897eb02ba38129a0d6ace889cdcccc0", "sha256": "2780b7a9de6bb23f3a04895bcf9a050aa70047d173409e1a225ebee6de4077d8" }, "downloads": -1, "filename": "SmoothNLP-0.2.16-py3.7.egg", "has_sig": false, "md5_digest": "6897eb02ba38129a0d6ace889cdcccc0", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 31132, "upload_time": "2019-09-04T11:39:42", "url": "https://files.pythonhosted.org/packages/7b/10/4df280f5f458f584c35e8180e7b2c03c3e4f721536d599dfa9e124d14a82/SmoothNLP-0.2.16-py3.7.egg" }, { "comment_text": "", "digests": { "md5": "6b13a9e93bff5ac05687d751173710d8", "sha256": "a5f47fc62ce53df13aed3c0cd3d74449e481b2e56b7b614ea7294893348cdfc9" }, "downloads": -1, "filename": "SmoothNLP-0.2.16-py3-none-any.whl", "has_sig": false, "md5_digest": "6b13a9e93bff5ac05687d751173710d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26459, "upload_time": "2019-09-04T11:39:35", "url": "https://files.pythonhosted.org/packages/ac/17/bf0462915403f4120dde9ab3e9579a61baaa379d082ee5e570cce2cb9e62/SmoothNLP-0.2.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d75229b1300a1cb33984a8e0f91ef864", "sha256": "13c3359677e27d31745a601eed13715819eedeed019ddcefcd91533691cca475" }, "downloads": -1, "filename": "SmoothNLP-0.2.16.tar.gz", "has_sig": false, "md5_digest": "d75229b1300a1cb33984a8e0f91ef864", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11604, "upload_time": "2019-09-04T11:39:44", "url": "https://files.pythonhosted.org/packages/a1/46/5c8f5f6ee84ba97f16ce97ee2e10b59d8aa6420dcec4c57c4a4dde9fa7f1/SmoothNLP-0.2.16.tar.gz" } ] }