python-stop-words
python-stop-words copied to clipboard
Get list of common stop words in various languages in Python
get_stop_words and get_safe_words ? stop_words = get_stop_words('english') and stop_words = safe_get_stop_words('en') Thanks
Hi, I want to know what is the method for defining our own custom stop word? I'm currently developing a sentiment analysis in my local language in which i'm using...
It return empty [] ``` from stop_words import get_stop_words stop_words = get_stop_words('en') stop_words = get_stop_words('english') from stop_words import safe_get_stop_words stop_words = safe_get_stop_words('unsupported language') print(stop_words) ```
Dear Alir3z4, I used this repo for the work at my previous company, and I found one issue with the function `get_stop_words()`: if we obtain the list in variable and...
* Feature: Support simplified chinese and traditional chinese stopwords
Update codebase in order to support latest version of Python(3.12+)