├── .gitignore ├── COPYING ├── README.rst ├── example ├── 1400.txt.utf8.gz ├── 730.txt.utf8.gz ├── 766.txt.utf8.gz └── dickens.py ├── gpl-3.0.txt ├── lgpl-3.0.txt ├── setup.py └── weighwords ├── __init__.py ├── logsum.py └── parsimonious.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/COPYING -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/README.rst -------------------------------------------------------------------------------- /example/1400.txt.utf8.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/example/1400.txt.utf8.gz -------------------------------------------------------------------------------- /example/730.txt.utf8.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/example/730.txt.utf8.gz -------------------------------------------------------------------------------- /example/766.txt.utf8.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/example/766.txt.utf8.gz -------------------------------------------------------------------------------- /example/dickens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/example/dickens.py -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/lgpl-3.0.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/setup.py -------------------------------------------------------------------------------- /weighwords/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/weighwords/__init__.py -------------------------------------------------------------------------------- /weighwords/logsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/weighwords/logsum.py -------------------------------------------------------------------------------- /weighwords/parsimonious.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmans/weighwords/HEAD/weighwords/parsimonious.py --------------------------------------------------------------------------------