stop-words
Get list of common stop words in various languages in Python
What it is and what it does
Stop-words is a lightweight Python library that bundles curated lists of common words (like "the", "is", "at") across multiple languages. It is designed for natural language processing and text analysis workflows where filtering out these high-frequency, low-semantic-value words improves downstream analysis—keyword extraction, topic modeling, search relevance, and similar tasks.
The package offers both simple and safe loading modes, built-in caching for repeated access, and a filter system for custom post-processing of word lists. It has no external runtime dependencies, making it easy to add to any Python project. The library supports both ISO 639-1 language codes (e.g., 'en') and full language names (e.g., 'english') for convenience.
Use it for:
- Filter stop words from user-generated text before extracting keywords or computing term frequency in search or analytics systems.
- Preprocess multilingual documents for topic modeling or text classification by removing common words in each language.
- Build a text summarization pipeline that excludes stop words to focus on semantically meaningful terms.
- Clean and normalize text input for information retrieval or semantic similarity matching tasks.
- Support language-specific text analysis in chatbots or NLP pipelines that handle multiple languages.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides curated stop-word lists for multiple languages, enabling filtering of common words in natural language processing and text analysis tasks.
Yes. Stop-words is a mature, zero-dependency library with permissive licensing, low install friction, and no known vulnerabilities. It is actively maintained and widely used. Install it if you need multilingual stop-word filtering for NLP or text preprocessing; the aging maintenance status is not a blocker for a stable, feature-complete utility.
Install
stop-words on PyPI
pip
pip install stop-wordsuv
uv add stop-wordspoetry
poetry add stop-wordsInstalling stop-words
Before you install
Low friction: pure Python wheel with zero runtime dependencies. Maintenance status is aging—last release 284 days old—but the repository remains active and the package is mature (Development Status :: 6 - Mature).
License in practice
BSD-3-Clause (permissive): you may use, modify, and distribute this package freely in commercial and private projects, provided you include the license notice.
Quickstart
pip install stop-words
from stop_words import get_stop_words
stop_words = get_stop_words('en')
text = "The quick brown fox jumps over the lazy dog"
filtered = [w for w in text.lower().split() if w not in stop_words]
print(filtered) # ['quick', 'brown', 'fox', 'jumps', 'lazy', 'dog']
Requires Python 3.11 or later.
Verify before relying
- Whether all 34+ languages are equally well-maintained or if some lists are outdated.
- Performance characteristics when filtering large texts or with many concurrent language loads.
- Current download volume and user base size.
Package facts
| License | BSD-3-Clause (permissive) |
| Python support | supports the current Python release (>=3.11) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | aging — 284 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 207,315/month — #9,555 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: stop_words-2025.11.4-py3-none-any.whl
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
probableparsingProvides common utility methods for building…
permissive · top 5,000 on PyPI
stopwordsisoProvides stopword lists for multiple languages…
permissive · top 15,000 on PyPI
jieba3kPerforms Chinese word segmentation, breaking…
unclear · top 15,000 on PyPI
wordfreqwordfreq looks up word frequencies across over…
permissive · top 5,000 on PyPI
keyphrase-vectorizersExtracts keyphrases from text documents using…
permissive · top 15,000 on PyPI
keybertKeyBERT extracts keywords and keyphrases from…
permissive · top 15,000 on PyPI
rake-nltkExtracts keywords and key phrases from text…
permissive · top 15,000 on PyPI
english-wordsProvides curated sets of English words from…
permissive · top 15,000 on PyPI
snowballstemmerProvides stemming algorithms for 34 languages,…
permissive · top 1,000 on PyPI
better-profanityDetects and censors profanity in text,…
permissive · top 5,000 on PyPI