Metadata-Version: 2.1
Name: digitize
Version: 1.1.0
Summary: Break numbers into digits with their names
Home-page: https://github.com/LimeGeeg/digitize
Author: LimeGeeg
Author-email: borovoy06nik@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

#### digitize - open source available library for determining the bit depth of a number with the output of its name

```python
from digitize import Exact

var = Exact

print(var.discharge(5000)) # Output: 5,000
print(var.discharge(51030.4853)) # Output: 51,030.48
print(var.discharge(51030.4853, True, "en/ru")) # Output: 51,030.48 thousand
