Created
September 23, 2020 01:33
-
-
Save dirkgr/fa74e2fb07a1ddd685320aa9400a6ffe to your computer and use it in GitHub Desktop.
A better list of stop words in Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
STOPWORDS = { | |
"i", | |
"me", | |
"my", | |
"myself", | |
"we", | |
"our", | |
"ours", | |
"ourselves", | |
"you", | |
"you're", | |
"you've", | |
"you'll", | |
"you'd", | |
"your", | |
"yours", | |
"yourself", | |
"yourselves", | |
"he", | |
"him", | |
"his", | |
"himself", | |
"she", | |
"she's", | |
"her", | |
"hers", | |
"herself", | |
"it", | |
"it's", | |
"its", | |
"itself", | |
"they", | |
"them", | |
"their", | |
"theirs", | |
"themselves", | |
"what", | |
"which", | |
"who", | |
"whom", | |
"this", | |
"that", | |
"that'll", | |
"these", | |
"those", | |
"am", | |
"is", | |
"are", | |
"was", | |
"were", | |
"be", | |
"been", | |
"being", | |
"have", | |
"has", | |
"had", | |
"having", | |
"do", | |
"does", | |
"did", | |
"doing", | |
"a", | |
"an", | |
"the", | |
"and", | |
"but", | |
"if", | |
"or", | |
"because", | |
"as", | |
"until", | |
"while", | |
"of", | |
"at", | |
"by", | |
"for", | |
"with", | |
"about", | |
"against", | |
"between", | |
"into", | |
"through", | |
"during", | |
"before", | |
"after", | |
"above", | |
"below", | |
"to", | |
"from", | |
"up", | |
"down", | |
"in", | |
"out", | |
"on", | |
"off", | |
"over", | |
"under", | |
"again", | |
"further", | |
"then", | |
"once", | |
"here", | |
"there", | |
"when", | |
"where", | |
"why", | |
"how", | |
"all", | |
"any", | |
"both", | |
"each", | |
"few", | |
"more", | |
"most", | |
"other", | |
"some", | |
"such", | |
"no", | |
"nor", | |
"not", | |
"only", | |
"own", | |
"same", | |
"so", | |
"than", | |
"too", | |
"very", | |
"s", | |
"t", | |
"can", | |
"will", | |
"just", | |
"don", | |
"don't", | |
"should", | |
"should've", | |
"now", | |
"d", | |
"ll", | |
"m", | |
"o", | |
"re", | |
"ve", | |
"y", | |
"ain", | |
"aren", | |
"aren't", | |
"couldn", | |
"couldn't", | |
"didn", | |
"didn't", | |
"doesn", | |
"doesn't", | |
"hadn", | |
"hadn't", | |
"hasn", | |
"hasn't", | |
"haven", | |
"haven't", | |
"isn", | |
"isn't", | |
"ma", | |
"mightn", | |
"mightn't", | |
"mustn", | |
"mustn't", | |
"needn", | |
"needn't", | |
"shan", | |
"shan't", | |
"shouldn", | |
"shouldn't", | |
"wasn", | |
"wasn't", | |
"weren", | |
"weren't", | |
"won", | |
"won't", | |
"wouldn", | |
"wouldn't", | |
",", "?", ".", "'s", "(", ")", "-", ";", ":", "\"", "[", "]", "'", "*", "`s", "`", "n't", "--", | |
"may", "also", "-rrb-", "-lrb-", "&", "!", "%", "-lsb-", "-rsb-", "...", '"', "''", "<", ">", | |
"{", "}", '—', '“', '”', '``', '’', '#', '–', 'et'} | |
for c in range(ord('a'), ord('z') + 1): | |
STOPWORDS.add(chr(c)) | |
from nltk.corpus import stopwords as nltk_stopwords | |
STOPWORDS |= set(nltk_stopwords.words('english')) | |
STOPWORDS = frozenset(STOPWORDS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment