吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2907|回复: 14
收起左侧

[Python 转载] 送你们一个免费的翻译接口 甚至于都不用js逆向

[复制链接]
cdsgg 发表于 2021-4-30 14:52
[Python] 纯文本查看 复制代码
import json
import requests
from bs4 import BeautifulSoup

worlds=input('请输入您要翻译的语句:')


url=f'https://www.iciba.com/word?w={worlds}'

headers={
 "Cookie": "BAIDU_SSP_lcr=https://www.baidu.com/link?url=h41ZWC_v-xcb8WZpDtq9eRN90gb1nTCMttJHlqLwWh_&wd=&eqid=8317b8ab000e8cf100000004607026b2",
 "Host": "www.iciba.com",
 "Pragma": "no-cache",
 "Referer": "https://www.iciba.com/word?w=%E5%A5%BD%E6%83%B3%E4%BD%A0",
 "Upgrade-Insecure-Requests": "1",
 "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.81 Safari/537.36 SE 2.X MetaSr 1.0"
}

r=requests.get(url,headers=headers).content.decode()
jsondata=json.loads(str(BeautifulSoup(r,'lxml').select('#__NEXT_DATA__')[0].string))
Translation=jsondata['props']['initialDvaState']['word']['wordInfo']['baesInfo']['translate_result']

print("翻译后的结果为:"+Translation)

免费评分

参与人数 4吾爱币 +3 热心值 +3 收起 理由
linzi369 + 1 + 1 谢谢@Thanks!
kwangyeonc + 1 + 1 我很赞同!
77341991 + 1 热心回复!
ff5500 + 1 有用啊!收下了!谢谢!!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

so_so_so 发表于 2021-4-30 15:12
本帖最后由 so_so_so 于 2021-4-30 15:14 编辑

jsondata = json.loads(str(BeautifulSoup(r, 'lxml').select('#__NEXT_DATA__')[0].string))报错:bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?应该是需要安装:pips install lxml安装不上,修改:jsondata = json.loads(str(BeautifulSoup(r, 'html.parser').select('#__NEXT_DATA__')[0].string))
952712345 发表于 2021-4-30 15:59
data = {
        'doctype': 'json',
        'type': 'AUTO',
        'i': plainText
    }
    url = "http://fanyi.youdao.com/translate"
    r = requests.get(url, params=data)
    result = r.json()

这个不是更方便!!!!
狼灭大帝 发表于 2021-4-30 15:00
人称昊哥 发表于 2021-4-30 15:04
感谢大佬的分享啊,很有帮助
ff5500 发表于 2021-4-30 15:10
有用啊!收下了!谢谢!!
 楼主| cdsgg 发表于 2021-4-30 15:13
so_so_so 发表于 2021-4-30 15:12
bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need ...

pip install lxml
so_so_so 发表于 2021-4-30 15:15

谢谢分享。
我是一个外星人 发表于 2021-4-30 15:17
感谢分享。
m58758788 发表于 2021-4-30 15:50
接口应该是类似这样的吧https://dict.iciba.com/dictionary/word/suggestion?word=good
lendone 发表于 2021-4-30 15:52
亲测可用
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 16:24

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表