File size: 119 Bytes
2f0c07a
 
 
 
 
 
1
2
3
4
5
6
import nltk
from nltk.corpus import stopwords

nltk.download("stopwords")

STOP_WORDS = set(stopwords.words("english"))