Files
OS-Copilot/friday/api/calculator/test.py
2024-02-05 15:44:07 +08:00

10 lines
220 B
Python

import requests
import json
# 测试加法
expression = "((46210 - 8*9068) / (2 - x))"
response = requests.post(
'http://127.0.0.1:8079/tools/calculator',
json={'expression': expression}
)
print(response.json())