Metadata-Version: 2.1
Name: decimify
Version: 0.1.0
Summary: Parse numbers to Decimal
License: MIT
Author: Zahid Kizmaz
Author-email: tech@zahid.rocks
Requires-Python: >=3.9.0,<=4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# decimify

Parse numbers to Decimal

#### Some examples of large number presentations in all around the world:

| Locale                        | Large Number      |
| ----------------------------- | ----------------- |
| Canadian (English and French) | 4 294 967 295,000 |
| Danish                        | 4 294 967 295,000 |
| Finnish                       | 4 294 967 295,000 |
| French                        | 4 294 967 295,000 |
| German                        | 4 294 967.295,000 |
| Italian                       | 4.294.967.295,000 |
| Norwegian                     | 4.294.967.295,000 |
| Spanish                       | 4.294.967.295,000 |
| Swedish                       | 4 294 967 295,000 |
| GB-English                    | 4,294,967,295.00  |
| US-English                    | 4,294,967,295.00  |
| Thai                          | 4,294,967,295.00  |

Data taken [from](https://docs.oracle.com/cd/E19455-01/806-0169/overview-9/index.html)

## Usage

```python
from decimify import decimify

my_decimal = decimify('23 234.678,00')
my_decimal
# Decimal('23234678.00')
```

