Metadata-Version: 2.1
Name: dpern
Version: 0.0.2
Summary: Describe PERsian Numbers
Home-page: https://github.com/amirashabani/dpern
Author: Amir A. Shabani
Author-email: amirashabani@zoho.com
License: MIT
Description: # DPERN - Describe PERsian Numbers
        
        ## Installation
        
        ```bash
        pip install dpern
        ```
        
        ## Usage
        
        If you want to use it in a module, you need to import it like this:
        
        ```python
        from dpern import dpern
        ```
        
        And use it like this:
        
        ```python
        print(dpern.describe("35"))
        # سی و پنج
        
        print(dpern.describe("۹۹۹"))
        # نهصد و نود و نه
        ```
        
        If you want to use it in the command line, you can run it like this:
        
        ```bash
        $ python -m dpern 10
        ده
        
        $ python -m dpern ۱۲۸
        صد و بیست و هشت
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
