微信咨询

微信咨询

13610*910*9

服务热线 7*24小时

电话咨询

我的业务

  • WordPress模板主题开发定制
  • 企业官网建设
  • 小程序制作开发
  • Python多线程

    import time, threading def threadFunction(): while True: print(11111) time.sleep() # 用于命名,可以通过threading.current_thread().name获得 t = threading.Thread(t […]

  • Python+pyqt5+designer 实现信息录入系统

    主程序代码编写 import os,time,datetime,sys,random,math from PyQt5.QtWidgets import * from PyQt5.QtGui import * from PyQt5 import QtWidgets,QtGui from PyQt5.Q […]

  • windows64 位系统下如何使用pyinstaller打包32位的exe–Python知识点

    说明:原来安装的python为64位,故安装的pyinstaller和打包后的exe都为64位。而64位的exe文件在32位的win7操作系统下是无法执行的,显示不兼容。网上查询发现,简单(可能不方便)的方法是采用32位的python重新打包。这里,我使用的是conda构建32位python环境,然 […]

  • Pyqt5 +designer实现打字练习软件

    主程序文件编写 import os,time,datetime,sys,random from PyQt5.QtWidgets import * from PyQt5.QtGui import * from PyQt5 import QtWidgets,QtGui from PyQt5.QtCore […]

  • PyQT5 图片查看器

    一款简易的图片查看器。由官方PyQt4 demo升级为PyQt5版本,原本只有缩放功能,现另加入打印和拖放功能。 #!/usr/bin/env python from PyQt5 import QtCore, QtGui,QtWidgets from PyQt5.QtPrintSupport imp […]

  • 如何将PyQt(pyqt-tools)中的Qt Designer改为中文界面(汉化)

    说明: 首先直接用pip安装的PyQt-tools的Designer是不带翻译文件的,因此我们要把Qt creator中Designer的翻译文件拷贝到Pyqt的Designer目录中。   步骤1 打开Qt creator的translations文件夹。 笔者的路径:F:\Qt\Qt5 […]

  • Pyqt5+designer实现图片转文字桌面小软件

    主程序 import requests,json,os,time,datetime,sys from aip import AipOcr import webbrowser import sys from PyQt5.QtWidgets import * from PyQt5.QtGui impor […]

  • 在这里插入图片描述

    Pyqt5 基本操作-复制文字,图片,html

    参考文档:https://blog.csdn.net/qq_42896653/article/details/99701165 # -*- coding:utf-8 -*- # Time : 2019/08/18 上午 10:45 # Author : 御承扬 # e-mail:2923616405 […]

  • 这里写图片描述

    PyQt5基本控件详解之QFileDialog-浏览图片上传文件上传

    import sys from PyQt5.QtCore import * from PyQt5.QtWidgets import * from PyQt5.QtGui import * class fileDialogdemo(QWidget): def __init__(self,parent= […]

  • Pyqt5+designer+python 实现个性签名小软件

    最终效果图如上所示 第一步 先在designer画好软件效果布局 保存为qianming2.ui 然后在vscode里转成Ui_qianming2.py文件 # -*- coding: utf-8 -*- # Form implementation generated from reading ui […]