Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kozyol/ChNumber

Python module that formats Persian number to Latin
https://github.com/kozyol/ChNumber

number-format python python-module python3

Last synced: 3 months ago
JSON representation

Python module that formats Persian number to Latin

Awesome Lists containing this project

README

        

# ChNumber
Python module that formats Persian number to Latin

# clone
```bash
git clone https://github.com/kozyol/ChNumber
```

# Usage
```python
from ChNumber import ChNumber

print(ChNumber.format("۰۹۱۴۴۱۲۳۵۱۲"))
# Output:
09144123512

help(ChNumber)
# Output:
Help on class ChNumber in module ChNumber:

class ChNumber(builtins.object)
| :: Converts Farsi numbers to Latin"
|
| Methods defined here:
|
| format(number)
| :: format method:
| -> Usage:
| ChNumber.format(number)
| -> Example:
| ChNumber.format("۰۹۱۴۶۵۷۹۸۱۴")
| -> Result:
| "09146579814"
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| __dict__
| dictionary for instance variables (if defined)
|
| __weakref__
| list of weak references to the object (if defined)

# You need to put this module to your working directory
```

> This is my first module! Hope you enjoy :)