skillfed

stop-words

Get list of common stop words in various languages in Python

stop-words v2025.11.4 207.3K downloads/30d#9,555 on PyPI163
Permissive license BSD-3-Clause AGING released

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-words

uv

uv add stop-words

poetry

poetry add stop-words

Installing 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

Development Status :: 6 - MatureIntended Audience :: DevelopersOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Topic :: Software DevelopmentTopic :: Text ProcessingTopic :: Text Processing :: Filters

Tags

stop words filteringnlp text preprocessingmultilingual stop wordscommon word removaltext cleaning librarylanguage-specific stop listskeyword extraction preprocessing
nlptext-preprocessingmultilingual

More Software Development packages