Python tools for math education workflows.
Project description
edu-math
edu-math is a Python package for math education workflows.
The PyPI distribution is osl-edu-math; the import package remains edumath.
The project is in its initial scaffold stage. The repository includes packaging,
testing, linting, documentation, release automation, and GitHub workflow
infrastructure adapted from the Open Science Labs Incubator Python package
template used by prisma-flow.
Installation
pip install osl-edu-math
Symbolic equation solving
edumath.solvers provides SymPy-backed equation solving with structured
solution steps. The math is computed locally and can be used without any API
key:
from edumath.core import parse_equation
from edumath.solvers import solve_equation_steps
equation = parse_equation("2(x - 3) + 4 = 10")
solution = solve_equation_steps(equation)
print(solution.answer)
print(solution.render_text())
Optional AI tutor explanations can be enabled through edumath.settings. The AI
text is added after SymPy/edumath has solved and checked the equation, so the
symbolic result remains the source of truth:
from edumath.core import parse_equation
from edumath.settings import configure
from edumath.solvers import solve_equation_steps
configure(openai_api_key="YOUR_OPENAI_API_KEY")
equation = parse_equation("2(x - 3) + 4 = 10")
solution = solve_equation_steps(equation, explain=True)
print(solution.explanation)
Development
conda env create -f conda/dev.yaml
conda activate edumath
poetry config virtualenvs.create false
poetry install --extras "dev"
Run checks through Makim:
makim tests.linter
makim tests.unit
makim package.build
makim docs.build
Project layout
src/edumath/: Python package sourcetests/: pytest test suitedocs/: Quarto documentation websiteconda/: development and release environment files.github/: issue templates and GitHub Actions workflows
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file osl_edu_math-0.4.4.tar.gz.
File metadata
- Download URL: osl_edu_math-0.4.4.tar.gz
- Upload date:
- Size: 82.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.13.14 Linux/6.17.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0102b42ef82ef15a31eadb822c3d593f2d33bb57f566e1a668f394ddbe0ec6f
|
|
| MD5 |
0d21698fb538c69cfc8527aac1da1d6a
|
|
| BLAKE2b-256 |
b815b02017310005859e3b06671b6b0830a4403a5b54a59341dadacf1f921dce
|
File details
Details for the file osl_edu_math-0.4.4-py3-none-any.whl.
File metadata
- Download URL: osl_edu_math-0.4.4-py3-none-any.whl
- Upload date:
- Size: 125.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.13.14 Linux/6.17.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aad84852743c98ed3243fdd4299c32bf36b80fc1917946dec742ddeebfe3df81
|
|
| MD5 |
e231bf84bc527188df9b2f9622ea84ce
|
|
| BLAKE2b-256 |
b90963d4ca59c68d64f4508824d8b4de078c7a2f4029beba32e50f7dd7e8f1f1
|