Metadata-Version: 2.1
Name: expression-parse-eval
Version: 0.13.0
Summary: Mathematical expression calculator in Python
Home-page: https://github.com/poyea/eval
Author: John Law
Author-email: johnlaw.po@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# <p align="center">eval</p>

<p align="center">
  Mathematical expression calculator in Python.
</p>

## Usage
Read from a file:
```bash
$ cat text.txt
1**3+5
2**4**3
$ eval -f text.txt
6.0
15625.0
```
Command-line input:
```bash
$ eval 1 + 3**2 * 3
28.0
```
Interpreter:
```bash
$ eval
```

## LICENSE
MIT


