1
0
Fork
You've already forked english-words
0
📝 A text file containing 479k English words for all your dictionary/word-based projects e.g: auto-completion / autosuggestion
  • Python 54%
  • Shell 46%
Find a file
Nelson a77cb15f4f
Merge pull request #153 from fbattello/script-pythonic
In create_json.py replaced the loop with a dict compreh...
2022年11月08日 22:11:16 +00:00
scripts In create_json.py replaced the loop with a more pythonic dict comprehension 2022年11月08日 12:50:37 +01:00
CONTRIBUTING.md adds CONTRIBUTING.md for / fixes #42 (to so people are not "dissapointed" when we dont accept PRs without prior discussion...) 2018年03月24日 20:15:28 +00:00
LICENSE.md update links 2022年09月07日 01:21:23 +03:00
read_english_dictionary.py Refactor python code example 2018年04月29日 15:33:04 -04:00
README.md Merge pull request #146 from Arhell/upd 2022年09月04日 19:59:08 +01:00
word_list_moby_all_moby_words.icss.yaml update links 2022年09月07日 01:21:23 +03:00
word_list_moby_credits.txt update links 2022年09月07日 01:21:23 +03:00
word_list_moby_README.txt adds original credits and readme from infochimps 2014年07月13日 23:28:37 +01:00
words.txt Remove invalid word 'acceleratorh' 2020年08月23日 17:44:51 -07:00
words.zip changed \"Pillow\" to \"pillow\" in words.txt and words.zip 2019年06月02日 00:04:54 +12:00
words_alpha.txt Adding "abled" to words_alpha.txt 2022年04月19日 10:22:57 -07:00
words_alpha.zip Removed zoogrpahy and remade archives 2019年03月13日 16:26:19 -04:00
words_dictionary.json fixed merged word: coevolvedcoevolves 2021年10月19日 21:44:04 -07:00
words_dictionary.zip Removed zoogrpahy and remade archives 2019年03月13日 16:26:19 -04:00

List Of English Words

A text file containing over 466k English words.

While searching for a list of english words (for an auto-complete tutorial) I found: https://stackoverflow.com/questions/2213607/how-to-get-english-language-word-database which refers to https://www.infochimps.com/datasets/word-list-350000-simple-english-words-excel-readable (archived).

No idea why infochimps put the word list inside an excel (.xls) file.

I pulled out the words into a simple new-line-delimited text file. Which is more useful when building apps or importing into databases etc.

Copyright still belongs to them.

Files you may be interested in:

  • words.txt contains all words.
  • words_alpha.txt contains only :alpha: words (words that only have letters, no numbers or symbols). If you want a quick solution choose this.
  • words_dictionary.json contains all the words from words_alpha.txt as json format. If you are using Python, you can easily load this file and use it as a dictionary for faster performance. All the words are assigned with 1 in the dictionary.

See read_english_dictionary.py for example usage.