Metadata-Version: 2.1
Name: StringCalculator
Version: 0.0.3
Summary: Calculates string math expressions
Home-page: https://github.com/idozahavy/StringCalculator
Author: Ido Zahavy
Author-email: idozahavy@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# StringCalculator
 Calculator that solves string math expression

`pip install StringCalculator`

```
from StringCalculator import SolveMathProblem

result = SolveMathProblem("5^5*6+3-15")

print(result)
```
output:
> 18738.0


