python共19篇 第2页
Python 将.py文件打包成.exe 文件-李联华的博客网

Python 将.py文件打包成.exe 文件

第一步:我们需要安装Pyinstaller模块 windows运行cmd,输入以下命令: pip install Pyinstaller 然后定位到需要打包的文件,例如:cd C:\项目 然后输入:Pyinstaller -F -w 然后等待打包完成即...
oaklee的头像-李联华的博客网钻石会员oaklee3年前
000
使用ChatGPT搭建微信智能机器人-李联华的博客网

使用ChatGPT搭建微信智能机器人

准备工作: 微信号、openai keys、 OpenAI账号注册 运行环境: Windows、Mac、Linux 以下我演示的是Linux系统 同时要求安装有 Python(版本需在 3.7.1~3.9.X 之间,Linux环境建议使用...
oaklee的头像-李联华的博客网钻石会员oaklee2年前
010
Windows清理工具-李联华的博客网

Windows清理工具

利用python制作清理文件的小工具,可默认清除C盘垃圾和自定义选择文件夹进行删除_python清理c盘. 下载地址:https://down.8i5.net/file/Tool/ITCT.exe
oaklee的头像-李联华的博客网钻石会员oaklee2年前
000
Python执行批量导出简历-李联华的博客网

Python执行批量导出简历

当我们运行这段代码时,首先我们需要导入一些库和模块。 1. 导入库和模块 import os import requests import tkinter as tk from tkinter import filedialog import pandas as pd from PIL impo...
oaklee的头像-李联华的博客网钻石会员oaklee1年前
000
Python实现全国油价查询(API)-李联华的博客网

Python实现全国油价查询(API)

接口来源:https://www.ylapi.cn 其实这个网站也有好多免费的API地址,大家可以去使用它,大部分都是 1000次/天,这个调用次数基本上是够用了。 最近几年这个油价也是越来越高了,然后呢为...
oaklee的头像-李联华的博客网钻石会员oaklee11个月前
000
Python 实现全截屏或自定义截屏-李联华的博客网

Python 实现全截屏或自定义截屏

导入模块 首先,导入必要的模块: import tkinter import tkinter.filedialog import os from PIL import ImageGrab from time import sleep tkinter:用于构建图形用户界面。 tkinter.filedial...
oaklee的头像-李联华的博客网钻石会员oaklee10个月前
010