Access a database of word frequencies, in various natural languages.
Go to file
Robyn Speer a06c3fc648 A different plan for the top-level word_frequency function.
When, before, I was importing wordfreq.query at the top level, this
created a dependency loop when installing wordfreq.

The new top-level __init__.py provides just a `word_frequency` function,
which imports the real function as needed and calls it. This should
avoid the dependency loop, at the cost of making
`wordfreq.word_frequency` slightly less efficient than
`wordfreq.query.word_frequency`.


Former-commit-id: 44ccf40742
2014-02-24 18:03:31 -05:00
tests A different plan for the top-level word_frequency function. 2014-02-24 18:03:31 -05:00
wordfreq A different plan for the top-level word_frequency function. 2014-02-24 18:03:31 -05:00
wordfreq_data try to match the wordlist metanl actually uses 2013-10-31 15:13:22 -04:00
.gitignore Add wordfreq_data files. 2013-10-31 13:39:02 -04:00
README.txt Initial version. 2013-10-28 19:26:44 -04:00
setup.py Don't download the DB if the right version is already there 2013-10-31 14:12:04 -04:00

Tools for working with word frequencies from various corpora.

Author: Robyn Speer