A lightweight calculator service that evaluates basic math expressions.
- Safe evaluation (supports
+,-,*,/,**,sqrt,sin,log, etc.) - RESTful API built with FastAPI
- Auto-generated Swagger & ReDoc docs
- Python 3.8+
- FastAPI
- Uvicorn
pip install -r requirements.txt
uvicorn main:app --reload
or
python -m main:app --host 0.0.0.0 --port 8000 --reload