Metadata-Version: 2.1
Name: math-question-generator
Version: 2.0.0
Summary: Generate math questions & answers
Home-page: https://github.com/shaun-ps-04/math_question_generator
Author: Shaun 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()
result = a.basic()
print(result)
```

Output:
```
{"question": "14 * 2", "answer": "28"}
```

