Metadata-Version: 2.4
Name: pynums
Version: 1.1.0
Summary: A simple library for python made by Andriy Zhuk
Home-page: https://github.com/azuk13215/pynumspi
Author: Andriy Zhuk
Author-email: azuk37712@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pynums

pynums is a simple library for working with numbers, created by Andriy Zhuk.  
It includes functions for:  
- working with numbers ('SumDigits, 'ReverseNumber');
- checking ('IsArmstrong', 'IsPerfectNumbers');  
- basic math ('SumAll', 'SumOfDivision');
- statistics ('difference', 'MeenAbsoluteDifference');  
- hard_math ('QadraticSolver', 'CollatzSteps');
- ratio ('RatioEvenOdd', 'ClosenessToGoldenRatio').

## Exampe of use
python

from pynums import Digits, ratio

a = 583  
b = 834  

print(Digits.SumDigits(a))  
print(ratio.ClosenessToGoldenRatio(b))  

## conclusion
17  
-51344.03466174123  

## Installation
```bash
pip install pynums
