32 lines
676 B
Python
32 lines
676 B
Python
|
|
import requests
|
|||
|
|
url = "http://127.0.0.1:10078/v1/translate"
|
|||
|
|
|
|||
|
|
body = [
|
|||
|
|
{"Text": "生活就像一块巧克力"},
|
|||
|
|
{"Text": "你来自哪里"},
|
|||
|
|
{"Text": "你吃饭了吗"},
|
|||
|
|
]
|
|||
|
|
|
|||
|
|
headers = {
|
|||
|
|
"Content-Type": "application/json",
|
|||
|
|
"Accept": "application/json"
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
try:
|
|||
|
|
response = requests.post(
|
|||
|
|
url,
|
|||
|
|
json=body,
|
|||
|
|
headers=headers
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
if response.status_code == 200:
|
|||
|
|
print("Succeed!")
|
|||
|
|
print("Response:", response.json())
|
|||
|
|
else:
|
|||
|
|
print(f"Failed,code: {response.status_code}")
|
|||
|
|
print("Error detail:", response.text)
|
|||
|
|
|
|||
|
|
except requests.exceptions.RequestException as e:
|
|||
|
|
print("request error:", str(e))
|
|||
|
|
|