Metadata-Version: 2.1
Name: calculator-anarim1
Version: 0.0.1
Summary: Simple Calculator with memory
Home-page: https://github.com/NaUrovne/calculator
Author: Albert Narimanov
Author-email: albertnarimanov@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'

# Calculator

Simple calculator with basic mathematics operations and its own memory.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install calculator.

```bash
pip install calculator
```

## Usage

```python
from calculator import Calculator

#first create an instance of Calculator
x = Calculator()

x.add(1,3) # returns 4 (sum of 1 and 3) and saves it to memory
x.sub(1) # returns 3 (subtracts 1 from "memory")

```



## License
[MIT](https://choosealicense.com/licenses/mit/)

