Metadata-Version: 2.1
Name: math-command-line
Version: 0.0.1
Summary: A command line tool to evaluate mathematical expressions
Home-page: https://github.com/Parsa2820/math
Author: Parsa Mohammadian
Author-email: parsa2820@gmail.com
License: MIT
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE

# math
I often find myself opening a python shell from the command line in order to do some quick math. Now I don't have to.

## Installation
```bash
$ pip install math
```

## Usage
```bash
$ math 1+1
2
```
```bash
$ math 2**6
64
```
Don't forget to use quotes for expression which contain bash special characters or spaces.
```bash
$ math "sin(1)**2 + cos(1)**2"
1.0
```
```bash
$ math "(19*3 + 18*3 + 17*2 + 14*1) / 9"
17.666666666666668
```
