当前位置:   article > 正文

python爬取有道翻译_scrapy 有道翻译 404

scrapy 有道翻译 404

1,打开浏览器搜索有道翻译,输入内容
2, 右击鼠标点击检查元素使用开发者工具,点击network,点击翻译出现内容
带你家点击network在这里插入图片描述
3,选中all,查找translate,查找URL和data
在这里插入图片描述
4,代码(亲测可行)

import requests
 
import json
def main():
    txt = input("请输入要翻译的内容:")
    data = {
        "i": txt,
        "from": "AUTO",
        "to": "AUTO",
        "smartresult": "dict",
        "client": "fanyideskweb",
        "doctype": "json",
        "version": "2.1",
        "keyfrom": "fanyi.web",
        "action": "FY_BY_REALTIME",
        "typoResult": "true"
    }
 
    url = "http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule"
    res = requests.post(url, data=data)
    js = res.json()
    print("翻译结果:" ,js['translateResult'][0][0]['tgt'])
 
 
if __name__ == '__main__':
    while True:
        main()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

在这里插入图片描述
最后
print(“翻译结果:” ,js[‘translateResult’][0][0][‘tgt’])
这个的使用很疑惑,请求大神指点

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/855700
推荐阅读
相关标签
  

闽ICP备14008679号