在Python脚本中使用API​​ Microsoft Translator

问题描述

我正在用Python编写一个脚本来检测提供的文本的语言。

我发现以下命令行可在终端机上运行,​​但我想在脚本中使用它。

命令:

**curl -X POST "https://api.cognitive.microsofttranslator.com/detect?api-version=3.0" -H "Ocp-Apim-Subscription-Key: <client-secret>" -H "Content-Type: application/json" -d "[{'Text':'What language is this text written in?'}]"**.

在脚本中,客户端秘密,“ text”等元素应位于变量中。而且我想在一个变量中捕获整个命令行的结果,然后将其打印给用户

我该怎么做?

我找到了命令行here

解决方法

Command Line中的命令实际上是在发送http request。因此,您只需要使用我在下面提供的python代码即可,仅供参考。

import requests
import json

url = 'https://api.cognitive.microsofttranslator.com//Detect?api-version=3.0'
body =[{"text": "你好"}]
headers = {'Content-Type': 'application/json',"Ocp-apim-subscription-key": "b12776c*****14f5","Ocp-apim-subscription-region": "koreacentral"}
r = requests.post(url,data=json.dumps(body),headers=headers)
result=json.loads(r.text)
a=result[0]["language"]
print(r.text)
print("Language = " + a)

enter image description here