Metadata-Version: 1.1
Name: py-bangla-stemmer
Version: 0.4.3
Summary: Rule based Bengali Stemmer written in python
Home-page: https://github.com/sazid1462/py-bangla-stemmer
Author: Sazedul Islam
Author-email: sazidmailbox@gmail.com
License: GPL-3.0
Download-URL: https://github.com/sazid1462/py-bangla-stemmer/archive/0.4.3.tar.gz
Description: # Rule Based Bangla Stemmer
        
        ## Usage
            from stemmer.stemmer import BanglaStemmer
            
            stemmer = BanglaStemmer()
            stemmer.stem('জনপ্রিয়তা')  # 'জনপ্রি'
            stemmer.stem(' সেটাই')    # 'সে'
        
        ## Rules Documentation
        #### `X + n :` 
        When X appears at the end of a word and word length is at least n, remove it
        #### `Y -> Z + n :` 
        When Y appears at the end of a word and word length is at least n, replace it with Z
        #### `Y.Z -> A.B + n :`
        When Y, followed by some character a, followed by Z appears at the end of a word 
        and word length is at least n, replace it with AaB    
        
Keywords: stemmer,bengali-stemmer,bangla-stemmer,rule-based-stemmer,nlp
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: Bengali
Classifier: Topic :: Text Processing :: Linguistic
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
