Metadata-Version: 2.1
Name: pymathalgos
Version: 0.1.8
Summary: 
Author: Adi58816
Author-email: adisalimgereev@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown

# PyMathAlgoS

## 1. Installation

```bash
$ pip install pymathalgos
```

## 2. Functions

If you want to get the factorial value there is a factorial function:

```python
import pymathalgos
print(pymathalgos.factorial(-1))
```

The result is:

```
ArithmeticError: argument value must be bigger then zero!
```

```python
import pymathalgos
# These 2 lines of code are means the same thinks
print(pymathalgos.sin_r(pymathalgos.to_radians(90)))
print(pymathalgos.sin_d(90))
```
