Metadata-Version: 2.1
Name: uzbek_lemmatization
Version: 2
Summary: Finds the lemma of Uzbek words
Home-page: https://github.com/ddasturbek/UzbekLemma
Author-email: sobirovogabek0409@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Authors

**Author1: [Maksud Sharipov](https://github.com/MaksudSharipov)**

**Author2: [Dasturbek](https://github.com/ddasturbek)**

# Lemma & Lemmatization
There are 4 different ways of lemmatization: **rule**, **dictionary**, **model**, **hybrid**.

The package finds lemmas of Uzbek words based on the dictionary.

# Install

```bash
pip install uzbek_lemmatization
```

# Usage

```Python
import uzbek_lemmatization as ul

print(ul.lemmatize("qishlog‘imizda")) # qishloq
```
