skillfed

pymorphy3

Morphological analyzer (POS tagger + inflection engine) for Russian language.

pymorphy3 v2.0.6 434.4K downloads/30d#6,692 on PyPI144
Permissive license MIT license AGING released

What it is and what it does

pymorphy3 is a morphological analyzer for Russian and Ukrainian that identifies parts of speech, lemmas, and grammatical attributes in text. It is a maintained continuation of the unmaintained pymorphy2 project. The package provides a POS tagger and inflection engine, allowing you to parse words into their base forms and extract grammatical metadata like case, number, and tense.

The package depends on dawg2-python for efficient dictionary lookup and pymorphy3-dicts-ru for Russian language data. It supports Python 3.9 through 3.14 and is classified as Beta. It is widely used in Russian NLP workflows, though its aging maintenance status (309 days since last release) suggests it is stable but not actively developed.

Use it for:

  • Extract lemmas and POS tags from Russian text for downstream NLP tasks like classification or entity recognition.
  • Normalize Russian user input or search queries by reducing inflected forms to their base words.
  • Build Russian language text processing pipelines that require morphological annotation.
  • Analyze Ukrainian text for grammatical attributes and inflection patterns.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Morphological analyzer and POS tagger for Russian and Ukrainian text that performs inflection analysis and lemmatization.

Yes, if you need Russian or Ukrainian morphological analysis. The package is stable, permissively licensed, has low install friction, and carries no known vulnerabilities. Aging maintenance is a minor concern but not a blocker for a mature analyzer; verify that Ukrainian support meets your production requirements before committing.

Install

pymorphy3 on PyPI

pip

pip install pymorphy3

uv

uv add pymorphy3

poetry

poetry add pymorphy3

Installing pymorphy3

Before you install

Low friction install with a pure-Python wheel. Maintenance is aging—last release was 309 days ago—but the repository remains active with recent commits and no archived status.

License in practice

MIT license permits commercial and private use with minimal restrictions; you must retain the license notice in distributions.

Quickstart

pip install pymorphy3

from pymorphy3 import MorphAnalyzer

morph = MorphAnalyzer()
analyzed = morph.parse('слово')
print(analyzed[0].tag)

Verify before relying

  • Whether Ukrainian support is production-ready or still experimental relative to Russian
  • Performance characteristics on large text corpora or real-time NLP pipelines
  • Actual download volume and adoption patterns in production systems

Package facts

License MIT license (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 3 — dawg2-python, pymorphy3-dicts-ru, setuptools
Maintenance aging — 309 days since the last release
Last repo commit
First released
Downloads 434,356/month — #6,692 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pymorphy3-2.0.6-py3-none-any.whl

Development Status :: 4 - BetaIntended Audience :: DevelopersIntended Audience :: Science/ResearchLicense :: OSI Approved :: MIT LicenseNatural Language :: RussianProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.9Programming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPyTopic :: Scientific/Engineering :: Information AnalysisTopic :: Software Development :: Libraries :: Python ModulesTopic :: Text Processing :: Linguistic

Tags

russian morphological analyzerpos tagger russianrussian lemmatizationinflection engine russianukrainian morphological analysisrussian text processing
nlprussian-languagemorphology

More Python Modules packages