{ "info": { "author": "Grant Jenks", "author_email": "contact@grantjenks.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "Python Word Segmentation\n========================\n\n`WordSegment`_ is an Apache2 licensed module for English word\nsegmentation, written in pure-Python, and based on a trillion-word corpus.\n\nBased on code from the chapter \"`Natural Language Corpus Data`_\" by Peter\nNorvig from the book \"`Beautiful Data`_\" (Segaran and Hammerbacher, 2009).\n\nData files are derived from the `Google Web Trillion Word Corpus`_, as\ndescribed by Thorsten Brants and Alex Franz, and `distributed`_ by the\nLinguistic Data Consortium. This module contains only a subset of that\ndata. The unigram data includes only the most common 333,000 words. Similarly,\nbigram data includes only the most common 250,000 phrases. Every word and\nphrase is lowercased with punctuation removed.\n\n.. _`WordSegment`: http://www.grantjenks.com/docs/wordsegment/\n.. _`Natural Language Corpus Data`: http://norvig.com/ngrams/\n.. _`Beautiful Data`: http://oreilly.com/catalog/9780596157111/\n.. _`Google Web Trillion Word Corpus`: http://googleresearch.blogspot.com/2006/08/all-our-n-gram-are-belong-to-you.html\n.. _`distributed`: https://catalog.ldc.upenn.edu/LDC2006T13\n\nFeatures\n--------\n\n- Pure-Python\n- Fully documented\n- 100% Test Coverage\n- Includes unigram and bigram data\n- Command line interface for batch processing\n- Easy to hack (e.g. different scoring, new data, different language)\n- Developed on Python 2.7\n- Tested on CPython 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6 and PyPy, PyPy3\n- Tested on Windows, Mac OS X, and Linux\n- Tested using Travis CI and AppVeyor CI\n\n.. image:: https://api.travis-ci.org/grantjenks/python-wordsegment.svg\n :target: http://www.grantjenks.com/docs/wordsegment/\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/grantjenks/python-wordsegment?branch=master&svg=true\n :target: http://www.grantjenks.com/docs/wordsegment/\n\nQuickstart\n----------\n\nInstalling `WordSegment`_ is simple with\n`pip `_::\n\n $ pip install wordsegment\n\nYou can access documentation in the interpreter with Python's built-in help\nfunction::\n\n >>> import wordsegment\n >>> help(wordsegment)\n\nTutorial\n--------\n\nIn your own Python programs, you'll mostly want to use `segment` to divide a\nphrase into a list of its parts::\n\n >>> from wordsegment import load, segment\n >>> load()\n >>> segment('thisisatest')\n ['this', 'is', 'a', 'test']\n\nThe `load` function reads and parses the unigrams and bigrams data from\ndisk. Loading the data only needs to be done once.\n\n`WordSegment`_ also provides a command-line interface for batch\nprocessing. This interface accepts two arguments: in-file and out-file. Lines\nfrom in-file are iteratively segmented, joined by a space, and written to\nout-file. Input and output default to stdin and stdout respectively. ::\n\n $ echo thisisatest | python -m wordsegment\n this is a test\n\nIf you want to run `WordSegment`_ as a kind of server process then use Python's\n``-u`` option for unbuffered output. You can also set ``PYTHONUNBUFFERED=1`` in\nthe environment. ::\n\n >>> import subprocess as sp\n >>> wordsegment = sp.Popen(\n ['python', '-um', 'wordsegment'],\n stdin=sp.PIPE, stdout=sp.PIPE, stderr=sp.STDOUT)\n >>> wordsegment.stdin.write('thisisatest\\n')\n >>> wordsegment.stdout.readline()\n 'this is a test\\n'\n >>> wordsegment.stdin.write('workswithotherlanguages\\n')\n >>> wordsegment.stdout.readline()\n 'works with other languages\\n'\n >>> wordsegment.stdin.close()\n >>> wordsegment.wait() # Process exit code.\n 0\n\nThe maximum segmented word length is 24 characters. Neither the unigram nor\nbigram data contain words exceeding that length. The corpus also excludes\npunctuation and all letters have been lowercased. Before segmenting text,\n`clean` is called to transform the input to a canonical form::\n\n >>> from wordsegment import clean\n >>> clean('She said, \"Python rocks!\"')\n 'shesaidpythonrocks'\n >>> segment('She said, \"Python rocks!\"')\n ['she', 'said', 'python', 'rocks']\n\nSometimes its interesting to explore the unigram and bigram counts\nthemselves. These are stored in Python dictionaries mapping word to count. ::\n\n >>> import wordsegment as ws\n >>> ws.load()\n >>> ws.UNIGRAMS['the']\n 23135851162.0\n >>> ws.UNIGRAMS['gray']\n 21424658.0\n >>> ws.UNIGRAMS['grey']\n 18276942.0\n\nAbove we see that the spelling `gray` is more common than the spelling `grey`.\n\nBigrams are joined by a space::\n\n >>> import heapq\n >>> from pprint import pprint\n >>> from operator import itemgetter\n >>> pprint(heapq.nlargest(10, ws.BIGRAMS.items(), itemgetter(1)))\n [('of the', 2766332391.0),\n ('in the', 1628795324.0),\n ('to the', 1139248999.0),\n ('on the', 800328815.0),\n ('for the', 692874802.0),\n ('and the', 629726893.0),\n ('to be', 505148997.0),\n ('is a', 476718990.0),\n ('with the', 461331348.0),\n ('from the', 428303219.0)]\n\nSome bigrams begin with ``. This is to indicate the start of a bigram::\n\n >>> ws.BIGRAMS[' where']\n 15419048.0\n >>> ws.BIGRAMS[' what']\n 11779290.0\n\nThe unigrams and bigrams data is stored in the `wordsegment` directory in\nthe `unigrams.txt` and `bigrams.txt` files respectively.\n\nUser Guide\n----------\n\n* `Word Segment API Reference`_\n* `Using a Different Corpus`_\n* `Python: Load dict Fast From File`_\n\n.. _`Word Segment API Reference`: http://www.grantjenks.com/docs/wordsegment/api.html\n.. _`Using a Different Corpus`: http://www.grantjenks.com/docs/wordsegment/using-a-different-corpus.html\n.. _`Python: Load dict Fast From File`: http://www.grantjenks.com/docs/wordsegment/python-load-dict-fast-from-file.html\n\nReferences\n----------\n\n* `WordSegment Documentation`_\n* `WordSegment at PyPI`_\n* `WordSegment at Github`_\n* `WordSegment Issue Tracker`_\n\n.. _`WordSegment Documentation`: http://www.grantjenks.com/docs/wordsegment/\n.. _`WordSegment at PyPI`: https://pypi.python.org/pypi/wordsegment\n.. _`WordSegment at Github`: https://github.com/grantjenks/python-wordsegment\n.. _`WordSegment Issue Tracker`: https://github.com/grantjenks/python-wordsegment/issues\n\nWordSegment License\n-------------------\n\nCopyright 2018 Grant Jenks\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.grantjenks.com/docs/wordsegment/", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "wordsegment", "package_url": "https://pypi.org/project/wordsegment/", "platform": "", "project_url": "https://pypi.org/project/wordsegment/", "project_urls": { "Homepage": "http://www.grantjenks.com/docs/wordsegment/" }, "release_url": "https://pypi.org/project/wordsegment/1.3.1/", "requires_dist": null, "requires_python": "", "summary": "English word segmentation.", "version": "1.3.1" }, "last_serial": 4038352, "releases": { "0.2": [ { "comment_text": "", "digests": { "md5": "9cecac4d9614452919e99a3d5f2d30ac", "sha256": "273d04333e52ab381e874cc20d239a62273953f69ebdee0040dc81783451cec3" }, "downloads": -1, "filename": "wordsegment-0.2.zip", "has_sig": false, "md5_digest": "9cecac4d9614452919e99a3d5f2d30ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4365754, "upload_time": "2014-06-06T19:53:53", "url": "https://files.pythonhosted.org/packages/0a/70/84daf45ae838d8a6c5e54c112a85ad14040a6b9e5bb72511b66bce9cdb14/wordsegment-0.2.zip" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "195f2de8f142355072f2405b2590957c", "sha256": "b3cc5157089ebc87ee2da62a013119811673079c76832fd5f1f013b3b4633c44" }, "downloads": -1, "filename": "wordsegment-0.3.tar.gz", "has_sig": false, "md5_digest": "195f2de8f142355072f2405b2590957c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4358400, "upload_time": "2014-07-01T01:29:00", "url": "https://files.pythonhosted.org/packages/6f/1c/59e8bac37dae0e65f9ea5ad682687fa7adf1ebd92f54ecfc8629a5208d12/wordsegment-0.3.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "0f0f19b72a10077855bae6b5230ec7cb", "sha256": "8e9166323a5e4a2e0ca3ae45d992c9751e60424437f3ac15b101ed5b63224135" }, "downloads": -1, "filename": "wordsegment-0.5.2.tar.gz", "has_sig": false, "md5_digest": "0f0f19b72a10077855bae6b5230ec7cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4356907, "upload_time": "2015-09-02T21:23:11", "url": "https://files.pythonhosted.org/packages/11/52/62d701fd5977d832d8a22fca60e82a77890970cce7dfed42fa614a13bf1d/wordsegment-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "5613e38c81b375f07641d40f25690c89", "sha256": "2f347b51d9173ccfee7d08fd7075033ddf1463411fd33302a9612a24cff07aeb" }, "downloads": -1, "filename": "wordsegment-0.5.3.tar.gz", "has_sig": false, "md5_digest": "5613e38c81b375f07641d40f25690c89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4356913, "upload_time": "2015-09-07T17:31:21", "url": "https://files.pythonhosted.org/packages/fd/cd/c5e52b1d362729fb0fff0b9e00de1f6426988831903fec5767bfdff57147/wordsegment-0.5.3.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "608481db070240fbafa1516395e7eb59", "sha256": "017ebb873c2cfd81506b32d74e57e5aade08e0c9c5b08d18892fe04a6acf090f" }, "downloads": -1, "filename": "wordsegment-0.6.1.tar.gz", "has_sig": false, "md5_digest": "608481db070240fbafa1516395e7eb59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4356919, "upload_time": "2015-09-15T16:53:39", "url": "https://files.pythonhosted.org/packages/af/34/3a0aafd0a4189a9d0afe6731fd4d668aa8e9e3cd595d0aa4cb7f7a3e43a6/wordsegment-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "d3f7d6bbc551d3ff979dbe05a0baecb1", "sha256": "730ff53902d93fd3d7977672f3ccf0bfcb497d5ae9c4665a6086d23b65e88b50" }, "downloads": -1, "filename": "wordsegment-0.6.2.tar.gz", "has_sig": false, "md5_digest": "d3f7d6bbc551d3ff979dbe05a0baecb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4356926, "upload_time": "2015-10-29T03:31:14", "url": "https://files.pythonhosted.org/packages/fd/2d/6f6d3959e33994dcf28ced7889753dde3f67d01123f0492941eb37b6bf1f/wordsegment-0.6.2.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "d41ec1670e75e0626a22543d9095ccd0", "sha256": "289f54579c92e738be8417526b2393ad937199bd45dc190d64b23a6f2ad0ab2b" }, "downloads": -1, "filename": "wordsegment-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d41ec1670e75e0626a22543d9095ccd0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4362103, "upload_time": "2016-12-21T00:35:47", "url": "https://files.pythonhosted.org/packages/b0/29/ad37f58300e751dc2f5889b3101454f3a30042b9f5ec7657b5cf23eb8366/wordsegment-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f28d7cfcba9ea6fb1f1d8af157a2300", "sha256": "59a0e61d4b1be53ca214ca600271cc5711e53139e4d2e81e34925515e22a4b5f" }, "downloads": -1, "filename": "wordsegment-0.7.1.tar.gz", "has_sig": false, "md5_digest": "3f28d7cfcba9ea6fb1f1d8af157a2300", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4357140, "upload_time": "2016-12-21T00:36:33", "url": "https://files.pythonhosted.org/packages/bd/49/f80851a10cf2d83b9792b366feba1b5dcc162ae209234b4f2c5ff6af65ae/wordsegment-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "c4b1332d2334a49f97f1c77048ac6ef2", "sha256": "7fe91692b3b9e2f821d8a4c1cbff47c52a72b3ded3596a12e384517de62c9626" }, "downloads": -1, "filename": "wordsegment-0.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c4b1332d2334a49f97f1c77048ac6ef2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4361773, "upload_time": "2016-12-21T00:51:42", "url": "https://files.pythonhosted.org/packages/75/eb/de9879c22ef55980a21686b3146a25afc6a3c689533767400b9664e72d5c/wordsegment-0.7.2-py2.py3-none-any.whl" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "63f25c32abd18d0db6dd500639ade2d3", "sha256": "d9b1782225b7d1b90187ae4df607a5394133e1650d1c53a161b496b907c644ce" }, "downloads": -1, "filename": "wordsegment-0.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "63f25c32abd18d0db6dd500639ade2d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4361770, "upload_time": "2016-12-21T00:56:08", "url": "https://files.pythonhosted.org/packages/90/bc/8c1e5c5e18148369eb854cec44de8bf988b70e395f1a879cee03b6b91892/wordsegment-0.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e13bf37424f039911ced65767be5062e", "sha256": "fd2bc7f7528fb01c5037d2492f908c24ee88afd3458ccbdabfad24974970f19e" }, "downloads": -1, "filename": "wordsegment-0.7.3.tar.gz", "has_sig": false, "md5_digest": "e13bf37424f039911ced65767be5062e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4357121, "upload_time": "2016-12-21T00:56:54", "url": "https://files.pythonhosted.org/packages/44/6d/24ef19b33d56b0264f5f73a6de2c3b62c2af180580d211a3d5e785e2dca3/wordsegment-0.7.3.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "ab1c75db66137e936670550a8efc84df", "sha256": "3a5b621489b11587dc40bdb7c868e10c2509ac38974b52a55c8fbcba3673c229" }, "downloads": -1, "filename": "wordsegment-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab1c75db66137e936670550a8efc84df", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4362007, "upload_time": "2017-01-13T18:30:11", "url": "https://files.pythonhosted.org/packages/b7/52/fde2383d6b9ae3b53cacde524e0d2fd4dfb4fac8e1c620f1249e11e14861/wordsegment-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20a9f5f52be12103e9bd36a7a5bd2940", "sha256": "5cd3b80c98589493de1f91c2b0a3d243e30e39c71640e65f3473486f81bad084" }, "downloads": -1, "filename": "wordsegment-0.8.0.tar.gz", "has_sig": false, "md5_digest": "20a9f5f52be12103e9bd36a7a5bd2940", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4357369, "upload_time": "2017-01-13T18:31:03", "url": "https://files.pythonhosted.org/packages/54/d8/87b0ea7a3300f8032a6ebdb71f06d092211679ca5a5fd7f0c32636e9e703/wordsegment-0.8.0.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "74988734b3e512340d784648cfb75237", "sha256": "9e46ceb718c7a36350e30958d6b5cf2996bbb786eccd6e281997be16ddac607b" }, "downloads": -1, "filename": "wordsegment-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "74988734b3e512340d784648cfb75237", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4362938, "upload_time": "2017-09-29T23:16:33", "url": "https://files.pythonhosted.org/packages/06/29/ea38036680de2afa89dd8c9d87d64d9035ddbe6d1cce5ddb51bafdb80840/wordsegment-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "97a232d4c2f6fe3485f63960bb2b1f70", "sha256": "81060a244c10cf2bc0cd963958783517c47d19dbb137d963d726c5f8afa3792d" }, "downloads": -1, "filename": "wordsegment-1.1.3.tar.gz", "has_sig": false, "md5_digest": "97a232d4c2f6fe3485f63960bb2b1f70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4361190, "upload_time": "2017-09-29T23:17:18", "url": "https://files.pythonhosted.org/packages/12/da/559382385f52a39834d79dbb3b2cbcde92563095d7ed10fa03f8aeea1844/wordsegment-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "ec4d8c72d036c635765a59d85c9c314b", "sha256": "21a4202072108ee12eaf58d62cc27e538ad31c136ef9d304bfc04d65896144ba" }, "downloads": -1, "filename": "wordsegment-1.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ec4d8c72d036c635765a59d85c9c314b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4362944, "upload_time": "2017-09-29T23:25:43", "url": "https://files.pythonhosted.org/packages/4b/21/845054b9d21b2ee9899538aace8d0f99b96c68f4506bd8c3b765da875f8d/wordsegment-1.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47e224e81dbda98bc29a577bd551426d", "sha256": "4633dbdc9c5f4b4bebc7d39d74471d126621120eb7e383d09dd4275ece8d982f" }, "downloads": -1, "filename": "wordsegment-1.1.4.tar.gz", "has_sig": false, "md5_digest": "47e224e81dbda98bc29a577bd551426d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4361202, "upload_time": "2017-09-29T23:26:28", "url": "https://files.pythonhosted.org/packages/40/c0/f3ea930232fcb6abc03ac539c89203d63a2c272f09fbe344e92c0cb18f68/wordsegment-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "d656f83faef8cbba763908cdc6ac3f96", "sha256": "9e4cfedd9783ed4cc91fad5c64026892900e3b300bd94483ce98ad4e1cb0c31a" }, "downloads": -1, "filename": "wordsegment-1.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d656f83faef8cbba763908cdc6ac3f96", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4363148, "upload_time": "2017-09-29T23:43:48", "url": "https://files.pythonhosted.org/packages/21/a5/7cdd5b5092c482a3a62e538faf548bf5a86233d8441da471638c39042672/wordsegment-1.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9f906decebb31b07684f8cd8ca77443c", "sha256": "947e49fd7743a4ce415995b4d101ee2e4f38440060a0d8c10c3f03a16a824387" }, "downloads": -1, "filename": "wordsegment-1.1.5.tar.gz", "has_sig": false, "md5_digest": "9f906decebb31b07684f8cd8ca77443c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4361409, "upload_time": "2017-09-29T23:44:33", "url": "https://files.pythonhosted.org/packages/ee/f1/7df67ca2b61f7f788bdb484ad5fc4351375f1c9d9d15b11478e2aff5e83c/wordsegment-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "eeb7d230defa8b4f7bb5ab47e3ee9f78", "sha256": "e3d59bb7ce2e8abcdbd0ee9bb80a751e6df66cbdb95fb24032ae1b8afbf837fb" }, "downloads": -1, "filename": "wordsegment-1.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eeb7d230defa8b4f7bb5ab47e3ee9f78", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4363133, "upload_time": "2017-09-30T00:07:15", "url": "https://files.pythonhosted.org/packages/b4/16/fd7f24cd2807bfc6747130a50b811f985f0b032afb41a1274d4eff083066/wordsegment-1.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8b89204fe78d1cb877b4c9c2d0d52d1", "sha256": "dfffd866465392a5cb77a3bc342e0f593132b1581377dd2d7f55786fbe6222e0" }, "downloads": -1, "filename": "wordsegment-1.1.6.tar.gz", "has_sig": false, "md5_digest": "b8b89204fe78d1cb877b4c9c2d0d52d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4361390, "upload_time": "2017-09-30T00:08:02", "url": "https://files.pythonhosted.org/packages/81/75/8afa27427b1ff99a22ef81c1548036d56415dd8ef290c56f5be3e22069b7/wordsegment-1.1.6.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "f7a2a2826d0301d72bd10ae358684a08", "sha256": "5e7ebd3cf67467fff86800fa30b7e6e5087d41128657da8b4fca76656111c677" }, "downloads": -1, "filename": "wordsegment-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f7a2a2826d0301d72bd10ae358684a08", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4363133, "upload_time": "2018-03-01T05:48:12", "url": "https://files.pythonhosted.org/packages/05/eb/705cadd4ab110a32a6f21ba14fbbbefd5e4b673958b459a3f485c9f46cc6/wordsegment-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "57c9c02e1aa38d98d51c8319da1a066f", "sha256": "6e7751632830a41e4141c4536fec6a994ffac26189dcd53e62a357541f15e0b8" }, "downloads": -1, "filename": "wordsegment-1.2.0.tar.gz", "has_sig": false, "md5_digest": "57c9c02e1aa38d98d51c8319da1a066f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4361401, "upload_time": "2018-03-01T05:48:21", "url": "https://files.pythonhosted.org/packages/df/8e/2075a8d1fd4a979b92ee56929c3dcfd9c0f9d42d1907593fda4e76c0407c/wordsegment-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "be29a1808b2063ab03be4db6ebfccd73", "sha256": "aacac1b288bddcb6e0d0073382bb8da084e032598996f277974e4d405aa860e0" }, "downloads": -1, "filename": "wordsegment-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be29a1808b2063ab03be4db6ebfccd73", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4827869, "upload_time": "2018-05-30T00:25:33", "url": "https://files.pythonhosted.org/packages/31/3b/62285b70e1253ceaba445ad2ce3f22eeabba882e58d66c8aa709ae9f1861/wordsegment-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b25514cbd0f309383dffcbf81336f787", "sha256": "47b6da9b682f65e79029806747340a58a5989064739fe2fc9d2366edd88cbe4b" }, "downloads": -1, "filename": "wordsegment-1.3.0.tar.gz", "has_sig": false, "md5_digest": "b25514cbd0f309383dffcbf81336f787", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4828658, "upload_time": "2018-05-30T00:25:43", "url": "https://files.pythonhosted.org/packages/ba/77/849933e1a63a91b35ace642e0839c43dc56d03a64c3b5fccc64eb09eaa95/wordsegment-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "a229e300c63712faa1835b5cb2cf3ff2", "sha256": "dd10e32fdb890079532ddffc1d179f839627af8345ecf52b84627a536449648d" }, "downloads": -1, "filename": "wordsegment-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a229e300c63712faa1835b5cb2cf3ff2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4827997, "upload_time": "2018-07-07T03:51:19", "url": "https://files.pythonhosted.org/packages/cf/6c/e6f4734d6f7d28305f52ec81377d7ce7d1856b97b814278e9960183235ad/wordsegment-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b41acd915506bfd0e2055c71c6ab3eb3", "sha256": "3dcc7cd1e9bba3f3ffe6a0e54d98377bc502fc34e9e9d8c8199ac5636924f023" }, "downloads": -1, "filename": "wordsegment-1.3.1.tar.gz", "has_sig": false, "md5_digest": "b41acd915506bfd0e2055c71c6ab3eb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4828756, "upload_time": "2018-07-07T03:51:29", "url": "https://files.pythonhosted.org/packages/64/68/08112f4c2888f41520e54e2d0b22dcec5adb28cddf4eeca344eb9da04177/wordsegment-1.3.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a229e300c63712faa1835b5cb2cf3ff2", "sha256": "dd10e32fdb890079532ddffc1d179f839627af8345ecf52b84627a536449648d" }, "downloads": -1, "filename": "wordsegment-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a229e300c63712faa1835b5cb2cf3ff2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4827997, "upload_time": "2018-07-07T03:51:19", "url": "https://files.pythonhosted.org/packages/cf/6c/e6f4734d6f7d28305f52ec81377d7ce7d1856b97b814278e9960183235ad/wordsegment-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b41acd915506bfd0e2055c71c6ab3eb3", "sha256": "3dcc7cd1e9bba3f3ffe6a0e54d98377bc502fc34e9e9d8c8199ac5636924f023" }, "downloads": -1, "filename": "wordsegment-1.3.1.tar.gz", "has_sig": false, "md5_digest": "b41acd915506bfd0e2055c71c6ab3eb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4828756, "upload_time": "2018-07-07T03:51:29", "url": "https://files.pythonhosted.org/packages/64/68/08112f4c2888f41520e54e2d0b22dcec5adb28cddf4eeca344eb9da04177/wordsegment-1.3.1.tar.gz" } ] }