├── .gitignore ├── .pylintrc ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── appveyor.yml ├── docs ├── Makefile ├── _static │ └── gj-logo.png ├── _templates │ └── gumroad.html ├── api.rst ├── conf.py ├── index.rst ├── make.bat ├── python-load-dict-fast-from-file.ipynb ├── python-load-dict-fast-from-file.rst ├── using-a-different-corpus.ipynb └── using-a-different-corpus.rst ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── context.py ├── test.txt └── test_coverage.py ├── tox.ini └── wordsegment ├── __init__.py ├── __main__.py ├── bigrams.txt ├── unigrams.txt └── words.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/gj-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/_static/gj-logo.png -------------------------------------------------------------------------------- /docs/_templates/gumroad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/_templates/gumroad.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/python-load-dict-fast-from-file.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/python-load-dict-fast-from-file.ipynb -------------------------------------------------------------------------------- /docs/python-load-dict-fast-from-file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/python-load-dict-fast-from-file.rst -------------------------------------------------------------------------------- /docs/using-a-different-corpus.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/using-a-different-corpus.ipynb -------------------------------------------------------------------------------- /docs/using-a-different-corpus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/docs/using-a-different-corpus.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/test.txt: -------------------------------------------------------------------------------- 1 | choosespain 2 | thisisatest 3 | -------------------------------------------------------------------------------- /tests/test_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/tests/test_coverage.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/tox.ini -------------------------------------------------------------------------------- /wordsegment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/wordsegment/__init__.py -------------------------------------------------------------------------------- /wordsegment/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/wordsegment/__main__.py -------------------------------------------------------------------------------- /wordsegment/bigrams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/wordsegment/bigrams.txt -------------------------------------------------------------------------------- /wordsegment/unigrams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/wordsegment/unigrams.txt -------------------------------------------------------------------------------- /wordsegment/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantjenks/python-wordsegment/HEAD/wordsegment/words.txt --------------------------------------------------------------------------------