Metadata-Version: 2.1
Name: mathexpr
Version: 1.0.2
Summary: A library for parsing math strings
Home-page: https://github.com/professionsalincpp/MathParse
Author: griuc
Author-email: griguchaev@yandex.ru
License: MIT
Description-Content-Type: text/markdown

# MathExpr

MathExpr is a Python library for parsing and evaluating mathematical expressions.

## Table of Contents

* [Getting Started](#getting-started)
* [Features](#features)
* [Installation](#installation)
* [Usage](#usage)
* [Contributing](#contributing)
* [License](#license)

## Getting Started

To get started with this project, please follow these steps:

### Prerequisites

* Python 3.8+
* pip 20.0+

### Installation

To install the library, run the following command:
```bash
pip install mathparse
```

## Features

MathExpr provides the following features:

* Parsing mathematical expressions
* Evaluating mathematical expressions

## Usage

To use MathExpr, import the `MathParse` class and use the `parse` and `evaluate` methods:
```python
from mathexpr import MathParse

math_string = "(2 + 3) * 4^3"
result = MathParse.evaluate(math_string)
```

## Contributing

If you would like to contribute to this project, please fork the repository and create a pull request.

## License

This project is licensed under the MIT License - see the [LICENSE](https://github.com/professionsalincpp/mathparse/blob/main/mathparse/LICENSE) file for details.

