Skip to content

Instantly share code, notes, and snippets.

@felipecustodio
Created August 27, 2016 07:27
Show Gist options
  • Save felipecustodio/3b49e46741a9a5a66350c68ef99d4064 to your computer and use it in GitHub Desktop.
Save felipecustodio/3b49e46741a9a5a66350c68ef99d4064 to your computer and use it in GitHub Desktop.
Get enable1.txt dictionary
import urllib2
# Create dictionary
words = []
for line in urllib2.urlopen("https://raw.githubusercontent.com/dolph/dictionary/master/enable1.txt"):
words.append(line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment