/Unscramble

unscramble any word and discover anagrams

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Unscramble

Unscramble any word and discover anagrams based on a dictionary.

A comprehensive (although not complete) German wordlist can be found here.

from unscramble import *

if __name__ == "__main__":
    candidates = unscramble('Wollsokcen', 'wordlist-german.txt')
    print(candidates)