mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 17:31:41 +00:00
15 lines
359 B
Python
15 lines
359 B
Python
"""
|
|
A quick script to output the top N words (1000 for now) in each language.
|
|
You can send the output to a file and diff it to see changes between wordfreq
|
|
versions.
|
|
"""
|
|
import wordfreq
|
|
|
|
|
|
N = 1000
|
|
|
|
|
|
for lang in sorted(wordfreq.available_languages()):
|
|
for (i, word) in enumerate(wordfreq.top_n_list(lang, 1000)):
|
|
print('{}\t{}'.format(lang, word))
|