Metadata-Version: 2.1
Name: shobdohash
Version: 1.0.3
Summary: Phonetically compare Bengali words
Home-page: https://github.com/banglakit/shobdohash
Author: The BanglaKit Project and Contributors
Author-email: contact@banglakit.org
License: MIT
Description: # Shobdohash - Bengali Soundex Implementation
        
        Shobdohash is a Bengali Soundex Implementation to phonetically hash and compare similar words. Implemented from the
        algorithm described by Naushad UzZaman and Mumit Khan in
        [A Bangla Phonetic Encoding for Better Spelling Suggestions](http://panl10n.net/english/final%20reports/pdf%20files/Bangladesh/BAN18.pdf).
        
        ## Installation
        
        ### Stable Version
        ```shell script
        $ python -m pip install shobdohash
        ```
        
        ### Development Version
        ```shell script
        $ python -m pip install -e 'git+https://github.com:banglakit/shobdohash.git#egg=shobdohash'
        ```
        
        
        ## Usage
        ```python
        from shobdohash import ShobdoHash
        
        s = ShobdoHash()
        s('আমি')
        
        s('বাংলা') == s('বাঙলা')
        ```
        
        ## Running Tests
        ```shell script
        $ pip install -r requirements-test.txt
        $ pytest
        ```
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: Bengali
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
Description-Content-Type: text/markdown
