分类目录归档:python

【置顶】自备工具---log


日志工具

使用:

logger = my_log(file_path="basic.log", error_path="errors.log")

文件:
import logging
import logging.config
import os


def my_log(handlers=['console', 'file', 'errors'...

Read more

【置顶】python3.4+pyqt5.4.1打包


提示c盘qt文件或文件夹不存在

  1. 新建目录C:\QT\5.4.1
  2. 新建plugins文件夹,拷贝pyqt5.dll,pyqt5qmlplugin.dll,pywintypes34.dll三个文件到该目录
  3. 拷贝translations整个文件夹到5.4.1中

提示找不到或无法导入Qt platform plugin "windows"

  1. 将Python34\Lib\site-packages...

Read more