Last active
June 4, 2021 04:10
-
-
Save kzinmr/88054cb39218df6958039a2559631d81 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# https://pypi.org/project/stop-words/ | |
from stop_words import get_stop_words | |
from nltk.corpus import stopwords | |
stop_words = list(get_stop_words('en')) #About 900 stopwords | |
nltk_words = list(stopwords.words('english')) #About 150 stopwords |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://pypi.org/project/functionwords/