{"id":1178,"date":"2020-08-09T18:45:51","date_gmt":"2020-08-09T10:45:51","guid":{"rendered":"http:\/\/cnliutz.uicp.io\/?p=1178"},"modified":"2020-08-09T18:45:51","modified_gmt":"2020-08-09T10:45:51","slug":"%e7%99%be%e5%ba%a6%e7%bf%bb%e8%af%91api%e8%b0%83%e7%94%a8","status":"publish","type":"post","link":"http:\/\/qbtobjow.ipyingshe.net:5347\/?p=1178","title":{"rendered":"\u767e\u5ea6\u7ffb\u8bd1API\u8c03\u7528"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>#\u767e\u5ea6\u901a\u7528\u7ffb\u8bd1API,\u4e0d\u5305\u542b\u8bcd\u5178\u3001tts\u8bed\u97f3\u5408\u6210\u7b49\u8d44\u6e90\uff0c\u5982\u6709\u76f8\u5173\u9700\u6c42\u8bf7\u8054\u7cfbtranslate_api@baidu.com\n# coding=utf-8\n\nimport http.client\nimport hashlib\nimport urllib\nimport random\nimport json\n\n##APP ID\uff1a2020072400052563eight\n##\u5bc6\u94a5\uff1amZX6RZIZc5Y_zUW2XQbnine\n##\u4ee5\u4e0a\u8fd9\u4e24\u4e2a\u53c2\u6570\uff0c\u9700\u8981\u767e\u5ea6\u7533\u8bf7 ai.baidu.com\n\nappid = ''  # \u586b\u5199\u4f60\u7684appidai.baidu.com\nsecretKey = ''  # \u586b\u5199\u4f60\u7684\u5bc6\u94a5\n\nhttpClient = None\nmyurl = '\/api\/trans\/vip\/translate'\n\nfromLang = 'auto'   #\u539f\u6587\u8bed\u79cd\ntoLang = 'zh'   #\u8bd1\u6587\u8bed\u79cd\nsalt = random.randint(32768, 65536)\nq= input(\"\u8bf7\u8f93\u5165\u8981\u7ffb\u8bd1\u7684\u6587\u672c,\u4f8b\u5982\uff1aapple,I am a teacher\")\nsign = appid + q + str(salt) + secretKey\nsign = hashlib.md5(sign.encode()).hexdigest()\nmyurl = myurl + '?appid=' + appid + '&amp;q=' + urllib.parse.quote(q) + '&amp;from=' + fromLang + '&amp;to=' + toLang + '&amp;salt=' + str(\nsalt) + '&amp;sign=' + sign\n\ntry:\n    httpClient = http.client.HTTPConnection('api.fanyi.baidu.com')\n    httpClient.request('GET', myurl)\n\n    # response\u662fHTTPResponse\u5bf9\u8c61\n    response = httpClient.getresponse()\n    result_all = response.read().decode(\"utf-8\")\n    result = json.loads(result_all)\n\n    print (result)\n        # result \u8f93\u51fa\u7ed3\u679c\u5982\u4e0b\uff1a\n        # {'from': 'en', 'to': 'zh', 'trans_result': &#91;{'src': 'apple,I am a teacher', 'dst': '\u82f9\u679c\uff0c\u6211\u662f\u8001\u5e08'}]}     \n        # \u7ed3\u679c\u5199\u5165\u6587\u4ef6\u4e2d\n    with open('fy.json','a') as f:\n        f.write(result&#91;\"trans_result\"]&#91;0]&#91;\"src\"]+\"\\n\")\n        f.write(result&#91;\"trans_result\"]&#91;0]&#91;\"dst\"])\n\nexcept Exception as e:\n    print (e)\nfinally:\n    if httpClient:\n        httpClient.close()\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-1178","post","type-post","status-publish","format-standard","hentry","category-python"],"_links":{"self":[{"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/1178","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1178"}],"version-history":[{"count":1,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/1178\/revisions"}],"predecessor-version":[{"id":1179,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/1178\/revisions\/1179"}],"wp:attachment":[{"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1178"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1178"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/qbtobjow.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1178"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}