Metadata-Version: 2.1
Name: math-question-generator
Version: 2.2.0
Summary: Generate math questions & answers
Home-page: https://github.com/shaun-ps-04/math_question_generator
Author: Sean Stocker
Author-email: s.stocker04@outlook.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# Welcome to Math Question Generator!

## Installation
```bash
pip install math-question-generator
```

## Usage
```python
from maths_question_generator.arithmetic import Arithmetic

a = Arithmetic(difficulty="easy")
result = a.base()
print(result)
```

Output:
```
{'question': '16 - 8 + 9', 'answer': 17}
```

