Stopword Spacy
import spacy
# from terminal
python -m spacy download en_core_web_lg # or some other model
nlp = spacy.load("en_core_web_lg")
stop_words = nlp.Defaults.stop_words
wolf-like_hunter