上篇文章给大家介绍了Python爬虫实现百度翻译功能过程详解
Python爬虫学习之翻译小程序 感兴趣的朋友点击查看。
今天给大家介绍Python爬虫制作翻译程序的方法,具体内容如下所示:
此处我爬的是百度翻译,打开百度翻译的页面
我们要爬的是sug,爬它的响应信息
程序如下
import json
import requests
if __name__ == "__main__":
url = "https://fanyi.baidu.com/sug"
header = {
"User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 Edg/88.0.705.68'
}
while 1:
a = input("输入单词(中文):")
data = {
"kw": a
}
res = requests.post(url=url, data=data, headers=header)
data = json.loads(res.text)
result = [(d['k'], d['v']) for d in data['data']]
print("具体意思: "+data['data'][0]['v'])
print("其他词性拓展: "+data['data'][1]['k']+" "+data['data'][1]['v'])
for i in range(2, len(result)):
print(" "+data['data'][i]['k']+" "+data['data'][i]['v'])
效果如下
到此这篇关于Python爬虫制作翻译程序的示例代码的文章就介绍到这了,更多相关Python爬虫翻译程序内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:- python用tkinter实现一个gui的翻译工具
- python爬虫之爬取百度翻译
- Python 制作自动化翻译工具
- python 实现有道翻译功能
- Python使用tkinter制作在线翻译软件
- Python结合百度语音识别实现实时翻译软件的实现
- 详解python使用金山词霸的翻译功能(调试工具断点的使用)
- python中翻译功能translate模块实现方法
- python 调用Google翻译接口的方法
- python 爬虫如何实现百度翻译
- python 制作一个gui界面的翻译工具