Metadata-Version: 2.1
Name: calculator_rm
Version: 0.0.1
Summary: Calculator class package with basic functions
Author-email: Rapolas <rapolas.mikenas@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License

#Calculator

Create instances of calculator as a class in python.

###Functions included:

- **add** - sums calculator memory with provided value.
- **minus** - subtracts the entered value from calculator memory.
- **multiply** - multiplies calculator memory by the input value.
- **divide** - devides the calculator memory by the input value.
- **root** - takes _n_ root from the calculator memory value (square root is taken when no input given).
- **reset** - Resets calculator instance memory to zero.

Each function adjusts the calculator memory, as well as returns the new value.

###Installation
TBU

> pip install calculator

###Usage
TBU

import calculator
calc_obj = Calculator()

