编程语言
首页 > 编程语言> > 【python生成.exe文件(以简单的翻译网站数据爬取为例)】学习笔记

【python生成.exe文件(以简单的翻译网站数据爬取为例)】学习笔记

作者:互联网

一份可以执行的 python文件

本文主要介绍 python生成 .exe文件,python文件内容并非重点,可以跳过,大致效果就是将键入的数据放到 《有道翻译》 上进行翻译后,将结果爬取下来并提取翻译结果:

# -*-coding: utf-8 -*-
import requests
import json

url = 'https://fanyi.youdao.com/translate'

input_data = input("The input data to translation(Enter 'e' to exit): ")

while input_data != 'e':
    data = {
        "i": input_data,
        "from": "AUTO",
        "to": "AUTO",
        "doctype": "json",
    }

    # 网页请求的方式也分为两种:
    # GET:一般用于获取或者查询资源信息。
    # POST:相比 GET 方式,多了以表单形式上传参数的功能,因此除查询信息外,还可以修改信息。
    # request.get(url)
    response = requests.post(url, data=data)

    # 将Json格式字符串转字典
    content = json.loads(response.text)
    # 取出要翻译的数据
    translation = content['translateResult'][0][0]['tgt']
    print(f"Translation results: {translation}\n")

    input_data = input("The input data to translation(Enter 'e' to exit): ")

安装 pyinstaller 包

pyinstaller包 是生成 .exe 的必需环境

pip install pyinstaller

执行生成指令

pyinstaller -F xxx.py
# 添加可选项可以为生成的 .exe 文件附上图标(需要 .ico 图像)
pyinstaller -F --icon=xxx.ico xxx.py

效果展示

生成文件:
Figure 1
软件效果:
Figure 2

标签:exe,pyinstaller,为例,python,input,translation,data
来源: https://blog.csdn.net/Your_name666/article/details/115679834