Symbolic and Arithmetic Math Calculator
A micro-service for performing symbolic and arithmetic math calculations like factoring or simplifying expressions.
import requests
operation = "factor"
expression = "x^2-1"
url = f"https://newton.now.sh/api/v2/{operation}/{expression}"
response = requests.get(url)
print(response.json())Last 50 checks (10 min intervals)