Metadata-Version: 2.1
Name: convert-numbers
Version: 0.0.2
Summary: Arabic Persian English Hindi Numbers is a Python library to convert numbers from-to Arabic, Hinid, Persian and English.
Home-page: https://github.com/azwri/convert_numbers
Author: Azwri
Author-email: aazwri@gmail.com
License: MIT
Description: # convert_numbers
        # Arabic Persian English Hindi Numbers Conversion
        
        
        convert_numbers is a Python library for convert numbers from-to Arabic, Hinid, Persian and English.
        
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.
        
        ```bash
        pip install convert_numbers
        ```
        
        ## Usage
        
        ```python
        import convert_numbers
        
        # From Hindi To Englis
        print(convert_numbers.hindi_to_english('٨٧٦٥٤٣٢٣٤٥٦٧٨')) #8765432345678
        
        
        # From Englis To Hindi
        print(convert_numbers.english_to_hindi('12309876523')) ##١٢٣٠٩٨٧٦٥٢٣
        
        
        # From Hindi To Arabic
        print(convert_numbers.hindi_to_arabic('٨٧٦٥٤٣٢٣٤٥٦٧٨')) #8765432345678
        
        
        # From Arabic To Hindi
        print(convert_numbers.arabic_to_hindi('12309876523')) #١٢٣٠٩٨٧٦٥٢٣
        
        
        # From Arabic To English
        print(convert_numbers.arabic_to_english('٢٣٤٥٦٧٨٠٩٨٧٦')) #234567809876
        
        
        # From English To Arabic
        print(convert_numbers.english_to_arabic('09876523456')) #٠٩٨٧٦٥٢٣٤٥٦
        
        
        # From Persian To English
        print(convert_numbers.persian_to_english('۵۱۲۳۹۶۰۴۴')) #512396044
        
        
        # From English To Persian
        print(convert_numbers.english_to_persian('512396044')) #۵۱۲۳۹۶۰۴۴
        
        
        # From Persian To Hindi
        print(convert_numbers.persian_to_hindi('۵۱۲۳۹۶۰۴۴')) #٥١٢٣٩٦٠٤٤
        
        
        # From Hindi To Persian
        print(convert_numbers.hindi_to_persian('٢٣٤٥٦٧٨٠٩٨٧٦')) #۲۳۴۵۶۷۸۰۹۸۷۶
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
Keywords: Arabic Persian English Hindi Numbers Python conversion numbers from-to Arabic,Hinid,Persian and English
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
