├── .gitignore ├── LICENSE ├── README.md ├── open_words ├── __init__.py ├── addons.py ├── data │ ├── ADDONS.LAT │ ├── DICTLINE.GEN │ ├── EWDSLIST.GEN │ ├── INFLECTS.LAT │ ├── STEMLIST.GEN │ ├── UNIQUES.LAT │ ├── data.json │ ├── prefixes.txt │ └── suffixes.txt ├── dict_line.py ├── format_data.py ├── get_stems.py ├── inflects.py ├── parse.py ├── stem_list.py ├── uniques.py └── util.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/README.md -------------------------------------------------------------------------------- /open_words/__init__.py: -------------------------------------------------------------------------------- 1 | # package 2 | -------------------------------------------------------------------------------- /open_words/addons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/addons.py -------------------------------------------------------------------------------- /open_words/data/ADDONS.LAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/data/ADDONS.LAT -------------------------------------------------------------------------------- /open_words/data/DICTLINE.GEN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/data/DICTLINE.GEN -------------------------------------------------------------------------------- /open_words/data/EWDSLIST.GEN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/data/EWDSLIST.GEN -------------------------------------------------------------------------------- /open_words/data/INFLECTS.LAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/data/INFLECTS.LAT -------------------------------------------------------------------------------- /open_words/data/STEMLIST.GEN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/data/STEMLIST.GEN -------------------------------------------------------------------------------- /open_words/data/UNIQUES.LAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/data/UNIQUES.LAT -------------------------------------------------------------------------------- /open_words/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/data/data.json -------------------------------------------------------------------------------- /open_words/data/prefixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/data/prefixes.txt -------------------------------------------------------------------------------- /open_words/data/suffixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/data/suffixes.txt -------------------------------------------------------------------------------- /open_words/dict_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/dict_line.py -------------------------------------------------------------------------------- /open_words/format_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/format_data.py -------------------------------------------------------------------------------- /open_words/get_stems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/get_stems.py -------------------------------------------------------------------------------- /open_words/inflects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/inflects.py -------------------------------------------------------------------------------- /open_words/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/parse.py -------------------------------------------------------------------------------- /open_words/stem_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/stem_list.py -------------------------------------------------------------------------------- /open_words/uniques.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/uniques.py -------------------------------------------------------------------------------- /open_words/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/open_words/util.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchimedesDigital/open_words/HEAD/setup.py --------------------------------------------------------------------------------