Metadata-Version: 2.1
Name: BnLemma
Version: 1.1
Summary: UNKNOWN
Home-page: https://github.com/Kowsher/Bangla-NLP/tree/master/Bangla%20Feature%20Extraction
Author: Karigor
Author-email: 
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

Bangla Lemmatizer (BnLemma)
==================================
BnLemma is a powerful tool for getting the root words of the words used in any Bangla sentence.
There is a pretrained model available with this package.
This page gives a basic introduction to the package.

## Installation:

```
pip install BnLemma
```

In Python a Bangla Linga is typically written as:

## Usage:
```python
>>>  from BnLemma import lemmatization as lm
>>>  s = "মানুষের জীবনটা পাচ্ছেন তাই কাজে লাগানো দরকার আমাদেরকে"  
>>>  s = lm.lemma(s)
>>>  print(s)

```
Output:
```
মানুষ জীবন পাওয়া তাই কাজ লাগা দরকার আমাদের
```


